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

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #1f303c;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
    display: block !important;
} 
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

/*ヘッダー
-------------------------------------*/
.header {
	display: flex;
    flex-direction: column;
    padding: 2rem 0 0 0;
    margin-bottom: 10px;
}
.header-box {
	display: none !important;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#navi {
    display: none;
}
nav ul {
	display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
.header {
    flex-direction: row;
    margin-bottom: 0;
}
.header-box {
    display: block !important;
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 1rem;
	border: 2px solid var(--base-color);
}
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}
#navi {
    display: block !important;
}
nav ul {
	flex-direction: row;
}
}


    
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
.section-wrap{
    padding: 12.08vw 0;
}
.gray-back {
	background-color: var(--back-color);
}

@media screen and (min-width: 768px){
    .section-wrap{
        padding: 80px 0;
    }
}

@media screen and (min-width: 1080px){
    .section-wrap{
        padding: 100px 0;
    }
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #000; 
    padding: 3rem 0;
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}

@media screen and (min-width: 768px){
    .table th {
        width: 250px;
        display: table-cell;
    }
    .table td {
        display: table-cell;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    background: #000;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    line-height: 1.1;
    z-index: 20;
}
#pagetop a {
    width: 60px;
    height: 60px;
    display: block;
    background-color: #af841e;
    border-radius: 50%;
    opacity: 0.9;
    transition: 0.3s;
}
#pagetop a:hover,
#pagetop a:active,
#pagetop a:focus{
    opacity: 0.6;
}
#pagetop a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 25px;
    height: 25px;
    margin: auto;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    font-size: 25px;
    text-align: center;
}





/*
# =================================================================
# カスタマイズ
# =================================================================
*/

body{
    color: #000;
}

.sp{
    display: block!important;
}

.pc{
    display: none!important;
}

.flex-box {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
    
.flex-box.align-fs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-box.align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-box.align-fe {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

.flex-box.row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -ms-flex-direction: row-reverse;
         flex-direction: row-reverse;
}

picture{
    display: block;
    line-height: 1;
}

.b{
    font-weight: 700;
}

.red{
    color: #bc121a;
}

header{
    display: block;
    padding: 0;
    margin: 0;
    background: #000;
}

header .container{
    height: 0;
    padding: 0;
    background: url(../images/mv_sp.webp) center bottom no-repeat;
    background-size: 92.75vw 74.40vw;
    padding-bottom: calc(100%*543/414);
    position: relative;
}

header .main-catch{
    position: absolute;
    top: 7.25vw;
    left: 0;
    right: 0;
    width: 92.75vw;
    line-height: 1;
    margin: auto;
}

.section-wrap.section01{
    background-color: #00324b;
    background-image: url(../images/sec01_back_sp.webp);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}

h2.sec-title{
    line-height: 1;
    margin: 0 auto 8.45vw;
}

.section01 h2.sec-title{
    width: 74.88vw;
    margin: 0 auto 7.25vw;
    filter: drop-shadow(0.24vw 0.24vw 1.44vw rgba(0,50,75,0.9));
}

.section01 .book-img{
    width: 57.97vw;
    margin: 0 auto 8.45vw;
}

.section01 .contents-box{
    background: #eaeef1;
    padding: 6.04vw 4.83vw;
}

.section01 .contents-box h3{
    width: 33.09vw;
    line-height: 1;
    margin: 0 auto 6.04vw;
}

.section01 .contents-box .contents-list{
    list-style: none;
    margin: 0 auto;
}

.section01 .contents-box .contents-list li{
    font-size: 4.35vw;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    padding: 3.62vw 0 2.90vw 6.76vw;
    background: url(../images/icon/check.svg) left 3.86vw no-repeat;
    background-size: 5.31vw 5.31vw;
    border-bottom: 0.36vw dashed #9d7d3b;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.section01 .contents-box .contents-list li:first-child{
    border-top: 0.36vw dashed #9d7d3b;
}


.section-wrap.entry-sec{
    background: linear-gradient(135deg, #b48732 0%, #e0cb8c 40%, #e0cb8c 60%, #b48732 100%);
    padding: 9.66vw 0;
}

.entry-sec h2.sec-title{
    width: 84.54vw;
    margin-bottom: 3.62vw;
}

.entry-sec .arrow{
    width: 21.74vw;
    margin: 0 auto 3.62vw;
}

.entry-sec .entry-form{
    margin: 0;
}

.entry-sec .entry-form form{
    margin-bottom: 0;
}

.mail-form{
    width: 100%;
    margin: 0 0 3.62vw;
}

.required.mail-form{
    background: none;
}

.mail-form .form_input_label{
    display: block;
    font-size: 4.83vw;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 1.21vw;
    font-feature-settings: "palt";
    letter-spacing: 0.03em;
}

.mail-form input{
    height: auto;
    font-size: 4.35vw;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 1.93vw;
    border-radius: 0;
}

.mail-form input.required {
    background-color: #fff!important;
}

::placeholder {
    color: #999;
  }

.entry-btn{
    width: 100%;
    line-height: 1;
    margin: 4.83vw 0 0;
    filter: drop-shadow(0.24vw 0.24vw 1.21vw rgba(0,0,0,0.4));
}

.entry-btn input{
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.entry-btn input:hover,
.entry-btn input:active,
.entry-btn input:focus{
    filter: brightness(1.1);
}

footer{
    padding: 6.04vw 0 2.42vw;
}

.footer-menu{
    margin: 0;
    text-align: center;
}

.footer-menu li{
    list-style: none;
    font-size: 3.38vw;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.footer-menu li:nth-child(n+2){
    margin-top: 2.42vw;
}

.footer-menu li a{
    text-decoration: none;
    color: #fff;
}

.footer-menu li a:hover,
.footer-menu li a:active,
.footer-menu li a:focus{
    text-decoration: underline;
}

.copyright{
    padding: 2.42vw 0;
}

.copyright small{
    font-size: 3.38vw;
}






@media (min-width : 768px){

    .sp{
		display: none!important;
	}

	.pc{
		display: block!important;
	}
    
    header .container{
        max-width: 1220px;
        background: url(../images/mv_pc.webp) center bottom no-repeat;
        background-size: contain;
        padding-bottom: calc(100%*850/1220);
    }
    
    header .main-catch{
        top: 5.74vw;
        width: 81.97vw;
    }
    
    .section-wrap.section01{
        background-color: #00324b;
        background-image: url(../images/sec01_back_pc.webp);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    
    h2.sec-title{
        margin: 0 auto 50px !important;
    }
    
    .section01 h2.sec-title{
        width: 82.6%;
        max-width: 826px;
        filter: drop-shadow(1px 1px 8px rgba(0,50,75,0.9));
    }
    
    .section01 .book-img{
        width: 45.0%;
        max-width: 450px;
        margin: 0 auto 65px;
    }
    
    .section01 .contents-box{
        padding: 35px 35px 50px;
    }
    
    .section01 .contents-box h3{
        width: 25%;
        max-width: 227px;
        margin: 0 auto 30px;
    }
    
    .section01 .contents-box .contents-list li{
        font-size: 2.4rem;
        padding: 18px 0 14px 36px;
        background-position: left 20px;
        background-size: 28px 28px;
        border-bottom: 2px dashed #9d7d3b;
    }
    
    .section01 .contents-box .contents-list li:first-child{
        border-top: 2px dashed #9d7d3b;
    }
    
    .section-wrap.entry-sec{
        padding: 55px 0;
    }
    
    .entry-sec h2.sec-title{
        width: 65.9%;
        max-width: 659px;
        margin-bottom: 30px !important;
    }
    
    .entry-sec .arrow{
        width: 15%;
        max-width: 150px;
        margin: 0 auto 30px;
    }
    
    .input.text.mail-form{
        display: table;
        max-width: 740px;
        margin: 0 auto 30px;
    }
    
    .mail-form .form_input_label{
        display: table-cell;
        vertical-align: middle;
        font-size: 2.2rem;
        text-align: left;
        margin: 0;
        width: 24%;
        padding-right: 2%;
    }
    
    .mail-form input{
        display: table-cell;
        vertical-align: middle;
        font-size: 2.0rem;
        text-align: left;
        margin: 0;
        padding: 12px 10px;
    }
    
    .entry-btn{
        width: 65%;
        max-width: 650px;
        margin: 35px auto 0;
        filter: drop-shadow(1px 1px 6px rgba(0,0,0,0.4));
    }
    
    footer{
        padding: 40px 0 10px;
    }
    
    .footer-menu li{
        font-size: 1.4rem;
        display: inline-block;
        margin: 0 0 0 40px !important;
    }
    
    .footer-menu li:first-child{
        margin-left: 0 !important;
    }
    
    .copyright{
        padding: 15px 0;
    }
    
    .copyright small{
        font-size: 1.4rem;
    }
    




}



@media (min-width : 1080px){

    h2.sec-title{
        margin: 0 auto 60px !important;
    }
    
    .section01 .book-img{
        margin: 0 auto 80px;
    }

    .section01 .contents-box .contents-list li{
        font-size: 2.6rem;
        padding: 20px 0 16px 36px;
        background-position: left 22px;
        background-size: 30px 30px;
    }

    .section-wrap.entry-sec{
        padding: 70px 0;
    }

}



@media (min-width : 1220px){

    header .container{
        height: 850px;
        padding-bottom: 0;
    }
    
    header .main-catch{
        top: 70px;
        width: 1000px;
    }
    
}