@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root{
	--base_font_family: "Zen Kaku Gothic New", sans-serif;
	--font_instrumen: "Instrument Serif", serif;
	--font_jost:"Jost", sans-serif;
	--base_font_color: #000000;
	--base_black:#000000;
	--c_duration:0.4s;
	--c_hover_opa:0.6;
}

*{
	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: 16px;
	font-family: var(--base_font_family);
	/* -webkit-font-smoothing: antialiased; */
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
}

.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
}


@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;
}

main{
	padding-top: 104px;
}

.container{
	max-width: 1240px;
	padding:0 20px;
	margin:0 auto;
}

.c_page_title{
	font-family: var(--font_instrumen);
	font-weight: 400;
	font-size: 30px;
	letter-spacing: 0.04em;
	text-align: center;
}

#section_wrap{
	position: relative;
}


section{
	position: relative;
	background-color: #fff;
}

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

header{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	pointer-events: none;
	z-index: 1000;
}

header .header_inner{
	padding-inline: 20px;
}

header .header_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:20px;
}

header .header_logo{
	width:162px;
	aspect-ratio: 1 / calc(166 / 162);
	border-radius: 0 0 80px 80px;
	background-color: #fff;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 20px;
	pointer-events: auto;
	transition-duration: var(--c_duration);
}


header .header_logo h1,
header .header_logo p{
	width:calc(70 / 162 * 100%);
}

header .header_logo img{
	transition-duration: var(--c_duration);
}

@media (any-hover: hover) {
	header .header_logo:hover{
		box-shadow: none;
		aspect-ratio: 1 / calc(173 / 162);
		border-radius: 0;
	}

	header .header_logo:hover img{
		opacity: 0.5;
	}
}

header .header_right{
	padding-top: 26px;
}

header .header_nav{
	pointer-events: auto;
	border-radius: 9999px;
	background: transparent;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	background-color: rgba(255, 255, 255, 0.40);
	padding-inline: 72px;
}

header .header_parent_menu{
	display: flex;
	gap:55px;
}

header .header_parent_item{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 66px;
	padding:12px 0;
	position: relative;
}

header .header_parent_item::after{
	position: absolute;
	content:'';
	width:26px;
	height:1px;
	border-radius: 1px;
	left:0;
	right:0;
	margin-inline: auto;
	bottom:1px;
	transition-duration: 0.3s;
	transform: scaleX(0);
	background-color: #080808;
}

@media (any-hover: hover) {
	header .header_parent_item:has(.header_parent_link:hover)::after{
		transform: scaleX(1);
	}
}

header .header_parent_link{
	font-family: var(--font_instrumen);
	font-size: 19px;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-align: center;
	color: #080808;

}

@media screen and (max-width:1000px){

	header .header_logo{
		width:calc(162 / 1000 * 100vw);
	}
	

	header .header_nav {
		padding-inline: calc(72 / 1000 * 100vw);
	}

	header .header_parent_menu {
		display: flex;
		gap: calc(55 / 1000 * 100vw);
	}

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



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


footer{
	padding-top: 44px;
	padding-bottom: 72px;
	background-color: var(--base_black);
	color:#fff;
	position: relative;
	z-index: 2;
}

footer a{
	transition-duration: var(--c_duration);
}
@media (any-hover: hover) {
	footer a:hover{
		opacity: var(--c_hover_opa);
	}
}

footer .footer_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:32px;
}


footer .footer_left{
	display: flex;
	align-items: flex-start;
	gap:32px 56px;
	
}

footer .footer_left_block{
	display: flex;
	gap:56px;
}

footer .footer_logo_frame{
	flex-shrink: 0;
}

footer .footer_logo{
	display: block;
	width:62px;
}

footer .footer_info_area{
	display: flex;
	align-items: center;
}

footer .footer_name{
	font-family:var(--font_instrumen);
	font-size: 20px;
	letter-spacing: 0.05em;
	line-height: 1.3;
}

footer .footer_info{
	margin-top: 6px;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #d5d5d5;

}

footer .footer_nav{
	display: flex;
	align-items: flex-start;
	gap:56px;
	padding-top: 40px;
}

footer .footer_menu{
	padding-left: 16px;
	border-left:1px solid #1F1F1F;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:8px;
	font-family: var(--font_instrumen);
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #dbdbdb;
}

footer .footer_sns_list{
	display: flex;
	align-items: flex-start;
	gap:20px;
}

footer .footer_sns_item{
	width:48px;
}


footer .footer_sns_item a{
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .sns_insta{
	width: calc(24 / 48 * 100%);
}
footer .sns_youtube{
	width: calc(24 / 48 * 100%);
}
footer .sns_tiktok{
	width: calc(21 / 48 * 100%);
}
footer .sns_x{
	width: calc(22 / 48 * 100%);
}

footer .footer_copy{
	margin-top: 36px;
	font-family:var(--font_jost);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-align: right;
}


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

body.top_body.anime_lock{
	width: 100%;
	height: 100%;
	position: fixed;
}

/* body.top_body{
	width: 100%;
	position: fixed;
	animation-name: body_static;
	animation-delay: 5s;
	animation-duration: 0.1s;
	animation-fill-mode: forwards;
}

@keyframes body_static {
	0%{
		
	}
	100%{
		position: static;
	}
} */


body.top_body header .header_left,
body.top_body header .header_nav,
body.top_body header .drawer_open{
	opacity: 0;
	animation-name: header_show;
	animation-duration: 0.2s;
	animation-delay: 0.7s;
	animation-fill-mode: forwards;
}

/* body.top_body header{
	opacity: 0;
	animation-name: header_show;
	animation-duration: 0.2s;
	animation-delay: 0.5s;
	animation-fill-mode: forwards;
} */

@keyframes header_show {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}


body.top_body header.wait{
	
	opacity: 0;
}
body.top_body header.wait.show{
	transition-duration: 0.4s;
	transition-property: opacity;
	opacity: 1;
}

main.top_main{
	padding-top: 0;
}

.top_section{

}

.top_fv_section{
	background-color:var(--base_black);
	position: sticky;
	top:0;
	left:0;
	width:100%;
	z-index: -2;
}


.top_fv_section .fv_inner{
	height:100svh;
	min-height: 600px;
	position: relative;
}


.top_fv_section .fv_inner .fv_pic,
.top_fv_section .fv_inner video{
	display: block;
	width:100%;
	height:100%;
	object-fit: cover;
	position: absolute;
	top:0;
	left:0;
}

.top_fv_section .site_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:240px;
	opacity: 0;
	animation-name: site_logo_show;
	animation-duration: 3s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	/* margin-top: 40px; */
	filter: blur(20px);
}

@keyframes site_logo_show {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
		margin-top: 0;
		filter: blur(0);
	}
}

.top_philosophy_section{
	padding-top: 90px;
	padding-bottom: 72px;
}

.top_philosophy_section .philosophy_head{
	font-family:var(--font_instrumen);
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 0.04em;
	text-align: center;
}

.top_philosophy_section .philosophy_text{
	margin-top: 16px;
	font-weight: 500;
	font-size: 36px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
}

.top_portfolio_section{
	padding-top: 60px;
	padding-bottom: 78px;
	background-color: #242424;
	color:#fff;
}


.top_portfolio_section .sec_head{
	margin-top: 60px;
	font-family: var(--font_instrumen);
	font-weight: 400;
	font-size: 30px;
	letter-spacing: 0.04em;
	text-align: center;
	color: #fff;

}


.top_portfolio_section .main_slide_area{
	position: relative;
}

.top_portfolio_section .main_slide_frame{
	position: relative;
	aspect-ratio: 1 / calc(676 / 1200);
}

.top_portfolio_section .portfolio_cat_list{
	width: fit-content;
	position: absolute;
	top: 30px;
	left:0;
	right:0;
	margin-inline: auto;
	/* left: 50%;
	transform: translateX(-50%); */
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:24px 60px;
	font-family: var(--font_instrumen);
	font-size: 18px;
	letter-spacing: 0.04em;
	color: #fff;
	z-index: 20;
}

.top_portfolio_section .portfolio_cat_list li{
	cursor: pointer;
	position: relative;
	padding-bottom: 8px;
}
.top_portfolio_section .portfolio_cat_list li::after{
	content:'';
	width:12px;
	height:1px;
	border-radius: 1px;
	background-color: #fff;
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin-inline: auto;
	transform: scaleX(0);
	transition-duration: var(--c_duration);
	transition-property: transform;
}

.top_portfolio_section .portfolio_cat_list li.active{
	pointer-events: none;
}
.top_portfolio_section .portfolio_cat_list li.active::after{
	transform: scaleX(1);
}

@media (any-hover: hover) {
	.top_portfolio_section .portfolio_cat_list li:hover::after{
		transform: scaleX(1);
	}
}

.top_portfolio_section .portfolio_main_swiper{
	overflow: clip;
}

.top_portfolio_section .portfolio_slide{
	width:100%;
}

.top_portfolio_section .portfolio_card{
	aspect-ratio: 1 / calc(676 / 1200);
	position: relative;
}
.top_portfolio_section .portfolio_card video
{
	width:100%;
	height:100%;
	object-fit: cover;
	display: block;
	/* pointer-events: none; */
}

.top_portfolio_section .portfolio_card iframe{
	width:100%;
	height:100%;
	object-fit: cover;
	display: block;
}

.top_portfolio_section .video_play{
	cursor: pointer;
	width:144px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border:3px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-left: 5px;
	transition-duration: var(--c_duration);
	z-index: 2;
}
.top_portfolio_section .video_play::after{
	content:'';
	width:22px;
	aspect-ratio: 1 / calc(27 / 22);
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.top_portfolio_section .video_play.vanish{
	opacity: 0;
	pointer-events: none;
}


.top_portfolio_section .sub_slide_area{
	margin-top: 30px;

}

.top_portfolio_section .sub_slide_frame{
	position: relative;
	padding-inline: 56px;
}

.top_portfolio_section .portfolio_sub_swiper{
	overflow: clip;
}

.top_portfolio_section .sub_slide_nav{
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.top_portfolio_section .sub_slide_nav.swiper-button-disabled{
	opacity: 0;
	pointer-events: none;
}

.top_portfolio_section .sub_slide_nav::after{
	content:'';
	width:22px;
	aspect-ratio: 1 / calc(45 / 22);
}

.top_portfolio_section .sub_slide_nav.prev{
	left: 0;
}
.top_portfolio_section .sub_slide_nav.prev::after{
	background-image: url('../img/common/icon_slide_prev_white.svg');
}

.top_portfolio_section .sub_slide_nav.next{
	right: 0;
}
.top_portfolio_section .sub_slide_nav.next::after{
	background-image: url('../img/common/icon_slide_next_white.svg');
}

.top_portfolio_section .thumb_slide{
	width:242px;
	margin-right: 40px;
	cursor: pointer;
}

.top_portfolio_section .swiper-slide-thumb-active .portfolio_pic{
	border:4px solid #fff;
}

.top_portfolio_section .portfolio_pic{
	aspect-ratio: 1 / calc(303 / 242);
	border-radius: 14px;
	overflow: clip;
}

.top_portfolio_section .portfolio_pic img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.top_portfolio_section .portfolio_sub_info_area{
	margin-top: 10px;
	padding-inline: 12px;
	color:#fff;
}

.top_portfolio_section .portfolio_name{
	font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.top_portfolio_section .portfolio_info{
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.2;
	margin-top: 2px;
}

.top_portfolio_section .portfolio_button_frame{
	margin-top: 36px;
	display: flex;
	justify-content: center;
}

.top_portfolio_section .portfolio_button{
	width: 230px;
	min-height: 55px;
	transition-duration: var(--c_duration);
	border:1px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font_instrumen);
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
	border-radius: 9999px;
	padding-right: 20px;
}

.top_portfolio_section .portfolio_button span{
	position: relative;
}

.top_portfolio_section .portfolio_button span::after{
	content:'';
	width:22px;
	aspect-ratio: 1 / calc(5 / 22);
	background-image: url('../img/common/icon_arrow_right_white.svg');
	position: absolute;
	top: 50%;
	left: calc(100% + 20px);
	transform: translateY(-50%);
	transform-origin: left;
	transition-duration: var(--c_duration);
}

@media (any-hover: hover) {
	.top_portfolio_section .portfolio_button:hover{
		background-color: rgba(255,255,255,0.55);
		border-color: rgba(255,255,255,0.55);
	}

	.top_portfolio_section .portfolio_button:hover span::after{
		transform: translateY(-50%) scaleX(1.25);
	}
}

.top_project_section{
	padding-top: 88px;
	padding-bottom: 70px;
}

.top_project_section .sec_head{
	font-family:var(--font_instrumen);
	font-weight: 400;
	font-size: 30px;
	letter-spacing: 0.04em;
	text-align: center;
}

.top_project_section .project_list{
	display: flex;
	justify-content: center;
	gap:calc(50 / 1200 * 100%);
	margin-top: 50px;
}

.top_project_section .project_item{
	width:180px;
}

.top_project_section .project_border{
	width:1px;
	background: #E5E5E5;
}

.top_project_section .project_block{
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: 14px;
	overflow: clip;
	transition-duration: var(--c_duration);
}

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

.top_project_section .project_block img{
	width:100%;
	height:100%;
	object-fit: cover;
}

/*
------------------------------------
PORTFOLIO
------------------------------------
*/

.portfolio_list_section{
	padding-bottom: 96px;
}

.portfolio_list_section .port_cat_list{
	width: fit-content;
	margin-inline: auto;
	margin-top: 28px;
	font-family: var(--font_instrumen);
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 0.1em;
	color: #333;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:24px 40px;
}

.portfolio_list_section .port_cat_link{
	padding-bottom: 8px;
	position: relative;
}

.portfolio_list_section .port_cat_link::after{
	content:'';
	width:25px;
	height:1px;
	border-radius: 1px;
	background-color: #333333;
	position: absolute;
	bottom:0;
	left: 0;
    right: 0;
    margin-inline: auto;
	transition-duration: 0.3s;
    transform: scaleX(0);
}

.portfolio_list_section .port_cat_link.active{
	pointer-events: none;
}

.portfolio_list_section .port_cat_link.active::after{
	transform: scaleX(1);
}

@media (any-hover: hover) {
	.portfolio_list_section .port_cat_link:hover::after{
		transform: scaleX(1);
	}
}

.portfolio_list_section .port_list_area{
	margin-top: 50px;
}

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

.portfolio_list_section .port_list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:56px 44px;
}

.portfolio_list_section .port_list.show .port_item{
	display: block!important;
}

.portfolio_list_section .port_card{
	cursor: pointer;
}

.portfolio_list_section .port_pic{
	aspect-ratio: 1 / calc(334 / 267);
}

.portfolio_list_section .port_pic img{
	width:100%;
	height:100%;
	object-fit: cover;
	border-radius: 14px;
}

.portfolio_list_section .port_info_area{
	margin-top: 12px;
	padding-inline: 12px;
}

.portfolio_list_section .port_name{
	font-family: "Jost", "Zen Kaku Gothic New", sans-serif;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.portfolio_list_section .port_info{
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-top: 2px;
}

.portfolio_list_section .more_button_frame{
	margin-top: 80px;
	display: none;
}


.portfolio_list_section .more_button{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:12px;
	width:168px;
	min-height: 56px;
	border-radius: 9999px;
	padding:6px 24px;
	cursor: pointer;
	font-family: var(--font_instrumen);
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
	background-color: #000000;
	margin-inline: auto;
	
}

.portfolio_list_section .more_button span{
	padding-left: 10px;
}

.portfolio_list_section .more_button::after{
	content:'';
	width:12px;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	background-image: url('../img/common/icon_plus_white.svg');
}

.portfolio_list_section .port_item:nth-child(n+17){
	display: none;
}

.portfolio_list_section:has(.port_item:nth-child(n+17)) .more_button_frame{
	display: block;
}

.portfolio_list_section .port_pop{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100dvh;
	z-index: 9999;
	background-color: rgba(0,0,0,0.8);
	transition-duration: var(--c_duration);
	opacity: 0;
	pointer-events: none;
	overflow-y: auto;
}

.portfolio_list_section .port_pop.show{
	opacity: 1;
	pointer-events: auto;
}

.portfolio_list_section .port_pop_inner{
	min-height:100dvh;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70%;
	max-width: 1200px;
	margin-inline: auto;
	padding-top: 60px;
	padding-bottom: 60px;
}

.portfolio_list_section .port_pop_frame{
	position: relative;
	width: 100%;
}

.portfolio_list_section .port_pop_close{
	cursor: pointer;
	position: absolute;
	right:3px;
	bottom:calc(100% + 16px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.portfolio_list_section .port_pop_close::after{
	content:'';
	width:36px;
	aspect-ratio: 1 / 1;
	background-image: url('../img/common/icon_pop_close.svg');
}

.portfolio_list_section .port_video_area{
	min-height: 200px;
	position: relative;
}

.portfolio_list_section .port_video_area video{
	display: block;
	width:100%;
}

.portfolio_list_section .port_video_area iframe{
	display: block;
	width:100%;
	aspect-ratio: 1 / calc(9 / 16);
}

.portfolio_list_section .port_video_play{
	cursor: pointer;
	width:144px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border:3px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding-left: 5px;
	transition-duration: var(--c_duration);
	z-index: 2;
}
.portfolio_list_section .port_video_play::after{
	content:'';
	width:22px;
	aspect-ratio: 1 / calc(27 / 22);
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.portfolio_list_section .port_video_play.vanish{
	opacity: 0;
	pointer-events: none;
}


@media screen and (max-width:1000px){
	
	.portfolio_list_section .port_list{
		grid-template-columns: repeat(3, 1fr);
		gap:40px 32px;
	}

	.portfolio_list_section .port_item:nth-child(n+16){
		display: none;
	}

	.portfolio_list_section:has(.port_item:nth-child(n+16)) .more_button_frame{
		display: block;
	}


	.portfolio_list_section .port_pop_inner{
		width: 88%;
	}
}/*@media screen and (max-width:1000px){*/



/*
------------------------------------
ABOUT US
------------------------------------
*/

.about_prof_section{
	padding-bottom: 88px;
}


.about_prof_section .prof_flex{
	margin-top: 88px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:calc(64 / 1200 * 100%);
}


.about_prof_section .prof_left{
	flex-shrink: 0;
	width:calc(486 / 1200 * 100%);
}

.about_prof_section .prof_img img{
	border-radius: 14px;
}

.about_prof_section .prof_right{
	width:100%;
}

.about_prof_section .prof_head{
	font-family: var(--font_jost);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.about_prof_section .prof_name{
	font-family: var(--font_instrumen);
	font-weight: 400;
	font-size: 69px;
	letter-spacing: 0.04em;
	line-height: 1.3;
}

.about_prof_section .prof_text{
	margin-top: 5px;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	line-height: 2.1;
}

.about_work_section{
	padding-top: 88px;
	padding-bottom: 96px;
	background-color: #242424;
	color:#fff;
}

.about_work_section .work_block_list{
	margin-top: 36px;
	border-top:1px solid #434343;
}

.about_work_section .work_block{
	border-bottom:1px solid #434343;
}

.about_work_section .work_block_head{
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 1.5;
	color: #fff;
	position: relative;
	cursor: pointer;
	padding:28px 32px 28px 0;
}

.about_work_section .work_block_switch{
	width: 18px;
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right:4px;
	transform: translateY(-50%);
	
}

.about_work_section .work_block_switch::before,
.about_work_section .work_block_switch::after{
	content:'';
	width:100%;
	height:2px;
	border-radius: 2px;
	background-color: #fff;
}

.about_work_section .work_block_switch::after{
	margin-top: -2px;
	transform: rotateZ(90deg);
}


.about_work_section .work_block_head.active .work_block_switch::after{
	opacity: 0;
}

.about_work_section .work_block_contents{
	padding-bottom: 48px;
	display: none;
}	

.about_work_section .work_list_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.about_work_section .work_list{
	width:calc(581 / 1200 * 100%);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	line-height: 1.9;
}

.about_work_section .work_list p{
	font-weight: 700;
}

.about_work_section .work_list li{
	
	padding-left: 13px;
	position: relative;
}

.about_work_section .work_list li + p{
	margin-top: 12px;
}

.about_work_section .work_list li::before{
	font-family: var(--base_font_family);
	content:'・';
	color:#fff;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	line-height: 1.9;
	position: absolute;
	left:0;
	top:0;
}

.about_company_section{
	padding-top: 96px;
	padding-bottom: 150px;
}

.about_company_section .info_list{
	margin-top: 16px;
}

.about_company_section .info_line{
	padding-top: 24px;
	padding-bottom: 24px;
	display: flex;
	justify-content: space-between;
	gap:24px;
	border-bottom:1px solid #E0E0E0;
}

.about_company_section .info_title{
	min-height: 36px;
	flex-shrink: 0;
	width:133px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:8px;
	border-radius: 14px;
	background-color: #F0F0F0;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	line-height: 1.3;
}

.about_company_section .info_contents{
	width:100%;
	max-width: 1008px;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	line-height: 1.8;
	display: flex;
	align-items: center;
}

.about_company_section .info_contents ul li{
	padding-left: 13px;
	position: relative;
}
.about_company_section .info_contents ul li::before{
	content:'・';
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	position: absolute;
	left:0;
	top:0;
}

.about_company_section .info_remark{
	margin-top: 32px;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

/*
------------------------------------
CONTACT
------------------------------------
*/

.contact_form_section{
	padding-bottom: 96px;
}

.contact_form_section .form_area{
	max-width: 950px;
	margin-inline: auto;
	margin-top: 44px;
}

.contact_form_section .form_line + .form_line{
	margin-top: 32px;
}

.contact_form_section .form_line:has(.form_block:nth-child(2)){
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:28px;
}

.contact_form_section .text_input{
	display: block;
	width:100%;
	height:52px;
	border-radius: 9999px;
	background-color: #E3E3E3;
	color:var(--base_font_color);
	padding-inline: 24px;
	font-size: 14px;
	font-weight: 500;
	border: none;
}

.contact_form_section *::placeholder{
	color:var(--base_font_color);
}

.contact_form_section textarea{
	display: block;
	width:100%;
	height:320px;
	border-radius: 24px;
	background-color: #E3E3E3;
	color:var(--base_font_color);
	padding:16px 24px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	border: none;
}

.contact_form_section .submit_area{
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:24px;
}

.contact_form_section .submit_frame{
	position: relative;
	transition-duration: var(--c_duration);
}

.contact_form_section .submit_frame::after{
	content:'';
	width:22px;
	aspect-ratio: 1 / calc(6 / 22);
	background-image: url('../img/common/icon_arrow_right_white.svg');
	top:24px;
	left:calc(50% + 24px);
	position: absolute;
	transition-duration: var(--c_duration);
	transform-origin: left;
}

.contact_form_section .submit_button{
	width:172px;
	height:54px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	background-color: var(--base_black);
	color:#fff;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
	cursor: pointer;
	padding-right: 5px;
	transition-duration: var(--c_duration);
	border:none

}

.contact_form_section .submit_button.top_link{
	padding-right: 0;
}

@media (any-hover: hover) {
	.contact_form_section .submit_frame:hover{
		opacity: 0.7;
	}
	.contact_form_section .submit_frame:hover:after{
		transform: scaleX(1.25);
	}
}

.contact_form_section .complete_text01{
	font-size: 24px;
	text-align: center;
	font-weight: bold;
}

.contact_form_section .complete_text02{
	width: fit-content;
	margin-inline: auto;
	margin-top: 24px;
	line-height: 1.75;
}

.contact_form_section .recaptcha_text{
	text-align: center;
	margin-top: 24px;
	line-height: 1.5;
	font-size: 14px;

}

.contact_form_section .recaptcha_text a{
	border-bottom:1px solid;
}



/*
------------------------------------
PRIVACY POLICY
------------------------------------
*/

.privacy_section{
	padding-bottom: 108px;
}

.privacy_section .privacy_frame{
	max-width: 1000px;
	margin-inline: auto;
	margin-top: 36px;
}

.privacy_section .privacy_block{
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.03em;
	line-height: 1.75;
}

.privacy_section .privacy_block + .privacy_block{
	margin-top: 48px;
}

.privacy_section .privacy_block strong{
	font-weight: 700;
}

.privacy_section .privacy_head{
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 0.03em;
	line-height: 1.2;
}

.privacy_section .privacy_text{
	margin-top: 10px;
}

.privacy_section .privacy_block ul li{
	position: relative;
	padding-left: 12px;
}

.privacy_section .privacy_block ul li::before{
	content:'・';
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.03em;
	line-height: 1.75;
	position: absolute;
	left:0;
	top:0;
}

/*
------------------------------------
404
------------------------------------
*/

.page404_section{
	padding-top: 80px;
	padding-bottom:96px;
}

.page404_section .p01{
	font-size: 32px;
	text-align: center;
	font-family: var(--font_instrumen);
	letter-spacing: 0.1em;
}

.page404_section .p02{
	width: fit-content;
	line-height: 1.75;
	margin-inline: auto;
	margin-top: 32px;
}

.page404_section .top_button{
	margin-inline: auto;
	margin-top: 24px;
	width:172px;
	height:54px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	background-color: var(--base_black);
	color:#fff;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
}