@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root{
	--blue:#00519E;
}

*{
	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: "Noto Sans JP", sans-serif;
	color:var(--blue);
	-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(--blue);
	font-size: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	font-family: "Noto Sans JP", sans-serif;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#fff;  
	z-index: 9999; 
	pointer-events: none; 
	opacity: 1; 
	-webkit-transition: opacity .8s ease;
	transition: opacity .8s ease;
}

body.fadein::after {
	opacity: 0;
}




body.en_body{
	font-family: 'Inter', sans-serif;
}

body.en_body input,
select,
textarea{
	font-family: 'Inter', sans-serif;
}

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

#body_wrap{
	overflow: hidden;
	padding-left: 24.5%;
}

main{
	padding-top: 64px;
}

a{
	color:var(--blue);
}

.fax a{
	pointer-events: none;
}

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

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

.common_hover_opa{
	transition: 0.4s;
}


@media (any-hover:hover){
	.common_hover_opa:hover{
		opacity: 0.9;
	}
	
}

.anime_fadein_bottom{
	opacity: 0;
	animation-duration: 1s;
	/* animation-timing-function: ease-out; */
	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);
	}
}


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

.container{
	max-width: clamp(calc(980 / 1440 * 1440px) , calc(980 / 1440 * 100vw) , calc(980 / 1440 * 1800px));
	padding-right: 20px;
}

.common_sec_title{
	font-family: 'Inter', sans-serif;
	font-size: clamp(calc(34 / 1440 * 1440px) , calc(34 / 1440 * 100vw) , calc(34 / 1440 * 1800px));
	font-weight: 400;
	letter-spacing: -0.01em;
	text-align: left;
	line-height: 1;
}

/*
------------------------------------
ヘッダー
------------------------------------
*/

#drawer_menu{
	position: fixed;
	left:0;
	top:0;
	width:24.5%;
	display: flex;
	justify-content: flex-end;
	padding-left: 20px;
}

#drawer_menu .drawer_menu_inner{
	width:clamp(calc(288 / 1440 * 1440px) , calc(288 / 1440 * 100vw) , calc(288 / 1440 * 1800px));
	padding-right: 20px;
	max-width: 100%;
}

#drawer_menu .drawer_menu_frame{
	overflow-y: auto;
	scrollbar-width: none; 
	-ms-overflow-style: none;
	height: 100vh;
}

#drawer_menu .drawer_menu_frame::-webkit-scrollbar{
	display: none;
}

#drawer_menu .drawer_menu_contents_frame{
	padding:64px 0;
	height: 100vh;
}

#drawer_menu .drawer_menu_contents{
	min-height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

#drawer_menu .drawer_logo{
	display: block;
	width:clamp(calc(150 / 1440 * 1440px) , calc(150 / 1440 * 100vw) , calc(150 / 1440 * 1800px));
	position: absolute;
	top:0;
	left:0;
}
#drawer_menu .drawer_menu_item + .drawer_menu_item{
	margin-top: 36px;
}

#drawer_menu .drawer_menu_link{
	display: block;
	width:fit-content;
	position: relative;
	font-family: 'Inter', sans-serif;
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.2;
}

#drawer_menu .drawer_menu_link::after{
	content:'';
	width:0;
	height:1px;
	background-color: var(--blue);
	position: absolute;
	bottom:0;
	left:0;
	transition-duration: 0.4s;
	transition-timing-function: ease-out;
}

#drawer_menu .drawer_menu_link.active::after{
	width:100%;
}

#drawer_menu .drawer_bottom{
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
}

#drawer_menu .drawer_lang_list{
	display: flex;
	align-items: center;
}

#drawer_menu .drawer_lang_link{
	font-family: 'Inter', sans-serif;
	font-size: clamp(calc(13 / 1440 * 1440px) , calc(13 / 1440 * 100vw) , calc(13 / 1440 * 1800px));
	letter-spacing: -0.01em;
	position: relative;
}

#drawer_menu .drawer_lang_link::after{
	content:'';
	width:100%;
	height:1px;
	background-color: var(--blue);
	position: absolute;
	bottom:0;
	left:0;
	opacity: 0;
}

#drawer_menu .drawer_lang_link.active::after{
	opacity: 1;
}

#drawer_menu .drawer_lang_slash{
	font-size: clamp(calc(13 / 1440 * 1440px) , calc(13 / 1440 * 100vw) , calc(13 / 1440 * 1800px));
	letter-spacing: -0.01em;
	margin-inline:clamp(calc(10 / 1440 * 1440px) , calc(10 / 1440 * 100vw) , calc(10 / 1440 * 1800px));
}

#drawer_menu .drawer_copy{
	font-family: 'Inter', sans-serif;
	font-size: clamp(calc(13 / 1440 * 1440px) , calc(13 / 1440 * 100vw) , calc(13 / 1440 * 1800px));
	letter-spacing: -0.01em;
	margin-top: 36px;
}


/*
------------------------------------
トップ(LP本体) 日本語、英語共通
------------------------------------
*/

body.top_body{
	
}

main.top_main{

}

.top_section{

}

.scroll_guide_area{
	position: absolute;
	top:0;
	right:0;
	pointer-events: none;
	width: 100%;
}

.scroll_guide_inner{
	height: 100vh;
	min-height: 600px;
	position: relative;
}

.scroll_guide_area .scroll_guide{
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	bottom:min(calc(64 / 1440 * 100vw) , calc(64 / 1440 * 1800px));
	right:min(calc(64 / 1440 * 100vw) , calc(64 / 1440 * 1800px));
}

.scroll_guide_area .scroll_guide img{
	width:clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
}

.scroll_guide_area .scroll_guide::after{
	content:'';
	width:clamp(calc(6 / 1440 * 1440px) , calc(6 / 1440 * 100vw) , calc(6 / 1440 * 1800px));
	height:clamp(calc(17 / 1440 * 1440px) , calc(17 / 1440 * 100vw) , calc(17 / 1440 * 1800px));
	background-image: url('../img/common/icon_arrow_bottom_blue.svg');
	margin-top: 23px;
}

.top_fv_section{
	position: relative;
}

.top_fv_section .fv_img{
	width:min(calc(1087 / 1440 * 100vw) , calc(1087 / 1440 * 1800px));
}

.top_philo_section{
	padding-top: 150px;
} 

.top_philo_section .philo_block{
	margin-top: 112px;
}

.top_philo_section .philo_block + .philo_block{
	margin-top: 93px;
}
.top_philo_section .philo_head{
	font-weight: 500;
	font-size: clamp(calc(24 / 1440 * 1440px) , calc(24 / 1440 * 100vw) , calc(24 / 1440 * 1800px));
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.top_philo_section .philo_head_en{
	font-family: 'Inter', sans-serif;
	font-size: clamp(calc(26 / 1440 * 1440px) , calc(26 / 1440 * 100vw) , calc(26 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.top_philo_section .philo_text{
	margin-top: 42px;
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 2.5;
}

.top_philo_section .philo_text p + p{
	margin-top: 20px;
}

.top_about_section{
	padding-top: 295px;
}

.top_about_section .about_contents{
	margin-top: 92px;
}

.top_about_section .about_contents + .about_contents{
	margin-top: 88px;
}

.top_about_section .about_head{
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: clamp(calc(20 / 1440 * 1440px) , calc(20 / 1440 * 100vw) , calc(20 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.top_about_section .about_list_frame{
	margin-top: 48px;
}

.top_about_section .about_line{
	display: flex;
	align-items: flex-start;
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 2;
}

.top_about_section .about_line + .about_line{
	margin-top: 22px;
}

.top_about_section .about_th{
	flex-shrink: 0;
	width:clamp(calc(150 / 1440 * 1440px) , calc(150 / 1440 * 100vw) , calc(150 / 1440 * 1800px));
	padding-right: 8px;
}

.top_artists_section{
	padding-top: 300px;
}

.top_artists_section .artists_head_area{
	margin-top: 103px;
}

.top_artists_section .artists_head_list{
	display: flex;
	align-items: center;
	gap:0 7px;
}

.top_artists_section .artists_head_list:nth-child(even){
	justify-content: flex-end;
}


.top_artists_section .artists_head_list li{
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-weight: normal;
	font-size: clamp(calc(100 / 1440 * 1440px) , calc(100 / 1440 * 100vw) , calc(100 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1;
}

.top_artists_section .artists_head_list li.active{
	color:rgba(8 , 59 , 114 , 0.5);
}
.top_artists_section .artists_head_list li.off{
	pointer-events: none;
	opacity: 0.15;
}

.top_artists_section .artists_list_area{
	margin-top: 71px;
	/* min-height: 370px; */
}	

.top_artists_section .artists_list_flex{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:21px 0;
}

.top_artists_section .artists_list{
	width:33.3%;
	min-width: 240px;
	padding-right: 10px;
}

.top_artists_section .artists_list li{
	font-family: 'Inter', sans-serif;
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	min-height: clamp(calc(18 / 1440 * 1440px) , calc(18 / 1440 * 100vw) , calc(18 / 1440 * 1800px));
}

.top_artists_section .artists_list li + li{
	margin-top: 21px;
}

.top_contact_section{
	padding-top: 300px;
	padding-bottom: 300px;
} 

.top_contact_section .title_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top_contact_section .contact_guide{
	font-size: clamp(calc(12 / 1440 * 1440px) , calc(12 / 1440 * 100vw) , calc(12 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1;
}

.top_contact_section .contact_guide span{
	color:#CE1225;
}

.top_contact_section .form_area{
	margin-top: 93px;
}

.top_contact_section .form_line {
	display: flex;
	align-items: flex-start;
}
.top_contact_section .form_line + .form_line{
	margin-top: 40px;
}

.top_contact_section .form_left{
	width:clamp(calc(282 / 1440 * 1440px) , calc(282 / 1440 * 100vw) , calc(282 / 1440 * 1800px));
	flex-shrink: 0;
	padding-top: 16px;
}

.top_contact_section .form_name{
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1.2;
}

.top_contact_section .form_name.must::after{
	content:'※';
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1.2;
	color:#CE1225;
}

.top_contact_section .form_right{
	width:100%;
}

.top_contact_section .form_right .err_text{
	font-size: clamp(calc(12 / 1440 * 1440px) , calc(12 / 1440 * 100vw) , calc(12 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1.2;
	color: #ce1225;
	margin-top: 4px;
}

.top_contact_section .text_input{
	display: block;
	width: 100%;
	height: clamp(calc(48 / 1440 * 1440px) , calc(48 / 1440 * 100vw) , calc(48 / 1440 * 1800px));
	border:1px solid #E6E6E6;
	padding-inline: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	color: var(--blue);
}

.top_contact_section .text_input::placeholder,
.top_contact_section textarea::placeholder{
	color:#A1A1A1;
}

.top_contact_section .text_input.err{
	border-color: #CE1225;
}

.top_contact_section textarea{
	display: block;
	width: 100%;
	height: clamp(calc(240 / 1440 * 1440px) , calc(240 / 1440 * 100vw) , calc(240 / 1440 * 1800px));
	border:1px solid #E6E6E6;
	padding: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	line-height: 1.4;
	letter-spacing: 0.03em;
	color: var(--blue);
}

.top_contact_section .agree_label{
	display: flex;
	align-items: flex-start;
	width: fit-content;
	cursor: pointer;
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1.3;
	margin-top: 14px;
}

.top_contact_section .agree_label input{
	display: none;
	
}

.top_contact_section .agree_label .checkbox_obj{
	margin-right: 12px;
	display: block;
	width: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	height: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	background: #fff;
	border: 1px solid #e6e6e6;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
}

.top_contact_section .agree_label input:checked + .checkbox_obj:before {
	position: absolute;
	top: clamp(calc(1 / 1440 * 1440px) , calc(1 / 1440 * 100vw) , calc(1 / 1440 * 1800px));
	left: clamp(calc(5 / 1440 * 1440px) , calc(5 / 1440 * 100vw) , calc(5 / 1440 * 1800px));
	transform: rotate(50deg);
	width: clamp(calc(4 / 1440 * 1440px) , calc(4 / 1440 * 100vw) , calc(4 / 1440 * 1800px));
	height: clamp(calc(10 / 1440 * 1440px) , calc(10 / 1440 * 100vw) , calc(10 / 1440 * 1800px));
	border-right: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
	content: '';
}

.top_contact_section .privacy_box{
	border:1px solid #E6E6E6;
	margin-top: 32px;
	padding-right: 9px;
	padding-top:12px;
	padding-bottom: 12px;
	height:clamp(calc(240 / 1440 * 1440px) , calc(240 / 1440 * 100vw) , calc(240 / 1440 * 1800px));
}

.top_contact_section .privacy_box_inner{
	height: 100%;
	overflow-y: auto;
	
	padding-left: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
}

/* スクロールバー全体 */
.top_contact_section .privacy_box_inner::-webkit-scrollbar {
	width: 1px; 
}

/* スクロールバーのトラック（背景） */
.top_contact_section .privacy_box_inner::-webkit-scrollbar-track {
	background-color: transparent;
}

/* スクロールバーのつまみ（ドラッグ部分） */
.top_contact_section .privacy_box_inner::-webkit-scrollbar-thumb {
	background-color: var(--blue);
}
	

.top_contact_section .privacy_text{
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height:1.75;
	padding-right: 16px;
}

.top_contact_section .privacy_text p + p{
	margin-top: 15px;
}

.top_contact_section .submit_frame{
	width: fit-content;
	position: relative;
	margin:72px auto 0;
}

.top_contact_section .submit_frame::after{
	content:'';
	width:clamp(calc(17 / 1440 * 1440px) , calc(17 / 1440 * 100vw) , calc(17 / 1440 * 1800px));
	height:clamp(calc(6 / 1440 * 1440px) , calc(6 / 1440 * 100vw) , calc(6 / 1440 * 1800px));
	background-image: url('../img/common/icon_arrow_right_white.svg');
	position: absolute;
	right:clamp(calc(12 / 1440 * 1440px) , calc(12 / 1440 * 100vw) , calc(12 / 1440 * 1800px));
	top:0;
	bottom:0;
	margin:auto;
	pointer-events: none;
}

.top_contact_section .submit_button{
	border:none;
	background: none;
	width: clamp(calc(280 / 1440 * 1440px) , calc(280 / 1440 * 100vw) , calc(280 / 1440 * 1800px));
	height: clamp(calc(56 / 1440 * 1440px) , calc(56 / 1440 * 100vw) , calc(56 / 1440 * 1800px));
	background: var(--blue);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1;
	text-align: center;
	color: #fff;
}

.top_contact_section .send_text{
	text-align: center;
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	margin-top: clamp(calc(24 / 1440 * 1440px) , calc(24 / 1440 * 100vw) , calc(24 / 1440 * 1800px));
}


/*
------------------------------------
トップ(LP本体) 英語用
------------------------------------
*/

body.en_body .top_body{
	
}

body.en_body main.top_main{

}

body.en_body .top_section{

}

body.en_body .top_philo_section{
	padding-top: 150px;
} 

body.en_body .top_philo_section .philo_block{
	margin-top: 104px;
}

body.en_body .top_philo_section .philo_block + .philo_block{
	margin-top: 95px;
}

body.en_body .top_philo_section .philo_head{
	font-weight: 500;
	font-size: clamp(calc(26 / 1440 * 1440px) , calc(26 / 1440 * 100vw) , calc(24 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.2;
}
body.en_body .top_philo_section .philo_text{
	margin-top: 42px;
	font-size: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 2;
}

body.en_body .top_philo_section .philo_text p + p{
	margin-top: 26px;
}

body.en_body .top_about_section{
	padding-top: 298px;
}

body.en_body .top_about_section .about_contents{
	margin-top: 92px;
}

body.en_body .top_about_section .about_contents + .about_contents{
	margin-top: 88px;
}
body.en_body .top_about_section .about_head{
	font-size: clamp(calc(20 / 1440 * 1440px) , calc(20 / 1440 * 100vw) , calc(20 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.2;
}

body.en_body .top_about_section .about_list_frame{
	margin-top: 48px;
}

body.en_body .top_about_section .about_line{
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.5;
}

body.en_body .top_about_section .about_line + .about_line{
	margin-top: 27px;
}

body.en_body .top_about_section .about_list_history{
	padding-top: 4px;
}

body.en_body .top_about_section .about_list_history .about_line + .about_line{
	margin-top: 35px;
}

body.en_body .top_about_section .about_th{
	width:clamp(calc(153 / 1440 * 1440px) , calc(153 / 1440 * 100vw) , calc(153 / 1440 * 1800px));
}


body.en_body .top_contact_section{
	padding-top: 300px;
	padding-bottom: 300px;
} 

body.en_body .top_contact_section .title_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

body.en_body .top_contact_section .contact_guide{
	font-size: clamp(calc(12 / 1440 * 1440px) , calc(12 / 1440 * 100vw) , calc(12 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1;
	padding-top: 6px;
}


body.en_body .top_contact_section .form_area{
	margin-top: 97px;
}

body.en_body .top_contact_section .form_line {
	display: flex;
	align-items: flex-start;
}
body.en_body .top_contact_section .form_line + .form_line{
	margin-top: 40px;
}

body.en_body .top_contact_section .form_left{
	padding-top: 16px;
}

body.en_body .top_contact_section .form_name{
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.2;
}

body.en_body .top_contact_section .form_name.must::after{
	font-family: 'Inter', sans-serif;
	content:'*';
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.2;
}


body.en_body .top_contact_section .form_right .err_text{
	font-size: clamp(calc(12 / 1440 * 1440px) , calc(12 / 1440 * 100vw) , calc(12 / 1440 * 1800px));
	letter-spacing: -0.01em;
	margin-top: 4px;
}

body.en_body .top_contact_section .text_input{
	padding-inline: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
}



body.en_body .top_contact_section textarea{
	height: clamp(calc(240 / 1440 * 1440px) , calc(240 / 1440 * 100vw) , calc(240 / 1440 * 1800px));
	padding: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	line-height: 1.4;
	letter-spacing: -0.01em;
}

body.en_body .top_contact_section .agree_label{
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin-top: 14px;
}


body.en_body .top_contact_section .agree_label .checkbox_obj{
	margin-right: 12px;
}

body.en_body .top_contact_section .privacy_box{
	margin-top: 32px;
	padding-right: 9px;
	padding-top:12px;
	padding-bottom: 12px;
}

body.en_body .top_contact_section .privacy_box_inner{
	
	padding-left: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
}
	

body.en_body .top_contact_section .privacy_text{
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height:1.75;
	padding-right: 16px;
}

body.en_body .top_contact_section .privacy_text p + p{
	/* margin-top: 6px; */
}

body.en_body .top_contact_section .submit_frame{
	margin:72px auto 0;
}

body.en_body .top_contact_section .submit_frame::after{
	right:clamp(calc(12 / 1440 * 1440px) , calc(12 / 1440 * 100vw) , calc(12 / 1440 * 1800px));
}

body.en_body .top_contact_section .submit_button{

	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
}

body.en_body .top_contact_section .send_text{
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	margin-top: clamp(calc(24 / 1440 * 1440px) , calc(24 / 1440 * 100vw) , calc(24 / 1440 * 1800px));
}


/*
------------------------------------
フッター
------------------------------------
*/

footer{
	padding-bottom: 64px;
}

footer .footer_inner{
	position: relative;
}

footer .footer_contents{
	position: relative;
}

footer .footer_name{
	font-weight: 600;
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1.3;
}

footer .footer_address{
	margin-top: 14px;
	font-size: clamp(calc(14 / 1440 * 1440px) , calc(14 / 1440 * 100vw) , calc(14 / 1440 * 1800px));
	letter-spacing: 0.03em;
	line-height: 1.3;
}

footer .footer_link_flex{
	margin-top: 75px;
	display: flex;
	align-items: flex-start;
	gap:0 clamp(calc(32 / 1440 * 1440px) , calc(32 / 1440 * 100vw) , calc(32 / 1440 * 1800px));
}

footer .footer_link_flex img{
	height:clamp(calc(40 / 1440 * 1440px) , calc(40 / 1440 * 100vw) , calc(40 / 1440 * 1800px));
	width:auto;
}

footer .page_top{
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	/* right:0;
	bottom:20px; */
	right: min(calc(64 / 1440 * 100vw), calc(64 / 1440 * 1800px));
	bottom:4px;
}

footer .page_top img{
	width: clamp(calc(16 / 1440 * 1440px) , calc(16 / 1440 * 100vw) , calc(16 / 1440 * 1800px));
}

footer .page_top::before{
	content:'';
	width:clamp(calc(6 / 1440 * 1440px) , calc(6 / 1440 * 100vw) , calc(6 / 1440 * 1800px));
	height:clamp(calc(17 / 1440 * 1440px) , calc(17 / 1440 * 100vw) , calc(17 / 1440 * 1800px));
	background-image: url('../img/common/icon_arrow_top_blue.svg');
	margin-bottom: 24px;
}

/*
------------------------------------
フッター 英語用
------------------------------------
*/

body.en_body footer{
	padding-bottom: 64px;
}

body.en_body footer .footer_contents{
	position: relative;
}

body.en_body footer .footer_name{
	font-weight: 600;
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.3;
}

body.en_body footer .footer_address{
	margin-top: 14px;
	font-size: clamp(calc(15 / 1440 * 1440px) , calc(15 / 1440 * 100vw) , calc(15 / 1440 * 1800px));
	letter-spacing: -0.01em;
	line-height: 1.3;
}

body.en_body footer .footer_link_flex{
	margin-top: 50px;
}
