@charset "UTF-8";
:root {
	--bp-sp: 768px;
}

:root {
	--bp-portrait: 960px;
}

:root {
	--bp-pc: 1300px;
}

/******************************************************************
component - section
******************************************************************/
.c-section {
	position: relative;
}
.c-section .blur {
	overflow: visible;
}
.c-section__vertical {
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: 30px;
	margin-top: 7vw;
	margin-bottom: 7vw;
}
@media screen and (max-width: 768px) {
	.c-section__vertical {
		padding-inline: 30px;
	}
}
.l-main-2column .c-section__vertical, .l-main-3column .c-section__vertical {
	padding-inline: 0 !important;
}

@media screen and (max-width: 768px) {
	.c-section__vertical {
		margin-top: 12vw;
		margin-bottom: 12vw;
	}
}
.c-section__vertical--full {
	max-width: none;
	padding-inline: 0;
}
.c-section--co1 {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
	background: #f9f7f1 url(../img/lower_bg_co1.jpg) right top/100% auto no-repeat;
}
@media screen and (max-width: 768px) {
	.c-section--co1 {
		background-size: 120% auto;
	}
}
.c-section--co1 .c-section__vertical > *:not(:last-child) {
	margin-bottom: 7vw;
}
@media screen and (max-width: 768px) {
	.c-section--co1 .c-section__vertical > *:not(:last-child) {
		margin-bottom: 12vw;
	}
}
.c-section--co3 {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
	background: #f6efeb url(../img/lower_bg_co3.jpg) right top/100% auto no-repeat;
}
@media screen and (max-width: 768px) {
	.c-section--co3 {
		background-size: 120% auto;
	}
}
.c-section--co4 {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
	background-color: #f9f6f1;
}
.c-section--co5 {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
	background: url(../img/lower_bg_co5.png) right bottom 80px/auto auto no-repeat, linear-gradient(135deg, #f3eee9 0%, #fcfbfa 100%);
}
.c-section--co5 .c-section__vertical > *:not(:last-child) {
	margin-bottom: 7vw;
}
@media screen and (max-width: 768px) {
	.c-section--co5 .c-section__vertical > *:not(:last-child) {
		margin-bottom: 12vw;
	}
}
.c-section--co6 {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
	background: url(../img/lower_bg_co6-3.png) left 10px bottom 80px/auto auto no-repeat, url(../img/lower_bg_co6.jpg) right top/100% auto no-repeat, #fbf9f5;
	position: relative;
}
@media screen and (max-width: 768px) {
	.c-section--co6 {
		background-size: auto auto, 130% auto;
	}
}
.c-section--co6::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: -35px;
	right: 80px;
	width: 107px;
	aspect-ratio: 107/124;
	background: url(../img/lower_bg_co6-2.png) center center/100% auto no-repeat;
}
@media screen and (max-width: 1300px) {
	.c-section--co6::before {
		width: 8.2307692308vw;
		top: -2.6923076923vw;
		right: 6.1538461538vw;
	}
}
@media screen and (max-width: 768px) {
	.c-section--co6::before {
		width: 10vw;
		top: -5vw;
		right: 5vw;
	}
}

/******************************************************************
component - accordion
******************************************************************/
.c-accordion summary {
	cursor: pointer;
	user-select: none;
}
.c-accordion summary::marker {
	content: none;
}
.c-accordion summary::-webkit-details-marker {
	display: none;
}
.c-accordion details {
	border-bottom: 1px solid #c8c4b6;
}
.c-accordion details[open] summary::after {
	height: 0;
}
.c-accordion summary {
	transition-property: opacity;
	transition-duration: 0.4s;
	padding: 1em calc(2em + 25px) 1em 1em;
	position: relative;
	font-size: 18px;
}
.c-accordion summary::before, .c-accordion summary::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
}
.c-accordion summary::before {
	background-color: #74473b;
	width: 25px;
	height: 1px;
	top: 0;
	bottom: 0;
	right: 1em;
}
.c-accordion summary::after {
	background-color: #74473b;
	width: 1px;
	height: 25px;
	top: 0;
	bottom: 0;
	right: calc(12px + 1em);
}
@media screen and (max-width: 768px) {
	.c-accordion summary {
		padding: 1em calc(2em + 15px) 1em 1em;
		position: relative;
		font-size: 16px;
	}
	.c-accordion summary::before, .c-accordion summary::after {
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
		transition-property: all;
		transition-duration: 0.3s;
		transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
	}
	.c-accordion summary::before {
		background-color: #74473b;
		width: 15px;
		height: 1px;
		top: 0;
		bottom: 0;
		right: 1em;
	}
	.c-accordion summary::after {
		background-color: #74473b;
		width: 1px;
		height: 15px;
		top: 0;
		bottom: 0;
		right: calc(7px + 1em);
	}
}
@media (any-hover: hover) {
	.c-accordion summary:hover {
		opacity: 0.6;
	}
}
.c-accordion summary:focus {
	opacity: 0.6;
}
.c-accordion__body {
	font-size: 1rem;
	line-height: 1.8;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	.c-accordion__body {
		font-size: 0.9rem;
	}
}
.c-accordion__body-inner {
	border-top: 1px solid #c8c4b6;
	padding: 1em 0;
}

/******************************************************************
component - tab
******************************************************************/
.c-tab__menu {
	display: flex;
}
.c-tab__list {
	display: flex;
}
.c-tab a.c-tab__item {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.c-tab a.c-tab__item:hover {
		text-decoration: none;
	}
}
.c-tab a.c-tab__item:focus {
	text-decoration: none;
}
.c-tab__item {
	box-sizing: border-box;
	position: relative;
	display: block;
	cursor: pointer;
	width: 100%;
	text-align: center;
}
.c-tab__menu {
	gap: 20px;
	padding-inline: 20px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.c-tab__menu {
		gap: 8px;
		padding-inline: 8px;
	}
}
.c-tab__menu::after {
	z-index: -1;
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #c8c4b6;
}
.c-tab__list {
	width: 100%;
}
.c-tab__item {
	padding: 0.4em;
	min-height: 3em;
	background-color: transparent;
	border: 1px solid #c8c4b6;
	color: #c7bbb3;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 24px;
	transition-property: color;
	transition-duration: 0.4s;
}
@media screen and (max-width: 768px) {
	.c-tab__item {
		font-size: 16px;
	}
}
.c-tab__item[aria-current=page], .c-tab__item[aria-selected=true] {
	border-bottom-color: #f8f5f2;
	color: inherit;
}
@media (any-hover: hover) {
	.c-tab__item:not([aria-current=page]):not([aria-selected=true]):hover {
		color: inherit;
	}
}
.c-tab__item:not([aria-current=page]):not([aria-selected=true]):focus {
	color: inherit;
}
.c-tab__panel {
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.c-tab__panel {
		margin-top: 20px;
	}
}

/******************************************************************
component - caption-image
******************************************************************/
.c-caption-image {
	position: relative;
}
.c-caption-image img {
	width: 100%;
}
.c-caption-image figcaption {
	position: absolute;
	bottom: -0.5px;
	left: 0;
	padding: 0.6em 1em;
	line-height: 1.5;
	background-color: #fcf9f6;
	width: fit-content;
}
@media screen and (max-width: 768px) {
	.c-caption-image figcaption {
		padding: 0.6em 0.8em;
		font-size: 12px;
	}
}
/******************************************************************
component - heading
******************************************************************/
.c-heading-co1-1 {
	line-height: 1.6;
	letter-spacing: 0;
	color: #591500;
	background: linear-gradient(5deg, #8e2b08 30%, #ad3512 50%, #bc3b14 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
	font-size: 48px;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.c-heading-co1-1 {
		letter-spacing: 0;
		font-size: 28px;
		margin-bottom: 25px;
	}
}
.c-heading-co1-1 span {
	display: block;
	font-size: 33px;
}
@media screen and (max-width: 768px) {
	.c-heading-co1-1 span {
		font-size: 20px;
	}
}

.c-heading-co1-2,
h2.c-heading-co4 {
	line-height: 1.6;
	letter-spacing: 0;
	color: #591500;
	font-style: italic;
	font-size: 38px;
	margin: 0 0 40px 0;
}

h2.c-heading-co4.mt_nega{
	margin-top: -120px;
}


@media screen and (max-width: 768px) {
	.c-heading-co1-2,
	h2.c-heading-co4 {
		font-size: 24px;
		margin-bottom: 25px;
	}

	h2.c-heading-co4.mt_nega{
		margin-top: 0;
	}



}
.c-heading-co1-2 span,
h2.c-heading-co4 span {
	display: block;
}

.c-heading-co3 {
	text-align: center;
	line-height: 1.6;
	letter-spacing: 0;
	color: #591500;
	background: linear-gradient(5deg, #8e2b08 30%, #ad3512 50%, #bc3b14 70%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
	font-size: 42px;
	margin-bottom: 5.6vw;
}
@media screen and (max-width: 768px) {
	.c-heading-co3 {
		font-size: 24px;
		margin-bottom: 9.6vw;
	}
}

h3.c-heading-co4 {
	line-height: 1.6;
	letter-spacing: 0;
	color: #591500;
	font-style: italic;
	font-size: 24px;
}
@media screen and (max-width: 768px) {
	h3.c-heading-co4 {
		font-size: 16px;
	}
}
h3.c-heading-co4 span {
	display: block;
}

.c-heading-co5,
.c-heading-co6 {
	text-align: center;
	line-height: 1.6;
	letter-spacing: 0;
	color: #591500;
	font-style: italic;
	font-size: 35px;
	margin-bottom: 5.6vw;
}
@media screen and (max-width: 768px) {
	.c-heading-co5,
	.c-heading-co6 {
		font-size: 20px;
		margin-bottom: 9.6vw;
	}
}

/******************************************************************
component - text
******************************************************************/
.c-text-copy {
	font-size: 16px;
	line-height: 49px;
}
@media screen and (max-width: 768px) {
	.c-text-copy {
		font-size: 14px;
		line-height: 30px;
	}
}

.c-text {
	font-size: 16px;
	line-height: 44px;
}
@media screen and (max-width: 768px) {
	.c-text {
		font-size: 14px;
		line-height: 30px;
	}
}

/******************************************************************
component - youtube
******************************************************************/
.c-flexbox .c-youtube {
	width: 100%;
}

.c-youtube {
	width: 800px;
	max-width: 100%;
	margin-inline: auto;
}
.c-youtube--full {
	width: 100%;
}
.c-youtube iframe {
	width: 100%;
	aspect-ratio: 16/9;
}
.c-youtube__title {
	width: fit-content;
	font-weight: bold;
	font-size: 1.2rem;
}
.c-youtube__title--center {
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.c-youtube__title {
		font-size: 1.08rem;
	}
}
.c-youtube__title:first-child {
	margin-bottom: 0.5rem;
}
.c-youtube__title:last-child {
	margin-top: 0.5rem;
}
.c-youtube__caption {
	width: fit-content;
	font-size: 90%;
}
.c-youtube__caption--center {
	margin-inline: auto;
}
.c-youtube__caption:first-child {
	margin-bottom: 0.5rem;
}
.c-youtube__caption:last-child {
	margin-top: 0.5rem;
}
/******************************************************************
component - swiper
******************************************************************/
/******************************************************************
component - swiper
******************************************************************/
/******************************************************************
component - swiper(default)
******************************************************************/
.c-swiper {
	position: relative;
}
.c-swiper .swiper-outer {
	position: relative;
}
.c-swiper .swiper-wrapper {
	width: fit-content;
	margin-inline: auto;
}
.c-swiper .swiper-slide img {
	width: 100%;
}

.swiper{
	z-index: 1000;
	position: relative;
}

.swiper-wrapper{
	padding-bottom: 30px;
}

.swiper-pagination{
	position: absolute;
	bottom: 0;
}
.swiper-pagination-bullet{
	width: 10px;
	height: 10px;
}


svg{display: none!important;}


.swiper-pagination-bullet-active {
	background: #970c00!important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
	margin: 0 7px 0 7px!important;
}



@media screen and (max-width: 768px) {

.swiper-wrapper{
	padding-bottom: 0;
}


	.swiper-pagination{
		bottom: -10px!important;
	}

	.swiper{
		padding-bottom: 20px;
	}


}


/******************************************************************
component - lower-nav
******************************************************************/
.c-lower-nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 44px;
}
@media screen and (max-width: 960px) {
	.c-lower-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 44px;
	}
}
@media screen and (max-width: 768px) {
	.c-lower-nav {
		grid-template-columns: repeat(1, 1fr);
		gap: 44px;
	}
}
.c-lower-nav li {
	display: flex;
}
.c-lower-nav a {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	color: inherit;
	transition-property: all;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.c-lower-nav a:hover {
		box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 20px -5px;
		transform: translateY(-7px);
	}
}
.c-lower-nav a:focus {
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 20px -5px;
	transform: translateY(-7px);
}
.c-lower-nav img {
	width: 100%;
	opacity: 1 !important;
}
@media (any-hover: hover) {
	.c-lower-nav img:hover {
		opacity: 1 !important;
	}
}
.c-lower-nav img:focus {
	opacity: 1 !important;
}
.c-lower-nav__title {
	flex-grow: 1;
	background-color: #fff;
	padding: 25px;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0;
}
.c-lower-nav__title strong {
	font-size: 23px;
}
.c-lower-nav__title span {
	font-size: 16px;
}
.c-lower-nav__more {
	color: #fff;
	background-color: #970c00;
	font-style: italic;
	font-size: 14px;
	text-align: center;
	line-height: 2.2;
}
/******************************************************************
component - co1-img
******************************************************************/
.c-co1-img {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
@media screen and (max-width: 960px) {
	.c-co1-img {
		flex-direction: column;
		align-items: flex-start;
	}
}
.c-co1-img__left {
	width: 62%;
}
@media screen and (max-width: 960px) {
	.c-co1-img__left {
		width: 72%;
	}
}
@media screen and (max-width: 768px) {
	.c-co1-img__left {
		width: 88%;
	}
}
.c-co1-img__right {
	width: 27%;
	transform: translateY(100px);
}
@media screen and (max-width: 960px) {
	.c-co1-img__right {
		margin-top: 40px;
		width: 47%;
		margin-left: auto;
		transform: translateY(0);
	}
}
@media screen and (max-width: 768px) {
	.c-co1-img__right {
		width: 62%;
	}
}
/******************************************************************
component - co3-column
******************************************************************/
.c-co3-column {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	letter-spacing: 0;
}
@media screen and (max-width: 960px) {
	.c-co3-column {
		flex-direction: column-reverse;
		padding-inline: 30px;
	}
}
.c-co3-column__body {
	box-sizing: border-box;
	display: flex;
	flex-direction: column-reverse;
	font-size: 16px;
}
@media print, screen and (min-width: 961px) {
	.c-co3-column__body {
		width: calc(53% - 35px);
		padding-right: calc((100vw - 1240px) / 2 - 30px);
		margin-right: 30px;
	}
}
.c-co3-column__body > p {
	line-height: 2.7;
}
@media screen and (max-width: 960px) {
	.c-co3-column__body > p {
		line-height: 2;
	}
}
.c-co3-column__main {
	margin-top: 30px;
	line-height: 2;
}
.c-co3-column__main > *:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
	.c-co3-column__main > *:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 960px) {
	.c-co3-column__main {
		margin-top: 20px;
	}
}
.c-co3-column__main h3 {
	font-size: 20px;
	padding-bottom: 0.3em;
	margin-bottom: 0.4em;
	background: url(../img/lower_bg_co3_line.png) bottom left no-repeat;
}
.c-co3-column__button {
	display: block !important;
	width: fit-content;
	background: linear-gradient(45deg, #c92100 0%, #ff9c00 100%);
	font-size: 20px;
	padding: 0.6em 5em;
	border-radius: 100vw;
	color: #fff;
	font-style: italic;
}
@media screen and (max-width: 960px) {
	.c-co3-column__button {
		margin-inline: auto;
	}
}
@media screen and (max-width: 768px) {
	.c-co3-column__button {
		font-size: 18px;
		padding: 0.6em 2em;
	}
}
@media print, screen and (min-width: 961px) {
	.c-co3-column__img {
		width: calc(47% - 35px - 30px);
	}
}
@media screen and (max-width: 960px) {
	.c-co3-column__img {
		margin-bottom: 20px;
	}
}
.c-co3-column__img img {
	width: 100%;
}
/******************************************************************
component - co4-column
******************************************************************/
.c-co4-column + .c-co4-column {
	margin-top: 7vw;
}

.c-co4-column {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	letter-spacing: 0;
}
.c-co4-column--left {
	flex-direction: row;
}
@media screen and (max-width: 960px) {
	.c-co4-column {
		display: block;
		padding-inline: 30px;
	}
}
.c-co4-column--left {
	position: relative;
	z-index: 2;
}
.c-co4-column--left::before {
	z-index: -1;
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: -6vw;
	left: 0;
	width: 100%;
	height: 100%;
	background: left top no-repeat;
	background-image: url(../img/lower_bg_co4-1.png);
}
@media screen and (max-width: 1300px) {
	.c-co4-column--left::before {
		background-size: 28vw auto;
	}
}
@media screen and (max-width: 768px) {
	.c-co4-column--left::before {
		top: -12vw;
		background-size: 40vw auto;
	}
}
.c-co4-column--right {
	position: relative;
	z-index: 1;
}
.c-co4-column--right::before {
	z-index: -1;
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: -5vw;
	right: 0;
	width: 100%;
	height: 100%;
	background: right top no-repeat;
	background-image: url(../img/lower_bg_co4-2.png);
}
@media screen and (max-width: 1300px) {
	.c-co4-column--right::before {
		background-size: 28vw auto;
	}
}
@media screen and (max-width: 768px) {
	.c-co4-column--right::before {
		top: -8vw;
		background-size: 50vw auto;
	}
}
@media print, screen and (min-width: 961px) {
	.c-co4-column--left .c-co4-column__body {
		padding-left: calc((100vw - 1240px) / 2 - 30px);
		padding-right: 0;
		margin-left: 30px;
	}
}


.c-co4-column__body {
	box-sizing: border-box;
	font-size: 16px;
}
@media print, screen and (min-width: 961px) {
	.c-co4-column__body {
		width: calc(45% - 60px);
		padding-right: calc((100vw - 1240px) / 2 - 30px);
		margin-right: 30px;
	}
}
.c-co4-column__body > p {
	line-height: 2.7;
}
@media screen and (max-width: 960px) {
	.c-co4-column__body > p {
		line-height: 2;
	}
}
.c-co4-column__main {
	margin-top: 30px;
	line-height: 2;
}
.c-co4-column__main > *:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
	.c-co4-column__main > *:not(:last-child) {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 960px) {
	.c-co4-column__main {
		margin-top: 20px;
	}
}
.c-co4-column__main h3 {
	font-size: 20px;
	padding-bottom: 0.3em;
	margin-bottom: 0.4em;
	background: url(../img/lower_bg_co3_line.png) bottom left no-repeat;
}
.c-co4-column__button {
	display: block;
	width: fit-content;
	font-size: 14px;
	padding: 0.4em 1.6em;
	border-radius: 100vw;
	color: #fff;
	letter-spacing: 0;
	background-color: #970c00;
	transition-property: background;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.c-co4-column__button:hover {
		background-color: #ca1000;
	}
}
.c-co4-column__button:focus {
	background-color: #ca1000;
}
@media screen and (max-width: 960px) {
	.c-co4-column__button {
		margin-inline: auto;
	}
}
.c-co4-column__img {
	font-size: 16px;
}
@media print, screen and (min-width: 961px) {
	.c-co4-column__img {
		width: calc(55% - 60px);
	}
}
@media screen and (max-width: 960px) {
	.c-co4-column__img {
		margin-top: 25px;
	}
}
.c-co4-column__img .swiper-slide {
	display: flex;
	flex-direction: column-reverse;
	background-color: #f9f6f1;
	height: auto;
}
.c-co4-column__img .swiper-slide div {
	flex-grow: 1;
	line-height: 1.8;
	padding: 30px 20% 30px 30px;
}
@media screen and (max-width: 960px) {
	.c-co4-column__img .swiper-slide div {
		padding: 20px;
		font-size: 14px;
	}
}
.c-co4-column__img .swiper-slide div > *:not(:last-child) {
	margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
	.c-co4-column__img .swiper-slide div > *:not(:last-child) {
		margin-bottom: 10px;
	}
}
.c-co4-column__img img {
	width: 100%;
}



/******************************************************************
component - co5-info
******************************************************************/
.c-co5-info {
	display: flex;
	flex-direction: row-reverse;
	gap: 60px;
	margin-bottom: 80px;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.c-co5-info {
		flex-direction: column-reverse;
		gap: 15px;
		margin-bottom: 40px;
	}
}
.c-co5-info__body {
	flex-grow: 1;
}
.c-co5-info__img {
	max-width: 50%;
}
@media screen and (max-width: 768px) {
	.c-co5-info__img {
		max-width: none;
	}
}
.c-co5-info__img img {
	width: 100%;
}
.c-co5-info h3 {
	font-size: 20px;
}
@media screen and (max-width: 768px) {
	.c-co5-info h3 {
		font-size: 18px;
	}
}
.c-co5-info dl {
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	.c-co5-info dl {
		font-size: 14px;
	}
}
.c-co5-info dl div {
	display: flex;
}
.c-co5-info dl div:nth-child(odd) {
	background-color: #f1ede8;
}
.c-co5-info dl dt {
	min-width: 10em;
	padding: 0.5em 0.8em;
}
.c-co5-info dl dd {
	flex-grow: 1;
	padding: 0.5em 0.8em;
}
/******************************************************************
component - co5-table
******************************************************************/
.c-co5-table {
	line-height: 1.8;
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	.c-co5-table {
		font-size: 14px;
	}
}
.c-co5-table strong {
	font-weight: bold;
}
.c-co5-table dl {
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.c-co5-table dl {
		display: block;
		border-top: 1px solid #dbd8cf;
	}
}
.c-co5-table dl div {
	display: table-row;
}
@media screen and (max-width: 768px) {
	.c-co5-table dl div {
		display: block;
	}
}
.c-co5-table dl dt {
	display: table-cell;
	background-color: #f3eee9;
	padding: 1em;
	border: 1px solid #dbd8cf;
	width: 1%;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
	.c-co5-table dl dt {
		display: block;
		width: auto;
		border-top: 0;
	}
}
.c-co5-table dl dd {
	display: table-cell;
	padding: 1em;
	border: 1px solid #dbd8cf;
}
.c-co5-table dl dd > *:not(:last-child) {
	margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
	.c-co5-table dl dd {
		display: block;
		border-top: 0;
	}
}
/******************************************************************
component - co5-sns
******************************************************************/
.c-co5-sns {
	margin-block: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 35px;
}
@media screen and (max-width: 768px) {
	.c-co5-sns {
		justify-content: center;
	}
}
.c-co5-sns dl {
	display: flex;
	gap: 12px;
	border-bottom: 1px solid #b48778;
}
.c-co5-sns dt {
	font-size: 18px;
}
.c-co5-sns dd {
	padding-bottom: 10px;
}
.c-co5-sns dd img {
	width: 28px;
}
/******************************************************************
component - co5-accsess
******************************************************************/
/******************************************************************
utility - hover-expand
******************************************************************/
.u-hover-expand-2x, .u-hover-expand-2l, .u-hover-expand-l, .u-hover-expand, .u-hover-expand-s, .u-hover-expand-2s {
	display: inline-block;
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 1.8, 0.6, 1);
}

@media (any-hover: hover) {
	.u-hover-expand-2s:hover {
		transform: scale(1.01);
	}
}
.u-hover-expand-2s:focus {
	transform: scale(1.01);
}

@media (any-hover: hover) {
	.u-hover-expand-s:hover {
		transform: scale(1.02);
	}
}
.u-hover-expand-s:focus {
	transform: scale(1.02);
}

@media (any-hover: hover) {
	.u-hover-expand:hover {
		transform: scale(1.03);
	}
}
.u-hover-expand:focus {
	transform: scale(1.03);
}

@media (any-hover: hover) {
	.u-hover-expand-l:hover {
		transform: scale(1.04);
	}
}
.u-hover-expand-l:focus {
	transform: scale(1.04);
}

@media (any-hover: hover) {
	.u-hover-expand-2l:hover {
		transform: scale(1.05);
	}
}
.u-hover-expand-2l:focus {
	transform: scale(1.05);
}

@media (any-hover: hover) {
	.u-hover-expand-2x:hover {
		transform: scale(1.06);
	}
}
.u-hover-expand-2x:focus {
	transform: scale(1.06);
}