@charset "utf-8";

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

:root {
  /* colors */
  --c-white: #fff;         /* 白 */
  --c-dark: #1A1A1A;       /* 黒 */
  --c-gray: #E3E2E2;          /* グレー */
  --c-gray-light: #EFEFEF; /* 明るいグレー */
  --c-gray-dark: #ddd;  /* 暗いグレー */
  --c-primary: #0F1A2B;    /* アクセントカラー01 */
  --c-secondary: #D0CFCE;  /* アクセントカラー02 */
  --c-tertiary: #BDC4D4;   /* アクセントカラー03 */

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

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

body {
	max-width: 1920px;
	width: 100%;
	margin: auto !important;
	font-family: var(--f-base);
	font-size: clamp(14px, 0.93vw, 18px);
	font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.11em;
	color: var(--c-dark);
    word-break: break-all;
	position: relative;
	overflow-x: hidden;
}

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

.js-rellax {
    transition-delay: .3s;
    transition: 1s;
}

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

.en-title01 {
    font-size: clamp(50px, 7.81vw, 150px);
    font-weight: bold;
    font-family: var(--f-en);
    letter-spacing: 0;
    line-height: 1.446em;
}

.en-title02 {
    font-size: clamp(40px, 6.77vw, 130px);
    font-weight: bold;
    font-family: var(--f-en);
    letter-spacing: 0;
    line-height: 1.446em;
}

.en-title03 {
    font-size: clamp(30px, 6.25vw, 120px);
    font-weight: bold;
    font-family: var(--f-en);
    letter-spacing: 0;
    line-height: 1.446em;
}

.en-title04 {
    font-size: clamp(20px, 2.6vw, 50px);
    font-weight: bold;
    font-family: var(--f-en);
    letter-spacing: 0;
    line-height: 1.446em;
}

.title01 {
    font-size: clamp(20px, 1.66vw, 32px);
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.43em;
}

.title02 {
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.33em;
}

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



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

.btn01 {
    display: flex;
    font-size: clamp(16px, 1.04vw, 20px);
    letter-spacing: 0;
    line-height: 1.45em;
}

.btn01-link {
    display: flex;
    align-items: center
}

.btn01-circle {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.btn01-circle:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid;
    border-radius: 50%;
    transition: 0.3s;
}

.btn01-circle:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--c-white);
    box-shadow: 0px 0px 30px rgb(0 0 0 / 16%);
    border-radius: 50%;
    transition: 0.3s;
    transform: scale(0);
    opacity: 0;
}

.btn01-circle-arrow {
    max-width: 17px;
    width: 100%;
    height: 11px;
    position: absolute;
    margin: auto;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    overflow: hidden;
}

.btn01-circle-arrow-back {
    transform: scale(-1,1) translateY(-50%);
}

.btn01-circle-arrow:before, .btn01-circle-arrow:after {
	content: "";
	display: block;
	max-width: 17px;
	width: 100%;
	height: 11px;
	position: absolute;
	transition: 0.3s;
}

.btn01-circle-arrow:before {
	transform: translateX(-100%);
}

.btn01-link:hover .btn01-circle:before {
    transform: scale(1.25);
    opacity: 0;
}

.btn01-link:hover .btn01-circle:after {
    transform: scale(1);
    opacity: 1;
}

.btn01-link:hover .btn01-circle-arrow:before {
	transform: translateX(0%);
}

.btn01-link:hover .btn01-circle-arrow:after {
	transform: translateX(100%);
}

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

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

.btn01-link-primary .btn01-circle:before {
    border-color: var(--c-primary);
}

.btn01-link-primary .btn01-circle-arrow:before, .btn01-link-primary .btn01-circle-arrow:after {
    background: url(/system_panel/uploads/images/right_arrow_icon01_dark_blue.svg) no-repeat center / contain;
}

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

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

.btn01-link-white .btn01-circle:before {
    border-color: var(--c-white);
}

.btn01-link-white .btn01-circle-arrow:before {
    background: url(/system_panel/uploads/images/right_arrow_icon01_dark_blue.svg) no-repeat center / contain;
}

.btn01-link-white .btn01-circle-arrow:after {
    background: url(/system_panel/uploads/images/right_arrow_icon01_white.svg) no-repeat center / contain;
}

.btn02 {
    max-width: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45em;
    padding: 14px 10px 13px;
    border: solid 1px;
}

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

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

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

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

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

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

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

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

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

.bg-gray-light {
	background-color: var(--c-gray-light) !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;
}

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

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

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

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

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

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

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

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

.color-tertiary {
	color: var(--c-tertiary) !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%;
}

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

.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(--c-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: 250px;
	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-dark);
    opacity: 0.6;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

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

.in-cover-title {
	font-family: var(--f-en);
	font-size: clamp(25px, 5.2vw, 100px);
	font-weight: bold;
	line-height: 1.45em;
	letter-spacing: 0;
}

.in-cover-sub-title {
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: 1.33em;
    letter-spacing: 0.05em;
}

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

.breadcrumbs-wrapper {
	font-family: var(--f-en);
	font-size: 12px;
	letter-spacing: 0;
	line-height: 1.45em;
	color: inherit;
	padding: 20px 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: 80px 0;
	position: relative;
	overflow: hidden;
}

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

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

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

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

.base-table {
	width: 100%;
	font-weight: normal;
	line-height: 1.33em;
	background: var(--c-white);
	border: solid 1px var(--c-gray);
	border-bottom: 0;
}

.base-table-tr {
	border-bottom: solid 1px var(--c-gray);
}

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

.base-table-th {
	display: flex;
	align-items: center;
	background: var(--c-primary);
	color: var(--c-white);
	font-weight: 500;
	padding: 15px;
}

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

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

.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: 30px;
	width:100%;
	max-width: 30px;
	font-family: var(--f-en);
	line-height: 1em;
	letter-spacing: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

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

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

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

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

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

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

.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(--c-primary);
	border-left: solid 2px var(--c-primary);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	top: 50%;
}

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

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

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

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

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

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

.header {
    z-index: 99999999;
}

.header-btn {
	font-size: clamp(16px, 1.04vw, 20px);
}

/*ハンバーガー*/

.hamburger-btn {
    max-width: 36px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    z-index: 9999999;
    margin: 0 0 0 20px;
}

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

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

.hamburger-btn-bar > div {
    width: 100%;
    height: 1px;
    background: var(--c-primary);
    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%);
}

.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-content {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    position: relative;
    padding: 150px 15px 100px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-content::-webkit-scrollbar {
    display: none;
}

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

.nav-list {
    font-family: var(--f-en);
    line-height: 1.45em;
    text-align: center;
    border-bottom: solid 1px var(--c-gray);
    padding: 0 0 30px;
    position: relative;
}

.nav-list-item:not(:first-child) {
    margin: 20px 0 0;
}

.nav-link {
    display: inline-block;
    color: var(--c-dark);
    padding: 0;
}

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

.nav-btn {
    margin: 30px auto 0;
}

.nav-icon-link {
    max-width: 40px;
    width: 100%;
    display: block;
    margin: 20px auto 0;
}

/* ----- ハンバーガーメニューを開いたとき ----- */

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

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

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

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

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

.header.is-scroll {
    position: fixed;
}

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

/* ----- スマホ時のナビ ----- */

.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-block:not(:first-child) {
	border-top: solid 1px var(--c-white);
}

.footer-reserve-tel {
    font-size: clamp(26px, 2.08vw, 40px);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@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;
}


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

.btn01-circle {
    width: 80px;
    height: 80px;
}

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

.wrapper {
	padding: 100px 0;
}

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

.base-table-th {
	justify-content: center;
	padding: 25px;
}

.base-table-td {
	padding: 25px;
}
	
/*-----------------------------------------------------------
ヘッダー
-----------------------------------------------------------*/

/* ハンバーガー */

.hamburger-btn {
    display: none;
}

/* スマホ時 */

.sp-nav {
	display: none;
}

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

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

.footer-reserve-block:not(:first-child) {
	border-top: 0;
    border-left: solid 1px var(--c-white);
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* 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: 18px;
}

/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
	
.btn01-circle {
    width: 140px;
    height: 140px;
	margin-right: 28px;
}
	
/*-----------------------------------------------------------
下層カバー
-----------------------------------------------------------*/

.in-cover {height: 450px;}

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

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

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

.wrapper {
	padding: 200px 0;
}

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



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

.webgene-pagination > ul > li{
	margin: 80px 10px 0;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

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

/*-- 改行 --*/

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

.br-1200-block br {
	display: block;
}
  
/*-----------------------------------------------------------
フッター
-----------------------------------------------------------*/
  
.footer-reserve-inner {
    flex-direction: row !important;
}

.footer-reserve-left-area {
    width: 38.28% !important;
	border: 0 !important;
}

.footer-reserve-text-block {
    text-align: left !important;
}

.footer-reserve-right-area {
    width: 61.71%!important;
}

.footer-reserve-block {
    border-left: solid 1px var(--c-white);
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* 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:1800px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/*-- 改行 --*/

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

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