@charset "utf-8";

/* =====================================
	normalize
===================================== */
/* body */
@media (max-width: 1024px) {
	body {
		background-image: url("../files/bg_home_body_01_sp.png");
		background-size: 1024px auto;
	}
}
@media (min-width: 1025px) {
	body {
		background-image: url("../files/bg_home_body_01.png");
	}
}


/* =====================================
	main
===================================== */
.main {
	overflow-x: hidden;
	margin: 0 -10px;
	padding: 0 10px;
}


/* =====================================
	hero
===================================== */
.hero {
	display: grid;
	align-content: center;
	max-width: var(--inner-width-large);
	min-height: 465px;
	margin: 0 auto;
}
.hero__text {
	display: grid;
	justify-items: center;
	margin: 0;
	text-shadow: 4px 4px 4px var(--color-white), -4px -4px 4px var(--color-white), -4px 4px 4px var(--color-white), 4px -4px 4px var(--color-white), 4px 0 4px var(--color-white), -4px 0 4px var(--color-white), 0 4px 4px var(--color-white), 0 -4px 4px var(--color-white);
}
.hero__catch {
	position: relative;
	padding: 0 18px;
	background: no-repeat url("../files/ico_disc_orange_01.svg") left center, no-repeat url("../files/ico_disc_orange_01.svg") right center;
	background-size: 8px, 8px;
}
@media (max-width: 768px) {
	.hero__catch {
		text-align: center;
		font-size: min(4vw, 1.9rem);
	}
	.hero__heading {
		font-size: min(9.3vw, 5.7rem);
	}
}
@media (min-width: 769px) {
	.hero__catch {
		font-size: 1.9rem;
	}
	.hero__break {
		display: none;
	}
	.hero__heading {
		font-size: 5.7rem;
	}
}
@media (max-width: 1024px) {
	.hero {
		gap: 20px;
		justify-items: center;
		padding: 30px 0 0 0;
	}
}
@media (min-width: 1025px) {
	.hero {
		gap: 30px;
		justify-items: end;
		padding: 0 60px 90px 0;
	}
}

/* crown */
.crown {
	position: relative;
	display: inline-grid;
	grid-template-columns: 1fr auto;
	align-content: center;
	align-items: center;
	justify-items: center;
	text-shadow: 4px 4px 4px var(--color-white), -4px -4px 4px var(--color-white), -4px 4px 4px var(--color-white), 4px -4px 4px var(--color-white), 4px 0 4px var(--color-white), -4px 0 4px var(--color-white), 0 4px 4px var(--color-white), 0 -4px 4px var(--color-white);
	line-height: 1.3;
}
.crown::before,
.crown::after {
	position: absolute;
	top: 0;
	content: "";
	background: no-repeat url("../files/ico_crown_01.svg");
	background-size: contain;
}
.crown::before {
	left: 0;
}
.crown::after {
	right: 0;
	transform: scaleX(-1);
}
.crown__heading {
	grid-column: 1 / 3;
}
.crown__number {
	color: var(--color-dark-orange);
	font-weight: bold;
	background-color: var(--color-white);
}
@media (max-width: 768px) {
	.crown {
		gap: 0 5px;
		min-height: 58px;
		padding: 0 26px;
	}
	.crown::before,
	.crown::after {
		width: 24px;
		height: 58px;
	}
	.crown__heading {
		font-size: 1.1rem;
	}
	.crown__number {
		font-size: 2.6rem;
	}
	.crown__unit {
		font-size: 1.1rem;
	}
}
@media (min-width: 769px) {
	.crown {
		gap: 5px 10px;
		min-height: 113px;
		padding: 0 60px;
	}
	.crown::before,
	.crown::after {
		width: 50px;
		height: 113px;
	}
	.crown__heading {
		font-size: 1.7rem;
	}
	.crown__number {
		font-size: 3.8rem;
	}
	.crown__unit {
		font-size: 1.5rem;
	}
}


/* =====================================
	contents
===================================== */
.contents--transparent {
	background-color: transparent;
}
@media (max-width: 768px) {
	.contents__inner {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.contents__inner--transparent {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.contents__action {
		margin: 40px 0;
	}
}
@media (min-width: 769px) {
	.contents__inner {
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.contents__inner--transparent {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.contents__action--right {
		justify-content: end;
	}
}
@media (hover: hover) {
	.button--transparent:hover {
		border-color: var(--color-white);
		background-color: var(--color-yellow);
	}
}


/* =====================================
	heading-home
===================================== */
.heading-home {
	position: relative;
}
.heading-home--center {
	text-align: center;
}
.heading-home::before,
.heading-home::after {
	position: absolute;
	width: 8px;
	height: 8px;
	content: "";
	background: no-repeat url("../files/ico_disc_orange_01.svg");
	background-size: contain;
}
.heading-home--transparent::before,
.heading-home--transparent::after {
	background-image: url("../files/ico_disc_light-orange_01.svg");
}
@media (max-width: 768px) {
	.heading-home {
		margin: 30px 0;
		font-size: 2.2rem;
	}
	.heading-home::before {
		top: -8px;
	}
	.heading-home::after {
		bottom: -8px;
	}
}
@media (min-width: 769px) {
	.heading-home {
		margin: 60px 0;
		font-size: 4.2rem;
	}
	.heading-home::before {
		top: -4px;
	}
	.heading-home::after {
		bottom: -4px;
	}
}


/* =====================================
	glossary
===================================== */
.contents--glossary {
	position: relative;
}
.contents--glossary::before,
.contents--glossary::after {
	position: absolute;
	z-index: -1;
	content: "";
	background: no-repeat;
}
@media (max-width: 768px) {
	.contents--glossary::before {
		top: 0;
		left: -55px;
		width: 185px;
		height: 100%;
		background-image: url("../files/bg_home_glossary_01_sp.png"), url("../files/bg_home_glossary_02_sp.png");
		background-position: left top -5px, left bottom 5px;
		background-size: 124px auto, 175px auto;
	}
	.contents--glossary::after {
		top: 0;
		right: -50px;
		width: 114px;
		height: 100%;
		background-image: url("../files/bg_home_glossary_03_sp.png"), url("../files/bg_home_glossary_04_sp.png");
		background-position: right 20px, right 18px bottom 10px;
		background-size: 114px auto, 82px auto;
	}
}
@media (min-width: 769px) {
	.contents--glossary::before {
		top: -27px;
		left: -74px;
		width: 351px;
		height: 822px;
		background-image: url("../files/bg_home_glossary_01_pc.png");
		background-size: contain;
	}
	.contents--glossary::after {
		top: -54px;
		right: -32px;
		width: 271px;
		height: 787px;
		background-image: url("../files/bg_home_glossary_02_pc.png");
		background-size: contain;
	}
}

/* .list-glossary */
.list-glossary {
	display: grid;
	margin: 0;
}
.list-glossary__item {
	display: grid;
	align-items: center;
	border-radius: 10px;
	background-color: var(--color-white);
}
.list-glossary__term {
	font-size: 1.9rem;
	font-weight: bold;
}
.list-glossary__definition {
	margin-left: 0;
}
.list-glossary__action {
	margin-left: 0;
}
.list-glossary__link {
	position: relative;
	display: inline-block;
	padding-left: 25px;
	text-decoration: none;
	color: inherit !important;
}
.list-glossary__link::before {
	position: absolute;
	top: calc(0.8em - 8px);
	left: 0;
	width: 16px;
	height: 16px;
	content: "";
	background: no-repeat url("../files/ico_circle-arrow_orange_01.svg");
}
@media (max-width: 768px) {
	.list-glossary {
		gap: 10px;
		margin-right: calc(var(--inner-padding) * -1);
		margin-left: calc(var(--inner-padding) * -1);
	}
	.list-glossary__item {
		gap: 10px;
		padding: 20px;
	}
	.list-glossary__action {
		justify-self: end;
	}
}
@media (min-width: 769px) {
	.list-glossary {
		gap: 15px;
		grid-template-columns: auto 1fr;
	}
	.list-glossary__item {
		grid-column: 1 / 3;
		gap: 0 50px;
		grid-template-columns: subgrid;
		padding: 40px 30px;
	}
	.list-glossary__term {
		grid-row: 1 / 3;
	}
	.list-glossary__action {
		position: relative;
	}
	.list-glossary__link {
		position: absolute;
		right: 0;
	}
}
@media (hover: hover) {
	.list-glossary__link:hover {
		text-decoration: underline;
	}
}


/* =====================================
	how-to
===================================== */
/* table-multi */
.table-multi {
	width: 100%;
	margin: 20px 0;
	border-spacing: 0;
}
.table-multi > :where(thead, tbody) > tr > :where(td, th) {
	padding: 10px;
	text-align: left;
}
.table-multi > :where(thead, tbody) > tr > th {
	color: var(--color-white);
	border-right: 1px solid var(--color-white);
	border-bottom: 1px solid var(--color-white);
	background-color: var(--color-dark-blue);
}
.table-multi > :where(thead, tbody) > tr > th[scope="col"] {
	background-color: var(--color-dark-gray);
}
.table-multi > tbody > tr > td {
	border-right: 1px solid var(--color-light-gray);
	border-bottom: 1px solid var(--color-light-gray);
}
.table-multi__rounded-top-left {
	border-top-left-radius: 10px;
}
.table-multi__rounded-top-right {
	border-top-right-radius: 10px;
}
.table-multi__rounded-bottom-right {
	border-bottom-right-radius: 10px;
}
.table-multi__rounded-bottom-left {
	border-bottom-left-radius: 10px;
}
.table-multi > :where(thead, tbody, tfoot) > tr > :where(td, th) > :first-child {
	margin-top: 0;
}
.table-multi > :where(thead, tbody, tfoot) > tr > :where(td, th) > :last-child {
	margin-bottom: 0;
}

/* table-how-to */
.table-how-to > :where(thead, tbody, tfoot) > tr > :where(td, th) {
	text-align: center;
}
.table-how-to > :where(thead, tbody) > tr > th {
	white-space: nowrap;
}
.table-how-to > tbody > tr > td {
	vertical-align: top;
}
.table-how-to > tfoot > tr > td:has(.table-how-to__service-area) {
	padding-top: 20px;
	border-right: 1px dashed var(--color-light-gray);
	border-left: 1px dashed var(--color-light-gray);
}
.table-how-to > tbody > tr > td > img {
	margin: 10px 0 !important;
}
.table-how-to > tbody > tr > td > .list-disc {
	display: inline-grid;
	margin: 0 auto;
	text-align: left;
}
.table-how-to__service-area {
	position: relative;
	display: block;
	margin: 0 20px;
	padding: 8px 0;
	color: var(--color-white);
	background: var(--color-dark-gray);
}
.table-how-to__service-area::before,
.table-how-to__service-area::after {
	position: absolute;
	top: 0;
	display: block;
	width: 20.5px;
	height: 100%;
	content: "";
	background-color: inherit;
}
.table-how-to__service-area::before {
	left: -20px;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.table-how-to__service-area::after {
	right: -20px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}


/* =====================================
	case
===================================== */
.contents__inner--case {
	position: relative;
}
.contents__inner--case::before {
	position: absolute;
	z-index: -1;
	content: "";
	background: no-repeat url("../files/bg_home_case_01.png");
	background-size: contain;
}
@media (max-width: 768px) {
	.contents__inner--case {
		padding-bottom: 40px;
	}
	.contents__inner--case::before {
		top: -68px;
		right: -55px;
		width: 201px;
		height: 201px;
	}
}
@media (min-width: 769px) {
	.contents__inner--case {
		padding-bottom: 80px;
		padding-left: 26.4%;
	}
	.contents__inner--case::before {
		top: -15px;
		width: 598px;
		height: 598px;
		margin-left: -578px;
	}
}


/* =====================================
	splide
===================================== */
.contents--splide {
	background-color: rgba(255, 255, 255, 0.25);
}
.contents__inner--splide {
	max-width: calc(var(--inner-width) + 100px);
}
@media (max-width: 768px) {
	.contents__inner--splide {
		padding: 25px 10px;
	}
}
@media (min-width: 769px) {
	.contents__inner--splide {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}


/* =====================================
	news
===================================== */
/* post-news */
.posts-news {
	border-radius: 10px;
	background: var(--color-white);
}
.post-news {
	padding-right: 20px;
	padding-left: 20px;
}
@media (max-width: 768px) {
	.posts-news {
		margin-right: calc(var(--inner-padding) * -1);
		margin-left: calc(var(--inner-padding) * -1);
	}
}

/* button */
.button--news {
	position: relative;
}
.button--news::before {
	position: absolute;
	z-index: -1;
	content: "";
	background: no-repeat url("../files/bg_home_news_01.png");
	background-size: contain;
}
@media (max-width: 768px) {
	.button--news::before {
		top: -120px;
		left: -35px;
		width: 595px;
		height: 595px;
	}
}
@media (min-width: 769px) {
	.button--news::before {
		top: -150px;
		left: -80px;
		width: 761px;
		height: 761px;
	}
}


/* =====================================
	news
===================================== */
/* list-recommend */
.list-recommend {
	display: grid;
	gap: 10px;
}
.list-recommend > dt {
	font-size: 1.8rem;
	font-weight: bold;
}
.list-recommend > dd {
	position: relative;
	margin-left: 0;
	padding-left: 25px;
	font-size: 1.5rem;
}
.list-recommend > dd::before {
	position: absolute;
	top: calc(0.8em - 9px);
	left: 0;
	width: 17px;
	height: 17px;
	content: "";
	background: no-repeat url("../files/ico_check_orange_01.svg");
}
@media (max-width: 768px) {
	.list-recommend {
		margin: 10px 0 !important;
	}
	.list-recommend > dt {
		justify-self: center;
		margin-bottom: 10px;
	}
}
@media (min-width: 769px) {
	.list-recommend {
		position: relative;
		margin: 10px !important;
		padding-left: calc(1.8rem * 15);
	}
	.list-recommend > dt {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		display: grid;
		align-content: center;
	}
}

/* list-description */
.list-description {
	display: grid;
}
.list-description > dd {
	margin-left: 0;
}
@media (max-width: 768px) {
	.list-description {
		gap: 20px;
	}
	.list-description > dt {
		margin-bottom: -15px;
		font-weight: bold;
	}
}
@media (min-width: 769px) {
	.list-description {
		gap: 10px 0;
		grid-template-columns: auto 1fr;
		margin: 10px !important;
	}
	.list-description > dt {
		position: relative;
		padding-right: 1.5em;
	}
	.list-description > dt::after {
		position: absolute;
		top: 0;
		right: 0;
		width: 1.5em;
		content: "：";
		text-align: center;
	}
}


/* =====================================
	partner
===================================== */
.contents__inner--partner {
	display: grid;
	gap: 40px 9%;
}
.contents__text--partner > :first-child {
	margin-top: 0;
}
.contents__text--partner > :last-child {
	margin-bottom: 0;
}
.contents__figure--partner {
	position: relative;
}
.contents__figure--partner::before {
	position: absolute;
	z-index: -1;
	content: "";
	background: no-repeat url("../files/bg_home_partner_01.png");
	background-size: contain;
}
@media (max-width: 768px) {
	.contents__figure--partner {
		width: 200px;
		margin-bottom: 20px !important;
	}
	.contents__figure--partner::before {
		right: -50px;
		bottom: -50px;
		width: 653px;
		height: 654px;
	}
}
@media (min-width: 769px) {
	.contents__figure--partner {
		width: 300px;
	}
	.contents__figure--partner::before {
		right: -60px;
		bottom: -60px;
		width: 823px;
		height: 825px;
	}
}
@media (max-width: 1024px) {
	.contents__figure--partner {
		justify-self: center;
	}
}
@media (min-width: 1025px) {
	.contents__figure--partner {
		margin-top: 40px;
	}
	.contents__inner--partner {
		grid-template-columns: auto 1fr;
		align-items: start;
		max-width: 1175px;
		margin-left: 40px;
	}
	.contents__text--partner {
		order: 1;
	}
}


/* =====================================
	certification
===================================== */
/* list-certification */
.list-certification {
	display: grid;
	padding-left: 0;
	list-style: none;
	border-top: 1px solid var(--color-light-gray);
}
.list-certification > li {
	position: relative;
	padding: 13px 0 13px 28px;
	border-bottom: 1px solid var(--color-light-gray);
}
.list-certification > li::before {
	position: absolute;
	top: calc(0.8em + 3px);
	left: 0;
	width: 18px;
	height: 20px;
	content: "";
	background: no-repeat url("../files/ico_badge_orange_01.svg");
}
@media (min-width: 769px) {
	.list-certification {
		font-size: 1.5rem;
	}
}
