/*
Theme Name: ＳＣ＆Ｃ株式会社 AYATORI
Author: InfinitePoints
Version: 1.0
*/

@charset "UTF-8";

/* Reset
------------------------------ */
*, *::before, *::after{
	box-sizing: border-box;
}

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

html{
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body{
	margin: 0;
	min-height: 100dvh;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	/* -webkit-font-smoothing: antialiased; */
}

section,
nav{
	display: block;
}

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

a{
	display: inline-block;
	text-decoration: none;
}

:where(li > a){
	color: var(--color-body);
	text-decoration: none;
}
:where(li:has(> a)){
	list-style: none;
}

:where(:any-link){
	text-underline-offset: 0.25em;
}

:where(a, button).btn{
	display: inline-block;
	text-decoration: none;
	line-height: 1;

	&.block{
		display: block;
		margin-inline: auto;
	}
}

:where( :any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button] ){
	cursor: pointer;
}

:where(button, [type='button'], [type='reset'], [type='submit']){
	touch-action: manipulation;
}

textarea{
	field-sizing: content;
}


/* common
------------------------------ */
:root{
	--leading-trim: calc((1em - 1lh) / 2);

	--color-body: #111;
	--color-body-secondary: #333;
	--color-accent: #F23524;
	--color-blue: #4687C6;
	--color-link: #1A73E8;

	--fz-39: 39px;
	--fz-31: 31px;
	--fz-25: 25px;
	--fz-20: 20px;
	--fz-16: 16px;
	--fz-13: 13px;
	--fz-10: 10px;

	--ff-noto-sans-jp: "Noto Sans JP", sans-serif;
	--ff-ibm-plex-sans-jp: "IBM Plex Sans JP", sans-serif;
	--ff-zen-kaku-gothic-new: "Zen Kaku Gothic New", sans-serif;
}

body{
	font-family: "Noto Sans JP", sans-serif;
	color: var(--color-body);
	font-size: var(--fz-16);
	font-weight: 400;
	line-height: 1.8;
}

h2{
	font-family: var(--ff-zen-kaku-gothic-new);
	font-size: var(--fz-31);
	font-weight: 700;
	line-height: 1.4;
}
h2 + .en{
	font-size: var(--fz-16);
}

.spOnly{ display: none; }
.pcOnly{ display: block; }
span.pcOnly{ display: inline-block; }

.bold{ font-weight: 500; }
.center{ text-align: center; }
.right{ text-align: right; }

.noto-sans-jp{ font-family: "Noto Sans JP", sans-serif; }
.ibm-plex-sans-jp, .en{ font-family: "IBM Plex Sans JP", sans-serif; color: var(--color-blue); font-weight: 500; }
.zen-kaku-gothic-new{ font-family: "Zen Kaku Gothic New", sans-serif; }

.wrap{
	max-width: 1232px;
	margin-inline: auto;
}

.grid{
	display: grid;
	grid-template-columns: repeat(2,auto);
}

.flex{
	display: flex;
	flex-flow: row nowrap;
}

.rounded{
	padding: 120px 160px;
	background: rgba(255, 255, 255, 0.6);
	outline: 1px solid #FFFFFF;
	border-radius: 80px;
	box-shadow: 0px 0px 40px rgba(25, 124, 237, 0.1);
	backdrop-filter: blur(5px);
	overflow: hidden;
}

.btn{
	min-width: 280px;
	padding: 20px 30px;
	border: 0;
	border-radius: 50px;
	background-color: #A9D30F;
	color: #fff;
	font-size: var(--fz-20);
	font-weight: 500;
	line-height: 1.2;
	user-select: none;
	position: relative;
}
.btn:after{
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background: url('./images/ico_btn_arrow.svg') no-repeat center;
	position: absolute;
	top: 50%;
	right: 10px;
	transition: right 0.3s;
	transform: translateY(-50%);
}
.btn:hover:after{
	right: 5px;
}

input:where(:not([type=radio]):not([type=checkbox])),
select,
textarea{
	padding: 12px;
	border: 1px solid #DEDEDE;
	border-radius: 6px;
	background: #F9F9F9;
	font-size: 16px;
}
input[type="text"]{
	width: min(400px, 100%);
}
input[type="radio"],
input[type="checkbox"]{
	transform: scale(1.5);
	transform-origin: right center;
	border: 1px solid #DEDEDE;
}
textarea{
	width: 100%;
	min-height: 200px;
}

.fade-in {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
	animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp{
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* header
------------------------------ */
#header{
	padding: 30px 40px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	transition: all 0.3s;
}

#header > .grid{
	grid-template-columns: 1fr auto;
	align-items: center;
}

a.logo{
	display: inline-block;
	vertical-align: middle;
	transition: all 0.3s;
}
a.logo img{
	display: block;
	aspect-ratio: 121/46;
	width: 121px;
}

.nav{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 51px;
	font-size: var(--fz-13);
	line-height: 1.2;
}
.nav .btn_contact{
	padding: 10px 30px;
	border-radius: 50px;
	outline: 1px solid #595757;
	user-select: none;
}
.nav a{
	line-height: 1;
	vertical-align: middle;
}
.nav a{
	position: relative;
}
.nav a:not(.btn_contact):after{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--color-body);
	transform: translateY(4px);
	scale: 0 1;
	transform-origin: left bottom;
	transition: 0.3s scale;
}
.nav a:not(.btn_contact):hover:after{
	scale: 1 1;
}

#header .nav a.btn_contact{
	transition: 0.5s background, 0.5s color;
}
#header .nav a.btn_contact:hover{
	color: #fff;
	background-color: #A9D30F;
	outline-color: #A9D30F;
}

#btn_sp{
	display: none;
}

#header.scrolled{
	padding-block: 10px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(5px);
}
#header.scrolled a.logo{
	width: 80px;
}


/* fv
------------------------------ */
#fv{
	display: grid;
	grid-template: 1fr / 1fr;
	align-items: center;
	justify-content: start;
	width: 100%;
	height: 100vh;
	padding: 80px 104px;
	position: relative;
}
#fv:after{
	content: '';
	display: block;
	width: 100%;
	height: 80px;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	position: absolute;
	left: 0;
	bottom: 0;
}

#fv .grid{
	display: flex;
	flex-flow: column nowrap;
	gap: 40px;
}

#fv .ibm-plex-sans-jp{
	margin-bottom: -10px;
	font-size: 19px;
	line-height: 1;
}
#fv .fz-fv{
	margin-block: calc((1em - 1lh) / 2) calc((1em - 1lh) / 2 - 5px);
	font-size: 52px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.08em;
}

.scrollTrigger{
	--ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}
.scrollTrigger .splitText{
	overflow: hidden;
}
.scrollTrigger .splitText .char{
	display: inline-block;
	opacity: 0;
	transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1) calc(0.05s * var(--index));
}
.scrollTrigger.isActive .splitText .char{
	opacity: 1;
}


.scrollTrigger .slide_up{
	overflow: hidden;
}
.scrollTrigger .slide_up_text{
	display: block;
	transform: translateY(100%);
	opacity: 0;
	transition: 1.5s transform ease-out, 1.5s opacity ease-out;
}
.scrollTrigger.isActive .slide_up_text{
	transform: translateY(0);
	opacity: 1;
}


#fv #ico_scroll{
	display: block;
	width: 132px;
	font-family: "IBM Plex Sans JP", sans-serif;
	color: var(--color-blue);
	font-size: 12px;
	line-height: 48px;
	position: absolute;
	bottom: 0;
	right: 0;
	transform-origin: bottom right;
	transform: rotate(90deg) translate(-40px, calc(100% + 40px));
	user-select: none;
}
#fv #ico_scroll:before{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--color-blue);
	position: absolute;
	top: 0;
	left: 0;
	animation: scroll 2s infinite;
}
/* 線のアニメーション */
@keyframes scroll {
	0% {
		transform: scale(0, 1);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	51% {
		transform: scale(1, 1);
		transform-origin: 100% 0;
	}
	100% {
		transform: scale(0, 1);
		transform-origin: 100% 0;
	}
}

#fv_bg_video{
	z-index: -1;
	position: absolute;
	inset: 0;
	overflow: hidden;
}
#fv_bg_video video{
	display: block;
	margin: 0 0 0 auto;
	min-width: 100%;
	min-height: 100%;
}


/* intro
------------------------------ */
#intro{
	display: grid;
	align-content: center;
	background: url('./images/bg_intro.png') no-repeat center top / cover;
	position: relative;
	min-height: calc( 100vw * (1120/1440) );
	overflow: hidden;
}
#intro:before{
	content: '';
	display: block;
	width: 214px;
	height: 304px;
	background: url('./images/bg_intro_01.png') no-repeat center / cover;
	position: absolute;
	top: 82px;
	right: 0;
}
#intro:after{
	content: '';
	display: block;
	width: 256px;
	height: 436px;
	background: url('./images/bg_intro_02.png') no-repeat center / cover;
	position: absolute;
	bottom: -170px;
	left: 0;
}

#intro .wrap{
	display: grid;
	grid-template: 1fr / 1fr;
	align-items: center;
	justify-items: center;
	max-width: unset;
	height: 100%;
	position: relative;
}

#intro > .txt_bg{
	content: '';
	display: block;
	height: auto;
	position: absolute;
}
#intro > .txt_bg[data-text="solution"]{
	background: url('./images/txt_solution.svg') no-repeat center / cover;
	aspect-ratio: 357 / 83;
	width: 25.56%;
	top: 19%;
	left: 11.5%;
	left: 38.6%;
}
#intro > .txt_bg[data-text="ayatori"]{
	background: url('./images/txt_ayatori.svg') no-repeat center / cover;
	aspect-ratio: 412/105;
	width: 28.61%;
	top: 24%;
	right: 30.4%;
	right: 44.1%;
}
#intro > .txt_bg[data-text="consulting"]{
	background: url('./images/txt_consulting.svg') no-repeat center / cover;
	aspect-ratio: 273/45;
	width: 18.96%;
	bottom: 22.6%;
	left: 5.4%;
	left: 12.2%;
}
#intro > .txt_bg[data-text="contract"]{
	background: url('./images/txt_contract.svg') no-repeat center / cover;
	aspect-ratio: 746 / 103;
	width: 51.8%;
	bottom: 16%;
	right: -9%;
	right: 32%;
}

#intro .grid{
	display: inline-grid;
	align-items: center;
	gap: calc(100vw * (120/1440));
	padding-block: 138px;
	padding-inline: 20px 60px;
}
#intro .grid .cell:last-child{
	z-index: 10;
}

#intro img{
	max-width: 400px;
	width: 100%;
}
#intro h2{
	margin-bottom: 40px;
}
#intro p + p{
	margin-top: 20px;
}


/* about
------------------------------ */
#about{
	margin-top: -270px;
	padding-block: 200px;
	background: url('./images/bg_about.png') no-repeat center / cover;
	position: relative;
	z-index: 10;
}

#about .rounded{
	padding: 0;
}
#about .rounded .inner{
	padding: 120px 160px 0;
}

#about .inner hgroup{
	padding-bottom: 60px;
	text-align: center;
}

#about .catchy{
	margin-bottom: 33px;
	font-family: var(--ff-zen-kaku-gothic-new);
	font-size: var(--fz-20);
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
}
#about .contents{
	text-align: center;
}
#about .contents p + p{
	margin-top: 1lh;
}
#about .contents .btn{
	min-width: 420px;
}

#about .point{
	gap: 76px;
	align-items: center;
	margin-top: 120px;
}
#about .point:where(:nth-child(odd)){
	flex-direction: row-reverse;
}
#about .point .cell:first-child{
	width: 400px;
}
#about .point .cell:last-child{
	width: 436px;
	text-align: justify;
}

#about .point img{
	display: block;
	max-width: unset;
	width: 100%;
}
#about .point .badge{
	display: inline-block;
	margin-bottom: 12px;
	border: 1px solid var(--color-blue);
	border-radius: 50px;
	padding: 5px 12px 4px;
	color: var(--color-blue);
	font-family: var(--ff-ibm-plex-sans-jp);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}
#about .point .title{
	margin-bottom: 12px;
	font-family: var(--ff-zen-kaku-gothic-new);
	font-size: var(--fz-20);
	font-weight: 500;
}

#about .consultation{
	margin-top: 120px;
	padding-block: 80px;
	background: url('./images/bg_consultation.png') no-repeat center / cover;
	color: #fff;
}

#about .consultation hgroup{
	margin-bottom: 20px;
	text-align: center;
}
#about .consultation h2{
	margin-bottom: 20px;
}


/* message
------------------------------ */
#message{
	padding-block: 120px;
	background: #F7FAFC;
}
#message > .wrap{
	max-width: 1024px;
}

#message hgroup{
	margin-bottom: 40px;
}

#message .flex{
	flex-direction: row-reverse;
	justify-content: space-between;
}
#message .flex .cell:first-child{
	width: 504px;
	position: relative;
}
#message .flex .cell:last-child{
	width: 482px;
}

#message .flex .cell:first-child img{
	margin-top: -200px;
}
#message .catchy{
	display: inline-flex;
	flex-flow: row-reverse nowrap;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 20px;
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
	user-select: none;
}
#message .catchy > div{
	padding: 9px;
	background: #fff;
	font-family: var(--ff-zen-kaku-gothic-new);
	font-size: 41px;
	font-weight: 500;
	line-height: 1;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

#message .contents p + p{
	margin-top: 1lh;
}


/* overview
------------------------------ */
#overview{
	padding-block: 120px;
}

#overview hgroup{
	margin-bottom: 60px;
	text-align: center;
}

#overview .contents{
	max-width: 834px;
	margin-inline: auto;
	padding-inline: 80px;
}

#overview dl{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-around;
	gap: 15px;
}
#overview dl > div{
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 15px;
}
#overview dl dt{
	width: 4em;
}


/* contact
------------------------------ */
#contact{
	padding-block: 160px;
	background: url('./images/bg_contact.png') no-repeat center bottom / 100% auto;
	/* background-attachment: fixed; */
	text-align: center;
}

#contact hgroup{
	margin-bottom: 40px;
}

#contact h2{
	margin-bottom: 32px;
	font-size: var(--fz-39);
	font-weight: 500;
}


/* footer
------------------------------ */
#footer{
	padding: 80px 40px 40px;
}
#footer .grid{
	grid-template-columns: 1fr auto;
	align-items: center;
}

#footer .nav{
	gap: 40px;
}

.copyright{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #DEDEDE;
	font-size: var(--fz-13);
}


@media (max-width: 900px) {

	/* common
	------------------------------ */
	:root{
		--fz-39: 34px;
		--fz-31: 27px;
		--fz-25: 22px;
		--fz-20: 18px;
		--fz-16: 14px;
		--fz-13: 11px;
		--fz-10: 10px;
	}

	html{
		scroll-padding-top: 84px;
	}

	.pcOnly{ display: none; }
	.spOnly{ display: block; }
	span.spOnly{ display: inline-block; }

	.wrap{
		max-width: 600px !important;
	}

	.rounded{
		border-radius: 40px;
		padding: 40px 28px;
	}


	/* header
	------------------------------ */
	#header{
		padding: 12px 16px;
	}
	#header nav{
		display: block;
		width: 320px;
		background: rgba(255, 255, 255, 0.6);
		outline: 1px solid #FFFFFF;
		border-radius: 40px;
		box-shadow: 0px 0px 40px rgba(25, 124, 237, 0.1);
		backdrop-filter: blur(5px);
		overflow: hidden;
		position: absolute;
		top: 56px;
		left: calc((100vw - 320px) / 2);
		right: calc((100vw - 320px) / 2);
		transform: translateY( calc(-100% - 56px) );
		opacity: 0;
		transition: transform 0.3s, opacity 0.6s;
	}
	#header.open nav{
		background: #fff;
		transform: none;
		opacity: 1;
	}
	#header nav .nav{
		flex-direction: column;
		padding: 28px;
		gap: 20px;
	}
	#header nav .btn_contact{
		outline: none;
		background: #4686C7;
		color: #fff;
	}

	#btn_sp{
		display: grid;
		align-items: center;
		width: 18px;
		height: 18px;
		position: relative;
	}
	#btn_sp .btn_sp_line{
		display: block;
		width: 100%;
		height: 2px;
		background: #333;
	}
	#btn_sp:before,
	#btn_sp:after{
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background: #333;
		position: absolute;
		left: 0;
		transition: transform 0.3s;
	}
	#btn_sp:before{
		top: 0;
	}
	#btn_sp:after{
		bottom: 0;
	}
	#header.open #btn_sp{
		height: 18px;
	}
	#header.open #btn_sp .btn_sp_line{
		display: none;
	}
	#header.open #btn_sp:before{
		transform: translateY(8px) rotate(45deg);
	}
	#header.open #btn_sp:after{
		transform: translateY(-8px) rotate(-45deg);
	}

	/* fv
	------------------------------ */
	#fv{
		padding-inline: 28px;
	}

	#fv .grid{
		gap: 20px;
	}
	#fv .ibm-plex-sans-jp{
		font-size: 18px;
	}
	#fv .fz-fv{
		font-size: 32px;
	}

	#fv #ico_scroll{
		transform: rotate(90deg) translate(30px, calc(100% + 20px));
	}


	/* intro
	------------------------------ */
	#intro{
		padding-block: 43px;
	}
	#intro:before,
	#intro:after{
		display: none;
	}

	#intro img{
		max-width: unset;
	}

	#intro > .txt_bg[data-text="solution"]{
		background: url('./images/txt_solution.svg') no-repeat center / cover;
		width: 53.1%;
		top: 8%;
		left: 95.6%;
	}
	#intro > .txt_bg[data-text="ayatori"]{
		background: url('./images/txt_ayatori.svg') no-repeat center / cover;
		width: 59.5%;
		top: 32.2%;
		right: 46.4%;
	}
	#intro > .txt_bg[data-text="consulting"]{
		background: url('./images/txt_consulting.svg') no-repeat center / cover;
		width: 40%;
		bottom: 16.6%;
		left: 24.2%;
	}
	#intro > .txt_bg[data-text="contract"]{
		background: url('./images/txt_contract.svg') no-repeat center / cover;
		width: 85.9%;
		bottom: 4%;
		right: 99%;
	}

	#intro .grid{
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0;
		padding-top: 37px;
		padding-inline: 28px;
	}

	/* about
	------------------------------ */
	#about{
		margin-top: 0;
		padding: 40px 16px;
		background: url(./images/bg_about-sp.png) no-repeat top 334px right / contain;
	}
	#about .inner hgroup{
		padding-bottom: 40px;
	}

	#about .catchy{
		margin-bottom: 20px;
		text-align: left;
	}
	#about .contents{
		text-align: left;
	}
	#about .contents p + p{
		margin-top: 10px;
	}
	#about .contents .btn{
		min-width: unset;
	}

	#about .rounded .inner{
		padding: 80px 28px 0;
	}

	#about .point{
		flex-direction: column;
		gap: 20px;
		margin-top: 40px;
	}
	#about .point .cell:first-child{
		width: auto;
	}
	#about .point .cell:last-child{
		width: auto;
	}

	#about .point .title{
		font-size: 16px;
		font-weight: 600;
	}

	#about .consultation{
		margin-top: 72px;
		padding-block: 40px;
	}
	#about .consultation h2{
		font-size: 20px;
	}
	#about .consultation .center{
		text-align: center;
	}

	/* message
	------------------------------ */
	#message{
		padding: 40px 28px;
	}
	#message hgroup{
		margin-bottom: 20px;
	}

	#message .flex{
		flex-direction: column;
		gap: 20px;
	}
	#message .flex .cell:first-child{
		width: auto;
	}
	#message .flex .cell:last-child{
		width: auto;
	}

	#message .flex .cell:first-child img{
		margin-top: 0;
		margin-bottom: 90px;
	}
	#message .catchy{
		gap: 9px;
		top: 112px;
		right: 36px;
		transform: none;
	}
	#message .catchy > div{
		font-size: 18px;
	}

	/* overview
	------------------------------ */
	#overview{
		padding: 40px 25px;
	}
	#overview .contents{
		padding-inline: 0;
	}

	/* contact
	------------------------------ */
	#contact{
		padding: 0;
		background: url('./images/bg_contact-sp.png') no-repeat center top / 160% auto;
	}
	#contact > .wrap{
		padding: 40px 16px;
	}
	#contact hgroup{
		margin-bottom: 20px;
	}
	#contact h2{
		margin-bottom: 20px;
		font-size: 24px;
	}

	/* footer
	------------------------------ */
	#footer{
		padding: 20px 16px 20px;
	}
	#footer .grid{
		grid-template-columns: 1fr;
		gap: 20px;
	}
	#footer .nav{
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}


} /* @media (sp)*/


/* page - common
------------------------------ */
body.page:not(.home){
	background: url('./images/bg_main.png') no-repeat center top / contain;
	min-height: 100vh;
}

#page{
	padding-inline: 16px;
	padding-bottom: 120px;
}
#page > .wrap > hgroup{
	display: block;
	padding: 80px 153px;
}
#page > .wrap > hgroup div{
	color: var(--color-blue);
	font-family: var(--ff-ibm-plex-sans-jp);
	font-size: 80px;
	font-weight: 500;
	line-height: 1.2;
}
#page > .wrap > hgroup h2{
	font-size: var(--fz-20);
	line-height: 1.4;
	letter-spacing: 0.08em;
}

#page .contents a{
	color: var(--color-link);
}

/* page - contact
------------------------------ */
#page.contact{
	padding-bottom: 0;
}
#page .form_row{
	padding-bottom: 40px;
	border-bottom: 1px solid #B9DDE9;
}
#page .form_row + .form_row{
	margin-top: 38px;
}
#page .input_label{
	font-family: var(--ff-zen-kaku-gothic-new);
	font-size: var(--fz-16);
	font-weight: 500;
	line-height: 1.4;
}
#page .input_field{
	padding-top: 20px;
	font-size: var(--fz-16);
	line-height: 1.8;
}
#page .required{
	display: inline-block;
	margin-left: 8px;
	padding: 2px 4px;
	background: var(--color-accent);
	color: #fff;
	font-size: 11px;
	line-height: 1.2;
}
#page .input_field .wpcf7-list-item{
	margin-left: 40;
}
#page .input_field .wpcf7-list-item:first-child{
	margin-left: 0;
}

#page .form_footer{
	padding-block: 80px 40px;
}
#page .form_footer div:has(input[type="checkbox"]){
	margin-bottom: 40px;
}
#page .wpcf7-spinner{
	display: block;
}
#page form.submitting .wpcf7-spinner{
	margin: 20px auto;
}
#page .form_footer input[type="submit"]:disabled{
	background: #c6c6c6;
}


/* page - privacy-policy
------------------------------ */
#page.privacy-policy .contents h2{
	margin-top: 60px;
	margin-bottom: 20px;
	font-family: var(--ff-zen-kaku-gothic-new);
	font-size: var(--fz-16);
	font-weight: 500;
	line-height: 1.4;
}

#page.privacy-policy .contents ol,
#page.privacy-policy .contents ul{
	margin-left: 1.2em;
}

#page.privacy-policy .contents p + :where(ol, ul){
	margin-top: 20px;
}


/* page - security-policy
------------------------------ */
#page.security-policy .contents h2{
	margin-top: 60px;
	margin-bottom: 20px;
	font-family: var(--ff-zen-kaku-gothic-new);
	font-size: var(--fz-16);
	font-weight: 500;
	line-height: 1.4;
}
#page.security-policy .contents h2:nth-of-type(1){
	margin-top: 0;
}

#page.security-policy .contents ol,
#page.security-policy .contents ul{
	margin-left: 1.2em;
}

#page.security-policy .contents p + :where(ol, ul){
	margin-top: 20px;
}

@media (max-width: 900px) {
	#page{
		padding-bottom: 40px;
	}
	#page.contact{
		padding-bottom: 40px;
	}
	#page > .wrap > hgroup{
		padding: 40px 12px;
	}
	#page > .wrap > hgroup div{
		font-size: 32px;
	}
	#page > .wrap > hgroup h2{
		font-size: 14px;
	}

	#page .input_field .wpcf7-list-item{
		display: block;
		margin-left: 0;
		margin-top: 10px;
	}
	#page .input_field .wpcf7-list-item:first-child{
		margin-top: 0;
	}
	#page .form_footer{
		padding-block: 20px 0;
	}
} /* @media (sp)*/