@charset "utf-8";

/*-----------------------------------------------------------
カスタムプロパティ
-----------------------------------------------------------*/

:root {
	/* color */
  --base-body-bg: #fff;
  --base-body-color: #333;
  --primary: #124E1C;
  --secondary: #F4D88A;
  --tertiary: #FAECC5;
  	/* --quaternary: #FFF8E5;
  	--black: #000;*/
	--white: #fff;
	--dark: #000;
	--grey: #CBCBCB;

	/* font family */
	--font-family01: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	--font-family02: "Shippori Mincho B1", serif;
	--font-family03: "Cardo", serif;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

html {
	overflow-x: hidden;
}

body {
	max-width: 1920px;
	width: 100%;
	margin: auto !important;
	font-family: var(--font-family01);
	font-size: 14px;
	font-weight: regular;
  	letter-spacing: 0.05em;
	word-break: break-all;
	background: var(--base-body-bg);
	color: var(--base-body-color);
	position: relative;
	overflow-x: hidden;
}

/*body .wow {
	opacity: 0;
}*/

/*body.active .wow {
	opacity: 1;
}*/

#root {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

p > a, label > a {
	color: inherit;
	text-decoration: underline;
}

p > a:hover, label > a:hover {
	color: inherit;
}

a, button {
	transition: .3s;
}

.br-none br {
	display: none;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.w-fit-content {
    width: fit-content;
}

.js-tel-link {
	color: inherit;
}

.padding-x {
	padding: 0 15px;
}

.tel-flex {
	display: flex;
	align-items: center;
}

.hover-bright:hover {
    filter: brightness(1.3);
}

.hover-underline:hover {
	text-decoration: underline;
}

.cursol-pointer {
    cursor: pointer;
}

/*-----------------------------------------------------------
タイトル
-----------------------------------------------------------*/

.title01 {
	font-family: var(--font-family02);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.8em;
}

.title02 {
	font-family: var(--font-family02);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2em;
}

.title02 > span {
    font-size: 1.14em;
    letter-spacing: 0.05em;
    line-height: 1.6em;
}

.en-title01 {
	font-size: 18px;
	font-family: var(--font-family03);
	letter-spacing: 0;
	line-height: 1.36em;
}

.en-title02 {
	font-size: 40px;
	font-family: var(--font-family03);
	letter-spacing: 0;
	line-height: 1.35em;
}

.en-title03 {
	font-size: 32px;
	font-family: var(--font-family03);
	letter-spacing: 0;
	line-height: 1.35em;
}

.en-title04 {
	font-size: 45px;
	font-family: var(--font-family03);
	letter-spacing: 0;
	line-height: 1.1em;
}

.sub-title01, .sub-title02 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.45em;
}

.title-decoration01 {
    position: relative;
}

.title-decoration01:after {
    content: "";
    display: block;
    width: 75%;
    height: 1px;
    position: absolute;
  	top: 0;
    bottom: 0;
    right: 0;
  	margin: auto;
  	background: var(--base-body-color);
}


/*-----------------------------------------------------------
テキスト
-----------------------------------------------------------*/

.text01 {
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 2.5em;
}

.text02 {
	font-size: 15px;
	letter-spacing: 0.05em;
	line-height: 2em;
}

.lead-text-box {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2.5em;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/

.btn01 {
    max-width: 256px;
	width: 100%;
    display: flex;
	align-items: center;
	justify-content: center;
    position: relative;
    font-size: 20px;
    letter-spacing: 0.05em;
    padding: 12px 15px 16px;
	transition: all .3s;
}

.btn01:before {
    content: "";
    display: block;
    max-width: 48px;
    width: 100%;
    height: 1px;
    position: absolute;
    right: -12.5%;
    top: 50%;
	transition: all .3s;
}

.btn01:hover::before {
    right: -15%;
    transition: all .3s;
}

.btn01-primary {
	color: var(--primary);
	border: 1px solid var(--primary);
}

.btn01-primary:before {
	background: var(--primary);
}

.btn01-primary:hover {
	color: var(--primary);
}

.btn02 {
    max-width: 256px;
    width: 100%;
    padding: 18px 15px 15px 33px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all .3s;
}

.btn02-green {
    color: var(--white);
    background-color: var(--primary);
}

.btn02-green:hover {
    color: var(--white);
}

.btn02-arrow:before {
    content: "";
    position: absolute;
    top: 0;
    right: 21.5px;
    bottom: 0;
    left: auto;
    margin: auto;
    max-width: 28px;
    width: 100%;
    height: 5px;
    background: url(/system_panel/uploads/images/arrow-white.svg);
    background-size: contain;
    transition: all .3s;
}

.btn02.btn02-arrow:hover::before {
    right: 15px;
    transition: all .3s;
}

.btn02-white {
    color: var(--primary);
	border: 1px solid var(--primary) ;
    background-color: var(--white);
}

.btn02-white:hover {
	background-color: rgba(18,78,28,0.08);
    transition: all .3s;
}

.back-btn {
    max-width: 200px;
    width: 100%;
    display: block;
    padding: 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: var(--white);
    text-align: center;
    font-family: var(--font-family02);
    font-size: 16px;
    letter-spacing: 0.1em;
  	transition: all .3s;
}

.back-btn:hover {
  	color: var(--white);
    background: var(--primary);
}

.contact-link:hover {
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.1);
}

.anchor-contents03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.anchor-contents02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.anchor-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 50px;
    width: 100%;
    margin: 0 auto 0 auto;
    z-index: -1;
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/

.font-family01 {
	font-family: var(--font-family01);
}

.font-family02 {
	font-family: var(--font-family02);
}

.font-family03 {
	font-family: var(--font-family03);
}


/*-----------------------------------------------------------
背景色
-----------------------------------------------------------*/

.bg-primary {
	background-color: var(--primary) !important;
}

.bg-secondary {
	background-color: var(--secondary) !important;
}

.bg-tertiary {
	background-color: var(--tertiary) !important;
}

/* .bg-quaternary {
	background-color: var(--quaternary);
} */

.bg-black {
	background-color: var(--black);
}

.bg-white {
	background-color: var(--white);
}

.bg-grey {
	background-color: var(--grey);
}



/*-----------------------------------------------------------
マスク
-----------------------------------------------------------*/

.mask01,.mask02,.mask03,.mask04 {
  	position: relative;
}

.mask01:before {
	content:"";
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
  	width: 100%;
  	height: 100%;
    background: rgba(0, 0, 0, 0.08);
  	z-index: 1;
}

.mask02:before {
	content:"";
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
  	width: 100%;
  	height: 100%;
    background: rgba(0, 0, 0, 0.2);
  	background-size: cover;
  	z-index: 1;
}

.mask03:before {
	content:"";
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
  	width: 100%;
  	height: 100%;
    background: url(/system_panel/uploads/images/mask03.png) no-repeat center center;
  	background-size: cover;
  	z-index: 1;
}

.mask04:before {
	content:"";
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
  	width: 100%;
  	height: 100%;
    background: url(/system_panel/uploads/images/mask04.png) no-repeat center center;
  	background-size: cover;
  	z-index: 1;
}


/*-----------------------------------------------------------
文字色
-----------------------------------------------------------*/

.primary {
	color: var(--primary);
}

.secondary {
	color: var(--secondary);
}

.tertiary {
	color: var(--tertiary);
}

/* .quaternary {
	color: var(--quaternary);
} */

.black {
	color: var(--black);
}

.white {
	color: var(--white);
}

.grey {
	color: var(--grey);
}

/*-----------------------------------------------------------
画像
-----------------------------------------------------------*/

/*.img-control {
	height: 0;
	position: relative;
	padding: 0 0 100%;
}*/

.img-control > img {
	position: absolute;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}

.img-fit {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------------------
スライダー
-----------------------------------------------------------*/

.swiper + .swiper {
	margin: 10px auto 0;
}

.thumbnail-slider-item {
	cursor: pointer;
	transition: .3s;
}

.thumbnail-slider-item:hover {
	filter: brightness(0.5);
}

.swiper-slide-thumb-active {
	filter: brightness(0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #FFF;
	text-shadow: 0 0 3px #000;
	transition: .3s;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    opacity: .6;
}

/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
	max-width: 1920px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 80px 0 40px;
	margin: auto;
}

.in-cover-box {
	max-width: 1640px;
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	z-index: 9;
}

.in-cover-title {
	font-size: 45px;
	font-family: var(--font-family03);
    letter-spacing: 0.1em;
	line-height: 1.36em;
	text-align: center;
}

.in-cover-sub-title {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.45em;
	text-align: center;
}

/*-----------------------------------------------------------
パンくず
-----------------------------------------------------------*/

.breadcrumbs-wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.5em;
	color: inherit;
}

.breadcrumbs-inner {
	max-width: 1480px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 15px;
	margin: auto;
}

.breadcrumbs-link {
	display: block;
	color: inherit;
	text-decoration: underline;
}

.breadcrumbs-arrow {
	margin: 0 10px;
}

.breadcrumbs-link:hover {
	text-decoration: none;
	color: inherit;
}

/*-----------------------------------------------------------
ブロック
-----------------------------------------------------------*/

.wrapper01 {
	padding: 80px 0 80px;
	overflow: hidden;
}

.wrapper02 {
	padding: 80px 0;
	overflow: hidden;
}

.contents01 {
	max-width: 1680px;
	width: 100%;
	margin: 0 auto;
  	position: relative;
  	z-index: 5;
}

.contents02 {
	max-width: 1470px;
	width: 100%;
	margin: 0 auto;
  	position: relative;
  	z-index: 5;
}

.inner {
	max-width: 1500px;
	width: 100%;
	padding: 0 15px;
	margin: auto;
	position: relative;
}

.inner-large {
	max-width: 1450px;
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/

.base-table {
	width: 100%;
	letter-spacing: 0.05em;
	font-size: 14px;
	line-height: 1.8em;
	background: var(--white);
	color: var(--dark);
	border: solid 1px var(--grey);
}

.base-table-tr:not(:last-child) {
	border-bottom: solid 1px var(--grey);
}

.base-table-th, .base-table-td {
	padding: 15px 15px;
}

.base-table-th {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-weight: bold;
	background: var(--primary);
	color: #fff;
}

.base-table-th + .base-table-th {
	border-left: solid 1px var(--grey);
}

.base-table-td + .base-table-td {
	border-left: solid 1px var(--grey);
}

/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

/*.webgene-pagination {
	width: 100%;
}

.webgene-pagination > ul{
	padding: 0;
	display: flex;
	justify-content: center;
}

.webgene-pagination > ul > li{
	display: flex;
}

.webgene-pagination > ul > li{
	margin: 40px 10px 0;
	height: 40px;
	width:100%;
	max-width: 40px;
	font-family: var(--font-family02);
	line-height: 1em;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.webgene-pagination > ul > li.selected > a{
	color: var(--white);
	background: var(--tertiary);
	cursor: inherit;
}

.webgene-pagination > ul > li.selected > a:hover {
	color: var(--white);
	background-color: var(--tertiary);
}

.webgene-pagination > ul > li > a{
	width: 100%;
	height: 40px;
	width: 40px;
	background: var(--primary);
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
}

.webgene-pagination > ul > li > a:hover{
	color: var(--white);
	background-color: var(--tertiary);
	text-decoration: none;
}

.webgene-pagination>ul>.prev>a,
.webgene-pagination>ul>.next>a {
	position: relative;
	height: 40px;
	width: 40px;
	border: 0;
}

.webgene-pagination>ul>.prev>a:hover,
.webgene-pagination>ul>.next>a:hover {
	background-color: var(--primary);
}

.webgene-pagination>ul>.prev>a::before,
.webgene-pagination>ul>.next>a::before {
	content: "";
	display: block;
	transition: all .3s;
}

.webgene-pagination>ul>.prev>a::before {
	content: "";
	width: 14px;
	height: 14px;
	display: block;
	border-bottom: solid 2px var(--primary);
	border-left: solid 2px var(--primary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	left: 15px;
	top: 50%;
}

.webgene-pagination>ul>.prev>a:hover:before {
	border-bottom: solid 2px var(--white);
	border-left: solid 2px var(--white);
}

.webgene-pagination>ul>.next>a::before {
	content: "";
	width: 14px;
	height: 14px;
	display: block;
	border-top: solid 2px var(--primary);
	border-right: solid 2px var(--primary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 15px;
	top: 50%;
}

.webgene-pagination>ul>.next>a:hover:before {
	border-top: solid 2px var(--white);
	border-right: solid 2px var(--white);
}

.dtlPager {
	display: flex;
	justify-content: space-between;
	margin: 80px 0 0;
}

.webgene-item-aroundPageLink {
	color: #333;
	font-size: 14px;
}*/

/*-----------------------------------------------------------
バナーリンク
-----------------------------------------------------------*/

.banner-wrapper {
    padding: 80px 0;
}

.banner-inner {
    max-width: 1480px;
    width: 100%;
    padding: 0 15px;
    margin: auto;
}

.banner-container {
    padding: 0;
}

.banner-row {
    margin-top: -30px;
}

.banner-col {
    margin: 30px 0 0;
}

.banner-link {
    max-width: 700px;
    width: 100%;
    display: block;
    padding: 80px 15px 60px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 25%);
    position: relative;
    overflow: hidden;
    margin: auto;
	transition: all .3s;
}

/* .banner-link:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(90 169 153 / 55%);
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transition: 0.3s;
    z-index: 1;
} */

/* .banner-link:hover:before {
    background: rgb(49 94 85 / 55%);
} */

.banner-link:before {
	transition: all .3s;
}


.banner-link:hover:before {
    background: rgba(0, 0, 0, 0.1);
	transition: all .3s;
}

.banner-link-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-shadow: 3px 3px 10px rgb(0 0 0 / 90%);
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 250px;
    z-index: 5;
}

.banner-link-sub-title {
    margin: 5px 0 0;
}

.link-img-box {
    position: relative;
    width: 100%;
    min-height: 250px !important;
}

.link-img-box img {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    margin: auto;
    object-fit: cover;
    transition: all .5s;
}

/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

.header {
    z-index: 99999999;
}

.header-tel-icon {
    filter: drop-shadow(0px 2px 6px rgba(0,0,0,0.1));
}

.gnav-link:before {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin: auto;
    background: var(--secondary);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .3s;
}

.gnav-link:hover:before {
    width: 100%;
}

/*ハンバーガー*/

.hamburger-btn {
    max-width: 65px;
    width: 100%;
    height: 50px;
    cursor: pointer;
    transition: .3s;
    margin: 0 0 0 1%;
    position: absolute;
    top: 35px;
    right: 20px;
}

.hamburger-btn-inner {
    max-width: 40px;
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 35px;
    right: 30px;
}

.hamburger-btn:hover {
    opacity: 0.65;
}

.hamburger-btn-bar {
    max-width: 40px;
    width: 100%;
    height: 20px;
    position: relative;
}

.hamburger-btn-bar > div {
    width: 100%;
    height: 1px;
    background: var(--white);
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    box-shadow: 0 2px 0px rgb(0 0 0 / 16%);
    transition: .5s;
}

.hamburger-btn-bar > div:nth-child(1) {
    top: 0;
}

.hamburger-btn-bar > div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-btn-bar > div:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

.open .hamburger-btn-bar > div {
	box-shadow: unset;
}

.open .hamburger-btn-bar > div:nth-child(1) {
	top: 50%;
	transform: rotate(145deg) translateY(-50%);
}

.open .hamburger-btn-bar > div:nth-child(2) {
	opacity: 0;
}

.open .hamburger-btn-bar > div:nth-child(3) {
	top: 50%;
	transform: rotate(-145deg) translateY(-50%);
}

.nav-area {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    background: var(--black);
    transition: ease .2s;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999999999;
    opacity: 0;
    visibility: hidden;
}

.nav-area.open {
	opacity: 1;
	visibility: visible;
}

.nav-content {
	width: 100%;
    height: 100%;
	background: rgba(244,216,138,1);
}

.nav-content-inner {
    padding: 40px 15px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    display: flex;
    align-items: flex-start;
	justify-content: center;
    margin: 0 0 0 auto;
}

.nav-content-row {
    width: 100%;
    max-width: 532px;
    display: flex;
    align-items: center;
	justify-content: space-between;
    flex-direction: column-reverse;
    margin: 0 auto;
}

.nav-list {
    width: 100%;
    max-width: 145px;
}

.nav-link {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    color: var(--base-body-color);
    font-family: var(--font-family03);
    padding: 9px 5px;
  	text-align: center;
}

.nav-link:hover {
    color: var(--base-body-color);
}

/*.nav-hamburger-btn {
    position: absolute;
    z-index: 9;
    top: 40px;
    right: 24px;
    margin: auto;
}*/

/*スクロール時*/

.header.is-scroll {
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.header.is-scroll > .header-inner {
    padding: 10px 15px;
}

.header-reserve-banner.hidden {
    opacity: 0;
    visibility: hidden;
}

/*スマホ時のナビ*/

.sp-nav {
	width: calc(100% - 33.33%);
	height: 70px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px var(--white);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	display: flex;
	background: var(--primary);
}

.sp-nav-block {
	flex: 1;
	display: flex;
}

.sp-nav-conte-l {
	width: 50%;
	border-right: 2px solid var(--white);
}

.sp-nav-link {
	padding: 6px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.sp-nav-link-icon {
	max-width: 23px;
	width: 100%;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp-nav-btn-bar {
	max-width: 26px;
	height: 18px;
	width: 100%;
	position: relative;
}

.sp-nav-btn-text {
	margin: 5px auto 0;
	font-size: 10px;
	line-height: 1em;
	color: var(--quaternary);
}

.sp-nav-link-text {
	margin: 6px auto 0;
	font-size: 15px;
	line-height: 1.4em;
	color: var(--quaternary);
}

.sp-nav-btn {
	padding: 6px;
	width: 33.33%;
	height: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	background: var(--primary);
	z-index: 99999999;
	animation-name: fadein;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	border-top: solid 1px var(--white);
}

.sp-nav-btn-bar-item {
	width: 100%;
	height: 3px;
	background: var(--white);
	border-radius: 3px;
	position: absolute;
	left: 0;
	transition: ease .5s;
}

.sp-nav-btn-bar-item:nth-of-type(1) {
	top: 0;
}

.sp-nav-btn-bar-item:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-item:nth-of-type(3) {
	top: 100%;
	transform: translateY(-100%);
}

.open .sp-nav-btn-bar-item {
	transition: ease .5s;
}

.open .sp-nav-btn-bar-item:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.open .sp-nav-btn-bar-item:nth-of-type(2) {
	opacity: 0;
}

.open .sp-nav-btn-bar-item:nth-of-type(3) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.sp-menu {
	margin: auto;
	padding: 0;
	max-width: 1920px;
	width: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	background: var(--secondary-light);
	z-index: 9999999;
	transition: ease .5s;
}

.sp-menu.open {
	right: 0;
}

.sp-menu-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 100px 15px;
}

.sp-menu-conte {
	padding: 100px 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-menu-conte::-webkit-scrollbar {
	display:none;
}

.sp-menu-link {
	width: 100%;
	padding: 10px 0;
	display: block;
	color: var(--base-font-color);
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	text-align: center;
	position: relative;
}

.sp-menu-link:hover {
	color: var(--base-font-color);
}

.sp-menu-link-en-text {
    font-size: 12px;
    color: var(--primary);
    margin: 3px 0 0;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

}/* min-width: 375px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

	.title02 {
		font-size: 20px;
	}


}/* min-width: 414px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/

	/*-- 改行 --*/

	.br-576-none br {
		display: none;
	}

	.br-576-block br {
		display: block;
	}


	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

	.title01 {
		font-size: 18px;
	}


}/* min-width: 576px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/

	/*-- 改行 --*/

	.br-768-none br {
		display: none;
	}

	.br-768-block br {
		display: block;
	}
  
	/*-----------------------------------------------------------
	ボタン
	-----------------------------------------------------------*/
  
    .back-btn {
        max-width: 300px;
        padding: 20px;
        font-size: 18px;
    }

    .anchor-contents03 {
        grid-template-columns: repeat(3, 1fr);
    }

    .anchor-box {
        height: 80px;
    }  
  
	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

	.title01 {
		font-size: 20px;
	}

	.title02 {
		font-size: 20px;
	}


	.en-title01 {
		font-size: 20px;
	}

	.en-title02 {
		font-size: 40px;
	}

	.en-title03 {
		font-size: 40px;
	}

	.en-title04 {
		font-size: 50px;
	}

	.sub-title01, .sub-title02 {
		font-size: 18px;
	}
  
    .title-decoration01:after {
        width: 65%;
    }

	.title-decoration03:before {
		margin-right: 25px;
	}

	.title-decoration03:after {
		margin-left:25px;
	}

	/*-----------------------------------------------------------
	テキスト
	-----------------------------------------------------------*/

	.text01 {
		font-size: 14px;
	}
  
    .text02 {
        font-size: 16px;
    }

	/*-----------------------------------------------------------
	下層カバー
	-----------------------------------------------------------*/
  
    .in-cover {
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
        padding: 120px 0 70px;
    }

    .in-cover-box {
      padding: 0 40px;
    }

	.in-cover-title {
		  font-size: 55px;
	}

	.in-cover-sub-title {
		font-size: 22px;
	}

	/*-----------------------------------------------------------
	テーブル
	-----------------------------------------------------------*/

	.base-table {
		font-size: 14px;
	}
  
    /*-----------------------------------------------------------
    バナーリンク
    -----------------------------------------------------------*/  
  
    .banner-link {
		padding: 100px 15px 70px;
    }


	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/

    .hamburger-btn {
        position: relative;
        z-index: 99999999;
    }
  
    .nav-content-inner {
        padding: 120px 15px 100px;
    }
  
    .nav-link {
        font-size: 18px;
		padding: 15px 5px;
      	text-align: left;
    }
  
    .nav-link:hover {
    	color: var(--base-body-color);
      	text-decoration: underline;
    }
  
  	.nav-content {
        overflow-y: auto;
        max-width: 813px;
        width: 100%;
        margin: 0 0 0 auto;
        background: rgba(244,216,138,.94);
    }
  
    .nav-content-row {
        flex-direction: row;
    }
  
    .hamburger-left {
      max-width: 256px;
      width: 65% !important;
    }
  
    .nav-content-row {
        align-items: stretch;
    }
  
    .nav-list {
        width: 25%;
        max-width: 145px;
    }

	/* スマホ時 */

	.sp-nav {
		display: none;
	}

	.sp-nav-btn {
		display: none;
	}

}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

}/* min-width: 992px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/

	body {
		font-size: 16px;
	}

	/*-- 改行 --*/

	.br-1024-none br {
		display: none;
	}

	.br-1024-block br {
		display: block;
	}
  
	/*-----------------------------------------------------------
	ボタン
	-----------------------------------------------------------*/

    .anchor-box {
        height: 90px;
    }  
  
	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

	.title01 {
		font-size: 24px;
	}
		
	.en-title01 {
		font-size: 24px;
	}

	.en-title02 {
		font-size: 60px;
	}

	.en-title03 {
		font-size: 50px;
	}

	.en-title04 {
		font-size: 80px;
	}

	.sub-title01, .sub-title02 {
		font-size: 20px;
	}
  
    .title-decoration01:after {
        width: 75%;
    }

	.title-decoration03 {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.title-decoration03:before, .title-decoration03:after {
		max-width: 138px;
		height: 19px;
	}

	.title-decoration03:before {
		margin-right: 50px;
	}

	.title-decoration03:after {
		margin-left: 50px;
	}

	/*-----------------------------------------------------------
	テキスト
	-----------------------------------------------------------*/

	.lead-text-box {
		font-size: 18px;
	}

	.text01 {
		font-size: 15px;
	}
  
    .text02 {
        font-size: 18px;
    }
			
	/*-----------------------------------------------------------
	下層カバー
	-----------------------------------------------------------*/

    .in-cover {
        padding: 150px 0 80px;
    }

	.in-cover-title {
		font-size: 60px;
	}

	.in-cover-sub-title {
		font-size: 25px;
	}

	/*-----------------------------------------------------------
	パンくず
	-----------------------------------------------------------*/

	.breadcrumbs-wrapper {
		font-size: 14px;
	}

	/*-----------------------------------------------------------
	ブロック
	-----------------------------------------------------------*/

	.wrapper01 {
		padding: 150px 0 150px;
	}

	.wrapper02 {
		padding: 160px 0;
	}

	/*-----------------------------------------------------------
	テーブル
	-----------------------------------------------------------*/

	.base-table {
		font-size: 16px;
	}
		
	/*-----------------------------------------------------------
	ページャー
	-----------------------------------------------------------*/

	.webgene-pagination > ul > li{
		margin: 80px 10px 0;
	}

	/*-----------------------------------------------------------
	バナーリンク
	-----------------------------------------------------------*/

	.banner-wrapper {
		padding: 146px 0;
	}

	.banner-row {
		margin-top: -40px;
	}

	.banner-col {
		margin: 40px 0 0;
	}

	.banner-link {
		padding: 105px 15px 95px;
	}

	.banner-link-inner:after {
		margin: 32px auto 0;
	}

}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/

	/*-- 改行 --*/

	.br-1200-none br {
		display: none;
	}

	.br-1200-block br {
		display: block;
	}

	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

	.title01 {
		font-size: 32px;
	}

    .title02 {
          font-size: 30px;
    }

    .title02 span {
          font-size: 45px;
    }

	.en-title02 {
		font-size: 80px;
	}

	.en-title03 {
		font-size: 56px;
	}

	.en-title04 {
		font-size: 120px;
	}
  
	.sub-title02 {
		font-size: 24px;
	}

	/*-----------------------------------------------------------
	テキスト
	-----------------------------------------------------------*/

	.text01 {
		font-size: 16px;
	}
  
    .text02 {
        font-size: 20px;
    }
		
	/*-----------------------------------------------------------
	下層カバー
	-----------------------------------------------------------*/

	.in-cover-title {
		font-size: 70px;
	}

	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/

	.header-logo-link {
		width: 12.4% !important;
	}

	.header-area {
		max-width: 1549px !important;
	}
		
	.gnav {
		display: flex !important;
	}

	.header-tel-box {
		width: 23% !important;
		margin: 0 0 0 1% !important;
	}
  
	/*-----------------------------------------------------------
	ハンバーガー
	-----------------------------------------------------------*/

    .hamburger-btn-inner {
        top: 40px;
        right: 50px;
    }
  
	/*-----------------------------------------------------------
	ボタン
	-----------------------------------------------------------*/
  
    .anchor-contents {
        gap: 20px;
    }
		

}/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/

	/*-- 改行 --*/

	.br-1400-none br {
		display: none;
	}

	.br-1400-block br {
		display: block;
	}

	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

	.title01 {
		font-size: 35px;
	}
  
    .title02 {
          font-size: 38px;
    }

    .title02 span {
          font-size: 56px;
    }

	.en-title04 {
		font-size: 150px;
	}

}/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/

	/*-- 改行 --*/

	.br-1500-none br {
		display: none;
	}

	.br-1500-block br {
		display: block;
	}

	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

	.title01 {
		font-size: 40px;
	}
  

	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/

	.gnav-link {
		font-size: 18px !important;
	}

}/* min-width: 1500px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/


	/*-- 改行 --*/

	.br-1600-none br {
		display: none;
	}

	.br-1600-block br {
		display: block;
	}
  
  
	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/

    .en-title04 {
        font-size: 180px;
    }
  
  
	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/
  
    .hamburger-btn-inner {
        right: 50px;
    }

}/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1700px) {

}/* min-width: 1700px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */ 