@charset "utf-8";
/*
Theme Name: sankakuya_skelton
Theme URL: https://sankakux4.org
Description: original theme
Author:yuya matsuo
Version: 1.0.0
*/

/* reset */

html{
	scroll-behavior:smooth;
}

body{
	margin:0;
	width:100%;
	overflow-x:hidden;
	overflow-y: scroll;
        scrollbar-width: none;
        text-rendering:optimizeSpeed;
        -webkit-text-size-adjust: 100%;
        overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-block-start:0;
	margin-block-end:0;
	margin-inline-start:0;
	margin-inline-end:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*::before,
*::after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6{
	font-size:1rem;
	font-weight:400;
	margin:0;
	padding:0;
	line-height:1.8;
}

p{
	margin:0;
	padding:0;
}

ul,
ol{
	list-style:none;
	padding:0;
	margin:0;
}

li{
	list-style-position: inside;
}

figure,
blockquote,
dl,
dd{
	margin:0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table th{
	font-weight:400;
	text-align:left;
}

a:not([class]){
	text-decoration-skip-ink:auto;
}

::-webkit-scrollbar {
	display: none;
	-webkit-appearance: none;
}

input,
button,
select,
textarea {
	background: transparent;
	border: none;
	border-radius: 0;
	font-family: inherit;
	outline: none;
	margin:0;
}

select,
select option{
	color:#3e3a39 !important;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
	display: none;
}

input[type="number"],
input[type="month"],
input[type="datetime-local"],
input[type="week"],
input[type="time"],
input[type="date"] {
	-moz-appearance: textfield;
}

input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
	-webkit-appearance: none;
}

@media(prefers-reduced-motion:reduce){
	*{
		animation-duration:.01ms !important;
		animation-iteration-count:1 !important;
		transition-duration:.01ms !important;
		scroll-behavior:auto !important;
	}
}

.wpcf7-spinner{
	display:none !important;
}

img{
	pointer-events: none;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
}

/* common */

html{
	font-size:16px;
}

body{
	background:#fff;
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	color:#3e3a39;
	font-weight:400;
	line-height:1.8;
	margin:0;
	overflow-wrap: anywhere;
	word-break:break-all;
	line-break: strict;
}

.serif{
	font-family: "Noto Serif", serif;
}

.bm{
	font-family: "bigmoore", "Noto Serif", serif;
}

a{
	display:block;
	color:#3e3a39;
	transition: .5s;
	text-decoration:none;
	-webkit-tap-highlight-color: transparent;
}

a:hover{
	color:#3e3a39;
	text-decoration:none;
	opacity:0.8;
}

/* layout */

main{
	display:block;
	margin:160px auto 0;
}

.home main{
	margin:0 auto;
}

.error404 main{
	margin:160px auto 80px;
}

.container{
	max-width:calc(100vw - 96px);
	width:1270px;
	margin:0 auto;
}

.container-min{
	max-width:calc(100vw - 96px);
	width:1184px;
	margin:0 auto;
}

.flex-wrap{
	display:-webkit-box;
  	display:flex;
  	flex-wrap: wrap;
}

/* parts */

.text-center{
	text-align:center;
}

.text-right{
	text-align:right;
}

.img-fluid{
	display:block;
	width:100%;
	max-width:100%;
	height:auto;
}

.heading01{
	font-size:4rem;
	line-height:1;
	letter-spacing:0.1em;
	margin-bottom:0.5em;
	color:#002e4f;
}

.heading01 span{
	display:block;
	font-size:1rem;
	text-shadow:none;
	letter-spacing:0.2em;
	margin-top:0.5em;
	color:#3e3a39;
	font-weight:700;
}

.btn{
	display:inline-block;
	background:#fff;
	color:#002e4f;
	padding:0.25em 1.5em;
	border:1px solid #002e4f;
	position:relative;
	overflow:hidden;
}

.btn::before{
	position:absolute;
	top:0;
	left:-100%;
	content:"";
	width:100%;
	height:100%;
	background:#002e4f;
	border:1px solid #002e4f;
	transition:.5s;
	z-index:1;
}

.btn span{
	position:relative;
	z-index:2;
}

.btn:hover{
	color:#fff;
	opacity:1;
}

.btn:hover::before{
	left:0;
}

/* slick */

.slick-arrow{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	z-index:5;
}

 .slick-arrow i{
	font-size:2rem;
}

.slick-arrow.prev-arrow{
	left:-1.5rem;
	transform:translateY(-50%) rotate(-180deg);
}

.slick-arrow.next-arrow{
	right:-1.5rem;
}

/* header */

.header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:1000;
	padding:20px 48px;
	background:rgba(0,46,79,0);
	transition:.5s;
	color:#fff;
}

.header a{
	color:#fff;
}

.header a:hover{
	color:#F1E3B3;
	opacity:1;
}

.header.active{
	background:rgba(0,46,79,1);
}

.header .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.header .content_wrap .logo{
	opacity:0;
	transition:.5s;
	width:240px;
}

.header.active .content_wrap .logo{
	opacity:1;
}

.header .content_wrap nav{
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
}

.header .content_wrap nav .main_nav .g_navi_btn{
	display:none;
}

.header .content_wrap nav .main_nav .g_navi .inner ul li{
	margin-left:1.25rem;
}

.header .content_wrap nav .sub_nav{
	margin-left:40px;
}

.header .content_wrap nav .sub_nav ul{
	display:-webkit-box;
  	display:flex;
  	flex-wrap: wrap;
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
}

.header .content_wrap nav .sub_nav ul li:last-child{
	margin-left:1.5em;
	position:relative;
}

.header .content_wrap nav .sub_nav ul li:last-child::before{
	position:absolute;
	top:0;
	left:-1.25em;
	content:"／";
}

.header .content_wrap nav .sub_nav ul li a.current{
	font-weight:700;
}

/* footer */

.footer{
	background:#002e4f;
	padding:1rem 0;
}

.footer h6{
	color:#fff;
	font-size:0.8rem;
}

/* home */

.fv{
	height:calc(100vw / 1366 * 640);
        position:relative;
}

.fv::before{
	position:absolute;
	top:0;
	left:-100%;
	content:"";
	width:100%;
	height:100%;
	background:#002e4f;
	z-index:1;
	transition:1s ease-in-out;
}

.fv.active::before{
	left:0;
}

.fv .img{
	position:absolute;
	bottom:0;
	right:0;
	height:100%;
	z-index:2;
}

.fv .img img{
	height:100%;
	width:auto;
	filter: brightness(0) invert(1);
	opacity:0.2;
}

.fv .container{
	position:relative;
	z-index:3;
	height:100%;
}

.fv .flex-wrap{
	height:100%;
	-webkit-box-align: center;
	align-items: center;
}

.fv .flex-wrap .inner .logo{
	width:calc(100vw / 1366 * 760);
	margin-bottom:calc(100vw / 1366 * 80);
}

.fv .flex-wrap .inner h2{
	font-size:calc(100vw / 1366 * 24);
	letter-spacing:0.1em;
	color:#fff;
	padding-left:calc(100vw / 1366 * 160);
}

.front_content{
	padding:80px 0;
}

.fc02{
	position:relative;
	padding:80px 0;
}

.fc02 .video{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	overflow:hidden;
}

.fc02 .video video{
	position: absolute;
	top: 0;
	left: 0;
	width: 110%;
	height: 110%;
	object-fit: cover;
	opacity:0.6;
}

.fc02 .container-min{
	position:relative;
	z-index:3;
}

.fc02 p{
	width:66%;
}

.fc06{
	padding:80px 0 60px;
	background:#f6f6f6;
	position:relative;
}

.fc06::before{
	position:absolute;
	top:12px;
	left:0;
	content:"";
	width:100%;
	height:2px;
	background:#fff;
}

.fc06::after{
	position:absolute;
	bottom:12px;
	left:0;
	content:"";
	width:100%;
	height:2px;
	background:#fff;
}

.fc06 .content_wrap .img{
	width:30%;
	margin-right:4%;
}

.fc06 .content_wrap .img img{
	border-radius:50%;
}

.fc06 .content_wrap .txt{
	width:66%;
}

.fc06 .content_wrap .txt h4{
	line-height:1.4;
	margin-bottom:1rem;
}

.fc06 .content_wrap .txt h4 span{
	display:block;
	font-size:1.5rem;
	letter-spacing:0.1em;
	text-indent:0.1em;
	color:#002e4f;
}

.fc06 .content_wrap .txt ul li{
	font-size:1.75rem;
	margin-right:1rem;
}

.fc06 .content_wrap .txt ul li a{
	color:#0A66C2;
}

.fc01 .box{
	margin-bottom:12px;
}

.fc01 .box:last-child{
	margin-bottom:0;
}

.fc01 .box .img{
	width:11%;
	margin-right:3%;
}

.fc01 .box .txt{
	width:86%;
	padding-top:36px;
}

.fc01 .box .txt h4{
	color:#e7dfa2;
	font-size:2.5rem;
	letter-spacing:0.1em;
}

.fc01 .box .txt > p{
	width:66%;
	margin-bottom:1em;
}

.fc01 .box .txt h5{
	color:#002e4f;
	font-size:2rem;
	font-weight:700;
	letter-spacing:0.1em;
}

.fc01 .box .example_slick .slick-slide{
	padding:0 12px;
}

.fc01 .box .example_slick .card{
	background:#fcfaf2;
	padding:24px 28px;
	font-size:0.8rem;
	position:relative;
}

.fc01 .box .example_slick .card::after{
	position:absolute;
	top:8px;
	left:8px;
	content:"";
	width:calc(100% - 16px);
	height:calc(100% - 16px);
	border:2px solid #fff;
}


.fc01 .box .example_slick .card h6{
	font-weight:700;
	line-height:1.6;
	margin-bottom:0.5em;
}

.fc04 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.fc04 .content_wrap .img{
	width:48%;
}

.fc04 .content_wrap .txt{
	width:48%;
}

.fc04 .content_wrap .txt dl dt{
	width:32%;
	border-bottom:1px solid #e7dfa2;
	padding:0.75rem 0 0.75rem 1.5rem;
	font-size:0.9rem;
	font-weight:700;
}

.fc04 .content_wrap .txt dl dd{
	width:68%;
	border-bottom:1px solid #e7dfa2;
	padding:0.75rem 1.5rem 0.75rem 0;
	font-size:0.9rem;
}

.fc05{
	position:relative;
}

.fc05::after{
	position:absolute;
	bottom:0;
	right:0;
	content:"";
	width:calc(100vw / 1366 * 640);
	height:calc(100vw / 1366 * 640);
	background:url("./img/logo_icon.svg") 0 0 no-repeat;
	background-size:cover;
	opacity:0.2;
	z-index:-1;
}

.fc05 .box{
	width:66%;
}

.fc05 .box > p{
	margin-bottom:1rem;
}

.fc05 .box dl dt{
	font-size:0.9rem;
	margin-bottom:0.5rem;
}

.fc05 .box dl dt span{
	color:#e56161;
}

.fc05 .box dl dd{
	margin-bottom:1rem;
}

.fc05 .box .btn_wrap{
	margin-bottom:1rem;
}

.fc05 .box .btn_wrap p{
	margin-bottom:1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
	padding:1rem;
	background:#fafafa;
	border:1px solid transparent;
	width:100%;
	border-radius:0;
	font-size:1rem;
	transition:.5s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus{
	outline:none;
	outline-offset:0;
	border:1px solid #F1E3B3;
}

input[type="submit"]{
	font-size:1rem;
	transition: 0.5s;
	background:#002e4f;
	color:#fff;
	border:1px solid #002e4f;
	padding:0.5rem 1.5rem;
}

input[type="submit"]:hover{
	background:#fff;
	color:#002e4f;
}

input[type="submit"]:focus{
	outline:none;
	outline-offset:0;
}

.modal-open{
	display:inline-block;
	color:#002e4f;
	text-decoration:underline;
}

.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index:2000;
	background: rgba(0,0,0,0.6);
	padding:100px 0;
	opacity:0;
	overflow: auto;
	visibility: hidden;
	transition: .5s;
}

.modal-container.active{
	opacity: 1;
	visibility: visible;
}

.modal-body{
	width:900px;
	margin:0 auto;
	position:relative;
}

.modal-close{
	position: absolute;
	top: -60px;
	right: -60px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}

.modal-content{
	background: #fff;
	padding:40px;
}

.modal-content .block{
	margin-bottom:1rem;
	font-size:0.9rem;
}

.modal-content .block:last-child{
	margin-bottom:0;
}

.modal-content .block h4{
	font-weight:700;
}

.modal-content .block h5{
	font-weight:700;
	font-size:0.9rem;
}

.modal-content .block h6{
	font-weight:700;
	font-size:0.8rem;
}

/* page */

.page_section{
	padding:0 0 80px;
}

.page_section h3{
	font-size:2.75rem;
	color:#002e4f;
	letter-spacing:0.1em;
}

.page_section .sub{
	margin-bottom:2rem;
}

.page_section.page_cta{
	position:relative;
	padding:80px 0;
}

.page_section.page_cta::before{
	position:absolute;
	bottom:100%;
	right:0;
	content:"";
	width:calc(100vw / 1366 * 640);
	height:calc(100vw / 1366 * 640);
	background:url("./img/logo_icon.svg") 0 0 no-repeat;
	background-size:cover;
	opacity:0.2;
}

.page_section.page_cta .video{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
	overflow:hidden;
}

.page_section.page_cta .video video{
	position: absolute;
	top: 0;
	left: 0;
	width: 110%;
	height: 110%;
	object-fit: cover;
	opacity:0.6;
}

.page_section.page_cta .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.page_section.page_cta .content_wrap p{
	width:68%;
	color:#002e4f;
	font-size:1.25rem;
}

.page_section.page_cta .content_wrap .btn{
	padding:1rem 3rem;
}

/* coaching */

.page_section.coaching01{
	padding:0 0 56px;
}

.page_section.coaching01 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.page_section.coaching01 .content_wrap .box{
	width:49%;
	border:1px solid #e7dfa2;
	padding:32px 28px 28px;
	margin-bottom:24px;
	position:relative;
}

.page_section.coaching01 .content_wrap .box::after{
	position:absolute;
	top:8px;
	left:8px;
	content:"";
	width:calc(100% - 16px);
	height:calc(100% - 16px);
	border:1px solid #e7dfa2;
}

.page_section.coaching01 .content_wrap .box h4{
	font-weight:700;
	font-size:1.5rem;
	color:#002e4f;
	margin-bottom:0.4rem;
}

.page_section.coaching01 .content_wrap .box h4 span{
	display:block;
	color:#e7dfa2;
	font-size:1.25rem;
}

.page_section.coaching01 .content_wrap .box p{
	margin-bottom:1rem;
}

.page_section.coaching01 .content_wrap .box ul{
	font-size:0.9rem;
}

.page_section.coaching01 .content_wrap .box ul li{
	text-indent:-1em;
	padding-left:1em;
	margin-bottom:0.25em;
}

.page_section.coaching01 .content_wrap .box ul li:last-child{
	margin-bottom:0;
}

.page_section.coaching03 .voice_slick .slick-slide article{
	background:#fcfaf2;
	padding:56px 64px;
	position:relative;
	font-size:0.9rem;
}

.page_section.coaching03 .voice_slick .slick-slide article::before{
	position:absolute;
	top:8px;
	left:8px;
	content:"";
	width:calc(100% - 16px);
	height:calc(100% - 16px);
	border:2px solid #fff;
}

.page_section.coaching03 .voice_slick .slick-slide article .block{
	margin-bottom:1rem;
}

.page_section.coaching03 .voice_slick .slick-slide article .block:last-child{
	margin-bottom:0;
}

.page_section.coaching03 .voice_slick .slick-slide article .block h4{
	font-weight:700;
	color:#002e4f;
}

.page_section.coaching03 .voice_slick .slick-slide article .block h5{
	font-weight:700;
	font-size:0.9rem;
}

.page_section.coaching03 .voice_slick .slick-slide article .block h6{
	font-weight:700;
	color:#002e4f;
	font-size:1.25rem;
}

.page_section.coaching02 .block{
	width:80%;
	margin-bottom:40px;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.page_section.coaching02 .block:last-child{
	margin-bottom:0;
}

.page_section.coaching02 .block .number{
	font-size:3rem;
	line-height:1;
	color:#e7dfa2;
	margin:0 1rem;
}

.page_section.coaching02 .block .txt{
	width:calc(100% - 5rem);
	margin-top:10px;
}

.page_section.coaching02 .block .txt h4{
	font-size:1.25rem;
	color:#002e4f;
}

/* display */

.pc-none{
	display:none;
}

.grecaptcha-badge{
	display:none;
}

@media (max-width: 1366px) {

	/* common */
	
	html{
		font-size:calc(100vw / 1366 * 16);
	}
	
	/* layout */
	
	main{
		margin:calc(100vw / 1366 * 160) auto 0;
	}
	
	.home main{
		margin:0 auto;
	}
	
	.error404 main{
		margin:calc(100vw / 1366 * 160) auto calc(100vw / 1366 * 80);
	}
	
	.container{
		max-width:calc(100vw - (100vw / 1366 * 96));
		width:calc(100vw / 1366 * 1270);
	}
	
	.container-min{
		max-width:calc(100vw - (100vw / 1366 * 96));
		width:calc(100vw / 1366 * 1184);
	}
	
	/* header */
	
	.header{
		padding:calc(100vw / 1366 * 20) calc(100vw / 1366 * 48);
	}
	
	.header .content_wrap .logo{
		width:calc(100vw / 1366 * 240);
	}
	
	.header .content_wrap nav .sub_nav{
		margin-left:calc(100vw / 1366 * 40);
	}
	
	/* home */
	
	.front_content{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.fc02{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.fc02 .video video{
		width: 125%;
		height: 125%;
	}
	
	.fc01 .box{
		margin-bottom:calc(100vw / 1366 * 12);
	}
	
	.fc01 .box .txt{
		padding-top:calc(100vw / 1366 * 36);
	}
	
	.fc01 .box .txt > p{
		width:100%;
	}
	
	.fc01 .box .example_slick .slick-slide{
		padding:0 calc(100vw / 1366 * 12);
	}
	
	.fc01 .box .example_slick .card{
		padding:calc(100vw / 1366 * 24) calc(100vw / 1366 * 28);
	}
	
	.fc01 .box .example_slick .card::after{
		top:calc(100vw / 1366 * 8);
		left:calc(100vw / 1366 * 8);
		width:calc(100% - (100vw / 1366 * 16));
		height:calc(100% - (100vw / 1366 * 16));
	}
	
	.fc06{
		padding:calc(100vw / 1366 * 80) 0 calc(100vw / 1366 * 60);
	}
	
	.fc06::before{
		top:calc(100vw / 1366 * 12);
	}
	
	.fc06::after{
		bottom:calc(100vw / 1366 * 12);
	}
	
	.modal-container{
		padding:calc(100vw / 1366 * 100) 0;
	}
	
	.modal-body{
		width:calc(100vw / 1366 * 900);
	}
	
	.modal-close{
		top:calc(100vw / 1366 * -60);
		right:calc(100vw / 1366 * -60);
		width:calc(100vw / 1366 * 40);
		height:calc(100vw / 1366 * 40);
		font-size:calc(100vw / 1366 * 40);
	}
	
	.modal-content{
		padding:calc(100vw / 1366 * 40);
	}
	
	/* page */
	
	.page_section{
		padding:0 0 calc(100vw / 1366 * 80);
	}
	
	.page_section.page_cta{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.page_section.page_cta::before{
		width:calc(100vw / 1366 * 640);
		height:calc(100vw / 1366 * 640);
	}
	
	.page_section.page_cta .video video{
		width: 125%;
		height: 125%;
	}
	
	/* coaching */
	
	.page_section.coaching01 .content_wrap .box{
		padding:calc(100vw / 1366 * 32) calc(100vw / 1366 * 28) calc(100vw / 1366 * 28);
		margin-bottom:calc(100vw / 1366 * 24);
	}
	
	.page_section.coaching01 .content_wrap .box::after{
		top:calc(100vw / 1366 * 8);
		left:calc(100vw / 1366 * 8);
		width:calc(100% - (100vw / 1366 * 16));
		height:calc(100% - (100vw / 1366 * 16));
	}
	
	.page_section.coaching03 .voice_slick .slick-slide article{
		padding:calc(100vw / 1366 * 56) calc(100vw / 1366 * 64);
	}
	
	.page_section.coaching03 .voice_slick .slick-slide article::before{
		top:calc(100vw / 1366 * 8);
		left:calc(100vw / 1366 * 8);
		width:calc(100% - (100vw / 1366 * 16));
		height:calc(100% - (100vw / 1366 * 16));
	}
	
	.page_section.coaching02 .block{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	.page_section.coaching02 .block .txt{
		margin-top:calc(100vw / 1366 * 10);
	}

}

@media (max-width: 750px){

	/* display */

	.pc-none{
		display:block;
	}

	/* common */
	
	html{
		font-size:calc(100vw / 750 * 28);
	}
	
	/* layout */
	
	main{
		margin:calc(100vw / 750 * 160) auto 0;
	}
	
	.home main{
		margin:0 auto;
	}
	
	.error404 main{
		margin:calc(100vw / 750 * 160) auto calc(100vw / 750 * 80);
	}
	
	.container,
	.container-min{
		max-width:90vw;
		width:90vw;
	}
	
	/* parts */
	
	.heading01{
		font-size:3rem;
	}
	
	/* slick */
	
	.slick-arrow.prev-arrow{
		left:-1rem;
	}
	
	.slick-arrow.next-arrow{
		right:-1rem;
	}
	
	/* header */
	
	.header{
		padding:calc(100vw / 750 * 28) 5vw;
	}
	
	.header .content_wrap .logo{
		width:calc(100vw / 750 * 400);
		position:relative;
		z-index:1002;
	}
	
	.header .content_wrap nav .main_nav{
		-webkit-box-ordinal-group:3;
		order:2;
		margin-left:5vw;
	}
	
	.header .content_wrap nav .main_nav .g_navi_btn{
		display:block;
		width:calc(100vw / 750 * 48);
		height:calc(100vw / 750 * 32);
		position:relative;
		transition:.5s;
		cursor:pointer;
		z-index:1002;
	}

	.header .content_wrap nav .main_nav .g_navi_btn .menu__line{
		background:#fff;
		display:block;
		height:calc(100vw / 750 * 4);
		position:absolute;
		top:0;
		transition:.5s;
		width:100%;
	}
	
	.header .content_wrap nav .main_nav .g_navi_btn .menu__line--center{
		top:calc(100vw / 750 * 14);
	}
	
	.header .content_wrap nav .main_nav .g_navi_btn .menu__line--bottom{
		top:auto;
		bottom:0;
	}
	
	.header .content_wrap nav .main_nav .g_navi_btn .menu__line--top.active{
		top:calc(100vw / 750 * 14);
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
	}
	
	.header .content_wrap nav .main_nav .g_navi_btn .menu__line--center.active{
		-webkit-transform:scaleX(0);
		transform:scaleX(0);
	}
	
	.header .content_wrap nav .main_nav .g_navi_btn .menu__line--bottom.active{
		bottom:calc(100vw / 750 * 14);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
	}

	.header .content_wrap nav .main_nav .g_navi{
		position:fixed;
		top:0;
		right:0;
		width:100%;
		transition:all .5s ease-in-out;
		transform:translateZ(0) translateX(100%);
		background:rgba(0,46,80,0.8);
	}
	
	.header.active .content_wrap nav .main_nav .g_navi{
		background:#002E50;
	}

	.header .content_wrap nav .main_nav .g_navi.active{
		transform:translateZ(0) translateX(0);
	}
	
	.header .content_wrap nav .main_nav .g_navi .inner{
		padding:calc(100vw / 750 * 120.4) 10vw calc(100vw / 750 * 28);
	}
	
	.header .content_wrap nav .main_nav .g_navi .inner ul {
		-webkit-box-pack: center;
		justify-content: center;
	}
	
	.header .content_wrap nav .main_nav .g_navi .inner ul li{
		margin:0 0.8rem;
	}
	
	.header .content_wrap nav .sub_nav{
		-webkit-box-ordinal-group:2;
		order:1;
		margin-left:0;
		position:relative;
		z-index:1002;
	}
	
	.header a:hover{
		color:#fff;
	}
	
	/* home */
	
	.fv{
		height:50svh;
	}
	
	.fv .flex-wrap .inner {
		width:100%;
		text-align:center;
	}
	
	.fv .flex-wrap .inner .logo{
		width:100%;
		margin-bottom:calc(100vw / 750 * 24);
	}
	
	.fv .flex-wrap .inner h2{
		display:inline-block;
		font-size:calc(100vw / 750 * 28);
		text-align:left;
		padding-left:0;
	}
	
	.fv .img{
		right:auto;
		left:50%;
		transform:translateX(-50%);
		width:80%;
	}
	
	.fv .img img{
		opacity:0.1;
	}
	
	.front_content{
		padding:calc(100vw / 750 * 96) 0;
	}
	
	.fc02{
		padding:calc(100vw / 750 * 96) 0;
	}
	
	.fc02 p{
		width:100%;
	}
	
	.fc02 .video video{
		width: 140%;
		height: 140%;
	}
	
	.fc01 .box{
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.fc01 .box .img{
		display:none;
	}
	
	.fc01 .box .txt{
		width:100%;
		padding-top:0;
	}
	
	.fc01 .box .txt h4{
		font-size:2.25rem;
		line-height:1;
		position:relative;
		padding-left:calc(100vw / 750 * 112);
		margin:calc(100vw / 750 * 24) 0;
	}
	
	.fc01 .box .txt h4::before{
		position:absolute;
		top:50%;
		transform:translateY(-50%);
		left:0;
		content:"";
		width:calc(100vw / 750 * 84);
		height:calc(100vw / 750 * 84);
		background:url("./img/logo_icon.svg") 0 0 no-repeat;
		background-size:cover;
	}
	
	.fc01 .box .txt > p{
		font-size:1rem;
	}
	
	.fc01 .box .txt > p br{
		display:none;
	}
	
	.fc01 .box .txt h5{
		margin-bottom:0.5rem;
	}
	
	.fc01 .box .example_slick .slick-slide{
		padding:0;
	}
	
	.fc01 .box .example_slick .card{
		padding:calc(100vw / 750 * 36) 5vw;
	}
	
	.fc01 .box .example_slick .card:last-child{
		margin-bottom:0;
	}
	
	.fc01 .box .example_slick .card::after{
		top:calc(100vw / 750 * 12);
		left:calc(100vw / 750 * 12);
		width:calc(100% - (100vw / 750 * 24));
		height:calc(100% - (100vw / 750 * 24));
	}
	
	.fc01 .box .example_slick .card h6 br{
		display:none;
	}
	
	.fc06{
		padding:calc(100vw / 750 * 96) 0;
	}
	
	.fc06::before{
		top:calc(100vw / 750 * 16);
	}
	
	.fc06::after{
		bottom:calc(100vw / 750 * 16);
	}
	
	.fc06 .content_wrap .img{
		width:80%;
		margin:0 auto calc(100vw / 750 * 40);
	}
	
	.fc06 .content_wrap .txt{
		width:100%;
	}
	
	.fc06 .content_wrap .txt h4{
		text-align:center;
	}
	
	.fc06 .content_wrap .txt h4 span{
		font-size:1.75rem;
	}
	
	.fc04 .content_wrap .img{
		width:100%;
	}
	
	.fc04 .content_wrap .txt{
		width:100%;
	}
	
	.fc04 .content_wrap .txt dl dt{
		width:100%;
		padding:1rem 1rem 0;
		border-bottom:0;
	}
	
	.fc04 .content_wrap .txt dl dd{
		width:100%;
		padding:0 1rem 1rem;
	}
	
	.fc04 .content_wrap .box.company_box .greeting p.text-right{
		text-align:left;
	}
	
	.fc05::after{
		content:none;
	}
	
	.fc05 .box{
		width:100%;
	}
	
	.modal-container{
		padding:calc(100vw / 750 * 96) 0;
	}
	
	.modal-body{
		width:90vw;
	}
	
	.modal-close{
		top:calc(100vw / 750 * -100);
		right:0;
		width:calc(100vw / 750 * 60);
		height:calc(100vw / 750 * 60);
		font-size:calc(100vw / 750 * 60);
	}
	
	.modal-content{
		padding:calc(100vw / 750 * 60);
	}
	
	/* page */
	
	.page_section{
		padding:0 0 calc(100vw / 750 * 96);
	}
	
	.page_section.page_cta{
		padding:calc(100vw / 750 * 96) 0;
	}
	
	.page_section.page_cta::before{
		content:none;
	}
	
	.page_section.page_cta .video video{
		width:140%;
		height:140%;
	}
	
	.page_section.page_cta .content_wrap p{
		width:100%;
		font-size:1rem;
		margin-bottom:1rem;
	}
	
	.page_section.page_cta .content_wrap p br{
		display:none;
	}
	
	.page_section.page_cta .content_wrap .btn{
		margin:0 auto;
	}
	
	/* coaching */
	
	.page_section h3{
		font-size:2.5rem;
	}
	
	.page_section.coaching01 .content_wrap .box{
		width:100%;
		margin-bottom:calc(100vw / 750 * 60);
		padding:calc(100vw / 750 * 48);
	}
	
	.page_section.coaching01 .content_wrap .box::after{
		top:calc(100vw / 750 * 12);
		left:calc(100vw / 750 * 12);
		width:calc(100% - (100vw / 750 * 24));
		height:calc(100% - (100vw / 750 * 24));
	}
	
	.page_section.coaching03 .voice_slick .slick-slide article{
		padding:calc(100vw / 750 * 48);
	}
	
	.page_section.coaching03 .voice_slick .slick-slide article::before{
		top:calc(100vw / 750 * 12);
		left:calc(100vw / 750 * 12);
		width:calc(100% - (100vw / 750 * 24));
		height:calc(100% - (100vw / 750 * 24));
	}
	
	.page_section.coaching02 .block{
		width:100%;
		margin-bottom:calc(100vw / 750 * 60);
	}
	
	.page_section.coaching02 .block .number{
		font-size:2.5rem;
	}
	
	.page_section.coaching02 .block .txt{
		width:calc(100% - 4.5rem);
		margin-top:calc(100vw / 750 * 10);
	}

}

@media print {
	body {
		display: none;
	}
}