@charset "UTF-8";
@import url("reset.min.css");

:root
{
    --black: #1c1c1c;
    --blue: #2D9BE2;
    --skyblue: #D8F3FF;
    --red: #ED8686;
    --pink: #FFE5E5;
    --gray: #E5E5E5;
}

html
{
    scroll-behavior: smooth;
    font-size: 62.5%;
    /*pxだと10px;*/
}

@media screen and (min-width:800px) and (max-width:1300px)
{

    /*　画面サイズが901pxから1300pxまではここを読み込む　*/
    html
    {
        font-size: 56.5%;
        /*pxだと9.04px;*/
    }
}

body
{
    width: 100%;
    height: auto;
    background: #fff;
    color: #1C1C1C;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 400;
    position: relative;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0;
}

img
{
    max-width: 100%;
    height: auto;
}

a
{
    display: block;
    color: #1C1C1C;
    text-decoration-line: none;
}

a:hover
{
    opacity: 0.8;
    transition-duration: 0.8s;
}

a img:hover
{
    opacity: 0.8;
    transition-duration: 0.8s;
}

.underline
{
    border-bottom: 3px solid #000;
    padding-bottom: 1rem;
}

.pc-none
{
    display: none;
}

.sp-none
{
    display: block;
}

@media screen and (max-width: 999px)
{
    .pc-none
    {
        display: block;
    }

    .sp-none
    {
        display: none;
    }
}

.clear
{
    clear: both;
}

.max-img
{
    width: 100%;
}

/*ヘッダー
-------------------------------------*/
#header
{
    position: fixed;
    width: 100%;
    z-index: 3;
}

/*メインナビゲーション*/
#header nav
{
    display: block;
    position: fixed;
    top: -682px;
    left: 0;
    width: 100%;
    height: 682px;
    background: #fff;
    overflow-y: scroll;
    transition: all .5s;
    z-index: 200;
    opacity: 0;
}

#header .open nav
{
    top: 0;
    opacity: 1;
}

#header nav .inner
{
    width: 85%;
    margin: 120px auto;
    font-weight: 700;
}

#header nav .inner ul.persona
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 37px;
}

#header nav .inner ul.persona li
{
    width: 32%;
}

#header nav .inner ul.persona li a
{
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 5em;
    background: var(--blue);
    width: 100%;
    height: 80px;
    color: #fff;
    font-size: 2rem;
    border-radius: 100vh;
}

#header nav .inner ul.persona li a::before
{
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    width: 10rem;
    height: 74px;
    border-radius: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
}

#header nav .inner ul.persona li a.for_student::before
{
    background-image: url(img/anchor01.png);
}

#header nav .inner ul.persona li a.for_society::before
{
    background-image: url(img/anchor02.png);
}

#header nav .inner ul.persona li a.for_housewife::before
{
    background-image: url(img/anchor03.png);
}

#header nav .inner ul.persona li a::after
{
    position: absolute;
    content: '';
    top: 47%;
    right: 5%;
    width: 15px;
    height: 7.5px;
    background-image: url(img/arrow_nav.png);
    background-size: contain;
    background-repeat: no-repeat;
}

#header nav .inner ul.anchor-area
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 54px;
}

#header nav .inner ul.anchor-area li
{
    width: 45%;
}

#header nav .inner ul.anchor-area li a
{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 54px;
    color: var(--blue);
    font-size: 1.6rem;
    border-bottom: 2px solid var(--blue);
}

#header nav .inner ul.anchor-area li a.blank::after
{
    position: absolute;
    content: '';
    width: 10.65px;
    height: 10.65px;
    top: 40%;
    right: 0;
    background-image: url(img/icon_blank_bl.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

#header nav .inner ul.btn-area
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#header nav .inner ul.btn-area li
{
    width: 45%;
}

#header nav .inner ul.btn-area li a.btn-a
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 89px;
    background: var(--red);
    color: #fff;
    font-size: 2rem;
    border-radius: 100vh;
}

#header nav .inner ul.btn-area li a.btn-b
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 89px;
    background: #fff;
    color: var(--blue);
    border: 2px solid var(--blue);
    font-size: 2rem;
    border-radius: 100vh;
}

/*ハンバーガーボタン*/
#header .toggle_btn
{
    display: block;
    position: fixed;
    top: -45px;
    right: -49px;
    width: 150px;
    height: 150px;
    background: var(--blue);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}

#header .toggle_btn span
{
    display: block;
    position: absolute;
    left: 39px;
    width: 38px;
    height: 2px;
    background-color: #fff;
    transition: all .5s;
}

#header .toggle_btn span:nth-child(1)
{
    top: 74px;
}

#header .toggle_btn span:nth-child(2)
{
    top: 84px;
}

#header .toggle_btn span:nth-child(3)
{
    top: 94px;
}

#header .toggle_btn span:nth-child(4)
{
    top: 104px;
    height: 13px;
    background: transparent;
    font-size: 13px;
    color: #fff;
}

#header .toggle_btn span:nth-child(5)
{
    display: none;
}

#header .open .toggle_btn
{
    z-index: 300;
}

#header .open .toggle_btn span:nth-child(1)
{
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
    top: 68px;
}

#header .open .toggle_btn span:nth-child(2)
{
    opacity: 0;
    background: var(--blue);
}

#header .open .toggle_btn span:nth-child(3)
{
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
    top: 88px;
}

#header .open .toggle_btn span:nth-child(4)
{
    display: none;
}

#header .open .toggle_btn span:nth-child(5)
{
    top: 104px;
    height: 13px;
    background: transparent;
    font-size: 13px;
    color: #fff;
    display: block;
}

#header #mask
{
    display: none;
    transition: all .5s;
}

#header .open #mask
{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.5);
    z-index: 2;
    cursor: pointer;
}

@media screen and (max-width: 999px)
{
    #header nav .inner
    {
        margin: 60px auto;
    }

    #header nav .inner ul.persona
    {
        margin-bottom: 0;
    }

    #header nav .inner ul.persona li
    {
        width: 100%;
        margin-bottom: 15px;
    }

    #header nav .inner ul.persona li a
    {
        font-size: 1.4rem;
        height: 50px;
    }

    #header nav .inner ul.persona li a::before
    {
        height: 42px;
        top: 3px;
        left: 3px;
    }

    #header nav .inner ul.anchor-area
    {
        margin-bottom: 1.5rem;
    }

    #header nav .inner ul.anchor-area li
    {
        width: 100%;
    }

    #header nav .inner ul.anchor-area li a
    {
        height: 4rem;
        font-size: 1.4rem;
    }

    #header nav .inner ul.btn-area li
    {
        width: 100%;
        margin-bottom: 20px;
    }

    #header nav .inner ul.btn-area li a.btn-a
    {
        height: 60px;
        font-size: 1.4rem;
    }

    #header nav .inner ul.btn-area li a.btn-b
    {
        height: 60px;
        font-size: 1.4rem;
    }

    #header .toggle_btn
    {
        width: 83px;
        height: 83px;
        top: -20px;
        right: -20px;
    }

    #header .toggle_btn span
    {
        width: 26px;
        left: 20px;
    }

    #header .toggle_btn span:nth-child(1)
    {
        top: 33px
    }

    #header .toggle_btn span:nth-child(2)
    {
        top: 39px
    }

    #header .toggle_btn span:nth-child(3)
    {
        top: 45px
    }

    #header .toggle_btn span:nth-child(4)
    {
        top: 52px;
        font-size: 9px;
        height: 9px;
        letter-spacing: 0;
    }

    #header .open .toggle_btn span:nth-child(1)
    {
        top: 30px
    }

    #header .open .toggle_btn span:nth-child(3)
    {
        top: 50px
    }

    #header .open .toggle_btn span:nth-child(5)
    {
        top: 54px;
        font-size: 9px;
        height: 9px;
        letter-spacing: 0;
    }
}

/*コンテナ
-------------------------------------*/
.container
{
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
}

.container-full
{
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/*ページトップへ戻るボタン
-------------------------------------*/
.pagetop
{
    position: absolute;
    bottom: 11.7rem;
    right: 5%;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: #2D9BE2;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.5;
}

.pagetop img
{
    width: 17px;
    height: 9.5px;
}

.pagetop span
{
    display: block;
    width: 100%;
}

@media screen and (max-width: 999px)
{
    .pagetop
    {
        bottom: 5rem;

    }
}

/*フッター
-------------------------------------*/
footer
{
    background: #1374C6;
    color: #fff;
    padding: 9.7rem 0
}

footer .container .flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .left
{
    width: 22%;
}

footer .right
{
    display: flex;
    width: 70%;
}

footer .right ul
{
    flex: 1;
}

footer .right ul li
{
    padding-bottom: 1.1em;
    border-left: 1px solid #fff;
    padding-left: 1em;
}

footer .right ul li:last-child
{
    padding-bottom: 0;
}

footer .right a
{
    color: #fff;
}

footer .right a.blank img
{
    width: 10.65px;
    height: 10.65px;
    margin-left: 0.5em;
}

footer .copy
{
    font-size: 1.3rem;
    margin-top: 11.7rem;
}

@media screen and (max-width: 999px)
{
    footer
    {
        padding: 5rem 0;
    }

    footer .left
    {
        width: 26.5rem;
        margin-bottom: 2.4rem;
    }

    footer .right
    {

        display: block;
        margin-bottom: 0;
        width: 100%;
    }

    footer .right ul li
    {
        font-size: 1.4rem;
    }

    footer .right ul li:last-child
    {
        padding-bottom: 1.1rem;
    }

    footer .copy
    {
        font-size: 1.2rem;
    }
}

/*各コンテンツ
-------------------------------------*/
/* hero */
.hero
{
    background: var(--blue);
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: -2;
}

.hero::before
{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #7DCAF7;
    transform: skewY(-7deg) translateY(700px);
    z-index: -1;
}

.hero .line01
{
    position: absolute;
    top: 59px;
    left: 36%;
    width: 10.869rem;
    height: 7.94rem;
    z-index: 1;
}

.hero .line02
{
    position: absolute;
    bottom: 207px;
    left: 2%;
    width: 7.569rem;
    height: 11.069rem;
    z-index: 1;
}

.hero .line03
{
    position: absolute;
    bottom: 270px;
    right: 5%;
    width: 7.169rem;
    height: 10.069rem;
    z-index: 1;
}

.hero .circle
{
    position: absolute;
    top: 17rem;
    left: 3%;
    width: 15rem;
    height: 15rem;
    background: #0074C6;
    border-radius: 50%;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    z-index: -1;
    display: block;
    text-align: center;
    line-height: 1.4;
    padding-top: 35px
}

.hero .top
{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.hero .top .txt
{
    padding-top: 2rem;
    width: 35%;
}

.hero .top .txt .sp-none
{
    width: 29.4rem;
    margin-left: 8%;
}

.hero .top .txt .catch
{
    font-size: 5rem;
    font-weight: 700;
    padding-top: 21rem;
    padding-left: 25%;
    padding-bottom: 4rem;
    line-height: 1.6;
}

.hero .top .txt .subcatch
{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    padding-left: 25%;
}

.hero .top .img
{
    width: 60%;
    height: 40vw
}

.hero .top .img img
{
    border-bottom-left-radius: 100px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .bottom
{
    padding: 5rem 0;
}

.hero .bottom img
{
    width: 100%;
}

@media screen and (max-width: 1660px){
    .hero .line01
    {
        width: 9.529rem;
        height: 7.068rem;
    }

    .hero .line02
    {
        left: 5%;
        width: 6.079rem;
        height: 8.906rem;
        bottom: 190px;
    }

    .hero .line03
    {
        width: 6rem;
        height: 8.427rem;
    }

    .hero .circle
    {
        top: 12rem;
        width: 13rem;
        height: 13rem;
        font-size: 2rem;
        padding-top: 33px
    }

    .hero .top .txt .catch
    {
        padding-top: 15rem;
        font-size: 4rem;
    }

    .hero .top .txt .subcatch
    {
        font-size: 1.7rem;
    }
}


@media screen and (max-width: 999px)
{
    .hero
    {
        padding-top: 17px;
    }

    .hero::before
    {
        transform: skewY(340deg) translateY(660px);
    }

    .hero .pc-none
    {
        width: 16.7rem;
        margin-left: 5%;
        margin-bottom: 16px;
    }

    .hero .line01
    {
        top: auto;
        left: 3%;
        width: 6.02rem;
        height: 4.398rem;
        bottom: 415px;
    }

    .hero .line02
    {
        display: none;
    }

    .hero .line03
    {
        top: 308px;
        bottom: auto;
        width: 4.13rem;
        height: 6.039rem;
    }

    .hero .circle
    {
        z-index: 1;
        font-size: 1.6rem;
        width: 80px;
        height: 80px;
        padding-top: 16px;
        top: 300px
    }

    .hero .top
    {
        display: block;
    }

    .hero .top .txt
    {
        width: 80%;
        padding-top: 3.6rem;
        padding-left: 0;
        margin: 0 auto
    }

    .hero .top .img
    {
        width: 90%;
        margin-left: 10%;
        height: 307px;
    }

    .hero .top .img img
    {
        border-bottom-left-radius: 50px;
        border-top-left-radius: 50px;
    }

    .hero .top .txt .catch
    {
        padding-top: 0;
        font-size: 3.4rem;
        padding-bottom: 2rem;
        padding-left: 0;
    }

    .hero .top .txt .subcatch
    {
        font-size: 1.6rem;
        padding-left: 0;
    }

    .hero .bottom
    {
        padding: 3.6rem 0 5rem;
    }
}

/* anchor */
.anchor
{
    display: flex;
    justify-content: space-between;
    padding: 7rem 0 8rem;
    flex-wrap: wrap;
}

.anchor a
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--blue);
    background: #fff;
    color: var(--blue);
    font-size: 2rem;
    font-weight: 700;
    height: 8rem;
    width: 31.5%;
    border-radius: 100vh;
    padding-left: 7rem;
}

.anchor a::before
{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 10rem;
    height: 7.4rem;
    border-radius: 100vh;
    background-size: contain;
    background-repeat: no-repeat;
}

.anchor a.for_student::before
{
    background-image: url(img/anchor01.png);
}

.anchor a.for_society::before
{
    background-image: url(img/anchor02.png);
}

.anchor a.for_housewife::before
{
    background-image: url(img/anchor03.png);
}

.anchor a::after
{
    position: absolute;
    content: '';
    top: 45%;
    right: 5%;
    width: 15px;
    height: 7.5px;
    background-image: url(img/arrow_anchor.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1300px)
{
    .anchor a
    {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 999px)
{
    .anchor
    {
        padding: 5rem 0 0;
    }

    .anchor a
    {
        width: 100%;
        margin-bottom: 2rem;
        height: 7.2rem;
        font-size: 1.6rem;
        padding-left: 6rem;
    }

    .anchor a::before
    {
        height: 6.5rem;
    }
}

/*大学生・大学院生の方*/
.persona-cont
{
    position: relative;
    margin-bottom: 12rem;
}

.persona-cont.bb
{
    background-color: #F2FBFF;
    padding: 10rem 0
}

.persona-cont.last
{
    margin-bottom: 33rem;
}

#student.persona-cont .line
{
    position: absolute;
    left: 45%;
    top: 0;
    width: 10.86rem;
    height: 7.94rem;
    z-index: 1;
}

#society.persona-cont .line
{
    position: absolute;
    left: 45%;
    top: 10rem;
    width: 10.86rem;
    height: 7.94rem;
    z-index: 1;
}

#part.persona-cont .line
{
    position: absolute;
    left: 45%;
    top: 0;
    width: 10.86rem;
    height: 7.94rem;
    z-index: 1;
}

.persona-cont h2
{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    width: 48%;
    background: var(--blue);
    color: #fff;
    padding-right: 50px;
    border-top-right-radius: 100vh;
    border-bottom-right-radius: 100vh;
    margin-bottom: 4.5rem;
}

.persona-cont.bb h2
{
    top: 10rem;
}

.persona-cont section.top
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}

.persona-cont .top .txt
{
    width: 60%;
    padding-top: 14rem
}

.persona-cont h3
{
    font-size: 2.4rem;
    color: var(--blue);
    font-weight: 700;
    line-height: 1.7;
    border-left: 3px solid var(--blue);
    padding-left: 1em;
    margin-bottom: 1em;
}

.persona-cont .top ul
{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 1.5em;
}

.persona-cont .top li
{
    padding-bottom: 0.3em;
    text-indent: -1em;
    padding-left: 1em;
}

.persona-cont .top .img
{
    width: 35%;
}

.persona-cont .top .txt p
{
    line-height: 1.7;
}

.persona-cont h4
{
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.persona-cont .scwrap
{
    margin-bottom: 6rem;
    width: 100%;
    overflow-x: scroll;
}

.persona-cont .voice .flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.persona-cont .voice .flex .img
{
    width: 35%;
}

.persona-cont .voice .flex .txt
{
    width: 60%;
}

.persona-cont .voice .flex .txt .midashi
{
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue);
    padding-bottom: 3rem;
    line-height: 1.7;
}

.persona-cont .voice .flex .txt .zokusei
{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.8;
}

.persona-cont .voice .flex .interview,
.persona-cont .voice .flex .interview2
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25rem;
    height: 5rem;
    color: var(--blue);
    font-weight: 700;
    border: 2px solid var(--blue);
    border-radius: 100vh;
    margin-top: 3rem;
    background: #fff;
}

.persona-cont .voice .flex .interview::after,
.persona-cont .voice .flex .interview2::after
{
    position: absolute;
    content: '';
    top: 42%;
    right: 1em;
    width: 17px;
    height: 9.5px;
    background-image: url(img/arrow_interview.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s;
}

.persona-cont .voice .flex .interview.open::after,
.persona-cont .voice .flex .interview2.open::after
{
    rotate: 180deg;
}

.persona-cont .voice .qa,
.persona-cont .voice .qa2
{
    display: none;
    transition: all 0.3s;
}

.persona-cont .voice .qa.open,
.persona-cont .voice .qa2.open
{
    display: block;
    padding: 5rem;
    background: var(--blue);
    color: #fff;
    line-height: 1.5;
    border-radius: 10px;
}

.persona-cont .voice .qa dl,
.persona-cont .voice .qa2 dl
{
    padding-bottom: 1.8em;
}

.persona-cont .voice .qa dl:last-child,
.persona-cont .voice .qa2 dl:last-child
{
    padding-bottom: 0;
}

.persona-cont .voice .qa dt,
.persona-cont .voice .qa2 dt
{
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 0.6em;
}

.persona-cont .voice .qa dd,
.persona-cont .voice .qa2 dd
{
    line-height: 1.7;
}

@media screen and (max-width: 1300px)
{
    .persona-cont h2
    {
        font-size: 3rem;
        height: 8rem;
    }
}

@media screen and (max-width: 999px)
{
    .persona-cont
    {
        margin-bottom: 0
    }

    .persona-cont.last
    {
        margin-bottom: 17rem;
    }

    #student.persona-cont .line
    {
        left: 83%;
        top: 3.5rem;
        width: 5.37rem;
        height: 3.9rem;
    }

    #society.persona-cont .line
    {
        left: 50%;
        top: 3.5rem;
        width: 5.37rem;
        height: 3.9rem;
    }

    #part.persona-cont .line
    {
        left: 83%;
        top: 3.5rem;
        width: 5.37rem;
        height: 3.9rem;
    }

    .persona-cont h2
    {
        width: 90%;
        font-size: 2.6rem;
        padding-left: 0.2em;
        padding-right: 0;
        top: 5rem;
    }

    .persona-cont section.top
    {
        margin-bottom: 4rem;
        flex-direction: column-reverse;
    }

    .persona-cont section.top .img{
        width: 100%;
        padding-top: 16rem;
    }

    #society.persona-cont section.top .img{
        padding-top: 6rem;
    }

    .persona-cont .top .txt
    {
        width: 100%;
        padding-top: 3rem;
    }

    .persona-cont .top .txt p
    {
        font-size: 1.4rem;
    }

    .persona-cont h3
    {
        font-size: 2rem;
        margin-bottom: 2.4rem;
        line-height: 1.5;
    }

    .persona-cont .top ul
    {
        font-size: 1.6rem;
        padding-bottom: 1.8rem
    }

    .persona-cont h4
    {
        padding-top: 0;
    }

    .persona-cont .scwrap
    {
        margin-bottom: 5rem;
    }

    .persona-cont .scwrap .img
    {
        width: 1200px;
    }

    .persona-cont .voice .flex
    {
        margin-bottom: 0;
        padding-bottom: 5rem;
    }

    .persona-cont .voice .flex .img
    {
        width: 100%;
    }

    .persona-cont .voice .flex .txt
    {
        width: 100%;
    }

    .persona-cont .voice .flex .txt .midashi
    {
        font-size: 2rem;
        padding-top: 2.5rem;
        line-height: 1.4;
        padding-bottom: 2rem;
    }

    .persona-cont .voice .flex .txt .zokusei
    {
        padding-bottom: 1.6rem;
    }

    .persona-cont .voice .flex .interview,
    .persona-cont .voice .flex .interview2
    {
        margin: 0 auto;
    }

    .persona-cont .voice .qa.open,
    .persona-cont .voice .qa2.open
    {
        padding: 2rem;
    }

    .persona-cont .voice .qa dt,
    .persona-cont .voice .qa2 dt
    {
        font-size: 1.6rem;
    }

    .persona-cont .voice .qa dd,
    .persona-cont .voice .qa2 dd
    {
        font-size: 1.4rem;
    }

    .persona-cont.bb
    {
        padding-bottom: 5rem;
    }

    .persona-cont.bb h2
    {
        top: 5rem;
        width: 55%;
    }
}

/*塾長からのメッセージ*/
.principal_message
{
    position: relative;
    background: var(--blue);
    color: #fff;
    margin-top: 5.7rem;
}

.principal_message::before
{
    position: absolute;
    content: '';
    top: -22.9rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 22.9rem;
    background-image: url(img/back.svg);
    background-size: 220%;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -2;
}

.principal_message::after
{
    position: absolute;
    content: '';
    top: -11rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 10.87rem;
    height: 7.94rem;
    background-image: url(img/principal_message_line.svg);
    background-size: contain;
    background-position: center bottom;
    z-index: -1;
}

.principal_message h2
{
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding: 0 0 5rem;
}

.principal_message .flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.principal_message .flex .img
{
    width: 25%;
}

.principal_message .flex .txt
{
    width: 70%;
}

.principal_message .flex .txt p
{
    line-height: 1.7;
    padding-bottom: 3rem;
}

.principal_message .flex .txt p.big
{
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
}

.principal_message .flex .txt p.name
{
    font-size: 1.8rem;
    font-weight: 700;
}

.principal_message h3
{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--blue);
    font-size: 2.4rem;
    font-weight: 700;
    width: 31.2rem;
    height: 6rem;
    border-radius: 100vh;
    margin: 5rem auto 2.5rem;
}

.principal_message li
{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.8;
    padding-bottom: 1em;
    text-align: center;
}

@media screen and (max-width: 999px)
{
    .principal_message::before
    {
        height: 11.7rem;
        top: -11.7rem;
    }

    .principal_message::after
    {
        width: 5.37rem;
        height: 3.92rem;
        top: -6rem
    }

    .principal_message h2
    {
        font-size: 2.6rem;
        padding: 0 0 3rem;
    }

    .principal_message .flex .img
    {
        width: 18.1rem;
        display: block;
        margin: 0 auto 3rem;
    }

    .principal_message .flex .txt
    {
        width: 100%;
    }

    .principal_message .flex .txt p
    {
        padding-bottom: 2rem;
    }

    .principal_message .flex .txt p.big
    {
        font-size: 2rem;
        padding-bottom: 2.2rem;
    }

    .principal_message .flex .txt p.name
    {
        font-size: 1.6rem;
        padding-bottom: 0;
    }

    .principal_message h3
    {
        height: 5rem;
        font-size: 2rem;
    }

    .principal_message li
    {
        font-size: 1.6rem;
        text-align: left;
    }
}

/*生徒さんからのメッセージ*/
.stydents_message
{
    position: relative;
    background: var(--blue);
    padding: 8rem 0 10rem 0;
}

.stydents_message .line
{
    width: 10.9rem;
    margin: 0 auto 3rem;
    display: block;
}

.stydents_message .container
{
    border-top: 1px solid #fff;
    padding-top: 9.9rem;
}

.stydents_message h2
{
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding: 0 0 5rem;
}

.stydents_message .flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stydents_message .flex li{
    width: 48%;
    height: auto;
    margin-bottom: 4rem;
}

.stydents_message .flex li:nth-child(3),.stydents_message .flex li:nth-child(4)
{
    margin-bottom: 0;
}



@media screen and (max-width: 999px)
{
    .stydents_message
    {
        padding: 3rem 0 5rem 0;
    }

    .stydents_message .container
    {
        padding-top: 5rem;
    }

    .stydents_message .line
    {
        width: 5.37rem;
        height: 3.92rem;
        margin: 0 auto 2.5rem
    }

    .stydents_message h2
    {
        font-size: 2.6rem;
        line-height: 1.5;
        padding-bottom: 3.7rem;
    }

    .stydents_message .flex{
        display: block;
    }

    .stydents_message .flex li{
        width: 100%;
        margin-bottom: 2rem;
    }

    .stydents_message .flex li:nth-child(3){
        margin-bottom: 2rem;
    }
}

/*当学院の様子*/
.about_school
{
    margin-top: 10rem;
}

.about_school .line
{
    width: 10.9rem;
    margin: 0 auto 3rem;
    display: block;
}

.about_school h2
{
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    padding: 0 0 4.6rem;
}

.about_school .flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about_school .flex img
{
    width: 23%;
    margin-bottom: 2.7rem;
    border-radius: 10px;
}

.about_school p
{
    text-align: center;
    font-weight: 700;
    color: var(--blue);
    padding: 3rem 0 1.8rem;
}

.about_school a
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 100vh;
    width: 57rem;
    height: 8.9rem;
    margin: 0 auto 5rem;
}

@media screen and (max-width: 999px)
{
    .about_school
    {
        margin-top: 5rem;
    }

    .about_school .line
    {
        width: 5.369rem;
        margin: 0 auto 2.6rem
    }

    .about_school h2
    {
        font-size: 2.6rem;
        padding-bottom: 2.8rem;
    }

    .about_school .flex img
    {
        width: 48%;
        margin-bottom: 1.5rem;
    }

    .about_school a
    {
        width: 100%;
        height: 7rem;
    }

    .about_school p
    {
        padding: 2.3rem 0 1.8rem;
        line-height: 1.5;
    }

}

/*アクセス*/
.access
{
    background: var(--skyblue);
    padding: 5rem;
    margin-bottom: 16rem;
    border-radius: 10px;
    font-weight: 700;
}

.access h2
{
    font-size: 2.4rem;
    display: inline-block;
    padding: 0.5em 1.5em;
    background: var(--blue);
    color: #fff;
    border-radius: 100vh;
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.access .flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.access .flex .left
{
    width: 48%;
}

.access .flex .left p
{
    line-height: 1.7;
}

.access .flex .left p.adress
{
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #CCCCCC;
}

.access .flex .right
{
    width: 48%;
}

.access .flex .right iframe
{
    width: 100%;
    height: 32.6rem;
    border-radius: 10px;
}

@media screen and (max-width: 999px)
{
    .access
    {
        padding: 2.5rem;
        margin-bottom: 5rem;
    }

    .access .flex .left
    {
        width: 100%;
    }

    .access .flex .right
    {
        width: 100%;
        margin-top: 1.5rem;
    }

    .access h2
    {
        width: 100%;
        margin-top: 0;
        font-size: 2rem;
        line-height: 1.4;
        text-align: center;
        padding: 0.8em 1.5em;
        margin-bottom: 2.5rem;
    }

    .access .flex .right iframe
    {
        height: 30rem;
    }
}

/*募集要項*/
.recruitments
{
    margin-bottom: 30rem;
}

.recruitments img
{
    width: 10.9rem;
    margin: 0 auto 3rem;
    display: block;
}

.recruitments h2
{
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
}

.recruitments dl
{
    padding: 2.5rem 0;
    border-bottom: 1px solid #ccc;
}

.recruitments dt
{
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--blue);
    padding-bottom: 1.5rem;
}

.recruitments dd
{
    line-height: 1.6;
}

@media screen and (max-width: 999px)
{
    .recruitments
    {
        margin-bottom: 16rem;
    }

    .recruitments h2
    {
        font-size: 2.6rem;
    }

    .recruitments img
    {
        width: 5.37rem;
        height: 3.92rem;
        margin: 0 auto 2.5rem
    }

    .recruitments dt
    {
        font-size: 1.6rem;
    }

    .recruitments dd
    {
        font-size: 1.4rem;
        line-height: 1.7;
    }
}

/*採用までの流れ*/
.flow
{
    position: relative;
    background: var(--blue);
    padding-bottom: 10rem;
}

.flow::before
{
    position: absolute;
    content: '';
    top: -24.1rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 24.1rem;
    background-image: url(img/back.svg);
    background-size: 220%;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -2;
}

.flow::after
{
    position: absolute;
    content: '';
    top: -11rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 10.87rem;
    height: 7.94rem;
    background-image: url(img/flow_line.svg);
    background-size: contain;
    background-position: center bottom;
    z-index: -1;
}

.flow h2
{
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 0 0 4.6rem
}

.flow li
{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    width: 100%;
    height: 12.8rem;
    padding: 0 10%;
    background: #fff;
    line-height: 1.6;
    border-radius: 10px;
}

.flow li .num
{
    position: absolute;
    top: -50px;
    left: -26px;
    font-size: 8rem;
    font-weight: 700;
    color: #86C59D;
}

.flow li .title
{
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--blue);
    width: 11em;
}

.flow a
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--red);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    width: 570px;
    height: 10rem;
    margin: 0 auto;
    border-radius: 100vh;
}

.flow a img.mail
{
    width: 19.89px;
}

.flow a img.blank
{
    width: 10.65px;
}

@media screen and (max-width: 999px)
{
    .flow
    {
        padding-bottom: 5rem;
    }

    .flow h2
    {
        font-size: 2.6rem;
    }

    .flow::before
    {
        height: 11rem;
        top: -11rem
    }

    .flow li
    {
        display: block;
        margin: 0 auto 4rem;
        width: 90%;
        height: auto;
        padding: 2.1em 1.5em 1.5em;
        border-radius: 10px;
        font-size: 1.4rem;
    }

    .flow li .num
    {
        font-size: 6rem;
        left: -20px;
    }

    .flow li .title
    {
        font-size: 2rem;
        width: 100%;
        display: block;
        padding-bottom: 5px;
    }

    .flow a
    {
        font-size: 1.6rem;
        width: 90%;
        height: 7rem;
        letter-spacing: 0;
        padding: 0 5px
    }

    .flow::after
    {
        top: -5rem;
        width: 5.37rem;
        height: 3.92rem;
    }
}

a.contact
{
    position: fixed;
    bottom: 40px;
    right: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    height: 6rem;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    border-radius: 100vh;
    border: 2px solid #fff
}

a.contact img
{
    margin-right: 5px;
}

@media screen and (max-width: 999px)
{
    a.contact
    {
        width: 16rem;
        height: 4.5rem;
        font-size: 1.3rem;
        bottom: 3vh;
    }
}