@charset "utf-8";

/*
Theme Name: RAID
Description: Theme of RAID Website
Author: Nobuyuki Suzuki
Version: 1.0.0
*/


/* RESET */
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;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

*:focus {outline:0;}

/* padding,border内側設定 */
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}

/* HTML5 */
article, aside, figure, figcaption, footer, header, nav, section{display: block;}

/*------------------------------------------------------------
	BASE
------------------------------------------------------------*/


:root {
	--base-pink: #fdefef;
	--base-brown: #d2cbc8;
	--color-brown: #624c3f;
	--color-brown-hover: #45372c;
	--color-pink: #f4aaab;
	--color-pink-hover: #ed787a;
	--color-grey: #8f8f8f;
	--color-grey-hover: #646464;
	--black: #000;
	--white: #fff;
	--line: #06c755;
	--line-hover: #008034;
	--ja: 'Noto Sans JP', sans-serif;
	--en: 'Inter', sans-serif;
	--headerHeight: 90px;
	--px: 30px;
	--py: 100px;
	--cw: 1000px;
}

@media screen and (max-width: 800px) {
	:root {
		--headerHeight: 50px;
		--py: 60px;
		--px: 20px;
	}
}



html,body {margin:0px;padding:0px;height:100%;width:100%;-webkit-text-size-adjust:none;}

a:link {color:inherit;text-decoration:none;}
a:hover {color:inherit;text-decoration:none;}
a:active {color:inherit;text-decoration:none;}
a:visited {color:inherit;text-decoration:none;}

.clear {clear:both;}
.alignleft {width: 50%; float: left; margin: 0 3.125% 3.125% 0;}
.alignright {width: 50%; float: right; margin: 0 0 3.125% 3.125%;}
.aligncenter {clear: both; display: block; margin: 0 auto 3.125%;}

/* clearfix */
.clearfix:after {visibility:hidden;display:block;font-size:0;content:"";clear:both;height:0;}
/* clearfix for ie7 */
.clearfix {display:inline-block;}
.clearfix {display:block;}

img {max-width: 100%;height: auto;vertical-align: bottom;}
iframe {
	max-width: 100%;
	vertical-align: bottom;
}



body {
	font-family: var(--ja);
	font-size: 14px;
	letter-spacing: .05em;
	font-weight: 400;
	background-color: var(--bg1);
	color: var(--black);
	line-height: 2;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.main-btn {
	padding: 100px 0 0;
}




.inview {
	opacity: 0;
	transition: opacity 1s .25s;
}
.inview.visible {
	opacity: 1;
}

.pcb {display: block;}
.spb {display: none;}
.pcib {display: inline-block;}
.spib {display: none;}
.pcf {display: flex;}
.spf {display: none;}
.pcg {display: grid;}
.spg {display: none;}

.age-gate .age-gate-heading-title,
.age-gate .age-gate__heading-title {
	display: none;
}
.age-gate .age-gate-headline,
.age-gate .age-gate__headline {
	font-size: 26px;
	font-weight: 400;
	font-family: var(--ja);
}
.age-gate .age-gate-subheadline,
.age-gate .age-gate__subheadline {
	font-size: 20px;
	font-weight: 700;
	font-family: var(--ja);
	margin-bottom: 36px;
}
.age-gate .age-gate__buttons {
	gap: 30px;
}
.age-gate button.age-gate__submit--yes {
	background: var(--color-pink);
	border-radius: 5px;
	font-size: 20px;
	font-weight: 700;
	width: 200px;
	padding: 20px 0;
	box-shadow: 0px 12px 24px rgba(244, 170, 171, 0.5);
	transition: 0.3s;
}
.age-gate button.age-gate__submit--yes:hover {
	background: var(--color-pink-hover);
}
.age-gate button.age-gate__submit--no {
	background: var(--color-grey);
	border-radius: 5px;
	font-size: 20px;
	font-weight: 500;
	width: 200px;
	padding: 20px 0;
	box-shadow: 0px 12px 24px rgba(143, 143, 143, 0.5);
	transition: 0.3s;
}
.age-gate button.age-gate__submit--no:hover {
	background: var(--color-grey-hover);
}
.age-gate .age-gate__additional-information p:last-of-type {
	font-family: var(--ja);
	font-weight: 500;
	white-space: pre;
	margin-top: 1em;
}
@media screen and (max-width: 800px) {
	body {
	}
	.pcb {display: none;}
	.spb {display: block;}
	.pcib {display: none;}
	.spib {display: inline-block;}
	.pcf {display: none;}
	.spf {display: flex;}
	.pcg {display: none;}
	.spg {display: grid;}
	

}


/*------------------------------------------------------------
	MENU
------------------------------------------------------------*/
#header {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	height: var(--headerHeight);
	background: var(--bg1);
	z-index: 100;
}
#header .logo {
	position: fixed;
	top: 0;
	left: 0;
	background: var(--color-pink);
	width: 260px;
	height: 140px;
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
	line-height: 1;
	transition: 0.75s;
	transition-timing-function: cubic-bezier(.2,1,.2,1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.25);
}
.moved #header .logo {
	width: 200px;
	height: 90px;
	padding-bottom: 10px;
}
#header .logo::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: '';
	transform: scaleX(0);
	transform-origin: right top;
	transition: 0.3s ease transform;
	background: rgba(255,255,255,0.25);
}
#header .logo:hover::after {
	transform-origin: left top;
	transform: scaleX(1);
}
#header .logo img {
	height: auto;
	width: 160px;
	position: relative;
	z-index: 1;
	transition: 0.75s;
	transition-timing-function: cubic-bezier(.2,1,.2,1);
}
.moved #header .logo img {
	width: 130px;
}
.pc-nav {
	position: absolute;
	top: 0;
	right: var(--headerHeight);
	margin-right: 30px;
	height: var(--headerHeight);
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 12px;
	font-weight: 500;
}

.btn-fix {
	position: fixed;
	top: 50%;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transform: translate(0,-50%);
	z-index: 100;
}
.btn-fix a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	writing-mode: vertical-rl;
	transition: 0.3s;
	background: var(--color-pink);
	color: #fff;
	z-index: 2;
	font-weight: 700;
	font-size: 18px;
	padding: 20px 0;
	width: 50px;
	border-radius: 5px 0 0 5px;
}
.btn-fix a:hover {
	background: var(--color-pink-hover);
}
.btn-fix a.line {
	background: var(--line);
}
.btn-fix a.line i {
	color: var(--line);
	background: var(--white);
	font-size: 140%;
}
.btn-fix a.line i:before {
	display: block;
	transform: scale(1.3);
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}
.opened .overlay {
	visibility: visible;
	opacity: 0.3;
}
.menu {
	position: fixed;
	display: flex;
	top: 0;
	right: 0;
	width: min(80vw,440px);
	height: 100%;
	background: #fff;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	padding: 100px 60px;
	transform: translate(100%,0);
	transition: .5s;
}
.opened .menu {
	transform: translate(0,0);
	visibility: visible;
	opacity: 1;
}

.menu .menu-wrap {
	width: 100%;
}
.menu .btn {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 50px;
	padding-bottom: 50px;
	position: relative;
}
.menu .btn a {
	max-width: 240px;
	width: 100%;
	color: var(--white);
	font-weight: 700;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-radius: 5px;
	background: var(--color-pink);
}
.menu .btn a.line {
	background: var(--line);
}
.menu .btn::after {
	content: '';
	display: block;
	width: 100px;
	height: 1px;
	background: var(--color-pink);
	position: absolute;
	bottom: 0;
	left: 0;
}
.menu ul {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
.menu ul a {
	position: relative;
	padding-left: 1.5em;
}
.menu ul a::before {
	content: '';
	display: block;
	height: 2px;
	width: 10px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: var(--color-pink);
}


@media screen and (max-width: 800px) {
	#header .logo {
		width: 160px;
		height: 70px;
		padding-bottom: 6px;
	}
	#header .logo img {
		width: 106px;
	}
	.moved #header .logo {
		height: var(--headerHeight);
		width: 96px;
		padding-bottom: 3px;
	}
	.moved #header .logo img {
		width: 70px;
	}
	.pc-nav {
		display: none;
	}
	.btn-fix {
		top: auto;
		right: auto;
		bottom: 0;
		left: 0;
		flex-direction: row;
		gap: 0;
		transform: none;
		width: 100%;
	}
	.btn-fix a {
		top: auto;
		right: 0;
		bottom: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		writing-mode: horizontal-tb;
		font-size: 16px;
		padding: 0 30px;
		width: 100%;
		height: 50px;
		border-radius: 0;
		transform: translate(0,0);
	}
	.menu {
		padding: 80px var(--px);
	}
	.menu .btn a {
		max-width: 100%;
		height: 50px;
	}
}

/*------------------------------------------------------------
	MENU - BUTTON
------------------------------------------------------------*/

.menu-close {
	width: var(--headerHeight);
	height:  var(--headerHeight);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 102;
	opacity: 0;
	display: none;
	background-color: transparent;
	cursor: pointer;
}
.menu-close::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: '';
	transform: scaleX(0);
	transform-origin: right top;
	transition: 0.3s ease transform;
	background: rgba(255,255,255,0.25);
}
.menu-close:hover::after {
	transform-origin: left top;
	transform: scaleX(1);
}

.opened .menu-close {
	display: block;
	opacity: 1;
}

.menu-trigger {
	width:  var(--headerHeight);
	height:  var(--headerHeight);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 101;
	cursor: pointer;
	display: block;
	background: var(--color-brown);
}
.menu-trigger::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: '';
	transform: scaleX(0);
	transform-origin: right top;
	transition: 0.3s ease transform;
	background: rgba(255,255,255,0.25);
}
.menu-trigger:hover::after {
	transform-origin: left top;
	transform: scaleX(1);
}
.menu-trigger p {
	position: absolute;
	bottom: 40px;
	left: 0;
	text-align: center;
	width: 100%;
}
.menu-trigger p em {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	color: var(--white);
	font-family: var(--en);
	font-weight: 500;
	font-size: 10px;
	width: 100%;
	opacity: 1;
	transition: 0.5s;
}
.menu-trigger p em.t-close {
	opacity: 0;
}
.opened .menu-trigger p em.t-close {
	opacity: 1;
}
.opened .menu-trigger p em.t-menu {
	opacity: 0;
}


.menu-trigger span {
	display: block;
	position: absolute;
	left: 50%;
	top: 36px;
	width: 30px;
	height: 1px;
	opacity: 1;
	margin-left: -15px;
	background-color: var(--white);
}

.menu-trigger span:nth-of-type(1),
.menu-trigger span:nth-of-type(3) {
	transition: margin-top .2s ease .4s, transform .4s ease 0s;
}
.menu-trigger span:nth-of-type(1) {
	margin-top: -7px;
}
.menu-trigger span:nth-of-type(2) {
	transition: opacity .4s ease 0s;
}
.menu-trigger span:nth-of-type(3) {
	margin-top: 7px;
}
.opened .menu-trigger span:nth-of-type(1),
.opened .menu-trigger span:nth-of-type(3) {
	transition: margin-top .2s ease 0s, transform .2s ease .3s;
}
.opened .menu-trigger span:nth-of-type(1) {
	margin-top: 0;
	transform: rotate(-45deg);
}
.opened .menu-trigger span:nth-of-type(2) {
	opacity: 0;
}
.opened .menu-trigger span:nth-of-type(3) {
	margin-top: 0;
	transform: rotate(45deg);
}


@media screen and (max-width: 800px) {
	.menu-trigger p em {
		display: none;
	}
	.menu-trigger span {
		top: 24px;
	}
}

/*------------------------------------------------------------
	FOOTER
------------------------------------------------------------*/
#cv .cv-wrap {
	position: relative;
	width: 100%;
	background: var(--base-pink);
	padding: var(--px);
}
#cv .cv-wrap .cv-btns {
	margin: auto;
	max-width: var(--cw);
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 10px;
}
#cv .cv-wrap .cv-btns a {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--white);
	border-radius: 5px;
	transition: 0.3s;
}
#cv .cv-wrap .cv-btns a:hover {
	box-shadow: 0 0 10px 0 var(--color-pink);
}
#cv .cv-wrap .cv-btns a h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--color-pink);
	margin-bottom: 0.5em;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#cv .cv-wrap .cv-btns a p {
	font-size: 15px;
	line-height: 1.5;
}
#cv .cv-wrap .cv-btns a h2 i {
	margin-bottom: 0.2em;
	font-size: 200%;
}

#footer .footer-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
	padding: 0 var(--px);
	background: var(--color-brown);
	color: var(--white);
}

#footer .footer-nav {
	padding: 80px 0;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1000px;
	margin: auto;
	text-align: left;
}
#footer .top {
	z-index: 10;
	transition: 0.5s;
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	border: 1px solid var(--white);
	border-radius: 50%;
}
#footer .top:hover {
	border-color: transparent;
	box-shadow: 0 0 20px 0 var(--white);
}
#footer .top::after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	margin-top: -7px;
	border-top: 1px solid var(--white);
	border-left: 1px solid var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: rotate(45deg);
	transform-origin: left top;
}
#footer .footer-nav .main {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
#footer .footer-nav .main a::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 1px;
	background: currentcolor;
	vertical-align: middle;
	margin-right: 10px;
}
#footer .footer-nav .main .en {
	display: block;
	font-family: var(--en);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.05em;
	display: none;
}
#footer .footer-nav .lower {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .footer-nav .sns {
	display: flex;
	gap: 36px;
	font-size: 30px;
}
#footer .footer-nav .sub {
	display: flex;
	gap: 24px;
	font-size: 12px;
	font-weight: 500;
}
#footer .footer-nav a {
	transition: 1s;
}
#footer .footer-nav a:hover {
	opacity: 0.4;
}
#footer .copyright {
	font-size: 10px;
	letter-spacing: 0.2em;
	font-family: var(--en);
	line-height: 1;
	text-align: center;
	margin-bottom: 20px;
	width: 100%;
}
@media screen and (max-width: 800px) {
	#cv .cv-wrap .cv-btns {
		grid-template-columns: repeat(2,1fr);
	}
	#cv .cv-wrap .cv-btns a {
		padding: 15px 10px;
	}
	#cv .cv-wrap .cv-btns a h2 {
		font-size: 15px;
	}
	#cv .cv-wrap .cv-btns a p {
		font-size: 12px;
	}
	#footer {
		padding-bottom: var(--headerHeight);
	}
	#footer .footer-nav {
		padding: 60px 0 30px;
	}
	#footer .footer-nav .main {
		gap: 20px;
		font-size: 14px;
	}
	#footer .footer-nav .main li {
		width: 100%;
	}
	#footer .footer-nav .lower {
		gap: 10px;
		display: grid;
		grid-template-columns: 1fr;
	}
	#footer .footer-nav .sub {
		font-size: 11px;
	}
	#footer .copyright {
		font-size: 9px;
		text-align: left;
	}
}

/*------------------------------------------------------------
	FOOTER
------------------------------------------------------------*/

#mv {
	opacity: 0;
	animation: fadeIn 1s .5s forwards;
}
#mv .section-wrap {
	position: relative;
	height: 100%;
}
#mv .slide-wrap {
	width: 100%;
	margin-bottom: 0;
}
#mv .slide-wrap div {
	line-height: 1;
	vertical-align: top;
}
#mv .slide-wrap img {
	width: 100%;
	max-width: 1000px;
	height: auto;
}
#mv .slide-wrap img.sp {
	display: none;
}
#mv .slide-wrap::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 1;
	width: calc(50% - 500px);
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(10px);
}
#mv .slide-wrap::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	z-index: 1;
	width: calc(50% - 500px);
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(10px);
}

#mv .title {
	position: absolute;
	bottom: 200px;
	right: 30px;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.3;
	color: var(--white);
	border-top: 5px solid currentcolor;
	border-bottom: 5px solid currentcolor;
	padding: 10px 0 15px 10px;
	transform: rotate(-5deg);
}
#mv .name {
	color: var(--white);
	font-size: 14px;
	position: absolute;
	bottom: 20px;
	right: 20px;
	line-height: 1;
}
#mv .reverse .name {
	right: auto;
	left: 20px;
}
#mv .reverse .title {
	right: auto;
	left: 30px;
}

#mv .slick-dots {
	align-items: center;
	display: inline-flex;
	font-size: 12px;
	height: 12px;
	left: 80px;
	bottom: 57px;
	line-height: 1;
	padding: 0;
	justify-content: flex-start;
	width: auto;
}

#mv .slick-dots li {
	height: 1em;
	line-height: 1;
	margin: 0 8px 0 0;
	width: 1em;
}
	
#mv .slick-dots li button {
	background-color: transparent;
	border: 1px solid var(--white);
	border-radius: 50%;
	font-size: 12px;
	height: 1em;
	padding: 0;
	transition: .3s;
	width: 1em;
	opacity: 0.5;
}
#mv .slick-dots li button:before {
	display: none;
}
#mv .slick-dots li button:hover,
#mv .slick-dots li.slick-active button {
	background-color: var(--white);
	border: 1px solid var(--white);
	opacity: 1;
}

#mv .slide-list {
	position: relative;
}
#mv .slide-list .img {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	overflow: hidden;
}
#mv .slide-list .img::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}

#mv .slide-list .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s;
}
#mv .slide-list .img:hover img {
	filter: brightness(90%);
}

#mv .slide-list img.pcib {
	display: inline-block;
}
#mv .slide-list img.spib {
	display: none;
}

#mv .banners {
	width: 100%;
	padding: var(--py) var(--px);
	background: var(--base-pink);
	display: flex;
	justify-content: center;
	gap: 40px;
}
#mv .banners li {
	width: 500px;
	padding-top: 20px;
	position: relative;
}
#mv .banners li h3 {
	display: inline-block;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	padding: 0 10px;
	min-width: 120px;
}
#mv .banners li h3::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--color-pink);
	transform: rotate(-20deg);
}
#mv .banners li h3::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background: var(--color-pink);
	transform: rotate(20deg);
}
#mv .banners li .inner {
	border-radius: 5px;
	border: 1px solid var(--color-pink);
	background: var(--white);
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	padding-top: 30px;
	gap: 20px;
}
#mv .banners li .inner h2 {
	position: relative;
	font-size: 18px;
	font-weight: 500;
}
#mv .banners li .inner h2 .balloon {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--color-pink);
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	border-radius: 60%;
	top: -10px;
	left: 60%;
	transform: rotate(10deg);
}
#mv .banners li .inner h2 .balloon::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 4px 0 4px;
	border-color: var(--color-pink) transparent transparent transparent;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: -2px;
	margin-left: -4px;

}
#mv .banners li .inner h2 .pink {
	color: var(--color-pink);
}
#mv .banners li .inner h2 strong {
	font-family: var(--en);
	font-weight: 300;
	line-height: 1;
	letter-spacing: -0.05em;
}
#mv .banners li .inner h2 strong.L {
	font-size: 90px;
}
#mv .banners li .inner h2 strong.M {
	font-size: 60px;
	font-weight: 400;
}
#mv .banners li .inner h2 big {
	font-size: 30px;
	font-weight: 400;
	line-height: 1.4;
}
#mv .banners li .inner h2 .normal {
	display: block;
	font-size: 20px;
	background-image: linear-gradient(transparent 60%, var(--base-pink) 0%);
}
#mv .banners li .inner h2 em {
	font-style: italic;
}
@media screen and (max-width: 800px) {
	#mv .slide-wrap img {
		max-width: 100%;
		width: 100vw;
	}
	#mv .slide-wrap img.sp {
		display: block;
	}
	#mv .slide-wrap img.pc {
		display: none;
	}

	#mv .slide-wrap::before,
	#mv .slide-wrap::after {
		display: none;
	}
	#mv .title {
		font-size: 20px;
		bottom: 50px;
		border-width: 3px;
	}
	#mv .txt {
		content: '';
		display: block;
		height: 50%;
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	}
	#mv .name {
		font-size: 10px;
		bottom: 10px;
		right: 10px;
	}
}



/*------------------------------------------------------------
	Common
------------------------------------------------------------*/
#main {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
}

#main .btn {
	text-align: center;
	margin-top: 30px;
}


#main .btn a {
	min-width: 480px;
	position: relative;
	z-index: 1;
	text-align: center;
	display: inline-flex;
	height: 60px;
	justify-content: center;
	align-items: center;
	color: var(--red);
	background: var(--btn);
	transition: 0.3s;
	font-size: 30px;
	font-family: var(--en);
	font-weight: 400;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
	padding: 0 2em;
	border-radius: 30px;
}
#main .btn.jp a {
	font-family: var(--ja);
	letter-spacing: 0;
	text-indent: 0;
}
#main .btn a:hover {
	opacity: 0.6;
	text-decoration: none;
}

#main .sec-wrap {
	padding: var(--py) var(--px);
}
#main .sec-title {
	text-align: center;
	margin-bottom: 30px;
}
#main .sec-title .title {
	padding-top: 30px;
	position: relative;
}
#main .sec-title .title::before {
	content: '';
	display: block;
	height: 25px;
	width: 4px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -2px;
	background: var(--color-pink);
	border-radius: 5px;
}
#main .sec-title .title .en {
	font-family: var(--en);
	font-weight: 700;
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0.05em;
	display: block;
}
#main .sec-title .title .ja {
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.01em;
	font-weight: 700;
	margin: 30px 0 10px;
	display: block;
}
#main .sec-title .desc {
	font-size: 14px;
	line-height: 25px;
	letter-spacing: 0.02em;
}
#main .sec-content {
	max-width: 1000px;
	width: 100%;
	margin: auto;
}
#main .page-title {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 30px;
}
#main .page-title .title {
	font-size: 25px;
	line-height: calc(40 / 25);
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: center;
}
#main .page-title .title span {
	color: var(--grey);
	font-family: var(--en);
	letter-spacing: 0.2em;
	font-size: 20px;
	line-height: 1;
}
#main .page-title .title::before {
	content: '';
	width: 200px;
	height: 200px;
	background: var(--blue);
	opacity: 0.5;
	position: absolute;
	z-index: -1;
	top: -20px;
	left: 50%;
	transform: translate(-50%,0);
	border-radius: 50%;
}
#main .page-title .title::after {
	content: '';
	width: 273px;
	height: 24px;
	background: url(images/section-title-bg.svg) center top/contain no-repeat;
}

#main .btns {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
#main .btns a {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid var(--color-pink);
	background: var(--white);
	color: var(--color-pink);
	text-align: center;
	font-size: 16px;
	line-height: 2;
	max-width: 400px;
	width: 100%;
	transition: 0.3s;
}
#main .btns a:hover {
	border-color: var(--base-pink);
	box-shadow: 0 0 20px 0 var(--color-pink);
}

#page .wp-block-table td, #page .wp-block-table th {
	border-color: var(--color-pink);
	padding: 20px 20px;
	text-align: left;
	vertical-align: top;
}
#page .wp-block-table th {
	border-color: var(--base-pink);
	background: var(--color-pink);
	font-weight: 700;
	color: var(--white);
}
#page .contents > p strong {
	font-weight: 700;
}
#page .contents > p a {
	color: var(--color-pink);
	text-decoration: underline;
}
#page .contents > p a:hover {
	text-decoration: none;
}

@media screen and (max-width: 800px) {
	#main .btn {
		margin-top: 20px;
	}
	#main .btn a {
		min-width: 0;
		height: 48px;
		font-size: 24px;
		line-height: 1.4;
		font-family: var(--en);
		padding: 0;
		width: 100%;
		border-radius: 60px;
	}
	#main .page-title .title {
		font-size: 20px;
	}
	#main .page-title .title span {
		font-size: 16px;
	}
	#main .page-title .title::before {
		width: 160px;
		height: 160px;
		top: -16px;
	}
	#main .page-title .title::after {
		content: '';
		width: 220px;
		height: 20px;
		background: url(images/section-title-bg.svg) center top/contain no-repeat;
	}
	#page .wp-block-table table {
		border: 1px solid var(--color-pink);
	}
	#page .wp-block-table th {
		display: block;
		width: 100%;
		border: none;
		padding: 10px 20px;
	}
	#page .wp-block-table td {
		display: block;
		width: 100%;
		border: none;
		padding: 10px 20px;
	}

}

/*------------------------------------------------------------
	TOP - About
------------------------------------------------------------*/
#about .about-txt {
	text-align: center;
	font-size: 16px;
	line-height: 2.4;
}
#about .about-txt p + p {
	margin-top: 2.4em;
}
#about .about-txt strong {
	font-weight: 500;
	background-image: linear-gradient(transparent 60%, var(--base-pink) 0%);
}
#about .box {
	width: 100%;
	padding: 30px;
	border: 1px solid var(--color-pink);
	border-radius: 5px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
#about .box h3 {
	font-weight: 500;
	font-size: 22px;
	line-height: 44px;
	letter-spacing: 0.05em;
	position: relative;
	padding: 0 60px;
}
#about .box h3::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 25px;
	top: 0;
	background: var(--color-pink);
	transform: rotate(-30deg);
}
#about .box h3::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	right: 25px;
	top: 0;
	background: var(--color-pink);
	transform: rotate(30deg);
}
#about .box h3 > span {
	background: linear-gradient(transparent 60%, var(--base-pink) 0%);
}
#about .box h3 .pink {
	display: inline-block;
	color: var(--color-pink);
	font-family: var(--en);
	font-weight: 500;
	margin: 0 0.5em;
	line-height: 44px;
}
#about .box h3 .pink big {
	font-size: 200%;
	line-height: 44px;
}


#about .heading {
	width: 100%;
	margin-top: 100px;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#about .heading h3 {
	font-weight: 700;
	font-size: 28px;
	line-height: 44px;
	letter-spacing: 0.05em;
	position: relative;
	padding: 0 60px;
}
#about .heading h3::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 25px;
	top: 0;
	background: var(--color-pink);
	transform: rotate(-30deg);
}
#about .heading h3::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	right: 25px;
	top: 0;
	background: var(--color-pink);
	transform: rotate(30deg);
}
#about .heading h3 .pink {
	display: inline-block;
	color: var(--color-pink);
	font-family: var(--en);
	font-weight: 700;
}

#about .col2 {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 30px 40px;
	border-radius: 5px;
	position: relative;
	background: var(--base-pink);
}
#about .col2 figure {
	position: absolute;
	right: 57%;
	bottom: 0;
	width: 130px;
}
#about .col2 figure figcaption {
	font-size: 11px;
	position: absolute;
	bottom: 5px;
	left: 100%;
	white-space: nowrap;
}
#about .col2::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-radius: 5px 0 0 0;
	border-style: solid;
	border-width: 52px 52px 0 0;
	border-color: var(--color-pink) transparent transparent transparent;
}
#about .col2 .left {
	display: flex;
	align-items: center;
}
#about .col2 .left h3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 2;
}
#about .col2 .left h3 > span {
	background: linear-gradient(transparent 60%, var(--base-pink) 0%);
}
#about .col2 .right p {
	font-size: 14px;
	line-height: 32px;
}
#about .col2 .right p strong {
	font-weight: 500;
	font-size: 20px;
}
#about .col2 .right p span {
	font-family: var(--en);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-pink);
	background: linear-gradient(transparent 60%, var(--white) 0%);
}
#about .col2 .right p span big {
	font-size: 36px;
	font-weight: 500;
}
#about .about-btns {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
#about .about-btns a {
	border-radius: 5px;
	max-width: 300px;
	width: 100%;
	overflow: hidden;
	box-shadow: inset 0 0 0px 2px var(--color-pink);
	transition: 0.3s;
}
#about .about-btns a img {
	position: relative;
	z-index: -1;
}
#about .about-btns a:hover img {
	background: var(--base-pink);
}
#about .note {
	font-size: 14px;
	line-height: 2;
	text-align: center;
	margin-top: 20px;
}
#about .points {
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}
#about .points li {
	width: calc(20% - 10px);
	background: var(--color-pink);
	color: #fff;
	position: relative;
	margin-top: 70px;
	border-radius: 20px;
	padding: 50px 20px 20px;
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#about .points li .point {
	position: absolute;
	top: 0;
	left: 50%;
	display: flex;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid var(--color-pink);
	background: var(--white);
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-family: var(--en);
	font-size: 24px;
	color: var(--color-pink);
	transform: translate(-50%,-50%);
}
#about .points li .point > span {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%,0);
	line-height: 1;
	font-size: 16px;
}
#about .points li .point > span > span:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}
#about .points li .point > span > span {
	display: flex;
	width: 1em;
	height: 50px;
	justify-content: center;
	align-items: flex-start;
	transform-origin: 50% bottom;
}
#about .points li .point > span > span:nth-child(1) {
	transform: rotate(-40deg);
}
#about .points li .point > span > span:nth-child(2) {
	transform: rotate(-20deg);
}
#about .points li .point > span > span:nth-child(3) {
	transform: none;
}
#about .points li .point > span > span:nth-child(4) {
	transform: rotate(20deg);
}
#about .points li .point > span > span:nth-child(5) {
	transform: rotate(40deg);
}
#about .points li p + p {
	margin-top: 15px;
}
#about .points li p big {
	font-size: 18px;
	font-weight: 700;
}
#about .points li.all {
	width: 100%;
}
#about .points li .icon {
	width: 44px;
}

@media screen and (max-width: 800px) {
	#about .about-txt {
		text-align: left;
		font-size: 14px;
		line-height: 1.8;
	}
	#about .heading h3 {
		padding: 0 50px;
		font-size: 20px;
		line-height: 1.6;
		text-align: center;
	}
	#about .col2 {
		grid-template-columns: 1fr;
		padding-right: 100px;
		padding-bottom: 50px;
	}
	#about .col2 figure {
		right: -5px;
		width: 110px;
	}
	#about .col2 figure figcaption {
		left: auto;
		right: 100%;
		font-size: 10px;
		margin-right: 10px;
	}
	#about .col2 .right p {
		font-size: 14px;
		line-height: 1.8;
		margin-top: 0.5em;
	}
	#about .col2 .right p span big {
		line-height: 1;
	}
	#about .note {
		font-size: 12px;
		text-align: left;
	}
	#about .points li {
		width: calc(50% - 5px);
	}
	#about .points li .point {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	#about .points li .point > span {
		font-size: 12px;
	}
	#about .points li .point > span > span {
		height: 35px;
	}
	#about .points li {
		margin-top: 45px;
		padding: 30px 10px 20px;
		font-size: 13px;
		line-height: 1.5;
	}
}
/*------------------------------------------------------------
	TOP - company
------------------------------------------------------------*/

.page-company .map {
	width: 100%;
	height: 350px;
	position: relative;
}
.page-company .map iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

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

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


/*------------------------------------------------------------
	TOP - News
------------------------------------------------------------*/
#news .sec-wrap .inner {
	padding: 120px var(--px) 120px;
}
.news-list {
	max-width: 700px;
	width: 100%;
	margin: 100px 50px 0;
}
.news-list li {
	border-bottom: 1px solid var(--black);
}
.news-list li .link {
	padding: 20px 0;
	display: flex;
	align-items: center;
	font-size: 15px;
}
.news-list li a {
	transition: 0.3s;
}
.news-list li a:hover {
	color: var(--orange);
}
.news-list li .link .date {
	width: 150px;
}
.news-list li .link .title {
	width: calc(100% - 150px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#news .sec-wrap .inner .btn {
	margin-top: 60px;
}
@media screen and (max-width: 800px) {
	#news .sec-wrap .inner {
		padding: var(--py) var(--px);
	}
	.news-list {
		margin: 0;
		padding: 0 0 0 50px;
	}
	.news-list li .link {
		flex-direction: column;
		padding: 10px;
		align-items: flex-start;
	}
	.news-list li .link .date {
		font-size: 12px;
	}
	.news-list li .link .title {
		white-space: normal;
		width: 100%;
		
	}

}


/*------------------------------------------------------------
	Archive - News
------------------------------------------------------------*/

.wp-pagenavi {
	font-family: var(--en);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	letter-spacing: -.5em;
	padding: 140px 0 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-flex;
	letter-spacing: normal;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	padding: 0;
	border: 1px solid var(--black);
	color: var(--black);
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.wp-pagenavi a:hover {
	background-color: var(--black);
	color: #fff;
}
.wp-pagenavi span.extend {
	border-color: transparent;
	width: auto;
}
.wp-pagenavi span.current {
	background-color: var(--black);
	color: #fff;
}
@media screen and (max-width: 800px) {
	.wp-pagenavi {
		padding-top: 30px;
		font-size: 13px;
	}
	.wp-pagenavi a,
	.wp-pagenavi span {
		width: 30px;
		height: 30px;
		margin: 0 4px;
	}
}
/*------------------------------------------------------------
	Single - News
------------------------------------------------------------*/
.single #main {
	margin-top: var(--headerHeight);	
}
#mv-single img {
	width: 100%;
}
#single {
	padding: var(--py) 0;

}
#single .single-wrap {
	margin: auto;
	max-width: var(--cw);
	padding: 0 54px;
	opacity: 0;
}
#single .single-wrap.visible {
	opacity: 1;
	transition: 1s .25s linear;
}
#single .single-title {
	position: relative;
	z-index: 2;
}
#single .single-title .date {
	font-size: 15px;
	font-weight: 400;
	font-family: var(--en);
	line-height: 2;
	letter-spacing: 0.2em;
	margin-bottom: .5em;
}
#single .single-title h1 {
	font-size: 30px;
	font-weight: 400;
	line-height: calc(40 / 30);
	margin-bottom: 50px;
}
#single .single-content {
	font-size: 20px;
	line-height: calc(40 / 20);
	position: relative;
	z-index: 2;
}
#single .single-content > * + * {
	margin-top: 60px;
}
#single .single-content h2 {
	font-size: 30px;
	line-height: calc(40 / 30);
	margin-bottom: 1em;
}
#single .single-content > * + h2 {
	margin-top: 120px;
}
#single .single-content h3 {
	font-size: 25px;
	line-height: calc(40 / 25);
	margin-bottom: 1em;
}

#single .single-content strong {
	font-weight: 700;
}
#single .single-content p a {
	color: var(--red);
	text-decoration: underline;
}
#single .single-content p a:hover {
	text-decoration: none;
}
#single .single-content .slide {
	width: calc(50% + 50vw);
}
#single .single-content .slide img {
	border-radius: 1000px 0 0 1000px;
}
#single .single-content .wp-block-embed-youtube .wp-block-embed__wrapper {
	width: 100%;
	position: relative;
	padding-top: 56.25%;
}
#single .single-content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	#single .single-wrap {
		padding: 0 var(--px);
	}
	#single .single-title h1 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	#single .single-content {
		font-size: 16px;
	}
	#single .single-content > * + * {
		margin-top: 30px;
	}
	#single .single-content h2 {
		font-size: 18px;
	}
	#single .single-content h3 {
		font-size: 15px;
	}
	#single .single-content .wp-block-media-text .wp-block-media-text__content {
		padding: 20px 0 0;
	}
}

/*------------------------------------------------------------
	PAGE - common
------------------------------------------------------------*/
#pagetitle .section-wrap {
	padding-left: 120px;
	margin-bottom: 100px;
	position: relative;
}
#pagetitle .section-wrap .title {
	position: absolute;
	z-index: 2;
	font-family: var(--en);
	font-weight: 700;
	font-size: 32px;
	left: 60px;
	top: 50%;
	color: var(--white);
	letter-spacing: 0.1em;
	transform: translate(0,-50%);
}
#pagetitle .section-wrap .title span {
	display: block;
	font-size: 60%;
	margin-top: -10px;
}
#pagetitle .section-wrap .name {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 20px;
	color: var(--white);
	font-weight: 500;
	font-size: 12px;
}
#pagetitle .section-wrap .name::before {
	content: '所属女優 | ';
}
#pagetitle .section-wrap .thumb {
	position: relative;
	width: 100%;
	padding-top: calc(100% * 400 / 1080);
	background: linear-gradient(45deg, var(--color-pink-hover), var(--color-pink));
	z-index: 1;
}
#pagetitle .section-wrap .thumb img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: 1;
}
#pagetitle .section-wrap::after {
	content: '';
	display: block;
	width: 100%;
	height: calc(100% - 40px);
	position: absolute;
	left: -120px;
	bottom: -100px;
	background: var(--base-pink);
}
#pagetitle .section-wrap .thumb::after {
	content: '';
	display: block;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	position: absolute;
	box-sizing: border-box;
	left: 10px;
	top: 10px;
	border: 1px solid var(--white);
}
#page {
	padding: var(--py) var(--px);
}
#page .contents {
	max-width: var(--cw);
	margin: auto;
} 
#page .contents > * + * {
	margin-top: 60px;
}
#page .contents > * + h2 {
	margin-top: var(--py);
}
#page .contents.inviewelm > * {
	opacity: 0;
}
#page .contents.inviewelm > *.visible {
	opacity: 1;
	transition: 1s .25s linear;
}
#page .bg-pink {
	position: relative;
	width: 100vw;
	left: 50%;
	transform: translate(-50%,0);
	background: var(--base-pink);
	padding: var(--py) var(--px);
	margin-top: var(--py);
}
#page .bg-pink + .contents {
	padding-top: var(--py);
}
#page .contents > h2 {
	font-weight: 500;
	font-size: 24px;
	text-align: center;
	line-height: 1.5;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 60px;
}
#page .contents > h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 1px;
	background: var(--color-pink);
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -40px;
}
#page .contents > h2 strong {
	font-size: 120%;
	color: var(--color-pink-hover);
}
#page .contents > p.desc {
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	line-height: 2;
}

@media screen and (max-width: 800px) {
	#pagetitle .section-wrap {
		padding-left: var(--px);
		margin-bottom: var(--py);
	}
	#pagetitle .section-wrap::after {
		bottom: calc(-1 * var(--py));
		left: calc(-1 * var(--px));
	}
	#pagetitle .section-wrap .thumb {
		padding-top: calc(160% * 400 / 1080);
	}
	#pagetitle .section-wrap .thumb:has(> img)::before {
		content: '';
		display: block;
		width: 100%;
		height: 100px;
		background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 2;
	}
	#pagetitle .section-wrap .thumb::after {
		left: 7px;
		top: 7px;
		width: calc(100% - 14px);
		height: calc(100% - 14px);
	}
	#pagetitle .section-wrap .title {
		left: var(--px);
		font-size: 22px;
		top: auto;
		bottom: calc(var(--px) - 5px);
		transform: none;
	}
	#page .contents > * + * {
		margin-top: 30px;
	}
	#page .contents > h2 {
		font-size: 20px;
		padding-bottom: 24px;
		margin-bottom: 40px;
	}
}




/*------------------------------------------------------------
	Page - work
------------------------------------------------------------*/
#page.page-work .contents .circles {
	display: flex;
	text-align: center;
	justify-content: center;
	gap: 60px;
}
#page.page-work .contents .circles li {
	width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.3;
	font-weight: 500;
	font-size: 20px;
	border: 2px solid var(--base-pink);
	border-radius: 50%;
}
#page.page-work .contents .circles li strong {
	color: var(--color-pink);
	color: var(--color-pink-hover);
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
}
#page.page-work .contents .circles li big {
	font-size: 30px;
}
#page.page-work .contents .box {
	width: 100%;
	background: var(--color-pink);
	color: var(--white);
	font-weight: 500;
	font-size: 18px;
	max-width: 720px;
	margin: auto;
	margin-top: 50px;
	border-radius: 10px;
	padding: 30px 60px;
	text-align: center;
}
#page.page-work .contents .box h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	margin-bottom: 20px;
}
#page.page-work .contents .box strong {
	font-weight: 700;
	background: linear-gradient(transparent 60%, var(--color-pink-hover) 0%);
}

#page.page-work .contents .works {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
#page.page-work .contents .works li {
	position: relative;
	background: var(--white);
	border: 1px solid var(--color-pink);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 25px;
	padding: 30px 20px;
	align-items: center;
	border-radius: 5px;
}
#page.page-work .contents .works li::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 40px 0 0;
	border-color: var(--color-pink) transparent transparent transparent;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px 0 0 0;
}
#page.page-work .contents .works li h3 {
	font-weight: 700;
	width: 100%;
	text-align: center;
	font-size: 20px;
	line-height: 1.2;
	padding-bottom: 20px;
	margin-bottom: 20px;
	position: relative;
}
#page.page-work .contents .works li h3::after {
	content: '';
	display: block;
	height: 1px;
	width: 20px;
	background: var(--color-pink);
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -10px;
}
#page.page-work .contents .works li h3 span {
	background: linear-gradient(transparent 60%, var(--base-pink) 0%);
}
#page.page-work .contents .works li p {
	width: 100%;
	font-size: 14px;
	line-height: 1.6;
}
#page.page-work .contents .works li h4 {
	font-weight: 700;
	width: 100%;
	text-align: center;
	font-size: 14px;
	line-height: 1.2;
	position: relative;
	padding-top: 30px;
	border-top: 1px solid var(--base-pink);
}
#page.page-work .contents .works li h4 > span {
	display: inline-block;
	position: relative;
}
#page.page-work .contents .works li h4 .balloon {
	position: absolute;
	right: 100%;
	bottom: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--color-pink);
	color: #fff;
	font-weight: 700;
	font-size: 10px;
	border-radius: 50%;
	transform: rotate(-30deg);
}
#page.page-work .contents .works li h4 .balloon::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 4px 0 4px;
	border-color: var(--color-pink) transparent transparent transparent;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: -2px;
	margin-left: -4px;

}
#page.page-work .contents .works li h4 big {
	font-family: var(--en);
	font-weight: 700;
	font-size: 28px;
	letter-spacing: -0.05em;
	color: var(--color-pink);
}
#page.page-work .txt-desc {
	text-align: center;
}
#page.page-work .txt-desc h3 {
	font-size: 18px;
	font-weight: 500;
}
#page.page-work .txt-desc strong {
	font-weight: 500;
	background: linear-gradient(transparent 60%, var(--base-pink) 0%);
}
#page.page-work .txt-desc * + * {
	margin-top: 30px;
}

#page.page-work .features {
	text-align: center;
}
#page.page-work .features ol {
	counter-reset: li;
	display: inline-grid;
	text-align: left;
	gap: 20px;
}
#page.page-work .features ol li {
	counter-increment: list;
	position: relative;
	padding-left: 50px;
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0.1em;
}
#page.page-work .features ol li:after {
	content: counter(list);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	background: var(--color-pink);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 15px;
	color: var(--white);
	font-family: var(--en);
	font-weight: 700;
}

#page.page-work .box-caution {
	margin-top: var(--py);
	border: 2px solid var(--color-pink);
	padding: var(--px);
	text-align: center;
}
#page.page-work .box-caution h5 {
	display: inline-block;
	font-weight: 700;
	font-size: 28px;
	line-height: 44px;
	color: var(--color-pink);
	letter-spacing: 0.05em;
	position: relative;
	padding: 0 60px;
	margin-bottom: 20px;
}
#page.page-work .box-caution h5::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 25px;
	top: 0;
	background: var(--color-pink);
	transform: rotate(-30deg);
}
#page.page-work .box-caution h5::after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	right: 25px;
	top: 0;
	background: var(--color-pink);
	transform: rotate(30deg);
}
#page.page-work .box-caution p {
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
	text-align: left;
}

@media screen and (max-width: 1060px) {
	#page.page-work .contents .works {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
	}

}


@media screen and (max-width: 800px) {
	#page.page-work .contents .circles {
		gap: 5px;
	}
	#page.page-work .contents .circles li {
		height: calc((100vw - var(--px) - var(--px) - 10px) / 3);
		font-size: 12px;
	}
	#page.page-work .contents .circles li big {
		font-size: 18px;
	}
	#page.page-work .contents .circles li strong {
		font-size: 22px;
	}
	#page.page-work .contents .works {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
	#page.page-work .contents .box {
		padding: 30px var(--px);
		margin-top: 30px;
		font-size: 16px;
	}
	#page.page-work .contents .box h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}
	#page.page-work .txt-desc {
		text-align: left;
	}
	#page.page-work .txt-desc h3 {
		font-size: 15px;
		text-align: center;
	}

}



/*------------------------------------------------------------
	Page - interview
------------------------------------------------------------*/

#page.page-interview .condition {
	border: 1px solid var(--color-pink);
	border-radius: 10px;
	padding: var(--px);
	position: relative;
	background: var(--base-pink);
}
#page.page-interview .condition h3 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	background: var(--color-pink);
	color: var(--white);
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	display: inline-block;
	padding: 5px 20px;
	min-width: 200px;
	border-radius: 100px;
}
#page.page-interview .condition ul {
	counter-reset: li;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
	margin-top: 30px;
}
#page.page-interview .condition ul li {
	counter-increment: list;
	position: relative;
	background: var(--white);
	border: 1px solid var(--color-pink);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}
#page.page-interview .condition ul li::before {
	content: counter(list);
	position: absolute;
	z-index: 1;
	font-family: var(--en);
	font-weight: 700;
	color: var(--white);
	top: 0;
	left: 0;
	display: flex;
	height: 24px;
	width: 24px;
	justify-content: center;
	align-items: center;
}
#page.page-interview .condition ul li::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 40px 40px 0 0;
	border-color: var(--color-pink) transparent transparent transparent;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 4px 0 0 0;
}
#page.page-interview .caution {
	text-align: center;
}
#page.page-interview .caution h3 {
	font-size: 20px;
	font-weight: 500;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
#page.page-interview .caution h3 img {
	width: 20px;
}
#page.page-interview .caution ul {
	margin-top: 20px;
	display: inline-grid;
	gap: 10px;
	text-align: left;
	font-size: 15px;
	line-height: 1.8;
}
#page.page-interview .caution ul li {
	padding-left: 30px;
	position: relative;
}
#page.page-interview .caution ul li::before {
	position: absolute;
	left: 0;
	top: .3em;
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border: 1px solid var(--base-brown);
}
#page.page-interview .caution ul li::after {
	content: '';
	display: block;
	width: 6px;
	height: 12px;
	box-sizing: border-box;
	border-right: 2px solid var(--color-pink);
	border-bottom: 2px solid var(--color-pink);
	position: absolute;
	top: 3px;
	left: 3px;
	transform: rotate(45deg);
	transform-origin: left bottom;
}

#page.page-interview .step {
	width: 100%;
	max-width: 840px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
#page.page-interview .step::after {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	box-sizing: border-box;
	border-left: 1px solid var(--color-pink);
	border-bottom: 1px solid var(--color-pink);
	position: absolute;
	bottom: -8px;
	left: 4px;
	transform: rotate(-45deg);
	transform-origin: left bottom;
}
#page.page-interview .step li {
	position: relative;
	padding-left: 46px;
	padding-bottom: 20px;
}
#page.page-interview .step li::before {
	content: '';
	width: 1px;
	height: 100%;
	background: var(--color-pink);
	display: block;
	position: absolute;
	top: 8px;
	left: 4px;
}
#page.page-interview .step li::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background: var(--color-pink);
	position: absolute;
	left: 0;
	top: 3px;
	border-radius: 50%;
	transform: scale(0.5);
	transform-origin: left top;
}
#page.page-interview .step li:not(:last-child) {
	padding-bottom: 60px;
}

#page.page-interview .step li h4 {
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	color: var(--color-pink);
	margin-bottom: 20px;
	position: relative;
}
#page.page-interview .step li h4 span {
	font-family: var(--en);
	display: inline-block;
	padding-right: 1em;
	position: relative;
	z-index: 1;
	background: #fff;
}
#page.page-interview .step li h4::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--base-pink);
	position: absolute;
	left: 0;
	top: .5em;
}
#page.page-interview .step li .inner {
	font-size: 15px;
	line-height: 2;
	display: grid;
	grid-template-columns: 300px auto;
}
#page.page-interview .step li .inner h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 34px;
}

#page.page-interview .btns-interview {
	display: grid;
	justify-content: center;
	gap: var(--px);
	grid-template-columns: 1fr 1fr;
}
#page.page-interview .btns-interview a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	padding: 10px;
	border-radius: 5px;
	background: var(--color-pink);
	color: var(--white);
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	line-height: 2;
	width: 100%;
	transition: 0.3s;
}
#page.page-interview .btns-interview a.line {
	background: var(--line);
}
#page.page-interview .btns-interview a:hover {
	background: var(--color-pink-hover);
}
#page.page-interview .btns-interview a.line:hover {
	background: var(--line-hover);
}

@media screen and (max-width: 1060px) {
	#page.page-interview .condition ul {
		grid-template-columns: repeat(2,1fr);
	}

}
@media screen and (max-width: 800px) {
	#page .contents > p.desc {
		font-size: 16px;
	}
	#page.page-interview .condition {
		margin-top: 40px;
	}
	#page.page-interview .condition h3 {
		font-size: 18px;
	}
	#page.page-interview .condition ul {
		grid-template-columns: repeat(1,1fr);
	}
	#page.page-interview .step::after {
		left: 4px;
	}
	#page.page-interview .step li .inner {
		display: block;
	}
	#page.page-interview .step li .inner h3 {
		margin-bottom: 20px;
	}
	#page.page-interview .btns-interview {
		grid-template-columns: 1fr;
	}
	#page.page-interview .btns-interview a {
		font-size: 16px;
		height: 60px;
	}
	#page.page-interview .caution h3 {
		font-size: 18px;
	}
	#page.page-interview .caution ul {
		font-size: 14px;
	}
}


/*------------------------------------------------------------
	Page - Q&A
------------------------------------------------------------*/

#page.page-faq dl {
	counter-reset: dt;
	display: grid;
	gap: 10px;
}

#page.page-faq dt {
	counter-increment: list;
	cursor: pointer;
	position: relative;
	width: 100%;
	padding: var(--px) 100px;
	text-align: left;
	color: #fff;
	font-size: 20px;
	line-height: 2;
	font-weight: 700;
	background: var(--color-pink);
	background: linear-gradient(45deg, var(--color-pink-hover), var(--color-pink));
	transition: 0.3s;
}
#page.page-faq dt:hover {
	opacity: 0.7;
}
#page.page-faq dt::before {
	font-family: var(--en);
	font-weight: 700;
	content: 'Q.' counter(list);
	position: absolute;
	top: var(--px);
	left: var(--px);
}
#page.page-faq dt::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-right: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
	position: absolute;
	top: calc(var(--px) + 10px);
	right: var(--px);
	transform: rotate(45deg) translate(-18%,-18%);
	transition: 0.3s;
}
#page.page-faq dt.active::after {
	transform: rotate(-135deg) translate(-18%,-18%);
}
#page.page-faq dd {
	display: none;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	padding: 10px var(--px) var(--px);
}
@media screen and (max-width: 800px) {

	#page.page-faq dt {
		padding: var(--px) 50px;
		padding-left: 70px;
		font-size: 15px;
		line-height: 1.8;
	}
	#page.page-faq dt::after {
		width: 15px;
		height: 15px;
		top: calc(var(--px) + 6px);
	}
	#page.page-faq dd {
		font-size: 14px;
		line-height: 1.6;
	}
}
/*------------------------------------------------------------
	Page - automatic interview
------------------------------------------------------------*/


#page.page-automatic-interview .step {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
#page.page-automatic-interview .step::after {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	box-sizing: border-box;
	border-left: 1px solid var(--color-pink);
	border-bottom: 1px solid var(--color-pink);
	position: absolute;
	bottom: -8px;
	left: 4px;
	transform: rotate(-45deg);
	transform-origin: left bottom;
}
#page.page-automatic-interview .step > li {
	position: relative;
	padding-left: 46px;
	padding-bottom: 20px;
}
#page.page-automatic-interview .step > li::before {
	content: '';
	width: 1px;
	height: 100%;
	background: var(--color-pink);
	display: block;
	position: absolute;
	top: 8px;
	left: 4px;
}
#page.page-automatic-interview .step > li::after {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background: var(--color-pink);
	position: absolute;
	left: 0;
	top: 3px;
	border-radius: 50%;
	transform: scale(0.5);
	transform-origin: left top;
}
#page.page-automatic-interview .step > li:not(:last-child) {
	padding-bottom: 60px;
}

#page.page-automatic-interview .step > li > h4 {
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	color: var(--color-pink);
	margin-bottom: 20px;
	position: relative;
}
#page.page-automatic-interview .step > li > h4 span {
	font-family: var(--en);
	display: inline-block;
	padding-right: 1em;
	position: relative;
	z-index: 1;
	background: #fff;
}
#page.page-automatic-interview .step > li > h4::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--base-pink);
	position: absolute;
	left: 0;
	top: .5em;
}
#page.page-automatic-interview .step > li .inner {
	font-size: 15px;
	line-height: 2;
	display: flex;
	gap: 30px;
}
#page.page-automatic-interview .step > li .inner .img {
	flex-basis: 270px;
}
#page.page-automatic-interview .step > li .inner .img img {
	border-radius: 5px;
}
#page.page-automatic-interview .step > li .inner .txt {
	flex: 1 1 0;
}
#page.page-automatic-interview .step > li .inner h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 34px;
	margin-bottom: 0.5em;
}
#page.page-automatic-interview .step > li .inner h4 {
	font-weight: 700;
	color: var(--color-pink);
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 1em;
}
#page.page-automatic-interview .step > li .inner ol {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#page.page-automatic-interview .step > li .inner ol li {
	counter-increment: list;
	padding: 20px;
	background: var(--base-pink);
	width: 100%;
	border-radius: 5px;
}
#page.page-automatic-interview .step > li .inner ol li h5 {
	padding-left: 34px;
	position: relative;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 0.5em;
}
#page.page-automatic-interview .step > li .inner ol li h5 span {
	font-size: 12px;
	font-weight: 500;
	margin-left: 1em;
}
#page.page-automatic-interview .step > li .inner ol li h5::before {
	content: counter(list);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	background: var(--color-pink);
	border-radius: 50%;
	width: 24px;
	height: 24px;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 14px;
	color: var(--white);
	font-family: var(--en);
	font-weight: 700;
}
#page.page-automatic-interview .step > li .inner ol li p {
	font-size: 14px;
	line-height: 1.5;
}
#page.page-automatic-interview .step > li .inner .box {
	padding: 20px;
	background: var(--base-pink);
	width: 100%;
	border-radius: 5px;
	margin-top: 10px;
}
#page.page-automatic-interview .step > li .inner .box p {
	font-size: 14px;
	line-height: 1.5;
}

@media screen and (max-width: 800px) {
	#page.page-interview .condition ul {
		grid-template-columns: repeat(1,1fr);
	}
	#page.page-automatic-interview .step {
		padding: 0 30px;
	}
	#page.page-automatic-interview .step::after {
		left: 34px;
	}
	#page.page-automatic-interview .step > li .inner {
		flex-direction: column;
		gap: 20px;
	}
	#page.page-automatic-interview .step > li .inner h3 {
		margin-bottom: 20px;
	}
	#page.page-automatic-interview .step > li .inner .img {
		flex-basis: auto;
	}
}

/*------------------------------------------------------------
	Archive - wp pagenavi
------------------------------------------------------------*/


.pagenavi-wrap {
	text-align: center;
	font-size: 16px;
	letter-spacing: .05em;
	padding: 100px 0 0;
}
.pagenavi-wrap .wp-pagenavi a,
.pagenavi-wrap .wp-pagenavi span {
	padding: 0;
	margin: 0 .7em;
	border: none;
}
.pagenavi-wrap .wp-pagenavi a {
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.pagenavi-wrap .wp-pagenavi span.current {
	color: #000;
	font-weight: 700;
}
.pagenavi-wrap .wp-pagenavi a:hover {
	opacity: .6;
}

@media screen and (max-width: 800px) {
	.pagenavi-wrap {
		padding: 50px 0 0;
		font-size: 13px;
	}
}

/*------------------------------------------------------------
	TOP - Contact
------------------------------------------------------------*/

.wpcf7 .required {
	background: var(--color-pink-hover);
	color: var(--white);
	display: inline-flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}
.wpcf7 dl {
	width: 100%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	padding: 15px 30px;
	align-items: flex-start;
}
.wpcf7 dl:nth-child(even) {
	background: var(--base-pink);
}
.wpcf7 dt {
	width: 40%;
	text-align: left;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	padding-right: 30px;
	min-height: 40px;
	display: flex;
	align-items: center;
}
.wpcf7 dt p {
	display: flex;
	gap: 10px;
	align-items: center;
}
.wpcf7 .wpcf7-list-item {
	margin-left: 0;
}
.wpcf7 dd {
	width: 60%;
	font-size: 14px;
	display: grid;
	gap: 10px;
}
.wpcf7 dd .note {
	font-size: 11px;
}
.wpcf7 select,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
	-webkit-appearance: none;
	box-shadow: none;
	padding: .5em 1em;
	font-size: 14px;
	line-height: calc(24 / 14);
	background-color: var(--white);
	width: 100%;
	border: 1px solid var(--base-brown);
	border-radius: 5px;
}
.wpcf7 select {
	background: var(--white) url(images/select-arrow.svg) no-repeat;
	background-size: 12px 6px;
	background-position: center right 20px;
	padding-right: 40px;
}

.wpcf7 input.short {
	width: 80px;
}
.wpcf7 .input-short p,
.wpcf7 .three li p,
.wpcf7 .photo li p {
	display: flex;
	gap: 10px;
	align-items: center;
}
.wpcf7 .photo {
	display: grid;
	gap: 20px;
	margin-bottom: 10px;
}
.wpcf7 .photo li {
	display: block;
	position: relative;
	padding-right: 100px;
	min-height: 100px;
}
.wpcf7 .preview {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0;
	right: 0;
}
.wpcf7 .preview p,
.wpcf7 .preview img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.wpcf7 .three {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px;
}
.wpcf7 .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	white-space: nowrap;
	gap: 10px 20px;
}
.wpcf7 input[type=checkbox] {
	position: absolute;
	opacity: 0;
}
.wpcf7 input[type=checkbox] + span {
	position: relative;
	padding: 0 0 0 28px;
	display: block;
	min-width: 100%;
}
.wpcf7 input[type=checkbox] + span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -.7em;
	height: 20px;
	width: 20px;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid var(--base-brown);
	border-radius: 0;
	z-index: 1;
	transition: .3s;
}
.wpcf7 input[type=checkbox] + span::after {
	content: '';
	opacity: 0;
	box-sizing: border-box;
	width: 12px;
	height: 8px;
	border-left: 3px solid var(--color-pink);
	border-bottom: 3px solid var(--color-pink);
	position: absolute;
	top: 12px;
	left: 4px;
	transform: translateY(-50%) rotate(-45deg);
	z-index: 2;
	transition: .3s;
}
.wpcf7 input[type=checkbox]:checked + span::after {
	opacity: 1;
}
.wpcf7 .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.wpcf7 input[type=radio] {
	position: absolute;
	opacity: 0;
}
.wpcf7 input[type=radio] + span {
	position: relative;
	padding: 0 0 0 28px;
	display: block;
	min-width: 100%;
}
.wpcf7 input[type=radio] + span::before {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	box-sizing: border-box;
	background-color: var(--white);
	border: 1px solid var(--base-brown);
	border-radius: 50%;
	z-index: 1;
	transform: translate(0,5px);
}
.wpcf7 input[type=radio] + span::after {
	position: absolute;
	top: 3px;
	left: 3px;
	height: 14px;
	width: 14px;
	background-color: var(--color-pink);
	border-radius: 50%;
	z-index: 2;
	opacity: 0;
	transition: .3s;
	transform: translate(0,5px);
}
.wpcf7 input[type=radio]:checked + span::after {
	opacity: 1;
}

.wpcf7 textarea {
	-webkit-appearance: none;
	box-shadow: none;
	padding: 10px 15px;
	font-size: 14px;
	line-height: calc(24 / 14);
	height: 240px;
	background-color: #fff;
	width: 100%;
	border: 1px solid var(--base-brown);
	border-radius: 5px;
	vertical-align: top;
}
.wpcf7 p:has(.wpcf7-submit) {
	text-align: center;
	margin-top: 60px;
}
.wpcf7 .submit {
	text-align: center;
	padding-top: 30px;
	position: relative;
	margin-top: 0;
}
.wpcf7 .submit .wpcf7-spinner {
	position: absolute;
	top: 40px;
	right: 0;
}
.wpcf7 input[type=submit] {
	display: inline-flex;
	width: 330px;
	height: 70px;
	align-items: center;
	justify-content: center;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	box-shadow: none;
	font-family: var(--ja);
	font-size: 18px;
	font-weight: 500;
	padding: 0;
	color: var(--white);
	line-height: 1;
	border: none;
	border-radius: 5px;
	background-color: var(--color-brown);
	cursor: pointer;
	transition: .3s;
}
.wpcf7 input[type=submit]:hover {
	background-color: var(--color-brown-hover);
}
.wpcf7 input[type=submit]:disabled {
	border: 1px solid var(--base-brown);
	color: var(--grey-9f);
	background-color: transparent;
	cursor: not-allowed;
}
.wpcf7 input[type=submit]:disabled:hover {
	opacity: 1;
}
.wpcf7 :-ms-input-placeholder{
	color: var(--grey-9f);
	font-family: var(--ja);
}
.wpcf7 ::-ms-input-placeholder{
	color: var(--grey-9f);
	font-family: var(--ja);
}
.wpcf7 ::-webkit-input-placeholder{
	color: var(--grey-9f);
	font-family: var(--ja);
}
.wpcf7 ::-moz-placeholder{
	color: var(--grey-9f);
	font-family: var(--ja);
}
.wpcf7 ::placeholder{
	color: var(--grey-9f);
	font-family: var(--ja);
}


.wpcf7 label.file {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	width: 160px;
	border-radius: 4px;
	height: 40px;
	background: var(--black);
	margin: 10px 0;
	cursor: pointer;
}
.wpcf7 label.file input {
	display: none;
}
.wpcf7 .wpcf7-not-valid-tip {
	position: absolute;
	top: 100%;
	left: 0;
	white-space: nowrap;
	font-size: 11px;
}
.wpcf7 .filename {
	margin-left: 1em;
}
.wpcf7 .photo {
	grid-template-columns: minmax(0, 1fr);
}
@media screen and (max-width: 800px) {
	.wpcf7 .required {
		width: 30px;
		height: 30px;
		font-size: 11px;
	}
	.wpcf7 dl {
		padding: 10px var(--px);
	}
	.wpcf7 dt {
		width: 100%;
		padding-right: 0;
		padding-bottom: 10px;
	}
	.wpcf7 dd {
		width: 100%;
		font-size: 12px;
	}
	.wpcf7 .wpcf7-radio {
		gap: 5px 15px;
	}
	.wpcf7 dd .note {
		font-size: 10px;
	}
	.wpcf7 .photo li {
		min-height: 50px;
		padding-right: 50px;
	}
	.wpcf7 .preview {
		width: 50px;
		height: 50px;
	}
}

/*------------------------------------------------------------
	Keyframes
------------------------------------------------------------*/

@-webkit-keyframes fadeInUpC {
	0%{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
	to{opacity:1;-webkit-transform:none;transform:none}
}
@keyframes fadeInUpC {
	0%{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}
	to{opacity:1;-webkit-transform:none;transform:none}
}
@-webkit-keyframes slideInUp20 {
	0%{-webkit-transform:translate3d(0,20vh,0);transform:translate3d(0,20vh,0)}
	to{-webkit-transform:none;transform:none}
}
@keyframes slideInUp20 {
	0%{-webkit-transform:translate3d(0,20vh,0);transform:translate3d(0,20vh,0)}
	to{-webkit-transform:none;transform:none}
}
@-webkit-keyframes slideInUp15 {
	0%{-webkit-transform:translate3d(0,15vh,0);transform:translate3d(0,15vh,0)}
	to{-webkit-transform:none;transform:none}
}
@keyframes slideInUp15 {
	0%{-webkit-transform:translate3d(0,15vh,0);transform:translate3d(0,15vh,0)}
	to{-webkit-transform:none;transform:none}
}

.fadeInUpC{
	-webkit-animation-name:fadeInUpC;
	animation-name:fadeInUpC;
	-webkit-animation-duration: 1.5s;
	-o-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-delay: .5s;
	-o-animation-delay: .5s;
	animation-delay: .5s;
}
.fadeInUpC{
	-webkit-animation-name:fadeInUpC;
	animation-name:fadeInUpC;
	-webkit-animation-duration: 1.5s;
	-o-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-delay: .5s;
	-o-animation-delay: .5s;
	animation-delay: .5s;
}
.slideInUp20{
	-webkit-animation-name:slideInUp20;
	animation-name:slideInUp20;
	-webkit-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
}
.slideInUp15{
	-webkit-animation-name:slideInUp15;
	animation-name:slideInUp15;
	-webkit-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
}

@media screen and (max-width: 800px) {
	.fadeInUpC{
		-webkit-animation-name:fadeInUpC;
		animation-name:fadeInUpC;
		-webkit-animation-duration: 1.5s;
		-o-animation-duration: 1.5s;
		animation-duration: 1.5s;
		-webkit-animation-delay: .3s;
		-o-animation-delay: .3s;
		animation-delay: .3s;
	}
}
