@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Antique&display=swap');

:root{
	--base_font_family: 'Noto Sans JP'  ,sans-serif;
	--font_mincho: "Zen Antique", serif;
	--base_font_color:#000000;
	--base_black:#000000;
	--base_red:#DA3838;
}

*{
	margin:0;
	padding:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

*::before,
*::after{
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

input,
select,
textarea{

	font-family: var(--base_font_family);
	color:var(--base_font_color);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	font-feature-settings: 'palt';
	touch-action: manipulation;
	resize: none;
	display: block;
}

button{
	border: none;
	background: none;
	border-radius: 0;
	cursor: pointer;
}

body{
	color: var(--base_font_color);
	font-size: min(16px , calc(16 / 550 * 100vw));
	font-family: var(--base_font_family);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

.grecaptcha-badge { visibility: hidden; }

img{
	display: block;
	object-position: center;
	width: 100%;
}

#body_wrap{
	overflow: clip;
}


a{
	color: inherit;
}

.fax a{
	pointer-events: none;
}

@media (any-hover:hover){
a[href^="tel:"] {
	pointer-events: none;
}
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.c_hover_opa{
	transition-duration:0.4s;
	transition-property: opacity;
}


@media (any-hover:hover){
	.c_hover_opa:hover{
		opacity: 0.7;
	}
	
}


.anime_fadein_bottom{
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	transform: translateY(40px);
}

.anime_fadein_bottom.anime_active ,
.anime_active .anime_fadein_bottom{
	animation-name:anime_fadein_bottom;
}

@keyframes anime_fadein_bottom {
	0% {
	opacity:0;
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}




/*
------------------------------------
共通パーツ
------------------------------------
*/

.hide{
	display: none;
}


section{
	position: relative;
}

.red{
	color:var(--base_red);
}

.c_ramen_border{
	margin-top: min(56px , calc(56 / 550 * 100vw));
	aspect-ratio: 435 / 14;
	background-image: url('../img/top/ramen_border.png');
	background-size: contain;
}

.c_sec_head_set{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-family: var(--font_mincho);
	font-weight: 400;
	gap:4px;
}

.c_sec_head_set .sec_head_ja{
	color: var(--base_red);
	font-size: min(30px , calc(30 / 550 * 100vw));
	line-height: 1.1;
	letter-spacing: -0.05em;
}
.c_sec_head_set .sec_head_en{
	color: #D6AC11;
	font-size: min(17px , calc(17 / 550 * 100vw));
	line-height: 1.8;
	letter-spacing: -0.05em;
}

.c_dot_list{
	margin-top: min(20px , calc(20 / 550 * 100vw));
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:min(10px , calc(10 / 550 * 100vw));
}

.c_dot_list li{
	padding-left: min(16px , calc(16 / 550 * 100vw));
	position: relative;
	font-weight: 700;
	line-height: 1.75;
}

.c_dot_list li::before{
	content:'';
	width:min(12px , calc(12 / 550 * 100vw));
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border:1px solid var(--base_black);
	position: absolute;
	left:0;
	top:min(9px , calc(9 / 550 * 100vw));
}

.c_dot_list li strong{
	font-weight: 700;
	font-size: min(18px , calc(18 / 550 * 100vw));
}

.c_dot_list li a{
	color: #0086DA;
	border-bottom:1px solid #0086DA;
}
/*
------------------------------------
LP本体
------------------------------------
*/

.header_logo{
	position: fixed;
	z-index: 1000;
	top:20px;
	left:20px;
	width:92px;
}


.float_entry_button{
	position: fixed;
	z-index: 1000;
	bottom:20px;
	right:20px;
}

.float_entry_button .float_entry_button_inner{
	position: relative;
	width:160px;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	
	
}
.float_entry_button .naruto{
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
	background-image: url('../img/top/naruto.png');
	background-size: contain;
	animation-name: naruto_spin;
	animation-fill-mode: forwards;
	animation-duration: 7s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	display: block;
}

@keyframes naruto_spin{
	0%{
		transform: rotateZ(0);
	}
	100%{
		transform: rotateZ(360deg);
	}
}

.float_entry_button .float_entry_button_text{
	text-align: center;
	font-family: var(--font_mincho);
	position: relative;
	z-index: 2;
}

.float_entry_button .float_entry_button_text01{
	color: #0086DA;
	font-size: 19px;
	line-height: 1.4;
	letter-spacing: -0.1em;
}

.float_entry_button .float_entry_button_text01 span{
	font-size: 40px;
	line-height: 0.65;
}

.float_entry_button .float_entry_button_text02{
	color:var(--base_red);
	font-size: 16px;
	letter-spacing: -0.05em;
}

.bg_section{
	position: fixed;
	z-index: 0;
	width:100%;
	top:0;
	left:0;
}

.bg_section .bg_inner{
	position: relative;
	height:100vh;
}

.bg_section .fv_bg{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width:100%;
	height:100%;
	object-fit: cover;
}

.fv_section{
	
	position: relative;
	z-index: 1;
}

.fv_section .fv_inner{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height:100svh;
	padding:60px 0;
}

.fv_section .fv_contents{
	width: 100%;
	padding-bottom: 80px;
}
.fv_section .fv_catch{
	width:754px;
	max-width: 80%;
	margin-inline: auto;
}

#main_section_wrap{
	position: relative;
	width:calc(360 / 393 * 100vw);
	max-width: 514px;
	margin-inline: auto;
	z-index: 4;
	margin-top: -80px;
}

#main_section_wrap::before,
#main_section_wrap::after{
	content:'';
	position: absolute;
	width:min(911px , calc(911 / 550 * 100vw));
	aspect-ratio: 911 / 36;
}

#main_section_wrap::before{
	z-index: 1;
	top:max(-12px , calc(-12 / 550 * 100vw));
	right:max(-8px , calc(-8 / 550 * 100vw));
	background-image: url('../img/top/chop_back.png');
}
#main_section_wrap::after{
	z-index: 3;
	top:min(6px , calc(6 / 550 * 100vw));
	right:max(-13px , calc(-13 / 550 * 100vw));
	background-image: url('../img/top/chop_front.png');
}

#main_section_wrap .main_section_wrap_inner{
	position: relative;
	z-index: 2;
	padding-inline: min(40px , calc(40 / 550 * 100vw));
	background-position: top;
	background-image: url('../img/top/contents_bg.png');
	background-size: min(514px , calc(514 / 550 * 100vw));
	background-size: 100% auto;
	background-repeat: repeat-y;
    background-position: top center;
}

#main_section_wrap .main_section_wrap_inner::before{
	content:'';
	width:calc(502 / 514 * 100%);
	aspect-ratio: 502 / 23;
	background-image: url('../img/top/contents_bg_top.png');
	position: absolute;
	right:0;
	bottom:calc(100% - 1px);
}



#main_section_wrap .main_section_wrap_container{
	position: relative;
	z-index: 3;
	padding-top: min(100px , calc(100 / 550 * 100vw));
}

#main_section_wrap section{
	padding-top: min(45px , calc(45 / 550 * 100vw));
}

#main_section_wrap section.border{
	margin-top: min(45px , calc(45 / 550 * 100vw));
	border-top:1px solid #E3D4B8;
}

#main_section_wrap .footer_ramen{
	width:calc(1090 / 514 * 100%);
	aspect-ratio: 1090 / 600;
	background-image: url('../img/top/footer_ramen.png');
	position: absolute;
	top:100%;
	left: 50%;
	transform: translate(-50% , -40%);
}

.top_program_section{
	padding-top: 0!important;
}

.top_program_section::before{
	content:'';
	width:calc(162 / 435 * 100%);
	aspect-ratio: 324 / 284;
	left:calc(-68 / 435 * 100%);
	top:max(-44px , calc(-44 / 550 * 100vw));
	position: absolute;
	background-image:url('../img/top/program_deco.png');
}

.top_program_section .program_sec_head{
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--font_mincho);
	font-weight: 400;
}

.top_program_section .program_sec_head_ja{
	color: #E3D4B8;	
	font-size: min(43px , calc(43 / 550 * 100vw));
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.top_program_section .program_sec_head_en{
	color:var(--base_red);
	font-size: min(28px , calc(28 / 550 * 100vw));
	font-weight: 400;
	line-height: 1.17;
	letter-spacing: -0.05em;
	margin-top: max(-20px , calc(-20 / 550 * 100vw));
}

.top_program_section .program_text{
	margin-top: min(64px , calc(64 / 550 * 100vw));
	font-family: var(--font_mincho);
	font-size: min(20px , calc(20 / 550 * 100vw));
	line-height: 2;
	letter-spacing: -0.05em;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:min(16px , calc(16 / 550 * 100vw));
}



.top_program_section .program_text strong{
	color:var(--base_red);
	font-weight: 400;
	font-size: min(25px , calc(25 / 550 * 100vw));
	line-height: calc(40 / 25);
	background: linear-gradient(to top, #FDDBDB -20%, #FDDBDB 30%, transparent 30%, transparent 100%);

}
.top_program_section .program_text .remark{
	font-size: min(14px , calc(14 / 550 * 100vw));
	font-family: var(--base_font_family);
}

.top_program_section .program_box{
	margin-top: min(40px , calc(40 / 550 * 100vw));
	border-radius: min(15px , calc(15 / 550 * 100vw));
	background: #FFF;
	box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.08);
	padding:min(20px , calc(20 / 550 * 100vw));
}

.top_program_section .program_box ul{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:min(12px , calc(12 / 550 * 100vw));
}

.top_program_section .program_box li{
	display: flex;
	align-items: flex-start;
	font-weight: 700;
	line-height: 1.75;
}

.top_program_section .program_title{
	flex-shrink: 0;
	width:min(94px , calc(94 / 550 * 100vw));
	padding-right: min(6px , calc(6 / 550 * 100vw));
} 

.top_program_section .program_info{
	width:100%;
}

.top_program_section .program_info .remark{
	font-size: min(13px , calc(13 / 550 * 100vw));
}

.top_program_section .program_info .alert{
	width: fit-content;
	margin-top: min(4px , calc(4 / 550 * 100vw));
	min-height: min(24px , calc(24 / 550 * 100vw));
	border-radius: 9999px;
	padding:0 min(10px , calc(10 / 550 * 100vw));
	background-color: var(--base_red);
	color: #FFF;
	font-size: min(13px , calc(13 / 550 * 100vw));
	font-weight: 700;
	line-height: 1.75;
}

.top_program_section .recruit_area{
	margin-top: min(48px , calc(48 / 550 * 100vw));
	text-align: center;
}
.top_program_section .recruit_head{
	color: var(--base_red);
	font-family: var(--font_mincho);
	font-size: min(28px , calc(28 / 550 * 100vw));
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.07em;
}
.top_program_section .recruit_text{
	margin-top: min(8px , calc(8 / 550 * 100vw));
	line-height: 1.75;
	font-weight: 700;
}



.top_program_section .ramen_border{
	margin-top: min(56px , calc(56 / 550 * 100vw));
}

.top_eligibility_section{

}

.top_eligibility_section::before{
	content:'';
	width:calc(241 / 435 * 100%);
	aspect-ratio: 241 / 220;
	background-image: url('../img/top/eligibility_deco.png');
	position: absolute;
	top:max(-100px , calc(-100 / 550 * 100vw));
	right:max(-140px , calc(-140 / 550 * 100vw));
}

.top_master_section{

}

.top_master_section .master_text{
	margin-top: min(20px , calc(20 / 550 * 100vw));
	text-align: center;
	font-size: min(18px , calc(18 / 550 * 100vw));
	font-weight: 700;
	line-height: 1.55;
}

.top_schedule_section{

}

.top_schedule_section .schedule_list{
	margin-top: min(20px , calc(20 / 550 * 100vw));
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:min(12px , calc(12 / 550 * 100vw));
}

.top_schedule_section .schedule_list li{
	display: flex;
	align-items: flex-start;
	font-weight: 700;
	line-height: 1.75; 
}

.top_schedule_section .schedule_list .remark{
	font-size: min(14px , calc(14 / 550 * 100vw));
	font-weight: 400;
	line-height: 1.5;
	display: block;
	margin-top: 2px;

}

.top_schedule_section .schedule_list .remark.red{
	text-decoration: underline;
}

.top_schedule_section .schedule_title{
	flex-shrink: 0;
	width:min(95px , calc(95 / 550 * 100vw));
	padding-right:min(8px , calc(8 / 550 * 100vw));
}

.top_schedule_section .schedule_info{
	width:100%;
}

.top_schedule_section .schedule_remark{
	margin-top: min(12px , calc(12 / 550 * 100vw));
	font-size: min(14px , calc(14 / 550 * 100vw));
	line-height: 2;
}

.top_place_section{

}

.top_place_section .place_text{
	font-size: min(18px , calc(18 / 550 * 100vw));
	font-weight: 700;
	line-height: 1.55;
	text-align: center;
	margin-top: min(12px , calc(12 / 550 * 100vw));
}

.top_caution_section{

}

.top_caution_section .entry_button{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: min(80px , calc(80 / 550 * 100vw));
	padding:2px min(90px , calc(90 / 550 * 100vw));
	position: relative;
	border-radius: 9999px;
	background-color: #0086DA;
	font-family: var(--font_mincho);
	text-align: center;
	margin-top: min(45px , calc(45 / 550 * 100vw));
}

.top_caution_section .entry_button br{
	display: none;
}

.top_caution_section .entry_button::before{
	content:'';
	width:min(89px , calc(89 / 550 * 100vw));
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	left: calc(10 / 435 * 100%);
	transform: translateY(-50%);
	background-image: url('../img/top/entry_naruto.png');
	background-size: contain;
	margin-top: 3px;
}

.top_caution_section .entry_button_text{
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.top_caution_section .entry_button_text01{
	color:#fff;
	font-size: min(19px , calc(19 / 550 * 100vw));
	line-height: 1.5;
	letter-spacing: -0.1em;
}

.top_caution_section .entry_button_text01 strong{
	font-size: min(40px , calc(40 / 550 * 100vw));
	line-height: 0.65;
	font-weight: 400;
	padding-right: 4px;
}

.top_caution_section .entry_button_text02{
	font-size: min(16px , calc(16 / 550 * 100vw));
	font-weight: 400;
	line-height: 1.2;
	color:var(--base_red);
}

.footer{

	padding-bottom: min(60px , calc(60 / 550 * 100vw));
}

.footer::before{
	content: '';
    width: calc(176 / 435 * 100%);
    aspect-ratio: 176 / 195;
    left: calc(-100 / 435 * 100%);
    top: max(-72px, calc(-72 / 550 * 100vw));
    position: absolute;
    background-image: url(../img/top/footer_deco.png);
}



.footer .footer_name{
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
}

.footer .footer_logo{
	display: block;
	max-width: min(160px , calc(160 / 550 * 100vw));
	aspect-ratio: 160 / 25;
	background-image: url('../img/top/footer_logo.png');
	background-size: contain;
	margin-top: min(12px , calc(12 / 550 * 100vw));
	margin-inline: auto;
	color:transparent;
}

.footer .footer_contact{
	margin-top: min(16px , calc(16 / 550 * 100vw));
	text-align: center;
	font-weight: 700;
	line-height: 1.75;
}

.footer .footer_contact a{
	color: #0086DA;
	font-weight: 400;
	border-bottom:1px solid #0086DA;
}

.footer .footer_copy{
	margin-top: min(40px , calc(40 / 550 * 100vw));
	color: var(--base_red);
	text-align: center;
	font-family: var(--font_mincho);
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: -0.05em;
}


@media screen and (max-width:767px){
	.header_logo{
		top:15px;
		left:calc(15 / 390 * 100vw);
		width:76px;
		position: absolute;
	}

	.float_entry_button{
		bottom:10px;
		right:10px;
	}

	.float_entry_button .float_entry_button_inner{
		width:130px;
	}

	.float_entry_button .float_entry_button_text01{
		font-size: 15px;
	}
	.float_entry_button .float_entry_button_text01 span{
		font-size: 32px;
		line-height: 0.65;
	}

	.float_entry_button .float_entry_button_text02{
		font-size: 13px;
	}


	.fv_section .fv_catch{
		width:100%;
		max-width: 100%;
		display: flex;
		justify-content: center;
	}

	.fv_section .fv_catch img{
		flex-shrink: 0;
		width:calc(470 / 390 * 100vw);
		max-width: 650px;
	}


	#main_section_wrap{
		margin-top: -60px;
	}

	.footer{
		padding-bottom: 160px;
	}

	/* body::after{
		content:'';
		width:1px;
		height:100%;
		background-color: blue;
		position: absolute;
		left:calc(15 / 390 * 100vw);
		top:0;
		z-index: 1000;
	} */

}/*@media screen and (max-width:767px){*/