@charset "utf-8";

/* ---------------------------------------------
navigation03　※TOP、下層共通
--------------------------------------------- */
.header-area {
	width: 25rem;
	height: 100vh;
	padding: var(--s1);
	background: #fff;
	border-right: 1px solid #ccc;
	overflow-x: hidden;
	overflow-y: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	/*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

.header-logo {
	width: 80%;
	margin: var(--s2) auto;
	text-align: center;
}

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

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

.header-logo__link {
	display: block;
}

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

.header-title {
	position: relative;
	font-size: 1rem;
	line-height: 1.8;
}

.header-title::before {
	display: inline-block;
	margin: 0 0.5rem 0.2rem 0;
	padding: 0.3rem 0.3rem 0.2rem 0.3rem;
	background-color: #333;
	color: #fff;
	line-height: 1.1;
	content: "PR";
}

.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;
	background: #fff;
}
ul.gnavi-list__sub.toggle-content li {
    background: #eee;
	padding-left: 2rem;
}
ul.gnavi-list__sub.toggle-content li a {
    color: #000e1e;
}
.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 #ececec;
    display: block;
    color: #01326d;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    position: relative; /* ::before の位置を正しく指定するため */
}

.gnavi-pc-list__link::before {
    content: "";
    width: 2.4rem;
    height: 1.4rem;
    background: url(./img/arrow-01-blue-right.svg) no-repeat center / 1.4rem 1.4rem;
    position: absolute;
    top: 50%; /* 縦の中央に配置 */
    left: 0; /* 左側の余白 */
    transform: translateY(-50%) rotate(0); /* 中央揃えと初期回転 */
}

.gnavi-pc-list__link--toggle::before {
    transform: translateY(-50%) rotate(90deg); /* 縦中央を維持して回転 */
}

.gnavi-pc-list__link--toggle.is-open::before {
    transform: translateY(-50%) rotate(270deg); /* 縦中央を維持して回転 */
}
.gnavi-pc-list__link:hover {
	opacity: 0.6;
}

/*------------------------------------------
 Global menu settings
*/
.navigation01-menu-area {
	background-color: #ccc;
}

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

/*
---------------------------------------------
    sp settings
*/
@media screen and (max-width: 767px) {
	.gnavi-pc {
		display: none;
	}

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

	.header-logo {
		display: none;
	}

	.header-area-upper {
		padding: var(--s1);
		text-align: right;
	}

	.header-title {
		display: inline-block;
	}

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

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

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

	.gnavi-btn {
		width: var(--s7);
		height: var(--s6);
		background: #01326d;
		display: block;
		position: fixed;
		top: var(--s3);
		right: 0;
		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: 1.7rem;
	}

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

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

	.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: 80%;
		margin: 0 auto;
		padding: var(--s2);
		background: #fff;
		display: block;
		text-align: center;
		        border-radius: 14px;
        border: 1px solid #000;
	}

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

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

	.gnavi-btn-close__inner::after {
		content: "";
		width: 1em;
		height: 0.2rem;
		background: #333;
		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: #e5f0fb;
		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 #b8d8ff;
		position: relative;
		padding-top: 7rem;
	}

	.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 #b8d8ff;
		display: block;
		font-weight: 700;
		line-height: 2;
		text-decoration: none;
		position: relative;
		color: var(--site-color03);
	}

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

	.gnavi-list__link--toggle::after {
		transform: rotate(90deg);
	}

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

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

/* ---------------------------------------------
index02(目次)
--------------------------------------------- */
.onb-index02-frame {
	width: 100%;
}

.onb-index02-wrap {
	margin: var(--s6) auto;
	padding: var(--s1) var(--s3) var(--s4) var(--s3);
	background-color: #fff;
	border: 1px solid #e5f0fb;
	position: relative;
}

.onb-index02-title {
	padding: var(--s2) var(--s2) var(--s2) 0;
	color: var(--site-color03);
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 1;
	position: relative;
}

.onb-index02-chapter {
	padding: var(--s2) var(--s2) var(--s2) var(--s7);
	font-weight: 700;
	counter-reset: number 0;
}

#toc ul.onb-index02-chapter li {
	position: relative;
}

#toc ul.onb-index02-chapter li:not(.onb-index02-chapter-h-three)::before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero);
	color: var(--site-color03);
	position: absolute;
	top: 0;
	left: -1.8em;
}

#toc ul li.onb-index02-chapter-h {
	margin: 0 0 0 var(--s2);
	font-size: 100%;
	line-height: 1.7;
	position: relative;
}

#toc ul li.onb-index02-chapter-h a {
	display: block;
	text-decoration: none;
}

#toc ul li.onb-index02-chapter-h-two {
	margin-left: var(--s2);
	position: relative;
}

#toc ul li.onb-index02-chapter-h-three {
	margin-left: var(--s4);
	position: relative;
}

#toc ul li.onb-index02-chapter-h-two::before,
#toc ul li.onb-index02-chapter-h-three::before {
	position: absolute;
	top: 0;
	left: -1.8em;
}

#toc ul li.onb-index02-chapter-h-three::before {
	content: "└";
}

/*----------------------------------------------
	more content settings
*/
#toc.onb-index02-gradation {
	margin-top: 1.4rem;
	height: auto;
	max-height: 12rem;
	overflow: hidden;
	transition: max-height 1s;
	border-top: 1px solid #023156;
	position: relative;
}

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

#toc.onb-index02-gradation.is-open::after {
	display: none;
}

.onb-index02-btn {
	max-width: 32rem;
	margin: 2rem auto 0 auto;
	position: relative;
	z-index: 5;
}

.onb-index02-btn span {
	width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 4rem;
	border: 1px solid #000e1e;
	background: url('./img/acc-off.svg') no-repeat right 1.5rem center #fff;
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
	border-radius: 14px;
}

.onb-index02-btn::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000e1e;
	border-width: 0 1px 1px 0;
	transform: translate(.8rem, .8rem);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	border-radius: 14px;
}

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

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	#toc .onb-index02-chapter {
		padding-left: var(--s4);
	}
	.onb-index02-btn {
    max-width: 23rem;
}
.onb-index02-btn span {
	font-size: 1.5rem;
}
	.onb-index02-btn:hover span {
		transform: none;
	}
}

/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
	margin: var(--s8) auto;
	padding: var(--s1) var(--s3) var(--s4) var(--s3);
	background: #eee;
	position: relative;
}

.related-article01-title {
	padding: var(--s2) 0;
	color: var(--site-color03);
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.4;
	border-bottom: 1px solid var(--site-color03);
}

.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.1rem;
	height: 1.1rem;
	background-color: var(--site-color03);
	position: absolute;
	top: 0.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;
}

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

	.related-article01-title {
		font-size: 2rem;
	}

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

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

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

/* ---------------------------------------------
section
--------------------------------------------- */
.sec01 {
	padding: 21rem 0 2rem 0;
}
.sec02,
.sec03,
.sec04,
.sec05 {
	padding: 14rem 0 2rem 0;
}

.sec06 {
	padding: 6rem 0 10rem;
}

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

	.sec01,
	.sec02,
	.sec03,
	.sec04,
	.sec05 {
		padding: 7rem 0;
	}

	.sec06 {
		padding: 0;
	}

}

/* ---------------------------------------------
section-title07(top h2)
--------------------------------------------- */
.section-title07-frame {
	margin-top: 5rem;
	position: relative;
}

.sec01 .section-title07-frame::before {
	content: "RECOMMEND";
	width: 100%;
	font-size: 8rem;
	font-weight: 700;
	color: #e5f0fb;
	text-align: center;
	position: absolute;
	top: -7rem;
	left: 0;
	font-family: 'oswald', sans-serif;
}

.sec02 .section-title07-frame::before {
	content: "IN DETAIL";
	width: 100%;
	font-size: 8rem;
	font-weight: 700;
	color: rgb(166 201 240 / 20%);
	text-align: center;
	position: absolute;
	top: -7rem;
	left: 0;
	font-family: 'oswald', sans-serif;
}

.sec03 .section-title07-frame::before {
	content: "LIST";
	width: 100%;
	font-size: 8rem;
	font-weight: 700;
	color: rgb(166 201 240 / 20%);
	text-align: center;
	position: absolute;
	top: -7rem;
	left: 0;
	font-family: 'oswald', sans-serif;
}

.sec04 .section-title07-frame::before {
	content: "CASES";
	width: 100%;
	font-size: 8rem;
	font-weight: 700;
	color: rgb(124 186 255 / 20%);
	text-align: center;
	position: absolute;
	top: -7rem;
	left: 0;
	font-family: 'oswald', sans-serif;
}

.sec05 .section-title07-frame::before {
	content: "KNOWLEDGE";
	width: 100%;
	font-size: 8rem;
	font-weight: 700;
	color: rgb(166 201 240 / 20%);
	text-align: center;
	position: absolute;
	top: -7rem;
	left: 0;
	font-family: 'oswald', sans-serif;
}

.section-title07 {
	width: 100%;
	padding: var(--s4) var(--s12);
	font-size: 3.6rem;
	font-weight: 700;
	color: #000e1e;
	text-align: center;
	position: relative;
	line-height: 1.5;
}

.section-title07 a {
	display: inline-block;
	padding: 0 4rem;
	background: url(img/arrow-01-blue-right.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

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

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

	.sec01 .section-title07-frame::before {
		content: "RECOMMEND";
		width: 100%;
		font-size: 6rem;
		font-weight: 700;
		text-align: center;
		position: absolute;
		top: -7rem;
		left: 0;
		font-family: 'oswald', sans-serif;
	}

	.sec02 .section-title07-frame::before {
		content: "IN DETAIL";
		width: 100%;
		font-size: 6rem;
		font-weight: 700;
		text-align: center;
		position: absolute;
		top: -7rem;
		left: 0;
		font-family: 'oswald', sans-serif;
	}

	.sec03 .section-title07-frame::before {
		content: "LIST";
		width: 100%;
		font-size: 6rem;
		font-weight: 700;
		text-align: center;
		position: absolute;
		top: -7rem;
		left: 0;
		font-family: 'oswald', sans-serif;
	}

	.sec04 .section-title07-frame::before {
		content: "CASES";
		width: 100%;
		font-size: 6rem;
		font-weight: 700;
		text-align: center;
		position: absolute;
		top: -7rem;
		left: 0;
		font-family: 'oswald', sans-serif;
	}

	.sec05 .section-title07-frame::before {
		content: "KNOWLEDGE";
		width: 100%;
		font-size: 6rem;
		font-weight: 700;
		text-align: center;
		position: absolute;
		top: -7rem;
		left: 0;
		font-family: 'oswald', sans-serif;
	}

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

/* ---------------------------------------------
box 共通
--------------------------------------------- */
/*------------------------------------------
    1box column settings
*/
.column-medium {
	padding: var(--s4);
	background: #fff;
}

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

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

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

/*------------------------------------------
    2box column settings
*/
.column-medium {
	margin: 0 0 4rem 0;
	padding: 0 var(--s4) var(--s4);
	background: #fff;
	border: 1px solid #016bd4;
	z-index: 1;
}

a.column-medium {
	position: relative;
	text-decoration: none;
}

a.column-medium::before {
	position: absolute;
	right: 0.5rem;
	bottom: 0.5rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0px 0px 28px 28px;
	border-color: transparent transparent #016bd4 transparent;
	content: "";
}

a.column-medium:hover {
	text-decoration: none;
	opacity: 0.7;
}

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

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

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

/*------------------------------------------
    3box column settings
*/
.column-small {
	position: relative;
	padding: var(--s2);
	background: #fff;
	z-index: 0;
}

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

/* ---------------------------------------------
bg（sec01）
--------------------------------------------- */
.bg-01 {
	position: relative;
}

.bg-01::before {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 94rem;
	height: 90rem;
	background: url(./img/sec01-bg-01.png) no-repeat left top;
	content: "";
	z-index: -2;
}

.lower.bg-01 {
    background: url(img/sec01-bg-02.png) no-repeat left top, url(img/sec01-bg-03.png) no-repeat right bottom;
    padding: 12rem 0 8rem 0;
	margin-top: 16rem;
}

.lower.bg-01::before {
	display: none;
	content: none;
}

@media screen and (max-width: 767px) {
	.lower.bg-01 {
		background-size: 50%;
		padding: 8rem 0 8rem 0;
	}
}

/* ---------------------------------------------
.sec01 .column-small（sec01）
--------------------------------------------- */
.sec01 .column-small {
	padding: 0 var(--s2);
	border: 1px solid #eee;
}

/* ---------------------------------------------
3box_img-title（sec01）
--------------------------------------------- */
.img-title-area {
	display: flex;
	background-color: #016bd4;
	align-items: end;
	position: relative;
}

.img-title-image {
	position: relative;
	left: -1rem;
	top: -2rem;
	width: 36%;
}

.img-title-image img {
	width: 100%;
}

.img-title {
    width: 64%;
    padding: var(--s2) var(--s2) var(--s2) var(--s1);
    color: #ffda20;
    line-height: 1.5;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.img-title-sub {
	margin-bottom: .8rem;
	padding: var(--s1);
	background-color: #fff;
	color: var(--site-color03);
	font-size: 1.4rem;
	line-height: 1;
	display: inline-block;
}

.img-title-small {
	color: #fff;
	font-size: 1.8rem;
}

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

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

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

	.thb-listbox-title {
		width: 83%;
		margin: -5rem auto 0 auto;
		padding: var(--s1);
		font-size: 1.4rem;
		text-align: center;
	}

	.img-title-area {
		display: block;
	}

	.img-title {
		width: 100%;
		padding: 1.8rem 1.5rem 1.8rem calc(26% + 1rem);
		line-height: 1.4;
	}

	.img-title-image {
		position: absolute;
		left: -1rem;
		top: -1rem;
		width: 26%;
	}
}

/* ---------------------------------------------
recommend_btn（sec01）
--------------------------------------------- */
.recommend_btn {
	margin-bottom: 3rem;
}

.recommend_btn .btn-web,
.recommend_btn .btn-ancher {
	margin: 2rem auto;
	max-width: 90%;
}
.recommend_btn .btn-web a, .recommend_btn .btn-ancher a {
    padding: 2rem 2rem 2rem 4rem;
}

/* ---------------------------------------------
bg（sec02）
--------------------------------------------- */
.bg-02 {
	background: url(./img/sec02-bg-01.png) repeat-y center top;
	    background-attachment: fixed;
    background-position: calc(50% + 120px) top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ---------------------------------------------
1box_img-title（sec02）
--------------------------------------------- */
.sec02 .column-medium {
	border: none;
}

.onb-img-title-box {
	width: calc(100% + 6.4rem);
	margin-left: -3.2rem;
}

.onb-img-title-area {
	display: flex;
	background-color: #016bd4;
	align-items: end;
}

.onb-img-title-image {
	position: relative;
	left: 1.5rem;
	top: -2rem;
	width: 11.1rem;
}

.onb-img-title-image img {
	margin-top: -6rem;
	width: 100%;
}

.onb-img-title {
	width: 82%;
	padding: var(--s5);
	color: #fff;
	line-height: 1.1;
	font-size: 3.2rem;
	font-weight: 700;
	text-align: left;
}

.onb-img-title-sub {
	color: #ffdd00;
	font-size: 3rem;
	line-height: 1;
	border-bottom: 5px solid #ffdd00;
}

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

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.sec02 .column-medium {
    border: none;
    padding: 0 var(--s2) var(--s2);
}
	.onb-img-title-box {
		width: calc(100% + 3.2rem);
		margin-left: -1.6rem;
	}

	.onb-img-title-image {
        left: 1rem;
        top: -2.5rem;
        width: 12rem;
    }

	.onb-img-title-sub {
		font-size: 2rem;
		line-height: 1.5;
		padding: 0;
	}

	.onb-img-title {
		width: 100%;
		font-size: 1.8rem;
		padding: 2rem 1rem 2rem 3rem;
	}
}

/* ---------------------------------------------
section-title02（sec02）
--------------------------------------------- */
.section-title02-frame {
	text-align: center;
	margin: 2rem 0;
}

.section-title02 {
	font-size: 3.6rem;
	font-weight: 700;
	color: #000e1e;
	text-align: center;
}

.section-title02-sub {
	display: inline-block;
	padding: 0.8rem;
	margin-bottom: 2rem;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	background: #e5f0fb;
}

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

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

	.sec02 .btn-web,
	.sec02 .btn-tel {
		margin: 0.5rem auto;
	}


}

/* ---------------------------------------------
1box-2column_accordion-list（sec02）
--------------------------------------------- */
.twb-acc-list-frame:last-child {
	border: 1px solid #35393e;
}

.twb-acc-list-title {
	padding: var(--s2);
	background-color: #35393e;
	color: #fff;
	font-weight: 700;
	font-size: 1.8rem;
}

.twb-acc-list-content {
	padding: var(--s2);
}

.twb-acc-list div {
	padding-bottom: var(--s2);
	display: flex;
	border-bottom: 1px solid #ccc;
}

.twb-acc-list div:last-child {
	border: none;
}

.twb-acc-list div dt {
	width: 40%;
	line-height: 1.2;
		font-weight: bold;
	margin-right: 10px;
}
.twb-acc-list div dd {
	width: 60%;
	line-height: 1.2;
}

.twb-acc-list div dd span {
	color: #bced3d;
	font-weight: bold;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
.twb-acc-list-title {
	font-size: 1.6rem;
}
}
/*----------------------------------------------
	more content settings
*/
.more-content-gradation {
	position: relative;
	height: auto;
	max-height: 12rem;
	overflow: hidden;
	transition: max-height 1s;
}

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

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

.twb-acc-list-more-btn {
	max-width: 32rem;
	margin: 2rem auto 0 auto;
	position: relative;
	z-index: 5;
}

.twb-acc-list-more-btn span {
	width: 100%;
	margin: var(--s5) auto;
	padding: 2rem 4rem;
	border: 1px solid #000e1e;
	background: url('./img/acc-off.svg') no-repeat right 1.5rem center #fff;
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
	border-radius: 14px;
}

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

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

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


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

	.twb-acc-list-more-btn span {
		transition: inherit;
		transform: none;
		font-size: 1.6rem;
	}

	.twb-acc-list-more-btn:hover span {
		transform: none;
	}
	.twb-acc-list-more-btn {
    max-width: 20rem;
}
}

/* ---------------------------------------------
1box_access-table（sec02）
--------------------------------------------- */
.l-onb-access-table {
	display: flex;
	gap: var(--s2);
}

.l-onb-access-table__side {
	width: calc((100% - var(--s2))*.4);
}

.l-onb-access-table__main {
	width: calc((100% - var(--s2))*.6);
}

.onb-access-table {
	border-collapse: collapse;
}

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

.onb-access-table th {
	width: 34%;
	background-color: #E9EFF0;
	vertical-align: middle;
	font-weight: normal;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-access-table {
		flex-direction: column;
	}

	.l-onb-access-table__side,
	.l-onb-access-table__main {
		width: 100%;
	}
}

/* ---------------------------------------------
section-title06（sec02）
--------------------------------------------- */
.section-title06-frame {
	margin-top: 5rem;
	position: relative;
}

.section-title06-frame::after {
	content: "";
	width: 970px;
	height: 100%;
	background: #01326d url(img/title-bg-02.png) no-repeat right bottom;
	background-size: 8.8rem auto;
	position: absolute;
	top: 0;
	left: -32px;
	z-index: -1;
}

.section-title06 {
	width: 100%;
	padding: var(--s3) var(--s2);
	font-size: 2.8rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	text-align: left;
	position: relative;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.section-title06 {
		padding: var(--s2);
		font-size: 2rem;
		background: #01326d url(img/title-bg-02.png) no-repeat right bottom;
		background-size: 4.4rem auto;
	}

	.section-title06-frame::after {
		content: "";
		width: 105%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -17px;
		z-index: -1;
	}
}

/* ---------------------------------------------
ex-contents-sp-vertical（sec02）
--------------------------------------------- */
.ex-contents-spv {
	display: flex;
}

.ex-contents-spv-left {
	padding: 1.6rem 3.2rem;
	background-color: #016bd4;
	font-size: 2.3rem;
	font-weight: 700;
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
	font-family: 'oswald', sans-serif;
}

.ex-contents-spv-left::after {
	content: "";
	width: 2rem;
	height: calc(6rem / 2);
	background-color: #016bd4;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: -1.5rem;
}

.ex-contents-spv-left span {
	width: 100%;
	font-size: 4.6rem;
	line-height: 1.5;
	text-align: center;
	display: block;
}

.ex-contents-spv-right {
	padding: var(--s6) var(--s4);
	background-color: #e5f0fb;
}

.ex-contents-spv-catch {
	color: var(--site-color03);
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.for-pc {
		display: none;
	}

	.ex-contents-spv {
		flex-direction: column;
	}

	.ex-contents-spv-left {
		padding: 0.8rem;
		position: relative;
		display: block;
		text-align: center;
	}

	.ex-contents-spv-left::after {
		width: 4rem;
		height: calc(4rem / 2);
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		transform: translateX(-50%);
		top: inherit;
		left: 50%;
		right: inherit;
		bottom: -1.5rem;
	}

	.ex-contents-spv-left {
		font-size: 2.1rem;
	}

	.ex-contents-spv-left span {
		font-size: 2.8rem;
		display: inline;
	}

	.ex-contents-spv-right {
		padding: 3.2rem 1.6rem 3.2rem 1.6rem;
	}

	.ex-contents-spv-catch {
		font-size: 1.6rem;
	}

	.ex-contents-spv-right p {
		font-size: 1.4rem;
	}
}

/* ---------------------------------------------
1box_iconbox04（sec02）
--------------------------------------------- */
.onb-iconbox04-frame {
	padding: var(--s4);
	background-color: #fff;
	border: 1px solid #016bd4;
}

.onb-iconbox04-catch {
	display: flex;
	align-items: center;
	min-height: 5.3rem;
	padding: 0 0 0 7rem;
	font-size: 2rem;
	font-weight: 700;
	color: #016bd4;
	line-height: 1.5;
	background: url('./img/title-bg-03.png') no-repeat center left;
	background-size: 5.3rem auto;
}

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

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

/* ---------------------------------------------
bg（sec03）
--------------------------------------------- */
.bg-03 {
	background: url(img/sec03-bg-01.png) no-repeat left top, url(img/sec03-bg-02.png) no-repeat right bottom;
	    padding-bottom: 14rem;
}

@media screen and (max-width: 767px) {
	.bg-03 {
		background-size: 50%;
	}
}

/* ---------------------------------------------
3box_m-title01（sec03）
--------------------------------------------- */

.m-title01 {
	padding: var(--s1) var(--s1) var(--s2)var(--s1);
	font-size: 2.1rem;
	font-weight: 700;
	color: var(--site-color03);
	text-align: center;
	line-height: 1.5;
}

/* ---------------------------------------------
3box_table（sec03）
--------------------------------------------- */
.thb-table th,
.thb-table td {
	padding: var(--s1);
	border: 1px solid #D3D3D3;
}

.thb-table th {
	width: 11rem;
	text-align: left;
}

/* ---------------------------------------------
accordion（sec03）
--------------------------------------------- */
.acc-more-btn {
	max-width: 46rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}

.acc-more-btn span {
	width: 100%;
	padding: 2rem 4rem;
	border: 1px solid #000e1e;
	background: url('./img/acc-off.svg') no-repeat right 1.5rem center #fff;
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
	border-radius: 14px;
}

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

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

/* ---------------------------------------------
bg（sec04）
--------------------------------------------- */
.bg-04 {
	background-color: #fff;
}

/* ---------------------------------------------
2box_m-title03（sec04）
--------------------------------------------- */

.twb-m-title03 {
	padding: var(--s3) var(--s1) var(--s1);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--site-color03);
	line-height: 1.5;
	text-align: center;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.twb-m-title03 {
    padding: var(--s1);
}
}
/* ---------------------------------------------
bg（sec05）
--------------------------------------------- */
.bg-05 {
	background: url(./img/sec04-bg-01.png) no-repeat center top;
	background-size: 100% auto;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.bg-05 {
    background-size: 250% auto;
}
}

	
/* ---------------------------------------------
1box_com-box01-r（sec05）
--------------------------------------------- */
.onb-com-box01-r-frame {
	padding: var(--s4);
	background: #e5f0fb;
}

.l-onb-com-box01-r {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s3);
}

.l-onb-com-box01-r__side {
	width: 13.6rem;
}

.l-onb-com-box01-r__side img {
	max-width: 100%;
}

.l-onb-com-box01-r__main {
	width: calc((100% - var(--s3))*.8);
}

.onb-com-box01-r-catch {
	display: inline-block;
	background: #01326d;
	margin-bottom: var(--s2);
	color: #fff;
	padding: 0.1rem 1rem;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 2;
}

.onb-com-box01-r-catch a {
	display: block;
	width: 100%;
	padding: 0 2rem 0 0;
	background: url(img/arrow-01-blue-right.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
}

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

.onb-com-box01-r-caption {
	text-align-last: left;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.l-onb-com-box01-r {
		display: flow-root;
	}

	.l-onb-com-box01-r__side {
		float: left;
		width: 8rem;
		margin-right: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.l-onb-com-box01-r__main {
		width: 100%;
	}

	.onb-com-box01-r-catch {
		width: calc(100% - 9.5rem);
		padding: 0.5rem 1rem;
		font-size: 1.8rem;
		line-height: 1.4;
	}

	.onb-com-box01-r-imgcap {
		font-size: 1rem;
	}
}

/* ---------------------------------------------
pc-fix-banner01
--------------------------------------------- */
.pc-fix-banner01 {
	width: 17rem;
	background-color: #0793f2;
	position: fixed;
	right: 0;
	bottom: 18rem;
	z-index: 50;
	font-weight: bold;
}

.pc-fix-banner01 a {
	color: #fff;
	text-decoration: none;
	display: block;
}

.pc-fix-banner01 a:hover {
	opacity: .7;
}

.pc-fix-banner01-img {
	position: relative;
}

.pc-fix-banner01-img::before {
	content: "";
	width: 6.2rem;
	height: 2.2rem;
	background: url("./img/banner-bg-01.png") no-repeat center center;
	background-size: contain;
	position: absolute;
	top: -1.5rem;
	left: .5rem;
	z-index: 5;
}

.pc-fix-banner01-text {
	padding: var(--s2);
	color: #fff;
	position: relative;
}

.pc-fix-banner01-text::after {
	content: "";
	width: 0.1rem;
	height: 0.1rem;
	border-top: .8rem solid transparent;
	border-left: .8rem solid transparent;
	border-right: .8rem solid #fff;
	border-bottom: .8rem solid #fff;
	position: absolute;
	right: .5rem;
	bottom: .5rem;
}

.pc-fix-banner01-text p {
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.4;
}

.pc-fix-banner01-text p.text-small {
    font-size: 1.3rem;
    line-height: 1.5;
    background: #fff;
    color: #0793f2;
    padding: 0.4rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.pc-fix-banner01-text span {
    color: #fff !important;
    font-size: 2.2rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
	.pc-fix-banner01 {
		display: none;
	}
}

/*--------------------------------------
common
---------------------------------------*/
#contents {
	padding: 0;
}

@media screen and (max-width: 767px) {
	#contents {
		padding: 0;
	}
}

/*--------------------------------------
mainvisual
---------------------------------------*/
.mainvisual {
	position: relative;
	min-height: 56rem;
	padding: 15rem 0 3rem 0;
}

.mainvisual::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 70rem;
	height: 70rem;
	background: url(img/mv-bg-01.png) no-repeat left top;
	background-size: contain;
	content: "";
	z-index: -2;
}

.mainvisual .mv-inner {
	position: relative;
	width: 100rem;
	margin: 0 auto;
}

.mainvisual .mv-inner::before {
	position: absolute;
	left: 6rem;
	top: -9rem;
	width: 127.2rem;
	height: 60rem;
	background: url(img/mv-bg-02.jpg) no-repeat left top;
	background-size: contain;
	content: "";
	z-index: -1;
}

.mainvisual .mv-title {
	margin: 0 0 2.4rem 0;
	color: #fff;
	font-size: 5.3rem;
	font-weight: 700;
	line-height: 1.4;
}

.mainvisual .mv-title .txt-1 {
	display: inline-block;
	margin: 0 0 1.2rem 0;
	padding: 0.1rem 1rem 0.5rem 1rem;
	background: #000e1e;
	font-size: 3.6rem;
}

.mainvisual .mv-title .txt-2 {
	display: inline-block;
	padding: 0.2rem 1.5rem 0.5rem 1.5rem;
	background: #000e1e;
}

.mainvisual .mv-title .txt-2 span {
	color: #ffdd00;
	font-size: 6.6rem;
}

.mainvisual .mv-txt {
	width: 56rem;
	padding: 2rem;
	background: #fff;
}

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

.mainvisual-lower {
	position: relative;
	padding: 5rem 0 0 0;
}

.mainvisual-lower::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 80rem;
	height: 80rem;
	background: url(img/mv-bg-03.png) no-repeat left top;
	background-size: contain;
	content: "";
	z-index: -2;
}

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


	.mainvisual {
		min-height: auto;
		padding: 12rem 1.5rem 0 1.5rem;
	}

	.mainvisual::before {
		left: 0;
		top: -3.5rem;
		width: 28rem;
		height: 28rem;
		background: url(img/mv-bg-01.png) no-repeat left top;
		background-size: contain;
	}

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

	.mainvisual .mv-inner::before {
		left: auto;
		right: -1.5rem;
		top: -12rem;
		width: calc(100% - 1.5rem);
		height: 24rem;
		background: url(img/mv-bg-04.jpg) no-repeat left top;
		background-size: contain;
	}

	.mainvisual .mv-title {
		margin: 0 0 1.5rem 0;
		font-size: 2.1rem;
	}

	.mainvisual .mv-title .txt-1 {
		margin: 0 0 1rem 0;
		padding: 0.5rem 1rem;
		font-size: 1.8rem;
	}

	.mainvisual .mv-title .txt-2 {
		padding: 0.3rem 1rem 0.5rem 1rem;
	}

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

	.mainvisual .mv-txt {
		width: 100%;
		padding: 0;
		background: none;
	}

	.mainvisual-lower {
		padding: 1rem 0 0 0;
	}

	.mainvisual-lower::before {
		top: -3.5rem;
		width: 28rem;
		height: 28rem;
	}

}

/*--------------------------------------
sec01
---------------------------------------*/
.sec01 .l-grid-three {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sec01 .l-grid-three::after {
	display: block;
	width: calc((100% - 4rem) / 3);
	content: "";
}

.sec01 .l-grid-three .column-small {
	width: calc((100% - 4rem) / 3);
}

.sec01 .l-grid-three .l-stack {
	display: block;
}

.sec01 .thb-m-title04-frame {
	margin: 3rem 0;
	text-align: center;
}

.sec01 .thb-m-title04-sub {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 0.8rem 0;
}

.sec01 .thb-m-title04-sub span {
	display: inline-block;
	padding: 0.8rem;
	background: #e5f0fb;
	color: #01326d;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}

.sec01 .thb-m-title04 {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000e1e;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.sec01 .fig {
	margin: 0 0 4rem 0;
	text-align: center;
}

.sec01 .fig img {
	width: auto;
	height: 27rem;
}

.thb-listbox-bg-colored {
	padding-top: 2rem;
}

.thb-listbox-area {
	padding: 4rem var(--s2) var(--s2) var(--s2);
	background-color: var(--site-color06);
	position: relative;
}

.thb-listbox-title {
	margin-top: -5.5rem;
	padding: var(--s1);
	color: #fff;
	background-color: var(--site-color03);
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
}

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

.thb-listbox-list {
	width: 100%;
	padding-left: 2rem;
}

.thb-listbox-list li {
	padding: 0 var(--s1);
	line-height: 1.5;
	position: relative;
}

.thb-listbox-list li::before {
	content: "";
	width: 2rem;
	height: 2rem;
	background: url("./img/icon-check.svg") no-repeat left top;
	background-size: contain;
	position: absolute;
	top: .3rem;
	left: -2rem;
}

.thb-listbox-list li span {
	font-weight: 700;
	color: #e18701;
}

@media screen and (max-width: 767px) {
	.sec01 .l-grid-three {
		display: block;
	}

	.sec01 .l-grid-three::after {
		display: none;
		content: none;
	}

	.sec01 .l-grid-three .column-small {
		width: 100%;
		margin: 0 0 6rem 0;
	}

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

	.sec01 .fig img {
		height: auto;
		        max-height: 300px;
	}

}


/*--------------------------------------
sec03
---------------------------------------*/
.sec03 .l-grid-three {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sec03 .l-grid-three::after {
	display: block;
	width: calc((100% - 4rem) / 3);
	content: "";
}

.sec03 .l-grid-three .column-small {
	width: calc((100% - 4rem) / 3);
	border: 1px solid #016bd4;
}

.sec03 .l-grid-three .l-stack-small {
	display: block;
}

.sec03 .l-grid-three .m-title01 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 6rem;
	margin: 0 0 2rem 0;
	padding: 0 0 0 7rem;
	background: url(img/title-bg-04.png) no-repeat left center;
	background-size: 55px auto;
}

.sec03 .l-grid-three .m-title01 a {
	display: block;
	width: 100%;
	padding: 0 2rem 0 0;
	background: url(img/arrow-01-blue-right.svg) no-repeat right center;
	background-size: 1rem auto;
	color: inherit;
	text-decoration: none;
	    text-align: left;
}

.sec03 .l-grid-three .fig {
	margin: 0 0 1.5rem 0;
	text-align: center;
}

.sec03 .l-grid-three .fig img {
	width: auto;
	height: 16rem;
}

.sec03 .l-grid-three table {
	margin: 2rem 0;
}


@media screen and (max-width: 767px) {
	.sec03 .l-grid-three {
		display: block;
	}

	.sec03 .l-grid-three::after {
		display: none;
		content: none;
	}

	.sec03 .l-grid-three .column-small {
		width: 100%;
		margin: 0 0 3rem 0;
	}

	.sec03 .l-grid-three .column-small:last-child {
		margin: 0;
	}

	.sec03 .l-grid-three .fig img {
		height: auto;
	}
}


/*--------------------------------------
float-wrap
---------------------------------------*/
.float-wrap {
margin: 4rem auto;
}
.float-wrap .fl {
width: 35rem;
margin: 0 3rem 1rem 0;
text-align: center;
	float: left;
}
.float-wrap .fr {
width: 35rem;
margin: 0 0 1rem 3rem;
text-align: center;
	float: right;
}
.float-wrap .ct {
width: 50rem;
margin: 0 auto 2rem auto;
text-align: center;
}
.float-wrap .catch {
margin: 0 0 1.5rem 0;
color: #016bd4;
font-size: 2rem;
font-weight: 700;
line-height: 1.4;
text-align: left;
}
.float-wrap.ct .catch {
text-align: center;
}
.float-wrap p:not([class]) {
margin: 0 0 1em 0;
}

@media screen and (max-width: 767px) {
	/*--------------------------------------
float-wrap
---------------------------------------*/
.float-wrap {
margin: 4rem 0;
}
.float-wrap .float-img.fr {
float: none;
width: 100%;
margin: 0 auto 1.5rem auto;
}
.float-wrap .float-img.fl {
float: none;
width: 100%;
margin: 0 auto 1.5rem auto;
}
.float-wrap .float-img.ct {
width: 100%;
margin: 0 auto 1.5rem auto;
}
.float-wrap .catch {
font-size: 1.8rem;
}
	}