@charset "UTF-8";
img {
	width: 100%;
	height: auto;
}
.fin {
	opacity : 0;
	transform : translate(0,20px);
	transition : all 1.5s;
}
.fin.sin {
	opacity : 1;
	transform : translate(0,0);
}
.brsp, .sp, .sp-only {
	display: none!important;
}
.abox {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.scale-bg .bg {
	position: relative;
	overflow: hidden;
}
.scale-bg .bg img {
	transform: scale(1);
	transition: all .5s;
}
.scale-bg:hover .bg img {
	transform: scale(1.08);
}


/*　共通ボタン　*/
.btn {
	margin: 0 auto;
	width: auto;
	height: 100%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn p {
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 600;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	text-align: center;
}
.btn:after {
	position: absolute;
	content: "";
	top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	width: 100%;
	height: 100%;
	background: #EA5404;
	z-index: -2;
}
.btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #F6AB00;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}


/*ヘッダ*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 96px;
	transition: all .3s;
	background: rgba(255, 255, 255, 0);
	z-index: 200;
}
header.mini {
	background: rgba(255, 255, 255, 1);
}
.logo {
	width: 15%;
	max-width: 280px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 40px;
	z-index: 3000;
}
.logo img {
	width: 200px;
	display: inline-block;
}
.logo p {
	display: inline-block;
	position: absolute;
	left: 220px;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
}


/*　グローバルメニュー　*/
#hanburger {
	display: none; /* チェックボックスを非表示 */
}
.global_menu { /* メニュー全体のスタイル */
	width: 100%;
	position: relative;
}
/*エントリーボタンが1コのとき
 .global_menu > ul {
	text-align: right;
	box-sizing: border-box;
	padding-right: 10%;
} */

.global_menu > ul {
	text-align: right;
	box-sizing: border-box;
	padding-right: 18%;
}
.global_menu > ul > li {
	display: inline-block;
	height: 96px;
	margin: 0 30px;
	text-align: left;
}
.global_menu > ul > li.cs {
	opacity: .4;
	pointer-events: none;
}
.global_menu > ul > li > .ttl2 {
	display: none;
}
.global_menu > ul > li > .ttl {
	display: block;
	position: relative;
	height: 100px;
	box-sizing: border-box;
	padding: 25px 0 0;
	cursor: pointer;
}
.global_menu > ul > li > .ttl p {
	font-size: min(1.1vw,14px);
	font-weight: 500;
	color: #F08200;
	line-height: 1.6em;
	text-decoration: none;
	cursor: pointer;
	transition: all .5s;
}
.global_menu > ul > li > .ttl p span {
	font-size: min(1.5vw,18px);
	font-weight: 600;
	letter-spacing: .1em;
	color: #162F3A;
	display: block;
	transition: all .5s;
}
.global_menu > ul > li.menu:hover .ttl p,
.global_menu > ul > li.menu:hover .ttl p span {
	color: #FF5F19;
}
.global_menu > ul > li > .child_menu {
	display: block;
  width: 100%;
  position: absolute;
  top: 96px;
  left: 0;
  padding: 50px 0;
  background: #EAE2C6;
  visibility: hidden;
  opacity: 0;
  transition: .5s opacity;
}
.global_menu > ul > li.menu:hover .child_menu {
	top: 100%;
  opacity: 1;
  visibility: visible;
}
.global_menu > ul > li .child_menu .content-box > p {
	text-align: left;
	font-size: 14px;
	color: #F08200;
	font-weight: 500;
	margin-bottom: 10px;
}
.global_menu > ul > li .child_menu .content-box > p span {
	display: block;
	font-size: 40px;
	font-weight: 600;
	color: #162F3A;
	letter-spacing: .1em;
	padding-bottom: 10px;
}
.global_menu > ul > li .child_menu .content-box > ul li {
	display: inline-block;
	padding: 0;
	margin-right: 20px;
	height: 50px;
	box-sizing: border-box;
	border: solid 1px #162F3A;
	background: #F5F2E7;
	transition: all .3s;
}
.global_menu > ul > li .child_menu .content-box > ul li > a {
	display: block;
	font-size: 16px;
	line-height: 50px;
	padding: 0 65px 0 15px;
	font-weight: 500;
	color: #162F3A;
	text-decoration: none;
	position: relative;
	z-index: 3;
}
.global_menu > ul > li .child_menu .content-box > ul li > a:before {
	width: 48px;
	height: 48px;
	border-left: solid 1px #162F3A;
	background-image: url("../img/common_img/icon-view.svg");
	background-size: 22px auto;
	background-position: center center;
	background-color: #F98E00;
	box-sizing: border-box;
	right: 0;
	top: 0;
	z-index: 1;
}
.global_menu > ul > li .child_menu .content-box > ul li:hover {
	background: #FFF;
}
/*ボタン1コのとき
.entry-btn {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 15%;
	max-width: 100px;
	height: 96px;
}
.entry-btn ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.entry-btn ul li {
	width: 100%;
	position: relative;
	height: 96px;
	transition: all .3s;
} */
/*ボタン2コのとき*/
.entry-btn {
	position: absolute;
	top: 0px;
	right: 20px;
	width: 15%;
	max-width: 192px;
	height: 96px;
}
.entry-btn ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.entry-btn ul li {
	width: 48%;
	position: relative;
	height: 96px;
	transition: all .3s;
}
.entry-btn ul li p {
	position: relative;
	padding: 40px 0 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 14px;
	text-align: center;
	line-height: 1.2em;
	color: #FFF;
	font-weight: 500;
}
.entry-btn ul li:nth-child(1) {
	background: #FF5F19;
}
.entry-btn ul li:nth-child(1):hover {
	background: #FA4C00;
}
.entry-btn ul li:nth-child(1) p:before {
	background-image: url("../img/common_img/entry-icon.svg");
	width: 28px;
	height: 30px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.entry-btn ul li:nth-child(2) {
	background: #34D1BD;
}
.entry-btn ul li:nth-child(2):hover {
	background: #19B6A2;
}
.entry-btn ul li:nth-child(2) p:before {
	background-image: url("../img/common_img/entry-icon.svg");
	width: 28px;
	height: 30px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
/*マイページボタン
.entry-btn ul li:nth-child(2) p:before {
	background-image: url("../img/common_img/mypage-icon.svg");
	width: 24px;
	height: 36px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}*/
@media screen and (max-width: 1300px) {
	.logo {
		width: 15%;
		max-width: 180px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 20px;
		z-index: 3000;
	}
	.logo img {
		width: 120px;
		display: inline-block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	.logo p {
		font-size: 12px;
		font-weight: 500;
		display: inline-block;
		position: absolute;
		left: 130px;
		top: 50%;
		transform: translateY(-50%);
		white-space: nowrap;
	}
	.global_menu > ul > li {
		margin: 0 6px;
	}
}


/*　フッター　*/
footer {
	background: #F5F2E7;
	padding: 40px 5%;
	position: relative;
}
footer:before {
	width: 90%;
	height: 8px;
	border-top: solid 1px #162F3A;
	border-bottom: solid 1px #162F3A;
	background: #F5A73C;
	left: 5%;
	top: 0;
}
footer ul {
	padding: 0 1%;
	display: flex;
	flex-wrap: wrap;
}
footer ul li {
	margin-right: 20px;
}
footer ul li a {
	text-decoration: none;
	font-weight: 500;
}
footer ul li a:hover {
	text-decoration: underline;
}
footer > p {
	position: absolute;
	right: 5%;
	white-space: nowrap;
	font-size: 11px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 500;
}



/*　共通スタイル　*/
.btn-arrow:after {
	width: 48px;
	height: 48px;
	border: solid 1px #162F3A;
	background-image: url("../img/common_img/icon-view.svg");
	background-size: 22px auto;
	background-position: center center;
	background-color: #F98E00;
	box-sizing: border-box;
	right: -1px;
	bottom: -1px;
	z-index: 1;
}
.txt-btn {
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
	background: #F5F2E7;
	border: solid 1px #162F3A;
	transition: all .3s;
}
.txt-btn:hover {
	background: #FFF;
}
.txt-btn p {
	width: calc(100% - 50px);
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 48px;
}
.txt-btn:after {
	width: 50px;
	height: 50px;
	border: solid 1px #162F3A;
	background-image: url("../img/common_img/icon-view.svg");
	background-size: 22px auto;
	background-position: center center;
	background-color: #F98E00;
	box-sizing: border-box;
	right: -1px;
	bottom: -1px;
	z-index: 1;
}
.content-box-wide {
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
}
.content-box {
	width: 90%;
	max-width: 1120px;
	margin: 0 auto;
}
.content-box-narrow {
	width: 90%;
	max-width: 920px;
	margin: 0 auto;
}
.split {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.txt-orange {
	color: #FF5F19;
	font-weight: 500;
}
.txt-green {
	color: #00B29B;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	padding: 0 0 15px;
}

/*　ページ内リンク　目次　*/
.inner-link {
	width: 160px;
	min-height: 190px;
	box-sizing: border-box;
	padding: 15px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	background: #fff;
	box-shadow: 0px 0px 8px rgba(110, 105, 88, 0.2);
	z-index: 3;
}
.inner-link > p {
	display: inline-block;
	font-weight: 600;
	background: #F5A73C;
	padding: 0 35px 0 10px;
	line-height: 1.6em;
	font-size: 14px;
	margin-bottom: 10px;
}
.inner-link ul li {
	line-height: 1.6em;
	display: block;
}
.inner-link ul li a {
	position: relative;
	box-sizing: border-box;
	display: block;
	padding-left: 20px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.01em;
}
.link-current:before {
  width: 8px;
	height: 3px;
	background: #00B29B;
	left: 0;
	top: 50%;
}





.page-style01,
.page-style02 {
	background: #F5F2E7;
}
.page-style01 main {
	margin: 96px 0 0;
}
.page-style02 main {
	margin: 96px 0 0;
}
.page-style01 .ttl-box {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: 48px;
}
.page-style01 h1 {
	font-size: 56px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: .09em;
	display: inline-block;
	padding: 0 40px 0 0;
}
.page-style01 h1 span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: #F08200;
	letter-spacing: .04em;
}
.page-style01 .ttl-box > p {
	position: relative;
}
.page-style01 .ttl-box > p span {
	position: relative;
	display: inline-block;
	padding: 0 0 0 40px;
	line-height: 80px;
	border-left: solid 1px #F08200;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 500;
}
.page-style01:not(.about) h2 {
	font-size: 56px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: .09em;
	display: inline-block;
	padding: 0 40px 0 0;
	margin-bottom: 48px;
}
.page-style01:not(.about) h2 span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: #F08200;
	letter-spacing: .04em;
}
.page-style01 .cc,
.about h2,
.page-style01 h3,
.page-style02 h2 {
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	position: relative;
	margin-bottom: 40px;
}
.page-style01 .bg.main {
	width: 100%;
	padding-bottom: 80px;
}
.box-white {
	box-sizing: border-box;
	padding: 0 0 80px;
	background: #FFF;
}
.box-white.pt {
	padding-top: 80px;
}
.page-style01 .box-clear {
	padding: 80px 0;
	position: relative;
}
.page-style01 .box-clear.end {
	padding: 80px 0 120px;
}
.page-style01 .box-clear.end:after {
	width: 100%;
	height: 100px;
	background: #FFF;
	bottom: 0;
	left: 0;
}
.page-style01 .ex-line {
	position: relative;
}
.page-style01 .ex-line:before {
	width: 100%;
	height: 8px;
	border-top: solid 1px #162F3A;
	border-bottom: solid 1px #162F3A;
	background: #F5A73C;
	left: 0;
	top: 0;
}
.box-white .ex-line.pt {
	margin-top: 64px;
	padding-top: 64px;
}
.box-white .ex-line.pt2 {
	margin-top: 0;
	padding-top: 64px;
}
.block-end {
	margin-bottom: 80px;
}



.bottom-links {
	margin: 50px 0 100px;
}
.bottom-links > p {
	text-align: center;
	font-size: 40px;
	font-weight: 600;
}
.bottom-links > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 92%;
	margin: 30px auto;
}
.bottom-links > ul li {
	width: 31.33%;
	margin: 0 1%;
	height: 48px;
	box-sizing: border-box;
	position: relative;
	background: #F5F2E7;
	border: solid 1px #162F3A;
	transition: all .3s;
}
.bottom-links > ul li:hover {
	background: #FFF;
}
.bottom-links > ul li p {
	width: calc(100% - 48px);
	text-align: center;
	font-size: min(1.2vw,16px);
	font-weight: 600;
	line-height: 48px;
}



.point {
	position: relative;
	margin: 0 0 20px;
	display: inline-block;
	padding: 0 15px;
	background: #34D1BD;
	border: solid 1px #162F3A;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6em;
	left: 50%;
	transform: translate(-50%,20px);
}
.point.sin,
.point:not(.sin) {
	transform: translate(-50%,0);
}

dl.outline {
	width: 100%;
	margin: 0 auto 80px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
dl.outline dt,
dl.outline dd {
	padding: 15px 10px;
	box-sizing: border-box;
}
dl.outline dt {
	width: 25%;
	border-bottom: solid 2px #F5A73C;
	font-weight: 500;
}
dl.outline dd {
	width: 75%;
	border-bottom: solid 2px #F5F2E7;
}
dl.outline dd span {
	font-weight: 600;
}
dl.outline dd .dot-list li {
	padding-left: 22px;
	padding-bottom: 10px;
	position: relative;
}
dl.outline dd .dot-list li:before {
	content: "■";
	color: #F08200;
	font-size: 12px;
	left: 0;
	top: .0em;
}

.dtxt {
	position: relative;
	padding-bottom: 20px;
}
.dtxt span {
	font-size: min(1.8vw,18px);
	display: inline-block;
	font-weight: 500;
	background: #F5A73C;
	border: solid 1px #162F3A;
	margin-bottom: 4px;
	padding: 0 10px;
}