@charset "utf-8";

@media screen and (min-width: 768px) { }
@media screen and (max-width: 767px) { }
@media (hover: hover) { }

:root {
  /* Base */
  --color-primary: #a5824b;
  --color-secondary: #a4adb5;
  --color-white: #fff;
  --color-black: #13110b;
  /* --color-bg: #f5f2eb; */
  --color-bg: rgba(245, 242, 235, 0.9);

  /* glass effect */
  --c-glass: #bbbbbc;
  --c-light: #fff;
  --c-dark: #000;
  --glass-reflex-dark: 1;
  --glass-reflex-light: 1;
  --saturation: 150%;
}

/* bg */
.p-videoBg-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.p-videoBg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 3s ease;
}
.p-videoBg--1 {
  opacity: 1;
}
.p-videoBg--2 {
  opacity: 0;
}

/* splash */
.p-splash {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--color-black);
  display: none;
  transition: opacity 2s, visibility 2s;
}
.p-splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  gap: 32px;
}
.p-splash__logo {
  width: 300px;
  height: 83px;
  background: url(../img/common/logo01.png) no-repeat center;
  background-size: contain;
}
.p-splash__loader {
  --uib-size: 35px;
  --uib-color: #a5824b;
  --uib-speed: 1s;
  --uib-stroke: 3.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--uib-size);
  height: calc(var(--uib-size) * 0.9);
}
.p-splash__loaderBar {
  width: var(--uib-stroke);
  height: 100%;
  background-color: var(--uib-color);
  transition: background-color 0.3s ease;
}
.p-splash__loaderBar:nth-child(1) {
  animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.45) infinite;
}
.p-splash__loaderBar:nth-child(2) {
  animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.3) infinite;
}
.p-splash__loaderBar:nth-child(3) {
  animation: grow var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.15) infinite;
}
.p-splash__loaderBar:nth-child(4) {
  animation: grow var(--uib-speed) ease-in-out infinite;
}
@keyframes grow {
  0%, 100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

/* --- loading animation --- */
.loading-on .p-splash,
.splash-on .p-splash {
  display: block;
}
.loading-on.anime-splash-end .p-splash,
.splash-on.anime-splash-end .p-splash {
  opacity: 0;
  visibility: hidden;
}
.loading-on .l-header {
  transform: translateY(-100%);
  opacity: 0;
  filter: blur(16px);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease, filter 1.2s ease, box-shadow 0.5s ease;
  will-change: transform;
}
.loading-on .c-fixedBnr {
  transform: translate(-50%, 100%);
  opacity: 0;
  filter: blur(16px);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease, filter 1.2s ease, box-shadow 0.5s ease;
  will-change: transform;
}
.loading-on.anime-start-nav .l-header {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}
.loading-on.anime-start-nav .c-fixedBnr {
  transform: translate(-50%, 0);
  opacity: 1;
  filter: blur(0);
}

/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Gen Interface JP", "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; 
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  background-image: url(../img/common/bg01.png);
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-color: #1b0f05;
}
button,
select,
input,
textarea {
  font-family: "Gen Interface JP", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}
/* @media screen and (max-width: 1170px) {
  main {
    margin-top: 64px;
  }
} */

/* == utility ============================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-clearfix::after {
  content: '';
  display: block;
  clear: both;
}
.u-bold {
  font-weight: 700;
}
.u-center {
  text-align: center;
}
.u-hover {
  transition: opacity 0.3s;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .u-hover:hover {
    opacity: 0.6;
  }
}
.u-no-hover {
  pointer-events: none !important;
}
.u-bgFill {
  background-color: var(--color-bg);
}
.u-hidden {
  overflow: hidden;
}
.u-displayNone {
  display: none !important;
}
.u-noPost {
  width: 90%;
  font-size: 1.6rem;
  text-align: center;
  padding: 24px 0;
  margin: 0 auto;
}
.u-c-black {
  color: var(--color-black);
}
.u-c-white {
  color: var(--color-white);
}
.u-c-primary {
  color: var(--color-primary);
}
.u-c-secondary {
  color: var(--color-secondary);
}
.u-oswald {
  font-family: "Oswald", sans-serif;
}

/* --- glass effect --- */
.u-glassBefore {
  position: relative;
}
.u-glassBefore::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.u-glass,
.u-glassBefore::before {
  border: none;
  background: rgba(255,255,255,0.16); /* fallback */
  background-color: color-mix(in srgb, #a4adb5 16%, transparent);
  backdrop-filter: blur(8px) saturate(var(--saturation));
  -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
  /* box-shadow: 
    inset 0 0 0 1px 
      color-mix( 
        in srgb, 
        var(--c-light) 
        calc(var(--glass-reflex-light) * 10%), 
        transparent 
      ),
    inset 2.8px 3px 0px -2px 
      color-mix( 
        in srgb,
        var(--c-light) 
        calc(var(--glass-reflex-light) * 90%), 
        transparent
      ),
    inset -2px -2px 0px -2px 
      color-mix(
        in srgb, 
        var(--c-light) 
        calc(var(--glass-reflex-light) * 80%), 
        transparent
      ),
    inset -3px -7px 1px -6px 
      color-mix(
        in srgb, 
        var(--c-light) 
        calc(var(--glass-reflex-light) * 60%), 
        transparent
      ),
    inset -0.3px -1px 4px 0px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 12%),
        transparent 
      ),
    inset -1.5px 2.5px 0px -2px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 20%), 
        transparent 
      ),
    inset 0px 3px 4px -2px 
      color-mix(
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 20%), 
        transparent
      ),
    inset 2px -6.5px 1px -4px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 10%), 
        transparent 
      ),
    0px 1px 5px 0px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 10%), 
        transparent 
      ),
    0px 6px 16px 0px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 8%), 
        transparent 
      ); */
  box-shadow: 
    inset 0 0 0 1px 
      color-mix( 
        in srgb, 
        var(--c-light) 
        calc(var(--glass-reflex-light) * 10%), 
        transparent 
      ),
    inset 1.8px 2.5px 2px -2px 
      color-mix( 
        in srgb,
        var(--c-light) 
        calc(var(--glass-reflex-light) * 90%), 
        transparent
      ),
    inset -2px -1.5px 1px -1.5px 
      color-mix(
        in srgb, 
        var(--c-light) 
        calc(var(--glass-reflex-light) * 80%), 
        transparent
      ),
    inset 3px -7px 1px -7px 
      color-mix(
        in srgb, 
        var(--c-light) 
        calc(var(--glass-reflex-light) * 60%), 
        transparent
      ),
    inset -0.3px -1px 4px 0px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 12%),
        transparent 
      ),
    inset -1.5px 2.5px 0px -2px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 20%), 
        transparent 
      ),
    inset 0px 3px 4px -2px 
      color-mix(
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 20%), 
        transparent
      ),
    inset 2px -6.5px 1px -4px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 10%), 
        transparent 
      ),
    0px 1px 5px 0px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 10%), 
        transparent 
      ),
    0px 6px 16px 0px 
      color-mix( 
        in srgb, 
        var(--c-dark) 
        calc(var(--glass-reflex-dark) * 8%), 
        transparent 
      )
}
.u-glass--bk,
.u-glassBefore--bk::before {
  background-color: color-mix(in srgb, #13110b 16%, transparent);
}

/* --- text link --- */
.u-textLink {
  display: inline-block;
  position: relative;
  transition: all 0.4s;
}
.u-textLink::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: width 0.4s;
}
.u-textLink--disable {
  pointer-events: none;
  opacity: 0.2;
}
@media (hover: hover) {
  .u-textLink:hover {
    color: var(--color-primary);
  }
  .u-textLink:hover::before {
    width: 100%;
  }
}
.u-textLink--blank {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23fff"/></svg>');
  background-repeat: no-repeat;
  background-position: bottom 3px right;
  background-size: 16px auto;
  padding: 0 16px 0 0;
  position: relative;
}
.u-textLink--blank::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23a4adb5"/></svg>');
  background-repeat: no-repeat;
  background-position: bottom 3px right;
  background-size: 16px auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .u-textLink--blank:hover::after {
    opacity: 1;
  } 
}
.u-textLink--02,
a.u-textLink--02 {
  color: var(--color-primary);
}
.u-textLink--02::before {
  background: var(--color-primary);
}
.u-textLink--02.u-textLink--blank,
.u-textLink--02.u-textLink--blank::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23937648"/></svg>');
}
@media (hover: hover) {
  .u-textLink--02:hover {
    color: var(--color-primary);
  }
}

/* == base style ============================================== */
.c-mainText {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
  letter-spacing: 0.06em;
  word-break: break-all;
}
.c-mainText::after {
  content: '';
  display: block;
  clear: both;
}
.c-mainText--noM > *:first-child {
  margin-top: 0;
}
.c-mainText--noM > *:last-child {
  margin-bottom: 0;
}
/* --- 見出し --- */
.c-mainText h1,
.c-h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin: 120px 0 24px;
}
@media screen and (max-width: 767px) {
  .c-mainText h1,
  .c-h1 {
    font-size: 2.8rem;
    margin: 64px 0 24px;
  }
}
.c-mainText h2,
.c-h2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin: 120px 0 24px;
}
@media screen and (max-width: 767px) {
  .c-mainText h2,
  .c-h2 {
    font-size: 2.8rem;
    margin: 64px 0 24px;
  }
}
.c-mainText h3,
.c-h3 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin: 120px 0 24px;
}
@media screen and (max-width: 767px) {
  .c-mainText h3,
  .c-h3 {
    font-size: 2.4rem;
    margin: 64px 0 24px;
  }
}
.c-mainText h4,
.c-h4 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin: 64px 0 24px;
}
@media screen and (max-width: 767px) {
  .c-mainText h4,
  .c-h4 {
    font-size: 2rem;
    margin: 24px 0;
  }
}
.c-mainText h5,
.c-h5 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin: 64px 0 24px;
}
@media screen and (max-width: 767px) {
  .c-mainText h5,
  .c-h5 {
    font-size: 1.6rem;
    margin: 24px 0;
  }
}
.c-mainText h6,
.c-h6 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin: 64px 0 24px;
}
@media screen and (max-width: 767px) {
  .c-mainText h6,
  .c-h6 {
    font-size: 1.4rem;
    margin: 24px 0;
  }
}
/* --- 段落 --- */
.c-mainText > p,
.c-par {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 24px 0;
}
/* --- 引用 --- */
.c-mainText blockquote,
.c-blockquote {
  font-size: 1.6rem;
  border-left: 2px solid var(--color-primary);
  padding: 16px 24px;
  margin: 24px 0;
}
.c-mainText blockquote > *:first-child,
.c-blockquote > *:first-child {
  margin-top: 0;
}
.c-mainText blockquote > *:last-child,
.c-blockquote > *:last-child {
  margin-bottom: 0;
}
/* --- テーブル --- */
.c-tableScroll {
  width: 100%;
  max-width: none;
  min-height: 0.01%;
  overflow: auto;
  overflow-y: hidden;
}
.c-mainText figure {
  margin: 48px 0;
}
.wp-block-table thead {
  border: 0;
}
.c-tableScroll::-webkit-scrollbar {
  height: 8px;
}
.c-tableScroll::-webkit-scrollbar-track {
  background: #eaeaea;
}
.c-tableScroll::-webkit-scrollbar-thumb {
  background: #d0d3d9;
}
.c-mainText table th,
.c-mainText table td,
.c-table th,
.c-table td {
  border: 1px solid var(--color-primary);
}
.c-mainText table th,
.c-table th {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background: var(--color-bg);
  padding: 10px 20px;
}
.c-mainText table td,
.c-table td {
  font-size: 1.4rem;
  background: var(--color-bg);
  padding: 16px 20px;
}
.c-mainText table th a,
.c-table th a {
}
.c-mainText caption {
  text-align: left;
}
/* --- 定義リスト --- */
.c-mainText dl,
.c-dl {
  width: 100%;
  margin: 24px 0;
}
.c-mainText dt,
.c-dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-mainText dl,
  .c-dl {
    display: flex;
    flex-wrap: wrap;
  }
  .c-mainText dt,
  .c-dt {
    width: 200px;
    padding: 0 10px 0 0;
    margin: 8px 0;
  }
  .c-mainText dd,
  .c-dd {
    width: calc(100% - 200px);
    margin: 8px 0;
  }
}
/* --- 非順序リスト --- */
.c-mainText ul,
.c-ul {
  padding: 0 16px;
  margin: 24px 0;
}
.c-mainText ul ul,
.c-mainText ol ul,
.c-ul .c-ul,
.c-ol .c-ul {
  padding: 0;
  margin: 0;
}
.c-mainText ul > li,
.c-ul > li {
  font-size: 1.6rem;
  line-height: 1.6;
  text-indent: -1em;
  margin: 4px 0 0 20px;
}
.c-mainText ul > li::before,
.c-ul > li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  transform: rotate(45deg);
  margin: -4px 8px 0 0;
}
/* --- 順序リスト --- */
.c-mainText ol,
.c-ol {
  counter-reset: olNum;
  padding: 0 16px;
  margin: 24px 0;
}
.c-mainText ol ol,
.c-mainText ul ol,
.c-ol .c-ol,
.c-ul .c-ol  {
  padding: 0;
  margin: 0;
}
.c-mainText ol > li,
.c-ol > li {
  font-size: 1.6rem;
  line-height: 1.6;
  text-indent: -1.1em;
  margin: 4px 0 0 20px;
}
.c-mainText ol > li::before,
.c-ol > li::before {
  counter-increment: olNum;
  content: counter(olNum) ".";
  color: var(--color-primary);
  margin: 0 2px 0 0;
}
/* --- 要素タグ --- */
/* [罫線] */
.c-mainText hr,
.c-hr {
  width: 100%;
  height: 2px;
  background: var(--color-bg);
  border: 0;
  margin: 80px 0;
}
/* [強調] */
.c-mainText strong,
.c-mainText b,
.c-par strong,
.c-par b {
  font-weight: 700;
}
/* [強調] ( 斜体 ) */
.c-mainText em,
.c-par em  {
  font-style: italic;
}
/* [強調] ( マーカー ) */
.c-mainText mark,
.c-par mark {
  /* background: linear-gradient(transparent 70%, var(--color-primary) 70%); */
}
/* [打ち消し] */
.c-mainText del,
.c-par del {
  text-decoration: line-through;
}
/* [住所] */
.c-mainText address,
.c-mainText address *,
.c-address,
.c-address * {
  font-style: italic;
}
/* [アンカー] ( リンク ) */
.c-mainText a:not([class]),
.c-anchor,
a.c-anchor {
  color: var(--color-primary);
  /* text-decoration: underline; */
  display: inline;
  position: relative;
  transition: all 0.4s;
}
.c-mainText a:not([class])::before,
.c-anchor::before,
a.c-anchor::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: width 0.4s;
}
@media (hover: hover) {
  .c-mainText a:not([class]):hover,
  .c-anchor:hover {
    /* color: var(--color-secondary); */
    /* text-decoration: none; */
  }
  .c-mainText a:not([class]):hover::before,
  .c-anchor:hover::before,
  a.c-anchor:hover::before {
    width: 100%;
  }
}
/* [略語、頭字語] ( abbreviation ) */
.c-mainText abbr[title],
.c-abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-style: dotted;
}
/* [引用元] */
.c-mainText cite,
.c-cite {
  font-style: italic;
}
/* [コード] */
.c-mainText code,
.c-code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [追加、挿入] */
.c-mainText ins,
.c-ins {
  text-decoration: underline;
}
/* [キーボード入力要素] */
.c-mainText kbd,
.c-kbd {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [コードブロック] */
.c-mainText pre,
.c-pre {
  margin: 1em 0;
  padding: 1em;
  border-radius: 5px;
  background: #25292f;
  color: #fff;
  /* white-space: pre-wrap; */
  overflow: auto;
  overflow-y: hidden;
}
.c-mainText pre::-webkit-scrollbar,
.c-pre::-webkit-scrollbar {
  height: 6px;
}
.c-mainText pre::-webkit-scrollbar-track,
.c-pre::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText pre::-webkit-scrollbar-thumb,
.c-pre::-webkit-scrollbar-thumb {
  background: #cbcbcb;
}
/* [一部引用] */
.c-mainText q::before,
.c-q::before {
  content: open-quote;
}
.c-mainText q::after,
.c-q::after {
  content: close-quote;
}
/* [下付き、上付き文字] */
.c-mainText sub,
.c-mainText sup,
.c-sub,
.c-sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.c-mainText sub,
.c-sub {
  bottom: -0.25em;
}
.c-mainText sup,
.c-sup {
  top: -0.5em;
}
/* [変数、引数、因数] */
.c-mainText var,
.c-var  {
  font-style: italic;
}
/* --- 画像 --- */
.c-mainText img {
  max-width: 100%;
}
.c-mainText figcaption,
.c-mainText .wp-caption,
.c-mainText .wp-caption-text,
.c-mainText .wp-block-embed figcaption {
  max-width: 100%;
  font-size: 1.2rem;
  line-height: 1.66;
  margin: 16px 0;
  text-align: center;
}
/* --- 動画 --- */
.wp-embed-aspect-16-9.wp-has-aspect-ratio iframe {
	width:100%;
	height:auto;
	aspect-ratio:16 / 9;
}
.wp-embed-aspect-4-3.wp-has-aspect-ratio iframe {
	width:100%;
	height:auto;
	aspect-ratio:4 / 3;
}
/* --- 配置 --- */
.c-mainText img.alignright {
  display: inline;
  margin: 0 auto 30px 24px;
}
.c-mainText img.alignleft {
  display: inline;
  margin: 0 24px 30px auto;
}
.c-mainText img.aligncenter {
  display: block;
  margin: 14px auto;
}
.c-mainText .alignright {
  float: right;
  margin: 0 auto 30px 24px;
}
.c-mainText .alignleft {
  float: left;
  margin: 0 24px 30px auto;
}
.c-mainText .aligncenter {
  clear: both;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-mainText img.alignright {
    display: block;
    margin: 15px auto;
  }
  .c-mainText img.alignleft {
    display: block;
    margin: 15px auto;
  }
  .c-mainText .alignright {
    float: none;
  }
  .c-mainText .alignleft {
    float: none;
  }
}

/* == parts ============================================== */
/*** inner *********************************/
.l-inner {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}
.l-inner--s {
  max-width: 720px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 92%;
  }
}

/*** heading *********************************/
.c-heading {
  text-align: center;
}
.c-heading__en {
  display: block;
}
.c-heading__en::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: var(--color-primary);
  margin: 32px auto 0;
}
.c-heading__ja {
  display: block;
  font-size: 3.2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .c-heading__ja {
    font-size: 2.4rem;
  }
}

/*** lead *********************************/
.c-textLead {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 48px 0;
}
@media screen and (max-width: 767px) {
  .c-textLead {
    font-size: 1.6rem;
    margin: 16px 0;
  }
}

/*** button *********************************/
.c-btn {
  position: relative;
}
.c-btn button {
  -webkit-appearance: none;
  appearance: none;
}
.c-btn .c-btn__item {
  color: inherit;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  min-height: 56px;
  background: #fff;
  text-align: center;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  cursor: pointer;
  padding: 14px 28px 14px 36px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s, box-shadow 0.4s, border 0.4s;
}
.c-btn__text {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  padding: 0 24px 0 0;
  white-space: nowrap;
  position: relative;
  transition: color 0.4s;
}
.c-btn__text::before,
.c-btn__text::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5165 16.0004L17.729 22.7879L17.0493 22.1098L16.3711 21.4316L20.8321 16.9691H7.48364V15.0488H20.8493L16.3711 10.5691L17.0493 9.89102L17.729 9.21289L24.5165 16.0004Z" fill="%23fff"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) translateZ(0);
  transition: opacity 0.4s, transform 0.4s;
}
.c-btn__text::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5165 16.0004L17.729 22.7879L17.0493 22.1098L16.3711 21.4316L20.8321 16.9691H7.48364V15.0488H20.8493L16.3711 10.5691L17.0493 9.89102L17.729 9.21289L24.5165 16.0004Z" fill="%23937648"/></svg>');
  opacity: 0;
}
@media (hover: hover) { 
  .c-btn .c-btn__item:hover {
    background-color: #fff;
    box-shadow: 0px 16px 24px rgba(26, 26, 30, 0.16);
  }
  .c-btn .c-btn__item:hover .c-btn__text {
    color: var(--color-primary);
  }
  .c-btn .c-btn__item:hover .c-btn__text::before,
  .c-btn .c-btn__item:hover .c-btn__text::after {
    transform: translate(6px, -50%) translateZ(0);
  }
  .c-btn .c-btn__item:hover .c-btn__text::after {
    opacity: 1;
  }
}
/* --- */
.c-btn--center {
  text-align: center;
}
/* --- */
.c-btn--disable {
  pointer-events: none;
  opacity: 0.6;
}
.c-btn--disable .c-btn__item {
  background: rgba(147, 118, 72, 0.6);
  border: 0;
}
.c-btn--disable .c-btn__text {
  opacity: 0.2;
}
/* --- */
.c-btn--blank .c-btn__text::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23fff"/></svg>');
}
.c-btn--blank .c-btn__text::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23937648"/></svg>');
}
/* --- */
.c-btn.c-btn--close .c-btn__text::before,
.c-btn.c-btn--close .c-btn__text::after {
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.6722 5.80115L14.1995 13.3285L13.3291 14.1989L5.80176 6.67159L6.6722 5.80115Z" fill="%23A5824B"/><path d="M14.1998 6.67184L6.67245 14.1992L5.802 13.3287L13.3293 5.80139L14.1998 6.67184Z" fill="%23A5824B"/></svg>');
}
@media (hover: hover) { 
  .c-btn.c-btn--close .c-btn__item:hover .c-btn__text::before,
  .c-btn.c-btn--close .c-btn__item:hover .c-btn__text::after {
    transform: translate(0, -50%) translateZ(0);
  }
}
/* --- */
.c-btn--02 .c-btn__item {
  background: var(--color-black);
  border-color: transparent;
}
/* .c-btn--02 .c-btn__text::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5165 16.0004L17.729 22.7879L17.0493 22.1098L16.3711 21.4316L20.8321 16.9691H7.48364V15.0488H20.8493L16.3711 10.5691L17.0493 9.89102L17.729 9.21289L24.5165 16.0004Z" fill="%23937648"/></svg>');
} */
/* .c-btn--02.c-btn--blank .c-btn__text::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23937648"/></svg>');
} */
@media (hover: hover) { 
  .c-btn--02 .c-btn__item:hover {
    border-color: var(--color-primary);
  }
}
/* --- */
.c-btn--03 .c-btn__item {
  background-color: color-mix(in srgb, #a4adb5 24%, transparent);
  border-color: transparent;
}
/* .c-btn--03 .c-btn__text::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5165 16.0004L17.729 22.7879L17.0493 22.1098L16.3711 21.4316L20.8321 16.9691H7.48364V15.0488H20.8493L16.3711 10.5691L17.0493 9.89102L17.729 9.21289L24.5165 16.0004Z" fill="%23937648"/></svg>');
} */
/* .c-btn--03.c-btn--blank .c-btn__text::before {
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23937648"/></svg>');
} */
/* --- */
.c-btn--s .c-btn__item {
  min-width: 152px;
  min-height: 42px;
  padding: 8px 16px 8px 24px;
}
/* --- */
.c-btn--s02 .c-btn__item {
  min-width: 152px;
  min-height: 42px;
  padding: 8px 16px 8px 24px;
  background: rgba(255, 255, 255, 0.8);
}
.c-btn--s02 .c-btn__text {
  color: var(--color-primary);
}
.c-btn--s02 .c-btn__text::after {
  opacity: 1;
}
@media (hover: hover) { 
  .c-btn--s02 .c-btn__item:hover {
    background-color: var(--color-primary);
  }
  .c-btn--s02 .c-btn__item:hover .c-btn__text {
    color: #fff;
  }
  .c-btn--s02 .c-btn__item:hover .c-btn__text::after {
    opacity: 0;
  }
}
.c-btn--s02.c-btn--disable .c-btn__item {
  opacity: 0.4;
}
.c-btn--s02.c-btn--disable .c-btn__item::before {
  background: rgba(255, 255, 255, 0.4);
  position: fixed;
}

/*** fixedBnr *********************************/
.c-fixedBnr {
  width: 90%;
  max-width: 1120px;
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
  opacity: 0;
  /* filter: blur(16px); */
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease, filter 1.2s ease;
  will-change: transform;
}
.c-fixedBnr.is-visible {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}
.c-fixedBnr__inner {
  width: 92%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  margin: 0 auto;
}
.c-fixedBnr__text {
  font-size: 1.4rem;
}
.c-fixedBnr__info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-fixedBnr__num {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-fixedBnr__numText {
  font-size: 1.4rem;
}
.c-fixedBnr__btn {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1160px) {
  .c-fixedBnr__inner {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  .c-fixedBnr {
    width: 100%;
    bottom: 0;
  }
  .c-fixedBnr__inner {
    padding: 10px 0;
  }
  .c-fixedBnr__text,
  .c-fixedBnr__btn01 {
    display: none;
  }
  .c-fixedBnr__info {
    gap: 0;
  }
  .c-fixedBnr__num {
    flex-direction: column;
    gap: 4px 0;
    padding: 0 24px;
  }
  .c-fixedBnr__numNum {
    width: 140px;
  }
}
@media screen and (max-width: 1170px) {
  /* .is-navActive .c-fixedBnr {
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
  } */
}

/*** studio card *********************************/
.c-stCard {
  width: 100%;
  max-width: 330px;
  height: 554px;
  box-shadow: 0px 24px 32px rgba(19, 17, 11, 0.8);
  position: relative;
  z-index: 1;
}
.c-stCard__item {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.c-stCard__item::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.c-stCard__contents {
  width: 100%;
  padding: 24px;
  transform: translateY(0);
  transition: transform 0.4s;
}
.c-stCard__copy {
  display: flex;
  align-items: center;
  min-height: 3.5em;
  font-size: 2.4rem;
  line-height: 1.6;
  margin: 8px 0 0;
}
.c-stCard__floor {
  font-size: 1.4rem;
  background: url(../img/common/icon/icon_arrow.svg) no-repeat right center;
  background-size: 28px auto;
  margin: 12px 0 0;
  padding: 0 28px 0 0;
}
.c-stCard__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  box-shadow: 0px 16px 24px 8px rgba(0, 21, 71, 0.24);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-stCard__bg::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); */
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.c-stCard__bg::after {
  content: '';
  display: block;
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(360deg, #222222 0%, rgba(34, 34, 34, 0) 100%);
}
@media (hover: hover) {
  .c-stCard__item:hover::before {
    opacity: 1;
  }
  .c-stCard__item:hover .c-stCard__bg {
    transform: scale(1.06) translateZ(0);
  }
  .c-stCard__item:hover .c-stCard__contents {
    transform: translateY(-2px);
  }
}
/* --- */
.c-stCardList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 64px; */
  gap: 64px 5.71%;
}
@media screen and (max-width: 767px) {
  .c-stCardList {
    gap: 24px 0;
    flex-direction: column;
    align-items: center;
  }

}

/*** waiting room card *********************************/
.c-roomCard {
  width: 100%;
  max-width: 192px;
  height: 320px;
  position: relative;
  z-index: 1;
}
.c-roomCard__item {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  /* overflow: hidden; */
  transition: color 0.4s;
}
.c-roomCard__contents {
  width: 100%;
  height: 100%;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  /* overflow: hidden; */
  background: rgba(0, 0, 0, 0.4);
}
.c-roomCard__contents::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.c-roomCard__contents::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 24px 32px rgba(19, 17, 11, 0.8);
  /* border: 1px solid red; */
}
.c-roomCard__name {
  max-height: 126px;
  margin: 14px 0 0 8px;
}
.c-roomCard__name img {
  max-height: 100%;
}
.c-roomCard__text {
  display: flex;
  align-items: center;
}
.c-roomCard__room {
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
.c-roomCard__room .num {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  margin: 0 0 0 4px;
}
.c-roomCard__floor {
  flex: 1;
  font-size: 1.4rem;
  background: url(../img/common/icon/icon_modal.svg) no-repeat right center;
  background-size: 28px auto;
  margin: 0 0 0 4px;
}
.c-roomCard__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  box-shadow: 0px 16px 24px 8px rgba(0, 21, 71, 0.24);
  overflow: hidden;
}
.c-roomCard__bg::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
  position: absolute;
  top: 0;
  left: 0;
}
.c-roomCard__bgItem {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .c-roomCard__item:hover .c-roomCard__contents::before {
    opacity: 1;
  }
  .c-roomCard__item:hover .c-roomCard__bgItem {
    transform: scale(1.06) translateZ(0);
  }
}
@media screen and (max-width: 767px) {
  .c-roomCard {
    width: 46.67%;
    height: auto;
  }
  .c-roomCard__contents {
    height: 280px;
  }
  .c-roomCard__text  {
    margin: 8px 0 0;
    position: relative;
    z-index: 1;
  }
}
/* --- */
.c-roomCardList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 40px;
}
@media screen and (max-width: 767px) {
  .c-roomCardList {
    max-width: 360px;
    justify-content: space-between;
    gap: 16px 0;
    margin: 0 auto;
    /* gap: 16px 6.67%; */
  }
  .c-roomCardList .c-roomCard {
    width: 46.67%;
  }
}

/*** card *********************************/
.c-card {
  width: 100%;
}
.c-card + .c-card {
  margin-top: 16px;
}
.c-card__item {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 24px;
}
.c-card__img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.c-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .c-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
} 
.c-card__detail {
  flex: 1;
  padding: 0 0 0 16px;
}
.c-card__title {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.c-card__title::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: var(--color-primary);
  margin: 8px 0;
}
.c-card__text {
  font-size: 1.6rem;
  margin: 8px 0 0;
}
@media screen and (max-width: 767px) {
  .c-card__item {
    padding: 16px;
    align-items: flex-start;
  }
  .c-card__text {
    font-size: 1.4rem;
  }
}
/* --- */
@media screen and (min-width: 900px) {
  .c-cardList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .c-cardList .c-card + .c-card {
    margin-top: 0;
  }
  .c-cardList .c-card__item {
    align-items: start;
  }
}

/*** article card *********************************/
.c-articleCard {
  width: 360px;
  margin: 0 10px;
}
.c-articleCard__item {
  display: block;
  width: 100%;
  height: 100%;
  transition: background-color 0.4s;
}
.c-articleCard__img {
  width: 100%;
  overflow: hidden;
}
.c-articleCard__imgItem {
  width: 100%;
  padding: 56.11% 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-articleCard__detail {
  padding: 16px 24px 40px;
}
.c-articleCard__meta {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--color-bg);
  transition: color 0.4s;
}
.c-articleCard__date {
  flex-shrink: 0;
  padding: 0 40px 0 0;
}
.c-articleCard__cat {
  text-align: right;
  font-size: 0;
}
.c-articleCard__catItem {
  font-size: 1.2rem;
}
.c-articleCard__catItem + .c-articleCard__catItem::before {
  content: '';
  margin: 0 4px;
}
.c-articleCard__title,
.c-articleCard__subtitle {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 16px 0 0;
  transition: color 0.4s;
}
.c-articleCard__subtitle {
  margin-top: 8px;
}
@media (hover: hover) {
  .c-articleCard__item:hover {
    background: var(--color-white);
  }
  .c-articleCard__item:hover .c-articleCard__meta {
    color: var(--color-primary);
  }
  .c-articleCard__item:hover .c-articleCard__title,
  .c-articleCard__item:hover .c-articleCard__subtitle {
    color: var(--color-black);
  }
  .c-articleCard__item:hover .c-articleCard__imgItem {
    transform: scale(1.06) translateZ(0);
  }
}
/* --- */
.c-articleCardList {
  display: flex;
  flex-wrap: wrap;
  /* gap: 18px; */
  margin: 40px -18px 0;
  gap: 40px 0;
}
.c-articleCardList .c-articleCard {
  width: calc(100% / 3);
  margin: 0;
  padding: 0 9px;
}
@media screen and (max-width: 990px) { 
  .c-articleCardList .c-articleCard {
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 767px) {
  .c-articleCardList {
    display: block;
    margin: 24px 0;
  }
  .c-articleCardList .c-articleCard {
    width: 100%;
    padding: 0;
    margin: 24px 0 0;
  }
}


/*** slider control *********************************/
.c-sliderCtrl {
  display: flex;
  gap: 10px;
}
.c-sliderCtrl__arrow {
  width: 80px;
  height: 56px;
  background-color: var(--color-primary);
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5165 16.0004L17.729 22.7879L17.0493 22.1098L16.3711 21.4316L20.8321 16.9691H7.48364V15.0488H20.8493L16.3711 10.5691L17.0493 9.89102L17.729 9.21289L24.5165 16.0004Z" fill="%23fff"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px auto;
  border: 1px solid var(--color-primary);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  pointer-events: all;
  padding: 0;
  position: relative;
  transition: all 0.3s;
}
.c-sliderCtrl__arrow::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.5165 16.0004L17.729 22.7879L17.0493 22.1098L16.3711 21.4316L20.8321 16.9691H7.48364V15.0488H20.8493L16.3711 10.5691L17.0493 9.89102L17.729 9.21289L24.5165 16.0004Z" fill="%23937648"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-sliderCtrl__arrow:hover {
    background-color: var(--color-white);
    box-shadow: 0px 16px 24px rgba(26, 26, 30, 0.16);
  }
  .c-sliderCtrl__arrow:hover::before {
    opacity: 1;
  }
}
.c-sliderCtrl__arrow--prev {
  transform: scale(-1, 1);
}

/*** faq *********************************/
.c-faq {
  max-width: 808px;
  border-bottom: 1px solid var(--color-primary);
  padding: 24px;
  margin: 0 auto;
}
.c-faq__q {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--color-black);
  padding: 5px 0 5px 28px;
  position: relative;
}
.c-faq__q::before {
  content: '';
  display: block;
  width: 20px;
  height: 42px;
  background: url(../img/common/text/txt_q.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.c-faq__qText {
  flex: 1;
}
.c-faq__a {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--color-black);
  padding: 0 0 0 28px;
  margin: 16px 0 0;
}
.c-faq__cat {
  font-size: 0;
  text-align: right;
  padding: 0;
  margin: 0 0 16px;
}
.c-faq__catItem {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 2px 4px;
  margin: 2px;
}
@media screen and (max-width: 767px) {
  .c-faq {
    padding: 16px 0;
  }
  .c-faq__a {
    padding: 0;
  }
}

/*** flow *********************************/
.c-flow {
  padding: 90px 0;
}
.c-flowList {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.c-flowList__item {
  width: 220px;
  min-height: 320px;
  padding: 40px 15px;
}
.c-flowList__num {
  text-align: center;
}
.c-flowList__num::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: var(--color-primary);
  margin: 24px auto;
}
.c-flowList__title {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.04em;
}
.c-flowList__text {
  letter-spacing: 0.04em;
  margin: 8px 0 0;
}
@media screen and (max-width: 990px) {
  .c-flowList {
    max-width: 700px;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .c-flowList {
    display: block;
  }
  .c-flowList__item {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 24px;
    margin: 16px 0 0;
  }
  .c-flowList__num {
    width: 64px;
    flex-shrink: 0;
  }
  .c-flowList__num::after {
    margin-bottom: 0;
  }
  .c-flowList__detail {
    padding: 0 0 0 24px;
  }
  .c-flowList__title {
    text-align: left;
  }
}

/*** contact cta *********************************/
.c-cta {
  padding: 120px 0;
}
.c-ctaSlider {
  margin: 80px 0 0;
}
.c-ctaSlider .swiper-wrapper {
  transition-timing-function: linear;
}
.c-ctaSlider__slide {
  width: 128px;
  height: 64px;
  margin: 0 20px;
}
.c-ctaSlider__slideItem {
  width: 100%;
  height: 100%;
  position: relative;
}
.c-ctaSlider__slideItem img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding: 80px 0;
  }
  .c-ctaSlider {
    margin: 64px 0 0;
  }
}

/*** article *********************************/
.c-article__item {
  display: block;
  padding: 24px 88px 24px 24px;
  border-bottom: 1px solid var(--color-primary);
  background: url(../img/common/icon/icon_arrow.svg) no-repeat center right 24px;
  background-size: 24px auto;
  transition: opacity 0.4s, background-position 0.4s, border-color 0.4s;
  position: relative;
}
.c-article__item::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(245, 242, 235, 0.10) 0%, rgba(245, 242, 235, 0.02) 100%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s;
}
.c-article__meta {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--color-secondary);
  margin: 0 0 10px;
  transition: color 0.4s;
}
.c-article__date {
  flex-shrink: 0;
}
.c-article__cat {
  font-size: 0;
  text-align: right;
  padding: 0 0 0 40px;
}
.c-article__catItem {
  font-size: 1.4rem;
}
.c-article__catItem + .c-article__catItem::before {
  content: '';
  margin: 0 4px;
}
.c-article__title {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (hover: hover) {
  .c-article__item:hover {
    background-position: center right 10px;
    border-color: rgba(165, 130, 75, 0.55);
  }
  .c-article__item:hover::before {
    opacity: 1;
  }
  .c-article__item:hover .c-article__meta {
    color: #c8b48a;
  }
}
@media screen and (max-width: 767px) {
  .c-article__item {
    padding: 16px 64px 16px 16px;
    background-position: center right 16px;
  }
  .c-article__title {
    -webkit-line-clamp: 4;
  }
}

/*** modal *********************************/
.c-modal {
  width: 92%;
  max-width: 980px;
  max-height: 80vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.c-modal__item {
  height: 100%;
  max-height: calc(80vh - 56px - 40px);
  color: var(--color-black);
  background: rgba(245, 242, 235, 0.9);
  box-shadow: 0px 16px 24px rgba(0, 46, 157, 0.16);
  padding: 24px 40px 64px;
  margin: 0 0 40px;
  overflow-y: auto;
}
.c-modal__close {
  display: block;
  width: 48px;
  height: 48px;
  background: url(../img/common/icon/icon_close.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  border: 0;
  margin: 0 0 0 auto;
}
.c-modal__head {
  display: flex;
  align-items: center;
  padding: 0 40px;
  margin: 0 0 30px;
}
.c-modal__headIcon {
  flex-shrink: 0;
  margin: 0 80px 0 0;
}
.c-modal__headText {
  flex: 1;
}
.c-modal__headName {
  font-size: 3.2rem;
  letter-spacing: 0.04em;
}
.c-modal__slider {
  width: 100%;
  margin: 0 0 24px;
}
.c-modal__sliderSlide {
  width: 100%;
  padding: 49.56% 0 0;
  position: relative;
}
.c-modal__sliderSlide__item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.c-modal__map {
  margin: 0 0 64px;
}
.c-modal__mapImg {
  text-align: center;
}
.c-modal__mapDl {
  margin: 20px 0 0;
  text-align: right;
}
.c-modal__mapDl__link {
  background: url(../img/common/icon/icon_pdf.svg) no-repeat center right;
  background-size: 24px auto;
  padding: 0 24px 0 0;
}
.c-modal__detail {
  max-width: 560px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin: 0 auto 64px;
}
.c-modal__info {
  max-width: 560px;
  padding: 24px 56px;
  background: rgba(245, 242, 235, 0.9);
  box-shadow: none;
  margin: 0 auto;
}
.c-modal__infoDl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin: 16px 0;
}
.c-modal__infoDt {
  width: 120px;
  flex-shrink: 0;
  padding: 0 10px 0 0;
}
.c-modal__infoDd {
  flex: 1;
}
.c-modal .c-btn--close .c-btn__item {
  min-width: 135px;
}
@media screen and (max-width: 767px) { 
  .c-modal__item {
    padding: 16px;
  }
  .c-modal__close {
    width: 24px;
    height: 24px;
  }
  .c-modal__head {
    padding: 0;
  }
  .c-modal__headIcon {
    margin: 0 40px 0 0;
  }
  .c-modal__map,
  .c-modal__detail {
    margin-bottom: 40px;
  }
  .c-modal__info {
    padding: 16px;
  }
  .c-modal__infoDl {
    padding: 12px 0;
    margin: 0;
  }
}
/* --- */
.c-modalOverlay {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(19, 17, 11, 0.4);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: none;
}
.c-modalOverlay.is-active {
  opacity: 1;
  visibility: visible;
}

/*** under title *********************************/
.c-underTitle {
  padding: 240px 0 80px;
}
.c-underHeading__ja {
  display: block;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-black);
}
.c-underHeading__ja::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: var(--color-primary);
  margin: 20px 0 28px;
}
.c-underHeading__en {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-underTitle {
    padding: 128px 0 64px;
  }
  .c-underHeading__ja {
    font-size: 2.8rem;
  }
  .c-underHeading__en {
    font-size: 1.2rem;
  }
}

/*** pagination *********************************/
.c-pagination {
  margin: 80px auto 0;
}
.c-paginationList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-paginationList__item {
  min-width: 40px;
  height: 40px;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 40px;
  text-align: center;
  margin: 6px 4px;
  position: relative;
}
.c-paginationList__item a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  background-color: #fff;
  border: 1px solid var(--color-primary);
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
.c-paginationList__itemNum {
  display: inline-block;
  padding: 0 4px;
  position: relative;
}
/* --- prev / next --- */
.c-paginationList__item--prev,
.c-paginationList__item--next {
  font-size: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  position: relative;
  margin-right: 0;
  margin-left: 0;
  transition: opacity 0.3s;
}
.c-paginationList__item--prev a,
.c-paginationList__item--next a {
  background: transparent !important;
  border: 0;
}
.c-paginationList__item--prev::before,
.c-paginationList__item--next::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.0001 22.3203L14.6424 20.9626L22.562 13.043L23.9197 14.4007L16.0001 22.3203Z" fill="%23a5824b"/><path d="M17.3576 20.9627L16.0001 22.3203L8.08041 14.4007L9.43805 13.0431L17.3576 20.9627Z" fill="%23a5824b"/></svg>');
  background-repeat: no-repeat, no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.c-paginationList__item--prev {
  transform: scale(-1, 1);
}
/* --- current --- */
.c-paginationList__item.is-current {
  color: #fff;
  background-color: var(--color-primary);
}
/* --- disable --- */
.c-paginationList__item.is-disable {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 64px;
  }
}
@media (hover: hover) {
  .c-paginationList__item a:hover {
    color: #fff;
    background-color: var(--color-primary);
  }
  .c-paginationList__item--prev:hover,
  .c-paginationList__item--next:hover {
    opacity: 0.6;
  }
}

/*** contact form *********************************/
.c-contactForm {
  margin: 120px auto 0;
}
@media screen and (max-width: 767px) {
  .c-contactForm {
    margin-top: 80px;
  }
}
.c-contactForm__dl + .c-contactForm__dl {
  margin: 64px 0 0;
}
.c-contactForm__dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.c-contactForm__dd {
  position: relative;
}

/* ----- 必須 ----- */
.c-contactForm .required {
  display: block;
  padding: 0 0 0 54px;
  position: relative;
}
.c-contactForm .required::before {
  content: "必須";
  display: block;
  width: 42px;
  height: 24px;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-contactForm--en .required {
  padding: 0 0 0 68px;
}
.c-contactForm--en .required::before {
  content: "Required";
  width: 56px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

/* ----- 任意 ----- */
.c-contactForm .any {
  display: block;
  padding: 0 0 0 54px;
  position: relative;
}
.c-contactForm .any::before {
  content: "任意";
  display: block;
  width: 42px;
  height: 24px;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background: var(--color-secondary);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* ----- input ----- */
.c-contactForm input {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-black);
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
}
.c-contactForm input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
.c-contactForm input:autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

/* ----- textarea ----- */
.c-contactForm textarea {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-black);
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
}

/* ----- placeholder ----- */
.c-contactForm input::placeholder,
.c-contactForm textarea::placeholder {
  color: var(--color-secondary);
  font-weight: 400;
}

/* ----- select ----- */
.c-contactForm select {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-black);
  background: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 14px 16px;
}
.c-contactForm select::-ms-expand {
  display: none;
}
.c-contactForm__selectWrap {
  position: relative;
}
.c-contactForm__selectWrap::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.0001 22.3203L14.6424 20.9626L22.562 13.043L23.9197 14.4007L16.0001 22.3203Z" fill="%23222"/><path d="M17.3576 20.9627L16.0001 22.3203L8.08041 14.4007L9.43805 13.0431L17.3576 20.9627Z" fill="%23222"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto;
  background-size: contain;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

/* ----- radio ----- */
.c-contactForm__radioWrap {
  font-size: 0;
  padding: 4px 0 0;
}
.c-contactForm .radio-field,
.c-contactForm .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0px 0 0px 32px;
  margin: 12px 28px 20px 12px;
  position: relative;
}
.c-contactForm__radioWrap.vertical .radio-field,
.c-contactForm__radioWrap.vertical .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.c-contactForm .radio-field label,
.c-contactForm .wpcf7-radio .wpcf7-list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
}
.c-contactForm input[type="radio"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.c-contactForm .radio-field-text,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label {
  display: block;
}
.c-contactForm .radio-field-text::before,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.c-contactForm .radio-field-text::after,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
  transform: scale3d(0.3, 0.3, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
/* selected */
.c-contactForm input[type="radio"]:checked + .radio-field-text::after,
.c-contactForm input[type="radio"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.c-contactForm input[type="radio"]:focus + .radio-field-text::before,
.c-contactForm input[type="radio"]:focus + .wpcf7-list-item-label::before {
  outline: auto;
}

/* ----- checkbox ----- */
.c-contactForm__checkWrap {
  font-size: 0;
  padding: 4px 0 0;
}
.c-contactForm .checkbox-field,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0px 0 0px 32px;
  margin: 12px 28px 12px 12px;
  position: relative;
}
.c-contactForm__checkWrap.vertical .checkbox-field,
.c-contactForm__checkWrap.vertical .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.c-contactForm .checkbox-field label,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
}
.c-contactForm input[type="checkbox"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.c-contactForm .checkbox-field-text,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
  
}
.c-contactForm .checkbox-field-text::before,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.c-contactForm .checkbox-field-text::after,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border: 1px solid var(--color-white);
  border-width: 0 0 2px 2px;
  position: absolute;
  top: 8px;
  left: 7px;
  transform: rotate(-45deg);
}
/* selected */
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--color-primary);
}
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::after,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.c-contactForm input[type="checkbox"]:focus + .checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:focus + .wpcf7-list-item-label::before {
  outline: auto;
}

/* ----- submit ----- */
.c-contactForm__btn {
  margin: 60px 0 0;
}

/* ----- validation error ----- */
.c-contactForm input.is-error,
.c-contactForm textarea.is-error,
.c-contactForm select.is-error {
  outline: 2px solid #c90014;
  outline-offset: -2px;
  background-color: #fff5f0;
}
.c-error-txt {
  width: 100%;
}
.c-error-txt .is-error:nth-of-type(n + 2) {
  display: none !important;
}
.c-error-txt .is-error {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c90014;
  margin: 12px 0 0;
  padding: 0 0 0 28px;
  position: relative;
}
.c-error-txt .is-error::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon/icon_error.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0;
}

/* ----- 個別スタイル ----- */
/* メールアドレス（確認用） */
.c-contactForm__dl--mailConfirm {
  display: flex;
  align-items: center;
  margin-top: 8px !important;
}
.c-contactForm__dl--mailConfirm .c-contactForm__dt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 16px 0 0;
}
.c-contactForm__dl--mailConfirm .c-contactForm__dd {
  flex: 1;
}
/* 承認確認 */
.c-contactForm__dl--agree .privacyPolicy {
  width: 100%;
  height: 340px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  background: #fff;
  padding: 12px 16px;
  overflow: auto;
  overflow-x: hidden;
  margin: 0 0 12px;
}
.c-contactForm__dl--agree .privacyPolicy::-webkit-scrollbar {
  width: 14px;
}
.c-contactForm__dl--agree .privacyPolicy::-webkit-scrollbar-track {
  background: #f4f4f4;
  border: 2px solid #fff;
}
.c-contactForm__dl--agree .privacyPolicy::-webkit-scrollbar-thumb {
  background: #d3d3d3;
  border: 3px solid #f4f4f4;
  border-radius: 999px;
}
/* -- */
.c-contactForm--en .c-contactForm__dl--agree .privacyPolicy {
  letter-spacing: 0.02em;
}

/* ----- cf7 打ち消し ----- */
.wpcf7-form-control-wrap {
  display: block;
  font-size: 0;
}
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}



/*** animation *********************************/
/* .js-inView {} */
.anime-slideUp {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(16px);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s ease, filter 0.8s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.in-view.anime-slideUp {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* --- */
.anime-childSlideUp > * {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(16px);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s ease, filter 0.8s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.in-view.anime-childSlideUp > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* --- */
.anime-slideUpChars {
  overflow: hidden;
}
.anime-slideUpChars .char {
  display: inline-block;
  white-space: pre;
  /* transform: translateY(120%); */
  transform: scale(1.1);
  opacity: 0;
  filter: blur(12px);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease, filter 1.2s ease, box-shadow 0.5s ease;
}
.anime-slideUpChars.in-view .char {
  /* transform: translateY(0); */
  transform: scale(1); 
  opacity: 1;
  filter: blur(0);
}
.char.char--space {
  width: 0.25em;
}

/* == header ============================================== */
.l-header .hidden-item {
  transition: opacity 1s ease, visibility 1s ease, filter 1.2s ease;
}
body.is-hidden .l-header .hidden-item {
  opacity: 0;
  visibility: hidden;
}
.l-header {
  width: 100%;
  height: 115px;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease, filter 1.2s ease;
  will-change: transform;
}
.l-header__inner {
  width: 94%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  transition: opacity 1s ease, visibility 1s ease, filter 1.2s ease;
}
.l-header__logo {
  width: 300px;
  height: 83px;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  z-index: 6;
}
.l-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background: url(../img/common/logo01.png) no-repeat center;
  background-size: contain;
  transition: all 0.4s;
}
.l-header__nav .nav__contents {
  display: flex;
  align-items: center;
}
.l-header__nav .nav__contents--sp {
  display: none !important;
}
.l-header__nav .navListWrap {
  padding: 16px 40px;
  margin: 0 8px 0 0;
  position: relative;
}
.l-header__nav .navListWrap::before {
  transition: opacity 1s ease, visibility 1s ease, filter 1.2s ease, background-color 0.4s;
  will-change: background-color;
}
body.is-hidden .l-header__nav .navListWrap::before {
  opacity: 0;
  visibility: hidden;
}
.l-header__nav .navList {
  display: flex;
  justify-content: flex-end;
}
.l-header__nav .navList__item {
  font-size: 1.4rem;
  line-height: 1.6;
}
.l-header__nav .navList__item + .navList__item {
  margin: 0 0 0 40px;
}
.l-header__nav .navList__item__text {
  display: inline;
  white-space: nowrap;
  position: relative;
  transition: color 0.4s;
}
.l-header__nav .navList__item__text::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--color-secondary);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: width 0.4s;
}
.l-header__nav .navList__item--blank .navList__item__text {
  padding: 0 20px 0 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23fff"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px auto;
}
.l-header__nav .navList__item--blank .navList__item__text::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23a4adb5"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  will-change: opacity;
}
@media (hover: hover) {
  .l-header__nav .navList__item a:hover .navList__item__text {
    color: var(--color-secondary);
  }
  .l-header__nav .navList__item a:hover .navList__item__text::before {
    width: 100%;
  }
  .l-header__nav .navList__item--blank a:hover .navList__item__text::after {
    opacity: 1;
  }
}
.l-header__nav .navList__item--drop {
  position: relative;
}
.l-header__nav .navList__item__dropTrigger {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  text-align: left;
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  position: relative;
  padding: 0 20px 0 0;
  transition: color 0.4s;
}
.l-header__nav .navList__item__dropTrigger::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid var(--color-white);
  border-width: 1px 0 0 1px;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 5px;
  transform: rotate(45deg);
  transition: all 0.4s;
}
.l-header .l-header__nav .navList__item__dropTrigger.is-active {
  color: var(--color-secondary);
}
.l-header .l-header__nav .navList__item__dropTrigger.is-active::before {
  top: 4px;
  transform: rotate(225deg);
  border-color: var(--color-secondary);
}
.l-header .l-header__nav .navList__item__dropTrigger.is-active::after {
  width: 100%;
}
.l-header__nav .navList__item__dropTrigger::after {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--color-secondary);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: width 0.4s;
}
.l-header__nav .navList__item__dropTrigger.is-active::after {
  opacity: 1;
}
@media (hover: hover) {
  .l-header .l-header__nav .navList__item__dropTrigger:hover {
    color: var(--color-secondary);
  }
  .l-header .l-header__nav .navList__item__dropTrigger:hover::before {
    border-color: var(--color-secondary);
  }
  .l-header .l-header__nav .navList__item__dropTrigger:hover::after {
    width: 100%;
  }
}
.l-header__nav .navList__item__dropItem {
  width: 544px;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 1;
  display: none;
  opacity: 1;
}
.l-header__nav .dropItem__inner {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
.l-header__nav .dropListCard {
  width: 100%;
  display: flex;
  gap: 16px;
  color: #fff;
}
.l-header__nav .dropListCard__item {
  width: 160px;
  height: 160px;
}
.l-header__nav .dropListCard__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.l-header__nav .dropListCard__link::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.l-header__nav .dropListCard__text {
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.l-header__nav .dropListCard__text .text {
  font-size: 1.4rem;
  line-height: 1.6;
}
.l-header__nav .dropListCard__text .text02 {
  background: url(../img/common/icon/icon_arrow.svg) no-repeat right -5px center;
  background-size: 28px auto;
}
.l-header__nav .dropListCard__bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-header__nav .dropListCard__bg::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media (hover: hover) {
  .l-header__nav .dropListCard__link:hover::before {
    opacity: 1;
  }
  .l-header__nav .dropListCard__link:hover .dropListCard__bg {
    transform: scale(1.06) translateZ(0);
  }
}
@media screen and (min-width: 1171px) {
  .l-header.is-overlap .l-header__logo a {
    background-image: url(../img/common/logo02.png)
  }
  .l-header.is-overlap .navList__item,
  .l-header.is-overlap .navList__item__dropTrigger {
    color: var(--color-black);
  }
  .l-header.is-overlap .navList__item__dropTrigger::before {
    border-color: var(--color-black);
  }
  .l-header.is-overlap .l-header__nav .navListWrap::before {
    background-color: rgba(255, 255, 255, 0.24);
  }
  .l-header.is-overlap .l-header__nav .navList__item__text::before,
  .l-header.is-overlap .l-header__nav .navList__item__dropTrigger::after {
    background: var(--color-primary);
  }
  .l-header.is-overlap .l-header__nav .navList__item a:hover .navList__item__text, 
  .l-header.is-overlap .l-header__nav .navList__item__dropTrigger:hover,
  .l-header.is-overlap .l-header__nav .navList__item__dropTrigger.is-active {
    color: var(--color-primary);
  }
  .l-header.is-overlap .l-header__nav .navList__item__dropTrigger:hover::before,
  .l-header.is-overlap .l-header__nav .navList__item__dropTrigger.is-active::before {
    border-color: var(--color-primary);
  }
}
@media screen and (max-width: 1170px) {
  .l-header {
    height: 64px;
    background: var(--color-black);
  }
  body.is-hidden .l-header {
    opacity: 0;
    visibility: hidden;
  }
  .l-header__inner {
    width: 92%;
  }
  .l-header__inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
  }
  .l-header__logo {
    width: 145px;
    height: 40px;
    left: 4%;
  }
  .l-header__nav {
    width: 100%;
    height: 100svh;
    height: 100vh;
    background: rgba(26, 25, 22, 1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .l-header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }
  /* リサイズ中はtransitionを切る */
  body.is-resizing .l-header__nav {
    transition: none !important;
  }
  .l-header__nav .nav__inner {
    width: 92%;
    /* height: calc(100svh - 128px); */
    height: calc(100vh - 128px);
    overflow: hidden;
    overflow-y: auto;
    padding: 16px 0 240px;
    margin: 64px auto 0;
  }
  .l-header__nav .nav__contents--pc {
    display: none !important;
  }
  .l-header__nav .nav__contents--sp {
    display: block !important;
  }
  .l-header__nav .nav__contents {
    width: 100%;
    display: block;
    text-align: center;
  }
  .l-header__nav .navListWrap {
    padding: 16px 0;
    margin: 0;
}
  .l-header__nav .navListWrap .navList {
    max-width: 280px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 0;
    margin: 48px auto 0;
  }
  .l-header__nav .navListWrap .navList__item {
    width: 50%;
    margin: 0;
  }
  .l-header__nav .navList__item + .navList__item {
    margin: 0;
  }
  .l-header__nav .stCardList {
    text-align: left;
  }
  .l-header__nav .stCardList__item {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 16px;
    position: relative;
  }
  .l-header__nav .stCardList__link {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/common/icon/icon_arrow.svg) no-repeat right 8px center;
    background-size: 28px auto;
    padding: 16px 8px 16px 16px;
  }
  .l-header__nav .stCardList__name {
    display: flex;
    align-items: center;
  }
  .l-header__nav .stCardList__nameText {
    font-size: 1.2rem;
    margin: 0 0 0 8px;
  }
  .l-header__nav .stCardList__bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .l-header__nav .stCardList__bg::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  .l-header__nav .nav__lower {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    margin: 48px 0 0;
  }
  .l-header__nav .nav__lower .lowerItem {
    display: flex;
  }
  .l-header__nav .nav__lower .navList__item {
    font-size: 1.2rem;
  }
  .l-header__nav .nav__lower .copyright::before {
    content: '｜';
    margin: 0 4px;
  }
}

/*** hamburger btn *********************************/
.c-hamburger {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 10;
}
.c-hamburger__line {
  width: 28px;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  left: 6px;
  transition: all 0.4s;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.c-hamburger__line--1 {
  top: 16px;
}
.c-hamburger__line--2 {
  top: 24px;
}
/* --- active --- */
.c-hamburger.is-active .c-hamburger__line--1 {
  top: 20px;
  transform: rotate(24deg) translateZ(0);
}
.c-hamburger.is-active .c-hamburger__line--2 {
  top: 20px;
  transform: rotate(-24deg) translateZ(0);
}
@media screen and (min-width: 1171px) {
  .c-hamburger {
    display: none;
  }
}
@media screen and (max-width: 1170px) {
  .c-hamburger {
    opacity: 1;
    filter: blur(0);
    visibility: visible;
    transition: opacity 1s ease, visibility 1s ease, filter 1.2s ease;
    will-change: transform;
  }
  body.is-hidden .c-hamburger {
    opacity: 0;
    filter: blur(16px);
    visibility: hidden;
  }
}

/* == footer ============================================== */
.l-footer {
  background: rgba(19, 17, 11, 0.4);
  padding: 40px 0 160px;
  color: #fff;
}
.l-footer__inner {
  width: 94%;
  margin: 0 auto;
}
.l-footer__upper {
  display: flex;
  justify-content: space-between;
}
.l-footer__logo {
  width: 240px;
}
.l-footer .navList {
  font-size: 1.4rem;
  line-height: 1.6;
}
.l-footer .navList__item {
  font-size: 1.4rem;
  line-height: 1.6;
}
.l-footer .navList__item + .navList__item {
  margin: 12px 0 0;
}
.l-footer .navList__item a {
  transition: color 0.4s;
}
.l-footer .navList__item__text {
  display: inline;
  white-space: nowrap;
  position: relative;
}
.l-footer .navList__item__text::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--color-secondary);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: width 0.4s;
}
.l-footer .navList__item--blank .navList__item__text {
  padding: 0 20px 0 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23fff"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px auto;
  position: relative;
}
.l-footer .navList__item--blank .navList__item__text::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 24H8V8H13.7607V9.91992H9.91992V22.0801H22.0801V18.2393H23.999V16.3184H22.0801V11.2764L16 17.3564L14.6436 16L20.7236 9.91992H15.6807V8H24V24ZM22.0801 18.2393H22.0791V16.3184H22.0801V18.2393Z" fill="%23a4adb5"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  will-change: opacity;
}
@media (hover: hover) {
  .l-footer .navList__item a:hover {
    color: var(--color-secondary);
  }
  .l-footer .navList__item a:hover .navList__item__text::before {
    width: 100%;
  }
  .l-footer .navList__item--blank a:hover .navList__item__text::after {
    opacity: 1;
  }
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 64px;
}
.l-footer__lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.2rem;
  margin: 64px 0 0;
}
.l-footer__lower .lowerItem {
  display: flex;
}
.l-footer__lower .navList__item {
  font-size: 1.2rem;
}
.l-footer__lower .navList__item--blank .navList__item__text,
.l-footer__lower .navList__item--blank .navList__item__text::after {
  background-size: 16px auto;
}
.l-footer .copyright::before {
  content: '｜';
  margin: 0 4px;
}
@media screen and (max-width: 900px) {
  .l-footer__upper {
    display: block;
  }
  .l-footer__logo {
    margin: 0 auto 48px;
  }
  .l-footer__nav {
    max-width: 280px;
    margin: 0 auto;
    gap: 40px 0;
  }
  .l-footer__nav .navList {
    width: 50%;
    text-align: center;
  }
}

/* == underPage ============================================== */
#underPage {}

@media screen and (min-width: 768px) { }
@media screen and (max-width: 767px) { }
@media (hover: hover) { }


