@charset "utf-8";

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

@font-face {
  font-family: 'CineCaption';
  src: url('../fonts/cinecaption226.woff') format('woff');
}

:root {
	/* color */
	--primary: #8E3534;
	--secondary: #42210B;
	--tertiary: #EEE8DB; /* 背景・境界のベージュを代用 */
	--black: #201F1D;
	--white: #FFFFFF;
	--gray: #BBBABA;
	--gray-dark: #787877;
	--gray-light: #DDDCDC;

	/* font family */
	--font-family01: 'CineCaption', sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	--font-family02: "Hina Mincho", serif;
}

/* ==========================================
共通
========================================== */

html {
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	font-size: 2rem;
	font-weight: normal;
	font-family: var(--font-family01);
	background: var(--white);
	color: var(--black);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	word-break: break-all;
}

body .wow {
	opacity: 0;
}

body.active .wow {
	opacity: 1;
}

h1, h2, h3, h4, h5, h6, p, ul, dl, table, a { 
	transform: rotate(0.03deg); 
}

input {
	appearance: auto;
	border: 0.1rem solid var(--gray);
	appearance: auto;
    border: 0.1rem solid var(--gray);
    padding: .75rem 1rem;
    --_border-radius: var(--_global--border-radius);
    --_border-color: var(--_form-control-border-color);
    border: 1px solid var(--_border-color);
    border-radius: var(--_border-radius);
    outline: 0;
    --_transition-duration: var(--_global--transition-duration);
    --_transition-function-timing: var(--_global--transition-function-timing);
    --_transition-delay: var(--_global--transition-delay);
    transition: border var(--_transition-duration) var(--_transition-function-timing) var(--_transition-delay);
}

input:focus-visible {
	outline: 0.1rem solid var(--gray);
	border-color: var(--gray);
}

textarea {
	border: 0.1rem solid var(--gray);
	appearance: auto;
	border: 0.1rem solid var(--gray);
	appearance: auto;
    border: 0.1rem solid var(--gray);
    padding: .75rem 1rem;
    --_border-radius: var(--_global--border-radius);
    --_border-color: var(--_form-control-border-color);
    border: 1px solid var(--_border-color);
    border-radius: var(--_border-radius);
    outline: 0;
    --_transition-duration: var(--_global--transition-duration);
    --_transition-function-timing: var(--_global--transition-function-timing);
    --_transition-delay: var(--_global--transition-delay);
    transition: border var(--_transition-duration) var(--_transition-function-timing) var(--_transition-delay);
}

textarea:focus-visible {
	outline: 0.1rem solid var(--gray);
	border-color: var(--gray);
}

img {
	max-width: 100%;
	height: auto;
}

p > a {
    color: var(--primary);
}

p > a:hover {
    opacity: 0.6;
}

a, button {
	transition: 0.3s;
}

.pc-block {
    display: block;
}

.sp-block {
    display: none;
}

/* ==========================================
背景カラー
========================================== */

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

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

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

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

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

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

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

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

.bg-mask01 {
    background-image: url(/wp2/wp-content/uploads/bg_mask_texture01.png);
}

/* ==========================================
テキストカラー
========================================== */

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

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

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

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

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

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

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

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

/* ==========================================
タイトル
========================================== */

.title01 {
    font-size: 6rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title01 strong {
    font-size: 1.16em;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title02 {
    font-size: 4.5rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.44em;
}

.title03 {
    font-size: 4rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title03 strong {
    font-size: 1.25em;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title04 {
    font-size: 3.5rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title05 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title05 strong {
    font-size: 1.2em;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.title06 {
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.045em;
}

.sub-title01 {
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1em;
}

.title-box01 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title-box02 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ==========================================
テキスト
========================================== */

.br-none br {
	display: none;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

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

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

/* ==========================================
リンクボタン
========================================== */

.btn01 {
    min-width: 25rem;
    width: fit-content;
    display: flex;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1em;
    border-bottom: solid 1px;
    padding: 1.4rem 0;
    position: relative;
}

.btn01:after {
    content: "";
    width: 0;
    height: 0.1rem;
    margin: auto;
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    transition: 0.3s;
}

.btn01:hover:after {
    width: 100%;
}

.btn01-arrow {
    padding-right: 3rem;
}

.btn01-arrow:before {
    content: "";
    display: block;
    max-width: 2.7rem;
    width: 100%;
    height: 0.4rem;
    background: url(/wp2/wp-content/uploads/icon_arrow01_black.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

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

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

.btn02 {
    max-width: 65rem;
    width: 100%;
    display: flex;
    align-items: center;
    outline: 0.1rem solid;
    outline-offset: -0.5rem;
    font-size: 1.1em;
    font-weight: 400;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
    padding: 3rem 4rem;
    position: relative;
}

.btn02:hover {
    opacity: 0.6 !important;
}

.btn02 strong {
    font-size: 1.27em;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.428em;
}

.btn02-arrow {
    padding-right: 8rem;
}

.btn02-arrow:before {
    content: "";
    display: block;
    max-width: 5rem;
    width: 100%;
    height: 5rem;
    border-radius: 50%;
    background-size: 2.2rem 0.5em;
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
}

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

.btn02-arrow.btn02-primary:before {
    background-color: var(--white);
    background-image: url(/wp2/wp-content/uploads/icon_arrow03_red.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.btn03 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
    line-height: 1em;
    padding: 2rem 3rem;
}

.btn03-sub-text {
    font-size: 0.9em;
    letter-spacing: 0.05em;
    line-height: 1em;
}

.btn03:hover {
    opacity: 0.6 !important;
}

.btn03-arrow {
    padding-right: 4rem !important;
    position: relative;
}

.btn03-arrow:before {
    content: "";
    display: block;
    max-width: 2.7rem;
    width: 100%;
    height: 0.4rem;
    margin: auto;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.btn03-primary {
    background: var(--primary);
    color: var(--tertiary);
}

.btn03-primary .btn03-sub-text {
    color: var(--tertiary);
    opacity: 0.65;
}

.btn03-primary .btn03-arrow:before {
    background: url(/wp2/wp-content/uploads/icon_arrow01_beige.svg) no-repeat center / contain;
}

.btn03-secondary {
    background: var(--secondary);
    color: var(--tertiary);
}

.btn03-secondary .btn03-sub-text {
    color: var(--tertiary);
    opacity: 0.65;
}

.btn03-secondary .btn03-arrow:before {
    background: url(/wp2/wp-content/uploads/icon_arrow01_beige.svg) no-repeat center / contain;
}

/* ==========================================
ヘッダー
========================================== */

header {
    max-width: 192rem;
    width: 100%;
    margin: auto;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    z-index: 999;
    transition: 0.5s;
}

.header-inner {
    max-width: 185rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    margin: auto;
    position: relative;
}

.header-logo-link {
    max-width: 30rem;
    width: 16.48%;
}

.header-area {
    max-width: 87rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin: 0 0 0 4%;
}

.header-contact {
    max-width: 78rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: solid 1px var(--white);
    color: var(--white);
    padding: 1.3rem 2.5rem;
}

.header-btn-text01 {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1em;
}

.header-btn-text02 {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1em;
    opacity: 0.5;
    margin: 0.7rem 0 0;
}

.header-btn-icon-tel {
    max-width: 2.5rem;
    width: 100%;
}

.header-btn-icon-line {
    max-width: 3rem;
    width: 100%;
}

.header-btn-icon-mail {
    max-width: 2.5rem;
    width: 100%;
}

.header-btn:hover {
    background: var(--primary);
}

/* ---------- ハンバーガーボタン ---------- */

.hamburger-btn {
	max-width: 4rem;
	width: 100%;
	cursor: pointer;
	position: relative;
	z-index: 99999;
	transition: 0.3s;
}

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

.hamburger-btn-icon {
	display: block;
	width: 100%;
	height: 1rem;
	position: relative;
}

.hamburger-btn-icon > div {
	width: 100%;
	height: 0.18rem;
	background: var(--white);
	position: absolute;
	left: 0;
	right: 0;
	transition: 0.3s;
}

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

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

.hamburger-btn-text {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	line-height: 1em;
	text-align: center;
	color: var(--white);
	margin: 0.9rem 0 0;
}

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

.js-open .hamburger-btn-icon > div:nth-child(2) {
	top: 50%;
	transform: rotate(-25deg) translateY(-50%);
}

/* ---------- ハンバーガーメニュー ---------- */

.nav-area {
    max-width: 192rem;
    width: 100%;
    height: 100%;
    background: #000;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 9;
}

.nav-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.1;
}

.nav-bg > img {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 100% !important;
}

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

.nav-content {
    max-width: 165rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18.5rem 1.5rem;
    overflow: scroll;
    margin: auto;
}

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

.nav-logo {
    max-width: 30rem;
    width: 100%;
}

.nav-list {
    max-width: 27.5rem;
    width: 45%;
}

.nav-content-inner {
    max-width: 152rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-block {
    max-width: 85rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0 10%;
}

.nav-item:not(:first-child) {
    margin: 6rem 0 0;
}

.nav-link {
    display: block;
    font-size: 2.5rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0;
    line-height: 1.44em;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-second-list {
    margin: 1.4rem 0 0;
}

.nav-second-item:not(:first-child) {
    margin: 1rem 0 0;
}

.nav-second-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
    color: var(--gray);
}

.nav-second-link:before {
    content: "-";
    display: block;
}

.nav-second-link:hover {
    opacity: 0.6;
}

.nav-btn-list {
    max-width: 38rem;
    width: 50%;
    margin: 0 0 0 3%;
}

.nav-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 11rem;
    border: solid 1px var(--white);
    font-size: 2.6rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.033em;
    padding: 1.5rem;
}

.nav-btn:not(:first-child) {
    margin: 3rem 0 0;
}

.nav-btn-tel {
    font-size: 3.3rem;
    line-height: 1em;
}

.nav-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-btn-icon {
    max-width: 3rem;
    width: 100%;
}

.nav-btn-text {
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1em;
    color: var(--gray-dark);
    text-align: center;
    margin: 1rem 0 0;
}

.nav-btn:hover {
    background: var(--primary);
}

/* ==========================================
固定ヘッダー
========================================== */

header.is-animation {
    background: rgb(32 31 29 / 50%);
    position: fixed;
    top: 0;
}

header.is-animation .header-inner {
    padding: 1.5rem;
}

header.is-animation .header-logo-link {
    max-width: 14rem;
}

/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-top: solid 0.1rem;
	border-right: solid 0.1rem;
}

.sp-header-block-color {
	background: var(--white);
	border-color: var(--gray-light);
}

.sp-header-link {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.4rem 0 1.1rem;
}

.sp-header-link:before {
	content: "";
	display: block;
	max-width: 2.5rem;
	width: 100%;
	height: 2.5rem;
}

.sp-header-link-pagetop:before {
	background: url(../../../../uploads/icon_pagetop_brown_sp.svg) no-repeat center / contain;
}

.sp-header-link-tel:before {
	background: url(../../../../uploads/icon_tel_brown_sp.svg) no-repeat center / contain;
}

.sp-header-link-contact:before {
	background: url(../../../../uploads/icon_mail_brown.svg) no-repeat center / contain;
}

.sp-header-link-map:before {
	background: url(../../../../uploads/icon_map_brown_sp.svg) no-repeat center / contain;
}

.sp-header-link-line:before {
	background: url(../../../../uploads/icon_line.svg) no-repeat center / contain;
}

.sp-header-link-text {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.44em;
	color: var(--secondary);
	margin: 1.1rem 0 0;
}

/* ==========================================
フッター
========================================== */

footer {
    max-width: 192rem;
    width: 100%;
    margin: auto;
}

.footer-contact-wrapper {
    color: var(--white);
    padding: 13rem 0;
    position: relative;
}

.footer-contact-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.footer-contact-bg:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--black);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.footer-contact-bg > img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

.footer-contact-inner {
    max-width: 125rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
    position: relative;
}

.footer-contact-area {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2.5rem;
    margin: 6rem 0 0;
}

.footer-contact-btn {
    display: block;
    border: solid 1px var(--white);
    color: var(--white);
    padding: 3.2rem 1.5rem 2rem;
}

.footer-contact-btn-text {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1em;
    opacity: 0.7;
    margin: 1rem 0 0;
}

.footer-contact-btn-icon > img {
    max-width: 100%;
    width: 100%;
}

.footer-contact-btn-icon-line {
    max-width: 3.5rem;
    width: 100%;
    margin: 1.5rem auto 0;
}

.footer-contact-btn-icon-mail {
    max-width: 3.8rem;
    width: 100%;
    margin: 1.7rem auto 0;
}

.footer-contact-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.9rem 0 0;
}

.footer-contact-tel-icon {
    max-width: 2.5rem;
    width: 100%;
}

.footer-contact-tel-number {
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.033em;
}

.footer-contact-btn:hover {
    background: var(--primary);
}

.footer-wrapper {
    padding: 8rem 0 5rem;
}

.footer-inner {
    max-width: 165rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
}

.footer-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left-block {
    max-width: 75.5rem;
    width: 100%;
    display: flex;
    gap: 5rem;
}

.footer-logo {
    max-width: 27.3rem;
    width: 100%;
}

.footer-license {
    max-width: 43.2rem;
    width: 100%;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.875em;
}

.footer-right-block {
    max-width: 22rem;
    width: 100%;
    margin: 0 0 0 5%;
}

.pagetop-btn {
    max-width: 8.8rem;
    width: 100%;
    display: block;
    margin: 0 0 0 auto;
}

.pagetop-btn:hover {
    transform: translateY(-10px);
}

.footer-icon-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin: 4.6rem 0 0;
}

.footer-icon-link {
    max-width: 4rem;
    width: 100%;
    display: block;
}

.footer-icon-link:hover {
    transform: scale(0.9);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1em;
    margin: 4rem 0 0;
}

.footer-nav-link {
    display: block;
}

.footer-nav-link:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.33em;
    color: var(--gray-dark);
    text-align: center;
    margin: 4rem 0 0;
}

/* ==========================================
テーブル
========================================== */

.base-table {
    width: 100%;
    height: auto;
    overflow: unset !important;
}

.base-table > table {
    border: none;
    line-height: 1.25em;
}

.base-table a {color: var(--primary);}

.base-table a:hover {
    opacity: 0.6;
}

.base-table > table td {
    border: none;
    border-bottom: solid 1px var(--gray) !important;
}

.base-table > table td:nth-child(1) {
    width: 18%;
    color: var(--primary);
    padding: 3rem 1.5rem 3rem 0;
}

.base-table > table td:nth-child(2) {
    padding: 3rem 0 3rem 1.5rem;
}

/* ==========================================
ページャー
========================================== */

.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin: 8rem 0 0;
}

.pagination-page {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	text-align: center;
	color: var(--secondary);
	border: 0.1rem solid var(--gray);
}

.pagination-current-color {
	background: var(--secondary);
	color: var(--white);
}

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

.pagination-page-color:hover {
	background: var(--secondary);
	color: var(--white);
}

.pagination-first, .pagination-last {
	font-size: 1.2rem;
	border-style: solid;
	border-width: 1px;
	padding: 0.4rem 0.5rem 0.2rem;
}

.pagination-first-color, .pagination-last-color {
	border-color: var(--btn-primary);
	color: var(--btn-primary);
}

.pagination-first-color:hover, .pagination-last-color:hover {
	background: var(--btn-primary);
	color: var(--primary);
}

/* ==========================================
下層カバー
========================================== */

/* 下層カバー */
.in-cover-image.pc {
    display: block;
    padding-top: 25%;
    position: relative;
}

.in-cover-image.sp {
    display: none;
    padding-top: 62.5%;
    position: relative;
}

.in-cover {
    position: relative;
    width: 100%;
}

.in-cover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(56, 54, 44, 0.6) 0%, rgba(56, 54, 44, 0) 50%, rgba(56, 54, 44, 0.6) 100%);
}

.in-cover-title-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 7rem 1.5rem 0;
    text-align: center;
    color: var(--white);
    font-family: var(--font-family02);
    flex-direction: column;
}

.in-cover-title {
    font-size: 6rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
    font-weight: 400;
}

.in-cover-sub-title {
    font-size: 3rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
    font-weight: 400;
    margin-bottom: 1rem;
}

.in-cover-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.in-cover-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/*---共通--*/

.paddingWr01 {
    padding: 0 1.5rem;
}

.inTitle01 {
    font-size: 4.5rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.inBtn01:hover {
    background-color: #8E3534;
    color: #fff;
}

.inBtn01 {
    max-width: 24.6rem;
    width: 100%;
    display: flex;
    letter-spacing: 0.05em;
    line-height: 1em;
    border-bottom: solid 1px;
    position: relative;
    height: 6rem;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background-color: #42210B;
    color: #fff;
    font-size: 2rem;
    transition: all .5s;
}

.inBtn01:after {
    content: "";
    display: block;
    max-width: 2.7rem;
    width: 100%;
    height: 0.4rem;
    background: url(../../../../uploads/icon_arrow01_black.svg) no-repeat center / contain;
    filter: brightness(1) invert(1);
}

/*---下層リード---*/

.inMainTitle01 {
    font-size: 6rem;
    font-weight: normal;
    font-family: var(--font-family02);
    letter-spacing: 0.05em;
    line-height: 1.45em;
}

.inMainTitle01 strong {
    font-weight: 400;
    font-size: 7rem;
}

.inLeadTextBox strong {
    color: #8E3534;
    font-weight: 400;
}

.inLeadWr {
    max-width: 162rem;
    width: 100%;
    margin: 0 auto;
}

.inLeadTextBox {
    margin: 5.5rem auto 0;
    width: 100%;
    text-align: center;
}

.inLeadTextBox>p:first-child {
    margin-top: 0;
}

.inLeadTextBox>p {
    margin-top: 4rem;
}

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

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

	/* ==========================================
	下層カバー
	========================================== */

	/* 下層カバー */

	.in-cover-title-box {
        padding: 5rem 1.5rem 0;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

	body {
		font-size: 1.8rem;
	}

	/* ==========================================
	タイトル
	========================================== */
	
	.title01 {
	    font-size: 5.5rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}
	
	/* ==========================================
	タイトル
	========================================== */
	
	.title01 {
	    font-size: 3.8rem;
	}
	
	.title02 {
	    font-size: 3.6rem;
	}
	
	.title03 {
	    font-size: 3.5rem;
	}

	.title04 {
		font-size: 3rem;
	}
	
	.title05 {
	    font-size: 2.8rem;
	}
	
	.title06 {
	    font-size: 2rem;
	}
	
	.sub-title01 {
	    font-size: 1.6rem;
	}

	.inTitle01 {
        font-size: 3.5rem;
    }

	.inMainTitle01 {
        font-size: 4rem;
    }

    .inMainTitle01 strong {
        font-size: 5rem;
    }
	
	/* ==========================================
	テキスト
	========================================== */

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

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

	.text-lg-left {
		text-align: left;
	}

	.text-lg-center {
		text-align: center;
	}

	.text-lg-right {
		text-align: right;
	}

	/* ==========================================
	リンクボタン
	========================================== */

	.btn01 {
	    min-width: 15rem;
	}

	.btn03 {
	    padding: 2rem 1.5rem;
	}
	
	/* ==========================================
	ヘッダー
	========================================== */

	header {
	    top: 1.5rem;
	}

	.header-inner {
	    z-index: 999;
	}
	
	.header-contact {
	    display: none;
	}
	
	.header-area {
	    max-width: 4rem;
	}
	
	.header-logo-link {
	    max-width: 20rem;
	    width: 20%;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.nav-content-inner {
	    max-width: 98.8rem;
	    margin: auto;
	}

	.nav-logo {
	    display: none;
	}
	
	.nav-block {
	    margin: 0;
	}
	
	.nav-content {
	    padding: 15rem 1.5rem 15rem;
	}
	
	.nav-item:not(:first-child) {
	    margin: 4rem 0 0;
	}
	
	.nav-link {
	    font-size: 2.2rem;
	}
	
	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ==========================================
	フッター
	========================================== */

	.footer-wrapper {
	    padding: 10rem 0 5rem;
	}
	
	.footer-area {
	    display: block;
	}
	
	.footer-left-block {
	    display: block;
	    width: fit-content;
	    margin: auto;
	}
	
	.footer-right-block {
	    margin: 4rem auto 0;
	}
	
	.pagetop-btn {
	    display: none;
	}
	
	.footer-nav {
	    align-items: center;
	}
	
	.footer-license {
	    margin: 4rem 0 0;
	}

	/* ==========================================
	下層カバー
	========================================== */

    .in-cover-image.pc {
        padding-top: 43.95%;
    }
	
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	body {
		font-size: 1.6rem;
	}

	.pc-block {
		display: none;
	}

	.sp-block {
		display: block;
	}

	/* ==========================================
	テキスト
	========================================== */

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

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

	.text-md-left {
		text-align: left;
	}

	.text-md-center {
		text-align: center;
	}

	.text-md-right {
		text-align: right;
	}

	/* ==========================================
	リンクボタン
	========================================== */

	.btn02 {
	    padding: 2rem;
	}
	
	.btn02-arrow {
	    padding-right: 6rem;
	}
	
	.btn02-arrow:before {
	    max-width: 4rem;
	    background-size: 1.5rem 0.3em;
	    height: 4rem;
	    right: 1.5rem;
	}

	/* ==========================================
	ヘッダー
	========================================== */

	.header-logo-link {
	    max-width: 14rem;
	    width: 65%;
	}

	/* ---------- ハンバーガーボタン ---------- */
	
	.hamburger-btn {
	    max-width: 3rem;
	}
	
	.hamburger-btn-text {
	    font-size: 1.3rem;
	}
	
	/* ==========================================
	フッター
	========================================== */

	.footer-contact-wrapper {
	    padding: 8rem 0;
	}
	
	.footer-contact-area {
	    grid-template-columns: repeat(1,1fr);
	}

	/* ==========================================
	テーブル
	========================================== */

	.base-table > table td {
		display: block;
		width: 100% !important;
		padding: 2rem 0 !important;
	}

	.base-table > table td:nth-child(1) {
	    border-bottom: none !important;
	    padding: 2rem 0 0 !important;
	}

	/* ==========================================
	ページャー
	========================================== */
	
	.wp-pagenavi {
		margin: 5rem 0 0;
	}

	/* ==========================================
	下層カバー
	========================================== */

	/* 下層カバー */
    .in-cover {
        width: 100%;
    }

    .in-cover-title-box {
        padding: 0 1.5rem 0;
        justify-content: center;
    }

    .in-cover-title {
        font-size: 4rem;
    }

    .in-cover-sub-title {
        font-size: 2.5rem;
    }

    .in-cover-image.pc {
        display: none;
    }

    .in-cover-image.sp {
        display: block;
    }
	
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	/* ==========================================
	タイトル
	========================================== */
	
	.title01 {
	    font-size: 3rem;
	}
	
	.title02 {
	    font-size: 2.6rem;
	}
	
	.title03 {
	    font-size: 3rem;
	}

	.title04 {
		font-size: 2.4rem;
	}
	
	.title05 {
	    font-size: 2.2rem;
	}
	
	.title06 {
	    font-size: 2rem;
	}

	.title-box01 {
	    gap: 0.5rem;
	}

	.inTitle01 {
        font-size: 2.5rem;
    }

    .in-cover-title {
        font-size: 3rem;
    }

    .in-cover-sub-title {
        font-size: 1.8rem;
    }

    .inLeadTextBox {
        margin: 4rem auto 0;
        text-align: left;
    }

    .inMainTitle01 {
        font-size: 2.5rem;
    }

    .inMainTitle01 strong {
        font-size: 3rem;
    }

	/* ==========================================
	テキスト
	========================================== */

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

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

	.text-sm-left {
		text-align: left;
	}

	.text-sm-center {
		text-align: center;
	}

	.text-sm-right {
		text-align: right;
	}

	/* ==========================================
	ヘッダー
	========================================== */

	/* ---------- ハンバーガーボタン ---------- */

	.nav-block {
	    display: block;
	}
	
	.nav-item:not(:first-child) {
	    margin: 3rem 0 0;
	}
	
	.nav-link {
	    font-size: 2rem;
	    line-height: 1.75em;
	}
	
	.nav-second-link {
	    font-size: 1.8rem;
	}

	.nav-list {
	    max-width: 100%;
	    width: 100%;
	}
	
	.nav-btn-list {
	    display: none;
	}
	
	.nav-btn:not(:first-child) {
	    margin: 1rem 0 0;
	}
	
	.nav-btn-icon {
	    max-width: 3rem;
	}
	
	.nav-btn {
	    font-size: 2rem;
	    min-height: auto;
	}
	
	.nav-btn-tel {
	    font-size: 2.2rem;
	}
	
	.nav-btn-text {
	    font-size: 1.6rem;
	    margin: 0.5rem 0 0;
	}
	
	.nav-second-list {
	    margin: 1rem 0 0;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1.1rem;
	}

	/* ==========================================
	フッター
	========================================== */

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

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

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

	/* ==========================================
	下層カバー
	========================================== */

	.inMainTitle01 {
        font-size: 2rem;
    }

    .inMainTitle01 strong {
        font-size: 2.5rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */