@charset "UTF-8";

/* *{
	outline: 1px solid red !important;
} */

/* ----------------------------------------------------------------------
    Font Noto+Sans+JP Zen+Kaku+Gothic+New
---------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');



/* ----------------------------------------------------------------------
    reset css
---------------------------------------------------------------------- */
*{
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
    { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display:block; }
audio, canvas, video { display:inline-block; max-width:100%; }
html { overflow-y: scroll; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; }
ul, ol { list-style:none; }
blockquote , q { quotes:none; }
blockquote:before, blockquote:after, q:before, q:after { content:''; content: none; }
a:focus { outline:none; }
ins { text-decoration:none; }
mark { font-style:italic; font-weight:bold; }
del { text-decoration:line-through; }
abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
table { border-collapse:collapse; border-spacing:0; width:100%; }
hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
button, input, select, textarea { outline:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; font-size:100%; }
input, textarea { background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); -webkit-appearance: none; border-radius:0; /* Removing the inner shadow, rounded corners on iOS inputs */ }
input[type="checkbox"]{ -webkit-appearance: checkbox; }
input[type="radio"]{ -webkit-appearance: radio; }
button::-moz-focus-inner, input::-moz-focus-inner { border:0; padding:0; }
img { -ms-interpolation-mode:bicubic; }


/* clearfix */
.clearfix:after { content: "."; display:block; clear:both; height:0; font-size:0.1em; line-height:0; visibility:hidden; overflow:hidden; }
.clearfix { display:inline-block; }
/* exlude MacIE5 \*/
* html .clearfix { height:1% }
.clearfix { display:block;}
/* end MacIE5 */

/* ----------------------------------------------------------------------
    Common
---------------------------------------------------------------------- */
body{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
	box-sizing: border-box;
}
.inner1000{
    max-width: 1000px;
    margin: 0 auto;
}
.inner1100{
    max-width: 1100px;
    margin: 0 auto;
}

.sp{
	display: none;
}

/* ----------------------------------------------------------------------
	HEADER
---------------------------------------------------------------------- */

#header{

}

#header .header_wrapper{
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255 ,0.92);
	z-index: 99;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

#header.hide .header_wrapper {
	opacity: 0;
	transform: translateY(-100%);
}

#header .header_logo_area{
	margin-top: 5px;
}

#header .header_wrapper .header_nav ul{
	display: flex;
	margin-left: auto;
	margin-top: 5px;
}

#header .header_wrapper .header_nav ul li{
	margin-left: 70px;
}

#header .header_wrapper .header_nav ul li:first-child{
	margin-left: 0;
}

#header .header_wrapper .header_nav ul li a{
	color: #333;
	text-decoration: none;
}

#header .header_wrapper .header_nav ul li a span{
	display: block;
	text-align: center;
}

#header .header_wrapper .header_nav ul li a span.top_text{
	font-weight: bold;
	font-size: 16px;
}

#header .header_wrapper .header_nav ul li a span.bottom_text{
	font-size: 10px;
}

#header .header_wrapper .toggle_area{
	background-color: #333;
    width: 100px;
    height: 100px;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
	cursor: pointer;
	display: none;
}

#header .header_wrapper .toggle_area button{
	border: none;
	background-color: #333;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	gap: 5px;
	cursor: pointer;
}


#header .header_wrapper .toggle_area span{
	display: block;
	width: 20px;
	height: 1px;
	background-color: #fff;
}



/* ----------------------------------------------------------------------
	FV
---------------------------------------------------------------------- */
.fv {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	background-color: #EF7399;
}

.fv .pc_fv{
	background: url(../img/top_pc_fv.png) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
}

.fv .sp_fv{
	display: none;
}

.circle_wrapper{
	position: relative;
	/* overflow-x: clip; */
}
.circle_wrapper .circle{
	/* content: "";
	display: block;
	width: 120%;
	height: 20vh;
	clip-path: ellipse(50% 50% at 50% 50%);
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: -1; */
	width: 100%;
	background-image: url(../img/pc_maru_bk.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 142px;
	transform: translate(0,-142px);
}

.main_conatent{
	position: relative;
	margin-top: 120vh; /* ちょうど1画面分下から始まる */
	z-index: 2;
	background: white;
}

.sp_fv_text_area{
	display: none;
}


/* ----------------------------------------------------------------------
    what_naiilit
---------------------------------------------------------------------- */

#what_naillit{
	padding: 0 0 150px;
	    margin-top: -100px;
}
#what_naillit .more_icon_area {
	position: relative;
}
#what_naillit .sp_fv_container{
	display: none;
}

#what_naillit .more_icon_area figure{
	position: absolute;
	top: -137px;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

#what_naillit h2{
	text-align: center;
	font-weight: 500;
	font-size: 32px;
	line-height: 1.6875;
	color: #EF7399;
	margin-bottom: 67px;
}

#what_naillit .att_box{
	background-color: #EF7399;
	border-radius: 25px;
	padding: 40px 0;
	margin-bottom: 137px;
}

#what_naillit .att_box p{
	color: #fff;
	font-size: 35px;
	line-height:1.28;
	text-align: center;
	font-family: "游明朝",serif;
	font-weight: bold;
}
#what_naillit .att_box p .bottom{
	letter-spacing: 0.06em;
}


#what_naillit .about_img{
	text-align: center;
	margin-bottom: 55px;
}

#what_naillit .about_img img{
	width: 100%;
	height: auto;
}


#what_naillit .bottom_text{
	font-size: 16px;
	line-height: 2.5;
	margin-bottom: 137px;
	text-align: center;
}

#what_naillit .sp_about_content{
	display: none;
}

#what_naillit .compare_area{
	display: flex;
	margin: 0 auto;
	gap: 20px;
	align-items: center;
}

#what_naillit .compare_area .school_box{
	outline: 1px solid #32B4D5;
	border-radius: 20px;
	width: 45%;
}

#what_naillit .compare_area .school_box h3{
	background-color: #32B4D5;
	color: #fff;
	font-weight: 500;
	font-size: 26px;
	padding: 10px 0;
	color: #fff;
	text-align: center;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

#what_naillit .compare_area .school_box ul{
	padding: 20px 30px;
}


#what_naillit .compare_area .school_box ul li{
	padding: 10px 0;
	border-bottom: 1px solid #707070;
	font-size: 20px;
	line-height: 1.4;
	font-weight: bold;
}

#what_naillit .compare_area .school_box ul li:last-child{
	border-bottom: none;
}

#what_naillit .compare_area .school_box:first-of-type ul li span{
	color: #32B4D5;
}


#what_naillit .compare_area .school_box ul li span{
	color: #EF7399;
}


#what_naillit .compare_area .naillit_box{
	outline: 1px solid #EF7399;
	border-radius: 20px;
	width: 48%;
}

#what_naillit .compare_area .naillit_box h3{
	background-color: #EF7399;
	color: #fff;
	font-weight: 500;
	font-size: 26px;
	padding: 10px 0;
	color: #fff;
	text-align: center;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

#what_naillit .compare_area .naillit_box ul{
	padding: 20px 30px;
}


#what_naillit .compare_area .naillit_box ul li{
	padding: 10px 0;
	border-bottom: 1px solid #707070;
	font-size: 20px;
	line-height: 1.4;
	font-weight: bold;
}

#what_naillit .compare_area .naillit_box ul li:last-child{
	border-bottom: none;
}

#what_naillit .compare_area .naillit_box ul li span{
	color: #EF7399;
}

/* ----------------------------------------------------------------------
    CAREER STORY
---------------------------------------------------------------------- */

#career_story{
	padding: 150px 0 78px;
	background-color: #F2F2F2;
}

#career_story h2{
	text-align: center;
	font-size: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #707070;
	margin-bottom: 37px;
}

#career_story .top_text{
	text-align: center;
	font-size: 16px;
	line-height: 1.625;
	margin-bottom: 60px;
}

#career_story .pc_carrer_container{
	border-top: 1px solid #B7B7B7;
	display: flex;
	overflow-x: hidden;
}


#career_story .pc_carrer_container .text_area{
	margin-left: 146px;
}

#career_story .pc_carrer_container .text_area .content_list li{
	padding: 47px 0;
	position: relative;
}

#career_story .pc_carrer_container .text_area .content_list li p{
	font-size: 14px;
	line-height: 1.85;
}

#career_story .pc_carrer_container .text_area .content_list li::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100vw;
	height: 1px;
	background-color: #B7B7B7;
}

#career_story .pc_carrer_container .text_area .content_list li:last-child:after{
	content:none;
}

#career_story .sp_carrer_container {
	display: none;
}



/* ----------------------------------------------------------------------
    ROADMAP
---------------------------------------------------------------------- */

#roadmap{
	padding: 150px 0;
}

#roadmap h2{
	font-weight: bold;
	font-size: 40px;
	padding-bottom: 7px;
	border-bottom: 1px solid #333;
	text-align: center;
	margin-bottom: 38px;
}

#roadmap .road_top_text{
	text-align: center;
	margin-bottom: 100px;
}

#roadmap .first_img{
	margin-bottom: 100px;
}

#roadmap .first_img img{
	width: 100%;
	height: auto;
}

#roadmap .swipe_element{
	display: none;
}


#roadmap .roadmap_list{
	max-width: 1100px;
	margin: 0 auto;
}


#roadmap .roadmap_list li{
	background-color: #F2F2F2;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	margin-bottom: 80px;
	position: relative;
	padding-top: 50px;
}


#roadmap .roadmap_list li .circle{
	width: 125px;
	height: 125px;
	border-radius: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	position: absolute;
	top: -60px;
	right: 0;
	left: 0;
	margin: 0 auto;
}

#roadmap .roadmap_list li:nth-child(1) .circle{
	background-color: #D877A1;

}
#roadmap .roadmap_list li:nth-child(2) .circle{
	background-color: #E37447;
}

#roadmap .roadmap_list li .circle p{
	font-weight: bold;
	color: #fff;
	font-size: 21px;
}

#roadmap .roadmap_list li .title_area{
	width: 205px;
	background-color: #333;
	margin-bottom: 20px;
}

#roadmap .roadmap_list li .title_area p{
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding-left: 50px;
}

#roadmap .roadmap_list li .wrapper{
	padding:0 50px 80px 50px; 
}

#roadmap .roadmap_list li .text_area h3{
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
}

#roadmap .roadmap_list li .text_area p{
	font-size: 15px;
	line-height: 1.73;
	margin-bottom: 36px;
}

#roadmap .roadmap_list li .manabi_img {
	margin-top: -90px;
}
#roadmap .roadmap_list li .manabi_img img{
	width: 100%;
	height: auto;
}

#roadmap .roadmap_list li .sp_course_img{
	display: none;
}
#roadmap .roadmap_list li .sp_course_step_area{
	display: none;
}

#roadmap .roadmap_list .fukuri_container{
	display: flex;
}
#roadmap .roadmap_list .fukuri_item{
	width: calc(( 100% / 3) - 21px);
	background-color: #fff;
	border: 1px solid #BCBCBC;
	border-radius: 12px;
	margin-left: 42px;
	padding: 40px 50px;
}
#roadmap .roadmap_list .fukuri_item:first-child{
	margin-left: 0;
}

#roadmap .roadmap_list .fukuri_item img{
	width: 100%;
	height: auto;
}

#roadmap .roadmap_list .fukuri_item .fukuri_title{
	text-align: center;
	font-size: 22px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-weight: bold;
	border-bottom: 1px solid #333;
}

#roadmap .roadmap_list .fukuri_item .detail{
	font-weight: bold;
	text-align: center;
	font-size: 28px;
}
#roadmap .roadmap_list .fukuri_item .add_text{
	font-size: 10px;
	margin-top: 15px;
	text-align: center;
}

#roadmap .roadmap_list .fukuri_item .detail .rice{
	font-size: 10px;
	vertical-align: text-top;
}
#roadmap .roadmap_list .fukuri_item .detail.pink{
	color: #EF7399;
}


/* ----------------------------------------------------------------------
    Teacher
---------------------------------------------------------------------- */
#teacher{
	padding: 100px 0 130px;
	background-color: #EBDBE0;
}
#teacher h2{
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 60px;
}

#teacher .teacher_box{
	background-color: #fff;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	padding: 50px 50px 60px;
}

#teacher .teacher_box .container_left,
#teacher .teacher_box .container_right{
	width: 45%;
	gap: 80px;
}

#teacher .teacher_box .container_right{
	margin-left: 80px;
}

#teacher .teacher_box .container_left figure {
	text-align: center;
}


#teacher .teacher_box .container_left figure img{
	width: 100%;
	max-width: 363px;
	height: auto;
}

#teacher .teacher_box .container_right h3{
	font-weight: bold;
	font-size: 18px;
	line-height: 1.55;
	margin-bottom: 23px;
}

#teacher .teacher_box .container_right p{
	font-size: 14px;
	line-height: 1.71;
	margin-bottom: 25px;
}


#teacher .teacher_box .container_right p:last-child{
	margin-bottom: 0;
}

/* ----------------------------------------------------------------------
    Support
---------------------------------------------------------------------- */

#support{
	background-color: #F0F0F0;
}

#support .support_container {
    display: flex;
	background-color: #F0F0F0;
	align-items: center;
}

#support .support_container .container_left {
	width: 100%;
    max-width: 420px;
    margin-left: auto;
    padding-right: 1vw;
    padding-top: 115px;
    padding-left: 20px;
}
#support .support_container .container_right{
	margin-left: 15px;
    width: 56.25%;
    display: flex;
    align-items: center;
}

#support .support_container .container_left .top_text {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 21px;
    position: relative;
	width: fit-content;
}

#support .support_container .container_left .top_text::before {
    content: "";
    display: block;
    position: absolute;
    top: -31px;
    right: -180px;
    width: 129px;
    height: 129px;
    background-image: url(../img/top_support_circle.svg);
    background-position: center;
    background-size: cover;
    /* z-index: -1; */
}

#support .support_container .container_left .sp_support_img{
	display: none;
}

#support .support_container .container_left .top_text span {
    display: inline-block;
    background: linear-gradient(transparent 70%, #F8E644 10%);
}

#support .support_container .container_left h1 {
    font-size: 30px;
    line-height: 1.44;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

#support .support_container .container_left .bottom_text {
    font-size: 18px;
    line-height: 1.66;
    margin-bottom: 50px;
}

.container_left .support_img {
	display: none;
}

#support .support_container .container_left .sp_img {
    display: none;
}

#support .support_container .container_right figure img{
	width: 100%;
	height: auto;vertical-align: bottom;
}

#support .support_img_slider {

}

#support .support_img_slider .support_img_item img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/* ----------------------------------------------------------------------
    Member
---------------------------------------------------------------------- */

#member{
	padding: 100px 0;
}

#member h2{
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 60px;
	text-align: center;
}

#member .member_container{
	display: flex;
	flex-wrap: wrap;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}

#member .member_container .member_item{
	width: calc(( 100% / 2) - 30px);
	margin: 0 58px 42px 0;
	border: 1px solid #BEBEBE;
	border-radius: 20px;
	padding: 30px;
}

#member .member_container .member_item:nth-child(2n){
	margin: 0 0 42px 0;

}

#member .member_container .member_item .top_area{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	background-color: #EFEFEF;
	border-radius: 15px;
	margin-bottom: 20px;
}

#member .member_container .member_item .top_area .text_area{
	font-weight: bold;
	font-size: 18px;
	line-height: 1.38;
}

#member .member_container .member_item .bottom_area .detail{
	font-weight: 500;
	font-size: 16px;
}


/* ----------------------------------------------------------------------
    FAQ
---------------------------------------------------------------------- */
#faq{
	padding: 60px 0 100px;
}

#faq h2{
	font-family: "游明朝", serif;
	font-size: 32px;
	padding-bottom: 10px;
	border-bottom: 1px solid #333;
	margin-bottom: 50px;
}

#faq .top_text{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 80px;
}

#faq .faq_list{
	counter-reset: listnum; 
	list-style: none; 
}

#faq .faq_item{
	margin-bottom: 40px;
}

#faq .question_area{
	border:1px solid #D6D6D6;
	padding: 20px 35px 20px 100px;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
}
#faq .question_area::before{
	 /*counter-increment: listnum; /* counter-resetと同じ文字列 */
	 /*content: counter(listnum, decimal-leading-zero)"."; /* カウントした数に応じて番号を表示 */
	 content: "Q";
	width: 60px;
	height: calc( 100% - 20px);
	background-color: #2C9EC8;
	color: #fff;
	text-align: center;
	padding-top: 4px;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 20px;
	font-weight: bold;
	font-size: 14px;
}
#faq .question_area .icon::before{
	content: "";
	display: block;
	width: 15px;
	height:1px;
	background-color: #333;
	position: absolute;
	top: 50%;
	right: 15px;
}
#faq .question_area .icon::after{
	content: "";
	display: block;
	width: 1px;
	height:15px;
	background-color: #333333;
	position: absolute;
	top: calc(50% - 7.5px);
	right: 22px;
}
#faq .question_area.active .icon::after{
	display: none;
}

#faq .question_area p{
	font-weight: bold;
	font-size: 14px;
}

#faq .answer_area{
	padding: 25px 110px 25px;
	position: relative;
	display: none;
}

#faq .answer_area::before{
	content: "A";
	display: block;
	width: 33px;
	height: 27px;
	border: 1px solid #2C9EC8;
	color: #2C9EC8;
	text-align: center;
	font-weight: bold;
	padding-top: 4px;
	position: absolute;
	top: 25px;
	left: 60px;
	font-size: 14px;
}

#faq .answer_area p{
	font-size: 13px;
}



/* ----------------------------------------------------------------------
    CV
---------------------------------------------------------------------- */
.cv_area{
	background-image: url(../img/top_naillit_cv_bk.png);
	padding: 140px 0;
	background-position: center center;
	background-size: cover;
}

.cv_box{
	display: flex;
}

.cv_box .container_left,
.cv_box .container_right{
	width: 50%;
}
.cv_box .container_left{
	background-color: #EF7399;
	padding: 50px;
}
.cv_box .container_left h2{
	color: #EEECE8;
	font-family: "游明朝",serif;
	font-size: 37px;
	line-height:1.51;
	letter-spacing: 0.06em;
	margin-bottom: 15px;
	position: relative;
}
.cv_box .container_left h2::before{
	position: absolute;
    top: -26px;
    right: 80px;
	content: "";
	display: block;
	background-position: center center;
	background-image: url(../img/top_cv_img.svg);
	width: 100px;
	height: 92px;
	background-repeat: no-repeat;
}
.cv_box .container_left .cricle_list{
	display: flex;
	margin-bottom: 40px;
	gap: 24px;
}


.cv_box .container_left .cricle_list li{
	background-color: rgba(255, 255, 255 ,0.92);
	width: 145px;
	height: 118px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
}

.cv_box .container_left .cricle_list li p{
	color: #EF7399;
	text-align: center;
	font-family: "游明朝",serif;
	font-size: 18px;
	line-height:1.27;
	font-weight: 600;
}

.cv_box .container_left .cv_bottom_feature{
	display: flex;
	gap: 12px;
}


.cv_box .container_left .cv_bottom_feature li{
	width: 50%;
	border: 1px solid #fff;
	border-radius: 23px;
	padding: 10px 0;
}


.cv_box .container_left .cv_bottom_feature li p{
	color: #fff;
	font-size: 16px;
	text-align: center;
	font-family: "游明朝",serif;
}

.cv_box .container_right{
	background-color: #EEEEEE;
	padding: 50px;
}

.cv_box .container_right h2{
	font-size: 14px;
	text-align: center;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	padding: 10px 0;
	margin-bottom: 25px;
}

.cv_box .container_right .two_want{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}
.cv_box .container_right .two_want li{
	background-color: #EF7399;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	padding: 20px 40px;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cv_box .container_right .two_want li p{

}

.cv_box .container_right .botn_top_text{
	font-size: 14px;
	text-align: center;
	margin-bottom:23px;
}
.cv_box .container_right .btn_area li {
	margin-bottom: 20px;
}
.cv_box .container_right .btn_area li:last-child {
	margin-bottom: 0;
}
.cv_box .container_right .btn_area li a{
	color: #fff;
	border-radius: 20px;
	display: block;
	height: 75px;
	text-decoration: none;
	transition: opacity 0.5s;
}
.cv_box .container_right .btn_area li a:hover{
	opacity : 0.5;
}
.cv_box .container_right .btn_area li:nth-child(1) a{
	background-color: #00B34F;
}
.cv_box .container_right .btn_area li:nth-child(2) a{
	background-color: #32B4D5;
}
.cv_box .container_right .btn_area li a .btn_container {
	display: flex;
	align-items: center;
	height: 75px;
	width: 65%;
	margin: 0 auto;
}

.cv_box .container_right .btn_area li a  span {
	display: block;
	text-align: center;
}

.cv_box .container_right .btn_area li a  span.img_area {
	margin-right: 45px;
	margin-top: 6px;
	width: 45px;
}

.cv_box .container_right .btn_area li:nth-child(2) a  span.img_area {
	margin-right: 30px;
}

.cv_box .container_right .btn_area li a  span.text_area .top {
	font-size: 18px;
}
.cv_box .container_right .btn_area li a  span.text_area .bottom {
	font-size: 12px;
}


/* ----------------------------------------------------------------------
    CORPORATE
---------------------------------------------------------------------- */

#corporate {
	padding: 216px 0 59px;
}

#corporate h2{
	font-weight: bold;
	font-size: 18px;
	padding-bottom: 10px;
	margin-bottom: 87px;
	border-bottom: 1px solid #333;
}

#corporate .top_company_info{
	display: flex;
}

#corporate .top_company_info .container_left {
	width: 40%;
}

#corporate .top_company_info .container_left figure img{
	width: 100%;
	height: auto;
	border-radius: 20px;
}
#corporate .top_company_info .container_right{
	margin-left: 60px;
    max-width: 676px;
    width: 100%;
}
#corporate .top_company_info .container_right table{
	width: 100%;
}
#corporate .top_company_info .container_right table tr{
	border-bottom: 1px dotted #333;
}
#corporate .top_company_info .container_right table th{
	width: 120px;
	height: 74px;
	vertical-align: middle;
	font-size: 19px;
	text-align: left;
}
#corporate .top_company_info .container_right table td{
	vertical-align: middle;
	line-height: 1.53;
	font-size: 15px;
	padding: 30px 0;
}

#corporate .top_company_info .container_right table tr:first-child th {
	height: 50px;
}
#corporate .top_company_info .container_right table tr:last-child td{
	background-image: url(../img/pmark.png);
    background-position: right 100px;
    background-repeat: no-repeat;
    background-size: 80px;
}


/* 
#corporate .top_company_info .container_right table tr:first-child td{
	padding: 0 0 30px;
} */


#corporate .top_company_info .container_right table td p.bold{
	font-size: 15px;
	line-height: 1.53;
	margin-bottom: 5px;
}

#corporate .top_company_info .container_right table tr.ninka td p:nth-child(3){
	margin-bottom: 25px;
}

#corporate .purpose_img img{
	width: 100%;
	height: auto;
	margin-bottom: 87px;
}

#corporate .pc_company_area{
}

#corporate .pc_company_area .pc_company_area_wrapper{
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}

#corporate .compamy_detail_area{
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
}

#corporate .sp_company_area{
	display: none;
}


#corporate .company_img_list{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 130px;
}

#corporate .company_img_list li{
	width: calc(( 100% / 3) - 30px);
	margin-left: 30px;
	margin-bottom: 20px;
}
#corporate .company_img_list li:first-child{
	margin-left: 0;
}
#corporate .company_img_list li:nth-child(4n){
	margin-left: 0;
}
#corporate .company_img_list li figure img{
	width: 100%;
	height: auto;
	border-radius: 20px;
}

#corporate .zigyou_title{
	background-color: #1D73AC;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	padding: 10px 0;
	margin-bottom: 40px;
}

#corporate .zigyou_text{
	font-size: 14px;
	margin-bottom: 47px;
	line-height: 1.71;
}

#corporate .zigyou_container{
	display: flex;
	gap: 26px;
}

#corporate .zigyou_container .container_left,
#corporate .zigyou_container .container_right{
	width: 50%;
}

#corporate .zigyou_container .container_left li{
	display: flex;
		margin-bottom: 13px;
}

#corporate .zigyou_container .container_left li .text_container,
#corporate .zigyou_container .container_left li .img_container{
	width: 50%;
}

#corporate .zigyou_container .container_left li .text_container{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;

}

#corporate .zigyou_container .container_left li:nth-child(1) .text_container{
	background-color: #18629C;
}
#corporate .zigyou_container .container_left li:nth-child(2) .text_container{
	background-color: #E15275;
}
#corporate .zigyou_container .container_left li:nth-child(3) .text_container{
	background-color: #C4B415;
}
#corporate .zigyou_container .container_left li:nth-child(4) .text_container{
	background-color: #1E9D98;
}

#corporate .zigyou_container .container_left li img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#corporate .zigyou_container .container_right img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.sp_fixed_nav_area{
	display: none;
}


.pc_fixed_nav_area{
	position: fixed;
	right: 3%;
	bottom: 3%;
	z-index: 10;
}

.pc_fixed_nav_area .fixed_nav ul li{
	text-align: center;
	margin-bottom: 20px;
}

.pc_fixed_nav_area .fixed_nav ul li a{
	color: #453D3A;
	font-size: 14px;
	text-decoration: none;
	transition: opacity 0.5s;
}

.pc_fixed_nav_area .fixed_nav ul li a:hover{
	opacity : 0.5;
}

.pc_fixed_nav_area .fixed_nav ul li a span{
	display: block;
	font-size: 13px;
}

.pc_fixed_nav_area .fixed_nav ul li a span.icon{
	background-color: #fff;
	border: 40px;
	width: 82px;
	height: 82px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 90px;
	margin-bottom: 10px;
	box-shadow: 1px 1px 1px #cfcfcf;
}

.pc_fixed_nav_area .fixed_nav ul li a span.icon img{
	display: block;
	width: 41px;
}



/* ----------------------------------------------------------------------
    Footer
---------------------------------------------------------------------- */

#footer .footer_wrapper{
    background-color: #E8E8E8;
    padding: 66px 0 56px;
}

#footer .footer_wrapper{
}

#footer .footer_wrapper .footer_logo_area{
    padding: 0 0 22px;
	border-bottom: 1px solid #707070;
	margin-bottom: 12px;
}

#footer .footer_wrapper .footer_nav_area ul {
	display: flex;
}

#footer .footer_wrapper .footer_nav_area ul li {
	margin-left: 20px;
}
#footer .footer_wrapper .footer_nav_area ul li:first-child {
	margin-left: 0;
}
#footer .footer_wrapper .footer_nav_area ul li a{
	color: #333;
	font-size: 12px;
	line-height: 2;
	text-decoration: none;
	position: relative;
}

#footer .footer_wrapper .footer_nav_area ul li a::before{
	content: ">";
	padding-right: 0.5em;
}

#footer .copyright_area{
	background-color: #333;
	padding: 20px 0;
}

#footer .copyright_area .copyright{
	text-align: center;
	font-size: 10px;
	color: #fff;
}


/* ----------------------------------------------------------------------
    Attention Page
---------------------------------------------------------------------- */

#attention_page{
	background-color: #07B53B;
	height: 100vh;
	padding: 50px 0;
}

#attention_page .top_text{
	color: #fff;
	text-align: center;
	margin-bottom: 40px;
	font-size: 20px;
	line-height: 1.5;
}


#attention_page .attention_box{
	max-width: 360px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 20px;
	width: 92%;
	margin: 0 auto 64px;
	position: relative;
	padding: 20px;
}

#attention_page .attention_box  figure img{
	width: 100%;
	height: auto;
}

#attention_page .attention_btn_area a{
	padding:  0 5%;
}

#attention_page .attention_btn_area a{
	max-width: 325px;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	background-color: #fff;
	color: #07B53B;
	border-radius: 20px;
	text-decoration: none;
	align-items: center;
	padding: 10px 0;
}

#attention_page .attention_btn_area a span{
	display: block;
}

#attention_page .attention_btn_area a span.text{
	font-weight: bold;
	font-size: 20px;
	margin-left: 20px;
}


@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    body{
        font-size: 14px;
    }

	.inner1000 {
		padding: 0 5%;
	}

	.inner1100 {
		padding: 0 5%;
	}

	#header .header_wrapper {
		height: 50px;
		justify-content: space-between;
	}

	#header .header_logo_area {
		margin-left: 5%;
		margin-top: 5px;
	}

	#header .header_logo_area img{
		width: 65%;
	}

	#header .header_wrapper .header_nav {
		display: none;
        position: absolute;
        top: 50px;
        left: 0;
		background-color: rgba(255, 255, 255, 0.92);
		margin-right: 0;
		width: 100%;
	}
	#header .header_wrapper .header_nav.active {
		display: block;
	}
	#header .header_wrapper .header_nav ul{
		display: block;
		padding: 20px;
	}

	#header .header_wrapper .header_nav ul li {
		margin-left: 0;
		margin-bottom: 10px;
	}

	#header .header_wrapper .header_nav ul li a span{
		text-align: left;
	}
	#header .header_wrapper .header_nav ul li a span.top_text{
		margin-bottom: 0;
	}

	#header .header_wrapper .toggle_area {
		width: 50px;
		height: 50px;
		display: block;
	}

	#header .header_wrapper .toggle_area.active button span:nth-of-type(1){
		transform: translate(2px, 6px) rotate(-45deg);
	}
	#header .header_wrapper .toggle_area.active button span:nth-of-type(2){
		opacity: 0;
	}
	#header .header_wrapper .toggle_area.active button span:nth-of-type(3){
		transform: translate(2px, -6px) rotate(45deg);
	}

	.fv {
		height: 434px;
		background-color: unset;
	}

	.fv .pc_fv{
		display: none;
	}

	.fv .sp_fv{
		display: block;
		height: 434px;
	}

	.fv .sp_fv::before{
		content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 434px;
        background: url(../img/top_sp_fv.png) no-repeat;
        background-size: cover;
		background-position: center;
	}

	.fv .sp_fv img{
		width: 100%;
		height: auto;
	}

	.sp_fv_text_area {
		margin-bottom: 30px;
	}

	.sp_fv_text_area img{
		width: 100%;
		height: auto;
	}

	.main_conatent{
		margin-top: 434px;
	}

	.circle_wrapper .circle{
		background-image: url(../img/sp_maru_bk.svg);
        height: 75px;
        transform: translate(0, -30px);
        background-size: cover;
        background-position: top center;
	}

	.sp_fv_text_area{
	display: block;
}


	#what_naillit {
		padding: 0;
		margin-top: 0;
	}

	#what_naillit .inner1000{
		transform: translate(0, -120px);
	}

	#what_naillit .more_icon_area{
		display: none;
	}

	#what_naillit .sp_fv_container {
		display: block;
	}

	#what_naillit .sp_fv_container .bottom_list{
		margin-bottom: 70px;
	}

	#what_naillit .sp_fv_container .bottom_list{
		display: flex;
		justify-content: space-between;
	}

	#what_naillit .sp_fv_container .bottom_list li{
		border: 1px solid #F07EA1;
		border-radius: 10px;
		width: 32%;
		padding: 10px 0;
	}

	#what_naillit .sp_fv_container .bottom_list li p {
		color: #F07EA1;
		text-align: center;
		font-family: "游明朝", serif;
		font-size: 15px;
		font-weight: bold;
		line-height: 1.33;
	}

	#what_naillit .sp_wrapper{
		display: flex;
		flex-direction: column-reverse;
	}

	#what_naillit h2 {
		font-size: 18px;
		margin-bottom: 30px;
	}

	#what_naillit .att_box {
		padding: 22px 0;
		margin-bottom: 30px;
	}

	#what_naillit .att_box p {
		font-size: 18px;
		
        line-height: 1.44;
	}

	#what_naillit .about_img{
		display: none;
	}

	#what_naillit .bottom_text {
		font-size: 14px;
		line-height: 2;
		margin-bottom: 60px;
		padding: 0 3%;
	}

	#what_naillit .sp_about_content{
		display: block;
	}

	#what_naillit .sp_about_content h3{
		display: block;
		background-color: #EBEBEB;
		padding: 10px 0;
		font-size: 20px;
		text-align: center;
		font-weight: normal;
		margin-bottom: 27px;
	}

	#what_naillit .sp_about_content .problen_list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 54px;
	}

	
	#what_naillit .sp_about_content .problen_list li{
		border: 1px solid #EF7399;
		border-radius: 42px;
		width: calc(( 100% / 2) - 4px);
		padding: 20px 0;
		margin-bottom: 10px;
	}

	#what_naillit .sp_about_content .problen_list p{
		color: #EF7399;
		text-align: center;
	}

	#what_naillit .sp_about_content .sp_solve_img{
		margin-bottom: 60px;
	}

	#what_naillit .sp_about_content .sp_solve_img img{
		width: 100%;
		height: auto;
	}


	#what_naillit .compare_area {
		flex-direction: column;
		gap: 10px;
	}

	#what_naillit .compare_area .school_box {
		width: 100%;
	}

	#what_naillit .compare_area .school_box h3 {
		font-size: 18px;
		padding: 5px 0;
	}

	#what_naillit .compare_area .school_box ul {
		padding: 15px;
	}

	#what_naillit .compare_area .school_box ul li {
		padding: 5px 0;
		font-size: 14px;
	}

	#what_naillit .compare_area .compare_icon{
		transform: rotate(90deg) translate(10%,0);
	}

	#what_naillit .compare_area .compare_icon img{
		width: 75%;
	}

	#what_naillit .compare_area .naillit_box {
		width: 100%;
	}

	#what_naillit .compare_area .naillit_box h3 {
		font-size: 18px;
		padding: 5px 0;
	}

	#what_naillit .compare_area .naillit_box ul {
		padding: 15px;
	}

	#what_naillit .compare_area .naillit_box ul li {
		padding: 5px 0;
		font-size: 14px;
	}

	#career_story {
		padding: 75px 0 40px;
	}

	#career_story h2 {
		font-size: 24px;
        padding-bottom: 5px;
        margin-bottom: 20px;
	}

	#career_story .top_text {
		font-size: 14px;
		margin-bottom: 30px;
	}

	#career_story .pc_carrer_container {
		display: none;
	}

	#career_story .sp_carrer_container {
		display: block;
	}

	#career_story .sp_carrer_container .step_list{
		background-image: url(../img/top_sp_step_list_bk.svg);
		background-position: center 33px;
		background-repeat: no-repeat;
	}

	#career_story .sp_carrer_container .step_list li{
		margin-bottom: 30px;
	}

	#career_story .sp_carrer_container .step_list .title{
		display: flex;
		align-items: center;
		background-color: #F56E38;
		height: 50px;
		border-radius: 10px;
		margin-bottom: 20px;
		border: 1px solid #F56E38;
    }

	#career_story .sp_carrer_container .step_list .step_box{
		width: 48px;
		height: 48px;
		background-color: #fff;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	#career_story .sp_carrer_container .step_list .step_box .step{
		font-size: 12px;
	}

	#career_story .sp_carrer_container .step_list .step_box .number{
		font-size: 20px;
		font-family: "Roboto", sans-serif;
		line-height: 1;
	}


	#career_story .sp_carrer_container .step_list .title .step_content{
		color: #fff;
		font-weight: bold;
		font-size: 16px;
		width: calc( 100% - 95px);
		text-align: center;
	}

	#career_story .sp_carrer_container .step_list li p{
		font-size: 13px;
		line-height: 2;
	}
	#career_story .sp_carrer_container .step_list li:last-child .title{
		border: 1px solid #FD4645;
	}


	#career_story .sp_carrer_container .step_list li:last-child .goal{
		color: #FD4645;
		font-size: 12px;
	}


	#career_story .sp_carrer_container .step_list li:last-child .title{
		background-color: #FD4645;
	}





	#roadmap {
		padding: 75px 0;
	}

	#roadmap h2 {
		font-size: 24px;
        padding-bottom: 5px;
        margin-bottom: 20px;
	}

	#roadmap .road_top_text {
		margin-bottom: 50px;
	}

	#roadmap .first_img{
		margin-bottom: 0;
	}

	#roadmap .scroll_area {
        overflow-x: scroll;
        padding: 0 5%;
		margin-bottom: 145px;
		position: relative;
    }

	#roadmap .swipe_element{
		display: block;
	}


	#roadmap .scroll_area .swipe_element {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
    }

	#roadmap .scroll_area .swipe_element img{
		width: 130px;
		height: 130px;
    }

	#roadmap .scroll_area img{
		width: 987px;
    }

	#roadmap .roadmap_list .fukuri_container {
		flex-direction: column;
	}

	#roadmap .roadmap_list {
		padding: 0 5%;
	}

	#roadmap .roadmap_list li {
		padding: 50px 0 40px;
		margin-bottom: 40px;
	}

	#roadmap .roadmap_list li:first-child {
		margin-bottom: 100px;
	}

	#roadmap .roadmap_list li .wrapper {
		padding: 0 25px;
	}

	#roadmap .roadmap_list li .circle {
		width: 100px;
		height: 100px;
		top: -50px;
	}

	#roadmap .roadmap_list li .title_area {
		width: 90%;
		margin: 20px 5%;
	}

	#roadmap .roadmap_list li .title_area p {
		font-size: 16px;
		text-align: center;
		padding: 0;
	}

	#roadmap .roadmap_list li .circle p {
		font-size: 24px;
	}



	#roadmap .roadmap_list li .text_area h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	#roadmap .roadmap_list li .text_area p {
		font-size: 14px;
	}

	
	#roadmap .roadmap_list li .top_area{
		border-radius: 16px;
		padding: 20px 0;
		color: #FD4645;
		border: 2px solid #FD4645;
		text-align: center;
		font-weight: bold;
	}
	
	#roadmap .roadmap_list li .multi_shape{
		text-align: center;
		color: #FD4645;
		font-size: 28px;
		text-align: center;
	}
	#roadmap .roadmap_list li .center_area{
		border-radius: 16px;
		padding: 20px 0;
		color: #FD4645;
		border: 2px solid #FD4645;
		text-align: center;
		font-weight: bold;
	}
	#roadmap .roadmap_list li .equal_shape{
		color: #FD4645;
        font-size: 28px;
        text-align: center;
        transform: rotateZ(90deg);
	}
	#roadmap .roadmap_list li .bottom_area{
		background-color: #FD4645;
		color:#fff;
		font-weight: bold;
		text-align: center;
		padding: 20px 0;
	}

	#roadmap .roadmap_list li .sp_course_img{
		display: block;
		margin-bottom: 30px;
		font-size: 16px;
	}

	#roadmap .roadmap_list li .sp_course_step_area{
		display: block;
	}


	#roadmap .roadmap_list li .manabi_img {
		display: none;
	}

	#roadmap .roadmap_list .fukuri_item {
		width: 100%;
		margin-left: 0;
		padding: 20px;
		margin-bottom: 13px;
		text-align: center;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#roadmap .roadmap_list .fukuri_item figure{
		width: 50%;
	}

	#roadmap .roadmap_list .fukuri_item .text_wrapper{
		width: 50%;
	}

	#roadmap .roadmap_list .fukuri_item .fukuri_title {
		font-size: 14px;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}

	#roadmap .roadmap_list .fukuri_item .detail {
		font-size: 18px;
	}

	#roadmap .roadmap_list .fukuri_item .add_text{
		margin-top: 5px;
	}

	.cv_area {
		display: none;
		padding: 70px 0;
	}

	.cv_box {
		flex-direction: column;
	}

	.cv_box .container_left {
		padding: 20px 25px;
	}

	.cv_box .container_left, 
	.cv_box .container_right {
		width: 100%;
	}

	.cv_box .container_left h2 {
		font-size: 25px;
		margin-bottom: 10px;
	}

	.cv_box .container_left h2::before{
		right: 0;
		top: -10px;
	}

	.cv_box .container_left .cricle_list {
		justify-content: center;
		margin-bottom: 16px;
	}

	.cv_box .container_left .cv_bottom_feature li {
		padding: 5px 0;
	}

	.cv_box .container_left .cv_bottom_feature li p{
		font-size: 14px;
	}

	.cv_box .container_right .two_want {
		gap: 5px;
		margin-bottom: 15px;
	}

	.cv_box .container_right .botn_top_text {
		font-size: 12px;
		margin-bottom: 12px;
	}

	.cv_box .container_right h2 {
		font-size: 12px;
		padding: 5px 0;
		margin-bottom: 10px;
	}

	.cv_box .container_right .two_want li {
		font-size: 12px;
		padding: 10px 20px;
		line-height: 1.4;
	}

	.cv_box .container_right {
		background-color: #EEEEEE;
		padding: 18px 25px;
	}

	.cv_box .container_right .btn_area li a span.text_area .top {
		font-size: 16px;
	}

	.cv_box .container_right .btn_area li a span {
		font-size: 12px;
	}

	#teacher {
		padding: 50px 5% 40px;
	}

	#teacher .teacher_box {
		flex-direction: column;
		padding: 0;
		background-color: #EBDBE0;
	}

	#teacher .teacher_box .container_left, #teacher .teacher_box .container_right {
		width: 100%;
	}

	#teacher .teacher_box .container_left {
		margin-bottom: 50px;
	}

	#teacher .teacher_box .container_right{
		margin-left: 0;
		margin-bottom: 40px;
	}

	#teacher .teacher_box .container_right h3{
		margin-bottom: 50px;
	}
	.cv_box .container_left .cricle_list li {
		width: 80px;
		height: 80px;
	}

	.cv_box .container_left .cricle_list li p {
		font-size: 14px;
	}

	#teacher h2 {
		font-size: 24px;
		margin-bottom: 55px;
	}

	#support .support_container {
		flex-direction: column-reverse;
		padding: 0;
		margin-bottom: 90px;
	}

	#support .support_container .container_left {
		margin-left: 0;
		padding-right: 0;
		max-width: unset;
		padding: 0 5%;

	}

	#support .support_container .container_left .top_text {
		display: none;
    }

	#support .support_container .container_left .top_text::before {
		top: -20px;
        right: 5%;
        width: 90px;
        height: 90px;
	}

	#support .support_container .container_left h1 {
		text-align: center;
	}

	#support .support_container .container_left .bottom_text{
		text-align: center;
	}

	#support .support_container .container_left .support_img{
		text-align: center;
		display: block;
	}

	#support .support_container .container_left .support_img img{
		width: 186px;
		height: auto;
	}

	#support .support_container .container_right{
		margin-bottom: 72px;
        margin-left: 0;
        width: 100%;
        display: block;
	}

	#member h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}

	#member .member_list {
		flex-direction: column;
	}

	#member {
		padding: 50px 0;
	}

	#member .member_container .member_item {
		width: 100%;
		margin: 0  10px 20px 0;
		padding: 15px;
	}

	#member .member_container .member_item:nth-child(2n){
		margin: 0 10px 20px 0;
	}

	#member .member_container .member_item .top_area {
		gap:0;
		margin-bottom: 10px;
		padding: 5px 10px;
	}

	#member .member_container .member_item .top_area .text_area {
		font-size: 16px;
	}

	#member .member_container .member_item .bottom_area .detail {
		font-size: 14px;
	}

	#faq {
		padding: 40px 0 0;
	}

	#faq h2 {
		font-size: 24px;
		padding-bottom: 5px;
		margin-bottom: 25px;
	}

	#faq .faq_item {
		margin-bottom: 20px;
	}

	#faq .question_area {
		padding: 10px 35px 10px 50px;
		min-height: 60px;
	}

	#faq .question_area p {
		font-size: 13px;
	}

	#faq .question_area::before {
		width: 40px;
        min-height: 40px;
        height: calc(100% - 20px);
        padding-top: 20px;
        font-size: 14px;
    }

	#faq .question_area .icon::before{
		top: 50%;
	}
	#faq .question_area .icon::after{
		top: calc(50% - 7.5px);
	}

	#faq .answer_area {
		padding: 10px 30px 10px 50px;
	}

	#faq .answer_area::before {
        position: absolute;
        left: 3px;
        top: 10px
	}

	#faq .answer_area p {
		font-size: 12px;
	}


	#faq .top_text {
		font-size: 14px;
		margin-bottom: 40px;
	}

	#corporate {
		padding:80px 0 0;
	}

	#corporate h2 {
		font-size: 16px;
		padding-bottom: 5px;
		margin-bottom: 40px;
	}

	#corporate .top_company_info {
		flex-direction: column;
	}
	#corporate .top_company_info .container_left figure img{
		border-radius: 0;
	}

	#corporate .top_company_info .container_right table th {
		width: 80px;
		height: 80px;
		font-size: 16px;
	}

	#corporate .top_company_info .container_right table td{
		font-size: 14px;
		padding: 15px 0;
	}

	#corporate .top_company_info .container_right table tr{
		display: block;
	}
	#corporate .top_company_info .container_right table th{
		display: block;
		width: 100%;
		height: auto;
		text-align: left;
		padding-top: 20px;
	}
	#corporate .top_company_info .container_right table td{
		display: block;
	}
	#corporate .top_company_info .container_right table tr:last-child{
		border-bottom: none;
	}
	#corporate .top_company_info .container_right table tr:last-child td{
		background-size: 60px;
		background-position: right 94px;
	}

	#corporate .top_company_info .container_right table td p.bold {
		font-size: 15px;
		margin-bottom: 3px;
	}

	#corporate .top_company_info .container_left {
		width: 100%;
		text-align: center;
	}

	#corporate .top_company_info .container_right {
		margin-left: 0;
		margin-bottom: 20px;
	}

	#corporate .purpose_img img {
		margin-bottom: 40px;
	}

	#corporate .pc_company_area{
		display: none;
	}

	#corporate .sp_company_area{
		display: block;
	}

	#corporate .sp_company_area .sp_purpose_img img{
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}

	#corporate .sp_company_area .company_img_container img{
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}


	#corporate .company_img_list {
		margin-bottom: 65px;
	}

	#corporate .company_img_list li {
		width: calc((100% / 2) - 5px);
		margin-left: 0;
		margin-bottom: 10px;
	}

	#corporate .company_img_list li:nth-child(2n) {
		margin-left: 10px;
	}

	#corporate .zigyou_title {
		background-color: #333333;
		letter-spacing: 0.1em;
		padding: 15px 0;
	}

	#corporate .zigyou_text{
		padding: 0 5%;
	}


	#corporate .zigyou_container {
		flex-direction: column;
		gap: 0;
	}

	#corporate .zigyou_container .container_left, 
	#corporate .zigyou_container .container_right {
		width: 100%;
	}

	#corporate .zigyou_container .container_left li {
		margin-bottom: 0;
	}

	.pc_fixed_nav_area {
		display: none;
	}

	.sp_fixed_nav_area {
		display: block;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 10;
		width: 100%;
	}

	
	.sp_fixed_nav_area .fixed_nav ul{
		display: flex;
		height: 60px;
	}

	.sp_fixed_nav_area .fixed_nav ul li{
		width: 50%;
		height: 100%;
	}

	.sp_fixed_nav_area .fixed_nav ul li a{
		color: #fff;
		background-color: #333;
		display: flex;
		text-decoration: none;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		height: 60px;
	}

	.sp_fixed_nav_area .fixed_nav ul li:nth-child(1) a{
		background-color: #00B34F;

	}

	.sp_fixed_nav_area .fixed_nav ul li:nth-child(2) a{
		background-color: #32B4D5;
	}


	.sp_fixed_nav_area .fixed_nav ul li a span{
		display: block;
	}

	.sp_fixed_nav_area .fixed_nav ul li a span.text{
		margin-left: 13px;
	}

	#footer .footer_wrapper .footer_nav_area ul{
		display: block;
	}

	#footer .footer_wrapper .footer_nav_area ul li{
		margin-left: 0;
	}

	#footer .copyright_area {
		padding: 20px 0 80px;
	}
}

