@charset "utf-8";
/*Font Awesome*/
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
/*Google Font*/
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&family=Shippori+Mincho&family=Zen+Kurenaido&display=swap');

/*-------------------------
* PC / 全体
-------------------------*/
*
, *:before
, *:after {
	box-sizing: border-box;
}
body {
	height: auto;
	color: #595757;
 	font-family: 'Zen Kurenaido', 'Shippori Mincho', serif;
	font-size: 1.6rem;
	margin: 0;
	padding: 0;
	letter-spacing: .3rem;
	line-height: 1.6em;
}
@media screen and (max-width: 1024px) {
	body {
		font-size: 1.4rem;
	}
}
@media (max-width: 900px) {
	body {
		font-size: 1.2rem;
	}
}
h1, h2 {
	font-family: 'Shippori Mincho', sans-serif;
}
a {
	text-decoration: none;
	color: #595757;
	cursor: pointer;
}
section {
	overflow: hidden;
	text-align: center;
	padding: 50px 0 0;
}
ul {
	list-style: none;
}
select {
	cursor: pointer;
}
iframe {
	border: none;
	margin: 1px 0 -5px;
}
.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.inner {
	margin: 0 auto;
	padding: 0 4%;
}
/* PC版では非表示 */
@media (min-width: 1025px) {
    .hidden-pc {
      display: none!important;
    }
}
/* タブレットでは非表示 */
@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-tb {
    display: none!important;
  }
}
/* スマホ版では非表示 */
@media (max-width: 767px)  {
  .hidden-sp {
    display: none!important;
  }
}
/* 注意書き */
.caution {
	margin-top: 30px;
	text-align: left;
}
.caution:before {
	content: "※";
	margin-left: 10px;
}
/* 強調（太字）*/
.emphasis {
	font-weight: bold;
}
/* ブロック分割 */
.wid2 {
	width: calc(100% / 2);
}
.wid3 {
	width: calc(100% / 3);
	margin-bottom: 50px;
}
.wid4 {
	width: calc(100% / 4);
}
/* float解除 */
.clear {
	clear: both;
}
/* コンテンツ余白 */
.contents_space {
	padding-top: 80px;
}
.contents_spaceS {
	padding-top: 30px;
}
@media (max-width: 900px) {
	.flex {
		display: block;
	}
	.wid2
	, .wid3
	, .wid4 {
		display: block;
		width: 100%;
	}
}
/*--------------------------------------
◆ 背景色フェードインアニメーション
--------------------------------------*/
/* 共通設定 */
.bgFromLeft,
.bgFromRight {
	position: relative;
	height: 100%;
	margin: 0;
	padding: 2rem 0 4rem;
}
/* 左から */
.bgFromLeft:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 100%;
	background: #ededd5;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: -99;
}
/* 右から */
.bgFromRight:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 100%;
	background: #ededd5;
	top: 0;
	right: 0;
	transition: .5s;
	z-index: -99;
}
/* フェードイン */
.fade:before {
	width: 100%;
}
/*--------------------------------------
◆ 要素フェードインアニメーション（スクロール時）
--------------------------------------*/
.fadeInScrollAnime {
	opacity: 0;
	transition: all 1.5s ease-out;
}
/* その場 */
.fadeInScrollThere {
	transform: translate(0, 0);
}
/* 上から */
.fadeInScrollFromTop {
	transform: translate(0, -50px);
}
/* 下から */
.fadeInScrollFromBottom {
	transform: translate(0, 50px);
}
/* 左から */
.fadeInScrollFromLeft {
	transform: translate(-50px, 0);
}
/* 右から */
.fadeInScrollFromRight {
	transform: translate(50px, 0);
}
/* 表示 */
.scrollIn {
	opacity: 1;
	transform: translate(0, 0);
}
.delay-show {
	opacity: 0;
}
/*--------------------------------------
◆ 要素フェードインアニメーション（順番に表示）
--------------------------------------*/
.delayFadeIn {
	-webkit-animation-name: delayFadeInAnime;
	        animation-name: delayFadeInAnime;
	-webkit-animation-duration: 3s;
	        animation-duration: 3s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes delayFadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes delayFadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/*--------------------------------------
◆ 要素フェードインアニメーション（ページ読み込み時）
--------------------------------------*/
/* その場 */
.fadeInLoad {
	-webkit-animation-name: fadeInLoadAnime;
	        animation-name: fadeInLoadAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeInLoadAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeInLoadAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* 上から */
.fadeInLoadFromTop {
	-webkit-animation-name: fadeInLoadFromTopAnime;
	        animation-name: fadeInLoadFromTopAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeInLoadFromTopAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInLoadFromTopAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* 下から */
.fadeInLoadFromBottom {
	-webkit-animation-name: fadeInLoadFromBottomAnime;
	        animation-name: fadeInLoadFromBottomAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeInLoadFromBottomAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInLoadFromBottomAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* 左から */
.fadeInLoadFromLeft {
	-webkit-animation-name: fadeInLoadFromLeftAnime;
	        animation-name: fadeInLoadFromLeftAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeInLoadFromLeftAnime {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeInLoadFromLeftAnime {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
/* 右から */
.fadeInLoadFromRight {
	-webkit-animation-name: fadeInLoadFromRightAnime;
	        animation-name: fadeInLoadFromRightAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeInLoadFromRightAnime {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeInLoadFromRightAnime {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
.fadeInLoadTrigger
, .fadeInLoadFromBottomTrigger
, .fadeInLoadFromTopTrigger
, .fadeInLoadFromLeftTrigger
, .fadeInLoadFromRightTrigger {
	opacity: 0;
}
/*--------------------------------------
◆ 色出現アニメーション（スクロール時）
--------------------------------------*/
/* 共通設定 */
.colorAppear {
	position: relative;
	overflow: hidden;
	opacity: 0;
	-webkit-animation-name: colorAppearAnime;
	        animation-name: colorAppearAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes colorAppearAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes colorAppearAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.colorFromBottom:before
, .colorFromTop:before
, .colorFromLeft:before
, .colorFromRight:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 98.5%;
	background: #ff8332;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
/* 中の要素 */
.colorAppearInside {
	-webkit-animation-name: colorAppearInsideAnime;
	        animation-name: colorAppearInsideAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-delay: .3s;
	        animation-delay: .3s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes colorAppearInsideAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes colorAppearInsideAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* 上から */
.colorFromTop:before {
	-webkit-animation-name: colorFromTopAnime;
	        animation-name: colorFromTopAnime;
}
@-webkit-keyframes colorFromTopAnime {
	0% {
		transform-origin: top;
		transform: scaleY(0);
	}
	50% {
		transform-origin: top;
		transform: scaleY(1);
	}
	50.001% {
		transform-origin: bottom;
	}
	100% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
}
@keyframes colorFromTopAnime {
	0% {
		transform-origin: top;
		transform: scaleY(0);
	}
	50% {
		transform-origin: top;
		transform: scaleY(1);
	}
	50.001% {
		transform-origin: bottom;
	}
	100% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
}
/* 下から */
.colorFromBottom:before {
	-webkit-animation-name: colorFromBottomAnime;
	        animation-name: colorFromBottomAnime;
}
@-webkit-keyframes colorFromBottomAnime {
	0% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
	50% {
		transform-origin: bottom;
		transform: scaleY(1);
	}
	50.001% {
		transform-origin: top;
	}
	100% {
		transform-origin: top;
		transform: scaleY(0);
	}
}
@keyframes colorFromBottomAnime {
	0% {
		transform-origin: bottom;
		transform: scaleY(0);
	}
	50% {
		transform-origin: bottom;
		transform: scaleY(1);
	}
	50.001% {
		transform-origin: top;
	}
	100% {
		transform-origin: top;
		transform: scaleY(0);
	}
}
/* 左から */
.colorFromLeft:before {
	-webkit-animation-name: colorFromLeftAnime;
	        animation-name: colorFromLeftAnime;
}
@-webkit-keyframes colorFromLeftAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
	}
	50% {
		transform-origin: left;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: right;
	}
	100% {
		transform-origin: right;
		transform: scaleX(0);
	}
}
@keyframes colorFromLeftAnime {
	0% {
		transform-origin: left;
		transform: scaleX(0);
	}
	50% {
		transform-origin: left;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: right;
	}
	100% {
		transform-origin: right;
		transform: scaleX(0);
	}
}
/* 右から */
.colorFromRight:before {
	-webkit-animation-name: colorFromRightAnime;
	        animation-name: colorFromRightAnime;
}
@-webkit-keyframes colorFromRightAnime {
	0% {
		transform-origin: right;
		transform: scaleX(0);
	}
	50% {
		transform-origin: right;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: left;
	}
	100% {
		transform-origin: left;
		transform: scaleX(0);
	}
}
@keyframes colorFromRightAnime {
	0% {
		transform-origin: right;
		transform: scaleX(0);
	}
	50% {
		transform-origin: right;
		transform: scaleX(1);
	}
	50.001% {
		transform-origin: left;
	}
	100% {
		transform-origin: left;
		transform: scaleX(0);
	}
}
.colorAppearInsideTrigger
, .colorFromTopTrigger
, .colorFromBottomTrigger
, .colorFromLeftTrigger
, .colorFromRightTrigger {
	opacity: 0;
}
/* 枠線アニメーション */
.lineMoveTrigger {
	position: relative;
	opacity: 0;
}
.lineMoveTrigger.lineAnime {
	-webkit-animation-name: lineMoveAnime;
	        animation-name: lineMoveAnime;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes lineMoveAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes lineMoveAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* 線（上下）*/
.lineMoveTrigger:before
, .lineMoveTrigger:after {
	position: absolute;
	content: "";
	width: 0;
	height: 1px;
	background: #5c5c66;
}
/* 線（左右）*/
.lineMoveLR:before
, .lineMoveLR:after {
	position: absolute;
	content: "";
	width: 1px;
	height: 5px;
	background: #5c5c66;
	margin-right: -1px;
}
/* 上線 */
.lineMoveTrigger:before {
	top: 0;
	left: 0;
}
.lineMoveTrigger.lineAnime:before {
	-webkit-animation: lineMoveTriggerAnime .5s linear 0s forwards;
	        animation: lineMoveTriggerAnime .5s linear 0s forwards;
}
/* 下線 */
.lineMoveTrigger:after {
	bottom: 0;
	right: 0;
}
.lineMoveTrigger.lineAnime:after {
	-webkit-animation: lineMoveTriggerAnime .5s linear 1s forwards;
	        animation: lineMoveTriggerAnime .5s linear 1s forwards;
}
/* 左線 */
.lineMoveLR:after {
	bottom: 0;
	left: 0;
}
.lineMoveTrigger.lineAnime .lineMoveLR:after {
	-webkit-animation: lineMoveLRAnime .5s linear 1.5s forwards;
	        animation: lineMoveLRAnime .5s linear 1.5s forwards;
}
/* 右線 */
.lineMoveLR:before {
	top: 0;
	right: 0;
}
.lineMoveTrigger.lineAnime .lineMoveLR:before {
	-webkit-animation: lineMoveLRAnime .5s linear .5s forwards;
	        animation: lineMoveLRAnime .5s linear .5s forwards;
}
@-webkit-keyframes lineMoveTriggerAnime {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@keyframes lineMoveTriggerAnime {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes lineMoveLRAnime {
	0% {
		height: 0%;
	}
	100% {
		height: 100%;
	}
}
@keyframes lineMoveLRAnime {
	0% {
		height: 0%;
	}
	100% {
		height: 100%;
	}
}
/* 枠内の要素 */
.lineMoveTrigger.lineAnime .lineAppearInside {
	-webkit-animation: lineAppearInsideAnime .5s linear 1.5s forwards;
	        animation: lineAppearInsideAnime .5s linear 1.5s forwards;
	opacity: 0;
}
@-webkit-keyframes lineAppearInsideAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes lineAppearInsideAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*------------------
◆ header
------------------*/
#header {
	position: fixed;
	width: 100%;
	height: 110px;
	padding: 15px 40px;
	background: #f7f6f5;
	top: 0;
	left: 0;
	box-sizing: border-box;
	transition: all .3s ease;
	z-index: 99999;
}
#header .inner {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
}
#header .img-area {
	width: 14rem;
}
#header .img-area img {
	position: relative;
	width: 150%;
	display: flex;
	align-items: center;
	transition: all .3s ease;
}
#header #menu {
	list-style-type: none;
	width: 75%;
	height: 40px;
	padding: 0;
	transition: all .3s ease;
	z-index: 999;
}
#header #menu li {
	position: relative;
	width: 75%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}
#header #menu li a {
	display: block;
	width: 250px;
	margin: 0;
	padding: 12px 0 10px;
	color: #000;
	font-size: 1.5rem;
	line-height: 1;
	text-decoration: none;
}
#header #menu li ul {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
}
#header #menu li:last-child ul {
	width: 100%;
	left: -100%;
}
#header #menu li ul li {
	width: 100%;
	height: 0;
	color: #000;
	transition: .2s;
	overflow: hidden;
}
#header #menu li ul li a {
	width: 180%;
	padding: 20px 15px;
	background: #e6e4e3;
	font-size: 1.5rem;
	text-align: left;
}
#header #menu li:hover > a {
	background: #cccbca;
	color: #417038;
}
#header #menu li:hover ul li {
	overflow: visible;
	height: 60px;
	margin-top: 2px;
	border-bottom: 1px solid #f7f6f5;
}
#header #menu li:hover ul li:first-child {
	border-top: 0;
}
#header #menu li:hover ul li:last-child {
	border-bottom: 0;
}
#header .navi {
	display: flex;
	margin: 0 0 0 auto;
	padding: 0;
	list-style: none;
}
#header .navi li {
	margin: 5px 0 5px 40px;
}
#header .navi li:first-child {
	margin-left: 0;
}
#header .navi li a {
	display: block;
	box-sizing: border-box;
	text-decoration: none;
}
/* スクロール時アニメーション */
#header.scroll {
	height: 100px;
	box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
	background: #f7f6f5;
}
#header.scroll img {
	width: 120%;
}
#header.scroll #menu {
	width: 73%;
}

/* レスポンシブ */
@media (min-width: 1025px) and (max-width: 1900px) {
	#header .inner {
		width: 100%;
		justify-content: space-between;
	}
	#header .img-area{
		width: 20%;
	}
	#header img, #header.scroll img, #header .img-area img {
		width: 100% !important;
	}
	#header.scroll #menu {
		width: 80%;
		margin-left: 20px;
	}
	#header #menu li {
		width: 20%;
	}
	#header #menu li a {
		display: inline-block;
		width: 100%;
		font-size: 1rem;
	}
	#header #menu li ul li a {
		width: 150%;
		font-size: 1rem;
		line-height: 1.2;
		padding: 25px 15px;
	}
}
@media (max-width: 1365px) {
	#header .inner {
		width: 100%;
		justify-content: space-between;
	}
}
/*iPad Pro*/
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	/* header */
	#header {
		padding: 0;
	}
	#header .img-area {
		width: 10rem;
	}
	#header #menu {
		width: auto;
	}
	#header #menu li a {
		width: 150px;
		font-size: 1rem;
	}
	#header #menu li ul li a {
		font-size: 1rem;
	}
	#header #menu li:hover ul li {
		height: 50px;
		margin-top: -1px;
	}
	#header.scroll {
		height: 95px;
		box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
	}
	#header.scroll img {
		width: 10rem;
	}
	#header.scroll #menu {
		width: auto;
	}
	#header .img-area img {
		width: 120%;
	}
	.block-table {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 1024px) {
	/* header 画像 */
	.img-area-sp {
		position: relative;
		width: 100%;
		height: 75px;
	}
	.img-area-sp img {
		position: absolute;
		width: 60%;
		top: 50%;
		left: 45%;
		transform: translate(-50%,-50%);
	}
	/* ハンバーガーボタン制御 */
	.humburger {
		position: fixed;
		display: block;
		width: 70px;
		height: 70px;
		padding-top: 22px;
		color: #595757;
		top: 0;
		right: 0;
		box-sizing: border-box;
		text-align: center;
		z-index: 99999;
	}
	.humburger_wrapper {
		display: inline-block;
		width: 30px;
	}
	.humburger_text {
		font-size: 10px;
		padding-top: 2px;
	}
	.humburger-open .humburger_text.humburger_text__menu {
		display: none;
	}
	.humburger_text.humburger_text__close {
		display: none
	}
	.humburger-open .humburger_text.humburger_text__close {
		display: block;
	}
	.humburger span.humburger_bar {
		display: block;
		width: 100%;
		height: 2px;
		margin: 0 auto 8px;
		background: #595757;
		transition: all .2s ease-in-out;
	}
	.humburger span.humburger_bar:last-child {
		margin-bottom: 0;
	}
	.humburger-open .humburger span.humburger_bar {
		background: #595757;
	}
	.humburger-open .humburger span.humburger_bar.first {
		transform: translateY(9px) rotate(-45deg);
	}
	.humburger-open .humburger span.humburger_bar.second {
		opacity: 0;
	}
	.humburger-open .humburger span.humburger_bar.third {
		transform: translateY(-11px) rotate(45deg);
	}
	.humburgerButton.humburgerButton__close {
		top: 2%;
		right: 2%;
	}
	.humburgerButton__close span.humburger_bar {
		display: block;
		width: 35px;
		height: 4px;
		margin: 0 auto;
		background: #595757;
	}
	.humburgerButton__close span.humburger_bar.top {
		transform: translateY(5px) rotate(-45deg);
	}
	.humburgerButton__close span.humburger_bar.bottom {
		transform: translateY(-6px) rotate(45deg);
	}
	/* header メニュー */
	#header-sp {
		position: fixed;
		width: 450px;
		height: 100%;
		padding: 100px 10% 0 15%;
		background: rgba(255,255,255,.9);
		top: 0;
		right: 0;
		box-sizing: border-box;
		transition: all 600ms ease-out;
		transform:translateZ(0) translateX(100%);
		overflow: auto;
		z-index: 9999;
	}
	.humburger-open #header-sp {
		width: 100%;
		transform:translateZ(0) translateX(0);
	}
	.nav-item {
		position: relative;
		margin-bottom: 28px;
		margin-left: 0;
		white-space: nowrap;
	}
	.nav-child {
		position: absolute;
		padding: 10px;
		top: 3px;
		left: 80%;
		z-index: 20;
		transition: all 200ms ease-out;
		transform-origin: center;
	}
	.open.js_fire > .nav-child {
		transform: rotate(180deg);
	}
	.open.js_fire > .nav-child > .open-change-wrapper:after {
		transform: rotate(90deg);
		opacity: 0;
	}
	.open-change-wrapper {
		position: relative;
		width: 20px;
		height: 20px;
		transition: all 200ms ease-out;
		transform-origin: center;
	}
	.open-change-wrapper:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 1px;
		background: #595757;
		top: calc(50% - 1px);
	}
	.open-change-wrapper:after {
		content: "";
		position: absolute;
		width: 1px;
		height: 100%;
		background: #595757;
		left: calc(50% - 1px);
		transition: all 200ms ease-out;
	}
	.nav_child {
		padding-top: 20px;
	}
	.nav_child_item {
		position: relative;
		font-size: 1.2rem;
		padding-left: 20px;
		margin-bottom: 10px;
	}
	.nav_child_item > a {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
	}
	.nav_child_item:last-child {
		margin-bottom: 0px;
	}
	.open-change-item {
		display: none;
	}
	.block-table {
		font-size: 1rem;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	/* header 画像 */
	.img-area-sp {
		position: relative;
		width: 100%;
		height: 75px;
	}
	.img-area-sp img {
		position: absolute;
		height: 70px;
		-o-object-fit: contain !important;
		   object-fit: contain !important;
		font-family: 'object-fit: contain !important;';
		top: 50%;
		left: 45%;
		transform: translate(-50%,-50%);
	}
}
/*---------------------------
◆ hoverマスク
---------------------------*/
.more .mask {
	position: absolute;
	width: 100%;
	height: 350px;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.5);
	z-index: 10;
	overflow: hidden;
}
.more .mask-text {
	position: absolute;
	width: 100%;
	height: 350px;
	top: 100%;
	left: 0;
	color: #f7f6f5;
	text-align: center;
	transition: all .5s ease;
}
.more .mask-hover {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .5s ease;
}
.more:hover .mask-hover {
	opacity: 1;
}
.more:hover .mask-text {
	top: 100%;
	transform: translateY(-50%);
}
/*---------------------------
◆ リスト（枠線はみ出し）
---------------------------*/
.list_border-over {
	position: relative;
	padding: 1em 0em .5em;
	border-top: 1px solid #99865c;
	border-bottom: 1px solid #99865c;
}
.list_border-over:before,
.list_border-over:after {
	content: "";
	position: absolute;
	width: 1px;
	height: calc(100% + 20px);
	background: #99865c;
	top: -10px;
	z-index: -99;
}
.list_border-over:before {
	left: 10px;
}
.list_border-over:after {
	right: 10px;
}
.list_border-over .list_border-over-head {
	display: flex;
	background: #9dbc60;
	z-index: 10;
}
.list_border-over .list_border-over-head h2 {
	width: 100%;
	color: #fff;
	margin: .3em .3em .3em .8em;
}
.list_border-over .contents h4 {
	text-align: center;
}
.list_border-over .contents {
	padding: .5em 1.5em;
	text-align: left;
	line-height: 1.6em;
}
/*--------------------------
◆ リスト（ドット）
--------------------------*/
.list_dot-table
, .list_dot-table > dt
, .list_dot-table > dd {
	box-sizing: border-box;
}
.list_dot-table > dt
, .list_dot-table > dd {
	padding: 20px 30px;
	margin: 0px;
}
.list_dot-table > dt {
	color: #fff;
	background: #68a225;
}
.list_dot-table > dd {
	background: #fff;
}
/* (768px以上) */
@media screen and (min-width: 768px) {
	.list_dot-table {
		display: flex;
		flex-wrap: wrap;
		border-bottom: 1px dotted #ddd;
	}
	.list_dot-table > dt
	, .list_dot-table > dd {
		display: flex;
		flex-direction: column;
		justify-content: center;
		border-top: 1px dotted #ddd;
	}
	.list_dot-table > dt {
		width: 30%;
	}
	.list_dot-table > dd {
		width: 70%;
		text-align: left;
	}
}
@media (max-width: 767px) {
	.list_dot-table > dd {
		border: 1px solid #ddd;
		border-top: none;
	}
	.list_dot-table > dt
	, .list_dot-table > dd {
		padding: 20px 10px;
		text-align: center;
	}
	.list_dot-table > dd > ul {
		text-align: left;
	}
}
/*------------------------------
◆ 見出し
------------------------------*/
.index-head span {
	color: #bf925b;
	font-size: 1rem;
}
/*------------------------------
◆ ボタン
------------------------------*/
.btn,
a.btn,
button.btn {
	position: relative;
	display: inline-block;
	font-weight: 700;
	line-height: 1.5;
	padding: 1rem 4rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: all .3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: .1em;
	color: #212529;
	border-radius: .5rem;
	z-index: 99;
}
/* 詳しくはこちら */
.btnArea {
	margin: 5rem 0 0;
}
a.btn-link {
	font-size: 1.2rem;
	color: #595757;
	background: transparent;
	padding: .5rem 1rem .5rem 2rem;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid #595757;
}
a.btn-link span {
	position: relative;
}
a.btn-link:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: all .5s ease-in-out;
	transform: translateX(-96%);
	background: rgba(110, 170, 53, 0.9);
}
a.btn-link:hover {
	color: #fff;
}
a.btn-link:hover:before {
	transform: translateX(0%);
}
.btn-link .fa-chevron-right {
	margin-left: 10px;
}
/*------------------------------
◆ 画像関連
------------------------------*/
.img-order {
	flex-direction: column;
}
.order1 {
	order: 1;
}
.order2 {
	order: 2;
}
.order3 {
	order: 3;
}
.order4 {
	order: 4;
}
/*------------------------------
◆ footer
------------------------------*/
.wave {
	position: relative;
	height: 300px;
}
.wave canvas {
	position: absolute;
	width: 100%;
	bottom: 0;
	left:0;
}
.footer .flex .wid5 {
	padding: 0 20px;
}
.footer {
	position: relative;
	width: 100%;
	height: auto;
	color: #fff;
	background-color: rgba(110, 170, 53, 0.8);
	padding: 1% 2% 2%;
}
.footer .logo {
	margin-top: 30px;
}
.footer .logo img {
	position: relative;
	width: 20rem;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
}
.footer h3 {
	padding: 40px 0 10px;
	font-weight: 600;
	line-height: 27px;
	border-bottom: 1px solid #c70067;
}
.footer ul {
	color: #7f8c8d;
	font-size: 1.4rem;
	margin: 15px 0 20px 0;
	padding-left: 0;
	list-style-type: none;
}
.footer ul li a {
	display: block;
	color: #fff;
	padding: 0 0 10px 0;
}
.footer ul li a:hover {
	color: #ee7800;
}
.supportLi h4 {
	padding-bottom: 0;
	margin-bottom: 0 !important;
	font-weight: lighter;
	line-height: normal;
}
.footer .copyright {
	padding: 50px 0 10px;
	text-align: center;
	letter-spacing: .1rem;
}
/* ボタン */
.footer .btn,
.footer a.btn,
.footer button.btn {
	padding: 1rem 2rem 1rem 4rem;
}
.btn-tel
, a.btn-tel
, .btn-contact
, a.btn-contact {
	width: 100%;
	color: #fff !important;
	background: transparent;
	font-size: 1.6rem;
	border-radius: 0%;
	border: 1px solid #fff;
}
.btn-tel
, a.btn-tel {
	margin-bottom: 10px;
}
.btn-tel:hover
, a.btn-tel:hover {
	color: #fff !important;
	background: #29991f;
}
.btn-contact:hover
, a.btn-contact:hover {
	color: #fff !important;
	background: #f58331;
}
.fa-left {
	font-size: 1.5em !important;
	position: absolute;
	top: calc(50% - .5em);
	left: 1rem;
}
/* レスポンシブ */
@media (min-width: 1025px) and (max-width: 1900px) {
	.footer .flex .wid5 {
		width: calc(100% / 5.3);
		font-size: 1.2rem !important;
		padding: 0;
	}
	.btn-tel, a.btn-tel, .btn-contact, a.btn-contact {
		font-size: 1.2rem !important;
	}
}
@media (max-width: 1365px) {
	.footer .flex {
		display: block;
	}
	.footer .flex .wid5 {
		width: 100%;
	}
	.btn-tel, a.btn-tel, .btn-contact, a.btn-contact {
		font-size: 1.2rem !important;
	}
}
/*iPad Pro*/
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.footer .flex {
		display: block;
	}
	.footer .flex .wid5 {
		width: 100% !important;
	}
}
@media screen and (max-width: 1024px) {
	.footer .flex {
		display: block;
	}
}
@media (max-width: 767px) {
	.footer .logo img {
		max-width: 80%;
	}
}

/*------------------------------
◆ PAGE TOP
------------------------------*/
#pagetop {
	position: fixed;
	bottom: 0;
	right: 0;
	margin: 0;
	z-index: 999;
}
#pagetop a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	background: rgba(157,188,96,.9);
	transition: opacity .6s ease;
}
#pagetop a:hover {
	opacity: .6;
}
#pagetop a:before {
	content: "";
	position: absolute;
	display: block;
	width: 15px;
	height: 15px;
	margin: auto;
	top: 7px;
	bottom: 0;
	right: 0;
	left: 0;
	transform: rotate(-45deg);
	border-top: 2px solid #f7f6f5;
	border-right: 2px solid #f7f6f5;
}
/*レスポンシブ*/
@media (max-width: 900px) {
	#pagetop a {
		width: 45px;
		height: 45px;
	}
	#pagetop a:before {
		width: 10px;
		height: 10px;
		top: 5px;
	}
}
/*------------------------------
◆ table
------------------------------*/
/* 線 */
table {
	width: 100%;
	border-spacing: 0;
	margin: 0 auto;
}
table th {
	width: 40%;
	border-bottom: 1.5px solid #0067e6;
	padding: 25px 0;
	overflow: hidden;
}
table td {
	border-bottom: 1.5px solid #595757;
	text-align: left;
	padding: 25px 15px;
}
/* ブロック */
.block-table {
	position: relative;
	display: block;
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	padding: 0;
	font-size: 1.4rem;
}
.block-table tr {
	background: #fff;
	border: 2px solid #eee;
	border-top: none;
}
.block-table th {
	width: 400px;
	border-right: 2px solid #dedede;
}
.block-table td {
	text-align: center;
	border-right: 2px solid #dedede;
}
.block-table thead tr {
	color:#fff;
	background: #5c5c66;
}
.block-table tbody th {
	width: 100px;
	border-right: 2px solid #dedede;
}
/*レスポンシブ*/
@media (max-width: 900px) {
	/* 線 */
	table th {
		display: block;
		width: 100%;
	}
	table td {
		display: block;
		width: 100%;
	}
	/* ブロック */
	.block-table {
		font-size: 1rem;
		overflow-x: scroll;
	}
	.block-table tr {
		background: #fff;
		border: 2px solid #eee;
		border-top: none;
		white-space: nowrap;
	}
	.block-table th {
		display: table-cell !important;
		width: 30% !important;
		min-width: 200px !important;
		border-right: 2px solid #dedede;
	}
	.block-table td {
		display: table-cell !important;
		text-align: center;
		border-right: 2px solid #dedede;
	}
}
/*------------------------------
◆ フロー
------------------------------*/
.flow {
	padding-left: 120px;
	position: relative;
}
.flow:before {
	content: "";
	display: block;
	position: absolute;
	width: 15px;
	height: 100%;
	background: rgb(146,146,156);
	background: linear-gradient(180deg, rgba(146,146,156,1) 0%, rgba(247,246,245,1) 100%);
	margin-left: -8px;
	top: 0;
	left: 150px;
}
.flow li {
	list-style-type: none;
	text-align: left;
}
.flow > li {
	position: relative;
}
.flow > li:not(:last-child) {
	margin-bottom: 8vh;
}
.flow > li .step-number {
	display: block;
	position: absolute;
	background: #001e43;
	color: #fff;
	padding: 8px 20px;
	top: 0;
	left: -15%;
	z-index: 100;
	box-shadow: 0px 0px 15px -5px #dad9d9;
}
.flow > li .step-number:after {
	content: "";
	position: absolute;
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #001e43;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
}
.flow > li dl {
	padding-left: 70px;
	position: relative;
}
.flow > li dl:before
, .flow > li dl:after {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
}
.flow > li dl:before {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	background: #595757;
	left: 26px;
}
.flow > li dl:after {
	position: absolute;
	width: 25px;
	left: 35px;
	border-bottom: 1px dashed #999;
}
.flow > li dl dt {
	color: #8fccb8;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: left;
	margin-bottom: 1vh;
}
/*------------------------------
◆ タイムライン
------------------------------*/
.timeline {
	padding: 60px 0;
}
.timeline ul {
	width: 65%;
	margin: 0 auto;
	padding-left: 0;
}
.timeline ul li {
	position: relative;
	padding-top: 100px;
}
.timeline ul li p.time {
	position: absolute;
	display: flex;
	width: 230px;
	height: 80px;
	color: #fff;
	background: #8fccb8;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	font-size: 2.5rem;
	text-align: center;
	font-weight: bold;
	justify-content: center;
	align-items: center;
	letter-spacing: 3px;
	z-index: 10;
}
.timeline ul li p.time:before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	right: 4px;
	left: 4px;
	border: 1px solid #fff;
	z-index: 2;
}
.timeline ul li div.img {
	width: 480px;
	padding-bottom: 15px;
}
.timeline ul li:nth-child(odd) div.img:after
, .timeline ul li:nth-child(even) div.img:after {
	content: "";
	position:absolute;
	width: 480px;
	height: 356px;
	background-image: url(../img/grey_back.png);
	background-repeat: no-repeat;
	background-position: 35% top;
	transform: rotateX(180deg);
	bottom: 30px;
	z-index: -5;
}
.timeline ul li:nth-child(odd) div.img:after {
	left: -10px;
}
.timeline ul li:nth-child(even) div.img:after {
	right: -10px;
}
.timeline ul li div.img img {
	width: 100%;
	height: 350px;
	-o-object-fit: cover;
	   object-fit: cover;
	font-family: 'object-fit: cover;';
}
.timeline ul li div.contents {
	position: absolute;
	width: 500px;
	height: 26vh;
	margin: auto;
	font-size: 1.9rem;
	top: 0;
	bottom: 0;
}
.timeline ul li .title {
	font-size: 2.5rem;
	font-weight: bold;
}
.timeline ul:before {
	position: absolute;
	content: "";
	width: 3px;
	height: 210rem;
	background: #8fccb8;
	margin: auto;
	left: 0;
	right: 0;
	z-index: 0;
}
.timeline ul li:nth-child(odd) div.contents {
	right: 0;
}
.timeline ul li:nth-child(even) div.contents {
	left: 0;
}
.timeline ul li:nth-child(2n) div.contents {
	left: 0;
}
.timeline ul li:nth-child(2n) div.img {
	margin-left: auto;
}
/* レスポンシブ微調整 */
@media only screen and (max-width:1600px) {
	.timeline ul {
		width: 75%;
	}
	.timeline ul li .title {
		margin: .3em auto;
	}
	.timeline ul li div.img {
		width: 40%;
	}
	.timeline ul li div.img img {
		width: 96%;
		height: 250px;
	}
	.timeline ul li:nth-child(odd) div.img:after, .timeline ul li:nth-child(even) div.img:after {
		width: 96%;
		height: 100%;
	}
	.timeline ul li div.contents {
		width: 45%;
	}
	.timeline ul:before {
		height: 164rem;
	}
}
@media only screen and (max-width:1300px) {
	.timeline {
		padding: 60px 6%;
	}
	.timeline ul {
		width: 90%;
	}
	.timeline ul li {
		padding-top: 45px;
		padding-bottom: 0;
	}
	.timeline ul li p.time {
		width: 130px;
		font-size: 26px;
	}
	.timeline ul li div.contents {
		width: 40%;
		height: 26vh;
	}
	.timeline ul:before {
		height: 144rem;
	}
	.timeline ul li:nth-child(odd) div.contents {
		right: 2%;
	}
	.timeline ul li:nth-child(2n) div.contents {
		left: 2%;
	}
}
@media only screen and (max-width:780px) {
	.timeline ul li div.contents {
		height: 15vh;
	}
}
@media only screen and (max-width:750px) {
	.timeline {
		padding: 0px 6% 30px;
	}
	.timeline ul li p.time {
		position: static;
		width: 130px;
		margin: 0 auto 0.5em 0;
		font-size: 6vw;
	}
	.timeline ul li div.img {
		width: 100%;
	}
	.timeline ul li div.img img {
		width: 96%;
	}
	.timeline ul li div.contents {
		position: static;
		width: auto;
		height: auto;
		padding: 0 6% 2em 2%;
	}
	.timeline ul:before {
		display: none;
	}
	.timeline ul li:last-child:before {
		display: none;
	}
}
/*------------------------------
◆ 枠
------------------------------*/
.list_border {
	position: relative;
	width: 100%;
	padding: .5em;
	margin: 0 auto;
	background: #fff;
	border: 3px solid #417038;
}
.list_border:before
, .list_border:after {
	content: "";
	position: absolute;
	width: 35px;
	height: 35px;
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: #417038;
}
.list_border:before {
	top: 5px;
	left: 5px;
}
.list_border:after {
	right: 5px;
	bottom: 5px;
	transform: scale(-1,-1);
}
.list_border .contents {
	padding: 1em;
}
/*------------------------------
◆ 影付きbox
------------------------------*/
.box-inner {
 margin: 0 auto;
 padding: 2% 4%;
}
.box-first
, .box-second
, .box-third
, .box-fourth {
	padding-top: -5px;
	background: #f7f6f5;
}
.shadow-box {
	height: 700px;
	margin: 0 20px;
	overflow: hidden;
	z-index: 5;
	border: 1px solid #000;
	box-shadow: 5px 5px 0px 0px #9c9c9c;
}
.shadow-box img {
	width: 100%;
	height: 300px;
	-o-object-fit: cover;
	   object-fit: cover;
	font-family: 'object-fit: cover;';
	transition: .5s all;
}
.shadow-box p {
	height: 150px;
}
.shadow-box .btnArea {
	margin: 2rem 0 0;
}
