@charset "utf-8";

/* header
---------------------------*/
header {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	background-color: rgba(255,255,255,.8);
	width: 100%;
	height: 60px;
	padding: 10px 20px;
	position: fixed;
	top: 0;
	z-index: 20;
}
header h1 {
	max-width: 126px;
	position: relative;
	z-index: 3;
}
@media (any-hover: hover) {
	header h1 a:hover img {
		opacity: .6;
	}
}
@supports (backdrop-filter: blur(0)) {
	header {
		background-color: rgba(255,255,255,.7);
		backdrop-filter: blur(8px);
	}
}

/* navi */
body.fix-body {
	overflow: hidden;
}
#menu {
	display: none;
	width: 60px;
	height: 0;
	padding-top: 60px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
	overflow: hidden;
	cursor: pointer;
}
#menu::before,
#menu::after {
	display: block;
	content: "";
	background-color: var(--lt-point);
	width: 30px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .4s ease-out;
}
#menu::before {
	-webkit-transform: translate(-50%,calc(-50% - 4px));
	transform: translate(-50%,calc(-50% - 4px));
}
#menu::after {
	-webkit-transform: translate(-50%,calc(-50% + 4px));
	transform: translate(-50%,calc(-50% + 4px));
}
#menu.close-btn::before {
	-webkit-transform: translate(-50%,-50%) rotate(225deg);
	transform: translate(-50%,-50%) rotate(225deg);
}
#menu.close-btn::after {
	-webkit-transform: translate(-50%,-50%) rotate(-225deg);
	transform: translate(-50%,-50%) rotate(-225deg);
}
header dd,
header ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	gap: 10px 20px;
}
.g-navi a {
	font-size: .875rem;
	font-weight: 500;
	position: relative;
}
.g-navi a::after {
	display: block;
	content: "";
	background-color: var(--lt-point);
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: inherit;
}
.sns-navi a {
	max-width: 30px;
}
@media (any-hover: hover) {
	.g-navi a:hover::after {
		width: 100%;
	}
	.sns-navi a:hover img {
		opacity: .6;
	}
}
@media (max-width: 640px) {
	#menu {
		display: block;
	}
	header dd {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-pack: center;
		justify-content: center;
		background-color: #fff;
		width: 100vw;
		height: 100vh;
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
		transition: .4s ease-out;
		pointer-events: none;
	}
	header dd.open-menu {
		opacity: 1;
		pointer-events: auto;
	}
	header ul.g-navi {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-pack: center;
		justify-content: center;
		margin-bottom: 20px;
	}
}

/* top
---------------------------*/
/* Key Visual */
.top-kv {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	gap: 40px;
	width: 100vw;
	height: 100vh;
	min-height: 640px;
	padding-top: 60px;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.top-kv h2,.top-kv p {
	position: relative;
	z-index: 2;
}
.top-kv img {
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.5)) drop-shadow(2px 2px 10px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 3px rgba(0,0,0,.5)) drop-shadow(2px 2px 10px rgba(0,0,0,.5));
}
.top-kv h2 {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	max-width: 98px;
}
.top-kv h2 img {
	width: 50%;
}
.top-kv p {
	max-width: 156px;
}
.top-kv h2 img,
.top-kv p {
	opacity: 0;
	animation: topTitle 1000ms linear 600ms forwards;
}
.top-kv h2 img:nth-child(2) {
	animation-delay: 2000ms;
}
.top-kv p {
	animation-delay: 3000ms;
}
@keyframes topTitle {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.top-kv video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	pointer-events: none;
}
.top-kv::before {
	display: block;
	content: "";
	background-color: rgba(0,0,0,.1);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* 01 */
.top-01 h2,
.top-01 h3 {
	width: fit-content;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	margin: 0 auto;
	border-bottom: 2px dotted var(--dk-point);
}
.top-01-a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-pack: justify;
	align-items: center;
	gap: 62px;
	max-width: 442px;
	color: var(--lt-point);
	font-size: 1.125rem;
	font-weight: 700;
	text-align: right;
	margin: 0 auto;
}
.top-01-a figure {
	max-width: 180px;
}
.top-01-a ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: end;
	align-items: flex-end;
	gap: 20px;
}
.top-01-a li {
	background-color: #fff;
	text-align: left;
	line-height: 1.2;
	padding: 12px 20px 14px;
	position: relative;
	border-radius: 50px;
	transition: .4s var(--ease-poing);
	-webkit-transform-origin: -62px center;
	transform-origin: -62px center;
	-webkit-transform: scale(0);
	transform: scale(0);
}
.top-01-a ul.animated li {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.top-01-a li::before,
.top-01-a li::after {
	display: block;
	content: "";
	background-color: #fff;
	position: absolute;
	border-radius: 50%;
}
.top-01-a li::before {
	width: 18px;
	height: 18px;
	top: calc(50% - 9px);
	left: -28px;
}
.top-01-a li::after {
	width: 12px;
	height: 12px;
	top: calc(50% - 6px);
	left: -50px;
}
.top-01-a li:nth-child(1) {
	margin-right: 10px;
}
.top-01-a li:nth-child(2) {
	transition-delay: .2s;
}
.top-01-a li:nth-child(3) {
	margin-right: 20px;
	transition-delay: .4s;
}
.top-01-a li:nth-child(1)::after {
	top: calc(50% - 3px);
}
.top-01-a li:nth-child(3)::after {
	top: calc(50% - 9px);
}
@media (max-width: 640px) {
	.top-01-a {
		gap: 47px;
		font-size: 1rem;
	}
	.top-01-a figure {
		max-width: 110px;
	}
	.top-01-a ul {
		gap: 10px;
	}
	.top-01-a li {
		-webkit-transform-origin: -47px center;
		transform-origin: -47px center;
	}
	.top-01-a li::before {
		left: -23px;
	}
	.top-01-a li::after {
		left: -40px;
	}
}

/* Products */
.top-products h2 {
	max-width: 490px;
	margin: 0 auto;
}
.top-products-a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	gap: 60px;
	max-width: 575px;
	margin: 0 auto;
}
.top-products-a p:nth-child(1) {
	width: 110px;
}
.top-products-a p:nth-child(2) {
	width: calc(100% - 170px);
}
.top-products-b {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	gap: 20px;
}
@media (max-width: 640px) {
	.top-products h2 {
		max-width: 240px;
	}
	.top-products-a {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		gap: 40px;
	}
	.top-products-a p:first-child {
		width: 120px;
	}
	.top-products-a p:last-child {
		width: 100%;
	}
	.top-products-b {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: end;
		align-items: flex-end;
	}
}

/* Produnts
---------------------------*/
/* Products */
#products h2 img {
	max-width: 490px;
	margin: 0 auto;
}
#products .btn-01 {
	max-width: 652px;
	text-align: center;
	margin: 0 auto;
}
#products .btn-01 a {
	display: inline-block;
	width: auto;
}
.products-a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	gap: 60px;
	max-width: 652px;
	margin: 0 auto;
}
.products-a p {
	width: 130px;
}
.products-a dl {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
	gap: 16px;
	width: calc(100% - 190px);
}
.products-a dt {
	background-color: var(--lt-point);
	width: 123px;
	color: #fff;
	font-size: .875rem;
	font-weight: 700;
	text-align: center;
	padding: 2px 10px 4px;
	border-radius: 50px;
}
.products-a dd {
	width: calc(100% - 143px);
}
@media (max-width: 640px) {
	#products h2 img {
		max-width: 240px;
	}
	.products-a {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: center;
		align-items: center;
		gap: 40px;
	}
	.products-a p {
		width: 140px;
	}
	.products-a dl {
		width: 100%;
	}
}

/* Troubles */
#troubles .title-h2 {
	position: relative;
	z-index: 2;
}
.troubles-a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	width: calc(100% + 40px);
	position: relative;
	left: -20px;
	z-index: 1;
	overflow: hidden;
}
.troubles-a dl {
	padding: 0 20px;
	position: relative;
	z-index: 2;
}
.troubles-a dt {
	color: var(--dk-point);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	padding-left: 1em;
	position: relative;
}
.troubles-a dd+dt {
	margin-top: 1em;
}
.troubles-a dt::before {
	display: block;
	content: "\25CF";
	position: absolute;
	top: 0;
	left: 0;
}
.troubles-a figure {
	width: 180px;
	position: absolute;
	right: 50%;
	bottom: 0;
	z-index: 1;
	-webkit-transform: translateX(370px);
	transform: translateX(370px);
	pointer-events: none;
}
.troubles-a figure img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform-origin: 20% 31.7%;
	transform-origin: 20% 31.7%;
	-webkit-transform: rotate(-5deg);
	transform: rotate(-5deg);
	animation: swing 600ms ease-in-out 0s infinite alternate;
}
@keyframes swing {
	from {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
}
#troubles h3 {
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
}
#troubles h3 span {
	color: var(--dk-point);
}
.troubles-b {
	display: -webkit-box;
	display: flex;
	gap: 60px;
	max-width: 836px;
	margin: 0 auto;
}
.troubles-b figure {
	width: 410px;
	overflow: hidden;
	border-radius: 10px;
}
.troubles-b figure img {
	height: 100%;
	object-fit: cover;
}
.troubles-b p {
	width: calc(100% - 470px);
}
@media (max-width: 960px) {
	.troubles-b {
		gap: 40px;
	}
	.troubles-b figure {
		width: 300px;
	}
	.troubles-b p {
		width: calc(100% - 360px);
	}
}
@media (max-width: 640px) {
	#troubles h3 {
		font-size: 1.5rem;
		text-align: left;
	}
	.troubles-a {
		overflow: visible;
	}
	.troubles-a dd {
		padding-left: 1.125rem;
	}
	.troubles-a figure {
		width: 80px;
		top: -170px;
		right: 10px;
		bottom: auto;
		-webkit-transform: unset;
		transform: unset;
	}
	.troubles-b {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		gap: 40px;
	}
	.troubles-b figure {
		width: 100%;
	}
	.troubles-b p {
		width: 100%;
	}
}

/* Flow */
.flow-a {
	max-width: 720px;
	margin: 0 auto;
}
.flow-a li {
	padding-left: 160px;
	position: relative;
}
.flow-a li+li {
	margin-top: 10px;
}
.flow-a h3 {
	background-color: var(--lt-point);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px 20px 10px 100px;
	position: relative;
	border-radius: 100px;
}
.flow-a h3 span {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	background-color: #fff;
	width: 80px;
	height: calc(100% - 4px);
	color: var(--lt-point);
	font-size: .875rem;
	position: absolute;
	top: 2px;
	left: 2px;
	border-radius: 100px;
}
.flow-a p {
	padding: 20px 0 20px 100px;
	position: relative;
}
.flow-a p::before,
.flow-a p::after {
	display: block;
	content: "";
	position: absolute;
}
.flow-a p::before {
	background-color: var(--lt-point);
	width: 8px;
	height: calc(100% - 12px);
	top: 0;
	left: 38px;
}
.flow-a p::after {
	background: url("../img/products/ico_arrow.svg") center / contain no-repeat;
	width: 24px;
	height: 14px;
	bottom: 0;
	left: 30px;
}
.flow-a li:last-child p {
	padding: 20px 0 0 20px;
}
.flow-a li:last-child p::before,
.flow-a li:last-child p::after {
	display: none;
}
.flow-a figure {
	width: 140px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	border-radius: 10px;
	-webkit-filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
}
.flow-a figure img {
	height: 100%;
	object-fit: cover;
}
.flow-b {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	gap: 40px;
	max-width: 720px;
	margin: 0 auto;
}
.flow-b h3 {
	width: 100%;
	color: var(--lt-point);
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
}
.flow-b figure {
	width: 186px;
}
.flow-b p {
	width: calc(100% - 226px);
}
.flow-b span {
	display: block;
}
.flow-b span+span {
	margin-top: 1em;
}
@media (max-width: 640px) {
	.flow-a li {
		padding-left: 0;
	}
	.flow-a p {
		min-height: 124px;
	}
	.flow-a figure {
		width: 80px;
		height: 80px;
		top: auto;
		bottom: 24px;
		left: 2px;
		border: 5px solid var(--lt-point);
		border-radius: 50%;
		-webkit-filter: unset;
		filter: unset;
	}
	.flow-a li:last-child figure {
		display: none;
	}
	.flow-b {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		gap: 20px;
	}
	.flow-b h3 {
		font-size: 1.5rem;
	}
	.flow-b p {
		width: 100%;
	}
}

/* Area */
#area {
	max-width: 688px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.area-a {
	position: absolute;
	top: 20%;
	left: 6%;
	z-index: 2;
}
.area-a p {
	margin-top: 20px;
}
.area-b {
	position: relative;
	z-index: 1;
}
.area-b img:nth-child(n + 2) {
	width: 2.61%;
	position: absolute;
	opacity: 0;
	transition-duration: 0ms;
	transition-timing-function: var(--ease-poing);
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-transform: scale(0, 3);
	transform: scale(0, 3);
}
.area-b.animated img:nth-child(n + 2) {
	opacity: 1;
	transition-duration: 400ms;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}
.area-b img:nth-child(2) {
	bottom: 27.4%;
	left: 50%;
}
.area-b img:nth-child(3) {
	bottom: 27.4%;
	left: 44.8%;
}
.area-b img:nth-child(4) {
	bottom: 19.8%;
	left: 43.1%;
}
.area-b img:nth-child(5) {
	bottom: 27.4%;
	left: 38%;
}
.area-b img:nth-child(6) {
	bottom: 18.5%;
	left: 46.2%;
}
.area-b img:nth-child(7) {
	bottom: 14.5%;
	left: 50%;
}
.area-b img:nth-child(8) {
	bottom: 28.5%;
	left: 56.5%;
}
.area-b img:nth-child(9) {
	bottom: 18.5%;
	left: 57%;
}
.area-b img:nth-child(10) {
	bottom: 41%;
	left: 52.5%;
}
.area-b img:nth-child(11) {
	bottom: 40.7%;
	left: 57.5%;
}
.area-b img:nth-child(2) {
	bottom: 27.4%;
	left: 50%;
}
.area-b.animated img:nth-child(2) {
	transition-delay: 800ms;
}
.area-b.animated img:nth-child(3) {
	transition-delay: 1000ms;
}
.area-b.animated img:nth-child(4) {
	transition-delay: 1200ms;
}
.area-b.animated img:nth-child(5) {
	transition-delay: 1400ms;
}
.area-b.animated img:nth-child(6) {
	transition-delay: 1600ms;
}
.area-b.animated img:nth-child(7) {
	transition-delay: 1800ms;
}
.area-b.animated img:nth-child(8) {
	transition-delay: 2000ms;
}
.area-b.animated img:nth-child(9) {
	transition-delay: 2200ms;
}
.area-b.animated img:nth-child(10) {
	transition-delay: 2400ms;
}
.area-b.animated img:nth-child(11) {
	transition-delay: 2600ms;
}
@media (max-width: 430px) {
	#area {
		padding: 80px 0 0;
	}
	.area-a {
		background-color: rgba(255,255,255,.9);
		padding: 20px;
		margin-bottom: -330px;
		position: relative;
		top: auto;
		left: auto;
	}
	.area-b {
		width: 688px;
		margin-left: -172px;
	}
}

/* Lineup */
.lineup-a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1024px;
	margin: 0 auto;
}
.lineup-a li {
	width: calc((100% - 40px) / 3);
}
.lineup-a a {
	background-color: #fff;
	height: 100%;
	line-height: 1.4;
	padding: 20px;
	border-radius: 10px;
	-webkit-filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
}
.lineup-a h3 {
	background-color: var(--lt-point);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	padding: 8px 20px 10px;
	border-radius: 100px;
}
.lineup-a .prdt-g h3 {
	background-color: #03b665;	
}
.lineup-a h3 span {
	display: inline-block;
	font-size: .77em;
}
.lineup-a figure {
	max-width: 180px;
	margin: 20px auto;
}
.lineup-a dl {
	text-align: center;
}
.lineup-a a dt {
	color: var(--lt-point);
	font-size: 1.125rem;
	font-weight: 700;
}
.lineup-a .prdt-g a dt {
	color: #03b665;
}
.lineup-a a dd {
	color: var(--lt-text);
	margin-top: 10px;
}
@media (any-hover: hover) {
	.lineup-a a:hover {
		-webkit-filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
		filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
	}
}
@media (max-width: 960px) {
	.lineup-a li {
		width: calc((100% - 20px) / 2);
	}
}
@media (max-width: 640px) {
	.lineup-a li {
		width: 100%;
	}
	.lineup-a figure {
		max-width: 120px;
	}
}


/* Contact Button
---------------------------*/
.c-btn {
	padding-top: 60px;
	margin-top: -40px;
	overflow: hidden;
}
.c-btn a {
	background: var(--dk-back) url("../img/bg_contact.svg") center top / 30px repeat;
	padding: 0 20px;
}
.c-btn div {
	max-width: 710px;
	padding: 46px 0;
	margin: 0 auto;
	position: relative;
}
.c-btn div > * {
	position: relative;
	z-index: 1;
}
.c-btn p:nth-of-type(1) {
	color: var(--dk-point);
	font-size: 2rem;
	font-weight: 900;
}
.c-btn p:nth-of-type(2) {
	color: #fff;
	font-size: 1.125rem;
}
.c-btn p:nth-of-type(3) {
	background-color: #fff;
	max-width: 320px;
	color: var(--lt-point);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px 66px 12px 20px;
	margin-top: 20px;
	position: relative;
	border-radius: 100px;
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0,0,0,.2));
	filter: drop-shadow(2px 2px 3px rgba(0,0,0,.2));
	transition: .2s ease-out;
}
.c-btn p:nth-of-type(3)::after {
	display: block;
	content: "\25B6\FE0E";
	position: absolute;
	top: 50%;
	right: 20px;
	transition: inherit;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.c-btn figure {
	width: 280px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-filter: drop-shadow(3px 3px 10px rgba(0,0,0,.2));
	filter: drop-shadow(3px 3px 10px rgba(0,0,0,.2));
	transition: .2s ease-out;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}
.c-btn figure img {
	height: 100%;
	object-fit: contain;
}
@media (any-hover: hover) {
	.c-btn a:hover p:nth-of-type(3) {
		-webkit-filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
		filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
	}
	.c-btn a:hover p:nth-of-type(3)::after {
		right: 15px;
	}
	.c-btn a:hover figure {
		-webkit-transform: rotate(-1deg);
		transform: rotate(-1deg);
	}
}
@media (max-width: 640px) {
	.c-btn {
		padding-top: 0;
		margin-top: 0;
	}
	.c-btn div {
		padding: 40px 0;
	}
	.c-btn p:nth-of-type(1) {
		font-size: 1.5rem;
	}
	.c-btn p:nth-of-type(2) {
		font-size: 1rem;
	}
	.c-btn p:nth-of-type(3) {
		max-width: 250px;
		font-size: 1.125rem;
		padding: 10px 58px 12px 20px;
	}
	.c-btn figure {
		width: auto;
		height: 100%;
		top: 0;
		right: -20px;
		bottom: auto;
	}
}
@media (max-width: 466px) {
	.c-btn figure {
		width: 120px;
		height: auto;
		top: auto;
		right: -20px;
		bottom: 0;
	}
}

/* Contact
---------------------------*/
.contact-a {
	background-color: #fff;
	max-width: 860px;
	color: var(--lt-text);
	padding: 100px 20px;
	margin: 0 auto;
	border-radius: 10px;
	-webkit-filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
}
.contact-a .title-h2 span {
	color: var(--lt-point);
}
.tel-btn a {
	background-color: #fff;
	max-width: 280px;
	color: var(--lt-text);
	padding: 20px;
	margin: 60px auto;
	border-radius: 10px;
	-webkit-filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
}
@media (any-hover: hover) {
	.tel-btn a:hover {
		-webkit-filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
		filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
	}
}
.tel-btn dl {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
}
.tel-btn dt {
	font-size: 1.125rem;
	font-weight: 700;
}
.tel-btn dd:nth-of-type(1) {
	color: var(--lt-point);
	font-size: 1.5rem;
	font-weight: 700;
	padding-left: 21px;
	position: relative;
}
.tel-btn dd:nth-of-type(1)::before {
	display: block;
	content: "";
	background: url("../img/ico_tel.svg") center / contain no-repeat;
	width: 16px;
	height: 24px;
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
}
.tel-btn dd:nth-of-type(2) {
	font-size: .875rem;
}

/* From */
.contact-a form {
	max-width: 640px;
	margin: 0 auto;
}
.contact-a fieldset,
.contact-a label {
	display: -webkit-box;
	display: flex;
}
.contact-a fieldset+fieldset {
	margin-top: 20px;
}
.contact-a label {
	-webkit-box-align: center;
	align-items: center;
	cursor: pointer;
}
.contact-a fieldset p:first-child {
	width: 190px;
	font-weight: 700;
	position: relative;
}
.contact-a fieldset p:last-child {
	width: calc(100% - 190px);
}
.required::after {
	display: inline-block;
	content: "必須";
	background-color: #f30;
	color: #fff;
	font-size: .75rem;
	line-height: 1.2;
	padding: 1px 2px 2px;
	margin-left: 5px;
}
.contact-a fieldset input[type="text"],
.contact-a fieldset input[type="email"],
.contact-a fieldset input[type="tel"],
.contact-a fieldset textarea {
	width: 100%;
	font-size: 1rem;
	padding: 5px;
	border: 1px solid var(--lt-text);
}
.contact-a fieldset textarea {
	height: 180px;
}
.form-s {
	max-width: 236px;
}
.post-code {
	max-width: 100px;
}
.pp-check {
	margin: 60px 0 40px;
}
.pp-check label {
	-webkit-box-pack: center;
	justify-content: center;
}
.pp-check p:last-of-type {
	font-size: .75rem;
	text-align: center;
	margin-top: 10px;
}
.pp-check p:last-of-type a {
	display: inline;
	text-decoration: underline;
}
.contact-a input[type="submit"] {
	display: block;
	background-color: var(--lt-point);
	max-width: 240px;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	padding: 10px 20px;
	margin: 0 auto;
	border: 2px solid var(--lt-point);
	border-radius: 50px;
	-webkit-filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
	filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
	transition: .2s ease-out;
	cursor: pointer;
}
@media (any-hover: hover) {
	.contact-a input[type="submit"]:hover {
		background-color: #fff;
		color: var(--lt-point);
		-webkit-filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
		filter: drop-shadow(0 0 1px rgba(0,0,0,.3));
	}
}
.thanks-a .btn-01 {
	max-width: 180px;
	margin: 0 auto;
}
.wpcf7-list-item {
	display: block;
	margin: 0;
}
@media (max-width: 640px) {
	.contact-a fieldset {
		display: block;
	}
	.contact-a fieldset p:first-child,
	.contact-a fieldset p:last-child {
		width: 100%;
	}
	.contact-a fieldset p:last-child {
		margin-top: 10px;
	}
}

/* Privacy policy */
#privacypolicy {
	max-width: 680px;
	margin: 0 auto;
}
#privacypolicy p,
#privacypolicy dl {
	font-size: .875rem;
	text-align: justify;
}
#privacypolicy dt {
	font-size: 1rem;
	font-weight: 500;
}
#privacypolicy dt:nth-of-type(n + 2) {
	margin-top: 20px;
}
#privacypolicy li {
	position: relative;
	padding-left: 1em;
}
#privacypolicy li span {
	display: block;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
#privacypolicy dd+dd {
	margin-top: 20px;
}

/* footer
---------------------------*/
/* Profile */
#profile {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	background-color: var(--dk-back);
	color: #fff;
	padding: 100px 20px 130px;
	border-top: 10px solid #fff;
}
#profile a {
	display: inline;
	color: #fff;
}
#profile dl {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 2em 1em;
	max-width: 388px;
}
#profile dt {
	width: 6em;
	color: var(--dk-point);
	font-weight: 700;
	text-align: right;
}
#profile dd {
	width: calc(100% - 7em);
}

/* Site Map */
.f-navi {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px 40px;
	background-color: var(--lt-point);
	padding: 100px 20px 20px;
	position: relative;
}
.f-navi p {
	width: 100%;
}
.f-navi p a {
	max-width: 190px;
	margin: 0 auto;
}
.f-navi p img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.f-navi li {
	color: #fff;
	font-size: .875rem;
	position: relative;
	padding-left: 1em;
}
.f-navi li:nth-child(n + 2) {
	margin-top: .5em;
}
.f-navi li::before {
	display: block;
	content: "・";
	width: 1em;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.f-navi li a {
	width: fit-content;
	color: #fff;
	position: relative;
}
.f-navi li a::after {
	display: block;
	content: "";
	background-color: var(--dk-point);
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: inherit;
}
@media (any-hover: hover) {
	.f-navi p a:hover {
		opacity: .6;
	}
	.f-navi li a:hover {
		color: var(--dk-point);
	}
	.f-navi li a:hover::after {
		width: 100%;
	}
}
.f-navi.wv-ani::before {
	animation-direction: normal;
}
.f-navi.wv-ani::after {
	background-image: url("../img/obj_wave02.webp");
	animation-direction: reverse;
}
@media (max-width: 640px) {
	.f-navi {
		gap: 20px;
	}
	.f-navi p {
		margin-bottom: 20px;
	}
	.f-navi p a {
		max-width: 126px;
	}
	.f-navi ul {
		width: 100%;
		max-width: 220px;
	}
}

/* Copy */
footer > p {
	background-color: var(--lt-point);
	font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	color: #fff;
	text-align: center;
	padding: 20px 20px 100px;
}
footer > p small {
	font-size: 1rem;
}
@media (max-width: 640px) {
	footer > p {
		padding: 20px 20px 40px;
	}
}