@charset "utf-8";

/* ---------------------------------------------
navigation02 ※TOP、下層共通
--------------------------------------------- */
.header-area-upper {
	padding: 0.5rem 1rem;
	text-align: right;
}

.header-title {
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
}

.header-title::before {
	display: inline-block;
	width: 2.8rem;
	height: 1.8rem;
	margin: 0 0.5rem 0 0;
	background: #111;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.7rem;
	text-align: center;
	content: "PR";
}

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

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

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

	.header-title {
		font-size: 1.2rem;
		text-align: left;
	}

	.header-title::before {
		width: 2.4rem;
		height: 1.6rem;
		font-size: 1.2rem;
		line-height: 1.5rem;
	}

}

.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: #8b805b;
	display: block;
	position: fixed;
	top: 3.5rem;
	right: 0;
	z-index: 200;
	cursor: pointer;
}

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

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

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

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

.gnavi-btn.is-active span:nth-of-type(1) {
	transform: translateY(1.6rem) 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.6rem) rotate(45deg);
}

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

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

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

.gnavi-btn-close__inner::after {
	content: "";
	width: 2rem;
	height: 0.3rem;
	background: #707070;
	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: #f8f8f8;
	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 {
	min-height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
}

.gnavi-pc {
	display: none;
}

.gnavi-list {
	border-bottom: 1px solid #b6b6b6;
	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) 3.5rem var(--s2) var(--s2);
	border-top: 1px solid #b6b6b6;
	display: block;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	position: relative;
}

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

.gnavi-list__link--toggle::after {
	background-image: url(img/arrow01-gold-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) 3.5rem 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-title {
		min-height: 3rem;
	}

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

	.gnavi-btn span {
		width: 3.2rem;
		height: 0.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: 82rem;
	margin: 5rem auto;
	background-color: #f5f5f5;
	counter-reset: indexnumber 0;
}

.onb-index01-wrap {
	margin: 0 auto;
	padding: var(--s1) var(--s3);
	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 {
	margin: 1rem 0 0 0;
	padding: var(--s2) var(--s2) var(--s2) var(--s4);
	border-top: 1px solid #111;
}

.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: -2.8rem;
}

.onb-index01-chapter-h-two::before {
	top: 1.4rem;
	transform: translateY(-50%);
	color: #8b805b;
	font-weight: 700;
	content: counter(indexnumber, decimal-leading-zero);
	counter-increment: indexnumber 1;
}

.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 {
		padding: 1.5rem;
		font-size: 1.8rem;
	}

	.onb-index01-chapter {
		margin: 0 1rem;
	}

}


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

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

.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;
	background-color: #c5b67f;
	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 {
	width: 26rem;
	border: 2px solid #707070;
	background: #fff;
	border-radius: 6rem;
	padding: 1.5rem 5rem 1.5rem 3rem;
	position: relative;
	color: #707070;
}

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

.related-article01-btn::after {
	content: "";
	width: 0.2rem;
	height: 1.6rem;
	background: #707070;
	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: 1.5rem;
	}

	.related-article01-title {
		margin: 0 0 1.5rem 0;
		padding: 0 0 0.8rem 0;
		font-size: 1.8rem;
	}

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

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

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

/* ---------------------------------------------
アコーディオン
--------------------------------------------- */
.acc-more-btn {
	max-width: 46rem;
	width: 100%;
	margin: var(--s5) auto;
	position: relative;
}

.acc-more-btn span {
	width: 100%;
	padding: 2rem 6rem 2rem 3rem;
	border: .2rem solid var(--site-color05);
	border-radius: 4rem;
	background: url('./img/acc-off.svg') no-repeat 95% center #fff;
	display: block;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}

.acc-more-btn::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--site-color03);
	border-width: 0 1px 1px 0;
	transform: translate(.8rem, .8rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.acc-more-btn:hover span {
	transform: translate(.8rem, .8rem);
}

.acc-more-btn.is-open span {
	background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}

.more-content {
	display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn {
		margin-right: var(--s1);
	}

	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}

	.acc-more-btn:hover span {
		transform: none;
	}
}

/*------------------------------------------
    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);
	}
}

.onb-icon-title-frame {
	padding: var(--s4);
	background-color: var(--site-color03);
	position: relative;
}

.onb-icon-title-icon {
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: -4rem;
	left: 0;
}

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

.onb-icon-title {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
}

.onb-icon-title .underline {
	border-bottom: 5px solid var(--site-color15);
}

.onb-icon-title small {
	font-size: 2.1rem;
	border: none;
}

.onb-icon-title-catch {
	margin-bottom: .8rem;
	font-size: 1.8rem;
	display: block;
	line-height: 1.4;
	border: none;
}

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

	.onb-icon-title {
		font-size: 2.4rem;
	}

	.onb-icon-title small {
		font-size: 1.6rem;
	}

	.onb-icon-title-catch {
		padding-left: var(--s4);
		font-size: 1.4rem;
	}

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

.onb-center-img {
	max-width: 64%;
	margin: 0 auto;
	text-align: center;
}

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


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

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

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

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

.twb-iconbox01-bg-colored {
	padding-top: 4rem;
}

.twb-iconbox01-area {
	padding: var(--s2);
	background-color: var(--site-color06);
	position: relative;
}

.twb-iconbox01-image {
	width: 10rem;
	height: 10rem;
	position: absolute;
	top: -3.2rem;
	left: -1.6rem;
}

.twb-iconbox01-title {
	padding-left: var(--s9);
	padding-bottom: var(--s2);
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	border-bottom: 1px solid var(--site-color03);
}

.twb-iconbox01-title span {
	margin-bottom: var(--s1);
	font-size: 1.4rem;
	line-height: 1.4;
	display: block;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.twb-iconbox01-image {
		width: 8rem;
		height: 8rem;
		top: -1.6rem;
	}

	.twb-iconbox01-title {
		padding-left: var(--s7);
	}
}


/*------------------------------------------
    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);
	}
}


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

.icon-title-area {
	background-color: var(--site-color03);
	position: relative;
}

.icon-title-obj-r {
	width: 11rem;
	height: 11rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #DEDEDE;
	color: var(--site-color03);
	border-radius: 11rem;
	position: absolute;
	top: -.8rem;
	left: -.8rem;
}

.icon-title-obj-r__inner {
	text-align: center;
	font-weight: 700;
}

.icon-title-r {
	padding: 1.6rem 1.6rem 1.6rem 12rem;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
}

.icon-title-small {
	font-size: 1.4rem;
}

.thb-taglist-title {
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.4;
}

.thb-tag-list-2c {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s1);
}

.thb-tag-list-2c li {
	width: calc((100% - var(--s1))/ 2);
	padding: var(--s1);
	text-align: center;
	line-height: 1.4;
}

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

.thb-tag-colored {
	background-color: var(--site-color14);
	color: #fff;
}

.thb-tag-white {
	border: 1px solid var(--site-color16);
	background-color: #fff;
	color: var(--site-color16);
}

.thb-tag-colored .tag-name,
.thb-tag-white .tag-name {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thb-table {
	line-height: 1.4;
	border-collapse: collapse;
	border: 1px solid #D3D3D3;
}

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

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

.twb-title-catch {
	padding: .8rem .8rem 1.6rem .8rem;
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	line-height: 1.4;
	border-bottom: 5px solid rgba(var(--site-color05-rgb), .5);
}

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

.section-title04 {
	margin-top: 5rem;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	position: relative;
}

.section-title04::after {
	content: "";
	width: 10rem;
	height: 6px;
	background-color: var(--site-color05);
	transform: translateX(-50%);
	position: absolute;
	bottom: -3.2rem;
	left: 50%;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.section-title04 {
		font-size: 2.8rem;
		line-height: 1.4;
	}
}

.onb-conclusion-box-frame {
	margin: 5rem 0;
	padding: 3.5rem 5rem 1.5rem 5rem;
	background: #faf9fa url(img/conclusion-bg-01.jpg) no-repeat center bottom;
	background-size: cover;
	border: 1px solid #8b805b;
}

.onb-conclusion-box-ttl {
	position: relative;
	margin: 0 0 3.5rem 0;
	padding: 2rem 2rem 2rem 9rem;
	background: #fff;
}

.onb-conclusion-box-ttl__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: -3.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 10rem;
	height: 10rem;
	background: #8d0c0c;
	border-radius: 50%;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	z-index: 5;
}

.onb-conclusion-box-ttl__text {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}

.onb-conclusion-floatimg {
	text-align: center;
}

.l-onb-conclusion-img {
	width: 20%;
	text-align: center;
}

.l-onb-conclusion-img img {
	max-width: 100%;
}

.onb-onb-conclusion-box-imgcap {
	margin-top: var(--s1);
	text-align: center;
	font-size: 1.2rem;
}

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

	.onb-conclusion-box-frame {
		margin: 4rem 0;
		padding: 1.5rem;
	}

	.onb-conclusion-box-ttl {
		margin: 0 0 1.5rem 0;
		padding: 1.5rem 1.5rem 1.5rem 7rem;
	}

	.onb-conclusion-box-ttl__icon {
		left: -1rem;
		width: 6.4rem;
		height: 6.4rem;
		font-size: 1.6rem;
	}

	.onb-conclusion-box-ttl__text {
		font-size: 2rem;
	}

}


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

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

.mainvisual .mv-sitename {
	position: relative;
	width: 60rem;
	margin: 0 0 2rem 0;
	padding: 4rem 0 0 0;
}

.mainvisual .mv-sitename::before {
	position: absolute;
	left: calc(100% + 2rem);
	top: 0;
	width: 74.2rem;
	height: 54rem;
	background: url(img/za-nac-00002276-mv-bg-02.png) no-repeat left top;
	background-size: contain;
	content: "";
}

.mainvisual .mv-title {
	font-family: var(--serif);
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.4;
}

.mainvisual .mv-title span {
	color: #8b805b;
}

.mainvisual .mv-txt {
	width: 60rem;
	padding: 0 0 4rem 0;
}

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

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

	.mainvisual {
		position: relative;
		background: #fefefe url(img/mv-bg-03.jpg) no-repeat center bottom;
		background-size: 100% auto;
	}

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

	.mainvisual .mv-sitename {
		width: 100%;
		margin: 0 0 1.5rem 0;
		padding: 66% 0 0 0;
		background: url(img/za-nac-00002276-mv-bg-02.png) no-repeat center top 1rem;
		background-size: 80% auto;
	}

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

	.mainvisual .mv-title {
		font-size: 2.8rem;
	}

	.mainvisual .mv-txt {
		width: 100%;
		padding: 0 0 2.5rem 0;
	}

}


/*--------------------------------------
mainvisual-lower
---------------------------------------*/
.mainvisual-lower .mv-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 18rem;
	background: #373636 url(img/za-nac-00002276-mv-bg-04.jpg) no-repeat right center;
	background-size: cover;
	text-align: center;
}

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

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

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

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

}


/*--------------------------------------
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: #fff;
	border: 2px solid var(--site-color13);
	border-radius: 6rem;
	color: var(--site-color13);
	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: var(--site-color13);
	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: var(--site-color13);
	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: 22rem;
	padding: 0.8rem 0.5rem 2.8rem 0.5rem;
	background: #4f4a35 url(img/za-nac-00002276-banner-bg-01.png) no-repeat center bottom;
	background-size: cover;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
}

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

.fix-banner01 a span {
	font-size: 2.1rem;
	line-height: 1.2;
}

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

	.fix-banner01 {
		bottom: 0;
	}

	.fix-banner01 a {
		width: 18rem;
		height: 8rem;
		padding: 0.5rem 0.5rem 1.8rem 0.5rem;
		font-size: 1.2rem;
	}

	.fix-banner01 a span {
		font-size: 1.6rem;
	}

}


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

.section-title02-frame {
	position: relative;
	margin: 0 0 5rem 0;
	text-align: center;
}

.section-title02 {
	font-family: var(--serif);
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.6;
}

.section-title02 a {
	display: inline-block;
	padding: 0 5rem;
	background: url(img/arrow01-gold.svg) no-repeat right center;
	background-size: 1.5rem auto;
	color: inherit;
	text-decoration: none;
}

.section-title02-sub {
	position: relative;
	display: inline-block;
	margin: 0 0 1rem 0;
	color: #c5b67f;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
}

.section-title02-sub::before {
	position: absolute;
	left: calc(100% + 1.2rem);
	top: 50%;
	transform: translateY(-50%);
	width: 15.6rem;
	height: 0.1rem;
	border-bottom: 1px solid #c5b67f;
	content: "";
}

.section-title02-sub::after {
	position: absolute;
	right: calc(100% + 1.2rem);
	top: 50%;
	transform: translateY(-50%);
	width: 15.6rem;
	height: 0.1rem;
	border-bottom: 1px solid #c5b67f;
	content: "";
}

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;
}

span.normal {
	font-weight: 400;
}


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

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

	.section-title02-frame {
		margin: 0 0 3rem 0;
	}

	.section-title02 {
		font-size: 2.4rem;
		line-height: 1.4;
	}

	.section-title02 a {
		display: block;
		padding: 0 2rem 0 0;
		background-size: 1.2rem auto;
	}

	.section-title02-sub {
		font-size: 1.8rem;
	}

	.section-title02-sub::before {
		width: 5rem;
	}

	.section-title02-sub::after {
		width: 5rem;
	}

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

}


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

.sec01 p.note {
	margin: 2rem 1.5rem 0 1.5rem;
	font-size: 1.4rem;
}

.simplified-chart-spfix-cpt {
	display: none;
}

.simplified-chart-spfix {
	table-layout: fixed;
	width: 100%;
	min-width: 100rem;
	border: none;
	border-collapse: collapse;
}

.simplified-chart-spfix th,
.simplified-chart-spfix td {
	padding: 1.5rem 1rem;
	border: 1px solid #888;
	line-height: 1.4;
}

.simplified-chart-spfix td.blank {
	width: 11rem;
	background: none;
	border: none;
}

.simplified-chart-spfix th[scope="col"] {
	width: calc((100% - 11rem) / 4);
	background: #202020;
	color: #fff;
	font-size: 2.4rem;
}

.simplified-chart-spfix th[scope="row"] {
	width: 11rem;
	background: #545454;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
}

.simplified-chart-spfix td {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

.simplified-chart-spfix td span:not([class]) {
	font-size: 3.2rem;
}

.simplified-chart-spfix td.first {
	background: #f8f1d9;
}

.simplified-chart-spfix td.first div {
	display: inline-block;
	padding: 0 0 0 5rem;
	background: url(img/sec01-bg-02.png) no-repeat left center;
	background-size: 45px auto;
}

.simplified-chart-spfix ul {
	padding: 0 0.5rem 0 1rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: left;
}

.simplified-chart-spfix ul:not([class]) li {
	margin: 0;
}

.simplified-chart-spfix ul:not([class]) li::before {
	top: 0.7rem;
}

.simplified-chart-spfix .btn-web {
	margin: 0 auto;
}

.simplified-chart-spfix .btn-web a {
	min-height: auto;
	padding: 1.5rem 4.5rem 1.5rem 3rem;
	font-size: 2rem;
}

.simplified-chart-spfix tr:last-child td {
	vertical-align: top;
}

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

	.sec01 {
		padding: 4rem 0;
	}

	.sec01 p.note {
		margin: 1.5rem 0 0 0;
		font-size: 1.2rem;
	}

	.simplified-chart-spfix-cpt {
		display: block;
		margin: 0 0 1rem 0;
		padding: 0.6rem 1rem;
		border: 1px solid #ccc;
		border-radius: 4rem;
		font-size: 1.2rem;
		line-height: 1.4;
		text-align: center;
	}

	.simplified-chart-spfix {
		min-width: 86rem;
	}

	.simplified-chart-spfix th,
	.simplified-chart-spfix td {
		padding: 1rem;
	}

	.simplified-chart-spfix td.blank {
		width: 8rem;
	}

	.simplified-chart-spfix th[scope="col"] {
		width: calc((100% - 8rem) / 4);
		font-size: 2rem;
	}

	.simplified-chart-spfix th[scope="row"] {
		position: sticky;
		left: 0;
		width: 8rem;
		padding: 1rem 0.4rem;
		font-size: 1.5rem;
		z-index: 10;
	}

	.simplified-chart-spfix td {
		font-size: 1.6rem;
	}

	.simplified-chart-spfix td span:not([class]) {
		font-size: 2.4rem;
	}

	.simplified-chart-spfix ul {
		padding: 0;
		font-size: 1.5rem;
		text-align: left;
	}

	.simplified-chart-spfix ul:not([class]) li {
		margin: 0;
	}

	.simplified-chart-spfix ul:not([class]) li::before {
		top: 0.4rem;
	}

	.simplified-chart-spfix .btn-web {
		max-width: 100%;
	}

	.simplified-chart-spfix .btn-web a {
		min-height: auto;
		padding: 1.5rem 3.5rem 1.5rem 2rem;
		font-size: 1.6rem;
	}

	.simplified-chart-spfix .btn-tel {
		max-width: calc(100% + 2.4rem);
		margin: 0.5rem 0 2rem -2.4rem;
	}

	.simplified-chart-spfix li:last-child .btn-tel {
		margin: 0.5rem 0 0.5rem -2.4rem;
	}

	.simplified-chart-spfix .btn-tel a {
		padding: 1.5rem 1.8rem 1.5rem 3.2rem;
		background-position: left 1.2rem center;
		background-size: 1.8rem auto, auto;
		font-size: 1.5rem;
	}

}


/*--------------------------------------
sec02
---------------------------------------*/
.sec02 {
	padding: 8rem 0 10rem 0;
	background: #fcf7ee url(img/sec02-bg-01.jpg) repeat-y center top;
	background-size: 100% auto;
	background-attachment: fixed;
}

.sec02 .section-title02 {
	font-size: 3.5rem;
}

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

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

.sec02 .name {
	position: relative;
	padding: 3rem;
	background: #202020;
	border-top: 2px solid #fff;
	color: #fff;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec02 .name::before {
	position: absolute;
	left: -0.4rem;
	top: -0.4rem;
	width: 4rem;
	height: 4rem;
	border-left: 1rem solid #b8b8b8;
	border-top: 1rem solid #b8b8b8;
	content: "";
}

.sec02 .name::after {
	position: absolute;
	right: -0.4rem;
	bottom: -0.4rem;
	width: 4rem;
	height: 4rem;
	border-right: 1rem solid #b8b8b8;
	border-bottom: 1rem solid #b8b8b8;
	content: "";
}

.sec02 .inner {
	padding: 6rem 5rem 6rem 5rem;
}

.sec02 .onb-m-title5 {
	margin: 6rem 0 3rem 0;
	font-size: 2.6rem;
	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: 0.1rem;
	border-bottom: 1px solid var(--site-color13);
	content: "";
}

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

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

.sec02 .onb-m-title6 {
	margin: 5rem 0 3rem 0;
	padding: 0 0 0 1.5rem;
	border-left: 6px solid #8b805b;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec02 .table-commission table {
	width: 52%;
	margin: 0 auto;
}

.sec02 .table-commission table td {
	width: 50%;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.sec02 ul:not([class]) {
	display: flex;
	flex-wrap: wrap;
}

.sec02 ul:not([class]) li {
	width: 25%;
	padding: 0 1.5rem 0 2.4rem;
	font-weight: 700;
}

.sec02 ol:not([class]) li {
	display: inline-block;
	padding: 0 2rem 0 2.8rem;
	font-weight: 700;
}

.block-service {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.block-service .box {
	width: calc((100% - 3rem) / 2);
	padding: 2.5rem;
	background: #f9f9f9 url(img/sec02-bg-02.jpg) no-repeat right center;
	background-size: cover;
}

.block-service .box-head {
	display: flex;
	align-items: center;
}

.block-service .box .ttl {
	margin: 0 0 1.5rem 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}

.block-service .box .caption {
	text-align: left;
}

.onb-iconbox02-frame {
	padding: var(--s4);
	background: #fafafa url(img/sec02-bg-03.jpg) no-repeat center bottom;
	background-size: cover;
}

.onb-iconbox02-catch {
	display: flex;
	align-items: center;
	min-height: 4rem;
	padding: 0 0 0.6rem 4.2rem;
	background: url(img/title-bg-02.png) no-repeat left center;
	background-size: 32px auto;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

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

.block-store {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.block-store .box {
	width: calc((100% - 4rem) / 2);
}

.block-store .box table th {
	width: 10rem;
}

.table-info table th {
	width: 20rem;
}

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

	.sec02 {
		padding: 4rem 0;
		background-size: 120% auto;
	}

	.sec02 .section-title02 {
		font-size: 2.4rem;
	}

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

	.sec02 .name {
		padding: 1.5rem;
		font-size: 2.1rem;
	}

	.sec02 .name::before {
		left: -0.3rem;
		top: -0.3rem;
		width: 3rem;
		height: 3rem;
		border-left: 6px solid #b8b8b8;
		border-top: 6px solid #b8b8b8;
	}

	.sec02 .name::after {
		right: -0.3rem;
		bottom: -0.3rem;
		width: 3rem;
		height: 3rem;
		border-right: 6px solid #b8b8b8;
		border-bottom: 6px solid #b8b8b8;
	}

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

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

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

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

	.sec02 .onb-m-title6 {
		margin: 4rem 0 2rem 0;
		padding: 0 0 0 1rem;
		font-size: 1.8rem;
	}

	.sec02 .table-commission table {
		width: 80%;
	}

	.sec02 .table-commission table td {
		width: 100%;
		font-size: 1.6rem;
	}

	.sec02 ul:not([class]) {
		display: block;
	}

	.sec02 ul:not([class]) li {
		width: 100%;
		padding: 0 0 0 2.4rem;
	}

	.sec02 ul:not([class]) li .btn-tel {
		max-width: calc(90% + 2.4rem);
		margin: 1rem auto 2rem -1.2rem;
	}

	.sec02 ol:not([class]) li {
		display: block;
		padding: 0 0 0 2.8rem;
	}

	.block-service {
		display: block;
	}

	.block-service .box {
		width: 100%;
		margin: 0 0 2rem 0;
		padding: 2rem;
	}

	.block-service .box .ttl {
		font-size: 1.8rem;
	}

	.onb-iconbox02-frame {
		padding: 2rem;
	}

	.onb-iconbox02-catch {
		font-size: 1.8rem;
	}

	.block-store {
		display: block;
	}

	.block-store .box {
		width: 100%;
	}

	.block-store .box table th {
		width: 100%;
	}

	.table-info table th {
		width: 100%;
	}

}


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

.sec03 .section-title02,
.sec03 p.lead {
	color: #fff;
}

.summary-box-r {
	margin: 0 0 4rem 0;
	padding: 3rem;
	background: rgba(255, 255, 255, 0.8);
	background-size: cover;
}

.summary-box-r:last-child {
	margin: 0;
}

.summary-box-r-catch {
	margin: 0 0 1rem 0;
	padding: 0 0 1rem 0;
	border-bottom: 1px solid #747474;
	color: #111;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}

.summary-box-r p {
	color: #111;
}

.summary-box-r p span:not([class]),
.summary-box-r p .marker,
.summary-box-r p .txt_bold {
	color: #8d0c0c;
	font-weight: 700;
}

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

	.sec03 {
		padding: 4rem 0;
	}

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

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

}


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

.section-title06-frame {
	position: relative;
	margin: 0 0 4rem 0;
	padding: 4rem 2rem 4.5rem 0;
}

.section-title06-frame::after {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(((100vw - 100rem) / 2) + 100rem);
	height: 100%;
	background: url(img/za-nac-00002276-sec04-bg-01.png) no-repeat right center, -webkit-linear-gradient(90deg, rgba(128, 128, 128, 1) 0%, rgba(38, 37, 37, 1) 50%);
	background: url(img/za-nac-00002276-sec04-bg-01.png) no-repeat right center, linear-gradient(90deg, rgba(128, 128, 128, 1) 0%, rgba(38, 37, 37, 1) 50%);
	background-size: auto 100%, auto;
	content: "";
	z-index: -1;
}

.section-title06 {
	color: #fff;
	font-family: var(--serif);
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.4;
}

.section-title06 a {
	display: inline-block;
	padding: 0 5rem 0 0;
	background: url(img/arrow01-gold.svg) no-repeat right center;
	background-size: 16px auto;
	color: inherit;
	text-decoration: none;
}

.sec04 .column-small {
	margin: 0 0 1rem 0;
	padding: 1.5rem;
	border: 1px solid #bbb;
}

.sec04 .column-small .ttl {
	display: flex;
	align-items: center;
	margin: 0 0 2rem 0;
	padding: 1.5rem;
	background: #303030;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec04 .column-small .ttl a {
	display: block;
	width: 100%;
	padding: 0 1.5rem 0 0;
	background: url(img/arrow01-gold.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

.sec04 .column-small .tags {
	margin: 0 0 1rem 0;
}

.sec04 .column-small .tags .tag {
	display: inline-block;
	margin: 0 0.5rem 0.5rem 0;
	padding: 0.4rem 0.8rem;
	background: #8b805b;
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec04 .column-small table {
	margin: 1.5rem 0 1.5rem 0;
}

.sec04 .column-small table th,
.sec04 .column-small table td {
	padding: 1rem;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.sec04 .column-small ul:not([class]) span {
	font-weight: 700;
}

.sec04 .column-small .link {
	margin: 2rem 0 0 0;
	text-align: right;
}

.sec04 .column-small .link a {
	display: inline-block;
	margin: 0;
	padding: 0.1rem 1.8rem 0.2rem 0;
	background: url(img/arrow01-gold.svg) no-repeat right center;
	background-size: 1rem auto;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: underline;
}

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

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

	.sec04 {
		padding: 5rem 0;
	}

	.section-title06-frame {
		position: relative;
		margin: 0 0 3rem 0;
		padding: 2rem 1.5rem;
	}

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

	.section-title06 a {
		padding: 0 3rem 0 0;
		background-size: 12px auto;
	}

	.sec04 .column-small .ttl {
		font-size: 2rem;
	}

}


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

.sec05::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	background: #f6f6f6;
	content: "";
	z-index: -2;
}

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

	.sec05 {
		padding: 5rem 0 2rem 0;
	}

}


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

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

	.sec06 {
		padding: 5rem 0 2rem 0;
	}

}


/*--------------------------------------
sec07
---------------------------------------*/
.sec07 {
	padding: 8rem 0 10rem 0;
	background: #e8e8e8 url(img/sec07-bg-01.jpg) repeat-y center top;
	background-size: 100% auto;
}

.sec07 .title {
	margin: 7rem 0 3.5rem 0;
	padding: 0 0 1rem 3rem;
	border-bottom: 1px solid var(--site-color13);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec07 .title a {
	display: inline-block;
	padding: 0 3rem 0 0;
	background: url(img/arrow01-gold.svg) no-repeat right center;
	background-size: 1.2rem auto;
	color: inherit;
	text-decoration: none;
}

.sec07 .block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sec07 .block .box {
	width: calc((100% - 4rem) / 2);
	padding: 2.5rem;
	background: #fff;
}

.sec07 .block .box-head {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.5rem 0;
}

.sec07 .block .box-head .ttl {
	width: 100%;
	color: #8b805b;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

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

	.sec07 {
		padding: 4rem 0;
		background-size: 120% auto;
	}

	.sec07 .title {
		margin: 5rem 0 2rem 0;
		padding: 0 0 0.8rem 0;
		font-size: 2rem;
	}

	.sec07 .title a {
		display: block;
		padding: 0 1.5rem 0 0;
		background-size: 1rem auto;
	}

	.sec07 .block {
		display: block;
	}

	.sec07 .block .box {
		width: 100%;
		margin: 0 0 2.5rem 0;
		padding: 2rem;
	}

	.sec07 .block .box-head .ttl {
		font-size: 2rem;
	}

}

/* 手数料テーブルの No.1（0円）装飾 */
.table-commission td.first div {
	display: inline-block;
	padding: 0 0 0 5rem;
	background: url(img/sec01-bg-02.png) no-repeat left center;
	background-size: 45px auto;
}

.table-commission td.first {
	background: #f8f1d9;
}