@import url('https://fonts.googleapis.com/css2?family=Inria+Serif&family=Jomolhari&family=Noto+Sans+JP:wght@100..900&family=Shippori+Antique&family=Shippori+Mincho:wght@600&display=swap');

.shippori{
    font-family: "Shippori Antique", sans-serif;
    font-weight: 400;
}
.shippori_min{
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
}
.jomo{
    font-family: "Jomolhari", serif;
    font-weight: 400;
}
.inria{
  font-family: "Inria Serif", serif;
  font-weight: 400;
}



:root {
    --main: #003369;
    --main-rgb: 0, 51, 105;
    --sub: #DFDFDF;
    --text: #041034;
    --bg01: #F6F6F6;
    --bg02: #EBEBEB;
    --link: #FF5E00;
/*    --ls: -0.03em;*/
}
/* 検証用
* {
	outline: 1px solid magenta;
}
*/
/*---------------------------------

  追加リセット

---------------------------------*/

html, body {
    min-width: 375px;
    min-height: 100vh;
}
html{
    scroll-behavior: smooth;
}
body{
    background: var(--bg01);
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Noto Sans JP',/* 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo,*/ sans-serif;
}
a{
    position: relative;
    text-decoration: none;
}
a.textlink{
    color: var(--link);
    text-decoration: none;
}
a.textlink:hover{
    text-decoration: underline;
}
ul{
    list-style: none;
}
p, li{
    line-height: 1.5;
}
img {
    max-width: 100%;
}

/*---------------------------------

  基本設定

---------------------------------*/

.inner{
    width: 90%;
    max-width: 1240px;
    margin: auto;
}
.pc{
    display: inline-block;
}
.sp{
    display: none;
}

@media screen and (max-width: 767px) {
    .pc{
        display: none;
    }
    .sp{
        display: inline-block;
    } 
}

/* モーダル開時に背景のスクロールを防ぐ */
body:has(.overlay.open){
  overflow: hidden;
}
body:has(.overlay.open) main{
  overflow: auto;
  scrollbar-gutter: stable;
}

.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex.re{
    flex-direction: row-reverse;
}

/*---------------------------------

  共通

---------------------------------*/

.title_basic{
    position: relative;
    width: 100%;
    color: var(--main);
    font-size: 56px;
    font-family: "Shippori Antique", sans-serif;
    font-weight: 400;
    line-height: 1.1;
}

.title_sideline{
    width: 100%;
    padding: 0 0 0 16px;
    border-left: 6px solid var(--main); 
    color: var(--main);
    font-size: 36px;
    font-family: "Shippori Antique", sans-serif;
    font-weight: 400;
    line-height: 1.1;
}


.gray_bg{
    background: var(--bg02);
}

.beige_box{
    padding: 48px 56px;
    background: #FFFBEC;
    border-radius: 20px;
}

.white_box{
    padding: 56px 80px;
    background: #fff;
}

.gray_box{
    padding: 80px 60px;
    background: #F6F6F6;
}
.gray_box + .gray_box{
    margin: 40px 0 0;
}

@media screen and (max-width: 767px) {

    .title_basic{
        font-size: 32px;
    }
    .title_sideline{
        padding: 0 0 0 12px;
        border-left: 5px solid var(--main); 
        font-size: 24px;
    }

    .white_box{
        padding: 6vw;
    }
    
}

/*---------------------------------

  ボタン類

---------------------------------*/


.button_w{
    display: block;
    width: fit-content;
    min-width: 230px;
    height: 60px;
    padding: 12px 50px 0 22px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 90px;
    color: var(--main);
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
    transition: .3s;
}
.button_w:hover{
    border: 2px solid var(--main);
}

.arrow_r,
.arrow_l,
.arrow_b,
.arrow_ex{
    position: relative;
}
.arrow_r::before{
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}
.arrow_r::after{
    content: '';
    position: absolute;
    top: 25px;
    right: 26px;
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(-45deg);
    transition: .3s;
}
.arrow_r:hover::after,
.arrow_l:hover::after,
.arrow_b:hover::after{
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
}

.button_w.arrow_r::before{
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: linear-gradient(86.23deg, #FF8C00 7.17%, #FF4000 100.81%);
    border-radius: 50%;
}
.button_w.arrow_r::after{
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.button_w.arrow_r:hover::after{
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.button.arrow_l{
    padding: 14px 24px 0 44px;
    text-align: center;
}

.arrow_l::before{
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}
.arrow_l::after{
    content: '';
    position: absolute;
    top: 25px;
    left: 26px;
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(135deg);
    transition: .3s;
}
.button_w.arrow_l::after{
    content: '';
    position: absolute;
    top: calc(50% - 6px);
    left: 30px;
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #3C45A5;
    border-bottom: 2px solid #3C45A5;
    transform: rotate(135deg);
}

.arrow_b::before{
    content: '';
    position: absolute;
    top: 18px;
    right: 18px;
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}
.arrow_b::after{
    content: '';
    position: absolute;
    top: 24px;
    right: 25px;
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    transform: rotate(45deg);
    transition: .3s;
}

input.button{
    display: block;
    width: fit-content;
    min-width: 230px;
    height: 60px;
    padding: 0 50px 0 24px;
    background: var(--black);
    border: 1px solid var(--black);
    border-radius: 90px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 32px;
    transition: .3s;
}

.arrow_r_o,
.arrow_b_o,
.arrow_l_o{
    position: relative;
}
.arrow_r_o::after{
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    background: url(/wp-content/themes/cuse/img/common/arrow_r.png) no-repeat center center;
    background-size: 16px;
    background-color: var(--sub);
    border-radius: 50%;
}
/* 進むボタン 
---------------------------*/
.button{
    display: block;
    width: fit-content;
    min-width: 220px;
    height: 56px;
    padding: 14px 88px 10px 54px;
    background: var(--main);
    border: 1px solid var(--main);
    border-radius: 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}
.button:hover{
    background: var(--main);
    border: 1px solid var(--main);
    color: #fff;
}
.button.arrow_r_o::after{
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    right: 9px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(/wp-content/themes/cuse/img/common/arrow_r.png) no-repeat center center;
    background-size: 16px;
    background-color: #fff;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {

    .button{
        min-width: 220px;
        height: 52px;
        padding: 13px 88px 10px 54px;
        font-size: 16px;
    }

}

/* 下に進むボタン 
---------------------------*/
.button.arrow_b_o::after{
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    right: 9px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(/wp-content/themes/cuse/img/common/arrow_r.png) no-repeat center center;
    background-size: 16px;
    background-color: #fff;
    border-radius: 50%;
    transform: rotate(90deg);
}

/* 戻るボタン 
---------------------------*/
.button_back{
    display: block;
    width: fit-content;
    min-width: 240px;
    height: 56px;
    padding: 14px 10px 10px 72px;
    border: 1px solid var(--main);
    border-radius: 28px;
    color: var(--main);
    font-size: 18px;
    font-weight: 400;
}
.button_back.arrow_l_o::after{
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    left: 9px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(/wp-content/themes/cuse/img/common/arrow_r_w.png) no-repeat center center;
    background-size: 16px;
    background-color: var(--main);
    border-radius: 50%;
    transform: rotate(180deg);
}

/* 外部リンクボタン 
---------------------------*/
.arrow_ex::after{
    content: '';
    position: absolute;
    top: calc(50% - 20px);
    right: 9px;
    display: block;
    width: 40px;
    height: 40px;
    background: url(/wp-content/themes/cuse/img/common/arrow_ex.png) no-repeat center center;
    background-size: 10px;
    background-color: #fff;
    border-radius: 50%;
}

/*-------------------------*/


@media screen and (max-width: 1024px){
    

}

@media screen and (max-width: 767px){


    
}

/*---------------------------------

  中身

---------------------------------*/
.main{
    margin: 128px 0 0;
    width: calc(100% - 104px);
}
.page_header{
    position: relative;
    height: 504px;
    padding: 150px 0 0;
    background: linear-gradient(90deg, var(--bg02) 62%, var(--bg01) 62%);
}

.page_header::before{
    content: '';
    position: absolute;
    top: 68px;
    right: 0;
    display: block;
    width: 55%;
    max-width: 900px;
    height: 370px;
    background: url(/wp-content/themes/cuse/img/common/pagetitle_pic.png) no-repeat;
    background-size: cover;

}

.page_header .title{
    position: relative;
    margin: 0 0 56px;
    color: #231815;
    font-size: 60px;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    line-height: 1.1;
    z-index: 1;
}
.page_header .title span {
    position: relative;
    display: block;
    padding-left: 13px;
    margin-top: 16px; 
    color: var(--main);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 26.4px */
}
.page_header .title span::before {
    content: '';
    background-color: var(--main);
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 8px;
    height: 2px;
}



.breadcrumb{

    bottom: -20px;
    width: 100%;
    padding: 0px 0;
}
.breadcrumb li{
    display: inline-block;
    color: var(--black);
    font-size: 11px;
    font-weight: 500;
}
.breadcrumb li::before{
    content: '＞';
    display: inline-block;
    padding: 0 10px;
    color: var(--black);
}
.breadcrumb li:first-child::before{
    content: '';
    padding: 0 0;
}
.breadcrumb li a{
    color: var(--black);
}
.breadcrumb li a:hover{
    color: var(--main);
}

.contents{
    padding: 90px 0;
}

/* ここに必要か検討中　↓*/

.page_nav{
    padding: 87px 0 0;
}
.page_nav .flex{
    justify-content: center;
    gap: 40px;
}

@media screen and (min-width:1600px){

    .page_header::before{
        width: 65%;
    }
    
}
@media screen and (max-width:1440px){
    

    
}
@media screen and (max-width: 1024px){
    
    
}

@media screen and (max-width: 767px){

    .main{
        margin: 64px 0 0;
        width: 100%;
    }

    .page_header{
        height: 240px;
        padding: 100px 0 0;
    }
    .page_header::before{
        content: none;
    }

    .page_header .title{
        font-size: 32px;
    }
    .page_header .title_en{
        top: 77%;
        right: 0;
        margin: 0 20px 0 0;
        padding: 0;
        font-size: 48px;
    }

    .breadcrumb{
        display: none;
    }
    
    .page_nav{
        padding: 60px 4% 0;
    }
    .page_nav .flex{
        justify-content: flex-start;
        gap: 12px;
    }
    .page_nav .flex .button{
        min-width: 100px;
    }
    
}

/*---------------------------------

  ヘッダー

---------------------------------*/

.header{
    position: fixed;
    top: 0;
    justify-content: space-between;
    width: 100%;
    height: 128px;
    background: rgba(246, 246, 246, 0.9);
    z-index: 1000/*10*/;
}
.header .logo{
    display: block;
    width: 220px;
    height: 70px;
    margin: 39px 0 0 48px;
}

.header .header_nav{
    padding: 24px 150px 0 0;
}
.header .header_nav .link_list{
    justify-content: flex-end;
    gap: 8px;
    height: 32px;
    margin: 0 0 10px;
}
.header .header_nav .link_list li a{
    display: block;
    height: 26px;
    padding: 6px 12px 0;
    background: #fff;
    border-radius: 40px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}
.header .header_nav .link_list li a::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 0 0 5px;
    background: url(/wp-content/themes/cuse/img/common/arrow_ex.png) no-repeat;
    background-size: 10px;
}
.header .header_nav .gnav_list{
    margin-right: -20px;
}
.header .header_nav .gnav_list > li{
    font-size: 16px;
    
    font-weight: 700;
}
.header .header_nav .gnav_list > li > a{
    display: block;
    height: 62px;
    padding: 10px 20px 0;
    font-family: "Shippori Mincho", serif;
}
.header .header_nav .gnav_list > li:hover > a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 4px);
    display: block;
    width: 0;
    height: 0;
    border-bottom: 8px solid var(--main);
    border-top: 8px solid transparent;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

/*  メガメニュー
---------------------------------*/
.header .header_nav .gnav_list > li .mega_menu{
    position: absolute;
    top: 128px;
    left: 0;
    display: none;
    width: calc(100% - 104px);
    background: #fff;
}
.header .header_nav .gnav_list > li:hover .mega_menu{
    display: block;   
}

.mega_menu .flex + .flex{
    border-top: 1px solid #E5E5E5;
}
.mega_menu .title{
    width: 30%;
    min-width: 400px;
}
.mega_menu .title a{
    position: relative;
    display: block;
    width: 100%;
    padding: 55px 48px;
    border-right: 1px dashed #E5E5E5;
    color: #041034;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}
.mega_menu .title a::after{
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 15px;
    background: url(/wp-content/themes/cuse/img/common/arrow_r_w.png) no-repeat center center;
    background-size: 16px;
    background-color: var(--main);
    border-radius: 50%;
    transition: .3s;
}
.mega_menu .title a:hover::after{
    background-color: rgba(var(--main-rgb),.8);
}
.mega_menu .nav{
    width: 70%;
    max-width: calc(100% - 400px);
    padding: 60px 5vw;
}
.mega_menu .nav ul{
    gap: 15px 60px;
}
.mega_menu .nav li{
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}
.mega_menu .nav li a{
    position: relative;
    padding: 0 0 0 20px;
}
.mega_menu .nav li a::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(-45deg);
}

@media screen and (max-width: 1200px){

    .header .header_nav{
        display: none;
    }

    
}
@media screen and (max-width: 767px){
    
    .header{
        height: 64px;
    }
    .header .logo{
        width: 138px;
        height: 44px;
        margin: 13px 0 0 20px;
    }
    
}

/*---------------------------------

  ハンバーガー（ボタン）

---------------------------------*/

.nav_trigger {
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    width: 104px;
    height: 128px;
    padding: 78px 0 0;
    background: var(--main);
    border-bottom: 1px solid rgba(255,255,255,.3);
    cursor: pointer;
    z-index: 3000/*10*/;
    transition: all .4s;
}
.nav_trigger:hover{
    background: var(--main);
}
.nav_trigger.active{
    
}
.nav_trigger > span{
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0);
    border-radius: 2px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 28px;
    text-align: center;
    transition: all .4s;
}
.nav_trigger > span::before,
.nav_trigger > span::after {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    margin: auto;
    background: #fff;
    border-radius: 3px;
    transition: all .4s;
}
.nav_trigger > span::before {
    content: '';
    top: -26px;
    left: 41px;
}
.nav_trigger > span::after {
    content: '';
    top: -26px;
    right: 41px;
}
.nav_trigger > span:first-child::before {
    content: '';
    top: -10px;
}
.nav_trigger > span:first-child::after {
    content: '';
    top: -10px;
}
.nav_trigger.active > span:last-child::before{
    width: 16px;
    height: 2px;
    -webkit-transform: translateY(-3px) rotate(45deg);
    transform: translateY(-3px) rotate(45deg);
    transform-origin: left;
}
.nav_trigger.active > span:last-child::after{
    width: 16px;
    height: 2px;
    -webkit-transform: translateY(-3px) rotate(-45deg);
    transform: translateY(-3px) rotate(-45deg);
    transform-origin: right;
}
.nav_trigger.active > span:first-child::before {
    width: 16px;
    height: 2px;
    -webkit-transform: translateY(3px) rotate(-45deg);
    transform: translateY(3px) rotate(-45deg);
    transform-origin: left;
}

.nav_trigger.active > span:first-child::after {
    width: 16px;
    height: 2px;
    -webkit-transform: translateY(3px) rotate(45deg);
    transform: translateY(3px) rotate(45deg);
    transform-origin: right;
}
.nav_trigger.active span{
    background: rgba( 0, 0, 0, 0);
}
.nav_trigger:not(.active) > span:first-child > span{
    display: none;
}
.nav_trigger.active > span:last-child > span{
    display: none;
}

@media screen and (max-width: 767px){

    .nav_trigger {
        width: 64px;
        height: 64px;
        padding: 35px 0 0;
    }
    .nav_trigger > span{
        font-size: 10px;
        letter-spacing: 0.01em;
        line-height: 24px;
    }
    .nav_trigger > span::before,
    .nav_trigger > span::after {
        width: 4px;
        height: 4px;
    }
    .nav_trigger > span::before {
        content: '';
        top: -17px;
        left: 24px;
    }
    .nav_trigger > span::after {
        content: '';
        top: -17px;
        right: 24px;
    }
    .nav_trigger > span:first-child::before {
        content: '';
        top: -5px;
    }
    .nav_trigger > span:first-child::after {
        content: '';
        top: -5px;
    }
    .nav_trigger.active > span:last-child::before{
        -webkit-transform: translateY(-2px) rotate(45deg);
        transform: translateY(-2px) rotate(45deg);
    }
    .nav_trigger.active > span:last-child::after{
        -webkit-transform: translateY(-2px) rotate(-45deg);
        transform: translateY(-2px) rotate(-45deg);
    }
    .nav_trigger.active > span:first-child::before {
        -webkit-transform: translateY(2px) rotate(-45deg);
        transform: translateY(2px) rotate(-45deg);
    }

    .nav_trigger.active > span:first-child::after {
        -webkit-transform: translateY(2px) rotate(45deg);
        transform: translateY(2px) rotate(45deg);
    }
    
}

/*---------------------------------

  ハンバーガー（メニュー）

---------------------------------*/

.header_nav_sp{
    position: fixed;
    top: 0;
    right: -394px;
    width: 404px;
    max-width: 100%;
    height: 100%;
    background: var(--bg02);
    z-index: 3000/*10*/;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
    overflow-y: auto;
}


.overlay {
    content: '';
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 2000/*10*/;
}

.overlay.open{
    visibility: visible;
    cursor: pointer;
    background: rgba(0,0,0,.7);
}


/* サイドメニューオープン */
.side_open .header_nav_sp{
    -webkit-transform: translate3d(-498px, 0, 0);
    transform: translate3d(-498px, 0, 0);
}

.header_nav_sp .hnav_sp_list{
    justify-content: space-between;
    padding: 24px 5% 48px;
    background: var(--bg01);
}
.header_nav_sp .hnav_sp_list > li{
    width: 100%;
    
    padding: 20px 0 0;
    border-bottom: 1px solid #DADADA;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}
.header_nav_sp .hnav_sp_list > li .btn{
    position: relative;
    width: 100%;
    min-height: 40px;
    margin: 0 0 20px;
}
.header_nav_sp .hnav_sp_list > li .btn::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--sub);
    border-radius: 50%;
}
.header_nav_sp .hnav_sp_list > li .btn span::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 13px;
    display: block;
    width: 14px;
    height: 1px;
    background: var(--main);
    z-index: 1;
}
.header_nav_sp .hnav_sp_list > li .btn span::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 13px;
    display: block;
    width: 14px;
    height: 1px;
    background: var(--main);
    z-index: 1;
    transform: rotate(90deg);
    transition: .3s;
}
.header_nav_sp .hnav_sp_list > li .btn.minus span::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 13px;
    display: block;
    width: 14px;
    height: 1px;
    background: var(--main);
    z-index: 1;
    transform: rotate(0deg);
}
.header_nav_sp .hnav_sp_list li .list{
    display: none;
    padding: 24px;
    background: #fff;
}
.header_nav_sp .hnav_sp_list li .list li a{
    padding: 0 0 0 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}
.header_nav_sp .hnav_sp_list li .list li a::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(-45deg);
}
.header_nav_sp .hnav_sp_list li .list li + li{
    margin: 15px 0 0;
}

.header_nav_sp .hnav_sp_list > li > a.arrow_r_o{
    display: block;
    width: 100%;
    min-height: 40px;
    padding: 10px 0 0;
    margin: 0 0 20px;
}

.header_nav_sp .hnav_sp_list li.admission_btn,
.header_nav_sp .hnav_sp_list li.contact_btn{
    width: 49%;
    padding: 0;
    margin: 40px 0 0;
    border-bottom: none;
    background: var(--main);
    color: #fff;
}
.header_nav_sp .hnav_sp_list li.admission_btn a,
.header_nav_sp .hnav_sp_list li.contact_btn a{
    position: relative;
    display: block;
}
.header_nav_sp .hnav_sp_list li.admission_btn a{
    padding: 20px 0 10px 60px;
    font-size: 17px;
}
.header_nav_sp .hnav_sp_list li.contact_btn a{
    padding: 10px 0 10px 50px;
}
.header_nav_sp .hnav_sp_list li.admission_btn a::before,
.header_nav_sp .hnav_sp_list li.contact_btn a::before{
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 5px 0 0;
    vertical-align: -5px;
}
.header_nav_sp .hnav_sp_list li.admission_btn a::before{
    left: 30px;
    top: 17px;
    background: url(/wp-content/themes/cuse/img/common/ico_entrance.png) no-repeat;
    background-size: 24px;  
}
.header_nav_sp .hnav_sp_list li.contact_btn a::before{
    left: 20px;
    top: 17px;
    background: url(/wp-content/themes/cuse/img/common/ico_contact.png) no-repeat;
    background-size: 24px;  
}
.header_nav_sp .link_list{
    gap: 8px 8px;
    margin: 32px 5% 0;
}
.header_nav_sp .link_list li a{
    display: block;
    height: 32px;
    padding: 8px 12px 0;
    background: #fff;
    border-radius: 40px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}
.header_nav_sp .link_list li a::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 0 0 5px;
    background: url(/wp-content/themes/cuse/img/common/arrow_ex.png) no-repeat;
    background-size: 10px;
}

.header_nav_sp .search-form{
    display: none;
    position: relative;
    margin: 24px 5% 0;
}
.screen-reader-text{
    display: none;
}
.header_nav_sp .search-field{
    width: 100%;
    height: 48px;
    padding: 0 24px;
    background: #fff;
    border: 1px solid var(--main);
    border-radius: 24px; 
}
.header_nav_sp .search-submit{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 48px;
    height: 48px;
    background: url(/wp-content/themes/cuse/img/common/ico_search.png) no-repeat center center;
    background-size: 22px;
    background-color: var(--main);
    border-radius: 50%;
    text-indent: -9999px;
}

@media screen and (max-width: 1024px){


    
}

@media screen and (max-width: 767px){

    .header_nav_sp{
        right: -498px;
    }
    .header_nav_sp .logo{
        width: 100%;
        background: var(--bg01);
    }
    .header_nav_sp .logo img{
        width: 138px;
        height: 44px;
        margin: 13px 0 0 20px;
    }
}




/*---------------------------------

  フッダー

---------------------------------*/

.footer{
    position: sticky;
    top: 100vh;
    justify-content: space-between;
    width: calc(100% - 104px);
    background: var(--bg01);
    color: var(--text);
}

.footer .footer_nav{
    width: 65%;
    min-width: 730px;
    padding: 53px 40px 50px;
}
.footer .footer_nav > .flex{
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 40px;
}
.footer .footer_nav > .flex > .fnav_list{
    width: calc((100% - 298px)/2);
    max-width: 260px;
}
.footer .footer_nav > .flex > ul{
    gap: 10px;
    width: 216px;
}
.footer .footer_nav > .flex > .fnav_list dt{
    padding: 0 0 10px;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--main);
    font-size: 22px;
}
.footer .footer_nav > .flex > .fnav_list dd + dt{
    margin-top: 40px;
}
.footer .footer_nav > .flex > .fnav_list dd{
    margin: 0 0 0 10px;
    text-indent: -5px;
    font-size: 13px;
}
.footer .footer_nav > .flex > .fnav_list dd::before{
    content: '-';
    display: inline-block;
    margin: 0 5px 0 0;
}
.footer .footer_nav > .flex > .fnav_list dd + dd{
    margin-top: 12px;
}
/*
.footer .footer_nav > .flex > ul li + li{
    margin: 10px 0 0;
}*/
.footer .footer_nav > .flex > ul li{
    width: 100%;
}
.footer .footer_nav > .flex > ul li a{
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 10px 14px 0;
    background: var(--main);
    color: #fff;
    font-size: 15px;
}
.footer .footer_nav > .flex > ul li.contact_btn a{
    font-size: 14px;
}
.footer .footer_nav > .flex > ul li a::before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 5px 0 0;
    vertical-align: -5px;
}
.footer .footer_nav > .flex > ul li.admission_btn a::before{
    background: url(/wp-content/themes/cuse/img/common/ico_entrance.png) no-repeat;
    background-size: 24px;  
}
.footer .footer_nav > .flex > ul li.contact_btn a::before{
    background: url(/wp-content/themes/cuse/img/common/ico_contact.png) no-repeat;
    background-size: 24px;  
}

.footer .footer_cuse{
    width: 35%;
    max-width: calc(100% - 730px);
    padding: 75px 0 90px 50px;
    background: var(--bg02);
    color: #000;
}
.footer .footer_cuse .logo{
    display: block;
    width: 280px;
    height: 89px;
    margin: 0 0 120px;
}
.footer .footer_cuse dt{
    margin: 0 0 24px;
    font-size: 15px;
}
.footer .footer_cuse dd + dd{
    margin-top: 12px;
}
.footer .footer_cuse dd{
    position: relative;
    width: 220px;
}
.footer .footer_cuse dd a.map{
    position: absolute;
    top: 2px;
    right: -10px;
    display: block;
    width: 32px;
    height: 32px;
    padding: 8px;
    background: var(--sub);
    border-radius: 50%;
}
.footer .copy{
    display: block;
    width: 100%;
    margin: 36px 0 0;
    font-size: 11px;
}

.footer .link_list{
    gap: 8px;
    margin: 24px 0 0;
}
.footer .footer_nav .link_list{
    justify-content: flex-end;
    gap: 8px;
    margin: 53px 0 0;
}
.footer .link_list li a{
    display: block;
    height: 26px;
    padding: 6px 12px 0;
    background: #fff;
    border-radius: 40px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}
.footer .footer_nav .link_list li a::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 0 0 5px;
    background: url(/wp-content/themes/cuse/img/common/arrow_ex.png) no-repeat;
    background-size: 10px;
}

@media screen and (max-width: 1440px){
    
    .footer .footer_cuse{
        padding: 75px 0 90px 40px;
    }
    
}
@media screen and (max-width: 1200px){

    .footer .footer_nav > .flex{
        gap: 40px 2%;
    }
    .footer .footer_nav{
        width: 62%;
        min-width: inherit;
        padding: 50px 3vw;
    }
    .footer .footer_nav > .flex > .fnav_list{
        width: 49%;
    }
    
    .footer .footer_cuse{
        width: 38%;
        max-width: inherit;
        padding: 50px 3vw;
    }
    
    .footer .footer_nav .link_list{
        gap: 10px;
    }

}

@media screen and (max-width: 767px){

    .footer{
        width: 100%;
    }
    .footer .footer_nav{
        width: 100%;
        padding: 60px 5%;
        border-top: 10px solid var(--bg02);
    }
    .footer .footer_nav > .flex > .fnav_list{
        width: 300px;
        max-width: inherit;
    }
    .footer .footer_nav > .flex > .btn_list{
        justify-content: center;
        width: 100%;
    }
    .footer .footer_nav > .flex > .btn_list li{
        width: 220px;
    }
    .footer .footer_cuse{
        width: 100%;
        padding: 40px 5% 20px;
    }
    .footer .footer_cuse .logo{
        display: block;
        width: 200px;
        height: 65px;
        margin: 0 0 45px;
    }
    .footer .copy{
        margin: 40px 0 0;
        font-size: 10px;
    }
    .footer .footer_nav .link_list{
        justify-content: flex-start;
    }
    
}

/*---------------------------------

  aside

---------------------------------*/

.aside{
    position: fixed;
    top: 128px;
    right: 0;
    width: 104px;
    height: calc(100vh - 128px);
    min-height: 400px;
    background: var(--main);
    z-index: 5000/*3*/;
}
.aside .cv_list li{
    width: 104px;
    height: 104px;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-align: center;
}
.aside .cv_list li a{
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(var(--main-rgb),1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
}
.aside .cv_list li a:hover{
    background: rgba(255,255,255,.1);
}
.aside .cv_list li.admission_btn a{
    padding: 23px 0 0;
}
.aside .cv_list li.contact_btn a{
    padding: 19px 0 0;
}
.aside .cv_list li a::before{
    content: '';
    display: block;
    width: 100%;
    height: 32px;
}
.aside .cv_list li.admission_btn a::before{
    margin: 0 0 8px;
    background: url(/wp-content/themes/cuse/img/common/ico_entrance.png) no-repeat center;
    background-size: 32px;
}
.aside .cv_list li.contact_btn a::before{
    margin: 0 0 5px;
    background: url(/wp-content/themes/cuse/img/common/ico_contact.png) no-repeat center;
    background-size: 32px;
}

@media screen and (max-width: 767px){

    .aside{
        display: none;
    }
    
}

/*---------------------------------

  JS関連

---------------------------------*/

.js-tab_list li a{
    background: var(--gray);
    border: 1px solid var(--gray);
    cursor: pointer;
}
.js-tab_list li.active a{
    background: var(--black);
    cursor: inherit;
}
.js-tab_list li.active a:hover{
    border: 1px solid var(--black);
}
.js-tab_area,
.js-menu_area{
    display: none;
}
.js-tab_area.active,
.js-menu_area.active{
    display: block;
}

.modal{
    visibility: hidden;
    position: fixed;
    inset: 0;
    display: block;
    width: fit-content;
    max-width: 600px;
    height: fit-content;
    min-height: 200px;
    margin: auto;
    padding: 40px 50px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transform: .5s ease;
    z-index: 3000/*15*/;
}
.modal.active{
    visibility: visible;
}
.modal .ttl{
    margin: 0 0 30px;
    color: var(--main);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}
.modal .txt{
    font-size: 16px;
}

@media screen and (max-width: 767px){
 
    .modal{
        max-width: 90%;
    }
    
}

/*---------------------------------

  フォーム

---------------------------------*/
.plus{
    position: relative;
}
.plus::before{
    content: '+';
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 20px;
    height: 20px;
    padding: 1px 0 0 1px;
    background: var(--main);
    border-radius: 50%;
    color: #fff;
    text-align: center;
}
.checkbox2 label input{
    position: absolute;
    width: 0;
    height: 0;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    line-height: 0;
}
.checkbox2 label input + span,
.radio input + span{
    position: relative;
    display: inline-block;
    padding: 5px 0 5px 45px;
    margin: 5px 0;
    cursor: pointer;
}
.checkbox2 label input + span::before,
.radio input + span::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 28px;
    margin-top: -13px;
    border: 1px solid #EAE5DF;
    border-radius: 4px;
}
.checkbox2 label input + span::after{
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 7px;
    width: 15px;
    height: 8px;
    border-left: solid 3px var(--main);
    border-bottom: solid 3px var(--main);
    transform: rotate(-45deg) scale(1);
    opacity: 0;
}

.checkbox2 label input[type="checkbox"]:checked + span::after{
    opacity: 1;
}

.checkbox2 label input:disabled + span::before{
    background: #eee;
}
.checkbox2 label input:disabled + span{
    cursor: inherit;
}

.radio input + span::before {
    border-radius: 50%;
    cursor: pointer;
}
.radio input + span::after {
    content: '';
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 9px;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-radius: 50%;
    background: var(--main);
}
.radio input[type="radio"]:checked + span::after {
    opacity: 1;
}

/*---------------------------------

  ページネイト

---------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 60px auto 0px;
}
.paging > *{
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px 0 0;
    background: var(--bg02);
    border-radius: 4px;
    font-size: 24px;
    text-align: center;
}
.paging > .current{
    background: var(--main);
    color: #fff;
}
.paging > .dots{
    background: transparent;
    border: none;
}
.paging > .next{
    background: url(/wp-content/themes/cuse/img/common/arrow_r.png) no-repeat center center;
    background-size: 24px;
    border: none;
    text-indent: -9999px;
}
.paging > .prev{
    background: url(/wp-content/themes/cuse/img/common/arrow_r.png) no-repeat center center;
    background-size: 24px;
    border: none;
    transform: rotate(180deg);
    text-indent: 9999px;
}

/*---------------------------------

  archiveページネイト

---------------------------------*/
.nav-links{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 60px auto 0px;
}
.nav-links > *{
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px 0 0;
    background: var(--bg02);
    border-radius: 4px;
    font-size: 24px;
    text-align: center;
    transition: .3s;
}
.nav-links > *:hover{
    background:#EEFCF9;
}
.nav-links > .current{
    background: var(--main);
    color: #fff;
}
.nav-links > .dots{
    background: transparent;
    border: none;
}
.nav-links > .next{
    background: url(/wp-content/themes/cuse/img/common/arrow_r.png) no-repeat center center;
    background-size: 24px;
    border: none;
    text-indent: -9999px;
}
.nav-links > .prev{
    background: url(/wp-content/themes/cuse/img/common/arrow_r.png) no-repeat center center;
    background-size: 24px;
    border: none;
    transform: rotate(180deg);
    text-indent: 9999px;
}


/*---------------------------------

  その他

---------------------------------*/

#err404 .btn{
    margin: 50px auto 0;
}

/* utility
--------------------------------------------------------------*/

.bg-black {
    background: #333;
}

.bg-gray {
    background: #8D8D8D;
}
.bg-green {
    background: #0C7947;
}
.center{
    text-align: center;
}
.px12 {
    font-size: 12px;
}
.px18 {
    font-size: 18px;
}
.fw-light {
   font-weight: 300; 
}
.fw-bold {
   font-weight: 700; 
}
.fw-black {
   font-weight: 900; 
}
.mt10 {
    margin-top: 10px;
}
.mt50 {
    margin-top: 50px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb100 {
    margin-bottom: 100px;
}
.ml10 {
    margin-left: 10px;
}
.mr10 {
    margin-right: 10px;
}
