@charset "utf-8";

/*
---------------------------------------------
		navigation03 ※TOP、下層共通
*/
.header-area {
	width: 20rem;
	height: 100vh;
	padding: var(--s1);
	background: #fff;
	border-right: 1px solid var(--site-color09);
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.header-logo {
    width: 10rem;
    margin: var(--s2) auto 0;
    text-align: center;
}

.header-logo a:hover {
	opacity: .7;
}

.header-logo__img {
	width: 100%;
	max-width: inherit;
}

.header-logo__link {
	display: block;
}

.header-logo__link:hover {
	opacity: 0.6;
}

.header-title {
    margin-bottom: var(--s2);
    margin-left: 2.4rem;
    font-size: 1.1rem;
    position: relative;
    line-height: 1.4;
}

.header-title::before {
	content: "PR";
	padding: .2rem;
	color: #fff;
	background-color: #333;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: -2.4rem;
}

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

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

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

.gnavi-area {
	display: none;
}

.toggle-content {
	display: none;
}

.gnavi-pc-list {
	position: relative;
}

.gnavi-pc-list__item {
	padding-left: 0;
}

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

.gnavi-pc-list__link {
	width: 100%;
	margin: 0 auto;
	padding: var(--s2) var(--s2) var(--s2) var(--s4);
	border-top: 1px solid var(--site-color09);
	display: block;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	background: url("./img/arrow01-green.svg") no-repeat left var(--s1) center/1rem auto;
}

.gnavi-pc-list__link:hover {
	opacity: 0.6;
}
.mainvisual-lower .header-logo {
    display: none;
}

/*------------------------------------------
 Global menu settings
*/
.navigation01-menu-area {
	background-color: var(--site-color09);
}

.navigation01-menu {
	display: flex;
	background-color: #fff;
}

.navigation01-menu li::before {
	display: none;
}

.navigation01-menu li a {
	padding: var(--s2) var(--s1);
	display: block;
	text-decoration: none;
}

.navigation01-menu li a:hover {
	opacity: .6;
}

/* ナビゲーション分の余白設定 */
.contents-area,
.footer-area {
	margin-left: 20rem;
}

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

	.mainvisual-lower .header-logo {
        display: block;
        width: 8rem;
        margin: 0 auto;
    }

	.gnavi-pc {
		display: none;
	}

	.header-area {
		width: 100%;
		height: auto;
		padding: var(--s1);
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		background-color: transparent;
		border: none;
		overflow-x: visible;
		overflow-y: visible;
		position: static;
		background: #eff5f6;
	}

	.header-logo {
		display: none;
	}

	.header-area-upper {
		padding: 0 0.5rem 0.5rem 0.5rem;
		text-align: left;
	}

	.header-title {
		display: inline-block;
		margin-bottom: 0;
	}

	.gnavi-ctrl {
		display: block;
		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: var(--s7);
		height: var(--s7);
		background: var(--site-color01);
		border-radius: 50%;
		display: block;
		position: fixed;
		top: var(--s3);
		right: var(--s1);
		z-index: 200;
		cursor: pointer;
	}

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

	.gnavi-btn span {
		width: var(--s4);
		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: 2rem;
	}

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

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

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

	.gnavi-btn-close {
		width: 70%;
		margin: 0 auto;
		padding: var(--s2);
		background: #fff;
		border: 1px solid var(--site-color05);
		border-radius: 6rem;
		display: block;
		text-align: center;
	}

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

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

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

	.gnavi-area {
		width: 100%;
		height: 100vh;
		padding: var(--s3) var(--s1) var(--s10);
		display: block;
		background: #eff5f6;
		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: var(--s6);
		margin: 0 var(--s8);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.6rem;
		font-weight: 700;
		text-align: center;
		line-height: 1.5;
	}

	.gnavi-pc {
		display: none;
	}

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

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

	.gnavi-list__link--toggle::after {
		background-image: url("img/arrow01-green-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) var(--s4) 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);
	}

	/*------------------------------------------
	Global menu settings
	*/
	.navigation01-menu-area {
		display: none;
	}

	/* ナビゲーション分の余白設定 */
	.contents-area,
	.footer-area {
		margin-left: 0;
	}
}

/* ---------------------------------------------
index01(目次)
--------------------------------------------- */
.onb-index01-frame {
	width: 100%;
	background: #eff5f6;
	border-radius: 1.6rem;
	counter-reset: number 0;
	margin: 2rem auto;
}

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

.onb-index01-title {
	padding: var(--s2) var(--s2) var(--s2) var(--s3);
	color: #333;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
	position: relative;
	cursor: pointer;
}

.onb-index01-title::before {
	content: "";
	position: absolute;
	display: block;
	background: var(--site-color01);
	border-radius: 15px;
	width: 7px;
	height: 28px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.onb-index01-title::after {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	background: url('./img/accordion-plus.svg') no-repeat 0 0 /100% auto;
	position: absolute;
	top: 50%;
	right: 1.8rem;
	transform: translate(0, -50%);
}

.onb-index01-title.is-open::after {
	background-image: url('./img/accordion-minus.svg');
}

.onb-index01-chapter {
	padding: var(--s2) var(--s2) var(--s2) var(--s4);
	font-weight: 700;
	border-top: 2px dotted var(--site-color01);
}

.onb-index01-chapter-h {
	margin: 0 0 0 var(--s2);
	font-size: 100%;
	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 {
	top: 0.4rem;
	color: var(--site-color01);
	font-weight: 700;
	line-height: 1.1;
	content: counter(number, decimal-leading-zero);
	counter-increment: number 1;
}

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

.more-content {
	display: none;
}

.onb-index01-content {
	background-color: #eff5f6;
	margin-top: 1rem;
}


@media screen and (max-width: 767px) {
	.onb-index01-wrap {
		padding: var(--s1) var(--s2);
	}

	.onb-index01-title {
		padding: var(--s1) var(--s1) var(--s1) var(--s3);
	}

	.onb-index01-chapter {
		padding: var(--s2) var(--s1);
	}
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
	border: 1px solid var(--site-color05);
	border-radius: 1.2rem;
	margin: var(--s6) auto;
	padding: var(--s1) var(--s3) var(--s4) var(--s3);
	background: #fff;
	position: relative;
}

.related-article01-title {
	padding: var(--s2) var(--s2) var(--s2) 0;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.1;
	position: relative;
	border-bottom: 2px dotted var(--site-color02);
}

.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.4rem;
	height: 1.4rem;
	border-radius: 50%;
	background-color: var(--site-color01);
	position: absolute;
	top: .7rem;
	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 40%);
	background-color: transparent;
	width: 100%;
	height: 50%;
	position: absolute;
	bottom: 1rem;
	left: 0;
	padding: 2rem 0;
}


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

.related-article01-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 22rem;

	padding: 1.8rem 5rem;
	background: #eff5f6;
	border: 1px solid var(--site-color05);
	border-radius: 6rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	transition: 0.2s;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.related-article01-btn::after {
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 2rem;
	height: 2rem;
	background: url(img/accordion-plus.svg) no-repeat left top;
	background-size: contain;
	content: "";
	transform: translate(0, -50%);
	z-index: 2;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.related-article01-frame {
		margin: var(--s2) auto 0;
	}
	.related-article01-list {
		padding: 0;
		margin-top: 1rem;
	}

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

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


/* --------------banner--------------  */
.sp-fix-banner01 {
	display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.sp-fix-banner01 {
		display: flex;
		align-items: center;
		position: fixed;
		right: 0;
		bottom: 0;
		width: 80%;
		background: var(--site-color02);
		border-radius: 2rem 0 0 0;
		z-index: 50;
	}

	.sp-fix-banner01 a {
		display: block;
		width: 100%;
		padding: 1.4rem 2rem 1.4rem 1.6rem;
		background: url(img/arrow01-white.svg) no-repeat right 1rem center;
		background-size: 0.8rem auto;
		color: #fff;
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1.4;
		text-decoration: none;

	}

	.sp-fix-banner01 a:hover {
		opacity: 0.7;
	}

	.sp-fix-banner01 a span {
		display: inline-block;
		margin: 0 0.8rem 0 0;
		padding: 0 0.3rem;
		background: #fff;
		border-radius: 0.3rem;
		color: var(--site-color02);
	}
}

/*------------------------------------------
	table
*/
.sp-scroll-table {
    display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.sp-scroll-table {
    display: block;
	}
}

/*------------------------------------------
    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-center-img {
	max-width: 64%;
	margin: 0 auto;
}

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


.onb-iconbox02-frame {
	padding: 3rem;
	background-color: #eff5f6;
	border-radius: 1.6rem;
}

.onb-iconbox02-catch {
	color: var(--site-color02);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-iconbox02-catch {
		font-size: 1.8rem;
	}
	.onb-iconbox02-frame {
		padding: var(--s2);
		gap: 0;
	}
}

.onb-casebox-01-frame {
	margin-top: 5rem;
	padding: var(--s4);
	background: #fff;
	border: 1px solid var(--site-color01);
	border-radius: 1.6rem;
	position: relative;
}

.onb-casebox-01-sub {
	padding: var(--s1) var(--s3);
	background-color: var(--site-color01);
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	border-radius: 1rem;
	transform: translateX(-50%);
	position: absolute;
	top: -2rem;
	left: 50%;
}

.l-onb-casebox-01 {
	width: 60%;
	margin: 1rem auto;
}

.onb-casebox-01-table th,
.onb-casebox-01-table td {
	padding: var(--s1) var(--s2);
}

.onb-casebox-01-table th {
	text-align: center;
}

.onb-casebox-01-catch {
	color: var(--site-color02);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 3rem;
}

.onb-casebox-01-caption {
	text-align: right;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-casebox-01-frame {
		padding: var(--s3) var(--s2);
        margin-top: 4rem;
		gap: 0;
	}

	.l-onb-casebox-01 {
		width: 100%;
	}

	.onb-casebox-01-table th,
	.onb-casebox-01-table td {
		padding: var(--s1);
	}

	.onb-casebox-01-sub,
	.onb-casebox-01-catch {
		font-size: 1.8rem;
	}
	.onb-casebox-01-catch {
		margin-top: 2rem;
	}
}

.acc-more-btn {
	max-width: 32rem;
	margin: 0 auto;
	position: relative;
}

.acc-more-btn span {
	width: 100%;
	margin: var(--s2) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: .1rem solid #707070;
	border-radius: 4rem;
	background: #FFEDAB url('./img/accordion-plus.svg') no-repeat 95% center;
	display: block;
	text-align: center;
	font-weight: 700;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}

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

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

.more-content {
	display: none;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.acc-more-btn span {
		transition: inherit;
		transform: none;
	}

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

.onb-listbox-area {
	margin: 2rem 0;
	padding: 3rem;
	background-color: #eff5f6;
	border-radius: 1.6rem;
}

.onb-listbox-title {
	color: var(--site-color02);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.onb-listbox-title span {
	padding: .8rem;
	background-color: #FFD22D;
	border-radius: 50vh;
	display: inline-block;
}

.onb-listbox-subtitle {
	text-align: center;
	font-weight: 700;
}

.onb-listbox-list {
	width: 100%;
}

.onb-listbox-list li {
	font-weight: 700;
	padding-left: var(--s4);
	line-height: 1.5;
	background: url('./img/icon-check.png') no-repeat top left;
	background-size: 2.4rem 2.4rem;
}

.onb-listbox-list li span {
	margin-right: var(--s1);
	display: block;
	text-align: center;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.onb-listbox-area {
		padding: var(--s2) var(--s2) var(--s2) var(--s2);
		gap: 0;
	}

	.onb-listbox-list li {
		font-size: 1.4rem;
	}

	.onb-listbox-list--three li {
		width: calc((100% - var(--s2)) / 2);
	}

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

/*------------------------------------------
    3box column settings
*/
.sec03 .section-title03,
.sec04 .section-title03 {
	margin: 0 0 5rem 0;
}

.column-small {
	padding: 0 var(--s2) var(--s3) var(--s2);
	background: #fff;
	border-radius: 1.6rem;
}

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

.arrow-title {
	margin: 0 0 1.5rem 0;
	padding: var(--s2) var(--s1);
	font-size: 1.8rem;
	font-weight: 700;
	background-color: var(--site-color02);
	border-radius: 1.6rem;
	text-align: center;
	line-height: 1.4;
	position: relative;
	color: #fff;
	top: -1rem;
}

.arrow-title::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.8rem solid transparent;
	border-left: 0.8rem solid transparent;
	border-right: 0.8rem solid var(--site-color02);
	border-bottom: 0.8rem solid var(--site-color02);
	transform: translateX(-50%) rotate(45deg);
	position: absolute;
	left: 50%;
	top: calc(100% - 1rem);
}

.thb-m-title04-frame {
	position: relative;
}

.thb-m-title04-sub {
	display: block;
	margin: 0 0 2rem 0;
	padding: 1rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	background-color: var(--site-color01);
	border-radius: 1rem;
}

.thb-m-title04-sub span {
	border-bottom: 2px solid #dead0e;
}

.thb-m-title04 {
	display: block;
	margin: 0 0 1.5rem 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
}

.thb-m-title04 span {
	font-size: 1.4rem;
}

.m-title01 {
	margin: 1.5rem 0 0 0;
	padding: 1rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	background: #eff5f6;
	border-radius: 1rem;
}

.thb-table {
	margin: 2rem 0 0 0;
}

.thb-table th {
	width: 60%;
	text-align: center;
}

.thb-table td {
	width: 40%;
	text-align: center;
}


.btn-wrapper .btn-internal,
.btn-wrapper .btn-web {
	margin: 3rem auto 0 auto;
}


.section-title06-frame {
	margin-top: 5rem;
	position: relative;
}

.section-title06-frame::after {
	content: "";
	width: 100vw;
	height: 100%;
	background-color: #C9ECDB;
	border-radius: 0 15px 15px 0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.section-title06 {
	width: 100%;
	padding: var(--s4) var(--s12);
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	position: relative;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.section-title06 {
		padding: var(--s2);
		font-size: 2.4rem;
	}
}


/*------------------------------------------------------------
    SP settings
*/
.l-pickup-contents01 {
	width: 100%;
	min-height: 42rem;
	display: flex;
	align-items: center;
	background-color: #eff5f6;
	position: relative;
}

.l-pickup-contents01--reverse {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.l-pickup-contents01-box {
	flex: 1;
}

.l-pickup-contents01-box img {
	min-height: 42rem;
	display: block;
	object-fit: cover;
}

.l-pickup-contents01-content {
	max-width: 50rem;
	padding: 0 var(--s8) 0 0;
	position: relative;
	z-index: 5;
}

.l-pickup-contents01-content--reverse {
	margin-left: auto;
}

.pickup-contents01-catch {
	margin: 0 0 2rem 0;
	color: var(--site-color01);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}

.pickup-contents01-catch a {
	display: block;
	padding: 0 3rem 0 0;
	background: url(img/arrow02-green.svg) no-repeat right center;
	background-size: 2rem auto;
	color: inherit;
	text-decoration: none;
}

.pickup-contents01-catch a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.btn-pickup-contents01 {
	margin: var(--s5) auto 0 auto;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-pickup-contents01 {
		min-height: inherit;
		flex-direction: column;
		border-radius: 2rem;
	}

	.l-pickup-contents01-content {
		max-width: inherit;
		padding: var(--s4) var(--s2);
	}

	.l-pickup-contents01-box img {
		min-height: inherit;
		object-fit: inherit;
		border-radius: 2rem 2rem 0 0;
	}

	.pickup-contents01-catch {
		font-size: 2.2rem;
	}
	
	.btn-pickup-contents01 {
    	margin: var(--s2) auto 0 auto;
	}
}


/* --------------------------
下層用まとめパーツ
-------------------------- */
.conclusion-box-frame {
	position: relative;
	margin: 6rem auto;
	padding: var(--s2) var(--s4) var(--s4);
	background-color: #eff5f6;
	border-radius: 2rem;
}

.conclusion-box-ttl {}

.conclusion-box-ttl__icon {
	width: 12rem;
	height: 12rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	background-color: var(--site-color02);
	border-radius: 50%;
	position: absolute;
	left: -3.8rem;
	top: -2.8rem;
}

.conclusion-box-ttl__icon span {
	color: #fff;
}

.conclusion-box-ttl__text {
	padding: var(--s2) 0;
	margin-left: 8rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--site-color02);
}

.conclusion-box-text {
	background-color: #fff;
	border-radius: 1.6rem;
	padding: var(--s4) var(--s4) 0;
}

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

	.conclusion-box-ttl__icon {
		width: 6rem;
		height: 6rem;
		font-size: 1.5rem;
		top: -2.4rem;
		left: -1rem;
	}

	.conclusion-box-ttl__text {
		padding: var(--s3) 0 0 0;
		margin-left: 0;
		font-size: 2rem;
	}

	.conclusion-box-text {
		padding: var(--s2) var(--s2) 0
	}
}


/*--------------------------------------
common
---------------------------------------*/
#low-page {
	padding-bottom: 6rem;
}

.section-title03 {
	position: relative;
	margin: 0 0 3rem 0;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.section-title03 a {
	display: inline-block;
	padding: 0 4rem;
	background: url(img/arrow02-green.svg) no-repeat right center;
	background-size: 2rem auto;
	color: inherit;
	text-decoration: none;
}

.section-title03 a:hover {
	text-decoration: none;
	opacity: 0.7;
}

p.lead {
	width: 80%;
	margin: 0 auto 6rem auto;
	line-height: 1.8;
}

p.lead>span:not([class]) {
	background: linear-gradient(transparent 64%, rgba(222, 173, 14, 0.3) 64%);
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	#low-page {
	padding-bottom: 3rem;
	}
	.section-title03 {
		margin: 0 0 2rem 0;
		font-size: 2.4rem;
		line-height: 1.4;
	}

	.section-title03 a {
		display: block;
		padding: 0 3rem 0 0;
	}

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

}


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

.accordion-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 32rem;
	margin: 3rem auto 4rem auto;
	padding: 2rem 5rem;
	background: #eff5f6;
	border: 1px solid var(--site-color05);
	border-radius: 6rem;
	font-size: 1.6rem;
	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;
	top: 50%;
	right: 2rem;
	width: 2rem;
	height: 2rem;
	background: url(img/accordion-plus.svg) no-repeat left top;
	background-size: contain;
	content: "";
	transform: translate(0, -50%);
	z-index: 2;
}

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

.accordion-btn.is-open::before {
	background: url(img/accordion-minus.svg) no-repeat left top;
	background-size: contain;
}

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

	.accordion-btn {
		width: 90%;
	}

}


/*--------------------------------------
mainvisual
---------------------------------------*/
.mainvisual {
	position: relative;
	min-height: 66rem;
	padding: 4rem 0;
}

.mainvisual::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #eff5f6 url(img/mv-bg-01.png) no-repeat left bottom;
	background-size: cover;
	content: "";
	z-index: -2;
}

.mainvisual::after {
	position: absolute;
	left: 0;
	top: 10rem;
	width: 130.2rem;
	height: 51rem;
	background: url(img/mv-bg-02.png) no-repeat left top;
	background-size: contain;
	content: "";
	z-index: -1;
	width: 100%;
}

@media screen and (min-width: 1600px) {

	.mainvisual::after {
		left: 0;
		top: 10rem;
		/* transform: translateX(-50%); */
	}
	
	.mainvisual .mv-inner {
		width: 140rem !important;
	}

}

.mainvisual .mv-inner {
	width: 100rem;
	margin: 0 auto;
	padding: 0 42rem 0 0;
}


.mainvisual .mv-sitename {
	width: 64rem;
	margin: 0 0 1.2rem 0;
	padding: 2rem;
	background: #fff;
	border-radius: 1.6rem;
}

.mainvisual .mv-logo {
	display: none;
}

.mainvisual .mv-title {
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.mainvisual .mv-title span {
	display: inline-block;
	margin: 0 0 0.5rem 0;
	padding: 0.1rem 0.5rem;
	background: #0b91b2;
	border-radius: 0.4rem;
	color: #fff;
}

.mainvisual .mv-txt {
	width: 48rem;
	padding: 2rem;
	background: #fff;
	border-radius: 1.6rem;
}

.mv-txt p:not([class]) {
	margin: 0;
}

.mv-txt p:not([class])>span:not([class]) {
	background: linear-gradient(transparent 64%, rgba(222, 173, 14, 0.3) 64%);
	font-weight: 700;
}

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

	.mainvisual {
		min-height: auto;
		padding: 0;
		background: #eff5f6;
	}

	.mainvisual::before {
		display: none;
		content: none;
	}

	.mainvisual::after {
		display: none;
		content: none;
	}

	.mainvisual .mv-inner {
		width: 100%;
		padding: 0;
	}


	.mainvisual .mv-sitename {
		display: inline-block;
		width: auto;
		padding: 1.5rem;
		margin-right: calc(var(--s1) + var(--s-2));
		margin-left: calc(var(--s1) + var(--s-2));
	}

	.mainvisual .mv-logo {
		display: block;
		margin: 0 0 0.5rem 0;
		padding: 6rem 3rem 4rem 3rem;
		background: url(img/mv-bg-04.jpg) no-repeat center top;
		background-size: contain;
	}

	.mainvisual .mv-logo img {
		width: 10rem;
	}

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

	.mainvisual .mv-title span {
		display: inline-block;
		margin: 0 0.2rem 0.5rem 0.2rem;
		padding: 0.1rem 0.5rem;
		background: #0b91b2;
		border-radius: 0.4rem;
		color: #fff;
	}

	.mainvisual .mv-txt {
		width: auto;
		padding: 1.5rem;
		margin-right: calc(var(--s1) + var(--s-2));
		margin-left: calc(var(--s1) + var(--s-2));
	}

	.mv-txt p:not([class]) {
		margin: 0;
	}

	.mv-txt p:not([class])>span:not([class]) {
		background: linear-gradient(transparent 64%, rgba(222, 173, 14, 0.3) 64%);
		font-weight: 700;
	}

}


/*--------------------------------------
mainvisual-lower
---------------------------------------*/
.mainvisual-lower .mv-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 16rem;
	background: #e5f8f4 url(img/mv-bg-03.jpg) no-repeat right top;
	background-size: cover;
	margin: 0 auto;
	text-align: center;
}

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

	.mainvisual-lower .mv-inner {
		width: 100%;
		height: 9.9rem;
	}

}


/*--------------------------------------
sec01
---------------------------------------*/
.sec01 {
	padding: 5rem 0 10rem 0;
	background: #eff5f6;
	background: url(img/sec01-bg-01.png) no-repeat center top, -webkit-linear-gradient(0deg, rgba(185, 233, 245, 1) 40%, rgba(239, 245, 246, 1) 100%);
	background: url(img/sec01-bg-01.png) no-repeat center top, linear-gradient(0deg, rgba(185, 233, 245, 1) 40%, rgba(239, 245, 246, 1) 100%);
	background-size: 100% auto, auto;
}

.sec01.lower {
	margin: 4rem 0 0 0;
}

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

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

.sec01 p.note {
	margin: 2rem 0 0 0;
	font-size: 1rem;
	line-height: 1.8;
	padding-bottom: 0.8rem;
	overflow-x: auto;
    overflow-y: hidden;
	white-space: nowrap;
    scrollbar-width: thin;
}

@media screen and (max-width: 767px) {
	.sec01 {
		padding: 5rem 0;
	}

	.sec01.lower {
		margin: 2rem 0 0 0;
	}

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

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

}


/*--------------------------------------
sec02
---------------------------------------*/
.sec02 {
	padding: 10rem 0;
	background: #eff5f6 url(img/sec02-bg-01.png) repeat-y left top;
	background-size: 100% auto;
}

.sec02 .l-center>.column-medium {
	margin: 10rem 0 0 0;
	padding: 0.1rem var(--s4) var(--s8) var(--s4);
	background: #fff;
	border-radius: 2rem;
}

.sec02 .onb-icon-title {
	width: 86%;
	margin: -6rem auto 3rem auto;
	padding: 3rem 2rem;
	background: var(--site-color01);
	border-radius: 1.6rem;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec02 .onb-icon-title span {
	border-bottom: 2px solid #dead0e;
}

.sec02 .company-name {
	margin: 0 0 3rem 0;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec02 .onb-m-title6 {
	position: relative;
	margin: 6rem 0 3rem 0;
	padding: 0.1rem 0 0.3rem 2rem;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec02 .onb-m-title6::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.6rem;
	height: 70%;
	background: var(--site-color01);
	border-radius: 0.3rem;
	content: "";
}

.sec02 .column-medium ul li {
	font-weight: 700;
}

.sec02 table th {
	width: 20rem;
	text-align: center;
}

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

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

	.sec02 .l-center>.column-medium {
		margin: 6rem 0 0 0;
		padding: 0.1rem var(--s2) var(--s3) var(--s2);
	}

	.sec02 .onb-icon-title {
		width: 90%;
		margin: -3rem auto 2rem auto;
		padding: 1.5rem;
		font-size: 2rem;
		line-height: 1.6;
	}

	.sec02 .company-name {
		margin: 0 0 2rem 0;
		font-size: 2.4rem;
	}

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

	.sec02 table th {
		width: 11rem;
		text-align: center;
	}

	.sec02 .sp-table-vertical table th {
		width: 100%;
	}

	.sec02 .column-medium .l-grid-two {
		grid-gap: unset;
	}

}


/*--------------------------------------
sec03
---------------------------------------*/
.sec03 {
	padding: 10rem 0 0 0;
	background: url(img/sec03-bg-01.png) no-repeat left top;
	background-size: 100% auto;
}

.sec03 .l-stack-small {
	justify-content: flex-start;
	gap: 0;
}

.sec03 .column-small {
	margin: 0 0 1rem 0;
	padding: var(--s3) var(--s2);
	background: #fff;
	border: 1px solid var(--site-color01);
	border-radius: 2rem;
}

.sec03 .title-catch {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 0 1rem 0;
	border-bottom: 1px solid var(--site-color01);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec03 .title-catch a {
	display: block;
	width: 100%;
	padding: 0 3rem 0 0;
	background: url(img/arrow02-green.svg) no-repeat right center;
	background-size: 2rem auto;
	color: inherit;
	text-decoration: none;
}

.sec03 .title-catch a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.sec03 .column-small .caption {
	text-align: left;
}

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

.sec03 .column-small table th {
	width: 9rem;
	text-align: center;
}

.sec03 .link {
	margin: 1.5rem 0 0 0;
	padding: 0;
	text-align: right;
}

.sec03 .link a {
	display: inline-block;
	position: relative;
	padding: 0.2rem 2.4rem 0.2rem 0;
	background: url(img/arrow02-green.svg) no-repeat right center;
	background-size: 2rem auto;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: underline;
}

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

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

	.sec03 {
		padding: 5rem 0 0 0;
	}

}

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

.sec04 .l-grid-two {
	--minimum: calc((100% - var(--s4)) / 2);
	grid-gap: var(--s4);
}

.sec04 .column-medium {
	padding: var(--s3) var(--s2);
	border: 1px solid var(--site-color01);
	border-radius: 2rem;
}

.sec04 .twb-m-title01 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.6rem 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

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

.sec04 .twb-m-title01 a:hover {
	text-decoration: none;
	opacity: 0.7;
}

.sec04 .twb-box-full {
	margin: 0 0 1.5rem 0;
	text-align: center;
	border-radius: 1rem;
    overflow: clip;
}

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

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

	.sec04 .twb-m-title01 a {
		padding: 0 3rem 0 0;
		background: url(img/arrow02-green.svg) no-repeat right center;
		background-size: 2rem auto;
	}
}

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

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

	.sec05 {
		padding: 5rem 0 0 0;
		padding-right: calc(var(--s1) + var(--s-2));
		padding-left: calc(var(--s1) + var(--s-2));
	}
}


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

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

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