@charset "utf-8";

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

:root {
  /* colors */
  --c-base: #342B14;       /* ベースカラー */
  --c-primary: #CFC0AC;    /* 第一アクセントカラー */
  --c-secondary: #055731;  /* 第二アクセントカラー */
  --c-tertiary: #BCB1A9;   /* 第三アクセントカラー */
  --c-quaternary: #99163F; /* 第四アクセントカラー */
  --c-fifth: #F4F1EA;	   /* 第五アクセントカラー */
  --c-white: #fff;         /* 白 */
  --c-dark: #000;          /* 黒 */
  --c-gray: #9B9B9B;         /* グレー */

  /* fonts */
  --f-base: "M PLUS 1p", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  --f-en: "Inter", sans-serif;
}

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

body {
	max-width: 1920px;
	width: 100%;
	margin: auto !important;
	font-family: var(--f-base);
	font-size: clamp(14px, 0.83vw, 16px);
	font-weight: normal;
	word-break: break-all;
	background: var(--c-primary);
	color: var(--c-base);
	position: relative;
	overflow-x: hidden;
}

body .wow {
	opacity: 0;
}

body.active .wow {
	opacity: 1;
}

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

h1, h2, h3, h4, h5, h6, p ,a, span {
    transform: rotate(0.05deg);
}

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

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

.en-title01 {
    font-family: var(--f-en);
    font-size: clamp(36px, 3.75vw, 72px);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.2em;
}

.en-title02 {
    font-family: var(--f-en);
    font-size: clamp(18px, 2.17vw, 28px);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.2em;
}

.title01 {
    font-size: clamp(20px, 1.666vw, 32px);
    font-weight: normal;
    line-height: 1.6em;
}

.title02 {
    font-size: clamp(18px, 1.666vw, 26px);
    font-weight: normal;
    line-height: 1.375em;
}

.sub-title01 {
    font-size: clamp(16px, 1.04vw, 20px);
    letter-spacing: 0.05em;
    line-height: 1.4em;
    margin: 10px 0 0;
}

.title-decoration01 {
    border-bottom: solid 2px;
    padding: 0 0 10px;
}

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

.text01 {
    line-height: 1.8em;
    letter-spacing: 0.05em;
}

.text02 {
    line-height: 2em;
    letter-spacing: 0.05em;
}

.text03 {
    line-height: 1.6em;
    letter-spacing: 0.05em;
}

.text-emphas01 > span {
    font-size: 1.3em;
    letter-spacing: 0.05em;
    line-height: 1.8em;
}

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

.btn01 {
    max-width: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: 1.2em;
    padding: 0 0 5px;
    position: relative;
}

.btn01:before, .btn01:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    transition: 0.3s;
}

.btn01:before {
    left: 0;
    right: 0;
    bottom: 0;
}

.btn01:after {
    max-width: 17px;
    right: 0;
    bottom: 5px;
    transform: rotate(33deg);
}

.btn01:hover {
    opacity: 0.65;
}

.btn01:hover:before {
    width: calc(100% + 10px);
}

.btn01:hover:after {
    right: -10px;
}

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

.btn01-secondary:before, .btn01-secondary:after {
    background: var(--c-secondary);
}

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

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

.btn01-white:before, .btn01-white:after {
    background: var(--c-white);
}

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

.btn02 {
    max-width: 338px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    border: solid 2px;
    padding: 20px 10px;
}

.btn02:hover {
    opacity: 0.65;
}

.btn02-secondary {
    background: var(--c-white);
    border-color: var(--c-secondary);
    color: var(--c-secondary);
}

.btn02-secondary:hover {
    color: var(--c-secondary);
}

.btn03 {
    max-width: 338px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    border: solid 2px;
    padding: 20px 10px;
}

.btn03:hover {
    opacity: 0.65;
}

.btn03-secondary {
    background: var(--c-secondary);
    border-color: var(--c-secondary);
    color: var(--c-white);
}

.btn03-secondary:hover {
    color: var(--c-white);
}

.btn03-quaternary {
    background: var(--c-quaternary);
    border-color: var(--c-quaternary);
    color: var(--c-fifth);
}

.btn03-quaternary:hover {
    color: var(--c-fifth);
}

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

.f-en {
	font-family: var(--f-en);
}

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

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

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

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

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

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

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

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

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

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

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

.color-base {
	color: var(--c-base) !important;
}

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

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

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

.color-quaternary {
	color: var(--c-quaternary) !important;
}

.color-fifth {
	color: var(--c-fifth) !important;
}

.color-dark {
	color: var(--c-dark) !important;
}

.color-white {
	color: var(--c-white) !important;
}

.color-gray {
	color: var(--c-gray) !important;
}

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

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

.img-rounded01-right-top {
    border-radius: 0 50px 0 0;
}

.img-rounded01-left-top {
    border-radius: 50px 0 0 0;
}

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

.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: var(--white);
	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%;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: auto;
	overflow: hidden;
}

.in-cover:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--c-primary);
    opacity: 0.8;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

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

.in-cover-title {
	font-family: var(--f-en);
	font-size: clamp(42px, 3.75vw, 72px);
	font-weight: normal;
	line-height: 1.2em;
	letter-spacing: 0.05em;
	color: var(--c-fifth);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.54);
}

.in-cover-sub-title {
    font-family: var(--font-family01);
    font-size: 18px;
    letter-spacing: 0.05em;
}

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

.breadcrumbs-wrapper {
	font-family: var(--f-en);
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.5em;
	color: inherit;
	padding: 15px 0;
}

.breadcrumbs-inner {
	max-width: 1430px;
	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;
}

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

.wrapper {
	padding: 100px 0;
	position: relative;
}

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

.inner-fluid {
    max-width: 100%;
}

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

.base-table {
	max-width: 1200px;
	width: 100%;
	letter-spacing: 0.05em;
	background: #FFFEFD;
	color: var(--c-dark);
	border: solid 1px #D0D0D0;
}

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

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

.base-table-th {
	display: flex;
	align-items: center;
	width: 100%;
	background: var(--c-secondary);
	color: var(--c-white);
}

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

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

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

.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(--f-en);
	line-height: 1em;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

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

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

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

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

.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(--white);
	border-left: solid 2px var(--white);
	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(--white);
	border-right: solid 2px var(--white);
	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;
}

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

.header {
    z-index: 99999999;
}

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

/*ハンバーガー*/

.hamburger-btn {
    max-width: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.54));
    cursor: pointer;
    transition: .3s;
    z-index: 9999999;
    margin: 0 0 0 4%;
}

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

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

.hamburger-btn-bar > div {
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: var(--c-fifth);
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    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 {
	background: var(--white)
}

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

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

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

.hamburger-text {
    font-family: var(--f-en);
    letter-spacing: 0.05em;
    line-height: 1em;
    text-align: center;
    margin: 8px 0 0;
    color: var(--c-fifth);
}

.nav-area {
    width: 100%;
    margin: auto;
    background: var(--c-white);
    transition: ease .5s;
    position: fixed;
    top: 0;
    right: 0;
    transition: .5s;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
}

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

.nav-content {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    position: relative;
    padding: 150px 15px 100px;
}

.nav-content-inner {
    max-width: 430px;
    width: 100%;
    margin: auto;
}

.nav-link {
    display: block;
    font-size: 16px;
    line-height: 2em;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--c-dark);
    padding: 0;
    margin: 20px 0 0;
}

.nav-link:hover {
	color: var(--c-gray);
}

.nav-link:first-child {
    margin: 0;
}

.nav-second {
    margin: 10px 0 0 15px;
    padding: 0 0 0 15px;
    border-left: solid 1px var(--tertiary-light);
}

.nav-second-link {
    display: block;
    letter-spacing: 0.03em;
    line-height: 1.66em;
    color: var(--gray);
}

.nav-second-link:not(:first-child) {
    margin: 5px 0 0;
}

.nav-second-link:hover {
    color: var(--primary);
}

.nav-icon-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 20px 0 0;
}

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

.nav-hamburger-btn {
    position: absolute;
    top: 40px;
    right: 24px;
    margin: auto;
}

/*スクロール時のナビ*/

.header.is-scroll {
    background: var(--c-white);
    position: fixed;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
}

.is-scroll .header-inner {
    align-items: center;
    padding: 10px 15px;
}

.is-scroll .header-logo {
    max-width: 110px;
}

.is-scroll .header-nav-link {
    color: var(--c-secondary);
}

.is-scroll .header-nav-link:hover {
    color: var(--c-gray);
}

.is-scroll .hamburger-btn-bar > div {
    background: var(--c-secondary);
}

.is-scroll .hamburger-text {
    color: var(--c-secondary);
}

/*スマホ時のナビ*/

.sp-nav {
	width: 100%;
	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(--gray);
}

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

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

.sp-nav-conte-l {
	width: 100%;
	border-right: 1px solid var(--c-secondary);
}

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

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

.sp-nav-link-text {
	margin: 6px auto 0;
	font-size: 10px;
	line-height: 1.4em;
	color: var(--c-secondary);
	text-align: center;
}

/*-----------------------------------------------------------
フッター
-----------------------------------------------------------*/

.footer-reserve-tel-box {
    font-size: clamp(20px, 2.29vw, 44px);
}

.footer-reserve-btn {
    font-size: clamp(12px, 1.04vw, 20px);
}

/*-----------------------------------------------------------
バナー
-----------------------------------------------------------*/

.banner-wrapper {
    padding: 130px 0 100px;
}

.banner-grid-block {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 50px;
}

.banner-link {
    display: block;
    max-width: 684px;
    width: 100%;
    padding: 100px 15px 30px;
    margin: auto;
    position: relative;
}

.banner-link-bg {
    width: 100%;
    height: 100%;
    border-radius: 0 0 50px 0;
    margin: auto;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.banner-link-bg > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner-link-bg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgb(209 209 209 / 75%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transition: 0.5s;
}

.banner-title-box {
    position: absolute;
    top: 0;
    right: 15px;
    left: 15px;
    transform: translateY(-20px);
}

.banner-link-inner {
    max-width: 504px;
    width: 100%;
    margin: auto;
    position: relative;
    transition-duration: 0.5s;
}

.banner-link-text {
    font-weight: 500;
}

.banner-link-btn {
	pointer-events: none;
	margin: 40px 0 0;
}

.banner-link:hover .banner-link-bg:before {
    height: 100%;
}

.banner-link:hover .banner-link-inner {
    opacity: 1;
    visibility: visible;
}

/*-----------------------------------------------------------
装飾
-----------------------------------------------------------*/

.decoration-line {
    max-width: 3px;
    width: 100%;
    height: 150px;
    position: absolute;
}

.decoration-line-inner {
    width: 100%;
    height: 100%;
}

.decoration-line-item {
    width: 100%;
    height: 100%;
    background-color: #055731;
    transition: all 1s linear;
}

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



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

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



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

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

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

/*-- 改行 --*/

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

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

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

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

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

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

/*-- 改行 --*/

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

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

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

.hamburger-btn {
    display: none;
}

/* スマホ時 */

.sp-nav {
	display: none;
}

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

/*-----------------------------------------------------------
バナー
-----------------------------------------------------------*/

.banner-grid-block {
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.banner-link {
	min-height: 350px;
}

.banner-link-bg:before {
    height: 17.36%;
}

.banner-link-inner {
    opacity: 0;
    visibility: hidden;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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



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


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

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

/*-- 改行 --*/

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

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

body {
	font-size: 16px;
}

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

.text01 {
    line-height: 2.375em;
}

.text02 {
    line-height: 3.1em;
}

.text03 {
    line-height: 2.18em;
}

.text-emphas01 > span {
    font-size: 1.75em;
    line-height: 2.45em;
}
	
/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {
    height: 500px;
}

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

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

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

.wrapper {
	padding: 160px 0;
}

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

.base-table-th, .base-table-td {
    padding: 15px 15px;
}
	
/*-----------------------------------------------------------
ページャー
-----------------------------------------------------------*/

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

/*-----------------------------------------------------------
バナー
-----------------------------------------------------------*/

.banner-wrapper {
    padding: 221px 0 160px;
}

.banner-grid-block {
    gap: 32px;
}

.banner-link {
	min-height: 455px;
    padding: 152px 20px 49px;
}

.banner-title-box {
	transform: translateY(-2.7vw);
    right: 20px;
    left: 20px;
}

.banner-link-btn {
	margin: 74px 0 0;
}

/*-----------------------------------------------------------
装飾
-----------------------------------------------------------*/

.decoration-line {
    max-width: 6px;
    height: 355px;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

/*-- 改行 --*/

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

.br-1200-block br {
	display: block;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

/*-- 改行 --*/

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

.br-1400-block br {
	display: block;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

/*-- 改行 --*/

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

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

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

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

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

/*-- 改行 --*/

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

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

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

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

/*-----------------------------------------------------------
バナー
-----------------------------------------------------------*/

.banner-title-box {
    transform: translateY(-52px);
}

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