@charset "utf-8";

/* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
	padding: 0.5rem 0.5rem 0.7rem 0.5rem;
	background: #0f3fa3;
	color: #fff;
	text-align: right;
}

.header-title {
	font-size: 1.2rem;
	display: inline-block;
	position: relative;
}

.header-title::before {
	display: inline-block;
	width: 2.4rem;
	height: 1.6rem;
	margin: 0 0.5rem 0 0;
	background: #fff;
	color: #1e0405;
	font-size: 1.1rem;
	line-height: 1.5rem;
	text-align: center;
	content: "PR";
}

.header-title a {
	color: #fff;
	text-decoration: none;
}

.header-title a:hover {
	text-decoration: underline;
}

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

	.header-area-upper {
		text-align: left;
	}

	.header-title {
		font-size: 1rem;
		display: inline-block;
		position: relative;
	}

}

.gnavi-btn-close {
	display: none;
}

.toggle-content {
	display: none;
}

.gnavi-ctrl {
	transition: opacity 0.6s, visibility 0.6s;
	opacity: 0;
	visibility: hidden;
}

.gnavi-ctrl.is-show {
	opacity: 1;
	visibility: visible;
}

#low-header .gnavi-ctrl {
	opacity: 1;
	visibility: visible;
}

.gnavi-btn {
	width: 7rem;
	height: 7rem;
	background: #1b426b;
	display: block;
	position: fixed;
	top: 3.5rem;
	right: 0;
	z-index: 200;
	cursor: pointer;
}

.gnavi-btn span {
	width: 4.6rem;
	height: 0.2rem;
	display: inline-block;
	background: #fff;
	position: absolute;
	left: 1.2rem;
	transform: translate(0, -50%);
	transition: transform 0.4s, opacity 0.4s;
}

.gnavi-btn span:nth-of-type(1) {
	top: 1.8rem;
}

.gnavi-btn span:nth-of-type(2) {
	top: 3.5rem;
}

.gnavi-btn span:nth-of-type(3) {
	top: 5.2rem;
}

.gnavi-btn.is-active span:nth-of-type(1) {
	transform: translateY(1.7rem) rotate(-45deg);
}

.gnavi-btn.is-active span:nth-of-type(2) {
	opacity: 0;
}

.gnavi-btn.is-active span:nth-of-type(3) {
	transform: translateY(-1.7rem) rotate(45deg);
}

.gnavi-btn-close {
	width: 80%;
	margin: 0 auto;
	padding: var(--s2);
	background: #fff;
	display: block;
	text-align: center;
	cursor: pointer;
}

.gnavi-btn-close__inner {
	padding: 0 0 0 var(--s3);
	display: inline-block;
	color: #0d163f;
	font-weight: 700;
	position: relative;
}

.gnavi-btn-close__inner::before {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #000;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(45deg);
}

.gnavi-btn-close__inner::after {
	content: "";
	width: 1em;
	height: 0.2rem;
	background: #000;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(135deg);
}

.gnavi-area {
	width: 100%;
	max-width: 37.5rem;
	height: 100vh;
	padding: var(--s3) var(--s1) var(--s10);
	display: block;
	background: #f6f6f6;
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	transform: translateX(100%);
	transition: transform 0.8s ease, opacity 0.8s ease;
	opacity: 0;
}

.gnavi-title {
	padding: 0.2rem 0 1.2rem 0;
}

.gnavi-title img {
	width: 32%;
}

.gnavi-pc {
	display: none;
}

.gnavi-list {
	border-bottom: 1px solid #a7a7a7;
	position: relative;
}

.gnavi-list li {
	padding-left: 0;
}

.gnavi-list__item::before {
	display: none;
}

.gnavi-list__link {
	width: 100%;
	margin: 0 auto;
	padding: var(--s2) 4rem var(--s2) var(--s2);
	border-top: 1px solid #a7a7a7;
	display: block;
	font-weight: 700;
	line-height: 1.6;
	text-decoration: none;
	position: relative;
}

.gnavi-list__link::after {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	background: url(img/arrow02-black.svg) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translate(0, -50%) rotate(0);
	transition: transform 0.3s;
}

.gnavi-list__link--toggle::after {
	background-image: url(img/arrow02-black-down.svg);
}

.gnavi-list__link--toggle.is-open::after {
	transform: translate(0, -50%) rotate(180deg);
}

.gnavi-list__sub {
	width: 100%;
	background: #fff;
}

.gnavi-list__low .gnavi-list__link {
	padding: var(--s2) 4rem var(--s2) var(--s4);
}

.gnavi-list__low .gnavi-list__link::after {
	content: "└";
	background: none;
	transform: translateY(-50%);
	position: absolute;
	top: 40%;
	left: 1rem;
}

.is-gnavi-open .gnavi-area {
	opacity: 1;
	transform: translateX(0);
}

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

	.gnavi-btn {
		width: 4.8rem;
		height: 4.8rem;
	}

	.gnavi-btn span {
		width: 3.2rem;
		left: 0.8rem;
	}

	.gnavi-btn span:nth-of-type(1) {
		top: 1.1rem;
	}

	.gnavi-btn span:nth-of-type(2) {
		top: 2.3rem;
	}

	.gnavi-btn span:nth-of-type(3) {
		top: 3.5rem;
	}

	.gnavi-btn.is-active span:nth-of-type(1) {
		transform: translateY(1.1rem) rotate(-45deg);
	}

	.gnavi-btn.is-active span:nth-of-type(3) {
		transform: translateY(-1.2rem) rotate(45deg);
	}

}

/* ---------------------------------------------
index01(目次)
--------------------------------------------- */
.onb-index01-frame {
	width: 80rem;
	margin: 5rem auto;
	background-color: #f4f4f4;
}

.onb-index01-wrap {
	margin: 0 auto;
	padding: var(--s3) var(--s4);
	background-color: transparent;
	position: relative;
}

.onb-index01-title {
	padding: var(--s2);
	color: #141414;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.1;
	position: relative;
	cursor: pointer;
}

.onb-index01-title::before {
	content: "";
	width: 2rem;
	height: 0.2rem;
	background: #141414;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
}

.onb-index01-title::after {
	content: "";
	width: 0.2rem;
	height: 2rem;
	background: #141414;
	position: absolute;
	top: 50%;
	right: 2.9rem;
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.onb-index01-title.is-open::after {
	transform: translate(0, -50%) rotate(270deg);
}

.onb-index01-chapter {
	padding: var(--s2) var(--s2) var(--s2) var(--s3);
	font-weight: 400;
}

.onb-index01-chapter-h {
	margin: 0 0 0 var(--s2);
	font-size: 100%;
	font-weight: 700;
	line-height: 1.7;
	position: relative;
}

.onb-index01-chapter-h a {
	display: block;
	text-decoration: none;
}

.onb-index01-chapter-h a:hover {
	opacity: .6;
}

.onb-index01-chapter-h-two {
	margin-left: var(--s2);
	position: relative;
}

.onb-index01-chapter-h-three {
	margin-left: var(--s4);
	position: relative;
}

.onb-index01-chapter-h-two::before,
.onb-index01-chapter-h-three::before {
	position: absolute;
	top: 0;
	left: -1.5em;
}

.onb-index01-chapter-h-two::before {
	content: "";
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 2rem;
	background-color: #1b4269;
	transform: translateY(-50%);
	top: .8em;
}

.onb-index01-chapter-h-three::before {
	content: "└";
}

.more-content {
	display: none;
}


/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {

	.onb-index01-frame {
		width: 100%;
		margin: 4rem auto;
	}

	.onb-index01-wrap {
		padding: 0;
	}

	.onb-index01-title {
		font-size: 1.8rem;
	}

}


/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
	margin: 5rem auto;
	padding: var(--s4);
	background: #f7f7f7;
	position: relative;
}

.related-article01-title {
	padding: 0 0 0.8rem 1rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	position: relative;
	border-bottom: 1px solid #1a426a;
}

.related-article01-list {
	padding: var(--s2) 0 var(--s2) var(--s2);
	font-weight: 700;
}

.related-article01-list li {
	margin: 0 0 0 var(--s2);
	padding-left: 1.5em;
	font-size: 100%;
	line-height: 1.7;
	position: relative;
}

.related-article01-list li+li {
	margin-top: 10px;
}

.related-article01-list li::before {
	content: "";
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background-color: #1a426a;
	position: absolute;
	top: 0.8rem;
	left: 0;
}

.related-article01-list a {
	display: block;
	text-decoration: none;
}

.related-article01-list a:hover {
	opacity: 0.6;
}

.relations-box.relations-box--column {
	display: flex;
	gap: 10px;
}

.relations-box__pic {
	flex: 0 0 150px;
}

.is-hidden {
	display: none;
}

.related-article01-more {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 50%);
	background-color: transparent;
	width: 100%;
	height: 25%;
	position: absolute;
	bottom: -40px;
	left: 0;
	padding: 2rem 0;
}

.related-article01-more.is-closed {
	display: none;
}

.related-article01-btn {
	border: 1px solid #1a426a;
	background: #fff;
	border-radius: 100px;
	padding: 1.5rem 5rem 1.5rem 3rem;
	position: relative;
}

.related-article01-btn::before {
	content: "";
	width: 1.6rem;
	height: 0.2rem;
	background: #1a426a;
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translate(0, -50%);
}

.related-article01-btn::after {
	content: "";
	width: 0.2rem;
	height: 1.6rem;
	background: #1a426a;
	position: absolute;
	top: 50%;
	right: 2.2rem;
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.related-article01-btn:hover {
	opacity: 0.6;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.related-article01-frame {
		margin: 4rem auto;
		padding: var(--s1)  var(--s3)  var(--s4) var(--s3);
	}

	.related-article01-title {
		margin: 0 0 1.5rem 0;
		padding: var(--s2) var(--s2) var(--s3) 0;
		font-size: 1.8rem;
	}

	.related-article01-list {
		padding: 0;
	}

	.related-article01-list li {
		margin-left: 0;
	}

	.relations-box__pic {
		flex: 0 0 100px;
	}
}

/* ---------------------------------------------
1box_5-slider
--------------------------------------------- */
.onb-five-slider-container {
	position: relative;
	width: 70rem;
	margin: 5rem auto;
}

.onb-five-slider.swiper-thumbs .swiper-slide {
	width: calc((100% - 2.4rem) / 3) !important;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #ffffff;
}

.onb-five-slider.swiper-thumbs .swiper-slide:hover {
	cursor: pointer;
}

.onb-five-slider .swiper-slide-thumb-active {
	outline: 4px solid #b18839;
	outline-offset: -4px;
}

.onb-five-slider2 {
	margin-bottom: var(--s3);
}

.onb-five-slider-container .swiper-button-next,
.onb-five-slider-container .swiper-button-prev {
	top: calc(50% - 7rem);
	width: 3.2rem;
	height: 3.2rem;
}

.onb-five-slider-container .swiper-button-prev {
	left: 0;
}

.onb-five-slider-container .swiper-button-next {
	right: 0;
}

.onb-five-slider-container .swiper-button-next:hover,
.onb-five-slider-container .swiper-button-prev:hover {
	opacity: .6;
}

.onb-five-slider-container .swiper-button-next:after,
.onb-five-slider-container .swiper-rtl .swiper-button-prev:after {
	content: "";
	width: 3.2rem;
	height: 3.2rem;
	background: url("./img/slider-arrow-right.svg") no-repeat center center;
	background-size: contain;
}

.onb-five-slider-container .swiper-button-prev:after,
.onb-five-slider-container .swiper-rtl .swiper-button-next:after {
	content: "";
	width: 3.2rem;
	height: 3.2rem;
	background: url("./img/slider-arrow-left.svg") no-repeat center center;
	background-size: contain;
}
.onb-five-slider2 .swiper-slide img {
	width: auto !important;
	max-width: 100% !important;
	height: auto;
	display: block;
	margin: 0 auto;
}
/* =============================================
1. メイン画像：トリミングなしで高さを統一 ＆ captionを下に配置
============================================= */
.onb-five-slider2 .swiper-slide {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: space-between !important;
	height: 500px !important;
	background: #ffffff !important;
	padding: 15px 15px 10px 15px !important;
	box-sizing: border-box !important;
}
/* 画像：トリミングせず、比率を保ったまま枠内に収める */
.onb-five-slider2 .swiper-slide img {
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 420px !important;
	object-fit: contain !important;
	display: block;
	margin: auto auto !important;
}
/* キャプション（引用元）：画像の下に配置して中央寄せ */
.onb-five-slider2 .swiper-slide .caption {
	width: 100% !important;
	margin-top: 5px !important;
	text-align: center !important;
	background: transparent !important;
	font-size: 1.2rem;
	line-height: 1.5;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-five-slider-container {
		width: 100%;
	}

	.onb-five-slider-container .swiper-button-next,
	.onb-five-slider-container .swiper-button-prev {
		width: 3rem;
		height: 3rem;
		top: 35%;
	}
	.onb-five-slider2 .swiper-slide {
		height: 320px !important;
	}
	.onb-five-slider2 .swiper-slide img {
		max-height: 230px !important;
	}
	.onb-five-slider.swiper-thumbs .swiper-slide {
    width: calc((100% - 2.4rem) / 3) !important;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
 }
}

/* ---------------------------------------------
conclusion-box
--------------------------------------------- */
.conclusion-box-frame {
	position: relative;
	margin: 5rem 0;
	padding: 4rem;
	background: #ecf4f6;
}

.conclusion-box-ttl {
	z-index: 1;
  padding-left: 6rem;
}

.conclusion-box-ttl__icon {
	width: 10rem;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0f3fa3;
	position: absolute;
	left: -1.5rem;
	top: -1.5rem;
}

.conclusion-box-ttl__icon::after {
	position: absolute;
	right: -1rem;
	bottom: -1rem;
	display: block;
	width: calc(100% - 1px);
	height: calc(100% - 1px);
	/* background: #fff; */
	/* border: 1px solid #0f3fa3; */
	border-width: 0 1px 1px 0;
	content: "";
	transition: 0.2s;
	z-index: -1;
}

.conclusion-box-ttl__icon span {
	color: #fff;
	font-size: 2.2rem;
}

.conclusion-box-ttl__text {
	margin: 0 0 1rem 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	color: #0f3fa3;
	border-bottom: 1px solid;
	padding: 0 0 2rem;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.conclusion-box-frame {
		margin: 4rem 0;
		padding: 3rem 1.5rem 1.5rem 1.5rem;
	}

	.conclusion-box-ttl {
		position: relative;
		padding: 0 0 0 7rem;
	}

	.conclusion-box-ttl__icon {
		width: 6.4rem;
		height: 6.4rem;
		left: 0;
		top: 0;
	}

	.conclusion-box-ttl__icon::after {
		right: -0.5rem;
		bottom: -0.5rem;
	}

	.conclusion-box-ttl__icon span {
		font-size: 1.6rem;
	}

	.conclusion-box-ttl__text {
		font-size: 1.8rem;
		padding: 0 0 1rem;
	}
}

/* ---------------------------------------------
icon-txt-head
--------------------------------------------- */
.icon-container {
	counter-reset: icon-counter;
}

.icon-txt-head {
	min-height: 8rem;
	margin-top: var(--s4);
	margin-bottom: var(--s2);
	padding: 2rem 2rem 2rem 9rem;
	line-height: 1.4;
	font-size: 2rem;
	font-weight: 700;
	color: #0f3fa2;
	border-bottom: 1px solid #0f3fa3;
	position: relative;
	display: flex;
	align-items: center;
}

.icon-txt-head::before {
	content: "";
	width: 5.2rem;
	height: 5.2rem;
	background: #0f3fa3;
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%) rotate(45deg);
}

.icon-txt-head::after {
	content: "CHECK";
	width: 7.2rem;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.icon-txt-head {
		padding: 2rem 1.5rem 2rem 8rem;
		font-size: 1.8rem;
	}
}


/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.section-title07-frame {
		background-color: transparent;
	}

	.section-title07-frame::before {
		width: 100%;
		padding: var(--s1) 0;
		font-size: 2.4em;
		top: -2.4rem;
	}

	.section-title07 {
		padding: var(--s2) var(--s2) 0 var(--s2);
		font-size: 2.4rem;
	}
}

/* ---------------------------------------------
3box 共通　3box column settings
--------------------------------------------- */
.column-small {
	padding: 0 var(--s2) var(--s2) var(--s2);
	box-shadow: 0 0.3rem 1.2rem rgba(0, 0, 0, 0.15);
}

.thb-box-full {
	width: calc(100% + var(--s4));
	margin-left: calc(var(--s2) * -1);
}

/* ---------------------------------------------
1box 共通 1box column settings
--------------------------------------------- */
.onb-box-full {
	width: calc(100% + var(--s8));
	margin-left: calc(var(--s4) * -1);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-box-full {
		width: calc(100% + var(--s4));
		margin-left: calc(var(--s2) * -1);
	}
}

/* ---------------------------------------------
1box_item-title-r
--------------------------------------------- */
.onb-item-title-frame {
	padding: var(--s3) var(--s4);
	position: relative;
	background-color: #0f3fa3;
}

.onb-item-title-icon {
	display: none;
}

.onb-item-title-icon img {
	width: 100%;
}

.l-onb-item-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}

.l-onb-item-title__side,
.l-onb-item-title__main {
	padding: 0;
	text-align: center;
	line-height: 1.3;
}

.l-onb-item-title__side span {
	font-size: 1.6rem;
	border: none;
}

.l-onb-item-title__side {
	width: 100%;
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	background-color: transparent;
}

.l-onb-item-title__main {
	width: 100%;
	color: #fff;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-item-title-frame {
		padding: var(--s2);
	}

	.onb-item-title-icon {
		width: 6rem;
		height: 6rem;
		position: absolute;
		top: -2rem;
		left: -2rem;
	}

	.l-onb-item-title {
		flex-direction: column;
	}

	.l-onb-item-title__side,
	.l-onb-item-title__main {
		width: 100%;
		font-size: 2.5rem;
		font-weight: 700;
	}

	.l-onb-item-title__side span,
	.l-onb-item-title__main span {
		font-size: 1.4rem;
	}

	.onb-item-title-catch {
		font-size: 1.9rem;
		border: none;
	}

}

/* ---------------------------------------------
1box_center-img
--------------------------------------------- */
.onb-center-img {
	max-width: 64%;
	margin: 0 auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-center-img {
		max-width: 100%;
	}
}

/* ---------------------------------------------
4box_catch
--------------------------------------------- */
.title-catch {
	padding: var(--s4) .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	border-bottom: 1px solid var(--site-color12);
	color: #1a426a;
}

.title-catch span {
	font-size: 1.6rem;
}

/* ---------------------------------------------
4box_accordion
--------------------------------------------- */
.frb-more-btn {
	max-width: 32rem;
	margin: var(--s5) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: 1px solid #141414;
	text-align: center;
	position: relative;
	transition: opacity 0.3s;
	cursor: pointer;
	border-radius: 5px;
}

.frb-more-btn::before {
	content: "";
	width: 2rem;
	height: .2rem;
	background: #000;
	position: absolute;
	top: 50%;
	right: 3rem;
	transform: translate(0, -50%);
}

.frb-more-btn::after {
	content: "";
	width: .2rem;
	height: 2rem;
	background: #000;
	position: absolute;
	top: 50%;
	right: 3.9rem;
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.frb-more-btn:hover {
	opacity: 0.6;
}

.frb-more-btn.is-open::after {
	transform: translate(0, -50%) rotate(270deg);
}

.more-content {
	display: none;
}

/* ---------------------------------------------
3box_table
--------------------------------------------- */
.thb-table {
	line-height: 1.4;
	border-collapse: collapse;
	border: 1px solid #999999;
}

.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #999999;
}

.thb-table th {
	width: 35%;
	background-color: #ececec;
	text-align: center;
}

/* ---------------------------------------------
accordion
--------------------------------------------- */
.acc-more-btn {
	max-width: 46rem;
	width: 100%;
	margin: var(--s5) auto;
	padding: 2.4rem 6rem 2.4rem 3rem;
	border: .2rem solid var(--site-color03);
	text-align: center;
	position: relative;
	transition: opacity 0.3s;
	cursor: pointer;
	background: var(--site-color10);
	border-radius: 10px;
	color: var(--site-color03);
	font-weight: 700;
}

.acc-more-btn::before {
	content: "";
	width: 2rem;
	height: .2rem;
	background: var(--site-color03);
	;
	position: absolute;
	top: 50%;
	right: 3rem;
	transform: translate(0, -50%);
}

.acc-more-btn::after {
	content: "";
	width: .2rem;
	height: 2rem;
	background: var(--site-color03);
	;
	position: absolute;
	top: 50%;
	right: 3.9rem;
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.acc-more-btn:hover {
	opacity: 0.6;
}

.acc-more-btn.is-open::after {
	transform: translate(0, -50%) rotate(270deg);
}

.more-content {
	display: none;
}

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

	/*---------------------------------------------
    sp base settings
*/
	.acc-more-btn {
		width: 85%;
	}
}

/* ---------------------------------------------
2box 共通 2box column settings
--------------------------------------------- */
.twb-box-full {
	width: calc(100% + var(--s8));
	margin-left: calc(var(--s4) * -1);
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.twb-box-full {
		width: calc(100% + var(--s4));
		margin-left: calc(var(--s2) * -1);
	}
}

/* ---------------------------------------------
1box_iconbox02
--------------------------------------------- */
.onb-iconbox02-catch {
	padding: var(--s2) var(--s1) var(--s3) var(--s7);
	color: var(--site-color03);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	border-bottom: 1px solid var(--site-color02);
	background: url('./img/icon-dummy.png') no-repeat center left;
	background-size: 4.8rem auto;
}

.onb-iconbox02-caption {
	text-align-last: left;
}


/*--------------------------------------
mainvisual
---------------------------------------*/
.mainvisual {
	position: relative;
	background: url(img/mv-bg-01.jpg) no-repeat left center;
	background-size: cover;
}

.mainvisual .mv-inner {
	width: 120rem;
	min-height: 78rem;
	margin: 0 auto;
	padding: 4rem 4rem;
}

.mainvisual .mv-sitename {
	position: relative;
	width: 60rem;
}

.mainvisual .mv-sitename::before {
	position: absolute;
	left: calc(100% + 4rem);
	top: 0;
	width: 88.8vw;
	height: 70rem;
	background: url(img/za-nac-00002222_mv-bg-02.png) no-repeat left top;
	background-size: contain;
	content: "";
}


.mainvisual .mv-logo {
	width: 20rem;
	margin: 0 0 3rem 0;
}

.mainvisual .mv-sitename {
	margin: 0 0 2rem 0;
}

.mainvisual .mv-title {
	color: #0f3fa2;
	font-size: 4.6rem;
	font-weight: 700;
	line-height: 1.4;
}

.mainvisual .mv-title span {
	display: inline-block;
	margin: 0 0 0.5rem 0;
	padding: 0 1.2rem 0.4rem 1.2rem;
	background: #222b4a;
	color: #fff;
	font-size: 3.6rem;
}

.mainvisual .mv-txt {
	width: 60rem;
	font-size: 1.8rem;
}

.mainvisual .mv-txt p:not([class])>span:not([class]) {
	color: #db8000;
	font-weight: 700;
}

.mainvisual .caption {
	margin: 1.5rem 0 0 0;
	font-size: 1.2rem;
	line-height: 1.8;
	text-align: left;
}

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

	.mainvisual .mv-inner {
		width: 100%;
		min-height: auto;
		padding: 2.5rem 1.5rem;
	}

	.mainvisual .mv-sitename {
		position: relative;
		width: 100%;
	}

	.mainvisual .mv-sitename::before {
		display: none;
		content: none;
	}

	.mainvisual .mv-logo {
		width: 16rem;
		margin: 0 auto 2rem auto;
	}

	.mainvisual .mv-sitename {
		margin: 0 0 2rem 0;
	}

	.mainvisual .mv-title {
		padding: 70% 0 0 0;
		background: url(img/za-nac-00002222_mv-bg-02.png) no-repeat center top;
		background-size: 80% auto;
		font-size: 2.4rem;
		text-align: center;
	}

	.mainvisual .mv-title span {
		display: inline-block;
		margin: 0 0 0.5rem 0;
		padding: 0.2rem 0.8rem 0.4rem 0.8rem;
		font-size: 1.8rem;
	}

	.mainvisual .mv-txt {
		width: 100%;
		font-size: 1.6rem;
	}

}


/*--------------------------------------
mainvisual-lower
---------------------------------------*/
.mainvisual-lower .mv-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 20rem;
	background: #f9fbfa url(img/mv-bg-03.jpg) no-repeat center center;
	background-size: cover;
	text-align: center;
}

.mainvisual-lower .mv-logo {
	width: 20rem;
	margin: 0 auto;
}

.mainvisual-lower .mv-logo a:hover {
	opacity: 0.7;
}

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

	.mainvisual-lower .mv-inner {
		height: 10rem;
	}

	.mainvisual-lower .mv-logo {
		width: 12rem;
	}

}


/*--------------------------------------
accordion
---------------------------------------*/
.accordion-item {
	display: none;
}

.accordion-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 46rem;
	margin: 3rem auto 4rem auto;
	padding: 2rem 5rem;
	background: #ececec;
	border: 1px solid #1e0405;
	border-radius: 1rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	transition: 0.2s;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.accordion-btn::before {
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translate(0, -50%);
	width: 2rem;
	height: 0.2rem;
	background: #1e0405;
	content: "";
}

.accordion-btn::after {
	position: absolute;
	right: 2.9rem;
	top: 50%;
	transform: translate(0, -50%);
	transition: transform 0.3s;
	width: 0.2rem;
	height: 2rem;
	background: #1e0405;
	content: "";
}

.accordion-btn.is-open::after {
	transform: translate(0, -50%) rotate(270deg);
}

.accordion-btn:hover {
	opacity: 0.7;
}


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

	.accordion-btn {
		max-width: 90%;
		font-size: 1.6rem;
	}

}


/*--------------------------------------
banner
---------------------------------------*/
.fix-banner01 {
	position: fixed;
	right: 0;
	bottom: 12rem;
	z-index: 50;
}

.fix-banner01 a {
	display: block;
	width: 27rem;
	padding: 1.2rem 1rem;
	background: #1b426b url(img/banner-bg-01.png) no-repeat right 0.4rem bottom 0.4rem;
	background-size: 18px auto;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	text-decoration: none;
}

.fix-banner01 a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.fix-banner01 a span {
	display: inline-block;
	margin: 0 0 0.5rem 0;
	padding: 0.1rem 0.6rem;
	background: #fff;
	color: #1b426b;
	font-size: 1.6rem;
}

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

	.fix-banner01 {
		bottom: 0;
	}

	.fix-banner01 a {
		width: 19rem;
		padding: 0.7rem 0.5rem 1rem 1rem;
		background: #1b426b url(img/banner-bg-01.png) no-repeat right 0.3rem bottom 0.3rem;
		background-size: 12px auto;
		font-size: 1.3rem;
		line-height: 1.4;
		text-align: left;
	}

	.fix-banner01 a span {
		margin: 0 0 0.5rem 0;
		padding: 0.1rem 0.5rem;
		font-size: 1.1rem;
	}

}


/*--------------------------------------
common
---------------------------------------*/
#low-page {
	padding: 0 0 5rem 0;
}

.section-title07-frame {
	position: relative;
	margin: 0 0 5rem 0;
}

.section-title07-frame::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	color: #7c9de1;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	content: attr(data-en);
}

.section-title07 {
	padding: 4.5rem 0 0 0;
	color: #1e0405;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.section-title07 a {
	display: block;
	padding: 0 2rem;
	background: url(img/arrow03-black.svg) no-repeat right center;
	background-size: 1.5rem auto;
	color: inherit;
	text-decoration: none;
}

p.lead {
	margin: 0 auto 4rem auto;
	line-height: 1.8;
}

.section-title05 {
	margin: 0 0 4rem 0;
	padding: 2rem;
	background: #0f3fa3;
	color: #fff;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}


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

	#low-page {
		padding: 0 1.5rem 2rem 1.5rem;
	}

	.section-title07-frame {
		margin: 0 0 4rem 0;
	}

	.section-title07-frame::before {
		font-size: 1.8rem;
	}

	.section-title07 {
		font-size: 2.4rem;
	}

	.section-title07 a {
		padding: 0 2rem 0 0;
		background: url(img/arrow03-black.svg) no-repeat right center;
		background-size: 1rem auto;
	}

	p.lead {
		margin: 0 auto 3rem auto;
	}

	.section-title05 {
		margin: 0 0 3rem 0;
		padding: 1.5rem;
		font-size: 2.4rem;
	}

}


/*--------------------------------------
sec01
---------------------------------------*/
.sec01 {
	padding: 8rem 0 10rem 0;
	background: url(img/sec01-bg-01.jpg) no-repeat center bottom;
	background-size: 100% auto;
}

.sec01.lower-cnts {
	margin: 0 calc(50% - 50vw) 6rem calc(50% - 50vw);
}

#low-page .sec01.lower-cnts ul:not([class]) {
	margin: 0;
}

.sec01 .l-stack-large {
	gap: 0;
}

.sec01 .l-grid-three+.caption {
	margin: 3rem 0 0 0;
	color: #1a426a;
	text-align-last: left;
}

.sec01 .column-small {
	padding: 0 1.5rem 4rem 1.5rem;
	background: #fff;
}

.sec01 .thb-title-area {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
	background: #2954ab url(img/sec01-bg-02.jpg) no-repeat center center;
	background-size: cover;
}

.sec01 .thb-title {
	color: #fff;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec01 .thb-title span {
	display: inline-block;
	margin: 0 0 0.7rem 0;
	padding: 0.1rem 0.5rem;
	background: #fff;
	color: #0f3fa2;
	font-size: 1.6rem;
}

.sec01 .m-title01 {
	margin: 2rem 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.thb-slider .swiper-button-next,
.thb-slider .swiper-button-prev {
	top: 40%;
	width: 2.8rem;
	height: 2.8rem;
}

.thb-slider .swiper-button-next {
	right: 0;
}

.thb-slider .swiper-button-prev {
	left: 0;
}

.thb-slider .swiper-button-next:hover,
.thb-slider .swiper-button-prev:hover {
	opacity: 0.7;
}

.thb-slider .swiper-button-next::after,
.thb-slider .swiper-rtl .swiper-button-prev::after {
	width: 2.8rem;
	height: 2.8rem;
	background: url(img/slider-arrow-right.svg) no-repeat center center;
	background-size: contain;
	content: "";
}

.thb-slider .swiper-button-prev::after,
.thb-slider .swiper-rtl .swiper-button-next::after {
	width: 2.8rem;
	height: 2.8rem;
	background: url(img/slider-arrow-left.svg) no-repeat center center;
	background-size: contain;
	content: "";
}

.thb-slider .swiper-pagination {
	display: none;
}

.thb-listbox-bg-colored {
	width: calc(100% + 3rem);
	margin-left: calc(1.5rem * -1);
	padding-top: 2rem;
}

.thb-listbox-area {
	position: relative;
	background: #f7f7f7;
	margin: 3rem 0 0 0;
	padding: 0 1.5rem 1rem 1.5rem;
}

.thb-listbox-title {
	display: inline-block;
	position: relative;
	left: 50%;
	top: -1.5rem;
	transform: translateX(-50%);
	padding: 0.8rem 1rem 1rem 1rem;
	color: #fff;
	background-color: #0f3fa3;
	font-weight: 700;
	text-align: center;
}

.sec01 .title-catch {
	margin: 2.5rem 0 1.5rem 0;
	padding: 0 0 0.5rem 0;
	border-bottom: 1px solid #1a426a;
	color: #1a426a;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec01 .btn-web {
	margin: 3rem auto 0 auto;
}

.sec01 .btn-web a {
	padding: 1.8rem 3rem;
	background-position: right 1.2rem center;
	font-size: 1.6rem;
}


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

	.sec01 {
		padding: 4rem 0;
	}

	.sec01 .column-small {
		margin: 0 0 2rem 0;
	}

	.sec01 .column-small:last-child {
		margin: 0;
	}

}


/*--------------------------------------
sec02
---------------------------------------*/
.sec02 {
	padding: 8rem 0 10rem 0;
	background: #deeaea;
}

.sec02 .column-medium {
	margin: 0 0 10rem 0;
	background: #fff;
}

.sec02 .column-medium:last-child {
	margin: 0;
}

.sec02 .onb-item-title-catch {
	padding: 1.5rem 1.5rem 2rem 1.5rem;
	color: #fff;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	overflow: hidden;
}

.sec02 .onb-item-title-catch.catch-resort {
   background: #0f3fa2 url(img/za-nac-00002373_sec02-bg-01.jpg) no-repeat right center;
   background-size: contain;
}

.sec02 .onb-item-title-catch.catch-leisure {
    background: #0f3fa2 url(img/sec02-bg-02.jpg) no-repeat right center;
    background-size: contain;
}

.sec02 .onb-item-title-catch.catch-rehab {
   background: #0f3fa2 url(img/za-nac-00002372_sec02-bg-03.jpg) no-repeat right center;
   background-size: contain;
}


.sec02 .onb-item-title-catch span {
	display: inline-block;
	margin: 0 0 0.8rem 0;
    font-size: 2.2rem;
    padding: 0.1rem 0.5rem;
    background: #fff;
    color: #0f3fa2;
}

.sec02 .inner {
	padding: 4rem 3rem 2rem 3rem;
}

.sec02 .onb-item-title-title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec02 .onb-m-title5 {
	margin: 6rem 0 3rem 0;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec02 .onb-m-title5 span {
	display: flex;
	align-items: center;
}

.sec02 .onb-m-title5 span::before,
.sec02 .onb-m-title5 span::after {
	flex-grow: 1;
	min-width: 5%;
	height: 1px;
	background-color: var(--site-color09);
	content: "";
}

.sec02 .onb-m-title5 span::before {
	margin-right: var(--s2);
}

.sec02 .onb-m-title5 span::after {
	margin-left: var(--s2);
}

.sec02 .txt-1 {
	width: 70rem;
	margin: 0 auto;
}
.sec02 .txt-1 h6 {
    color: #0f3fa3;
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}
.sec02 .txt-2 {
	margin: 4rem 0 0 0;
}

.sec02 .txt-2 .caption {
	text-align: left;
}

.sec02 .l-grid-three-wrap {
	margin: 0 -3rem;
	padding: 5rem 6rem 4rem 6rem;
	background: #c8d5e6 url(img/sec02-bg-04.jpg) no-repeat center center;
	background-size: cover;
}

.sec02 .l-grid-three-wrap .onb-m-title5 {
	margin: 0 0 4rem 0;
}

.sec02 .l-grid-three-wrap .onb-m-title5 span {
	display: block;
}

.sec02 .l-grid-three-wrap .onb-m-title5 span::before,
.sec02 .l-grid-three-wrap .onb-m-title5 span::after {
	display: none;
	content: none;
}

.sec02 .thb-iconbox01-area {
	padding: 2.5rem 1.5rem;
	background: #fff;
}

.sec02 .thb-iconbox01-title {
	display: flex;
	align-items: center;
	margin: 0 0 2rem 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	color: #0f3fa2;
	justify-content: center;
	text-align: center;
}

.sec02 .thb-iconbox01-area .caption {
	text-align: left;
}

.sec02 .onb-iconbox02-frame {
	padding: var(--s4);
	background: #f7f7f7;
}

.onb-acc-list-frame {
	margin: 4rem 0;
}

.onb-acc-list-content {
	width: 77rem;
	margin: 0 auto;
}

.onb-acc-list div {
	display: flex;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #070707;
}

.onb-acc-list div:last-child {
	margin: 0 0 3rem 0;
}

.onb-acc-list div dt {
	width: 25%;
	padding: 0.5rem 1rem 0.5rem 0;
	color: #0f3fa3;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	word-break: break-all;
}

.onb-acc-list div dd {
	width: 75%;
	padding: 0.5rem 0 0.5rem 2rem;
	line-height: 1.4;
	word-break: break-all;
}

.more-content-gradation {
	position: relative;
	height: auto;
	max-height: 30rem;
	overflow: hidden;
	transition: max-height 1s;
}

.more-content-gradation::after {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, #fff 100%);
	content: "";
	transition: 0.3s;
	z-index: 1;
}

.more-content-gradation.is-open::after {
	display: none;
}

.onb-acc-list-more-btn {
	position: relative;
	max-width: 46rem;
	margin: 0 auto;
	padding: 2rem 4rem;
	border: 1px solid #1a416a;
	border-radius: 1rem;
	color: #1a416a;
	;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.3s;
}

.onb-acc-list-more-btn::before {
	position: absolute;
	right: 2rem;
	top: 50%;
	width: 1.6rem;
	height: 0.2rem;
	background: #1a416a;
	content: "";
	transform: translate(0, -50%);
}

.onb-acc-list-more-btn::after {
	position: absolute;
	right: 2.7rem;
	top: 50%;
	width: 0.2rem;
	height: 1.6rem;
	background: #1a416a;
	content: "";
	transform: translate(0, -50%);
	transition: transform 0.3s;
}

.onb-acc-list-more-btn:hover {
	opacity: 0.7;
}

.onb-acc-list-more-btn.is-open::after {
	transform: translate(0, -50%) rotate(270deg);
}

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

	.sec02 {
		padding: 4rem 0;
	}

	.sec02 .column-medium {
		margin: 0 0 6rem 0;
	}

	.sec02 .onb-item-title-catch {
		padding: 1.5rem 1rem 2rem 1rem;
		font-size: 2.4rem;
	}

	.sec02 .onb-item-title-catch span {
		font-size: 1.6rem;
	}

	.sec02 .inner {
		padding: 3rem 1.2rem 2rem 1.2rem;
	}

	.sec02 .onb-item-title-title {
		font-size: 2.1rem;
	}

	.sec02 .onb-m-title5 {
		margin: 5rem 0 2.5rem 0;
		font-size: 2rem;
	}

	.sec02 .onb-item-title-title+.onb-m-title5 {
		margin: 2.5rem 0;
	}

	.sec02 .onb-m-title5 span::before,
	.sec02 .onb-m-title5 span::after {
		width: 4rem;
	}

	.sec02 .onb-m-title5 span::before {
		margin-right: var(--s1);
	}

	.sec02 .onb-m-title5 span::after {
		margin-left: var(--s1);
	}

	.sec02 .onb-five-slider-container {
		margin: 3rem auto;
	}

	.sec02 .txt-1 {
		width: 100%;
	}

	.sec02 .txt-2 {
		margin: 2rem 0 0 0;
	}

	.sec02 .txt-2 .caption {
		text-align: left;
	}

	.sec02 .l-grid-three-wrap {
		margin: 0 -1.2rem;
		padding: 3rem 1.2rem;
	}

	.sec02 .l-grid-three-wrap .onb-m-title5 {
		margin: 0 0 2rem 0;
	}

	.sec02 .onb-iconbox02-frame {
		padding: var(--s2);
	}

	.onb-acc-list-frame {
		margin: 2rem 0;
	}

	.onb-acc-list-content {
		width: 100%;
	}

	.onb-acc-list div {
		padding: 1rem;
		display: block;
	}

	.onb-acc-list div:last-child {
		margin: 0 0 2rem 0;
	}
	.onb-acc-list div dt {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 0;
    color: #0f3fa3;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    word-break: break-all;
 }
	.onb-acc-list div dd {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 0;
    line-height: 1.4;
    word-break: break-all;
 }

}


/*--------------------------------------
sec03
---------------------------------------*/
.sec03 {
	padding: 8rem 0 10rem 0;
}

.sec03 .column-xsmall {
	margin: 0 0 3rem 0;
	background: #ececec;
}

.sec03 .tag-name {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.sec03 .frb-tag-list-1c li {
	display: flex;
	position: relative;
	width: 100%;
	padding: 0.8rem;
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: center;
}

.sec03 .title {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 1rem 0.5rem;
	background: #1b426b;
	color: #fff;
	font-weight: 700;
	text-align: center;
}

.sec03 .title::after {
	position: absolute;
	right: 0.5rem;
	bottom: 0.5rem;
	width: 0.1rem;
	height: 0.1rem;
	border-top: .5rem solid transparent;
	border-right: 0.5rem solid #fff;
	border-bottom: 0.5rem solid #fff;
	border-left: .5rem solid transparent;
	content: "";
}

.sec03 .title:hover {
	cursor: pointer;
}

.sec03 ul:not([class]) {
	margin: 0 1rem;
}

.sec03 .list-1,
.sec03 .list-2 {
	margin: 3rem 0 0 0;
}

.sec03 .list-2 {
	padding: 0 0 1.5rem 0;
}

.frb-listbox-title {
	margin: 0 0 1.5rem 0;
	padding: 0.6rem 1rem;
	background: #7c9de1;
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.frb-taglist-title {
	color: #1a426a;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.frb-tag-list-2c {
	margin: 0 1rem;
}

.frb-tag-list-2c li {
	display: inline-block;
	margin: 0 0.3rem 0.6rem 0;
	padding: 0.2rem 0.8rem 0.3rem 0.8rem;
	background: #fff;
	border-radius: 0.8rem;
	color: #1a426a;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.frb-tag-list-2c li::before {
	display: none;
}

.frb-taglist-title-1c {
	margin: 1rem 0 3rem 0;
	color: var(--site-color09);
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.frb-help-content {
	position: absolute;
	left: 50%;
	top: -1.2rem;
	transform: translate(-50%, -100%);
	width: 28rem;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid #1a426a;
	text-align: left;
	transition: opacity 0.6s;
	visibility: hidden;
	z-index: 5;
}

.frb-help-content .ttl {
	margin: 0 0 1rem 0;
	padding: 0 0 0.8rem 0;
	border-bottom: 1px solid #1a426a;
	color: #0f3fa2;
	font-weight: 700;
}

.dialog--pos-left {
	left: 2rem;
	transform: translate(0, -100%);
}

.dialog--pos-left::after {
	left: 2.8rem;
	transform: translate(0, 100%);
}

.dialog--pos-right {
	right: 2rem;
	left: auto;
	transform: translate(0, -100%);
}

.dialog--pos-right::after {
	left: auto;
	right: 2.8rem;
	transform: translate(0, 100%);
}

.dialog {
	opacity: 0;
}

.dialog.is-show {
	visibility: visible;
	opacity: 1;
}

.dialog-btn-close {
	display: none;
}

.sec03 h3:not([class]) {
	position: relative;
	width: 100%;
	margin-block: 4rem 2rem;
	padding: 0 2rem;
	color: #1e0405;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec03 h3:not([class])::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 0.3rem;
	height: 100%;
	background: #33312e;
	border: 1px solid #0f3fa2;
	content: "";
}

.onb-icon-container {
	counter-reset: onb-icon-counter 0;
}

.onb-icon-txt-head {
	display: flex;
	align-items: center;
	position: relative;
	min-height: 8rem;
	margin: 5rem 0 2.5rem 0;
	padding: 2rem 2rem 2rem 9rem;
	color: #0f3fa2;
	border-bottom: 1px solid #0f3fa3;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.onb-icon-txt-head::before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 7rem;
	height: 7rem;
	background: #1b426b;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	color: #fff;
	font-family: serif;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.1;
	content: counter(onb-icon-counter, decimal-leading-zero);
	counter-increment: onb-icon-counter 1;
}

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

	.sec03 {
		padding: 4rem 0;
	}

	.sec03 .column-xsmall {
		margin: 0 0 1rem 0;
	}

	.sec03 h3:not([class]) {
		font-size: 2.1rem;
	}

	.onb-icon-txt-head {
		margin: 3rem 0 1.5rem 0;
		padding: 1.5rem 1.5rem 1.5rem 8rem;
		font-size: 1.8rem;
	}

	.frb-help-content {
		width: 100%;
		height: 100vh;
		padding: 0;
		background-color: rgba(0, 0, 0, .6);
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 300;
	}

	.frb-help-content-area {
		width: 90%;
		max-height: 80vh;
		padding: var(--s2);
		background-color: #fff;
		border: 1px solid var(--site-color09);
		overflow-y: auto;
		position: absolute;
	}

	.frb-help-content--pos-left {
		left: 0;
		transform: inherit;
	}

	.frb-help-content::after {
		left: 2.8rem;
		transform: inherit;
	}

	.frb-help-content--pos-right {
		right: 0;
		left: auto;
		transform: inherit;
	}

	.frb-help-content::after {
		left: auto;
		right: 2.8rem;
		transform: translate(0, 100%);
	}

	.dialog--pos-left {
		left: 0;
		transform: inherit;
	}

	.dialog::after {
		left: 2.8rem;
		transform: inherit;
	}

	.dialog--pos-right {
		right: 0;
		left: auto;
		transform: inherit;
	}

	.dialog::after {
		left: auto;
		right: 2.8rem;
		transform: translate(0, 100%);
	}

	.dialog-btn-close {
		display: block;
		position: absolute;
		right: 0.5rem;
		top: 0.5rem;
		width: 1.8rem;
		height: 1.8rem;
		background: url(img/icon-close.svg) no-repeat center center;
		background-size: contain;
	}

	.frb-help-content .ttl {
		padding: 0 2rem 0.8rem 0;
	}

}


/*--------------------------------------
sec04
---------------------------------------*/
.sec04 {
	padding: 8rem 0 10rem 0;
	background: #e5e5e5 url(img/sec04-bg-01.jpg) no-repeat center top;
	background-size: cover;
}

.sec04 .column-small {
	padding: 2.5rem 1.5rem;
	background: #fff;
	box-shadow: none;
}

.sec04 .m-title01 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 2rem 0;
	color: #b1883a;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec04 .m-title01 a {
	width: 100%;
	padding: 0 2rem 0 0;
	background: url(img/arrow03-blue.svg) no-repeat right center;
	background-size: 1rem auto;
	color: #0f3fa2;
	text-decoration: none;
}

.sec04 .m-title01 a:hover {
	opacity: 0.7;
}

.sec04 .fig {
	text-align: center;
}

.sec04 table {
	margin: 1.5rem 0;
	font-size: 1.5rem;
}

.sec04 table th {
	width: 11rem;
	padding: 0.8rem 0.5rem;
	text-align: center;
}

.sec04 table td {
	padding: 0.8rem 0.5rem;
}

.sec04 .link {
	text-align: right;
}

.sec04 .link a {
	display: inline-block;
	margin: 0;
	padding: 0.1rem 1.6rem 0.2rem 0;
	background: url(img/arrow03-navy.svg) no-repeat right center;
	background-size: 8px auto;
	color: #1e0405;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: underline;
}

.sec04 .link a:hover {
	text-decoration: none;
	opacity: 0.7;
}

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

	.sec04 {
		padding: 4rem 0;
	}

}


/*--------------------------------------
sec05
---------------------------------------*/
.sec05 {
	padding: 8rem 0 10rem 0;
}

.sec05 .column-medium {
	display: flex;
	flex-direction: column;
	padding: 3rem;
	border: 1px solid var(--site-color09);
	box-shadow: none;
	position: relative;
}
.sec05 .twb-m-title01 a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* お好みでホバー時にボックス全体が反応しているとわかるように */
.sec05 .column-medium:hover {
	opacity: 0.7;
	cursor: pointer;
}
.sec05 .twb-m-title01 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 2rem 0;
	color: #0f3fa2;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec05 .twb-m-title01 a {
	display: block;
	width: 100%;
	padding: 0 2rem 0 0;
	background: url(img/arrow03-blue.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

.sec05 .fig {
	margin: 0 0 1.5rem 0;
	order: 1;
}

.sec05 .column-medium>p {
	order: 2;
}

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

	.sec05 {
		padding: 4rem 0;
	}

	.sec05 .column-medium {
		padding: 2rem;
	}

}


/*--------------------------------------
sec06
---------------------------------------*/
.sec06 {
	padding: 8rem 0 10rem 0;
	background: #ececec url(img/sec06-bg-01.jpg) no-repeat center center;
	background-size: cover;
}

.summary-box-r {
	display: grid;
	grid-template-columns: 41rem 1fr;
	grid-auto-rows: minmax(10px, auto) 1fr;
	grid-template-areas:
		"img catch"
		"img content";
	column-gap: var(--s4);
	margin: 0 0 2rem 0;
	padding: var(--s4);
	background: #fff;
	position: relative;
  text-decoration: none;
}

.summary-box-r-catch a::after {
	/* position: absolute; */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: 1;
}

.summary-box-r:hover {
	opacity: 0.7;
	cursor: pointer;
}
.summary-box-r .text-area {
	line-height: 2;
}

.summary-box-r-catch {
	grid-area: catch;
	margin: 0 0 2rem 0;
	color: #0f3fa2;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.4;
}

.summary-box-r-catch a {
	display: block;
	padding: 0 2rem 0 0;
	background: url(img/arrow03-navy.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

.summary-box-r-catch span.arrow {
	display: block;
	padding: 0 2rem 0 0;
	background: url(img/arrow03-navy.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

.summary-box-r-img {
	grid-area: img;
}

.summary-box-r-content {
	grid-area: content;
}

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

	.sec06 {
		padding: 4rem 0;
	}

	.text-area {
		font-size: 1.4rem;
	}

	.summary-box-r {
		padding: var(--s2);
		display: block;
	}

	.summary-box-r-catch {
		font-size: 2rem;
	}

	.summary-box-r-img {
		margin: 0 0 1.5rem 0;
		padding: 0;
	}

}


/*--------------------------------------
sec07
---------------------------------------*/
.sec07 {
	padding: 8rem 0 10rem 0;
}

.sec07 h3:not([class]) {
	position: relative;
	margin-block: 5rem 2rem;
	padding: 1.5rem 2rem;
	background: #0f3fa3;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec07 h3:not([class]) a {
	display: block;
	padding: 0 2rem 0 0;
	background: url(img/arrow03-white.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

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

	.sec07 {
		padding: 4rem 0;
	}

	.sec07 h3:not([class]) {
		margin-block: 3rem 2rem;
		padding: 1.5rem;
		font-size: 2rem;
	}

}


/*--------------------------------------
sec08
---------------------------------------*/
.sec08 {
	padding: 8rem 0 10rem 0;
	background: #efefef url(img/sec07-bg-01.jpg) no-repeat center center;
	background-size: cover;
}

.sec08 .column-medium {
	padding: 3rem;
	background: #fff;
	box-shadow: none;
	position: relative;
}

.sec08 .twb-m-title03 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 2.5rem 0;
	color: #0f3fa2;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec08 .twb-m-title03 a {
	display: block;
	width: 100%;
	padding: 0 2rem 0 0;
	background: url(img/arrow03-blue.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}
.sec08 .twb-m-title03 a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.sec08 .column-medium:hover {
	opacity: 0.7;
	cursor: pointer;
}
@media screen and (max-width: 767px) {

	.sec08 {
		padding: 4rem 0;
	}

	.sec08 .column-medium {
		padding: 2rem;
	}

}


/*--------------------------------------
sec09
---------------------------------------*/
.sec09 {
	padding: 8rem 0 10rem 0;
}

.right-img-box {
	display: flow-root;
}

.right-img {
	width: 40%;
	margin-left: var(--s3);
	padding-bottom: var(--s1);
	float: right;
}

.right-img-catch {
	margin-bottom: 1.6rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--site-color02);
	text-align: center;
}

.sec09 .l-grid-three {
	margin: 6rem auto;
}

.sec09 .l-grid-three .column-small {
	padding: 1.8rem;
	background: #ececec;
	box-shadow: none;
	position: relative;
}
.sec09 .m-title02 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: 1;
}
.sec09 .l-grid-three .column-small:hover {
	opacity: 0.7;
	cursor: pointer;
}

.sec09 .m-title02 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.5rem 0;
	padding: 1.5rem;
	background: #0f3fa3;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec09 .m-title02 a {
	display: block;
	width: 100%;
	padding: 0 2rem 0 0;
	background: url(img/arrow03-white.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

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

	.sec09 {
		padding: 4rem 0 5rem 0;
	}

	.sec09 .l-grid-three {
		margin: 4rem auto;
	}

	.right-img {
		width: 90%;
		padding-bottom: var(--s2);
		float: inherit;
		text-align: center;
		margin: 0 auto;
	}

}

@media screen and (max-width: 1700px) and (min-width: 768px) {
	.mainvisual .mv-sitename::before {
		width: 36vw;
		height: 26vw;
		left: calc(100% + 3vw);
		top: 9vw;
	}
}
