@charset "utf-8";




/* common	**************************************************************************************************************************************************************************************************************************************************************************** */
:root {
	--colorText: #333;
	--colorTextC0: #333333c0;
	--colorGray: #6d645e;
	--colorGrayC0: #6d645ec0;
	--colorLightGray: #ccc;
	--colorBlightGray: #eee;
	--colorVeryLightGray: #f4f3f1;
	--colorBlack: #191919;
	--colorYuzu: #fabe01;
	--colorYuzu80: #fabe0180;
	--colorYuzu40: #fabe0140;
	--colorYuzu20: #fabe0120;
	--colorLeaf: #278b3a;
	--colorLeafC0: #278b3ac0;
	--colorGold: #a68b62;
	--colorGoldDark: #8b7452;
	--colorStrong: #dea901;
	--colorBeige: #f3eee4;
	--colorEmphasis: #de5b11;
	--colorEmphasisDark: #c04e0e;
	--colorDots: #f9f0d3;
	--colorGreen: #94bf40;
	--colorRedBeige: #f4edea;
}
*,::before,::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: calc(10vw / 13.66);
	/* scroll-behavior: smooth; */
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6em;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .1em;
	color: var(--colorText);
}
h1,h2,h3,h4,h5,h6 {
	font-size: 1em;
}
img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	vertical-align: bottom;
}
a {
	color: inherit;
	text-decoration: none;
}
ul.btn {
	list-style: none;
	display: flex;
	justify-content: center;
}
ul.btn li a {
	display: flex;
	align-items: center;
	color: #fff;
	border-radius: 1rem;
	padding: 1rem 2rem;
	position: relative;
	top: 0;
	transition: .5s;
}
ul.btn.apl li a {
	background: var(--colorEmphasis);
	box-shadow: 0 .4375em 0 var(--colorEmphasisDark);
}
ul.btn.details li a {
	background: var(--colorGold);
	box-shadow: 0 .4375em 0 var(--colorGoldDark);
}
ul.btn li a:hover {
	top: .4375em;
}
ul.btn.apl li a:hover {
	box-shadow: 0 0 0 var(--colorEmphasisDark);
}
ul.btn.details li a:hover {
	box-shadow: 0 0 0 var(--colorGoldDark);
}
ul.btn.apl li a::before {
	content: '';
	display: block;
	background: #fff url(../_img/pencil.webp) no-repeat center/70% auto;
	border-radius: 50%;
	width: 3.4375em;
	aspect-ratio: 1/1;
}
ul.btn.apl.lp li a::before {
	background: #fff url(../_img/pencil.webp) no-repeat center/70%;
}
ul.btn li a span {
	font-size: 2.5rem;
}
ul.btn.apl li a span {
	padding: 0 1.5em;
}
ul.btn.details li a span {
	padding: .625em 1.5em;
}
br.mb {
	display: none;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	html {
		font-size: calc(10vw / 3.75);
	}
	ul.btn li a {
		padding: 1rem 0 1rem 1rem;
	}
	ul.btn.apl li a::before {
		width: 2.8rem;
	}
	ul.btn li a span {
		font-size: 1.6rem;
	}
	ul.btn.apl li a span {
		padding: 0 .5em;
	}
	br.mb {
		display: inline;
	}
}




/* body>header	**************************************************************************************************************************************************************************************************************************************************************************** */
body>header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.8rem 3rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	background: linear-gradient(180deg,#fff,#fffc);
	backdrop-filter: blur(.25em);
	transition: .5s;
}
body>header .logo {
	width: 11%;
	transition: .5s;
}
#Hbg,[for="Hbg"] {
	display: none;
}
body>header .global ul {
	list-style: none;
	display: flex;
}
body>header .global ul li:nth-child(n+2) {
	border-left: 1px solid var(--colorLightGray);
}
body>header .global ul li a {
	display: block;
	text-align: center;
	padding: .5em 1em;
}
body>header.scr {
	padding: .5vw 3rem;
}
body>header.scr .logo {
	width: 6%;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	body>header {
		padding: 1.2rem;
	}
	body>header .logo {
		width: 25.875%;
	}
	[for="Hbg"] {
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--colorGray);
		width: calc(50vw / 3.75);
		aspect-ratio: 1/1;
		position: absolute;
		top: calc(9vw / 3.75);
		right: calc(13vw / 3.75);
		z-index: 10000;
		transition: .5s;
	}
	[for="Hbg"] span,
	[for="Hbg"] span::before,
	[for="Hbg"] span::after {
		display: block;
		background: #fff;
		width: 60%;
		height: 2px;
		transition: .5s;
	}
	[for="Hbg"] span::before,
	[for="Hbg"] span::after {
		content: '';
		position: absolute;
	}
	[for="Hbg"] span::before {
		top: 30%;
	}
	[for="Hbg"] span::after {
		bottom: 30%;
	}
	body>header .global {
		background: var(--colorGrayC0);
		color: #fff;
		display: flex;
		flex-flow: column;
		justify-content: flex-end;
		padding: 25% 3rem 3rem;
		position: absolute;
		top: 0;
		right: -100vw;
		z-index: 9999;
		transition: .5s;
	}
	body>header .global::before {
		content: '';
		display: block;
		background: url(../_img/logo_all_w.webp) no-repeat center/contain;
		aspect-ratio: 1000/505;
	}
	body>header .global ul {
		flex-flow: column;
		margin-top: 15%;
	}
	body>header .global ul li:nth-child(n+2) {
		border-left: none;
		border-top: 1px solid var(--colorLightGray);
	}
	body>header .global ul li a {
		padding: 1em;
	}
	#Hbg:checked~.global {
		right: 0 !important;
	}
	#Hbg:checked+[for="Hbg"] {
		background: #fff;
	}
	#Hbg:checked+[for="Hbg"] span {
		background: transparent;
	}
	#Hbg:checked+[for="Hbg"] span::before,
	#Hbg:checked+[for="Hbg"] span::after {
		background: var(--colorGrayC0);
	}
	#Hbg:checked+[for="Hbg"] span::before {
		top: calc(50% - 1px);
		transform: rotate(-315deg);
	}
	#Hbg:checked+[for="Hbg"] span::after {
		bottom: calc(50% - 1px);
		transform: rotate(315deg);
	}
}




/* .index .start	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .start {
	aspect-ratio: 68/41;
	padding: 0 4%;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	position: relative;
}
.index .start .st01 {
	align-self: flex-start;
	width: 21.5%;
	display: flex;
	flex-flow: column;
	background: #ffffffe0;
	padding: .75em 0 1em 1em;
	margin-top: 2em;
	border-radius: 0 2rem 2rem 0;
}
.index .start .st01 h1 {
	color: var(--colorGold);
}
.index .start .st01 h1 span {
	display: block;
}
.index .start .st01 h1 span:first-child {
	font-size: 1.4rem;
	margin: .5em 0 .25em;
}
.index .start .st01 h1 span:last-child {
	font-size: 2.2rem;
}
.index .start .st01 ul {
	order: -1;
	font-size: 1.2rem;
	letter-spacing: .05em;
	line-height: 1.25;
}
.index .start .st01 ul li {
	display: inline-block;
}
.index .start .st01 ul li::before {
	content: '・';
}
.index .start .st01 ul li:nth-child(1)::before,
.index .start .st01 ul li:nth-child(5)::before {
	display: none;
}
.index .start .st02 {
	align-self: flex-end;
	display: flex;
	flex-flow: column;
	margin-top: 20%;
	margin-right: 1em;
}
.index .start .st02 h2 {
	color: #fff;
	font-size: 3rem;
}
.index .start .st02 h2>span {
	display: block;
	background: linear-gradient(90deg,#d9b339,#d97942);
	padding: .375em .5em .5em;
}
.index .start .st02 h2>span:nth-child(2) {
	margin-top: .5em;
}
.index .start .st02 p {
	order: -1;
	font-size: 1.8rem;
	font-weight: bold;
	background: #fff;
	padding: .5em 1em;
	border-radius: 9999px;
	align-self: flex-start;
	margin-bottom: 1em;
	position: relative;
}
.index .start .st02 p::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: .5em solid #fff;
	border-right: .375em solid transparent;
	border-left: .375em solid transparent;
	position: absolute;
	top: 100%;
	left: 1em;
}
.index .start .st03 {
	align-self: center;
	background: var(--colorBeige);
	border-radius: 2rem;
	width: 91%;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 2.25em 0;
}
.index .start .st03 h2 {
	font-size: 2.4rem;
	margin-bottom: 1em;
}
.index .start .st03 h2 br {
	display: none;
}
.index .start .kv {
	position: absolute;
	top: 0;
	z-index: -1;
	width: 92%;
	aspect-ratio: 1200/680;
	border-radius: 2rem;
	overflow: hidden;
}
.index .start .kv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .start {
    aspect-ratio: 375/652;
    padding: 0;
	}
	.index .start .st01 {
    width: 57.5%;
    padding: .5em 0 .75em .75em;
    margin: 1em 0 0 calc(4vw / 3.75);
    border-radius: 1rem;
	}
	.index .start .st01 h1 span:first-child {
		font-size: 1.2rem;
		margin: .5em 0 .375em;
	}
	.index .start .st01 h1 span:last-child {
		font-size: 1.6rem;
	}
	.index .start .st01 ul {
		font-size: 1rem;
	}
	.index .start .st02 {
		margin-top: 20%;
		margin-right: calc(4vw / 3.75);
	}
	.index .start .st02 h2 {
		font-size: 1.8rem;
	}
	.index .start .st02 h2>span {
		display: flex;
		flex-flow: column;
		align-items: flex-end;
		background: none;
		padding: 0;
	}
	.index .start .st02 h2>span:nth-child(2) {
		margin-top: .25em;
	}
	.index .start .st02 h2>span>span {
		display: block;
		background: linear-gradient(90deg,#d9b339,#d97942);
		padding: .375em .5em .5em;
	}
	.index .start .st02 h2>span>span>span {
		display: none;
	}
	.index .start .st02 h2>span>span:nth-child(2) {
		margin-top: .25em;
	}
	.index .start .st02 p {
		font-size: 1.2rem;
		align-self: center;
		margin-left: -3em;
	}
	.index .start .st03 {
		padding: 1em 0 2em;
		width: 95%;
	}
	.index .start .st03 h2 {
		text-align: center;
		font-size: 1.6rem;
		line-height: 1.75;
	}
	.index .start .st03 h2 br {
		display: inline;
	}
	.index .start .kv {
    width: 100%;
    aspect-ratio: 375 / 578;
    border-radius: 0;
		display: flex;
		align-items: center;
		overflow: hidden;
	}
	.index .start .kv img {
		max-width: none;
		max-height: none;
		width: auto;
		height: 120%;
		object-fit: fill;
		margin-left: -20%;
		margin-top: -10%;
	}
}




/* .index main>section	**************************************************************************************************************************************************************************************************************************************************************************** */
.index main>section {
	padding: 10% 4% 15%;
}
.index main>section>h2 {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-bottom: 5%;
}
.index main>section>h2::before {
	color: var(--colorGold);
	font-weight: normal;
}
.index main>section>h2 span {
	font-size: 3.4rem;
	margin: .25em auto .5em;
}
.index main>section>h2::after {
	content: '';
	display: block;
	background: url(../_img/yzmark.webp) no-repeat center/cover;
	width: calc(40vw / 13.66);
	aspect-ratio: 1/1;
}
.index main>section>h2 span br {
	display: none;
}
.index main>section .wrap figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2rem;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index main>section>h2::before {
		font-size: 1.2rem;
	}
	.index main>section>h2 span {
		font-size: 2.4rem;
		line-height: 1.375;
		text-align: center;
	}
	.index main>section>h2 span br {
		display: inline;
	}
	.index main>section>h2::after {
		width: calc(27vw / 3.75);
	}
}




/* .index .network	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .network {
	padding-bottom: 0;
}
.index .network>h2::before {
	content: 'NETWORK';
}
.index .network .wrap {
	display: flex;
	justify-content: space-between;
}
.index .network .wrap div {
	width: 52.5%;
}
.index .network .wrap div p {
	font-size: 2rem;
	line-height: 1.75;
}
.index .network .wrap div p:nth-child(n+2) {
	margin-top: 1.5em;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}
.index .network .wrap div p:nth-child(n+2) strong {
	font-size: 2.6rem;
	font-weight: bold;
	background: var(--colorStrong);
	line-height: 1;
	margin-top: .25em;
	padding: .125em .125em .1875em;
}
.index .network .wrap figure {
	width: 42.5%;
}
.index .network .wrap figure img {
	aspect-ratio: 5/3;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .network {
		padding-bottom: 5%;
	}
	.index .network .wrap {
		flex-flow: column;
	}
	.index .network .wrap div {
		width: 100%;
	}
	.index .network .wrap div p {
		font-size: 1.6rem;
	}
	.index .network .wrap div p br {
		display: none;
	}
	.index .network .wrap div p:nth-child(n+2) {
		align-items: stretch;
		text-align: center;
	}
	.index .network .wrap div p:nth-child(n+2) strong {
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.index .network .wrap figure {
		order: -1;
		width: 100%;
		margin-bottom: 1.5em;
	}
}




/* .index .welcome	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .welcome>h2::before {
	content: 'WELCOME';
}
.index .welcome .wrap {
	display: flex;
	justify-content: space-between;
}
.index .welcome .wrap div {
	width: 52.5%;
}
.index .welcome .wrap div h3 {
	font-size: 2.6rem;
	margin-top: 5%;
}
.index .welcome .wrap div dl {
	border: calc(5vw / 13.66) solid var(--colorVeryLightGray);
	border-radius: 2rem;
	display: flex;
	flex-flow: wrap;
	padding: 0 5% 3.75%;
	margin-top: 7.5%;
}
.index .welcome .wrap div dl dt {
	width: 60%;
	background: #fff;
	font-size: 2rem;
	text-align: center;
	margin: -.625em auto 1.5em;
}
.index .welcome .wrap div dl dd {
	width: 50%;
}
.index .welcome .wrap div dl dd:nth-of-type(n+3) {
	margin-top: 1em;
}
.index .welcome .wrap div dl dd::before {
	content: '';
	display: inline-block;
	width: 1em;
	aspect-ratio: 1/1;
	background: url(../_img/check.webp) no-repeat center/cover;
	margin-right: .25em;
}
.index .welcome .wrap figure {
	width: 42.5%;
	order: -1;
}
.index .welcome .wrap figure img {
	aspect-ratio: 5/3;
}
.index .welcome .read {
	text-align: center;
	margin-top: 6.25%;
}
.index .welcome .read h3 {
	font-size: 2.8rem;
	margin-bottom: 1em;
}
.index .welcome .read h3 strong:nth-of-type(1) {
	color: var(--colorEmphasis);
}
.index .welcome .read h3 strong:nth-of-type(1) span {
	font-size: 1.5em;
}
.index .welcome .read h3 strong:nth-of-type(2) {
	background: var(--colorStrong);
	padding: .125em .125em .1875em;
}
.index .welcome .read h3 br {
	display: none;
}
.index .welcome .read p {
	font-size: 2rem;
	line-height: 1.75;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .welcome .wrap {
		flex-flow: column;
	}
	.index .welcome .wrap div {
		width: 100%;
	}
	.index .welcome .wrap div h3 {
		font-size: 2rem;
		text-align: center;
	}
	.index .welcome .wrap div dl {
		border: calc(5vw / 3.75) solid var(--colorVeryLightGray);
		border-radius: 1rem;
		width: 90%;
		margin: 7.5% auto 0;
	}
	.index .welcome .wrap div dl dt {
		width: 105%;
		font-size: 1.6rem;
		margin-left: -2.5%;
	}
	.index .welcome .wrap div dl dd {
		width: 100%;
	}
	.index .welcome .wrap div dl dd:nth-of-type(n+2) {
		margin-top: 1em;
	}
	.index .welcome .wrap figure {
		width: 100%;
		margin-bottom: 1.5em;
	}
	.index .welcome .read h3 {
		font-size: 2rem;
		line-height: 1.75;
	}
	.index .welcome .read h3 strong:nth-of-type(1) span {
		font-size: 3.4rem;
	}
	.index .welcome .read h3 br {
		display: inline;
	}
	.index .welcome .read p {
		font-size: 1.6rem;
		text-align: left;
	}
	.index .welcome .read p br {
		display: none;
	}
}




/* .staff	**************************************************************************************************************************************************************************************************************************************************************************** */
.staff {
	background: var(--colorBeige);
}
.staff>h2::before {
	content: 'STAFF';
}
.staff .read {
	text-align: center;
	font-size: 2.2rem;
	line-height: 1.75;
}
.staff .manager {
	width: 70%;
	margin: 6.25% auto;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
.pages .staff .manager {
	width: 85%;
	margin: 0 auto;
}
.staff .manager.lp {
	margin: 6.25% auto 0;
}
.staff .manager figure {
	width: 26.5%;
	position: relative;
}
.pages .staff .manager figure:nth-of-type(n+4) {
	margin-top: 15%;
}
.staff .manager figure::before {
	content: '';
	display: block;
	background: url(../_img/leaf.webp) no-repeat center/cover;
	width: 20%;
	aspect-ratio: 57/52;
	position: absolute;
	top: -2rem;
	left: -5%;
}
.staff .manager figure img {
	border: calc(5vw / 13.66) solid var(--colorStrong);
	border-radius: 50%;
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.index .staff .manager figure figcaption,
.pages .staff .manager figure figcaption dl dt {
	color: var(--colorGold);
	font-size: 2.8rem;
	font-weight: bold;
	background: #fff;
	width: 94%;
	text-align: center;
	padding: .25em 0 .375em;
	border-radius: 1rem;
	position: absolute;
	left: 3%;
	top: 17.5rem;
}
.pages .staff .manager figure figcaption dl dt {
	top: 22.5rem;
}
.pages .staff .manager figure figcaption dl dd:nth-of-type(1) {
	margin: 1em auto;
}
.pages .staff .manager figure figcaption dl dd:nth-of-type(1) span {
	display: inline-block;
	background: var(--colorStrong);
	color: #fff;
	padding: .25em .75em;
	margin-right: .5em;
	border-radius: 9999px;
}
.pages .staff .manager figure figcaption dl dd:nth-of-type(2) {
	line-height: 1.625;
	font-weight: 400;
	letter-spacing: 0;
	text-align: justify;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.staff .read {
		text-align: left;
		font-size: 1.6rem;
	}
	.staff .manager {
		flex-flow: column;
		margin-bottom: 15%;
	}
	.staff .manager figure {
		width: 100%;
		margin-top: 25%;
	}
	.pages .staff .manager figure:nth-of-type(n+2) {
		margin-top: 40%;
	}
	.staff .manager figure::before {
		width: 22.5%;
	}
	.staff .manager figure img {
		border: calc(5vw / 3.75) solid var(--colorStrong);
	}
	.index .staff .manager figure figcaption,
	.pages .staff .manager figure figcaption dl dt {
		font-size: 2.2rem;
	}
}




/* .index .step	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .step {
	padding-bottom: 0;
}
.index .step>h2 {
	margin-bottom: 2.5%;
}
.index .step>h2::before {
	content: 'STEP';
}
.index .step .read {
	text-align: center;
}
.index .step .read h3 {
	font-size: 2.8rem;
	line-height: 1.625;
}
.index .step .read h3 strong:nth-of-type(1) {
	color: var(--colorEmphasis);
}
.index .step .read h3 strong:nth-of-type(1) span {
	font-size: 1.5em;
}
.index .step .read h3 strong:nth-of-type(2) {
	background: var(--colorStrong);
	padding: .125em .125em .1875em;
}
.index .step .read h3 br:not(:nth-of-type(2)) {
	display: none;
}
.index .step .read p {
	font-size: 2rem;
	margin-top: 1.5em;
}
.index .step .read p span {
	background: url(../_img/wave.webp) repeat-x left bottom/auto 25%;
	padding-bottom: .5em;
}
.index .step .read p br {
	display: none;
}
.index .step figure {
	width: 100%;
	margin-top: 5%;
}
.index .step figure img {
	width: 100%;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .step .read h3 {
		font-size: 2rem;
		line-height: 1.5;
	}
	.index .step .read h3 br:not(:nth-of-type(2)) {
		display: inline;
	}
	.index .step .read h3 strong:nth-of-type(2) {
		display: inline-block;
		margin: .25em 0;
	}
	.index .step .read p {
		font-size: 1.6rem;
		line-height: 2;
	}
	.index .step .read p br {
		display: inline;
	}
	.index .step figure {
		margin: 12.5% auto 15%;
	}
}




/* .index .company	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .company {
	padding-left: 0;
	padding-right: 0;
}
.index .company>h2 {
	margin-bottom: 2.5%;
}
.index .company>h2::before {
	content: 'COMPANY';
}
.index .company .read {
	font-size: 2.2rem;
	text-align: center;
}
.index .company .read p br {
	display: none;
}
.index .company .plant {
	list-style: none;
	display: flex;
	flex-flow: column;
}
.index .company .plant li {
	background: var(--colorBeige);
	width: 75%;
	padding: 4%;
	margin-top: 2.5%;
	display: flex;
	flex-flow: column;
}
.index .company .plant li:nth-child(1) {
	border-radius: 0 2rem 2rem 0;
	align-self: flex-start;
}
.index .company .plant li:nth-child(2) {
	border-radius: 2rem 0 0 2rem;
	align-self: flex-end;
}
.index .company .plant li h3 {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
}
.index .company .plant li h3 span:nth-of-type(1) {
	color: #fff;
	background: var(--colorEmphasis);
	font-weight: normal;
	border-radius: 9999px;
	padding: .25em .75em .375em;
}
.index .company .plant li h3 span:nth-of-type(2) {
	color: var(--colorEmphasis);
	font-size: 2.8rem;
	margin: .5em 0 1em;
}
.index .company .plant li div {
	line-height: 1.75;
	margin-bottom: 3.75%;
}
.index .company .plant li div p:nth-child(n+2) {
	margin-top: 1em;
}
.index .company .plant li figure {
	width: 130%;
	display: flex;
	justify-content: space-between;
}
.index .company .plant li:nth-child(2) figure {
	margin-left: -30%;
}
.index .company .plant li figure img {
	width: 48%;
	aspect-ratio: 3/2;
	object-fit: cover;
	border-radius: 2rem;
}
.index .company .plant li:nth-child(1) figure img:nth-child(2) {
	object-position: 15% center;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .company .read {
		font-size: 1.6rem;
		line-height: 1.75;
		margin: 1.5em auto 0;
	}
	.index .company .read p br {
		display: inline;
	}
	.index .company .plant li {
		width: 92%;
		flex-flow: column;
		margin: 7.5% auto 0;
	}
	.index .company .plant li:nth-child(1),
	.index .company .plant li:nth-child(2) {
		border-radius: 1rem;
		align-self: stretch;
		padding: 2rem 1.5rem;
	}
	.index .company .plant li figure {
		width: 100%;
	}
	.index .company .plant li h3 span:nth-of-type(1) {
		font-size: 1.4rem;
	}
	.index .company .plant li h3 span:nth-of-type(2) {
		margin: .5em 0 1em;
		font-size: 2rem;
	}
	.index .company .plant li div {
		font-size: 1.4rem;
	}
	.index .company .plant li figure {
		width: 100%;
		flex-flow: column;
		border-radius: 1rem;
	}
	.index .company .plant li:nth-child(2) figure {
		margin-left: 0;
	}
	.index .company .plant li figure img {
		width: 100%;
		margin-top: 2rem;
	}
}




/* .index .schedule	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .schedule {
	background: var(--colorBeige);
}
.index .schedule>h2 {
	margin-bottom: 2.5%;
}
.index .schedule>h2::before {
	content: 'SCHEDULE';
}
.index .schedule .read {
	font-size: 2.2rem;
	text-align: center;
}
.index .schedule .read p br {
	display: none;
}
.index .schedule .wrap>div {
	margin-top: 5%;
}
.index .schedule .wrap>div h3 {
	font-size: 3rem;
	text-align: center;
	background: #fff;
	width: 35%;
	margin: 0 auto;
	border-radius: 1rem 1rem 0 0;
	padding: .5em 0 0;
}
.index .schedule .wrap>div div {
	background: #fff;
	border-radius: 2rem;
	padding: 5% 5% calc(5% - 3.6rem);
}
.index .schedule .wrap>div div ol {
	list-style: none;
	display: flex;
	gap: 5rem;
	overflow: scroll;
	padding: 1.6rem 0 3.6rem;
}
.index .schedule .wrap>div div ol li {
	flex-shrink: 0;
	display: flex;
	width: 32rem;
	border-radius: 2rem;
	position: relative;
}
.index .schedule .wrap>div.morning div ol li {
	border: .2rem solid var(--colorStrong);
}
.index .schedule .wrap>div.evening div ol li {
	border: .2rem solid var(--colorEmphasis);
}
.index .schedule .wrap>div div ol li:nth-last-child(n+2)::after {
	content: '';
	display: block;
	border-top: 1.3rem solid transparent;
	border-bottom: 1.3rem solid transparent;
	position: absolute;
	top: calc(50% - 1.3rem);
	left: calc(100% + 1.5rem);
}
.index .schedule .wrap>div.morning div ol li:nth-last-child(n+2)::after {
	border-left: 2.6rem solid var(--colorStrong);
}
.index .schedule .wrap>div.evening div ol li:nth-last-child(n+2)::after {
	border-left: 2.6rem solid var(--colorEmphasis);
}
.index .schedule .wrap>div div ol li dl {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
}
.index .schedule .wrap>div div ol li dl dt {
	color: #fff;
	font-size: 1.8rem;
	padding: .25em .75em .375em;
	border-radius: 9999px;
	margin: -.75em 0 1em;
}
.index .schedule .wrap>div.morning div ol li dl dt {
	background: var(--colorStrong);
}
.index .schedule .wrap>div.evening div ol li dl dt {
	background: var(--colorEmphasis);
}
.index .schedule .wrap>div div ol li dl dt span::before {
	content: '〜';
}
.index .schedule .wrap>div div ol li dl dd:nth-of-type(1) {
	width: 95%;
	aspect-ratio: 3/2;
	margin: 0 auto;
	border-radius: 1rem;
	overflow: hidden;
}
.index .schedule .wrap>div div ol li dl dd:nth-of-type(1) img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index .schedule .wrap>div.morning div ol li:nth-of-type(3) dl dd:nth-of-type(1) img {
	object-position: left center;
}
.index .schedule .wrap>div div ol li dl dd:nth-of-type(2),
.index .schedule .wrap>div div ol li:last-of-type dl dd:nth-of-type(1) {
	flex-grow: 1;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	padding: .5rem 0 1.5rem;
}
.index .schedule .wrap>div div ol li dl dd:nth-of-type(2) span,
.index .schedule .wrap>div div ol li:last-of-type dl dd:nth-of-type(1) span {
	font-size: 2.8rem;
	font-weight: bold;
	color: var(--colorGray);
	margin-top: .25em;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .schedule .read {
		font-size: 1.6rem;
		line-height: 1.75;
		margin: 1.5em auto;
	}
	.index .schedule .read p br {
		display: inline;
	}
	.index .schedule .wrap>div h3 {
		font-size: 2rem;
		width: 80%;
		border-radius: .6rem .6rem 0 0;
		padding: .5em 0 .25em;
	}
	.index .schedule .wrap>div div {
		border-radius: .6rem;
	}
	.index .schedule .wrap>div div ol {
		flex-flow: column;
		gap: 2rem;
	}
	.index .schedule .wrap>div div ol li {
		width: 100%;
		border-radius: .6rem;
		height: 4rem;
	}
	.index .schedule .wrap>div div ol li:nth-last-child(n+2)::after {
		top: calc(100% + .6rem);
		left: calc(50% - 1rem);
		border-right: 1rem solid transparent !important;
		border-left: 1rem solid transparent !important;
		border-bottom: none;
	}
	.index .schedule .wrap>div.morning div ol li:nth-last-child(n+2)::after {
		border-top: 1.2rem solid var(--colorStrong);
	}
	.index .schedule .wrap>div.evening div ol li:nth-last-child(n+2)::after {
		border-top: 1.2rem solid var(--colorEmphasis);
	}
	.index .schedule .wrap>div div ol li dl {
		flex-flow: row;
		align-items: stretch;
	}
	.index .schedule .wrap>div div ol li dl dt {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 6rem;
		font-size: 1.4rem;
		border-radius: .4rem 0 0 .4rem;
		margin: 0;
		padding: 0 .5em;
	}
	.index .schedule .wrap>div div ol li dl dt span {
		display: none;
	}
	.index .schedule .wrap>div div ol li dl dd:nth-of-type(1) {
		display: none;
	}
	.index .schedule .wrap>div div ol li dl dd:nth-of-type(2),
	.index .schedule .wrap>div div ol li:last-of-type dl dd:nth-of-type(1) {
		flex-flow: row;
		align-items: center;
		justify-content: flex-start;
		padding: 0 .5em;
		letter-spacing: .05em;
	}
	.index .schedule .wrap>div div ol li dl dd:nth-of-type(2) span,
	.index .schedule .wrap>div div ol li:last-of-type dl dd:nth-of-type(1) span {
		font-size: 1.4rem;
		font-weight: 500;
		margin-top: 0;
	}
	.index .schedule .wrap>div div ol li dl dd:nth-of-type(2) span:nth-of-type(n+2)::before {
		content: '\00B7';
	}
}




/* .index .environment	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .environment {
	position: relative;
}
.index .environment>h2::before {
	content: 'ENVIRONMENT';
}
.index .environment .read {
	text-align: center;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.75;
}
.index .environment .read br:nth-of-type(n+3) {
	display: none;
}
.index .environment h3 {
	display: flex;
	flex-flow: column;
	align-items: center;
	color: #fff;
	font-size: 3.4rem;
	margin-top: 1.25em;
}
.index .environment h3>span {
	display: block;
	background: linear-gradient(90deg,#d9b339,#d97942);
	padding: .375em .5em .5em;
	margin-top: .5em;
}
.index .environment figure img {
	position: absolute;
}
.index .environment figure img:nth-of-type(1) {
	width: 36.7rem;
	top: 13.5rem;
	left: 5rem;
}
.index .environment figure img:nth-of-type(2) {
	width: 28.4rem;
	top: 11rem;
	right: 14rem;
}
.index .environment figure img:nth-of-type(3) {
	width: 21.7rem;
	top: 54.5rem;
	right: 4rem;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .environment {
		padding: 50% 4% 40%;
	}
	.index .environment .read {
		font-size: 2rem;
	}
	.index .environment .read br:nth-of-type(n+3) {
		display: inline;
	}
	.index .environment h3 {
		font-size: 2.4rem;
	}
	.index .environment h3>span {
		margin-top: .25em;
	}
	.index .environment h3>span:nth-of-type(1) {
		display: flex;
		flex-flow: column;
		align-items: center;
		background: none;
		padding: 0;
		margin-top: 0;
	}
	.index .environment h3>span>span {
		display: block;
		background: linear-gradient(90deg,#d9b339,#d97942);
		padding: .375em .25em .5em;
		margin-top: .25em;
	}
	.index .environment figure img:nth-of-type(1) {
		width: 55%;
		top: 1rem;
		left: auto;
		right: 1rem;
	}
	.index .environment figure img:nth-of-type(2) {
		width: 37.5%;
		top: 8rem;
		right: auto;
		left: 1rem;
	}
	.index .environment figure img:nth-of-type(3) {
		width: 30%;
		top: auto;
		bottom: 4rem;
		right: 1rem;
	}
}




/* .index .experience	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .experience {
	margin: 0 4%;
	background: var(--colorGray);
	color: #fff;
	padding: 3.75% 0 5%;
	border-radius: 2rem;
}
.index .experience>h2 {
	font-size: 3rem;
	margin-bottom: 0;
}
.index .experience>h2::before,
.index .experience>h2::after {
	display: none;
}
.index .experience p {
	text-align: center;
	font-size: 2.4rem;
	margin: 1em auto 2em;
}
.index .experience p br {
	display: none;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .experience {
		margin: 0;
		border-radius: 0;
		padding: 10% 0;
	}
	.index .experience>h2 {
		font-size: 2.2rem;
	}
	.index .experience p {
		font-size: 1.6rem;
		line-height: 1.75;
	}
	.index .experience p br {
		display: inline;
	}
}




/* .index .faq	**************************************************************************************************************************************************************************************************************************************************************************** */
.index .faq>h2::before {
	content: 'Q&A';
}
.index .faq .wrap {
	background: var(--colorBeige);
	border-radius: 2rem;
	padding: 6rem 6.5rem;
}
.index .faq .wrap dl {
	border-radius: 1rem;
	background: #fff;
	font-size: 2.2rem;
	line-height: 1.75;
}
.index .faq .wrap dl:nth-of-type(n+2) {
	margin-top: 3rem;
}
.index .faq .wrap dl dt {
	padding: 1em 1.5em;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.index .faq .wrap dl dt::before {
	content: 'Q';
	color: var(--colorEmphasis);
	font-size: 3.4rem;
	font-weight: bold;
	margin-top: -.25em;
	margin-right: 1.6rem;
}
.index .faq .wrap dl dt::after {
	content: '＋';
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: var(--colorEmphasis);
	font-size: 3rem;
	line-height: 1;
	width: 1.25em;
	aspect-ratio: 1/1;
	padding-bottom: .125em;
	margin-left: auto;
	border-radius: 50%;
	outline: 2px solid transparent;
	transition: .5s;
}
.index .faq .wrap dl dt:hover::after {
	outline-color: var(--colorEmphasis);
	outline-offset: .75rem;
}
.index .faq .wrap dl dt.answer::after {
	content: '−';
	background: var(--colorGray);
	outline-color: var(--colorGray);
}
.index .faq .wrap dl dd {
	padding: 1.25em 1.5em 1.25em calc(1.5em + 4.375rem);
	position: relative;
	display: none;
}
.index .faq .wrap dl dd::before {
	content: '';
	display: block;
	background: var(--colorBlightGray);
	width: calc(100% - 3em);
	height: 2px;
	position: absolute;
	top: 0;
	left: 1.5em;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.index .faq {
		padding: 10% 0 15%;
	}
	.index .faq .wrap {
		border-radius: 0;
		padding: 5%;
	}
	.index .faq .wrap dl {
		border-radius: .6rem;
		font-size: 1.4rem;
	}
	.index .faq .wrap dl:nth-of-type(n+2) {
		margin-top: 1.5rem;
	}
	.index .faq .wrap dl dt {
		padding: .75em .5em;
		letter-spacing: .05em;
	}
	.index .faq .wrap dl dt::before {
		font-size: 2.4rem;
		margin-right: .8rem;
	}
	.index .faq .wrap dl dd {
		padding: 1.25em 1.5em;
	}
	.index .faq .wrap dl dt::after {
		font-size: 2rem;
	}
}




/* footer	**************************************************************************************************************************************************************************************************************************************************************************** */
footer {
	background: var(--colorBeige);
	border-top: 1rem solid var(--colorStrong);
	display: flex;
	flex-flow: column;
	align-items: center;
	padding-top: 2.5%;
}
footer .tel {
	list-style: none;
	color: var(--colorStrong);
	background: url(../_img/ic_tel.webp) no-repeat left top/4.4rem auto;
	padding-left: 5rem;
}
footer .tel li:nth-child(1) {
	font-size: 4rem;
	font-weight: bold;
}
footer .tel li:nth-child(2) {
	font-size: 1.6rem;
	margin-top: .375em;
}
footer>div {
	width: 90%;
	padding: 3.75% 0;
	display: flex;
	justify-content: space-between;
}
footer>div>div {
	width: 47.5%;
}
footer>div>div h2 {
	font-size: 2.2rem;
	border-bottom: 1px solid var(--colorBlack);
	margin-bottom: .5em;
	padding-bottom: .25em;
	display: flex;
	align-items: center;
}
footer>div>div h2::before {
	content: '';
	display: block;
	height: 1.25em;
	aspect-ratio: 94/86;
	margin-right: .25em;
}
footer>div>div>div:nth-of-type(1) h2::before {
	background: url(../_img/ic_building.webp) no-repeat center/contain;
}
footer>div>div>div:nth-of-type(2) h2::before,
footer>div>div:last-child h2::before {
	background: url(../_img/ic_watch.webp) no-repeat center/contain;
}
footer>div>div>div:nth-of-type(2) {
	margin-top: 5%;
}
footer>div>div>div.mb {
	display: none;
}
footer>div>div>div>dl {
	display: flex;
	flex-flow: wrap;
	align-items: baseline;
	width: 100%;
	line-height: 1.375;
}
footer>div>div>div>dl>dt {
	padding: .25em;
	width: 15%;
	text-align: center;
	color: #fff;
	background: var(--colorStrong);
	border-radius: .4rem;
}
footer>div>div>div>dl>dd {
	padding: .625em 1em;
	width: 85%;
}
footer>div>div table {
	border-collapse: collapse;
	width: 100%;
	border: 1px solid var(--colorGray);
}
footer>div>div table thead {
	background: var(--colorGray);
	color: #fff;
}
footer>div>div table thead th {
	padding: 1em 0;
}
footer>div>div table thead th:nth-of-type(n+2) {
	border-left: 1px solid #fff;
	padding: .75em .875em 1em;
}
footer>div>div table tbody {
	background: #fff;
	color: var(--colorGray);
}
footer>div>div table tbody td {
	border-left: 1px solid var(--colorGray);
	font-size: 2.2rem;
	text-align: center;
	padding: .25em 0;
}
footer>div>figure {
	width: 45%;
}
footer>div>figure iframe {
	width: 100%;
	aspect-ratio: 25/14;
}
footer>div>figure figcaption {
	line-height: 1.5;
	margin-top: .5em;
}
footer>small {
	text-align: center;
	padding: 1.5em 0;
	width: 100%;
	background: var(--colorStrong);
	color: #fff;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	footer {
		padding-top: 5%;
	}
	footer .tel {
		background: url(../_img/ic_tel.webp) no-repeat left top/3.6rem auto;
		padding-left: 4rem;
	}
	footer .tel li:nth-child(1) {
		font-size: 2.8rem;
	}
	footer .tel li:nth-child(2) {
		font-size: 1.2rem;
	}
	footer>div {
		flex-flow: column;
		padding: 10% 0 25%;
	}
	footer>div>div {
		width: 100%;
	}
	footer>div>div h2 {
		font-size: 1.8rem;
	}
	footer>div>div>div>dl {
		font-size: 1.4rem;
	}
	footer>div>div>div>dl>dt {
		width: 25%;
	}
	footer>div>div>div>dl>dd {
		width: 75%;
	}
	footer>div>div table thead th {
		font-size: 1.2rem;
		padding: .5em 0 .75em;
	}
	footer>div>div table thead th:nth-of-type(n+2) {
		padding: .5em .25em .75em;
	}
	footer>div>div table tbody {
		background: #fff;
		color: var(--colorGray);
	}
	footer>div>div table tbody th {
		font-size: 1.1rem;
	}
	footer>div>div table tbody td {
		font-size: 2rem;
	}
	footer>div>figure {
		width: 100%;
		margin-top: 2.5%;
	}
	footer>div>figure figcaption {
		font-size: 1.2rem;
		letter-spacing: .075em;
	}
	footer>div>div:last-child {
		margin-top: 15%;
	}
}




/* .pages	**************************************************************************************************************************************************************************************************************************************************************************** */
.pages .pageTitle {
	font-size: 4rem;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 5%;
}
.pages .pageTitle::before,
.pages .pageTitle::after {
	content: '';
	display: block;
	width: 1.25em;
	aspect-ratio: 100/27;
}
.pages .pageTitle::before {
	background: url(../_img/h_left.webp) no-repeat center/cover;
}
.pages .pageTitle::after {
	background: url(../_img/h_right.webp) no-repeat center/cover;
}
.pages .pageTitle span {
	margin: 0 .375em;
	letter-spacing: .1em;
}
.pages .fv {
	width: 92%;
	aspect-ratio: 3/1;
	margin: 5% auto;
	border-radius: 2rem;
	overflow: hidden;
}
.pages .fv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pages.outline .fv {
	text-align: center;
	background: url(../_img/prs1.webp) no-repeat center/cover;
	position: relative;
}
.pages.outline .fv::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff6;
	backdrop-filter: blur(.5rem);
}
.pages.outline .fv figcaption {
	width: 40%;
	padding: .375em 2.5%; 
	background: #0009;
	color: #fff;
	font-size: 2.25rem;
	line-height: 1.375;
	border-radius: 0 2rem 2rem 0;
	position: absolute;
	bottom: calc(50% - 1.5em);
	z-index: 1;
}
.pages.outline .fv figcaption span {
	display: inline-block;
	margin: 0 .25em;
}
.pages.outline .fv figcaption span:last-child {
	font-size: 1.5em;
}
.pages.outline .fv img {
	width: 60%;
	height: auto;
	max-height: none;
	object-fit: fill;
	position: relative;
	z-index: 1;
}
.pages .cnt {
	padding: 5% 4% 15%;
}
.pages .bgDots {
	background-image: radial-gradient(closest-side, var(--colorDots) 20%, transparent 21%), radial-gradient(closest-side, var(--colorDots) 20%, transparent 21%);
	background-size: 24px 24px, 24px 24px;
	background-repeat: repeat, repeat;
	background-position: 0 0, 12px 12px;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.pages .pageTitle {
		font-size: 2.375rem;
		margin-top: 5%;
	}
	.pages .fv {
		aspect-ratio: 13/16;
	}
	.pages .fv img {
	}
	.pages.pExperience .fv img {
		object-position: right center;
	}
	.pages.pStaff .fv {
		text-align: center;
		position: relative;
	}
	.pages.pStaff .fv img {
		object-fit: fill;
		width: auto;
		max-width: none;
		height: 125%;
		max-height: none;
		/* aspect-ratio: 16/9; */
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.pages.outline .fv figcaption {
		width: 100%;
		bottom: 0;
	}
	.pages.outline .fv img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 90% center;
	}
}




/* .pages main>section	**************************************************************************************************************************************************************************************************************************************************************************** */
.pages main>section,
.pages main>.sec {
	padding: 3.75% 4% 7.5%;
}
.pages main>section h2 {
	background: url(../_img/yuzu_illust.webp) no-repeat center/contain;
	text-align: center;
	font-size: 3.6rem;
	padding: 1em 0 .5em;
}
.fkds figure {
	position: relative;
}
.fkds figure figcaption {
	color: var(--colorGreen);
	background: #fff;
	display: inline-block;
	font-size: 2.4rem;
	line-height: 1;
	padding: .25em 0 .375em;
	border-radius: 9999px;
	filter: drop-shadow(0 0 .0625em var(--colorGreen)) drop-shadow(0 0 .0625em var(--colorGreen)) drop-shadow(0 0 .0625em var(--colorGreen)) drop-shadow(0 0 .0625em var(--colorGreen)) drop-shadow(0 0 .0625em var(--colorGreen));
	position: absolute;
}
.fkds figure figcaption::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: .375em solid #fff;
	border-right: .375em solid transparent;
	border-left: .375em solid transparent;
	position: absolute;
	left: calc(50% - .375em);
	top: 100%;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.pages main>section h2 {
		font-size: 2.4rem;
		line-height: 1.375;
	}
	.pages main>section h2.headVoice {
		font-size: inherit;
		line-height: inherit;
	}
}




/* .intention	**************************************************************************************************************************************************************************************************************************************************************************** */
.pages .intention h2 {
	margin-bottom: 7.5%;
}
.pages .intention h2::before {
	content: "MAKE YOUR PLACE";
}
/* 
.pages .intention h2 {
	color: var(--colorGold);
	font-size: 6rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .15em;
	text-align: center;
	background: none;
	margin-bottom: 5%;
	position: relative;
	background: radial-gradient(closest-side at center,var(--colorYuzu80),transparent);
}
.pages .intention h2 span {
	display: inline-block;
	padding: 1.5em 0;
	text-shadow: 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff, 0 0 .25em #fff;
}
.pages .intention h2::before,
.pages .intention h2::after {
	content: '';
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 1em;
	position: absolute;
}
.pages .intention h2::before {
	background-image: url(../_img/yuzu_illust.webp);
	aspect-ratio: 75/87;
	top: calc(0px - 75em / 87);
	left: calc(50% - .5em);
}
.pages .intention h2::after {
	background-image: url(../_img/yzmark.webp);
	aspect-ratio: 1/1;
	bottom: calc(0px - .5em);
	left: calc(50% - .5em);
}
	 */
.pages .intention .read {
	font-size: 2.2rem;
	line-height: 1.75;
	text-align: justify;
	width: 70%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.pages .intention .read:nth-of-type(n+2) {
	margin-top: 5%;
}
.pages .intention .read:nth-of-type(odd) {
	flex-flow: row-reverse;
}
.pages .intention .read:nth-of-type(even) {
	flex-flow: row;
}
.pages .intention .read figure {
	width: 40%;
	margin-bottom: 1rem;
	position: relative;
}
.pages .intention .read figure img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	box-shadow: .5em .5em 0 var(--colorStrong);
}
.pages .intention .read:nth-of-type(odd) figure img {
	border-radius: 40% 60% / 50%;
}
.pages .intention .read:nth-of-type(even) figure img {
	border-radius: 60% 40% / 50%;
}
.pages .intention .read.fkds figure figcaption {
	font-size: 2rem;
	padding: .375em 1em .5em;
	top: -1em;
}
.pages .intention .read.fkds:nth-of-type(odd) figure figcaption {
	right: -1.5em;
	transform: rotate(10deg);
}
.pages .intention .read.fkds:nth-of-type(even) figure figcaption {
	left: -1.5em;
	transform: rotate(-10deg);
}
.pages .intention .read p {
	width: 56.25%;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.pages.pIntention .fv {
		aspect-ratio: 3/2;
	}
	.pages .intention .read {
		font-size: 1.4rem;
		width: 90%;
		margin-top: 20% !important;
		flex-flow: column !important;
	}
	.pages .intention .read figure {
		width: 100%;
		float: none;
		margin: 0 0 2rem;
	}
	.pages .intention .read.fkds figure figcaption {
		top: -1.5em;
	}
	.pages .intention .read.fkds:nth-of-type(odd) figure figcaption {
		right: -1em;
		transform: rotate(5deg);
	}
	.pages .intention .read.fkds:nth-of-type(even) figure figcaption {
		left: -1em;
		transform: rotate(-5deg);
	}
	.pages .intention .read p {
		width: 100%;
	}
}




/* .pBiz	**************************************************************************************************************************************************************************************************************************************************************************** */
.pages.pBiz main>section:nth-of-type(odd) {
	background: var(--colorBeige);
}
.pages.pBiz main>section>* {
	margin: 5% auto 0;
}
.pages.pBiz main>section>*:not(.btn) {
	width: 85%;
	display: block;
}
.pages.pBiz main>section img {
	aspect-ratio: 3/2;
	object-fit: cover;
	border-radius: 2rem;
}
.pages.pBiz main>section>div {
	font-size: 2.4rem;
	line-height: calc(4 / 3);
	letter-spacing: .1em;
}
.pages.pBiz main>section>div.pic {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5%;
}
.pages.pBiz main>section>div.pic.pLeft {
	flex-flow: row;
}
.pages.pBiz main>section>div.pic.pRight {
	flex-flow: row-reverse;
}
.pages.pBiz main>section>div.pic img {
	width: 35%;
}
.pages.pBiz main>section ol.way {
	list-style: none;
	counter-reset: acNum 0;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
}
.pages.pBiz main>section ol.way li {
	width: 30%;
	counter-increment: acNum 1;
	position: relative;
}
.pages.pBiz main>section ol.way li:not(:nth-child(3n+1)) {
	margin-left: 5%;
}
.pages.pBiz main>section ol.way li:nth-child(n+4) {
	margin-top: 3.75%;
}
.pages.pBiz main>section ol.way li::before {
	content: counter(acNum);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	width: 1.75em;
	aspect-ratio: 1/1;
	border: .125em solid #fff;
	border-radius: 50%;
	background: var(--colorStrong);
	position: absolute;
	top: -.5em;
	left: -.5em;
}
.pages.pBiz main>section ol.way li figure img {
	aspect-ratio: 7/4;
}
.pages.pBiz main>section ol.way li figure figcaption {
	margin-top: .5em;
	line-height: 1.375;
	letter-spacing: 0;
}
.pages.pBiz main>section ol.way li::after {
	content: '';
	display: block;
	font-size: 1rem;
	border-left: 4em solid var(--colorStrong);
	border-top: 1.5em solid transparent;
	border-bottom: 1.5em solid transparent;
	position: absolute;
	top: calc(50% - 1.5em);
	left: calc(100% + 1em);
}
.pages.pBiz main>section ol.way li:nth-child(3n)::after {
	transform: rotate(135deg);
	top: auto;
	left: auto;
	bottom: 0;
	right: 0;
}
.pages.pBiz main>section ol.way li:last-child::after {
	display: none;
}
.pages.pBiz main>section>.photo {
	display: flex !important;
	flex-flow: wrap;
	justify-content: space-between;
}
.pages.pBiz main>section>figure.double img {
	width: 47.5%;
}
.pages.pBiz main>section>figure.triple img {
	width: 30%;
}
.pages.pBiz main>section>figure figcaption {
	width: 100%;
	margin-top: 2.5%;
	font-size: 2rem;
	line-height: 1.5;
}
.pages.pBiz main>section>figure.movie {
	position: relative;
}
.pages.pBiz main>section>figure.movie video {
	width: 100%;
}
.pages.pBiz main>section>figure.movie .mBtn {
	cursor: pointer;
	width: 10%;
	aspect-ratio: 500/531;
	filter: drop-shadow(0 0 .5em #fff) drop-shadow(0 0 .5em #fff) drop-shadow(0 0 .5em #fff) drop-shadow(0 0 .5em #fff);
	position: absolute;
	bottom: 15%;
	left: 45%;
	transition: .5s;
}
.pages.pBiz main>section>figure.movie .mBtn:hover {
	transform: scale(1.1);
}
.pages.pBiz main>section>figure.movie .mBtn.playActive {
	opacity: 0;
}
.pages.pBiz main>section>iframe {
	aspect-ratio: 16/9;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.pages.pBiz main>section>*:not(.btn) {
		width: 100%;
	}
	.pages.pBiz main>section>div {
		font-size: 1.6rem;
		line-height: 2;
		letter-spacing: 0;
	}
	.pages.pBiz main>section>div.pic {
		flex-flow: column !important;
	}
	.pages.pBiz main>section>div.pic img {
		width: 100%;
		margin-bottom: 5%;
	}
	.pages.pBiz main>section ol.way {
		flex-flow: column;
	}
	.pages.pBiz main>section ol.way li {
		width: 100%;
	}
	.pages.pBiz main>section ol.way li:not(:nth-child(3n+1)) {
		margin-left: 0;
	}
	.pages.pBiz main>section ol.way li:nth-child(n+2) {
		margin-top: 10%;
	}
	.pages.pBiz main>section ol.way li:nth-child(even) {
		text-align: right;
	}
	.pages.pBiz main>section ol.way li::before {
		font-size: 2.5rem;
	}
	.pages.pBiz main>section ol.way li:nth-child(even)::before {
		left: auto;
		right: -.5em;
	}
	.pages.pBiz main>section ol.way li figure img {
		width: 75%;
	}
	.pages.pBiz main>section ol.way li figure figcaption {
		margin-top: .25em;
	}
	.pages.pBiz main>section ol.way li::after,
	.pages.pBiz main>section ol.way li:nth-child(3n)::after {
		z-index: 1;
		top: 110%;
		left: 17.5%;
		bottom: auto;
		right: auto;
		transform: rotate(45deg);
	}
	.pages.pBiz main>section ol.way li:nth-child(even)::after {
		left: auto;
		right: 17.5%;
		transform: rotate(135deg);
	}
	.pages.pBiz main>section>figure.photo {
		flex-flow: column;
	}
	.pages.pBiz main>section>figure.photo img {
		width: 100% !important;
	}
	.pages.pBiz main>section>figure.photo img:nth-of-type(n+2) {
		margin-top: 5%;
	}
	.pages.pBiz main>section>figure.photo figcaption {
		font-size: 1.4rem;
	}
	.pages.pBiz main>section>figure.movie .mBtn {
		width: 14%;
		left: 43%;
	}
}




/* .exPlease	**************************************************************************************************************************************************************************************************************************************************************************** */
.pages .exPlease {
	padding: 5% 4% 10%;
}
.pages h2.headVoice {
	display: flex;
	flex-flow: column;
	align-items: center;
	font-size: 1em;
	text-align: center;
	background: none;
	background: url(../_img/h_left.webp) no-repeat center bottom/3.75% auto;
}
.pages h2.headVoice::before {
	color: var(--colorStrong);
	font-size: 1em;
	font-weight: bold;
}
.pages .exPlease h2::before {
	content: 'WELCOME';
}
.pages h2.headVoice>span {
	display: flex;
	font-size: 3.25rem;
	letter-spacing: .125em;
	padding: .875em .5em 1.25em;
	position: relative;
	/* perspective: 4rem;
	perspective-origin: 50% 40%; */
}
/* .pages h2.headVoice>span::before {
	content: '';
	display: block;
	background: #f00;
	border-right: 1px solid var(--colorText);
	border-left: 1px solid var(--colorText);
	width: 4rem;
	aspect-ratio: 1/1;
	position: absolute;
	top: 0;
	left: 0;
	transform-style: preserve-3d;
	transform: rotate3d(1,0,0,45deg);
} */
.pages h2.headVoice>span>span.hLine {
	width: .25em;
	aspect-ratio: 1/5;
	position: absolute;
	bottom: 1.125em;
}
.pages h2.headVoice>span>span.hLine::before,
.pages h2.headVoice>span>span.hLine::after {
	content: '';
	display: block;
	width: 2px;
	background: var(--colorText);
	position: absolute;
	bottom: 0;
	transform-origin: right bottom;
}
.pages h2.headVoice>span>span.hLine::before {
	height: 100%;
	left: 0;
	transform: rotate(22.5deg);
}
.pages h2.headVoice>span>span.hLine::after {
	height: 45%;
	right: 0;
	transform: rotate(40deg);
}
.pages h2.headVoice>span>span.hLL {
	left: 0;
	transform: scaleX(-1);
}
.pages h2.headVoice>span>span.hLR {
	right: 0;
}
.pages h2.headVoice>span>strong {
	color: #fff;
	display: flex;
	margin: 0 .5em;
}
.pages h2.headVoice>span>strong>span {
	position: relative;
}
.pages h2.headVoice>span>strong>span::before {
	content: '';
	display: block;
	background: var(--colorEmphasis);
	position: absolute;
	width: 1em;
	aspect-ratio: 1/1;
	border-radius: 50%;
	transform: scale(1.625) translateY(.03125em);
}
.pages h2.headVoice>span>strong>span>span {
	position: relative;
	z-index: 1;
}
.pages .exPlease .read {
	width: 85%;
	margin: 5% auto 0;
	font-size: 2.4rem;
	line-height: calc(4 / 3);
	letter-spacing: .1em;
}
.pages .exPlease .read p:nth-of-type(n+2) {
	margin-top: 1em;
}
.pages .exPlease .pic {
	display: flex;
	justify-content: space-between;
	margin-top: 7.5%;
}
.pages .exPlease .pic figure {
	width: 30%;
}
.pages .exPlease .pic figure img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
	border-radius: 2rem;
	box-shadow: 1.2rem 1.2rem 0 var(--colorStrong);
}
.pages .exPlease .pic.fkds figure figcaption {
	padding: .25em 2.5em .375em;
	left: calc(50% - 3.5em);
	top: -1em;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.pages .exPlease {
		padding: 5% 5% 20%;
	}
	.pages h2.headVoice {
		background: url(../_img/h_left.webp) no-repeat center bottom/10% auto;
	}
	.pages h2.headVoice>span {
		flex-flow: column;
		align-items: center;
		padding: .5em .5em .75em;
		font-size: 2.375rem;
	}
	.pages h2.headVoice>span>strong {
		margin: .5em 0;
	}
	.pages .exPlease .read {
		width: 100%;
		font-size: 1.6rem;
		line-height: 2;
	}
	.pages .exPlease .read p:nth-of-type(n+2) {
		margin-top: 0;
	}
	.pages .exPlease .pic {
		margin-top: 25%;
		flex-flow: column;
		row-gap: 8rem;
	}
	.pages .exPlease .pic figure {
		width: 100%;
	}
	.pages .exPlease .pic figure figcaption {
		font-size: 2rem;
	}
}




/* .exContent	**************************************************************************************************************************************************************************************************************************************************************************** */
.exContent ol {
	list-style: none;
	counter-reset: ecNum 0;
	width: 90%;
	margin: 5% auto 0;
	position: relative;
}
.exContent ol::before {
	content: '';
	display: block;
	background: #eee;
	width: .4rem;
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: calc(50% - .2rem);
}
.exContent ol li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.exContent ol li:nth-child(odd) {
	flex-flow: row-reverse;
}
.exContent ol li:nth-child(n+2) {
	margin-top: 10%;
}
.exContent ol li::before {
	counter-increment: ecNum 1;
	content: counter(ecNum, decimal-leading-zero);
	font-size: 3.6rem;
	color: #fff;
	background: var(--colorEmphasis);
	width: 2.5em;
	aspect-ratio: 1/1;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: calc(50% - 1.25em);
}
.exContent ol li div {
	width: 45%;
}
.exContent ol li div h3 {
	color: var(--colorGold);
	border-bottom: .4rem dotted var(--colorGold);
	font-size: 3rem;
	padding-bottom: .375em;
	margin-bottom: .75em;
}
.exContent ol li div p {
	font-size: 2rem;
	line-height: 1.75;
}
.exContent ol li img {
	width: 47.5%;
	aspect-ratio: 17/10;
	object-fit: cover;
	border-radius: 2rem;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.exContent ol::before {
		top: 0%;
		bottom: 22%;
		left: 2.3rem;
	}
	.exContent ol li {
		flex-flow: column;
		align-items: flex-end;
	}
	.exContent ol li:nth-child(odd) {
		flex-flow: column;
	}
	.exContent ol li::before {
		font-size: 2rem;
		top: 0;
		left: 0;
	}
	.exContent ol li div {
		width: calc(100% - 5rem);
		padding-top: .875em;
	}
	.exContent ol li div h3 {
		font-size: 2.2rem;
		padding: 0 .25em .375em;
	}
	.exContent ol li div p {
		font-size: 1.6rem;
		letter-spacing: .05em;
	}
	.exContent ol li img {
		width: calc(100% - 5rem);
		border-radius: 1rem;
		margin-top: 1.5em;
	}
}




/* .exTime	**************************************************************************************************************************************************************************************************************************************************************************** */
.exTime {
	background: var(--colorRedBeige);
}
.exTime p {
	font-size: 2.6rem;
	line-height: 1.75;
	text-align: center;
	margin: 5% auto;
}
.exTime p span {
	display: none;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.exTime p {
		font-size: 1.6rem;
		text-align: left;
	}
	.exTime p span {
		display: inline;
	}
	.exTime p br:nth-of-type(1),
	.exTime p br:nth-of-type(3) {
		display: none;
	}
}




/* .outLaunch	**************************************************************************************************************************************************************************************************************************************************************************** */
.outLaunch .read {
	margin-top: 5%;
}
.outLaunch .read div:nth-of-type(n+2) {
	margin-top: 2.5em;
}
.outLaunch .read div::after {
	content: '';
	display: block;
	clear: both;
}
.outLaunch .read figure {
	width: 50%;
	aspect-ratio: 3/2;
	margin-bottom: 1rem;
	border-radius: 2rem;
	overflow: hidden;
}
.outLaunch .read div:nth-of-type(odd) figure {
	float: right;
	margin-left: 3rem;
}
.outLaunch .read div:nth-of-type(even) figure {
	float: left;
	margin-right: 3rem;
}
.outLaunch .read figure img {
	width: 100%;
	object-fit: cover;
}
.outLaunch .read div:nth-of-type(3) figure {
	display: flex;
	flex-flow: row-reverse;
	position: relative;
}
.outLaunch .read div:nth-of-type(3) figure img {
	max-width: none;
	max-height: none;
	width: 130%;
	height: auto;
	object-fit: fill;
	position: absolute;
	bottom: -20%;
}
.outLaunch .read figure figcaption {
	font-size: 1.6rem;
	margin-top: .5em;
	text-align: right;
}
.outLaunch .read figure figcaption span {
	display: inline-block;
	margin-right: .75em;
}
.outLaunch .read figure figcaption span:last-of-type {
	margin-right: 0;
	font-size: 1.25em;
	font-weight: 700;
}
.outLaunch .read p {
	font-size: 2rem;
	line-height: 1.75;
}
.outLaunch .read p:not(:first-of-type) {
	margin-top: 1.25em;
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.outLaunch .read figure {
		width: 100% !important;
		float: none !important;
		margin: 0 auto 1rem !important;
	}
	.outLaunch .read div:nth-of-type(1) figure {
		margin: 0 auto 5% !important;
	}
	.outLaunch .read figure figcaption {
		text-align: center;
		line-height: 1.5;
	}
	.outLaunch .read figure figcaption span {
		margin: 0 .375em;
	}
	.outLaunch .read figure figcaption span:last-of-type {
		margin-right: 0;
		font-size: 1.25em;
		font-weight: 700;
	}
	.outLaunch .read p {
		font-size: 1.75rem;
		line-height: 1.75;
	}
	.outLaunch .read p:not(:first-of-type) {
		margin-top: 1.25em;
	}
}




/* form	**************************************************************************************************************************************************************************************************************************************************************************** */
form dl {
	width: 700px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
}
form dl:nth-of-type(n+2) {
	margin-top: 2.5%;
}
form input,
form textarea {
	-webkit-appearance: none;
	appearance: none;
}
form dl dt {
	background: var(--colorBeige);
	width: 10em;
	display: flex;
	margin-right: .5em;
}
form dl dt label {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
form dl dd {
	flex-grow: 1;
}
.confirm form dl dd {
	padding: .75em 0;
}
.confirm form dl:first-of-type {
	margin-top: 5%;
}
form dl dd input:not(div>*),
form dl dd textarea {
	width: 100%;
	border: 1px solid var(--colorLightGray);
	font: inherit;
	outline: none;
	padding: .75em;
}
form dl dd input:not(div>*):focus,
form dl dd textarea:focus {
	background: var(--colorYuzu20);
}
form dl dd textarea {
	resize: vertical;
	height: 15em;
}
form div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2.5%;
}
form div input {
	border: none;
	color: #fff;
	padding: .75em 1em;
	cursor: pointer;
	transition: .5s;
}
form div input[type="submit"] {
	background: var(--colorStrong);
}
form div input[type="submit"]:hover {
	transform: scale(1.5);
}
form div input:not([type="submit"]) {
	background: var(--colorBlack);
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	form dl {
		flex-flow: column;
	}
	form dl:nth-of-type(n+2) {
		margin-top: 5%;
	}
	form dl dt {
		width: 100%;
		margin-right: 0;
		padding: .5em 0;
	}
	form div {
		margin-top: 10%;
	}
	form div input {
		font-size: 1.5rem;
	}
}




/* .blog	**************************************************************************************************************************************************************************************************************************************************************************** */
.pages.blog {
	background-image: radial-gradient(closest-side, var(--colorDots) 20%, transparent 21%), radial-gradient(closest-side, var(--colorDots) 20%, transparent 21%);
	background-size: 24px 24px, 24px 24px;
	background-repeat: repeat, repeat;
	background-position: 0 0, 12px 12px;
}
.blogWrap {
	padding: 5% 4% 15%;
	display: flex;
	justify-content: space-between;
	flex-flow: row;
	font-size: 2rem;
}
.blogWrap a {
	display: inline-block;
	text-decoration: underline;
}
.blogWrap a:hover,
.home .blogWrap a,
.archive .blogWrap a {
	text-decoration: none;
}
.archive h1.entry-title {
	font-size: 3rem;
	text-align: center;
	background: #fff;
	border: .125em solid var(--colorStrong);
	border-radius: 9999px;
	padding: .25em 0 .375em;
	margin-bottom: 5%;
}
.blogWrap .blogCnt {
	width: 80%;
}
.blogWrap .blogCnt:has(.frontAtc) {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}
.blogWrap .blogCnt .header {
	width: 100%;
}
.frontAtc {
	width: 48.125%;
}
.frontAtc:nth-of-type(n+3) {
	margin-top: 3.75%;
}
.frontAtc a {
/* 	
	display: grid;
	grid-template-columns: 1fr 3fr;
	 */
	display: flex;
	flex-flow: column;
	background: #fff;
	padding: 2rem;
	border-radius: 2rem;
	box-shadow: 0 .25rem .5rem #0006;
	transition: .5s;
}
.frontAtc a:hover {
	background: var(--colorRedBeige);
	transform: translateY(-1rem);
	box-shadow: 0 .5rem 1rem #0004;
}
.frontAtc header {
	margin: 1em 0;
}
.frontAtc header h2 {
	font-size: 1.375em;
	line-height: 1.25;
	margin-bottom: .25em;
}
.frontAtc header time {
	font-size: .75em;
}
.frontAtc .entry-thumb {
	order: -1;
/* 
	grid-row: 1/3;
	aspect-ratio: 4/3;
	margin-right: 2rem;
	 */
	aspect-ratio: 2/1;
	border-radius: 1rem;
	border: 1px solid var(--colorStrong);
	overflow: hidden;
}
.frontAtc .entry-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.frontAtc .entry-excerpt {
	line-height: 1.5;
}
.blogWrap #sidebar {
	width: 15%;
}
#sidebar .xoxo {
	list-style: none;
}
#sidebar .xoxo>li {
}
#sidebar .xoxo>li:nth-child(n+2) {
	margin-top: 5rem;
}
#sidebar .xoxo>li h3 {
	background: var(--colorStrong);
	color: #fff;
	text-align: center;
	padding: .375em 0;
	border-radius: 9999px;
}
#sidebar .xoxo>li nav ul {
	list-style: none;
}
#sidebar .xoxo>li nav ul li {
	margin-top: .75em;
}
#calendar_wrap {
	font-size: 1.6rem;
}
#wp-calendar {
	text-align: center;
	width: 100%;
	margin-bottom: .5em;
}
#wp-calendar caption {
	margin-bottom: .5em;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--colorStrong);
}
#wp-calendar thead {
}
#wp-calendar thead th:first-child {
	color: #f00;
}
#wp-calendar thead th:last-child {
	color: #00f;
}
#wp-calendar tbody {
	letter-spacing: 0;
}
#wp-calendar th,
#wp-calendar td {
	padding: .25em 0;
}
#wp-calendar td a {
	outline: .125em solid var(--colorStrong);
	outline-offset: .25em;
	border: 9999px;
}
#today {
	background: var(--colorStrong);
	color: #fff;
	font-weight: bold;
}
.single .blogCnt header {
}
.single h1.entry-title {
	font-size: 3rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	line-height: 1.25;
	margin-bottom: .5em;
}
.single h1.entry-title::before {
	content: '';
	display: block;
	width: 1.25em;
	aspect-ratio: 100 / 27;
	background: url(../_img/h_left.webp) no-repeat center / cover;
	margin-right: .375em;
}
.single .entry-meta {
	text-align: right;
}
.single .entry-meta time {
	display: inline-block;
	background: #fff;
	border: 1px solid var(--colorStrong);
	padding: .25em .75em;
	border-radius: 9999px;
}
.single .blogCnt .entry-content {
	line-height: 1.75;
	margin: 7.5% auto;
}
.single .blogCnt .entry-content>*:not(:first-child) {
	margin-top: 3.75%;
}
.single .blogCnt .entry-footer {
	margin-bottom: 5%;
}
.single .blogCnt .entry-footer .cat-links {
	display: block;
	text-align: center;
}
.single .blogCnt .entry-footer .cat-links span {
	display: inline-block;
	background: var(--colorStrong);
	color: #fff;
	padding: .25em .75em;
	border-radius: 9999px;
	margin-right: .5em;
}
.single .blogCnt .footer .nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.single .blogCnt .footer .nav-links:has(.nav-next:only-child) {
	justify-content: flex-end;
}
.single .blogCnt .footer .nav-links a {
	text-decoration: none;
	display: flex;
	align-items: center;
}
.single .blogCnt .footer .nav-links .meta-nav {
	background: var(--colorStrong);
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	aspect-ratio: 1/1;
	border-radius: 50%;
}
.single .blogCnt .footer .nav-links .nav-previous .meta-nav {
	margin-right: .5em;
}
.single .blogCnt .footer .nav-links .nav-next .meta-nav {
	margin-left: .5em;
}
.single .blogCnt .footer .nav-links a span:not(.meta-nav) {
	text-decoration: underline;
}
.single .blogCnt .footer .nav-links a:hover span:not(.meta-nav) {
	text-decoration: none;
}
.wp-pagenavi {
	width: 100%;
	margin-top: 15%;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wp-pagenavi .pages,
.wp-pagenavi>*:last-child {
	margin-right: auto !important;
}
.wp-pagenavi>*:not(.pages) {
	margin: 0 .125em;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.5em;
	aspect-ratio: 1/1;
}
.wp-pagenavi .pages {
	background: var(--colorGray);
	color: #fff;
	padding: .25em .5em;
	border-radius: .25em;
}
.wp-pagenavi .pages::first-letter {
	font-size: 1.5em;
	font-weight: 900;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
	color: var(--colorStrong);
	background: #fff;
	border: 1px solid var(--colorStrong);
	font-size: 1.5em;
	font-weight: 900;
	border-radius: 50%;

}
.wp-pagenavi .current {
	background: var(--colorStrong);
	color: #fff;
	font-size: 1.5em;
	font-weight: 900;
	width: 1.5em;
	border-radius: .25em;
}
.wp-pagenavi a.page {
	background: var(--colorGray);
	color: #fff;
	border-radius: 50%;
	transition: .5s;
}
.wp-pagenavi a.page:hover {
	color: var(--colorGray);
	background: #fff;
	border: 1px solid var(--colorGray);
}
.wp-pagenavi a.page.smaller,
.wp-pagenavi a.page.larger {
}
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
	.blogWrap {
		flex-flow: column;
		font-size: 1.6rem;
	}
	.blogWrap .blogCnt {
		width: 100%;
	}
	.frontAtc {
		width: 100%;
	}
	.frontAtc:nth-of-type(n+2) {
		margin-top: 10%;
	}
	.frontAtc a {
		display: flex;
		flex-flow: column;
	}
	.frontAtc .entry-thumb {
		margin-right: 0;
	}
	.frontAtc header {
		margin: 5% auto;
	}
	.frontAtc header h2 {
    font-size: 1.25em;
		letter-spacing: 0;
	}
	.frontAtc header time {
		display: block;
		width: 100%;
		text-align: center;
	}
	.archive h1.entry-title {
		font-size: 2rem;
	}
	.single h1.entry-title {
		font-size: 2rem;
	}
	.single .blogCnt .entry-content {
		font-size: 1.6rem;
		margin: 15% auto;
	}
	.single .blogCnt .entry-footer {
		margin-bottom: 15%;
	}
	.single .blogCnt .entry-footer .cat-links {
		display: flex;
		flex-flow: column;
		align-items: center;
	}
	.single .blogCnt .entry-footer .cat-links span {
		margin-right: 0;
		margin-bottom: .5em;
	}
	.blogWrap #sidebar {
		width: 100%;
		margin-top: 15%;
	}
	.single .blogCnt .footer .nav-links {
		flex-flow: column;
		align-items: stretch;
		font-size: 1.6rem;
		line-height: 1.375;
	}
	.single .blogCnt .footer .nav-links .nav-previous {
		align-self: flex-start;
	}
	.single .blogCnt .footer .nav-links .nav-next {
		align-self: flex-end;
	}
	.wp-pagenavi {
		font-size: 1.4rem;
	}
}




/* .div	**************************************************************************************************************************************************************************************************************************************************************************** */
/* max 700px	************************************************************************************************ */
@media (max-width: 700px) {
}