@charset "utf-8";

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

:root {
	/* color */
  	--base-body-bg: #E8E0CB;
  	--base-body-color: #632C0A;
	--white: #fff;
	--primary: #F9F2E0;
  	--secondary: #472A17;
	--tertiary: #73B1DF;
    --quaternary: #539FD8;
    /* --fifth: #FFE6CE;
    --sixth: #FFF8EF;
	--seventh: #FDEDDE; */

	/* font family */
	/* --base-font-family: "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; */
	--base-font-family: "Shippori Mincho B1", serif, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	--font-family01: "Hina Mincho", serif;
	/* --font-family02: ; */
	/* --font-family03: ; */
	/* --font-family04: ; */
}

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

html {
	overflow-x: hidden;
}

body {
	max-width: 1920px;
	width: 100%;
	margin: auto !important;
	font-family: var(--base-font-family);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.834em;
	word-break: break-all;
	background: var(--base-body-bg);
	background-size: auto;
	color: var(--base-body-color);
	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;
}

.hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.hover-none:hover {
	text-decoration: none !important;
}

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

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

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

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

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

.cursol-pointer {
	cursor: pointer;
}

.brightness {
    filter: brightness(1.1);
}

.box-shadow01 {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.10);
}

.box-shadow02 {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
}

.d-tb-block {
    display: none !important;
}

.d-pc-block {
    display: none !important;
}


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

.title01 {
	font-size: 26px;
	font-family: var(--font-family01);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.4em;
}

.title02 {
	font-size: 24px;
	font-family: var(--font-family01);
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.6em;
}

.title03 {
	font-size: 22px;
	font-family: var(--font-family01);
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.6em;
}

.en-title01 {
	font-size: 16px;
	font-family: var(--font-family01);
	letter-spacing: 0.1em;
	line-height: 1.2em;
}

.en-title02 {
	font-size: 16px;
	font-family: var(--font-family01);
	letter-spacing: 0.1em;
	line-height: 1.2em;
}

.banner-link-sub-title {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}


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

.text01 {
	font-size: 14px;
	font-weight: 500;
    line-height: 2.18em;
}

.text01 strong {
	font-size: 16px;
	font-weight: 700;
    color: var(--primary);
}

.text02 {
	font-size: 13px;
	font-weight: 500;
	line-height: 2.18em;
	letter-spacing: 0.05em;
}


.navi-link {
	display: block;
}

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

.strong-primary strong {
	font-weight: 700;
	font-size: 17px;
	color: var(--primary);
}

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

.btn01 {
    max-width: 293px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0 74px 0 0;
    transition: all .3s;
}

.btn01:after {
    content: "";
    display: block;
    max-width: 70px;
    width: 100%;
    height: 70px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    transition: all .3s;
}

.btn01:hover::after {
    right: -10px;
    transition: all .3s;
}

.btn01 p {
	min-width: 200px;
	text-align: center;
	padding: 0 0 8px 0;
}

.btn01-primary:after {
	background: url(/system_panel/uploads/images/btn01-white.png)no-repeat center;
	background-size: contain;
}

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

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

.btn01-base:after {
	background: url(/system_panel/uploads/images/btn01-base.png)no-repeat center;
	background-size: contain;
}

.btn01-base p {
	color: var(--base-body-color);
    border-bottom: solid 1px var(--base-body-color);
}

.btn01-base:hover p {
	color: var(--base-body-color);
}


.tel-btn {
	position: relative;
	max-width: 330px;
	padding: 2px 9px;
	color: var(--base-body-color);
	background: var(--tertiary);
	border-radius: 8px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
}

.tel-btn-in {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 314px;
    height: 70px;
    padding: 0 9px 0 0;
}

.tel-btn p {
	position: relative;
	font-size: 20px;
	letter-spacing: 0.05em;
    font-family: var(--font-family01);
	z-index: 5;
}

.tel-btn-in:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	max-width: 157px;
	width: 50%;
	height: 100%;
	background: url(/system_panel/uploads/images/title-deco-brown05.png) no-repeat center left;
	background-size: contain;
	z-index: 1;
}

.tel-btn-in:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	max-width: 157px;
	width: 50%;
	height: 100%;
	background: url(/system_panel/uploads/images/title-deco-brown06.png) no-repeat center right;
	background-size: contain;
	z-index: 1;
}

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

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

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

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

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

.anchor-btn {
    position: relative;
    max-width: 330px;
    width: 100%;
    padding: 8px 9px;
    color: var(--base-body-color);
    border: 1px solid var(--base-body-color);
    border-radius: 8px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
    text-align: center;
    margin: 0 auto;
    transition: all .3s;
}

.anchor-btn:hover {
	color: var(--base-body-color);
	background: var(--tertiary);
	border: 1px solid var(--tertiary);
	transition: all .3s;
}

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

.drop-shadow {
	filter: drop-shadow(4px 4px 10px rgba(0,0,0,0.16));
}

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

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

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

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

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

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

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

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


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

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

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

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

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

.bg-base {
	background: var(--base-body-bg);
	background-size: auto;
}

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

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

.mask01:before {
	content:"";
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
  	width: 100%;
  	height: 100%;
	background: #632C0A;
	background: linear-gradient(0deg, rgba(99, 44, 10, 0.44) 0%, rgba(99, 44, 10, 0.44) 20%, rgba(99, 44, 10, 0) 80%, rgba(99, 44, 10, 0) 100%);
  	z-index: 1;
  	transition: all .3s;
}

.mask02:before {
	content:"";
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
  	width: 100%;
  	height: 100%;
    background: url(/system_panel/uploads/images/mask01.png)no-repeat center;
	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: rgba(65 155 222 / 60%);
  	z-index: 1;
  	transition: all .3s;
}


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

.img-control {
	height: 0;
	position: relative;
	padding: 0 0 75%;
}

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

.header .deco01-line {
    height: 29px;
    margin: -5px 0 0 0;
}

.deco01-line {
    height: 30px;
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

.base-table-th + .base-table-th {
	border-left: solid 1px #cdb8a5;
}

.base-table-td + .base-table-td {
	border-left: solid 1px #cdb8a5;
}

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

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

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

.banner-container {
    padding: 0;
}

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

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

.banner-gap {
	gap:6px;
}

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

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

.banner-link:hover .mask03:before  {
	background: rgba(65 155 222 / 40%);
	transition: all .3s;
}

.banner-link-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--primary);
    text-shadow: 0 2px 5px rgb(0 0 0 / 50%);
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 917px;
    width: 95.82%;
    height: 90%;
    z-index: 5;
    transition: all .3s;
}

.banner-link:hover .banner-link-inner {
    width: 89.45%;
    height: 75%;
	transition: all .3s;
}

.banner-link-inner:before,.banner-link-inner:after {
	content: "";
	position: absolute;
	width: 10.5%;
	height: 90%;
	aspect-ratio: 97 / 97;
	z-index: 2;
}

.banner-link-inner:before {
	top: 0;
	left: 0;
	background: url(/system_panel/uploads/images/china-deco-white03.png)no-repeat top left;
	background-size: contain;
}

.banner-link-inner:after {
	right: 0;
	bottom: 0;
	background: url(/system_panel/uploads/images/china-deco-white04.png)no-repeat bottom right;
	background-size: contain;
}

.banner-link-inner .title03 {
    margin: 18px 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 {
  	max-width: 1920px;
  	width: 100%;
  	margin: auto auto auto auto;
  	position: relative;
  	transform: translateY(0);
  	top: 0;
  	left: 0;
  	right: 0;
  	transition: .3s all;
  	z-index: 99999999;
}

.header-frame {
  	transition: .3s all;
}

.header-logo-link {
    display: block;
    max-width: 215px;
    width: 25%;
	margin: 0 auto;
}

.header-logo {
    display: block;
    transition: all .3s;
}

.header-logo-fixed {
    display: none;
    transition: all .3s;
}

.header-navi {
	position: relative;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0 12px 0 0;
	color: var(--base-body-color);
	padding: 0 0 5px;
}

.header-navi:last-child {
	margin: 0 !important;
}

.header-navi:hover {
	color: var(--base-body-color);
}

.header-navi:before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--base-body-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}

.header-navi:hover:before {
    width: 100%;
}

.header-tel-btn {
	margin:0 0 0 20px;
}


/*ハンバーガー*/

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

.hamburger-btn-inner {
    max-width: 65px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    /*top: 33px;
    right: 30px;*/
}

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

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

.hamburger-btn-bar > div {
    width: 100%;
    height: 1px;
    background: #A4A4A4;
    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: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(--base-body-bg);
    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%;
    position: relative;
    z-index: 9999999999;
}
.nav-content-inner {
    padding: 80px 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-list-item {
    border-bottom: 1px dashed var(--tertiary);
}

.nav-list {
    width: 100%;
}

.nav-list a {
	color: var(--base-body-color);
	font-weight: 700;
}

.nav-list a:hover {
	color: var(--base-body-color);
	text-decoration: underline;
}

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

/*スマホ時のナビ*/

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

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

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

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

.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(--primary);
}

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

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

.sp-nav-btn-bar-item {
	width: 100%;
	height: 3px;
	background: var(--primary);
	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;
}

.spFa {
    font-size: 23px;
    color: #fff;
}

/*-----------------------------------------------------------
is-scroll
-----------------------------------------------------------*/

.is-scroll.header {
    background: var(--secondary);
    position: fixed;
    transition: all .3s;
    transform: translateY(0);
}

.is-scroll .header-logo {
    display: none;
    transition: all .3s;
}

.is-scroll .header-logo-fixed {
    display: block;
    transition: all .3s;
}

.is-scroll .deco01-line {
    display: none;
    transition: all .3s;
}

.is-scroll .header-navi {
    color: var(--primary);
}

.is-scroll .header-navi:hover {
    color: var(--primary);
}

.is-scroll .header-navi:before {
    background: var(--primary);
}

.is-scroll .header-frame {
    padding: 13px 0 12px 0 !important;
    transition: all .3s;
}

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

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

.footer-contact-left {
	border-bottom: 1px solid #fff;
	padding: 0 0 30px 0;
}

  
.footer-contact-tel-box {
    border-bottom: 1px solid #fff;
}

.footer-right:after {
	content: none;
	position: absolute;
	width: 100%;
	height: 1px;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: var(--white);
	z-index: 2;
}

.footer-navi-link {
	letter-spacing: 0.2em;
}



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

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

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

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

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

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


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

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

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

	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/
  
    .anchor-contents03 {
        grid-template-columns: repeat(2, 1fr);
    }

	/*-- 改行 --*/

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

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

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

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

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

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

    .d-tb-block {
        display: block !important;
    }

	/*-- 改行 --*/

	.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: 100px;
    }
 
	.banner-link {
		width: 49.84%;
	}
  
	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/
  
    .title01 {
      font-size: 30px;
    }

    .title02 {
      font-size: 28px;
    }

	.title03 {
		font-size: 25px;
	}

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

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

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

	.text01 {
		font-size: 16px;
	}

	.text02 {
		font-size: 14px;
	}

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

	.base-table {
		font-size: 14px;
	}

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

    .header {
        position: relative;
        transform: translateY(0);
    }

  
    .header-right {
      	flex-direction: column-reverse;
        align-items: flex-end !important;
    }

    .header-logo-link {
        width: 18%;
		margin: 0;
    }
  
    .header-navi-block {
        margin: 20px 0 0;
    }

    .hamburger-btn {
        position: relative;
    }
  
    .nav-content-inner {
        padding: 120px 15px 100px;
    }
  
    .nav-link {
        font-size: 18px;
		padding: 15px 5px;
    }
  
    .nav-link:hover {
        color: var(--white);
      	text-decoration: underline;
    }
  
  	.nav-content {
        overflow-y: auto;
    }

	/* スマホ時 */

	.sp-nav {
		display: none;
	}

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

	/*-----------------------------------------------------------
	フッター
	-----------------------------------------------------------*/
  
    .footer-contact-tel-box {
		border-bottom: 0;
    }

	.footer-right:after {
        content: "";
		width: 1px;
		height: 150%;
		top: 0;
		bottom: 0;
		left: auto;
		right: 47%;
		margin: auto;
	}


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

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

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

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


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

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

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

	body {
		font-size: 15px;
	}

	.strong-primary strong {
		font-size: 18px;
	}

    .d-tb-block {
        display: none !important;
    }
  
	.d-pc-block {
        display: block !important;
    }

	/*-- 改行 --*/

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

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

    .anchor-box {
        height: 120px;
    }  
  
	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/
  
  	.title01 {
          font-size: 36px;
    }

  	.title02 {
          font-size: 32px;
    }
	
	.title03 {
		font-size: 30px;
	}

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

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

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

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

	.text01 {
		font-size: 15px;
	}		

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

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

	.wrapper02 {
		padding: 160px 0;
	}
  
    .anchor-contents03 {
        gap: 20px;
    }

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

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

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

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

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

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

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

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

	.link-img-box {
		min-height: 400px !important;
	}

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

    .header-logo-link {
        width: 12%;
    }  
  
    .header-right {
		align-items: center !important;
      	justify-content: center !important;
		flex-direction: row;
	}
  
     .header-navi-block {
        margin: 0;
    }

	.header-navi {
        margin: 0 15px 0 0;
        font-size: 12px !important;
    }

    /*-----------------------------------------------------------
    is-scroll
    -----------------------------------------------------------*/
    
    .is-scroll .header-area {
        padding: 15px 15px 15px 15px !important;
    }


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

	.footer-contact-left {
		border-bottom: 0;
		border-right: 1px solid #fff;
		padding: 0 15px 0 0;
	}

	.footer-right:after {
		height: 100%;
		right: 43%;
	}


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

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

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

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

	body {
		font-size: 16px;
	}

	.strong-primary strong {
		font-size: 20px;
	}

	/*-- 改行 --*/

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

	.br-1200-block br {
		display: block;
	}
  
	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/
  
  	.title01 {
          font-size: 42px;
    }

	.title02 {
          font-size: 40px;
    }

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

	.text01 {
		font-size: 18px;
	}

	.text02 {
		font-size: 16px;
	}


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

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

	/*-----------------------------------------------------------
	ボタン
	-----------------------------------------------------------*/
  
    .btn01 {
		font-size: 18px;
		padding: 0 94px 0 0;
    }

	.btn01:after {
		max-width: 88px;
		height: 88px;
	}

    .anchor-contents {
        gap: 20px;
    }
 
	/*-----------------------------------------------------------
	画像
	-----------------------------------------------------------*/

	.deco01-line {
		height: 30px;
	}

	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/
  
    .header-frame {
        padding: 36px 0 50px !important;
    }

    .header-logo-link {
        width: 12%;
    }

	.header-navi {
        margin: 0 24px 0 0;
        font-size: 14px !important;
    }

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

    .footer .deco01-line {
        height: 38px;
    }  
  
	.footer-contact-tel-box {
		font-size: 40px !important;
	}
		

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

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

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

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

	body {
		font-size: 18px;
	}

	.strong-primary strong {
		font-size: 23px;
	}

	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/
  
  	.title01 {
          font-size: 48px;
    }

	.title02 {
          font-size: 45px;
    }

	.title03 {
		font-size: 38px;
	}
  
 	/*-----------------------------------------------------------
	フッター
	-----------------------------------------------------------*/

	.footer-contact-btn-text {
        font-size: 32px !important;
    }
  


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

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

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

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

	/*-- 改行 --*/

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

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

	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/
  
  	.title01 {
          font-size: 52px;
    }

  	.title02 {
          font-size: 50px;
    }

	.title03 {
		font-size: 40px;
	}

	/*-----------------------------------------------------------
	ボタン
	-----------------------------------------------------------*/
  
    .btn01 {
        font-size: 20px;
    }
 
	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/

    .header-frame {
        padding: 41px 0 50px !important;
    }
  
    .header-tel-btn {
        width: 330px !important;
        margin: 0 0 0 40px;
    }
  
    .tel-btn {
        padding: 8px 9px;
    }

	.tel-btn p {
		font-size: 30px;
	}
  
    .header-navi {
        font-size: 15px !important;
		margin: 0 30px 0 0;
    }
  
	/*-----------------------------------------------------------
	フッター
	-----------------------------------------------------------*/
  
	.footer-navi-link {
		font-size: 18px !important;
	}

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

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

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

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

	/*-- 改行 --*/

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

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


	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/
  
  	.title01 {
          font-size: 60px;
    }

	.title02 {
          font-size: 58px;
    }
  

	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/
  
    .header-navi {
        margin: 0 40px 0 0;
        font-size: 16px !important;
    }

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

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

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

@media screen and (min-width:1600px) {
  
	/*-----------------------------------------------------------
	全体スタイル
	-----------------------------------------------------------*/

	/*-- 改行 --*/

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

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

	/*-----------------------------------------------------------
	タイトル
	-----------------------------------------------------------*/
  
  	.title01 {
          font-size: 65px;
    }

	.title02 {
          font-size: 60px;
    }  

	/*-----------------------------------------------------------
	ヘッダー
	-----------------------------------------------------------*/
  
    .hamburger-btn-inner {
        right: 30px;
    }

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1800px) {
  
    .header-navi {
        font-size: 18px !important;
        margin: 0 58px 0 0;
    }
  
      .header-tel-btn {
          margin: 0 0 0 60px;
     }

    .header-logo-link {
        margin: 0 0 0 18px;
    }
  
}/* min-width: 1800px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */ 