@charset "utf-8";

:root {
	--colorText: #333;
	--colorTextGray: #83807f;
	--colorTextEx: #c00;
	--colorBlueGray: #283763;
	--colorBlueDeep: #182c69;
	--colorBlueLight: #054495;
	--colorBlueSky: #4169e1;
	--colorBlueLightDark: #033779;
	--colorOrange: #ed6d35;
	--colorOrangeDark: #be562a;
	--colorYellow: #e8bf00;
	--colorYellowDark: #ba9901;
	--colorWater: #ddebef;
	--colorGray: #ccc;
	--colorLightGray: #fafafa;
	--colorLineFG: #06c755;
	--colorLineFGDark: #090;
}
*,::before,::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	font-size: 10px;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	vertical-align: bottom;
	max-width: 100%;
}
ul {
	list-style: none;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	font-size: 1.6em;
	line-height: 1;
	color: var(--colorText);
}
strong {
	font-weight: inherit;
}
.center {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}
.pageTop {
	position: fixed;
	right: -100%;
	bottom: 10vh;
	z-index: 10000;
	background: var(--colorBlueLight);
	border-radius: .5em 0 0 .5em;
	padding: .5em;
	transition: .5s;
}
.pageTop a {
	color: var(--colorBlueLight);
	display: block;
	background: #fff;
	border-radius: 50%;
}
.pageTop a span {
	font-size: 2.5em;
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.center {
		width: 90%;
	}
}



/* .askBtn	********************************************************************************************************************************************************************************************************************************* */
.askBtn {
}
.askBtn.inquiry,
.askBtn.other {
	width: 100%;
	max-width: 450px;
	margin: 5% auto 0;
	position: relative;
}
.askBtn a,
input[type="submit"],
input[type="button"] {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	width: 100%;
	height: 50px;
	border-radius: 10px;
	position: relative;
	top: 0;
	transition: .5s;
}
.askBtn a:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	box-shadow: none !important;
	top: 3px;
}
.askBtn li:nth-child(1) a {
	background: var(--colorOrange);
	box-shadow: 0 3px 0 var(--colorOrangeDark);
}
.askBtn li:nth-child(2) a {
	background: var(--colorLineFG);
	box-shadow: 0 3px 0 var(--colorLineFGDark);
}
.askBtn li a span {
	font-size: .8em;
}
.mailform form .submit {
	border-radius: 10px;
}
.askBtn.inquiry a,
.askBtn.other a,
input[type="submit"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
	height: auto;
	line-height: 1;
	background: var(--colorBlueLight);
	font-size: 1.5em;
	padding: .75em 0;
	border: none;
	outline: none;
	box-shadow: 0 3px 0 var(--colorBlueLightDark);
	cursor: pointer;
}
.askBtn.inquiry a {
	background: var(--colorLineFG);
	box-shadow: 0 3px 0 var(--colorLineFGDark);
}
input[type="button"] {
	font-size: 1em;
}
.askBtn a::after,
.mailform form .submit::after {
	content: "";
	display: block;
	width: .5em;
	aspect-ratio: 1/1;
	border-top: .125em solid #fff;
	border-right: .125em solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - .25em);
	right: 10px;
}
.mailform form .submit::after {
	width: 1em;
	border-top: .25em solid #fff;
	border-right: .25em solid #fff;
	top: calc(50% - .5em);
	right: 1em;
	transition: .5s;
}
.mailform form .submit:hover::after {
	top: calc(50% - .5em + 3px);
}



/* header	********************************************************************************************************************************************************************************************************************************* */
body>header .center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
body>header figure {
	width: 400px;
}
body>header .tel dt,
body>header .tel dd:nth-of-type(2) {
	font-size: .875em;
}
body>header .tel dd:nth-of-type(1) {
	font-size: 2em;
	font-weight: 900;
	color: var(--colorBlueDeep);
	letter-spacing: .1em;
	margin: .25em 0;
}
body>header .tel dd a {
	display: flex;
	align-items: flex-end;
}
body>header .tel dd a::before {
	font-family: "Material Icons";
	content: "\e0b0";
}
body>header .tel dd a span {
	font-size: 1.25em;
}
body>header .askBtn {
	width: 300px;
	max-width: 25%;
	height: 110px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
body>header button {
	display: none;
}
body>header h1 {
	font-size: 1.75em;
	color: var(--colorBlueLight);
	font-weight: 400;
}
/* max 1600px	************************ */
@media (max-width: 1600px) {
	body>header .tel dd:nth-of-type(1) {
		font-size: 2vw;
	}
}
/* max 1400px	************************ */
@media (max-width: 1400px) {
	body>header .tel {
		font-size: 1vw;
	}
}
/* max 1200px	************************ */
@media (max-width: 1200px) {
	body>header .askBtn {
		font-size: calc(1vw / 3 * 4);
	}
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	body>header {
		background: linear-gradient(180deg,#fff 25%,#fffd 75%,#fffb);
		position: sticky;
		top: 0;
		z-index: 9999;
	}
	body>header .center {
		width: 100%;
		padding: 2vw;
	}
	body>header figure {
		width: auto;
		height: 6.5vw;
	}
	body>header figure img {
		max-height: 100%;
	}
	body>header .tel {
		margin-left: auto;
	}
	body>header .tel dt,
	body>header .tel dd:nth-of-type(2),
	body>header .askBtn {
		display: none;
	}
	body>header .tel dd:nth-of-type(1) {
		color: #fff;
		font-size: 1vw;
		font-weight: 400;
		letter-spacing: 0;
		margin: 0;
	}
	body>header .tel dd a {
		align-items: center;
		justify-content: center;
		flex-flow: column;
		background: var(--colorOrange);
		border-radius: 3px;
		box-shadow: 0 2px 0 var(--colorOrangeDark);
		height: 6.5em;
		aspect-ratio: 1/1;
		position: relative;
		top: 0;
		transition: .5s;
	}
	body>header .tel dd a:active {
		top: 2px;
		box-shadow: none;
	}
	body>header .tel dd a::before {
		font-size: 4em;
	}
	body>header .tel dd a::after {
		content: "TEL";
		font-size: 1.5em;
		letter-spacing: .1em;
	}
	body>header .tel dd a span {
		display: none;
	}
	body>header button {
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		background: var(--colorBlueLight);
		border: none;
		outline: none;
		padding: 0;
		margin-left: 2%;
		-webkit-appearance: none;
		border-radius: 3px;
		box-shadow: 0 2px 0 var(--colorBlueLightDark);
		height: 6.5vw;
		aspect-ratio: 1/1;
		position: relative;
		top: 0;
		transition: .5s;
	}
	body>header button:active {
		top: 2px;
		box-shadow: none;
	}
	body>header button span,
	body>header button span::before,
	body>header button span::after {
		display: block;
		background: #fff;
		height: 2px;
		transition: .5s;
	}
	body>header button span {
		width: 60%;
		position: relative;
	}
	body>header button span::before,
	body>header button span::after {
		content: "";
		width: 100%;
		position: absolute;
		left: 0;
	}
	body>header button span::before {
		bottom: 1.4vw;
	}
	body>header button span::after {
		top: 1.4vw;
	}
/* 
	body>header button.on span {
		background: transparent;
	}
	body>header button.on span::before {
		bottom: 0;
		transform: rotate(-315deg);
	}
	body>header button.on span::after {
		top: 0;
		transform: rotate(315deg);
	}
	 */
}
/* max 600px	************************ */
@media (max-width: 600px) {
	body>header figure,
	body>header .tel dd a,
	body>header button {
		height: 39px;
	}
	body>header .tel dd:nth-of-type(1) {
		font-size: 6px;
	}
	body>header button span::before {
		bottom: calc(6px * 1.4);
	}
	body>header button span::after {
		top: calc(6px * 1.4);
	}
	body>header h1 {
		font-size: calc(28vw / 6)
	}
}



/* .title	********************************************************************************************************************************************************************************************************************************* */
.title {
	width: 100%;
	aspect-ratio: 8/5;
	background: url(../_img/top.webp) center top 30%/cover;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	font-size: calc(10vw / 12);
	position: relative;
}
.title h1 {
	font-size: 1em;
	font-weight: 900;
	display: flex;
	flex-flow: column;
	align-items: center;
	position: relative;
}
.title h1::before,
.title h1::after {
	content: "";
	display: block;
	height: 50%;
	position: absolute;
	top: 9em;
	z-index: 9998;
}
.title h1::before {
	background: url(../_img/kikuzo_r.webp) center/cover;
	aspect-ratio: 381/342;
	left: 0;
}
.title h1::after {
	background: url(../_img/usagi.webp) center/cover;
	aspect-ratio: 203/342;
	right: 0;
}
.title h1>span {
	font-size: 8em;
}
.title h1 .h11 {
	color: var(--colorBlueLight);
	display: flex;
	justify-content: center;
	gap: .125em;
	margin-bottom: 1.5%;
}
.title h1 .h11 span {
	background: #fff;
	border: 1px solid var(--colorBlueLight);
	border-radius: .125em;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .125em;
	padding-top: 0;
	aspect-ratio: 1/1;
}
.title h1 .h12 {
	color: var(--colorBlueDeep);
	border-bottom: .125em dotted var(--colorBlueDeep);
	margin-bottom: 2.5%;
	padding-bottom: 1%;
}
.title p:nth-of-type(1) {
	background: var(--colorOrange);
	color: #fff;
	font-size: 3em;
	font-weight: 700;
	padding: .75em .5em;
	margin-top: -10%;
	margin-bottom: 2.5%;
	position: relative;
	order: -1;
}
.title p:nth-of-type(1)::after {
	content: "";
	display: block;
	border-top: .5em solid var(--colorOrange);
	border-right: .5em solid transparent;
	border-left: .5em solid transparent;
	position: absolute;
	top: 100%;
	left: calc(50% - .5em);
}
.title p:nth-of-type(1) br {
	display: none;
}
.title p:nth-of-type(2) {
	background: #fff;
	color: var(--colorBlueDeep);
	border: 3px solid var(--colorBlueDeep);
	border-radius: 9999px;
	font-size: 2.6em;
	font-weight: 700;
	padding: .5em 1em;
}
.title p:nth-of-type(2) strong {
	color: var(--colorOrange);
}
.title figure {
	width: 150px;
	max-width: 15%;
	position: absolute;
	top: .75em;
	left: .75em;
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.title {
		aspect-ratio: initial;
		background: none;
		overflow: hidden;
		justify-content: flex-start;
	}
	.title::before {
		content: "";
		display: block;
		background: url(../_img/top_m.webp) no-repeat center/cover;
		aspect-ratio: 1440/1875;
		height: 125%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.title h1::before,
	.title h1::after {
		height: 50%;
		top: -17.5%;
	}
	.title h1::before {
		left: auto;
		right: 20%;
	}
	.title h1::after {
		right: 5%;
	}
	.title h1>span {
		font-size: 11vw;
	}
	.title h1 .h11 {
		flex-flow: wrap;
		justify-content: center;
		margin-bottom: .25em;
	}
	.title h1 .h11 span:nth-child(3) {
		margin-right: calc(33vw + 1.25em);
	}
	.title h1 .h12 {
		margin-right: auto;
		margin-left: 5%;
	}
	.title p:nth-of-type(1) {
		text-align: center;
		line-height: 1.25;
		font-size: 5vw;
		padding: .5em;
		margin: 1em 0;
	}
	.title p:nth-of-type(1) br {
		display: inline;
	}
	.title p:nth-of-type(2) {
		font-size: 4.5vw;
		letter-spacing: .1em;
		line-height: 1.25;
/* 
		width: 15.0625em;
		border-radius: .75em;
		padding: .5em .75em;
		position: absolute;
		right: 5%;
		bottom: 25%;
		 */
	}
	.title p:nth-of-type(2)>span:first-of-type {
		display: none;
	}
	.title p:nth-of-type(2)>strong::after {
		content: "\A";
		white-space: pre;
	}
	.title figure {
		top: auto;
		left: auto;
		bottom: 2%;
		right: 2%;
		max-width: none;
		width: 20%;
	}
}
/* max 600px and max 9/16	************************ */
@media (max-width: 600px) and (max-aspect-ratio: 9/16) {
	.title p:nth-of-type(2) {
		width: 15.0625em;
		font-size: 4.5vw;
		line-height: 1.75;
		letter-spacing: .1em;
		border-radius: .75em;
		padding: .5em .75em;
		position: absolute;
		right: 5%;
		bottom: 25%;
	}
	.title p:nth-of-type(2)::after {
		content: "";
		display: block;
		background: url(../_img/17459_color.webp) center/cover;
		width: 22.5%;
		aspect-ratio: 544/548;
		position: absolute;
		right: 3%;
		bottom: -1em;
	}
	.title p:nth-of-type(2)>strong::after {
		display: none;
	}
	.title p:nth-of-type(2)>strong span::after,
	.title p:nth-of-type(2)>span:last-of-type::after {
		content: "\A";
		white-space: pre;
	}
	.title figure {
		width: 30%;
	}
}



/* nav.global	********************************************************************************************************************************************************************************************************************************* */
nav.global {
	background: var(--colorBlueLight);
	color: #fff;
	font-size: 1.25em;
	width: 100%;
	position: relative;
	top: 0;
	z-index: 9999;
	transition: .5s;
}
nav.global ul {
	display: flex;
}
nav.global ul li {
	width: 20%;
}
nav.global ul li a {
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1.25;
	padding: .5em 0 1.5em;
	position: relative;
}
nav.global ul li a::after {
	content: "";
	display: block;
	width: .5em;
	aspect-ratio: 1/1;
	border-right: .125em solid #fff;
	border-bottom: .125em solid #fff;
	transform: rotate(45deg);
	position: absolute;
	bottom: .75em;
	left: calc(50% - .25em);
	transition: .5s;
}
nav.global ul li a:hover::after {
	width: 1em;
	border-right: .25em solid #fff;
	border-bottom: .25em solid #fff;
	left: calc(50% - .5em);
	bottom: .5em;
}
nav.global ul li a span.pcdel {
	display: none;
}
nav.global ul li:nth-child(5) a span.mindel {
	font-size: .75em;
}
nav.global.min {
	font-size: calc(20vw / 15);
	position: fixed;
}
nav.global.min ul li a br,
nav.global.min ul li a span.mindel {
	display: none;
}
/* max 1200px	************************ */
@media (max-width: 1200px) {
	nav.global {
		font-size: calc(20vw / 12);
	}
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	nav.global {
		background: #fffe;
		color: var(--colorBlueLight);
		position: fixed;
		left: 100%;
		bottom: 0;
		font-size: 2.5vw;
		padding-top: 15vh;
		transition: .5s;
	}
	nav.in {
		left: 0;
	}
	nav.global ul.center {
		flex-flow: column;
		border-top: 2px solid var(--colorBlueLight);
		width: 100%;
		max-width: none;
	}
	nav.global ul li {
		width: 100%;
		border-bottom: 2px solid var(--colorBlueLight);
	}
	nav.global ul li a {
		display: block;
		height: auto;
		padding: 1em 3em 1em 1.25em;
		text-align: left;
		line-height: 1.25;
		position: relative;
	}
	nav.global ul li a::before {
		content: "";
		display: block;
		background: var(--colorBlueLight);
		width: 1.5em;
		aspect-ratio: 1/1;
		border-radius: 50%;
		position: absolute;
		bottom: calc(50% - .75em);
		right: 2%;
	}
	nav.global ul li a::after {
		width: 1.5em;
		border-right: .25em solid #fff;
		border-bottom: .25em solid #fff;
		bottom: calc(50% - .625em);
		left: auto;
		right: 2%;
		transform: rotate(45deg) scale(.375);
		transition: none;
	}
	nav.global ul li a:hover::after {
		width: .5em;
		border-right: .125em solid #fff;
		border-bottom: .125em solid #fff;
		bottom: calc(50% - .15em);
		left: auto;
	}
	nav.global ul li a br {
		display: none;
	}
	nav.global ul li:nth-child(5) a br {
		display: inline;
	}
	nav.global ul li:nth-child(5) a br.spdel {
		display: none;
	}
	nav.global ul li a span.pcdel {
		display: inline;
	}
	nav.global ul li:nth-child(5) a span.mindel {
		font-size: .65em;
	}
	nav.global::before {
		content: "";
		display: block;
		background: url(../_img/logo.webp) center/cover;
		height: 5vh;
		aspect-ratio: 1024/174;
		position: absolute;
		top: 2.5vh;
		left: 2.5vh;
	}
	nav.global button {
		border: none;
		outline: none;
		background: none;
		width: 5vh;
		aspect-ratio: 1/1;
		display: flex;
		position: absolute;
		top: 2.5vh;
		right: 2.5vh;
	}
	nav.global button span {
		width: 100%;
		height: 2px;
		margin: auto;
		position: relative;
	}
	nav.global button span::before,
	nav.global button span::after {
		content: "";
		display: block;
		background: var(--colorBlueLight);
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	nav.global button span::before {
		transform: rotate(45deg);
	}
	nav.global button span::after {
		transform: rotate(-45deg);
	}
}
/* max 800px	************************ */
@media (max-width: 800px) {
	nav.global {
		font-size: 20px;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	nav.global::before {
		width: 62.5%;
		height: auto;
	}
}
/* max 400px	************************ */
@media (max-width: 400px) {
	nav.global {
		font-size: 4.75vw;
	}
}



/* main	********************************************************************************************************************************************************************************************************************************* */
main>.askBtn {
	display: flex;
	justify-content: space-evenly;
	padding: 2% 0;
	background: #fffc;
	position: sticky;
	bottom: 0;
	z-index: 9998;
}
main>.askBtn li {
	width: 47%;
}
main>.askBtn li a {
	font-size: 4vw;
	height: auto;
	padding: 1em 0;
}
main>.askBtn li a span {
	display: none;
}
main>section,
main>aside {
	padding: 75px 0 100px;
}
main>section.merit,
main>section.flow,
main>aside.partner {
	background: var(--colorWater);
}
main>section.about {
	background: var(--colorBlueSky);
}
main>section.ask {
	background: var(--colorBlueLight);
}
main>section.mailform {
	background: var(--colorLightGray);
}
main>section h2,
main>aside h2 {
	font-size: 2.8125em;
	font-weight: 700;
	text-align: center;
	line-height: 1.25;
	margin-bottom: 1.5em;
}
main>section h2 strong,
main>aside h2 strong {
	color: var(--colorOrange);
	font-size: calc(1em / 3 * 4);
	font-weight: 900;
}
/* max 800px	************************ */
@media (max-width: 800px) {
	main>section h2,
	main>aside h2 {
		font-size: 5.625vw;
	}
}
/* max 600px	************************ */
@media (max-width: 600px) {
	main>.askBtn {
		margin-bottom: 20vw;
	}
	main>section.about {
		padding: 75px 0 100px;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	main>section,
	main>section.about {
		padding: 15.625% 0 20.825%;
	}
}



/* .news	********************************************************************************************************************************************************************************************************************************* */
.news {
	padding: 50px 0 75px;
}
.news h2 {
	font-size: 2.5em;
	color: var(--colorTextGray);
	margin-bottom: 1em;
}
.news ul {
	width: 90%;
	max-width: 800px;
	line-height: 1.4;
	margin: 0 auto;
	border-radius: 10px;
	border: .25em solid var(--colorTextGray);
	padding: 3.5% 5%;
	display: flex;
	flex-flow: column;
}
.news ul li {
	display: flex;
}
.news ul li:nth-child(n+2) {
	margin-top: 3.5%;
}
.news ul li time {
	width: 6em;
	color: var(--colorOrange);
}
.news ul li p {
	width: calc(100% - 6em);
}
.news ul li p a {
	text-decoration: underline;
}
.news ul li p a:hover {
	text-decoration: none;
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.news ul li {
		flex-flow: column;
	}
	.news ul li time,
	.news ul li p {
		width: 100%;
	}
}



/* .merit	********************************************************************************************************************************************************************************************************************************* */
.merit dl {
	display: flex;
	background: #fff;
	border: 2px solid var(--colorBlueGray);
	border-radius: 10px;
	max-width: 950px;
	margin: 0 auto;
	padding: 3% 2%;
	overflow: hidden;
	position: relative;
}
.merit dl:nth-of-type(n+2) {
	margin-top: 2.5%;
}
.merit dl::after {
	content: "";
	display: block;
	flex-grow: 1;
	width: 30%;
	aspect-ratio: 3/2;
	/* background: radial-gradient(closest-side,#fcc 50%,transparent 51%) repeat center/5px 5px; */
	background-repeat: no-repeat,repeat,repeat;
	background-position: center,0 0, 6px 6px;
}
.merit dl:nth-of-type(1):after {
	background-image: url(../_img/13686_color.webp),radial-gradient(closest-side,#fcc 40%,transparent 41%),radial-gradient(closest-side,#fcc 40%,transparent 41%);
	background-size: auto 80%,12px 12px,12px 12px;
}
.merit dl:nth-of-type(2):after {
	background-image: url(../_img/9226_color.webp),radial-gradient(closest-side,#fcc 40%,transparent 41%),radial-gradient(closest-side,#fcc 40%,transparent 41%);
	background-size: 75%,12px 12px,12px 12px;
}
.merit dl:nth-of-type(3):after {
	background-image: url(../_img/8205_color.webp),radial-gradient(closest-side,#fcc 40%,transparent 41%),radial-gradient(closest-side,#fcc 40%,transparent 41%);
	background-size: auto 80%,12px 12px,12px 12px;
}
.merit dl>div {
	width: 60%;
	margin-right: 2%;
}
.merit dl dt {
	color: var(--colorBlueLight);
	font-size: 1.875em;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1em;
	line-height: 1.4;
}
.merit dl dt>span {
	display: flex;
	width: 2.5em;
	aspect-ratio: 1/1;
	color: #fff;
	padding: .25em;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.merit dl dt>span::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	border-top: 2.5em solid var(--colorBlueLight);
	border-right: 2.5em solid transparent;
	width: 0;
	height: 0;
}
.merit dl dd {
	font-size: 1.125em;
	line-height: calc(5 / 3);
	text-align: justify;
}
.merit dl dd p:nth-child(n+2) {
	margin-top: 1em;
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	.merit dl dt>span {
		font-size: 3vw;
	}
}
/* max 800px	************************ */
@media (max-width: 800px) {
	.merit dl {
		flex-flow: column;
		align-items: center;
	}
	.merit dl::after {
		width: 50%;
	}
	.merit dl dd {
		order: 1;
		padding: 1em;
	}
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.merit dl dt>span {
		font-size: 18px;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	.merit dl dt {
		margin-top: .5em;
		font-size: calc(30vw / 4.8);
	}
}



/* .about	********************************************************************************************************************************************************************************************************************************* */
.about .center>h2 {
	color: var(--colorYellow);
	font-size: 40px;
	max-width: 1000px;
	margin: 7.5% auto;
}
.about .center>h2 br:nth-of-type(1) {
	display: none;
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	.about .center>h2 br:nth-of-type(1) {
		display: inline;
	}
}
/* max 700px	************************ */
@media (max-width: 700px) {
	.about .center>h2 {
		font-size: calc(40vw / 7);
	}
}



/* .about .aboutAbout	********************************************************************************************************************************************************************************************************************************* */
.about .aboutAbout {
	max-width: 1000px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	padding: 5% 0;
	position: relative;
}
.about .aboutAbout h2 {
	width: 90%;
	margin: 0 auto 5%;
	font-size: 1em;
	display: flex;
	flex-flow: column;
	align-items: center;
}
.about .aboutAbout h2 span {
	font-size: 1em;
	font-weight: 400;
}
.about .aboutAbout h2 span:nth-child(1) {
	font-size: 1.5em;
}
.about .aboutAbout h2 span:nth-child(1)::before {
	content: "\5c";
}
.about .aboutAbout h2 span:nth-child(1)::after {
	content: "/";
}
.about .aboutAbout h2 span:nth-child(2) {
	font-size: 2.25em;
	margin-top: .5em;
}
.about .aboutAbout h2+div {
	background: var(--colorWater);
	width: 90%;
	margin: 0 auto;
	font-size: 1.25em;
	text-align: justify;
	padding: .5em 1em;
	line-height: 1.5;
	letter-spacing: .05em;
}
.about .aboutAbout h2+div p:nth-child(n+2) {
	margin-top: 1em;
}
.about .aboutAbout figure {
	width: 95%;
	margin: 5% auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.about .aboutAbout figure img {
	width: 49.5%;
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.about .aboutAbout h2 span:nth-child(1) {
		font-size: 4vw;
	}
	.about .aboutAbout h2 span:nth-child(2) {
		font-size: 6vw;
	}
	.about .aboutAbout figure {
		flex-flow: column;
		gap: 2em;
	}
	.about .aboutAbout figure img {
		width: 100%;
	}
}



/* .about .aboutStart	********************************************************************************************************************************************************************************************************************************* */
.about .aboutStart {
	max-width: 1000px;
	margin: 0 auto;
	border: 3px solid #fff;
	border-radius: 10px;
	color: #fff;
}
.about .aboutStart h3 {
	font-size: 2.5em;
	font-weight: 700;
	text-align: center;
	line-height: 1.25;
	margin-top: -1.5em;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 1.25em;
}
.about .aboutStart h3>* {
	background: var(--colorBlueSky);
}
.about .aboutStart h3 strong {
	padding-left: .25em;
	color: var(--colorYellow);
	font-size: calc(1em / 3 * 4);
	font-weight: 900;
}
.about .aboutStart h3 span {
	padding-right: .25em;
}
.about .aboutStart h3::after {
	content: "";
	display: block;
	width: 12.5%;
	aspect-ratio: 1/1;
	background: var(--colorBlueSky) url(../_img/kikuzo_l.webp) no-repeat left center/contain;
	margin: 0 0 -.6em;
}
.about .aboutStart div {
	font-size: 1.375em;
	line-height: 1.75;
	text-align: justify;
	padding: 0 2.5% 5%;
}
.about .aboutStart div p:nth-child(n+2) {
	margin-top: 1em;
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	.about .aboutStart h3 {
		font-size: 4vw;
	}
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.about .aboutStart {
		border: none;
		margin-top: 25%;
	}
	.about .aboutStart h3 {
		font-size: 4.5vw;
		margin-top: 0;
		display: block;
		text-align: center;
		position: relative;
	}
	.about .aboutStart h3 strong,
	.about .aboutStart h3 span {
		padding: 0;
	}
	.about .aboutStart h3::after {
		width: 25%;
		aspect-ratio: 381/342;
		background: url(../_img/kikuzo_l.webp) center/cover;
		margin: 0;
		position: absolute;
		bottom: 100%;
		right: 0;
	}
	.about .aboutStart p {
		padding: 0;
	}
}



/* .about .aboutEx	********************************************************************************************************************************************************************************************************************************* */
.about .aboutEx {
	max-width: 1000px;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	margin-top: 7.5%;
	padding: 5% 0;
	position: relative;
}
.about .aboutEx h3 {
	color: #fff;
	text-align: center;
	font-size: 1.875em;
}
.about .aboutEx h3 span {
	display: inline-block;
	background: var(--colorOrange);
	padding: .5em 2em;
	border-radius: 9999px;
}
.about .aboutEx>dl {
	display: flex;
	border: 3px solid var(--colorBlueLight);
	width: 80%;
	margin: 5% auto;
}
.about .aboutEx>dl>dt {
	background: var(--colorBlueLight);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.625em;
	width: 6em;
}
.about .aboutEx>dl>dd {
	width: calc(100% - 6em);
	padding: 1em;
}
.about .aboutEx>dl>dd dl {
}
.about .aboutEx>dl>dd dl dt {
	color: var(--colorBlueLight);
	font-size: 1.5em;
	line-height: 1.25;
}
.about .aboutEx>dl>dd dl dd {
	font-size: 1.25em;
	line-height: 1.25;
	margin-top: .5em;
	margin-left: 1em;
	text-indent: -1em;
}
.about .aboutEx figure:nth-of-type(1) {
	width: 80%;
	margin: 0 10%;
}
.about .aboutEx table.ex {
	width: 100%;
	border-collapse: collapse;
}
.about .aboutEx table.ex caption {
	caption-side: bottom;
	text-align: left;
	line-height: 1.25;
	background: var(--colorYellow);
	padding: 0 .5em .5em;
	margin-top: .5em;
}
.about .aboutEx table.ex caption dl {
	display: flex;
	align-items: baseline;
	margin-top: .5em;
}
.about .aboutEx table.ex caption dl dt {
	margin-right: .25em;
	font-weight: 900;
}
.about .aboutEx table.ex>*:not(caption) {
	font-size: 1.25em;
}
.about .aboutEx table.ex thead {
	background: var(--colorBlueSky);
	color: #fff;
}
.about .aboutEx table.ex tfoot,
.about .aboutEx table.ex td:has(small) {
	position: relative;
	z-index: 1;
}
.about .aboutEx table.ex tfoot {
	bottom: 2px;
}
.about .aboutEx table.ex tfoot::before,
.about .aboutEx table.ex td:has(small)::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.about .aboutEx table.ex tfoot::before {
	background: var(--colorOrange);
	opacity: .2;
}
.about .aboutEx table.ex td:has(small)::before {
	background: var(--colorYellow);
}
.about .aboutEx table.ex th,
.about .aboutEx table.ex td {
	border: 2px solid var(--colorBlueDeep);
}
.about .aboutEx table.ex th {
	padding: .5em 0;
}
.about .aboutEx table.ex tr :first-child {
	width: 50%;
}
.about .aboutEx table.ex tr :nth-child(n+2) {
	width: 25%;
}
.about .aboutEx table.ex td {
	padding: .5em 1.5em;
	text-align: right;
}
.about .aboutEx table.ex td strong {
	color: var(--colorTextEx);
	font-weight: 700;
}
.about .aboutEx table.ex td small {
	font-size: .75em;
	font-weight: 900;
	margin-right: .5em;
}
/* max 1010px	************************ */
@media (max-width: 1010px) {
	.about .aboutEx table.ex td {
		padding: .5em;
	}
}
/* max 800px	************************ */
@media (max-width: 800px) {
	.about .aboutEx>dl {
		flex-flow: column;
	}
	.about .aboutEx>dl>dt,
	.about .aboutEx>dl>dd {
		width: 100%;
	}
	.about .aboutEx>dl>dt {
		padding: .75em 0;
	}
	.about .aboutEx table.ex th,
	.about .aboutEx table.ex td {
		line-height: 1.25;
		padding: .5em;
	}
	.about .aboutEx table.ex tr :first-child {
		width: auto;
	}
	.about .aboutEx table.ex tr :nth-child(n+2) {
		width: auto;
		white-space: nowrap;
	}
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.about .aboutEx {
		margin-top: 35%;
	}
	.about .aboutEx::before {
		content: "";
		display: block;
		width: 30%;
		aspect-ratio: 646/718;
		background: url(../_img/11451_color.webp) no-repeat left center/contain;
		position: absolute;
		bottom: 100%;
		right: 0;
	}
	.about .aboutEx table.ex thead tr td {
		display: none; 
	}
	.about .aboutEx table.ex :not(thead) tr>* {
		border-top: none;
	}
	.about .aboutEx table.ex tr {
		display: flex;
		flex-flow: wrap;
	}
	.about .aboutEx table.ex tr :first-child {
		width: 100%;
	}
	.about .aboutEx table.ex tr :nth-child(n+2) {
		width: 50%;
	}
	.about .aboutEx table.ex tr :nth-child(2) {
		border-right:none;
	}
}
/* max 429px	************************ */
@media (max-width: 429px) {
	.about .aboutEx table.ex>*:not(caption) {
		font-size: 1em;
	}
}



/* .about .aboutMerit	********************************************************************************************************************************************************************************************************************************* */
.about .aboutMerit {
	margin-top: 10%;
}
.about .aboutMerit h3 {
	color: var(--colorYellow);
	font-size: 2.25em;
	line-height: 1.75;
	text-align: center;
	position: relative;
}
.about .aboutMerit h3::before {
	content: "";
	display: block;
	background: url(../_img/usagi.webp) center/cover;
	height: 70%;
	aspect-ratio: 203/342;
	position: absolute;
	top: 0;
	left: 15%;
}
.about .aboutMerit h3 span:nth-of-type(2) {
	border-bottom: .15em dotted var(--colorYellow);
}
.about .aboutMerit h3 span:nth-of-type(2) br:nth-of-type(2) {
	display: none;
}
.about .aboutMerit h3 strong::before {
	content: "“";
}
.about .aboutMerit h3 strong::after {
	content: "”";
}
.about .aboutMerit .meritWrap {
	color: #fff;
	max-width: 950px;
	margin: 0 auto;
	counter-reset: number 0;
	position: relative;
}
.about .aboutMerit .meritWrap::before {
	content: "";
	display: block;
	background: url(../_img/17069_color.webp) center/cover;
	width: 284px;
	aspect-ratio: 730/485;
	position: absolute;
	top: 6em;
	right: 5%;
}
.about .aboutMerit .meritWrap dl {
	margin-top: 5%;
}
.about .aboutMerit .meritWrap dl::before {
	counter-increment: number 1;
	content: "メリット" counter(number);
	font-size: 1.125em;
	background: var(--colorOrange);
	display: inline-block;
	padding: .5em 1em;
	border-radius: 9999px;
}
.about .aboutMerit .meritWrap dl dt {
	font-size: 1.875em;
	font-weight: 700;
	line-height: 1.25;
	margin-top: 1em;
}
.about .aboutMerit .meritWrap dl dt br {
	display: none;
}
.about .aboutMerit .meritWrap dl dd {
	width: 80%;
	font-size: 1.125em;
	margin-top: 1.25em;
	line-height: 1.5;
}
.about .aboutMerit .meritWrap dl dd p:nth-child(n+2) {
	margin-top: 1em;
}
.about .aboutMerit .reason {
	max-width: 1000px;
	margin: 12.5% auto 0;
	border: 5px solid var(--colorYellow);
	border-top: none;
	border-radius: 10px;
	background: #fff;
	padding-bottom: 5%;
	position: relative;
	z-index: 1;
}
.about .aboutMerit .reason::before {
	content: "";
	display: block;
	background: url(../_img/17484_color.webp) center/cover;
	height: 178px;
	aspect-ratio: 538/548;
	position: absolute;
	bottom: calc(100% - 5px);
	right: 3%;
	z-index: -1;
}
.about .aboutMerit .reason h4 {
	background: var(--colorYellow);
	color: #fff;
	font-size: 2.25em;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	padding: .5em 0;
	margin-bottom: 1em;
}
.about .aboutMerit .reason p {
	font-size: 1.125em;
	line-height: 1.5;
	margin: 0 5% 1em;
}
.about .aboutMerit .reason>dl {
	display: flex;
	flex-flow: wrap;
	font-size: 1.125em;
	line-height: 1.5;
	margin: 0 5% 1em;
}
.about .aboutMerit .reason>dl dt {
	width: 100%;
}
.about .aboutMerit .reason>dl dt::before {
	content: "（";
}
.about .aboutMerit .reason>dl dt::after {
	content: "）";
}
.about .aboutMerit .reason>dl dd {
	margin-right: 3em;
}
.about .aboutMerit .reason>dl dd::before {
	content: "●";
	color: var(--colorYellow);
	font-size: .75em;
	margin-right: .5em;
}
.about .aboutMerit .reason figure {
	margin: 5% 5% 0;
}
.about .aboutMerit .reason figure figcaption {
	font-size: 1.125em;
	line-height: 1.5;
}
.about .aboutMerit .reason figure figcaption dl {
	display: flex;
	margin-bottom: .5em;
	line-height: 1.25;
}
.about .aboutMerit .reason figure figcaption dl dt {
	font-weight: 700;
	white-space: nowrap;
}
.about .aboutMerit .reason figure figcaption dl dt::before {
	content: "【";
}
.about .aboutMerit .reason figure figcaption dl dt::after {
	content: "】";
}
.about .aboutMerit .reason figure figcaption dl dd {
	margin-left: 1em;
	text-indent: -1em;
}
.about .aboutMerit .reason figure figcaption dl dd::before {
	content: "★";
	color: var(--colorYellow);
}
.about .aboutMerit .reason figure picture {
}
.about .aboutMerit .reason figure picture img {
}
.about .aboutMerit .reason ul {
	border: 5px solid var(--colorYellow);
	border-top: none;
	border-radius: 0 0 10px 10px;
	background: #fff;
	padding: 5%;
}
.about .aboutMerit .reason ul li {
	margin-left: 1.5em;
	text-indent: -1.5em;
	line-height: 1.25;
}
.about .aboutMerit .reason ul li::before {
	content: "●";
	color: var(--colorYellow);
	font-size: .75em;
	margin-right: 1em;
}
.about .aboutMerit .reason ul li:nth-child(n+2) {
	margin-top: 2.5%;
}










/* max 1100px	************************ */
@media (max-width: 1100px) {
	.about .aboutMerit h3::before {
		left: 5%;
	}
}
/* max 840px	************************ */
@media (max-width: 840px) {
	.about .aboutMerit h3::before {
		top: auto;
		left: auto;
		bottom: -40%;
		right: 10%;
	}
	.about .aboutMerit h3 span:nth-of-type(2) br:nth-of-type(2) {
		display: inline;
	}
}
/* max 800px	************************ */
@media (max-width: 800px) {
	.about .aboutMerit .reason h4 br {
		display: none;
	}
}
/* max 767px	************************ */
@media (max-width: 767px) {
	.about .aboutMerit h3::before {
		height: 80%;
		bottom: auto;
		top: 80%;
	}
	.about .aboutMerit .meritWrap::before {
		display: none;
	}
}
/* max 660px	************************ */
@media (max-width: 660px) {
	.about .aboutMerit h3 {
		font-size: 5.5vw;
	}
	.about .aboutMerit h3::before {
		height: 65%;
	}
	.about .aboutMerit .meritWrap dl dt br {
		display: inline;
	}
	.about .aboutMerit .reason {
		margin: 200px auto 0;
	}
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.about .aboutMerit .meritWrap dl {
		display: flex;
		flex-flow: column;
		align-items: center;
		margin-top: 10%;
	}
	.about .aboutMerit .meritWrap dl dt {
		text-align: center;
	}
	.about .aboutMerit .meritWrap dl dd {
		width: 100%;
	}
	.about .aboutMerit .reason h4 {
		font-size: 6vw;
	}
	.about .aboutMerit .reason figure figcaption dl {
		flex-flow: column;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	.about .aboutMerit .meritWrap dl dt {
		font-size: 6.25vw;
	}
	.about .aboutMerit .reason>dl dd {
		width: 100%;
		margin-right: 0;
	}
}



/* .ask	********************************************************************************************************************************************************************************************************************************* */
.ask .center {
	max-width: 850px;
}
.ask .askStart {
	border: 2px solid #fff;
	border-radius: 10px;
	color: #fff;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 0 0 2.5%;
	position: relative;
}
.ask:last-of-type .askStart::before {
	content: "";
	display: block;
	background: url(../_img/19466_color.webp) center/cover;
	width: 119px;
	aspect-ratio: 434/522;
	position: absolute;
	bottom: -2em;
	left: 1.25em;
}
.ask .askStart h2 {
	font-size: 2.375em;
	margin: -.65em auto 0;
	padding: 0 .5em;
	background: var(--colorBlueLight);
}
.ask .askStart dl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2.5%;
}
.ask .askStart dl:nth-of-type(1) dt {
	font-size: 1.75em;
	margin-right: .5em;
}
.ask .askStart dl:nth-of-type(1) dd:nth-of-type(1) {
	font-size: 3em;
	font-weight: 900;
	color: var(--colorYellow);
}
.ask .askStart dl:nth-of-type(1) dd:nth-of-type(1) a {
	display: flex;
	align-items: flex-end;
	letter-spacing: .05em;
}
.ask .askStart dl:nth-of-type(1) dd:nth-of-type(1) a::before {
	font-family: "Material Icons";
	content: "\e0b0";
}
.ask .askStart dl:nth-of-type(1) dd:nth-of-type(1) a span {
	font-size: 1.125em;
}
.ask .askStart dl:nth-of-type(1) dd:nth-of-type(2) {
	font-size: 1.25em;
}
.ask .askStart dl:nth-of-type(1) dd:nth-of-type(2)::before {
	content: "（";
}
.ask .askStart dl:nth-of-type(1) dd:nth-of-type(2)::after {
	content: "）";
}
.ask .askStart dl:nth-of-type(2) {
	font-size: 1.25em;
}
.ask .askStart dl:last-of-type {
	font-size: 1.625em;
}
.ask .askStart dl:last-of-type dt::after {
	content: "：";
}
.ask .askBtn {
	display: flex;
	justify-content: space-between;
	margin-top: 4%;
}
.ask .askBtn li {
	width: 49%;
	font-size: 1.375em;
}
.ask .askBtn li a {
	height: auto;
	padding: 1em 0;
}
/* max 800px	************************ */
@media (max-width: 800px) {
	.ask:last-of-type .askStart::before {
		display: none;
	}
	.ask .askStart h2 {
		font-size: 5vw;
	}
	.ask .askStart dl:nth-of-type(1) {
		flex-flow: wrap;
	}
	.ask .askStart dl:nth-of-type(1) dt {
		font-size: calc(28vw / 7.6);
	}
	.ask .askStart dl:nth-of-type(1) dd:nth-of-type(1) {
		font-size: calc(48vw / 7.6);
	}
	.ask .askStart dl:nth-of-type(1) dd:nth-of-type(2) {
		width: 100%;
		text-align: center;
		margin-top: .5em;
	}
	.ask .askStart dl:last-of-type {
		font-size: calc(26vw / 7.6);
	}
	.ask .askBtn {
		flex-flow: column;
		margin-top: 0;
	}
	.ask .askBtn li {
		width: 100%;
		margin-top: 4%;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	.ask .askBtn li {
		font-size: calc(22vw / 4.8);
	}
	.ask .askStart dl:nth-of-type(1) dd:nth-of-type(2),
	.ask .askStart dl:nth-of-type(2) {
		font-size: 4vw;
	}
}



/* .flow	********************************************************************************************************************************************************************************************************************************* */
.flow {
	counter-reset: number 0;
}
.flow dl {
	border-radius: 10px;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2em 1.5em;
	position: relative;
}
.flow dl:nth-of-type(1) {
	background: #fff url(../_img/icon_question.webp) no-repeat right 10% center/auto 75%;
}
.flow dl:nth-of-type(2) {
	background: #fff url(../_img/icon_pc.webp) no-repeat right 5% center/20% auto;
}
.flow dl:nth-of-type(3) {
	background: #fff url(../_img/icon_glaph.webp) no-repeat right 7.5% center/auto 60%;
}
.flow dl:nth-of-type(4) {
	background: #fff url(../_img/icon_shake.webp) no-repeat right 5% center/20% auto;
}
.flow dl:not(:first-of-type) {
	margin-top: 6em;
}
.flow dl::before {
	counter-increment: number 1;
	content: "STEP" counter(number, decimal-leading-zero);
	background: var(--colorOrange);
	color: #fff;
	border-radius: 9999px;
	width: 8em;
	padding: .25em 0;
	text-align: center;
	font-size: 1.25em;
	font-weight: 700;
}
.flow dl:not(:last-of-type)::after {
	content: "";
	display: block;
	border-top: 20px solid var(--colorTextGray);
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	width: 0;
	height: 0;
	position: absolute;
	bottom: calc(-3em - 10px);
	left: calc(50% - 20px);
}
.flow dl dt {
	width: calc(100% - 8em);
	font-size: 1.5em;
	font-weight: 700;
}
.flow dl dd {
	font-size: 1.125em;
	line-height: 1.4;
	margin-top: 1em;
	width: 75%;
}
.flow dl dd p:nth-child(n+2) {
	margin-top: 1em;
}
/* max 767px	************************ */
@media (max-width: 767px) {
	.flow dl {
		flex-flow: column;
		background-position: center top 7.5em !important;
		background-size: auto 5em !important;
		padding: 1.5em 2em;
	}
	.flow dl dt {
		width: 100%;
		text-align: center;
		margin-top: 1em;
	}
	.flow dl dd {
		width: 100%;
		margin-top: 6.5em;
	}
}



/* .mailform	********************************************************************************************************************************************************************************************************************************* */
.mailform h2+p {
	max-width: 1000px;
	margin: 0 auto;
	font-size: 1.125em;
	line-height: 1.75;
}
.mailform form {
	max-width: 1000px;
	margin: 5% auto 10%;
	background-color: #fff;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 5% 0 10%;
}
.mailform form>label,
.mailform form .select,
.mailform form .policy,
.mailform form .formWrap {
	width: 87.5%;
	margin-top: 5%;
}
.mailform form>label,
.mailform form .select {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
	background: var(--colorLightGray);
	padding: 1.5em 8%;
}
.mailform form>label:first-of-type {
	margin-top: 0;
}
.mailform form>label:has([required])::before {
	content: "必須";
	color: #fff;
	background: var(--colorOrange);
	width: 4em;
	border-radius: 9999px;
	padding: .25em 0;
	text-align: center;
	font-weight: 700;
}
.mailform form>label span,
.mailform form .select>span {
	font-size: 1.375em;
	font-weight: 700;
	line-height: 1.25;
}
.mailform form>label:not(:has(textarea)) span {
	width: calc(100% - 3.5em);
}
.mailform form>label input[type="text"],
.mailform form>label input[type="tel"],
.mailform form>label input[type="email"],
.mailform form>label textarea {
	width: 100%;
	border: 2px solid var(--colorGray);
	border-radius: 10px;
	background: #fff;
	font-size: 1.125em;
	line-height: 1.5;
	margin-top: .75em;
	padding: .75em .5em;
	outline: none;
}
.mailform form>label textarea {
	height: 12.5em;
	resize: vertical;
}
.mailform form>label input[type="text"]:focus,
.mailform form>label input[type="tel"]:focus,
.mailform form>label input[type="email"]:focus,
.mailform form>label textarea:focus {
	background: #ffc;
}
.mailform form>label input[type="text"]::placeholder,
.mailform form>label input[type="tel"]::placeholder,
.mailform form>label input[type="email"]::placeholder,
.mailform form>label textarea::placeholder {
	font-size: inherit;
	font-weight: 700;
	font-family: inherit;
	color: var(--colorGray);
	line-height: 1.5;
}
.mailform form input[type="checkbox"] {
	transform: scale(1.5);
	margin-right: .75em;
}
.mailform form>label.agree {
	background: none;
	padding: 0;
	flex-flow: nowrap;
	justify-content: center;
	align-items: baseline;
	line-height: 1.25;
}
.mailform form>label.agree::before {
	display: none;
}
.mailform form>label.agree>span {
	width: auto;
	font-size: 1.125em;
	line-height: 1.4;
	font-weight: 400;
}
.mailform form>label.agree>span span {
	font-size: .75em;
	font-weight: 400;
}
.mailform form .select ul {
	margin: 2.5% auto;
	font-size: 1.125em;
	width: 95%;
}
.mailform form .select ul li:nth-child(n+2) {
	margin-top: 1em;
}
.mailform form .select ul li label {
	display: flex;
	align-items: baseline;
	line-height: 1.25;
}
.mailform form .select ul li label span {
	margin-left: 1em;
	text-indent: -1em;
}
.mailform form .policy {
	border: 2px solid var(--colorGray);
}
.mailform form .policy h3 {
	border-bottom: 2px solid var(--colorGray);
	background: var(--colorLightGray);
	font-size: 1.25em;
	font-weight: 400;
	padding: .25em;
}
.mailform form .policy>div {
	padding: 1em;
	line-height: 1.75;
	height: 10em;
	overflow-y: scroll;
}
.mailform form .policy>div>p strong {
	color: var(--colorTextEx);
}
.mailform form .policy>div div {
	margin-top: 1em;
	counter-reset: number 0;
}
.mailform form .policy>div div h4 {
	font-size: 1.125em;
	font-weight: 700;
}
.mailform form .policy>div div.num p {
	margin-left: .75em;
	text-indent: -.75em;
}
.mailform form .policy>div div.num p::before {
	counter-increment: number 1;
	content: counter(number) '.';
}
.mailform form .policy>div div ul {
	list-style: disc;
}
.mailform form .policy>div div ul li {
	margin-left: 1.25em;
}
.mailform form .formWrap {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: baseline;
	line-height: 1.25;
	margin-top: 0;
}
.mailform form .formWrap dt:nth-of-type(n+2),
.mailform form .formWrap dd:nth-of-type(n+2) {
	margin-top: 2.5%;
}
.mailform form .formWrap dt {
	font-size: 1.375em;
	font-weight: 700;
}
.mailform form .formWrap dd {
	line-height: 1.4;
}
.mailform form .application {
	width: 100%;
	max-width: 800px;
	display: flex;
	align-items: center;
	column-gap: 5%;
}
.mailform form .submit {
	width: 100%;
	max-width: 450px;
	margin: 10% auto 0;
	position: relative;
}
.mailform .center:nth-of-type(2) h2 {
	color: var(--colorBlueLight);
}
.mailform .center:nth-of-type(2) p strong {
	font-weight: 900;
}
.mailform .center:nth-of-type(2) p span.sp {
	display: none;
}
.mailform .center:nth-of-type(2) p span.caution {
	display: inline-block;
	color: var(--colorOrange);
	margin-top: 1em;
}
.mailform .center:nth-of-type(2) p span.caution::before {
	content: "※";
}
.mailform .center:nth-of-type(2) figure {
	width: 90%;
	max-width: 275px;
	margin: 2.5% auto 0;
}
.mailform .center:nth-of-type(2) figure figcaption {
	text-align: right;
	margin-top: .5em;
}
.mailform .center:nth-of-type(2) figure figcaption small {
	font-size: 1rem;
}
/* max 600px	************************ */
@media (max-width: 600px) {
	.mailform form>label,
	.mailform form .select,
	.mailform form .policy,
	.mailform form .formWrap {
		width: 95%;
	}
	.mailform form>label,
	.mailform form .select {
		padding: 1.5em 2.5%;
	}
	.mailform form .formWrap {
		flex-flow: column;
		align-items: baseline;
	}
	.mailform form .formWrap dt:nth-of-type(n+2) {
		margin-top: 5%;
	}
	.mailform form .formWrap dd {
		margin-top: 1.5% !important;
	}
}
/* portrait	************************ */
@media (orientation: portrait) {
	.mailform .center:nth-of-type(2) p span.pc,
	.mailform .center:nth-of-type(2) figure,
	.mailform .center:nth-of-type(2) .askBtn span {
		display: none;
	}
	.mailform .center:nth-of-type(2) p span.sp {
		display: inline;
	}
}



/* aside.partner	********************************************************************************************************************************************************************************************************************************* */
aside.partner .center h2 span {
	display: inline-block;
}
aside.partner .center h2 span:last-child {
	font-size: .75em;
}
aside.partner .center h3 {
	margin-bottom: 2.5%;
	text-align: center;
	font-size: 1.5em;
}
aside.partner .center>a {
	display: block;
}
aside.partner .center>a figure {
	position: relative;
}
aside.partner .center>a figure img {
}
aside.partner .center>a figure figcaption {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 1.25em;
	line-height: 1.25;
	padding: .5em 0 .75em;
	text-shadow: 0 .25em .25em #0006;
}
aside.partner .center>a figure figcaption::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: var(--colorBlueSky);
	mix-blend-mode: multiply;
}
aside.partner .center>a figure figcaption span {
	position: relative;
	z-index: 1;
}
aside.partner dl {
	display: flex;
	flex-flow: column;
	align-items: center;
	font-size: 1.25em;
	line-height: 1.4;
}
aside.partner dl dd {
	margin-top: 1em;
}
aside.partner dl dd a {
	text-decoration: underline;
}
aside.partner dl dd a:hover {
	text-decoration: none;
}
/* max 800px	************************ */
@media (max-width: 800px) {
	aside.partner .center h3 {
		font-size: 4vw;
	}
}
/* max 767px	************************ */
@media (max-width: 767px) {
	aside.partner .center>a figure figcaption {
		position: relative;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	aside.partner .center>a figure figcaption {
		font-size: 4vw;
	}
}



/* footer	********************************************************************************************************************************************************************************************************************************* */
footer {
	padding: 5% 0;
}
footer .center {
	position: relative;
}
footer .center::before,
footer .center::after {
	content: "";
	display: block;
	height: 12.5vw;
	position: absolute;
	bottom: calc(100% - 5em);
	z-index: 9998;
}
footer .center::before {
	background: url(../_img/kikuzo_l.webp) center/cover;
	aspect-ratio: 381/342;
	right: 10%;
}
footer .center::after {
	background: url(../_img/usagi.webp) center/cover;
	aspect-ratio: 203/342;
	right: 0;
}
footer h2 {
	width: 100%;
	max-width: 400px;
}
footer .office {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin: 2.5% auto;
}
footer .office dl {
	width: 47.5%;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-content: stretch;
}
footer .office dl:nth-child(n+3) {
	margin-top: 2.5%;
}
footer .office dl dt {
	width: 100%;
	font-size: 1.125em;
	font-weight: 700;
	margin-bottom: .5em;
	height: 1em;
}
footer .office dl dt::before,
footer .office dl dt::after {
	content: "◆";
}
footer .office dl dd {
	height: calc(100% - 1.825em);
}
footer .office dl dd:has(ul) {
	width: 47.5%;
}
footer .office dl dd:has(iframe) {
	width: 50%;
	display: flex;
}
footer .office dl dd ul {
}
footer .office dl dd ul li {
	line-height: 1.4;
	margin-bottom: .5em;
}
footer .office dl dd ul li .material-symbols-outlined {
	font-size: inherit;
	display: none;
}
footer .office dl dd ul li .material-symbols-outlined a {
	color: var(--colorOrange);
}
footer .office dl dd iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
}
footer small {
	display: block;
	text-align: center;
}
/* max 1400px	************************ */
@media (max-width: 1400px) {
	footer .center::before,
	footer .center::after {
		height: 175px;
	}
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	footer .office dl dd ul li .material-symbols-outlined {
		display: inline;
	}
	footer .office dl dd:has(ul) {
		width: 100%;
	}
	footer .office dl dd:has(iframe) {
		display: none;
	}
}
/* max 800px	************************ */
@media (max-width: 800px) {
	footer .center::before,
	footer .center::after {
		height: 20vw;
		bottom: calc(100% - 10vw);
	}
}
/* max 600px	************************ */
@media (max-width: 600px) {
	footer {
		padding: 15% 0 5%;
	}
	footer .center::before,
	footer .center::after {
		height: 25vw;
		bottom: calc(100% + 5vw);
	}
	footer .center::before {
		background: url(../_img/kikuzo_r.webp) center/cover;
		right: auto;
		left: 20%;
	}
	footer .center::after {
		right: 25%;
	}
	footer h2 {
		margin: 0 auto;
	}
	footer .office {
		flex-flow: column;
	}
	footer .office dl {
		width: 100%;
		margin-top: 3em !important;
	}
	footer .office dl dd ul li {
		margin-bottom: .25em;
	}
	footer small {
		margin-top: 3em;
	}
}



/* 新着情報	********************************************************************************************************************************************************************************************************************************* */
article.post {
	padding: 7.5% 0 5%;
}
article.post header {
	position: relative;
}
article.post header::before,
article.post header::after {
	content: "";
	display: block;
	height: 8vw;
	position: absolute;
	top: -6vw;
}
article.post header::before {
	background: url(../_img/kikuzo_l.webp) center/cover;
	aspect-ratio: 381/342;
	right: 7.5%;
}
article.post header::after {
	background: url(../_img/usagi.webp) center/cover;
	aspect-ratio: 203/342;
	right: 2.5%;
}
article.post header h1.entry-title {
	font-size: 1.875em;
	line-height: 1.25;
	color: var(--colorBlueDeep);
	border: 1px solid var(--colorBlueLight);
	padding: .75em 1.5em;
	border-radius: 9999px;
	background: linear-gradient(0deg,var(--colorWater),#fff);
}
article.post header .entry-meta {
	text-align: right;
}
article.post header .entry-meta>*:not(time) {
	display: none;
}
article.post header .entry-meta time {
	display: inline-block;
	margin-left: auto;
	background: var(--colorBlueLight);
	color: #fff;
	padding: .75em 1.25em;
	border-radius: 9999px;
	margin-top: -.75em;
	box-shadow: 0 3px 0 var(--colorBlueLightDark);
}
article.post .entry-content {
	line-height: 1.75;
}
article.post .entry-content>* {
	margin-top: 1.5em;
}
article.post .entry-content .wp-block-heading {
	line-height: 1.25;
}
article.post .entry-content h2 {
	margin-top: 2.5em;
	font-size: 1.5em;
	color: var(--colorBlueDeep);
	border-left: .5em solid var(--colorBlueLight);
	border-bottom: 1px dotted var(--colorBlueLight);
	padding: .25em 1em;
	background: linear-gradient(90deg,var(--colorWater),transparent 25%);
	border-radius: .5em 0 0 .5em;
}
.footer .nav-links {
	display: flex;
	justify-content: space-between;
	column-gap: 5%;
	margin-bottom: 15%;
}
.footer .nav-links .nav-previous {
}
.footer .nav-links:has(.nav-next.nav-next:only-child) {
	flex-flow: row-reverse;
}
.footer .nav-links>* a {
	display: flex;
	align-items: center;
	background: var(--colorWater);
	padding: .5em .75em;
	color: var(--colorBlueLight);
	font-weight: 700;
	border-radius: 9999px;
	position: relative;
	top: 0;
	box-shadow: 0 3px 0 var(--colorBlueLight);
	transition: .5s;
}
.footer .nav-links>* a:hover {
	top: 3px;
	box-shadow: none;
}
.footer .nav-links>* a span.meta-nav {
	background: var(--colorBlueLight);
	color: #fff;
	font-weight: 900;
	aspect-ratio: 1/1;
	border-radius: 50%;
	padding: .25em;
}
.footer .nav-links .nav-previous a span.meta-nav {
	margin-right: .5em;
}
.footer .nav-links .nav-next a span.meta-nav {
	margin-left: .5em;
}
.footer .nav-links>* a span.ttl {
	line-height: 1.25;
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	article.post header::before,
	article.post header::after {
		height: 15vw;
		z-index: 10000;
		top: auto;
		bottom: calc(100% - 1vw);
	}
	article.post header::before {
		right: 30%;
	}
	article.post header::after {
		right: 20%;
	}
}
/* max 767px	************************ */
@media (max-width: 767px) {
	article.post header h1.entry-title {
		border-radius: 1.5em;
	}
	.footer .nav-links {
		flex-flow: column;
		align-items: center;
		column-gap: 0;
		row-gap: 1em;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	article.post header::before,
	article.post header::after {
		top: calc(100% - 3em);
		bottom: auto;
		z-index: 0;
	}
	article.post header::before,
	article.post header::after {
		right: auto;
	}
	article.post header::before {
		background: url(../_img/kikuzo_r.webp) center/cover;
		left: 0;
	}
	article.post header::after {
		left: 20%;
	}
	article.post header h1.entry-title {
		padding: .75em 1em;
	}
}



/* .fade	********************************************************************************************************************************************************************************************************************************* */
.fade {
	opacity: 0;
	transition: 1s;
}
.fade.toTop {
	transform: translate(0,1.5em);
}
.fade.in {
	opacity: 1;
	transform: translate(0,0);
}
r-bottom: 1px dotted var(--colorBlueLight);
	padding: .25em 1em;
	background: linear-gradient(90deg,var(--colorWater),transparent 25%);
	border-radius: .5em 0 0 .5em;
}
.footer .nav-links {
	display: flex;
	justify-content: space-between;
	column-gap: 5%;
	margin-bottom: 15%;
}
.footer .nav-links .nav-previous {
}
.footer .nav-links:has(.nav-next.nav-next:only-child) {
	flex-flow: row-reverse;
}
.footer .nav-links>* a {
	display: flex;
	align-items: center;
	background: var(--colorWater);
	padding: .5em .75em;
	color: var(--colorBlueLight);
	font-weight: 700;
	border-radius: 9999px;
	position: relative;
	top: 0;
	box-shadow: 0 3px 0 var(--colorBlueLight);
	transition: .5s;
}
.footer .nav-links>* a:hover {
	top: 3px;
	box-shadow: none;
}
.footer .nav-links>* a span.meta-nav {
	background: var(--colorBlueLight);
	color: #fff;
	font-weight: 900;
	aspect-ratio: 1/1;
	border-radius: 50%;
	padding: .25em;
}
.footer .nav-links .nav-previous a span.meta-nav {
	margin-right: .5em;
}
.footer .nav-links .nav-next a span.meta-nav {
	margin-left: .5em;
}
.footer .nav-links>* a span.ttl {
	line-height: 1.25;
}
/* max 1000px	************************ */
@media (max-width: 1000px) {
	article.post header::before,
	article.post header::after {
		height: 15vw;
		z-index: 10000;
		top: auto;
		bottom: calc(100% - 1vw);
	}
	article.post header::before {
		right: 30%;
	}
	article.post header::after {
		right: 20%;
	}
}
/* max 767px	************************ */
@media (max-width: 767px) {
	article.post header h1.entry-title {
		border-radius: 1.5em;
	}
	.footer .nav-links {
		flex-flow: column;
		align-items: center;
		column-gap: 0;
		row-gap: 1em;
	}
}
/* max 480px	************************ */
@media (max-width: 480px) {
	article.post header::before,
	article.post header::after {
		top: calc(100% - 3em);
		bottom: auto;
		z-index: 0;
	}
	article.post header::before,
	article.post header::after {
		right: auto;
	}
	article.post header::before {
		background: url(../_img/kikuzo_r.webp) center/cover;
		left: 0;
	}
	article.post header::after {
		left: 20%;
	}
	article.post header h1.entry-title {
		padding: .75em 1em;
	}
}



/* .fade	********************************************************************************************************************************************************************************************************************************* */
.fade {
	opacity: 0;
	transition: 1s;
}
.fade.toTop {
	transform: translate(0,1.5em);
}
.fade.in {
	opacity: 1;
	transform: translate(0,0);
}

}
.fade.in {
	opacity: 1;
	transform: translate(0,0);
}
