@charset "utf-8";

/*
Theme Name: イルミナカレッジ佐鳴台校
version: 1.0
*/

/* 共通 */
:root {
    --white: #fff;
    --milk: #FFFEF6;
    --lightPink: #FFB0AC;
    --hotPink: #FFACA8;
    --pink: #EE827C;
    --lightYellow: #FFDE62;
    --yellow: #FCC800;
    --gray: #cacaca;
    --darkGray: #696969;
    --black: #404040;
    --title: "Zen Maru Gothic", serif;
}

html {
    font-size: 100%;
}

body {
    font-size: 90%;
    width: 100%;
    height: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 3vw;
}

.nav {
    position: relative;
    font-family: var(--title);
    font-size: 150%;
    font-weight: 600;
    padding-bottom: 10px;
    color: var(--black);
    text-align: center;
}

.cont-title {
    font-size: 220%;
    font-family: var(--title);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.1vw;
    color: var(--black);
}

.jump {
    font-size: 150%;
    font-family: var(--title);
    font-weight: 400;
    font-style: normal;
    color: var(--black);
}

.text {
    font-size: 1rem;
}

.toptitle{
    font-size: 2.2rem;
}

/* 改行 */
.br_span {
    display: inline-block;
}

/* ぼかし用css */
.mainblur {
    filter: blur(8px);
}

/* ボタン一覧 */
.light-w {
    transition: all .2s;
}
.light-w:hover {
    opacity: 0.5;
    transition: all .3s;
}
.push {
    transition: all .3s;
}
.push:hover {
    transform: scale(1.02);
    transition: all .3s;
}

.btn06 {
    position: relative;
    display: inline-block;
    background: var(--white);
    padding: 10px 50px 10px 40px;
    border: var(--black) 1px solid;
    border-radius: 50px;
    text-align: center;
    /* アニメーション */
    transition: ease .2s;
}
.btnarrow1::after {
    content: '';
    position: absolute;
    top: 42%;
    right: 20px;
    /* 矢印 */
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--black);
    border-right: 1px solid var(--black);
    transform: rotate(45deg);
    transition: all 0.3s;
}
.btnarrow1:hover:after {
    right: 15px;
}


.btn {
    padding: 3vw;
    border: var(--pink) solid 2px;
    border-radius: 50px;
    background: var(--white);
    transition: all .3s;
}
.btn span {
    color: var(--pink);
    font-family: var(--title);
    font-weight: 600;
}

.btn:hover {
    border: var(--white) solid 2px;
    background: var(--pink);
}
.btn:hover span {
    color: var(--white);
}


@media (max-width: 800px) {
    .sm-cont-title {
        font-size: 2.2rem;
        font-family: var(--title);
        font-weight: 400;
        font-style: normal;
        line-height: 4.5rem;
    }

    .jump {
        font-size: 175%;
        font-family: var(--title);
        font-weight: 400;
        font-style: normal;
    }

    .b-span {
        display: inline-block;
    }
}


/*下層ページ共通
-----------------------------------------------------------*/

/* menu部分 */
#milk {
    background: var(--milk);
}
#white {
    background: var(--white);
}

#menu .top {
    text-align: center;
    padding: 5vw 0 10vw;
}
#menu .top img {
    width: 6vw;
}

#menu .cont-title {
    margin-top: 5vw;
}

#menu .menu-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}
.menu-list li {
    background: var(--white);
    margin-right: 2vw;
    border: var(--darkGray) solid 2px;
    border-bottom: none;
    border-radius: 25px 25px 0 0;
    width: calc(100% / 4);
    text-align: center;

    transform: translateY(1vw);
    transition: all .5s;
}

.menu-list li:nth-of-type(1) {
    margin-left: 2vw;
}
.menu-list a{
    display: block;
    font-weight: 600;
    padding: 1.5vw 0.2vw 2vw;
    margin: 1vw;
    color: var(--black);
}

.menu-list .current-menu-item {
    background: var(--hotPink);
    border: var(--hotPink) solid 2px;
}
.menu-list .current-menu-item a {
    color: var(--white);
}
/* 学習内容のページ用 */
.menu-list .mainpage {
    background: var(--hotPink);
    border: var(--hotPink) solid 2px;
}
.menu-list .mainpage a {
    color: var(--white);
}


.menu-list li:hover {
    transform: translateY(calc(0vw + 1px));
    transition: all .5s;
}

.menu-bottom {
    position: absolute;
    content: '';
    width: 100%;
    height: 3vh;
    background: var(--hotPink);
}

/* コンテンツ幅とか */
.content {
    margin: 20vh auto 25vh;
    text-align: left;
    width: 80%;
    margin-bottom: 25vh;
}
.content .text {
    color: var(--black);
    line-height: 3rem;
}

/* タイトルの装飾 */
.content .cont-title {
    text-align: center;
}
.content .cont-title .marker {
    padding-bottom: 1px;
    background: linear-gradient(transparent 70%, var(--lightYellow) 30%);
}


/* 箇条書き(装飾あり) */
.content .sub-title {
    position: relative;
    display: inline;
    font-family: var(--title);
    color: var(--black);
    font-size: 200%;
    border-bottom: var(--darkGray) 1px solid;
    padding-bottom: 0.5vw;
    font-weight: 500;
}

.list-p li {
    display: flex;
    justify-content: left;
    align-items: end;
}
.list-p .sub-title {
    margin-bottom: 1.5vw;
    margin-left: 10px;
}
.list-p img {
    transform: translateY(-23px);
}

.list-p .text {
    margin-left: 70px;
}

/* 箇条書き（ドット）*/
.list-dot {
    position: relative;
    padding: 0 0 0 0.8vw;
    font-size: 110%;
    text-align: left;
    color: var(--black);
    line-height: 2rem;;
}
.list-dot::before {
    position: absolute;
    content: '';
    width: 0.7vh;
    height: 0.7vh;
    background-color: var(--lightPink);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:1200px) {
    .menu-list .jump {
        font-size: 115%;
    }
    .menu-list li {
        border-radius: 20px 20px 0 0;
    }


    .content {
        width: 90%;
    }

    .list-p img {
        transform: translateY(-9px);
    }
}

@media (max-width:800px) {
    /* menu部分 */
    #menu .menu-list {
        display: none;
    }
    #menu .top {
        padding-top: 18vw;
        padding-bottom: 15vw;
    }
    #menu .short {
        margin-bottom: 0;
        padding-bottom: 25vw;
    }
    #menu .top img {
        width: 20vw;
    }
    
    /* コンテンツ幅 */
    .content {
        margin: 15vh auto 20vh;
        width: 100%;
    }
    .content .cont-title {
        font-size: 200%;
        margin-bottom: 5vw;
    }
    .content .text {
        padding: 15vw;
        font-size: 110%;
        line-height: 2.5rem;
    }


    /* 箇条書き */
    .content .sub-title {
        font-size: 190%;
        padding-bottom: 1vw;
    }

    .list-p .sub-title {
        margin-left: 6px;
        margin-bottom: 2vh;
    }
    .list-p img {
        width: 45px;
        transform: translateY(-8px);
    }

    .list-p .sub-title::before,
    .list-p .sub-title::after {
    width: 35px;
    height: 35px;
    } 
    .list-p .sub-title::before {
    background: var(--lightPink);
    bottom: -5px;
    left: -40px;
    }
    .list-p .sub-title::after {
    border: var(--darkGray) solid 1px;
    left: -45px;
    bottom: 0;
    }
    .list-p .text {
    margin-left: 60px;
    margin-right: 1vh;
    padding: 0;
    }

    /* 箇条書き（ドット）*/
    .list-dot {
        padding: 0 0 0 2vh;
    }
}




/* 準備中 (変更前)
-------------------------------------------*/
#content {
    padding: 15vw 0;
    background-color: var(--white);
    text-align: center;
}

#content h1 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--black);
}

#content .back {
    font-size: 120%;
    color: var(--black);
    padding-bottom: 7px;
    border-bottom: var(--lightPink) 2px dashed;
    border-radius: 3px;
    text-decoration: solid;

}

@media (max-width: 800px) {
    #content {
        padding: 25vh 0;
    }

    #content h1 {
        margin-bottom: 5vh;
    }
}


/* 
ヘッダー 
---------------------------------------------------------------------*/
header {
    background-color: var(--milk);
    height: 15vh;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5vh;
}

.header-content .site-title {
    line-height: 1px;
    width: 13vw;
}

.header-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content li {
    margin: 0 2vw;
}
.header-content li a {
    display: inline-block;
    color: var(--black);
}

.header-content .nav {
    display: block;
    position: relative;
    font-size: 120%;
    font-family: var(--title);
    font-weight: 600;
    letter-spacing: 30%;
}
.header-content .nav::after {
    position: absolute;
    content: "";
    background: var(--pink);
    height: 0.6vh;
    width: 0.6vh;
    border-radius: 50%;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s;
}
.header-content .nav:hover::after {
    border-radius: 20px;
    width: 98%;
    height: 0.2vh;
    transition: all 0.2s;
}


@media (max-width: 1200px) {
    header #h-nav {
        display: none;
    }
}

/* ハンバーガーメニュー & スマホ */
.openbtn,
#g-nav {
    display: none;
}
@media (max-width: 1200px) {
    .openbtn {
        display: block;
    }

    #g-nav {
    display: block;
    position: fixed;
    z-index: 999;
    /* ナビのスタート位置と形状 */
    top: 0;
    right: -100%;
    width: 30%;
    height: 100vh;
    background: var(--milk);
    transition: all .6s;
    /*
    box-shadow: -6px 0px 6px 0px #a8a8a8;
    */
   }
   #g-nav.panelactive {
    right: 0;
   }
   /* 縦スクロール */
   #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding-top: 10vh;
    padding-left: 30px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
   }

   /* ナビゲーション */
   .header-content .nav {
    display: block;
    padding-bottom: 3px;
   }
   .header-content li {
    margin: 0;
   }
   .header-content .nav::after {
    width: 25%;
    border-radius: 5px;
    height: 2px;
    background: var(--lightPink);
    left: 0;
    transform: translateX(0);
   }
   .header-content .nav:hover::after {
    width: 25%;
    height: 2px;
    border-radius: 5px;
    left: 0;
    transform: translateX(0);
   }


   #g-nav-list .nav {
    text-align: left;
   }
   #g-nav-list ul {
    flex-direction: column;
    align-items: start;
   }

   #g-nav-list .header-item {
    margin-bottom: 3vw;
   }
   #g-nav-list .header-item ul {
    margin-top: 15px;
    margin-left: 10px;
   }

   #g-nav-list .header-item:last-of-type ul {
    margin: 0;
   }
   #g-nav-list .header-item:last-of-type li {
    margin-bottom: 3vw;
   }
   #g-nav-list .header-item:last-of-type a {
    padding: 0;
   }

   #g-nav-list .header-item:last-of-type .nav {
    width: 100%;
   }

   #g-nav li a {
    color: var(--black);
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 10%;
   }

    /*ボタンのためのcss*/
   .openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
    追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
    z-index: 9999;
    top: 3vh;
    right: 1vw;
	cursor: pointer;
    width: 70px;
    height: 70px;
	border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span{
        display: inline-block;
        transition: all .4s;/*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 2px;
        background: var(--black);
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top:15px;	
    }

    .openbtn span:nth-of-type(2) {
        top:23px;
    }

    .openbtn span:nth-of-type(3) {
        top:31px;
    }

    /*activeクラスが付与されると線が回転して×に*/

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;/*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

}

/* スマホ */
@media (max-width:800px) {

    header {
        padding: 1.5vh 0;
    }
    .header-content {
        margin-top: 0;
    }
    .header-content .site-title {
        width: 20vh;
        margin-left: 1vw;
    }

    .header-content .openbtn {
        top: 2vh;
    }
    #g-nav {
        width: 100%;
    }

    #g-nav-list .header-item {
        margin-bottom: 5vh;
    }
    .header-content .nav::after {
        width: 90%;
    }
    #g-nav-list .header-item:last-of-type li {
        margin-bottom: 5vh;
    }

    /*ボタンのためのcss*/
   .openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
    追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    top: 1.5vh;
    right: 1vh;
    width: 60px;
    height: 60px;
    }

    /*ボタン内側*/
    .openbtn span{
        width: 60%;
    }

    .openbtn span:nth-of-type(1) {
        top:15px;	
    }

    .openbtn span:nth-of-type(2) {
        top:25px;
    }

    .openbtn span:nth-of-type(3) {
        top: 35px;
    }

    /*activeクラスが付与されると線が回転して×に*/

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 60%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;/*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 60%;
    }
}


/* LINE登録ボタン
----------------------------*/
#line,
#line a {
    position: fixed;
    right: 0.8vw;
    bottom: 0.8vw;
    line-height: 1rem;
    font-family: var(--title);
    background: var(--milk);
    color: var(--black);
    border: solid 2px #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
    z-index: 100;
}

#line {
    padding: 0.8vw;
}

#line .touroku{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#line .sumaho {
    width: 50px;
}

#line .text {
    font-size: 125%;
    line-height: 2rem;
    padding-left: 10px;
}

@media (min-width: 800px) {
    #sm-line {
        display: none;
    }
}


@media (max-width: 1200px) {

    #line .sumaho {
        width: 4vw;
    }

    #line .text {
        padding-left: 1vw;
        font-size: 120%;
    }

}

@media (max-width: 800px) {
    /* スマホ用 登録ボタン（画面下）*/
    #sm-line {
        position: fixed;
        z-index: 120;
        background: var(--milk);
        width: 100%;
        height: 10vh;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        box-shadow: 0px -10px 10px -6px rgba(150, 150, 150, 0.3);
    }

    #sm-line .touroku {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3.5vw;
    }

    #sm-line .sumaho {
        width: 9vw;
    }
    #sm-line .text {
        color: var(--black);
        font-family: var(--title);
        font-size: 150%;
        font-weight: 600;
        padding-left: 3vw;
    }

    #line {
        display: none;
    }

    /* アニメーション用css */
    .fadeOutTrigger {
        opacity: 1;
    }

    .fadeOut {
        animation-name: fadeOutAnime;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        opacity: 1;
    }
    @keyframes fadeOutAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(500px);
        }
    }

}


/* メインビジュアル
---------------------------- */
#mainvisual {
    position: relative;
    margin: 0 auto;
}

#mainvisual .pc-phot {
    width: 100%;
    left: 0;
}




@media (min-width:800px) {
    #mainvisual .sm-phot {
        display: none
    }
}
@media (max-width: 800px) {
    #mainvisual .pc-phot {
        display: none;
    }

    #mainvisual {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #mainvisual .sm-photo {
        max-width: 800px;
        width: 100%;
        object-fit: cover;
        margin-bottom: 0;
    }
}



/* 私たちについて
---------------------------- */
#about {
    position: relative;
    background-color: var(--lightPink);
    color: #fff;
    padding-top: 10vh;
    padding-bottom: 45vh;
}

#about .wrapper {
    text-align: center;
}

#about a {
    color: #fff;
}

#about img {
    width: 5vw;
    margin: 50px 0 60px;
}
#about .cont-title{
    color: var(--white);
}
#about span {
    display: inline-block;
    color: var(--yellow);
    text-shadow: 
    2px  2px 1px var(--white),
   -2px  2px 1px var(--white),
    2px -2px 1px var(--white),
   -2px -2px 1px var(--white),
    2px  0px 1px var(--white),
    0px  2px 1px var(--white),
   -2px  0px 1px var(--white),
    0px -2px 1px var(--white);  
}

#about .text {
    width: 590px;
    margin: 9vh auto;
    text-align: left;
    line-height: 3rem;
}

#about .btn06 {
    border: none;
}
#about .jump  {
    font-size: 120%;
}

@media (min-width: 800px) {
    #about .sm-cont-title {
        display: none;
    }
}

@media (max-width: 800px) {
    #about {
        padding-top: 10vh;
        padding-bottom: 30vh;
    }
    #about .cont-title {
        display: none;
    }

    #about .wrapper {
        margin-top: 0;
    }

    #about img {
        width: 23vw;
        margin: 5vh 0;
    }

    #about .text {
        width: auto;
        margin: 5vh 2vw 3vh;
    }
}  


/* 学習について・仕事について
--------------------------------------- */
#yellow {
    padding-top: 10vh;
    background: var(--lightYellow);
    color: var(--black);
}

.learn_job {
    position: relative;
    background-color: var(--white);
    border: 2px solid var(--black);
    width: 70vw;
    border-radius: 50px 50px 0 0;
    left: 50%;
    transform: translateX(-50%);
}

.learn_job .cont-title {
    position: relative;
    font-size: 300%;
    padding: 2vh 2vh 2vh 3vw;
    border-bottom: var(--black) dashed 2px;
}
.learn_job .cont-title::before {
    position: absolute;
    content: '';
    background-color: var(--pink);
    height: 1.5vh;
    width: 1.5vh;
    border-radius: 50%;
    top: 50%;
    left: 2vw;
    transform: translateY(-50%);
}

.learning-top,
.job-top {
    padding: 4vw 5vw 4vw 4.5vw;
}

.job-top {
    border-top: dashed var(--black) 2px;
}

.learn_job .learnjob-title {
    position: relative;
    font-family: var(--title);
    margin-bottom: 3vw;
}
.learn_job .learnjob-title .pink {
    font-size: 230%;
    color: var(--pink);
    letter-spacing: 0.1rem;
}
.learn_job .learnjob-title .black {
    position: absolute;
    color: var(--black);
    font-size: 180%;
    border-bottom: var(--darkGray) 1px solid;
    margin-left: 5px;
    transform: translateY(5px);
}
.learn_job .learnjob-cont {
    display: flex;
    justify-content: space-between;
}


.learnjob-cont .text {
    width: 55%;
    margin-right: 2vw;
    line-height: 2.6rem;
}
.learnjob-cont img {
    width: 45%;
    border: var(--white) solid 2px;
    border-radius: 10px;
    box-shadow: 13px 13px 0px 0px var(--lightPink);
}

.learn_job .btn06 {
    bottom: 2.5vw;
}



/* sp */
@media (max-width:1200px) {
    #yellow {
        padding-top: 2vh;
    }

    .learn_job {
        width: 100%;
        border-radius: 30px 30px 0 0;
    }

    .learn_job .cont-title {
        padding: 2vh 2vh 2vh 4vw;
    }
    .learn_job .cont-title::before {
        left: 3vw;
    }

    .learn_job .btn06 {
        bottom: 2vw;
    }
    
}

@media (max-width: 800px) {
    .learn_job {
        border-radius: 20px;
    }

    .learning-top,
    .job-top {
        padding-top: 5vw;
    }

    .learn_job .cont-title {
        font-size: 220%;
        padding: 2vh 2vh 2vh 4vh;
    }
    .learn_job .cont-title::before {
        left: 3vh;
    }

    .learn_job .learnjob-cont {
        flex-direction: column;
        padding: 10px;
    }
    .learn_job .learnjob-cont .text {
        width: 100%;
        margin: 0 0 4vh 0;
    }
    .learn_job .learnjob-cont img {
        width: 100%;
        box-shadow: 10px 10px 0 0 var(--pink);
        margin-bottom: 10vh;
    }

    .learn_job .btn06 {
        bottom: 4vh;
        width: 100%;
    }

    /* タイトル文字 */
    .learn_job .learnjob-title {
        margin-bottom: 0;
    }
    .learn_job .learnjob-title .pink {
        font-size: 150%;
    }
    .learn_job .learnjob-title .black {
        font-size: 120%;
        margin-left: 3px;
        transform: translateY(4px);
    }


}


/* 利用について　アクセス
---------------------------------------------- */
.sub-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15vw;
}

.sub-cont .cont-title {
    border-top: dashed var(--black) 2px;
    padding: 5vh 0;
}
.sub-cont img {
    height: 13vh;
    margin: 10vh 0;
}
.sub-cont .item-u,
.sub-cont .item-a {
    background-color: var(--white);
    border: 2px solid var(--black);
    text-align: center;
    width: 34vw;
    margin-top: 2vw;
}
.sub-cont .item-u {
    border-radius: 0 0 0 50px;
    margin-right: 1vw;
}
.sub-cont .item-a {
    border-radius: 0 0 50px 0;
    margin-left: 1vw;
}


/* sp */
@media (max-width: 1200px) {
    .sub-cont {
        padding-bottom: 17vw;
    }
    .sub-cont img {
        height: 13vh;
        margin: 10vh 0;
    }

    .sub-cont .item-u,
    .sub-cont .item-a {
        width: 50vw;
    }
    .sub-cont .item-u {
        border-radius: 0 0 0 30px;
    }
    .sub-cont .item-a {
        border-radius: 0 0 30px 0;
    }
}

@media (max-width: 800px) {
    .sub-cont {
        padding-bottom: 20vh;
        flex-direction: column;
    }

    .sub-cont .cont-title {
        border-top: none;
        padding: 3vh 0 3vh 25px;
    }
    .sub-cont img {
        width: 65px;
        height: auto;
        margin: 0;
    }

    .sub-cont .item-u,
    .sub-cont .item-a {
        display: flex;
        justify-content: left;
        align-items: center;
        width: 100%;
        border-radius: 20px;
        padding: 2vh;
    }

    .sub-cont .item-u {
        margin-right: 0;
    }
    .sub-cont .item-a {
        margin-left: 0;
    }
}


/* お知らせ
---------------------------------------- */
#milk-top {
    position: relative;
    background-color: var(--milk);
    color: var(--black);
    border-top: 2px solid var(--black);
    padding-bottom: 30vh;
}

#milk-top::before,
#milk-top::after {
    position: absolute;
    content: '';
}
#milk-top::before {
    top: -15vh;
    left: calc(50%);
    transform: translateX(-50%);
    width: 50vh;
    height: 50vh;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--milk);
}
#milk-top::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--milk);
}


.news-top {
    position: relative;
    padding-bottom: 5vh;
    z-index: 10;
}

.news-top .cont-title {
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 225%;
    left: 50%;
    transform: translate(-50%, -4vh);
    padding-bottom: 20px;
}
.news-top .cont-title::after {
    position: absolute;
    content: '';
    height: 0.3vh;
    width: 90%;
    background: var(--pink);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.newstop-cont {
    margin: 0 auto;
    width: 80vw;
    padding-top: 2vw;
}

.news-top .nopost-text {
    font-size: 2rem;
    border-bottom: var(--gray) dashed 2px;
    margin: 3vw 10vw 5vw;
}


/* 記事のタイトル、リンク */

.news-top .blog-cont {
    width: auto;
    margin-top: 50px;
    color: var(--black);
}
.blog-cont .blog-list {
    display: flex;
    justify-content: left;
    align-items: end;
    margin: 0 7vw 2vw;
    padding-bottom: 0.5vw;
    border-bottom: var(--gray) dashed 2px;

}
.blog-cont time {
    font-size: 120%;
    padding: 0 20px;
}
.blog-cont .text {
    font-size: 200%;
    font-family: var(--title);
    padding-left: 30px;
}

.news-top .btn06 {
    transform: translateX(60vw);
}


@media (max-width: 800px) {
    #milk-top {
        padding-bottom: 20vh;
    }

    .news-top {
        padding-bottom: 5vh;
        z-index: 10;
    }
    
    .news-top .cont-title {
        font-size: 220%;
        left: 50%;
        transform: translate(-50%, -7.5vh);
        padding-bottom: 1vh;
    }
    
    
    .newstop-cont {
        width: 90vw;
    }

    /* ボタン */
    .news-top .btn06 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .news-top .btn06 .jump {
        font-size: 120%;
    }

    /* タイトル、リンク */
    .news-top .blog-cont {
        margin-top: 30px;
        padding: 0;
    }
    .blog-cont time {
        padding: 0 10px;
    }
    .blog-cont .blog-list {
        flex-direction: column;
        align-items: start;
        margin: 1vh 0 5vh;
        padding-bottom: 0.5vw;
    }
    .blog-cont .text {
        font-size: 175%;
        font-family: var(--title);
        padding-left: 0;
        padding: 0 10px 10px;
    }
    
}


/* SNS
---------------------------*/
#sns .box {
    position: relative;
    margin: 20vh auto 0;
    width: 80%;
    z-index: 10;
    text-align: center;
    border: var(--black) solid 2px;
    border-radius: 50px;
    background: var(--white);
    box-shadow: 2vh 2vh 0px 0px var(--lightYellow);
}

#sns .cont-title {
    font-size: 2.25vw;
    padding: 2vh 0;
    border-bottom: var(--black) dashed 2px;
}
#sns .sns-box {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: end;
    padding: 10vh 0;
}
#sns a {
    display: block;
}

#sns .sns-item img {
    width: 3vw;
}
#sns .text {
    color: var(--black);
    font-family: var(--title);
    font-size: 120%;
    padding-top: 2vh;
}
#sns .sns-item:nth-of-type(4) img {
    margin-bottom: 1vh;
}


/* sp */
@media (max-width: 1200px) {
    #sns .box {
        border-radius: 30px;
        width: 80%;
    }
    #sns .sns-item img {
        width: 5vw;
    }
}

@media (max-width: 800px) {
    #sns .box {
        margin: 10vh auto 0;
        width: 90vw;
        border-radius: 20px;
        box-shadow: 1.5vh 1.5vh 0px 0px var(--lightYellow);
    }
    
    #sns .cont-title {
        font-size: 150%;
        padding: 4vh 0;
    }
    #sns .sns-box {
        flex-direction: column;
        justify-content: space-around;
        align-items: start;
        padding: 4vh 0;
    }
    #sns a {
        display: flex;
        justify-content: left;
        align-items: center;
    }
    
    #sns .sns-item img {
        width: 10vw;
    }
    #sns ul {
        margin-left: 6vw;
    }
    #sns li {
        margin: 3vh 0;
    }
    #sns .text {
        font-size: 120%;
        padding: 0;
        margin: 0 0 0 5vw;
    }
    #sns .sns-item:nth-of-type(4) img {
        margin-bottom: 0;
    }
}


/* 
about
-----------------------------------------------------------------*/
.about {
    margin-top: 2vw;
    margin-bottom: 20vh;
}
.about .text,
.policy .text {
    padding: 4vw 12vw;
}

@media (max-width: 800px) {
    .about {
        margin-bottom: 15vh;
    }

    .about .text,
    .policy .text {
        padding: 5vw;
    }
}

/*
shien
----------------------------------------------------------------*/
.shien .text {
    padding: 4vw 12vw;
}

@media (max-width: 800px) {
    .shien .text {
        padding: 5vw;
    }
}

/*
tokutyou
----------------------------------------------------------------*/
.tokutyou dl {
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 5vh 7vw 6vh;
}
.tokutyou .number {
    -webkit-text-stroke: 1px var(--darkGray);
    color: rgba(0,0,0,.0);
    font-family: var(--title);
    font-size: 1300%;
    font-weight: 500;
    text-shadow: 4px 4px 0 var(--lightPink);
}
.tokutyou dd {
    margin: 70px 0 0 1vw;
    width: 80%;
}
.tokutyou .text {
    margin-top: 3vh;
}


@media (max-width: 800px) {
    .tokutyou .cont-title {
        line-height: 3rem;
    }
    .tokutyou dl {
        margin: 5vh 0 7vh;
    }
    .tokutyou .number {
        margin: 0;
        font-size: 500%;
        -webkit-text-stroke: 0.5px var(--darkGray);
        text-shadow: 2px 2px 0 var(--lightPink)
    }
    .tokutyou dd {
        margin-top: 25px;
        margin-left: 0;
    }
    .tokutyou .text {
        padding: 0;
    }
}


/* 
company
-----------------------------------------------------------------*/
.company {
    margin-bottom: 20vh;
}

.company dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: var(--gray) 2px dashed;
    margin: 30px;
    padding: 10px;
}
.company dl:first-of-type {
    margin-top: 10vh;
}
.company dt {
    font-size: 100%;
    vertical-align: middle;
    width: 30%;
}
.company dd {
    font-family: var(--title);
    font-size: 120%;
    width: 70%;
    line-height: 2rem;
}
.company a {
    color: var(--black)
}



.group {
    padding: 100px 0;
}
.company-cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10vh 20px;
    margin-bottom: 5vh;
}

.company-cont img {
    width: 45%;
    max-width: 1000px;
    aspect-ratio: 4/3;
    object-fit: cover;
    padding: 10px;
    border-radius: 30px;
}
.company-cont ul {
    width: 50%;
    margin: 2vh 0 0 60px;
}


.company-cont li {
    margin: 0 0 0 10px;
    padding: 0;
}
.company-cont .com-title {
    display: inline;
    font-size: 150%;
    font-family: var(--title);
    border-bottom: var(--lightPink) 2px dashed;
    margin: 0 0 5vw 0;
    padding: 0 0 10px;
}
.company-cont .text {
    margin-top: 2vw;
    line-height: 2rem;
}
.company-cont .address {
    margin-top: 0;
}


.company-cont .jump {
    font-size: 120%;
}
.company-cont li:last-of-type {
    padding-top: 2vw;
}

/* 写真調整 */
.oyama img {
    object-position: bottom;
}

.nishioyama {
    object-position: left;
}



@media (max-width:800px) {
    .company {
        margin-bottom: 5vh;
    }
    
    .company dl {
        margin: 30px;
        padding: 0 0 5px 0;
    }
    .company dt {
        padding-right: 5px;
    }
    

    .group {
        padding: 0;
    }
    .company-cont {
        flex-direction: column;
        padding: 5vh 20px;
        margin-bottom: 5vh;
    }
    
    .company-cont img {
        width: 100%;
        height: 250px;
        padding: 0;
        border-radius: 15px;
    }
    .company-cont ul {
        width: 100%;
        margin: 3vh 0 0;
        text-align: center;
    }
    
    .company-cont li {
        margin: 0 2vh;
        padding: 0;
    }
    .company-cont li:first-of-type {
        margin: 0 0 5vh 0;
        padding: 0 0 5px;
    }
    .company-cont .com-title {
        line-height: 3rem;
    }
    .company-cont .text {
        text-align: left;
        margin-top: 3vh;
        padding: 0;
    }
    .company-cont li:last-of-type {
        padding-top: 3vh;
    }
    
    
    /* 写真調整 */
    .oyama img {
        object-position: bottom;
    }
    
    .nishioyama {
        object-position: left;
    }
}

/*
use
-------------------------------------------------------------------*/
.use {
    padding: 0;
}

.use-list  {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 70px 0;
}

.use-list ul {
    position: relative;
    text-align: center;
    width: 20%;
    margin: 50px 10px 0;
}

.use-border {
    position: absolute;
    background-color: var(--lightPink);
    width: 60%;
    height: 3px;
    left: 50%;
    transform: translateX(-50%) translateY(200px);
}

.use-list img {
    width: 165px;
    border-radius: 50%;
    box-shadow: 8px 0 0 0 var(--lightPink);
}
.use-list .text{
    font-size: 170%;
    padding-top: 2vh;
    font-family: var(--title);
    color: var(--black);
}

.use-list .number {
    font-size: 350%;
    font-family: var(--title);
    margin: 3vh auto 0;
    text-align: center;
    color: var(--pink);
}


/* 登録ボタン */
.use-contact {
    margin: 100px auto 0;
    text-align: center;
    background: var(--hotPink);
    width: 100%;
    padding: 7vh 0 10vh;
}

.use-contact .text {
    margin-bottom: 5vw;
    font-size: 200%;
    color: var(--white);
    font-family: var(--title);
}

.use-contact .btn {
    color: var(--pink);
    font-family: var(--title);
    font-weight: 600;
    font-size: 220%;
    padding: 1.5vw 7vw;
    border-radius: 100px;
}
.use-contact .btn:hover {
    color: var(--white);
}


@media (max-width:1200px) {
    .use {
        padding: 0 3vw;
        margin: 10vw auto 15vw;
        width: 100%;
    }
    
    .use-list ul {
        width: 20%;
        margin: 50px 10px 0;
    }
    
    .use-border {
        width: 80%;
        transform: translateX(-50%) translateY(190px);
    }
    .job-use .use-border {
        width: 90%;
    }
    
    .use-list img {
        width: 120px;
        border-radius: 50%;
        box-shadow: 8px 0 0 0 var(--lightPink);
    }
    .use-list .text{
        font-size: 130%;
    }
    
    .use-list .number {
        font-size: 300%;
    }
}

@media (max-width:800px) {
    .use {
        padding: 0 30px;
        margin: 15vh auto 10vh;
    }
    .content .use-list {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 0;
    }
    .use-list ul {
        display: flex;
        justify-content: left;
        align-items: center;
        position: relative;
        width: 100%;
        margin: 30px auto;
    }
    .use .text {
        font-size: 110%;
        padding: 0 0 0 1vw;
        margin-top: 0;
        font-size: 125%;
    }

    .use-list img {
        width: 90px;
        box-shadow: 0 8px 0 0 var(--lightPink);
    }
    .use .number {
        padding: 0;
        border-radius: 50%;
        margin: 0 2vw 0 3vw;
    }
    
    .use-border {
        width: 2px;
        height: 600px;
        left: 73px;
        transform: translateY(100px);
    }
    .job-border {
        width: 2px;
        height: 800px;
        left: 73px;
        transform: translateY(100px);
    }
    

    /*　登録ボタン */
    .use-contact {
        margin-top: 15vh;
        padding: 5vh 0;
    }
    
    .use-contact .text {
        padding-bottom: 5vw;
        font-size: 150%;
    }
    
    .use-contact .btn {
        font-size: 175%;
        padding: 2.5vw 20vw;
        margin: 30px 0;
    }
    .use-contact .btn:hover {
        color: var(--white);
    }
}

/* 
service
---------------------------------------------------------*/
.service {
    margin: 5vw auto 0;
    width: 70%;
    text-align: left;
}
.service ul {
    margin: 2vw 0 8vw;
}

.service .text {
    line-height: 2rem;
}

@media (max-width:1200px) {
    .service {
        width: 80%;
        margin-top: 7vw;
    }
}

@media (max-width:800px) {
    .service {
        width: 100%;
        margin: 0 0 150px;
    }
    .service ul {
        margin: 10vh 0 15vh;
        width: 98%;
    }

    .service .text {
        margin-top: 5vw;
    }

}

/*
access
----------------------------------------------------*/
.content .gaikan {
    width: 60%;
    margin: 2vw 0 1vw 20%;
    padding: 0;
}

.acc-cont {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    margin: 100px 0 150px;
}

.acc-cont .list-p {
    margin-right: 3vw;
}
.acc-cont iframe {
    margin-left: 2vw;
}

.access .text {
    margin: 0 0 70px 65px;
}

.transfer ul {
    margin: 3vw 0 70px 7vw;
    line-height: 3rem;
}
.transfer li {
    position: relative;
    list-style: none;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 110%;
    color: var(--black)
}
.transfer li::before {
    position: absolute;
    content: '';
    width: 0.7vh;
    height: 0.7vh;
    background-color: var(--lightPink);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width:1200px) {
    .acc-cont .list-p {
        width: 60%;
    }
    .acc-cont iframe {
        width: 3/4;
        margin-left: 0;
    }

    .access .text {
        margin: 0 0 50px 65px;
    }
}


@media (min-width:800px) {
    .sm-gaikan {
        display: none;
    }
}


@media (max-width:800px) {
    .sm-gaikan {
        width: 100%;
        margin: 0 1vh;
        margin-left: 0;
    }
    .gaikan {
        display: none;
    }

    .acc-cont {
        flex-direction: column;
        margin: 50px 0 150px;
    }

    .access .text {
        margin: 10px 0 70px 50px;
        line-height: 2.5rem;
    }

    .acc-cont .list-p {
        margin-right: 0;
        width: 100%;
    }

    .transfer ul {
        margin-left: 1vw;
        text-align: left;
        line-height: 2rem;
        margin: 3vw 1vh;
    }

    .acc-cont iframe {
        margin-left: auto;
        margin: 0 1vh;
        width: 95%;
        height: 50vh;
    }
}

/*
question
---------------------------------------------------------*/
.que-cont {
    margin: 7vw auto 0;
    width: 75%;
}
.que-cont ul {
    border: var(--black) 2px solid;
    border-radius: 30px;
    margin: 2vw 0 7vw;
    padding: 1.5vw 0;
}
.que-cont li {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 1.5vw;
}
.que-cont li:nth-of-type(1) {
    border-bottom: 2px var(--black) dashed;
    padding-bottom: 1.5vw;
}
.que-cont li:nth-of-type(2) {
    padding-top: 1.5vw;
}

.que-cont .text {
    font-size: 100%;
    line-height: 2rem;
    margin-left: 20px;
    width: 90%;
}


.que-cont .q,
.que-cont .an {
    font-size: 220%;
    font-family: var(--title);
    font-weight: normal;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
}
.que-cont .q {
    background: var(--lightPink);
}
.que-cont .an {
    background: var(--lightYellow);
}

.que-cont .cont-title {
    font-size: 200%;
    text-align: left;
    margin-left: 20px;
}


@media (max-width:800px) {
    .que-cont {
        margin: 50px auto;
        width: 100%;
    }
    .que-cont ul {
        border-radius: 20px;
        margin-bottom: 10vh;
        padding: 2vh 0;
    }
    .que-cont li {
        align-items: start;
        padding: 0 2vh;
    }
    .que-cont li:nth-of-type(1) {
        padding-bottom: 2vh;
    }
    .que-cont li:nth-of-type(2) {
        padding-top: 2vh;

    }
    .que-cont .text {
        padding: 0;
        font-size: 110%;
        line-height: 2.5rem;
        width: 80%;
        margin-left: 0;
    }

    .que-cont .q,
    .que-cont .an {
        font-size: 150%;
        width: 40px;
        height: 40px;
        padding-top: 2px;
        margin-right: 10px; 
    }

    .que-cont .cont-title {
        font-size: 150%;
        margin-bottom: 0;
        line-height: 2rem;
        width: 80%;
        margin-left: 0;
    }

}

/*
learn
-------------------------------------------------------*/
.learn-cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    margin: 0 4vw 6vw;
}
.learn-cont:nth-of-type(2) {
    margin-bottom: 10vw;
}

.learn-cont ul {
    width: 50%;
}
/* 写真なしの指定 */
.learn-cont:first-of-type ul {
    width: 100%;
}


.learn-cont .text {
    line-height: 2rem;
    margin-right: 1vw;
}

.learn-cont .phot {
    width: 50%;
    max-width: 1000px;
    height: 300px;
    object-fit: cover;
    margin: 0 50px 0 0;
}



.learn-grid {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    gap: 70px;
    row-gap: 120px;
    justify-content: center;
    align-items: center;
    margin-top: 5vw;
}
.learn-grid .item {
    text-align: center;
}
.learn-grid img {
    filter:drop-shadow(2px 2px 2px #afafafc0);
}
.learn-grid .item img:hover {
    -webkit-filter:drop-shadow(0 0 0 #afafaf00);
    filter:drop-shadow(0 0 0 #afafaf00);
    filter: opacity(0.8);
}

.learn-cont .phot {
    width: 50%;
    max-width: 1000px;
    height: 300px;
    object-fit: cover;
    margin: 0 50px 0 0;
}

.learn-grid .learn-title {
    color: var(--black);
    font-family: var(--title);
    font-size: 200%;
    display: inline;
    border-bottom: var(--lightPink) 2px solid;
    margin: 50px 0 0;
}

@media (max-width:1200px) {
    .learn {
        padding: 0;
    }

    .learn .learn-cont {
        padding: 0 3vw;
    }
    .learn-cont .phot {
        margin: 0;
    }
    .learn-grid {
        gap: 40px;
        row-gap: 80px;
    }
}

@media (max-width:800px) {
    .learn-cont {
        flex-direction: column-reverse;
        margin: 5vh 0;
    }

    .learn-cont ul {
        width: 100%;
    }
    .learn-cont:nth-of-type(2) {
        margin-bottom: 20vh;
    }

    .learn-cont .text {
        line-height: 2rem;
        margin-right: 4vw;
    }

    .learn-cont .phot {
        width: 100%;
        max-width: 1000px;
        height: 250px;
        object-fit: cover;
        padding: 0 30px;
        margin-bottom: 40px;
    }


    .learn-grid {
        grid-template-columns: none;
        gap: 0;
        row-gap: 80px;
        justify-content: center;
        align-items: center;
        margin: 50px 0 0 5%;
        padding: 0;
        width: 90%;
    }
    .learn-grid .item {
        width: 100%;
    }

    .learn-grid img {
        margin-bottom: 2vh;
    }
    .learn-grid .learn-title {
        margin: 0;
        padding-left: 0;
    }
}

/* 学習一覧の説明
--------------------------------------------------- */
.learn-br {
    font-size: 80%;
}

.learn-cont-ex {
    margin: 0 5vw 7vw;
}

.learn-cont-ex .item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: left;
    margin-bottom: 6vw;
}

.learn-cont-ex ul {
    width: 60%;
}

.learn-cont-ex .jump {
    position: absolute;
    display: inline;
    padding-bottom: 10px;
    border-bottom: var(--pink) 2px solid;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 3vw;
}

/* 写真の場合はwidth50% */
.learn-cont-ex .phot {
    width: 40%;
    margin-left: 50px;
}

@media (max-width:1200px) {
    .learn-cont-ex .item {
        align-items: start;
    }
    .learn-cont-ex .list-p .text {
        margin-right: 2vw;
    }
    .learn-cont-ex .phot {
        padding: 0;
    }
}


@media (max-width:800px) {
    .learn-cont-ex {
        margin: 0;
    }
    .learn-cont-ex .item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding-top: 0;
    }
    .learn-cont-ex ul {
        width: 100%;
    };

    .learn-cont-ex .text {
        line-height: 2rem;
    }

    .learn-cont-ex .phot {
        width: 100%;
        margin-top: 30px;
        padding: 0;
        text-align: center;
    }
    .learn-cont-ex .phot img {
        padding: 10px;
    }

    .learn-cont-ex .list-p .text {
        margin-left: 50px;
        margin-right: 1.5vh;
    }
    .learn-cont-ex .jump {
        margin-top: 6vh;
    }
}


/* 仕事内容
----------------------------------------------------*/
.job-list {
    margin: 0 4vw;
}
.job-list .list-dot {
    align-items: center;
    font-size: 125%;
}

.job-list .list-p {
    margin-top: 7vw;
}

.job-list .item2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2vw;
    margin-left: 80px;
    margin-bottom: 3vw;
}

.job-list .banner {
    margin: 2.5vw 1px 0;
    display: flex;
    justify-content: center;
    line-height: 1rem;
}

.job-list .item1-sp {
    display: none;
}


@media (max-width:800px) {
    .job-list .list-p {
        margin-top: 5vh;
    }

    /*
    .job-list .item1-sp {
        display: block;
    }

    .job-list .item1-sp {
        display: flex;
    }
    */
    .job-list .item2 {
        grid-template-columns: auto;
        margin-left: 5px;
    }
    .job-list .list-dot {
        margin-left: 55px;
    }

    .job-list .banner {
        width: 100%;
    }
    .job-list .banner img {
        width: 100%;
    }
}


/*
news
---------------------------------------------------------*/
.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    row-gap: 120px;
    justify-content: center;
    align-items: center;
    margin: 80px 0 7vw;
    padding: 0 50px;
}

.news-list .item {
    padding: 10px 10px 20px;
    border-radius: 5%;
    box-shadow: 0 2px 10px -6px rgba(0, 0, 0, .5), 0 3px 10px -4px rgba(0, 0, 0, .2);
}

.news-list .news-icon {
    border-radius: 30px;
}

.news-list .sub-title {
    font-size: 175%;
    text-align: left;
    padding: 0 10px;
    border-bottom: none;
    display: block;
}
.news-list time {
    padding: 0 10px 10px;
    font-size: 120%;
    color: var(--black);
}

/* ページ番号 */
.nav-links {
    padding-top: 0;
}

.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 8px;
}
.nav-links .page-numbers {
    font-size: 125%;
    font-family: var(--title);
    color: var(--darkGray);
    padding: 0 15px 5px;
}
.nav-links .current {
    display: inline;
    color: var(--black);
    border-bottom: var(--lightPink) 2px solid;
    border-radius: 3%;
    margin: 0 10px;
    padding: 0 5px 5px;
}

.nav-links li > a:hover {
    color: var(--gray);
    transition: all 0.3s;
}

.nav-links .prev,
.nav-links .next {
    font-size: 95%;
}


/* 記事 */
.news-border { 
    border-top: var(--lightPink) 1vh solid;

}
.news .news-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0 2vw 1.5vw;
    border-bottom: var(--lightPink) 2px dashed;
}

.news .post_content {
    padding: 2vw;
}

.news p {
    font-size: 125%;
    margin: 1.5vw 2vw 0;
    color: var(--black);
    line-height: 3rem;
}

.news .news-footer {
    border-top: var(--lightPink) 2px dashed;
    padding: 3vw 2vw 0;
    text-align: center;
}
.news .news-footer .jump {
    border-bottom: var(--lightPink) 2px solid;
    border-radius: 3%;
    padding-bottom: 15px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.nav-links li > * {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150%;
    font-family: var(--title);
    margin: 0 10px;
    width: 20px;
}
.nav-links li > *:not(.dots) {
    color: var(--black);
}
.nav-links li > .current {
    display: inline;
    border-bottom: var(--pink) solid 2px;
    width: 20px;
    transition: all 0.3s;
}

.nav-links li > a:hover {
    color: var(--gray);
    transition: all 0.3s;
}

/* ページネーションの汎用スタイル */
/* 2025-06-19:削除(千葉中央校) */
/* ページネーションの汎用スタイルここまで */

@media (max-width:1200px) {
    .news-list {
        padding: 0;
    }
    .news-list .sub-title {
        font-size: 150%;
    }
}

@media (max-width:800px) {
    .news-list {
        grid-template-columns: auto;
        margin-top: 50px;
    }

    .news-list .item {
        padding: 0;
        box-shadow: none;
    }
    .news-list .item .main-item {
        display: flex;
        justify-content: left;
        align-items: start;
        margin-bottom: 4vh;
        padding: 10px 0;
        border-radius: 15px;
        box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
    }
    
    .news-list .sub-title {
        font-size: 130%;

    }
    .news-list time {
        padding: 0 10px;
        font-size: 100%;
        color: var(--black);
    }
    
    .news-list .main-item .news-icon {
        border-radius: 30px;
        width: 35%;
    }

    .news-list .main-item .date-title {
        width: 65%;
        padding-top: 1vw;
    }

    .nav-links {
        margin-top: 5vw
    }
    
    /* 記事 */
    .news .news-header {
        flex-direction: column-reverse;
        align-items: start;
    }
    .news .news-header .cont-title {
        text-align: left;
        font-size: 175%;
        margin: 2vh 0;
    }

    .news .post_content {
        padding-bottom: 2vh;
    }
    .news p {
        line-height: 2.5rem;
        margin-bottom: 2vh;
    }
    
    .news .news-footer {
        padding: 5vh 2vh 0;
    }
    
    .news .news-footer .jump {　　　　　
        font-size: 150%;
        padding-bottom: 10px;
    }

}

/*
プライバシーポリシー
------------------------------------------------------*/
.privacy .list-p {
    margin-top: 5vw;
}

.privacy .list-p:first-of-type {
    margin: 0;
}

@media (max-width:800px) {
    .privacy .list-p {
        margin-top: 7vh;
    }
}


/*
404 NOT FOUND
-----------------------------------------------------*/
.page-404 {
    text-align: center;
    padding: 15vw 0;
    color: var(--black);
}

.page-404 p {
    margin-bottom: 3vw;
}

.page-404 .back {
    font-size: 120%;
    color: var(--black);
    padding-bottom: 7px;
    border-bottom: var(--lightPink) 2px dashed;
    border-radius: 3px;
}

@media (max-width: 800px) {
    .page-404 {
        padding: 25vh 0;
    }

    .page-404 p {
        margin-bottom: 5vh;
    }
}



/* フッター
--------------------------------------------------- */
footer {
    background-color: var(--milk);
    color: var(--black);
    padding: 17vh 0;
    border-top: var(--hotPink) solid 3vh;
}
footer a {
    color: var(--black);
}

footer .btn {
    padding: 4vh 4vw;
    border-radius: 100px;
    margin: 2.5vh 0 0 2vw;
}
footer .btn span {
    font-size: 150%;
}


/* フッター上部 */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3vw;
    padding-bottom: 5vh;
    border-bottom: var(--gray) dashed 2px;
}

.footer-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-icon {
    width: 19vw;
}

.footer-cont .item {
    font-size: 105%;
    margin-left: 4.5vw;
}
.footer-top .nav {
    position: relative;
    font-weight: 600;
    font-size: 110%;
    text-align: left;
}
.footer-top .nav::before {
    position: absolute;
    content: '';
    width: 0.7vh;
    height: 0.7vh;
    background-color: var(--lightPink);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer-top ul {
    margin-top: 3vh;
}
.footer-top li {
    padding: 0 0 0 15px;
}
.footer-top ul li a {
    text-decoration: solid;
    padding-bottom: 0.4vh;
}


/* フッター下部 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 5vw;
    padding-bottom: 12vw;

}

.footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-left: 3vw;
}

.footer-menu .footer-item {
    margin-right: 5vw;
}
.footer-menu .nav {
    line-height: 3rem;
    text-align: left;
    border-bottom: var(--lightPink) 2px solid;
    padding-bottom: 0;
    margin-bottom: 1.5vw;
}

.footer-menu li {
    margin-top: 1vw;
    margin-left: 0.5vw;
}
.footer-menu ul:last-of-type {
    margin-left: 0;
}
.footer-menu ul:last-of-type li:first-of-type {
    margin-top: 0;
}


.footer-bottom .btn {
    border: var(--yellow) solid 2px;
    padding: 4vh 4vw;
    margin-top: 0;
}
.footer-bottom .btn span {
    color: var(--yellow);
}
.footer-bottom .btn:hover {
    background: var(--yellow);
}
.footer-bottom .btn:hover span {
    color: var(--white);
}



/* sp */
@media (max-width: 1200px) {
    footer .btn {
        text-align: center
    }

    /* フッター上部 */
    .footer-top {
        align-items: end;
        margin-top: 4vw;
    }
    .footer-cont {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .footer-icon {
        width: 23vw;
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }
    .footer-cont .item {
        margin-left: 2vw;
    }

    /* フッター下部 */
    .footer-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 3vw;
    }

    .footer-menu li {
        margin-top: 1.5vw;
    }

    .footer-bottom .btn {
        margin-top: 0;
    }
}

@media (max-width: 800px) {
    footer {
        border-top: var(--hotPink) solid 3vh;
    }

    footer .btn {
        position: relative;
        padding: 4vw 10vw;
        border-radius: 100px;
        margin: 4vh 0 0;
        left: 50%;
        transform: translateX(-50%);
    }
    footer .btn span {
        font-size: 150%;
    }
    
    /* フッター上部 */
    .footer-top {
        flex-direction: column;
        align-items: start;
        margin-top: 10vw;
    }
    .footer-cont {
        display: block;
    }
    .footer-cont .item {
        margin-left: 1vh;
    }
    
    .footer-icon {
        width: 50vw;
    }
    
    /* フッター下部 */
    .footer-bottom {
        flex-direction: column;
        margin-top: 0;
    }

    .footer-menu {
        display: block;
        margin-left: 1vh;
    }
    .footer-menu .footer-item {
        margin-right: 0;
    }
    
    .footer-menu .nav {
        margin-bottom: 2vh;
        margin-top: 4vh;
    }

    .footer-menu li {
        margin-top: 3vh;
        margin-left: 1vh;
    }
    .footer-menu ul:last-of-type li:first-of-type {
        margin-top: 3vh;
    }

    .footer-bottom .btn {
        margin-top: 4vh;
        padding: 4vw 10vw;
    }
}


/* 
境界線部分
------------------------------------------------------------------------- */
/* pink */
.custom-shape-divider-bottom-1732507199 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1732507199 svg {
    position: relative;
    display: block;
    width: calc(300% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1732507199 .shape-fill {
    fill: #FFB0AC;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
    .custom-shape-divider-bottom-1732507199 svg {
        width: calc(300% + 1.3px);
        height: 150px;
    }
}

/** For mobile devices **/
@media (max-width: 767px) {
    .custom-shape-divider-bottom-1732507199 svg {
        width: calc(300% + 1.3px);
        height: 30px;
    }
}

/* yellow */
.custom-shape-divider-bottom-1732506925 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1732506925 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 200px;
}

.custom-shape-divider-bottom-1732506925 .shape-fill {
    fill: #FFDE62;
}

/** For mobile devices **/
@media (max-width: 800px) {
    .custom-shape-divider-bottom-1732506925 svg {
        width: calc(100% + 1.3px);
        height: 100px;
    }
}


