@charset "UTF-8";

/* ================================================================================
KV
================================================================================ */
@media print, screen
{

#KV .background
{
	--degX: calc((490 * var(--v)) / tan(72deg));

	z-index: 2;
	position: absolute;
	top: 0;	left: 0;

	width: 44vw;	height: 100%;
	background: var(--Ctheme1);

	clip-path: polygon(0 0,0 100%, calc(100% - var(--degX)) 100%, 100% 0);
}
#KV .image
{
	--degX: calc((450 * var(--v))/tan(72deg));

	z-index: 1;
	position: absolute;
	top: 0;	right: 0;

	width: calc(56vw + (490 * var(--v)) / tan(72deg));	height: calc(450 * var(--v));
	clip-path: polygon(var(--degX) 0,0 100%, 100% 100%, 100% 0);
}

#KV > .inner
{
	z-index: 3;
	display: flex;	align-items: center;
	height: calc(490 * var(--v));
	padding: var(--headerH) 0 calc(0 * var(--v));
}
#KV p
{
	margin-bottom: calc(20 * var(--v));

	color: white;
	font-family: var(--Roboto);
	font-size: var(--fzv115);
	font-weight: 100;
}
#KV h1
{
	color: white;
	font-size: var(--fzv22);
	font-weight: 300;
	line-height: 1.5;
}
#KV h1 span{	font-size: 0.8em;	}


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

#KV{	padding: 0 calc(2 * var(--pageP));	}
#KV .background
{
	--degX: calc(71vw/tan(72deg));
	width: 57vw;
}
#KV .image
{
	--degX: calc(50vw/tan(72deg));

	top: var(--headerH);

	width: calc(44vw + 71vw/tan(72deg));	height: 50vw;
	clip-path: polygon(var(--degX) 0,0 100%, 100% 100%, 100% 0);
}
#KV > .inner{	height: 71vw;	}
#KV p{	font-size: var(--fzv60);	}

}


/* ================================================================================
lead
================================================================================ */
@media print, screen
{

#lead > .inner{	padding: 0 0 calc(80 * var(--v));	}

#lead p
{
	font-size: var(--fzv30);
	text-align: center;
	line-height: 1.8;
}

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

#lead > .inner{	padding: calc(50 * var(--v)) 0;	}
#lead p
{
	font-size: var(--fzv24);
	letter-spacing: 0.1em;
}

}


/* ================================================================================
lead
================================================================================ */
@media print, screen
{

#navigation
{
	background: linear-gradient(-180deg,
		white 0%,	white 50%,
		var(--Cgray5) 50%,	var(--Cgray5) 100%
	);
}
#navigation > .inner{	padding: 0 0 calc(100 * var(--v));	}

#navigation .categoryArea
{
	padding: calc(45 * var(--v));

	background: white;
	box-shadow: var(--shadow0);
	border-radius: calc(10 * var(--v));
}
#navigation .categoryArea h2
{
	margin-bottom: calc(45 * var(--v));
	font-size: var(--fzv21);
	text-align: center;
}
#navigation .categoryArea .tabs
{
	display: flex;
	gap: calc(15 * var(--u));
}
#navigation .categoryArea .tabs li
{
	flex-shrink: 0;

	position: relative;
	display: flex;	justify-content: center;	align-items: center;
	gap: calc(10 * var(--u));

	width: 100%;
	max-width: calc((100% - 4 * 15 * var(--u)) / 5);
	height: calc(65 * var(--v));

	padding: 0 calc(10 * var(--u));

	border: 1px solid var(--Cgray3);
	border-radius: calc(5 * var(--v));

	text-align: center;
	line-height: 1.2;

	transition: var(--T02);
	cursor: pointer;
}
#navigation .categoryArea .tabs li:has(svg){	padding: 0 calc(40 * var(--u));	}
#navigation .categoryArea .tabs li svg
{
	--C1: var(--Cgray0);

	flex-shrink: 0;
	position: absolute;
	left: calc(20 * var(--u));
	width: 1em;	aspect-ratio: 1;
	transform: translateY(0.05em);
}
#navigation .categoryArea .tabs li[active] svg{	--C1:white;	}
#navigation .categoryArea .tabs li[active]
{
	background: var(--Ctheme2);
	color: white;

	pointer-events: none;
}
#navigation .categoryArea .tabs li:hover{	background: var(--Cgray5);	}
/* #navigation .categoryArea .tabs li:hover svg{	--C1:var(--Cgray3);	} */

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

#navigation .selectWrap{	position: relative;	}
#navigation select
{
	width: 100%;
	padding: 5vw;

	background: white;
	border-radius: 2vw;
	box-shadow: var(--shadow0);

	appearance: none;
}
#navigation .selectWrap::after
{
	position: absolute;
	top: 6vw;	right: 5vw;

	content: "";
	display: block;
	width: 3vw;	aspect-ratio: 4/3;
	background: var(--Ctheme2);
	clip-path: polygon(0 0,50% 100%, 100% 0);
}

}


/* ================================================================================
archive
================================================================================ */
@media print, screen
{
#archive{	background: var(--Cgray5);	}
#archive > .inner{	padding: 0 0 calc(100 * var(--v));	}
#archive .postList
{
	display: flex;	flex-wrap: wrap;
	gap: calc(45 * var(--v));
}
#archive .postList > li{	width: calc((100% - 45 * var(--v))/2);	}
#archive .postList > li a
{
	display: flex;	flex-direction: column;
	background: var(--Cgray4);
	height: 100%;
}

#archive .postList picture,
#archive .postList .noImage
{
	flex-shrink: 0;
	width: 100%;	aspect-ratio: 5/3;
}
#archive .postList .texts
{
	display: flex;	align-items: stretch;
	height: 100%;	min-height: calc(95 * var(--v));
	background: white;
}
#archive .postList .category
{
	flex-shrink: 0;
	display: flex;	justify-content: center;	align-items: center;
	width: calc(90 * var(--v));
	background: var(--Ctheme1);
}
#archive .postList .category p
{
	color: white;
	font-size: var(--fzv14);
	text-align: center;
}
#archive .postList .text{	padding: calc(20 * var(--v));	}
#archive .postList .text h3
{
	margin-bottom: 0.3em;
	font-size: var(--fzv21);
	font-weight: 500;
	line-height: 1.3;
}
#archive .postList .text ul
{
	display: flex;	flex-wrap: wrap;
	gap: calc(5 * var(--v)) calc(20 * var(--v));
}
#archive .postList .text ul > li
{
	color: var(--Cgray1);
	font-size: var(--fzv14);
	line-height: 1.3;
}

#archive .postList li.loadMoreItem
{
	padding: 1rem;
	color: var(--Cgray1);
	text-align: center;
}

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

#archive .postList{	flex-direction: column;	}
#archive .postList > li{	width: 100%;	}
#archive .postList .category{	width: calc(120 * var(--v));	}


}


/* ================================================================================
features
================================================================================ */
@media print, screen
{

#features > .inner{	padding: calc(80 * var(--v)) 0 0;	}
#features .titleArea .en
{
	margin-bottom: 0.25em;

	color: #ea933e;
	font-family: var(--Roboto);
	font-size: var(--fzv108);
	font-weight: 100;
	text-align: center;
	letter-spacing: -0.02em;
}
#features .titleArea h2
{
	font-size: var(--fzv22);
	text-align: center;
}

#features .boxes
{
	display: flex;	flex-wrap: wrap;	justify-content: space-between;
	gap: calc(30 * var(--v));
}
#features .box
{
	display: flex;	align-items: center;
	gap: calc(40 * var(--v));

	width: calc((100% - 30 * var(--v))/2);
	padding: calc(60 * var(--v)) calc(40 * var(--v));
	background: var(--Cgray4);
}
#features .box svg
{
	flex-shrink: 0;
	display: block;
	width: calc(70 * var(--v));	aspect-ratio: 1;
}
#features .box h3
{
	margin-bottom: 0.6em;
	font-size: var(--fzv24);
	font-weight: 500;
	line-height: 1.3;
}
#features .box p
{
	font-size: var(--fzv16);
	font-weight: 300;
	line-height: 1.7;
}

#features .text2
{
	font-size: var(--fzv36);
	text-align: center;
	line-height: 1.8;
}
#features .text2 span{	font-family: var(--Roboto);	}



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

#features > .inner{	padding: calc(50 * var(--v)) 0 calc(70 * var(--v));	}
#features .text1
{
	font-size: var(--fzv24);
	letter-spacing: 0.1em;
}
#features .boxes{	flex-direction: column;	}
#features .box
{
	flex-direction: column;
	gap: calc(30 * var(--v));
	width: 100%;
	padding: calc(50 * var(--v)) calc(40 * var(--v));
}
#features .box svg{	width: calc(95 * var(--v));	}
#features .box h3{	text-align: center;	}
#features .box p{	text-align: center;	}
#features .text2{	font-size: var(--fzv24);	}

}



/* ================================================================================
voice
================================================================================ */
@media print, screen
{

#voice{	background: var(--Cgray5);	}
#voice > .inner{	padding: calc(130 * var(--v)) 0;	}

#voice .titleArea1 .en
{
	margin-bottom: 0.25em;

	color: #ea933e;
	font-family: var(--Roboto);
	font-size: var(--fzv108);
	font-weight: 100;
	text-align: center;
	letter-spacing: -0.02em;
}
#voice .titleArea1 h2
{
	font-size: var(--fzv22);
	text-align: center;
}

#voice .splide
{
	container-type: inline-size;
	width: 100%;
	margin: 0 auto;
}
#voice .splide__track{	overflow: visible;	}
#voice .splide__slide
{
	container-type: inline-size;
	background: white;
	border-radius: 0 calc(10 * var(--v)) calc(10 * var(--v)) calc(10 * var(--v));
	box-shadow: var(--shadow0);

	overflow: hidden;
}

#voice .splide__slide .titleArea2
{
	position: relative;
	display: flex;	justify-content: center;	align-items: center;
	height: calc(32cqw/235*245);
}
#voice .splide__slide .titleArea2 .en
{
	--degX: calc((32cqw/235*245) / tan(72deg));

	position: absolute;
	top: 0;	left: 0;

	width: 32cqw;	aspect-ratio: 235/245;
	background: var(--Ctheme1);

	padding: 1em;

	color: white;
	font-family: var(--Roboto);
	font-size: 3.6cqw;
	letter-spacing: 0.05em;

	clip-path: polygon(0 0,0 100%, calc(100% - var(--degX)) 100%, 100% 0);
}
#voice .splide__slide .titleArea2 h3
{
	z-index: 2;
	position: relative;
	font-size: 6.4cqw;
}
#voice .splide__slide > .inner{	padding: 5cqw 10cqw 10cqw;	}
#voice .splide__slide .description
{
	margin-bottom: 5cqw;

	font-size: 4.5cqw;
	line-height: 1.7;
	text-align: justify;
}
#voice .splide__slide .profile
{
	display: flex;	align-items: center;
	gap: 5cqw;
	padding: 5cqw;
	background: var(--Cgray5);
	border-radius: 2cqw;
}
#voice .splide__slide .profile svg
{
	--C1: var(--Ctheme2);
	--C2: white;

	width: 15cqw;	aspect-ratio: 1;
}
#voice .splide__slide .profile p
{
	font-size: 4.2cqw;
	line-height: 1.8;
}

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

#voice{	padding: 0;	}
#voice .titleArea1 .en{	font-size: var(--fzv85);	}
#voice .titleArea1 h2{	font-size: var(--fzv20);	}

#voice .splide__pagination{	bottom: -10cqw;	}
#voice .splide__pagination{	gap: 1.5cqw;	}
#voice .splide__pagination__page
{
	width: 2.5cqw;	height: auto;	aspect-ratio: 1;
	border: 2px solid var(--Cgray1);
	background: transparent;
}
#voice .splide__pagination__page.is-active
{
	border: 2px solid var(--Ctheme2);
	background: var(--Ctheme2);
	transform: scale(1);
}

}




/* ======================================== end ======================================== */
