@charset "utf-8";

/* ========== root ========== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: none;
font-style: normal;
text-align: left;
zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
table {
border-collapse: collapse;
font-family: inherit;
}
h1,h2,h3,h4,h5 {
font-size: 100%;
font-weight: normal;
line-height: 1;
}
input,textarea,select {
font-family: inherit;
font-size: 16px;
}
input, textarea, select option {
    font-size: 14px;
    background-color: #4a4a4a;
    color: #fff;
}
input[type=
],input[type=
],input[type=
] {
-webkit-appearance: none;
border-radius: 0;
}
textarea {
resize: none;
-webkit-appearance: none;
border-radius: 0;
}
th,td {
border-collapse: collapse;
}
table th,table td {
/* white-space: nowrap; */
}
ul,ol {
list-style-type: none;
}
img {
vertical-align: text-bottom;
vertical-align: -webkit-baseline-middle;
width: 100%;
max-width: 100%;
height: auto;
box-sizing: border-box;
object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}
body, html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font_base);
}
*, *:before, *:after {
  box-sizing: border-box;
  }
/* ========== root ========== */
:root {
  --color01: #161616;
  --color02: #fffff6;
  --color03: #2F3F47;
  --color04: #80120C;
  --color05: hsla(3, 83%, 27%, 0.8);
  --color06: hsl(42deg 83.15% 72.84% / 100%);
  --color07: #ae9161;
  --color08: hsla(3, 83%, 27%, 0.3);
  --txt_white: #fff;
  --b_shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --t_shadow: 1px 1px 3px rgba(104, 104, 104, 0.7);
  --radius: clamp(0.438rem, 0.304rem + 0.51vw, 0.813rem);
  --max-width: 1600px;
  --font_base: "Shippori Mincho B1", serif;
  --font_en: "Cormorant", serif;
  --fw-regular: 100;
  --fw-medium: 500;
  --fw-bold: 700;
  --header-height: clamp(4.063rem, -9.062rem + 17.5vw, 6.25rem);
}
/* * {
  outline: 1px solid rgba(255, 0, 0, 0.2);
} */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-wrap: break-word; 
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 80px;
  letter-spacing: clamp(0.188rem, 0.126rem + 0.16vw, 0.313rem);
}
.anchor {
  display: block;
  padding-top: var(--header-height);
  margin-top: calc(-1 * var(--header-height));
  visibility: hidden;
}
.visually-hidden{
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
p, th, td {
  font-size: clamp(0.875rem, 0.768rem + 0.41vw, 1.125rem); /* 16px~18px */
}
/* ===== ブレークポイント別の表示制御クラス ===== */

/* 1600px を基準とした表示・非表示 */
@media screen and (max-width: 1600px) {
  .hide-16 { display: none !important; }
  .show-16 { display: block !important; }
}
@media screen and (min-width: 1601px) {
  .show-16 { display: none !important; }
}

/* 1280px を基準とした表示・非表示 */
@media screen and (max-width: 1280px) {
  .hide-12 { display: none !important; }
  .show-12 { display: block !important; }
}
@media screen and (min-width: 1281px) {
  .show-12 { display: none !important; }
}

/* 1024px を基準とした表示・非表示 */
@media screen and (max-width: 1024px) {
  .hide-10 { display: none !important; }
  .show-10 { display: block !important; }
}
@media screen and (min-width: 1025px) {
  .show-10 { display: none !important; }
}

/* 992px を基準とした表示・非表示 */
@media screen and (max-width: 992px) {
  .hide-9 { display: none !important; }
  .show-9 { display: block !important; }
}
@media screen and (min-width: 993px) {
  .show-9 { display: none !important; }
}

/* 830px を基準とした表示・非表示 */
@media screen and (max-width: 830px) {
  .hide-8 { display: none !important; }
  .show-8 { display: block !important; }
}
@media screen and (min-width: 831px) {
  .show-8 { display: none !important; }
}

/* 768px を基準とした表示・非表示 */
@media screen and (max-width: 768px) {
  .hide-7 { display: none !important; }
  .show-7 { display: block !important; }
}
@media screen and (min-width: 769px) {
  .show-7 { display: none !important; }
}

/* 630px を基準とした表示・非表示 */
@media screen and (max-width: 630px) {
  .hide-6 { display: none !important; }
  .show-6 { display: block !important; }
}
@media screen and (min-width: 631px) {
  .show-6 { display: none !important; }
}

/* 480px を基準とした表示・非表示 */
@media screen and (max-width: 480px) {
  .hide-4 { display: none !important; }
  .show-4 { display: block !important; }
}
@media screen and (min-width: 481px) {
  .show-4 { display: none !important; }
}

/* --------------------------------------------
  レスポンシブフォントサイズ（480px ~ 1920pxで可変）
  480px以下：最小値に固定、1920px以上：最大値に固定
-------------------------------------------- */
/* ========== ベース用フォントサイズ ========== */
/* 小さめ文字：13px ~ 15px */
.fs-sm {
  font-size: clamp(0.813rem, 0.768rem + 0.17vw, 0.938rem); /* 14px~16px */
  line-height: 1.5;
  font-weight: var(--fw-regular);
  letter-spacing: 1px;
}
/* 通常文字：14px ~ 18px */
.fs-base {
  font-size: clamp(0.875rem, 0.768rem + 0.41vw, 1.125rem); /* 16px~18px */
  line-height: 1.7;
  font-weight: var(--fw-regular);
}
p, a, li {
  font-size: clamp(0.875rem, 0.768rem + 0.41vw, 1.125rem); /* 16px~18px */
  line-height: 1.7;
  font-weight: var(--fw-regular);
}
/* やや大きめ：18px ~ 22px */
.fs-md {
  font-size: clamp(1.125rem, 1rem + 0.47vw, 1.375rem); /* 18px~22px */
  line-height: 1.6;
  font-weight: var(--fw-medium);
}
/* 大きめ見出しなど：30px ~ 36px */
.fs-lg {
  font-size: clamp(1.875rem, 1.714rem + 0.61vw, 2.25rem); 
  line-height: 1.4;
  font-weight: var(--fw-medium);
}
/* 特大：35px ~ 50px */
.fs-xl {
  font-size: clamp(2.188rem, 1.854rem + 1.27vw, 3.125rem);
  line-height: 1.3;
  font-weight: var(--fw-medium);
}
/* ========== タイトル・見出し向け ========== */
/* h1：32px ~ 48px */
h1 {
  font-size: clamp(2rem, 1.5rem + 1.56vw, 3rem); /* 32px〜48px */
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
/* h2：28px ~ 40px */
h2 {
  font-size: clamp(1.75rem, 1.375rem + 1.17vw, 2.5rem); /* 28px〜40px */
  font-weight: var(--fw-medium);
  line-height: 1.35;
}
/* h3：25px ~ 45px */
h3 {
  font-size: clamp(1.563rem, 0.751rem + 2.06vw, 2.813rem);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 8px;
}
/* h4：20px ~ 24px */
h4 {
  font-size: clamp(1.25rem, 1.1rem + 0.4vw, 1.5rem); /* 24px〜32px */
  font-weight: var(--fw-medium);
  line-height: 1.4;
  letter-spacing: 2px;
}
/* サブタイトルなど：20px ~ 28px */
.ttl-font {
  font-size: clamp(1.25rem, 1.063rem + 0.73vw, 1.75rem); /* 20px〜28px */
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
/* 特大文字（Heroなど）：40px ~ 60px */
.hero-ttl {
    font-size: clamp(2.5rem, 0.625rem + 7.14vw, 6.875rem);
    font-weight: var(--fw-medium);
    line-height: 1.2;
}
body {
    line-height: 1.6;
    background-color: var(--color02);
    color: var(--color02);
}
.en {
    font-family: var(--font_en);
    letter-spacing: 2px;
}
/* ========== 汎用ユーティリティクラス ========== */
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
/* マージン・パディング */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mr-1 { margin-right: 1rem; }
.mr-2 { margin-right: 2rem; }
.mr-3 { margin-right: 3rem; }
.ml-1 { margin-left: 1rem; }
.ml-2 { margin-left: 2rem; }
.ml-3 { margin-left: 3rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pt-5 { padding-top: clamp(2rem, 1.082rem + 3.92vw, 5rem); }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-5 { padding-bottom: clamp(2rem, 1.082rem + 3.92vw, 5rem); }
.pr-1 { padding-right: 1rem; }
.pr-2 { padding-right: 2rem; }
.pr-3 { padding-right: 3rem; }
.pl-1 { padding-left: 1rem; }
.pl-2 { padding-left: 2rem; }
.pl-3 { padding-left: 3rem; }
.m-0 { margin: 0; }
.m-1 { margin: 1rem; }
.m-2 { margin: 2rem; }
.m-3 { margin: 3rem; }
.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }
.g-1 { gap: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
/* シャドウ・角丸 */
.t-shadow {
  text-shadow: var(--t_shadow);
}
.shadow {
  box-shadow: var(--b_shadow);
}
.round {
  border-radius: var(--radius);
}
/* display */
.inline-block { display: inline-block; }
.block { display: block; }
.none { display: none !important; }
/* width */
.w-100 { width: 100%; }
.w-50 { width: 48%; }
.w-30 { width: 28%; }
.w-20 { width: 20%; }
.w-80 { width: 78%; }
.w-70 { width: 68%; }
.w-40 { width: 38%; }
.w-60 { width: 58%; }
.h-100 { height: 100%; }
.h-screen { height: 100vh; }
@media screen and (max-width:1024px) {
  .w-50 { width: 100%; }
  .w-30 { width: 100%; }
  .w-70 { width: 100%; }
  .w-40 { width: 100%; }
  .w-60 { width: 100%; }
  .w-20 { width: 100%; }
  .w-80 { width: 100%; }
}
/* grid */
.grid-center {
  display: grid;
  place-items: center;
}
/* container */
.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  height: 100%;
}
@media screen and (max-width:1600px) {
  .container {
    width: min(95%, var(--max-width));
}
}
@media screen and (max-width:1400px) {
  .container {
    width: min(95%, var(--max-width));
}
}
@media screen and (max-width:992px) {
  .container {
    width: min(95%, var(--max-width));
}
}
@media screen and (max-width:600px) {
.container {
    width: min(95%, var(--max-width));
}
}
/* center */
.relative {
  position: relative;
}
.center01 {
  display: grid;
  place-items: center;
}
.center02 {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}
.center03 {
  position: absolute;
  inset: 0;
  margin: auto;
}
/* 縦書き */
.tate {
    writing-mode: vertical-rl;
    align-items: center;
}
/* fede効果 */

.fede-box {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 0.8s ease-out;
  position: relative;
  overflow-x: hidden;
  will-change: transform, opacity;
}
.fade-r, .fade-l, .fade-t, .fade-b, .fade-c {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.fade-target {
  transition: opacity 0.5s ease;
}
.fade-scale {
  will-change: transform, opacity; /* パフォーマンス向上用 */
  transform-origin: center center; /* 拡大の基準位置（中央） */
}
.reveal-l2r,
.reveal-r2l {
  display: inline-block; /* テキスト要素に必要 */
  clip-path: inset(0 100% 0 0); /* 初期状態で非表示 */
}
.char {
  display: inline-block;
  white-space: pre;
}

/* コンテナを延長 */
.out_contents {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
/* 背景を広げる */
.inverse {
  background-color: #000;
  color: var(--txt_white);
  box-shadow: 0 0 0 100vmax #000;
  clip-path: inset(0 -100vmax);
}
/* 勉強 */
.parent > .child {
  /* 親直下の子要素だけ対象にする
例：.menu > li {} → .menuの直下にあるliだけ */
}
h2 + p {
  /* .sibling1 + .sibling2
直後に続く兄弟要素だけ対象 */
}
h2 ~ p {
  /* .sibling1 ~ .sibling2
後ろに続くすべての兄弟要素が対象 */
}
input[type="text"] {
  /* [type="text"]
<input type="text"> にだけスタイル適用 */
}
a[href^="https"]::after {
  /* [href^="https"]
httpsで始まるリンクだけに適用 */
}
[class*="btn"] {
  /* クラス名にbtnを含む要素全部
例：btn, btn-primary, icon-btnなど */
}
li:not(:last-child) {
  /* :not(selector)
指定したもの以外にスタイル適用 */
}
.card:has(img) {
  /* :has() ← 【超注目・新機能】
特定の子要素を「持っている」親をスタイルできる
（対応ブラウザ：モダン環境） */
}
.section {
}
/* スマホ用（〜600px） */
@media screen and (max-width: 600px) {}

/* タブレット共通 */
@media screen and (min-width: 601px) and (max-width: 1024px) {}

/* タブレット縦 */
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {}

/* タブレット横 */
@media screen and (min-width: 601px) and (max-width: 1366px) and (orientation: landscape) {}

/* PC以上 */
@media screen and (min-width: 1025px) {}

.red {
  color: #7D130C;
}
.black {
  color: #000;
}
.white {
}
/* ========== ヘッダー ========== */
.header-contents {
    position: relative;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 15px;
    height: var(--header-height);
    background-color: rgba(0, 2, 0, 0.9);
}
.header-contents div {}
.header-contents .menu {
    width: 25%;
}
.header-contents .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 999;
    cursor: pointer;
}
/* 初期状態：非表示 */
header .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 998; /* menu-toggleより下に配置 */
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header .nav.opening,
header .nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
header .nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
header .menu-toggle .ttl {
  transition: color 0.3s;
}
.error404 .header-contents .line {
    background: #000;
}
.error404 header .menu-toggle .ttl {
    color: #000;
}
.error404 header .logo a .white-logo {
  display: none !important;
}
.error404 header .logo a .black-logo {
  display: block !important;
}
.error404 header .link .lang a {
  color: #000;
}
.error404 header .link .lang .divider {
  color: #000;

}
/* pcのnav */
.header-contents .pc-box .right .pc-nav {}
.header-contents .pc-box .right .pc-nav ul {
    display: flex;
    align-items: center;
}
.header-contents .pc-box .right .pc-nav li {}
.header-contents .pc-box .right .pc-nav .open {}
.header-contents .pc-box .right .pc-nav li a {}
.header-contents .pc-box .right .pc-nav li p {}
.header-contents .pc-box .right .pc-nav li .list { display: none; }
.header-contents .pc-box .right .pc-nav li.open > .list { display: block; }
.header-contents .pc-box .right .pc-nav li .sub {}
.header-contents .pc-box .right .pc-nav li .sub a {}
.header-contents .pc-box .right .pc-nav li { position: relative; }
.header-contents .pc-box .right .pc-nav li .list {
    position: absolute;
    left: 16px;
    top: 100%;
    min-width: 200px;
    z-index: 1000;
}
.header-contents .pc-box .right .pc-nav li .sub a {
    display: inline-block;
    padding: 2px 5px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s ease;
}
.header-contents .pc-box .right .pc-nav li .sub a:hover {
    background: hsl(37.4deg 32.22% 20%);
}
/* ハンバーガー線 */
header .line-box {
    width: 30px;
    height: 13px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header .line {
  display: block;
  height: 1px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 1px;
}

/* ハンバーガー→× */
header .menu-toggle.active .line-box {
  height: 20px;
}
header .menu-toggle.active .line {
  background-color: #333;
}
header .menu-toggle.active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header .menu-toggle.active .line:nth-child(2) {
  opacity: 0;
}
header .menu-toggle.active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
header .menu-toggle.active .ttl {
  color: #333;
}

/* nav ul 調整（必要であれば） */
header .nav ul {
  list-style: none;
  padding: 80px 20px 20px;
  margin: 0;
}
header .nav li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}
header .nav li a,
header .nav li p {
    text-decoration: none;
    color: #333;
    text-align: left;
}

.header-contents .logo {}
.header-contents .logo img {
    height: 60px;
}
.header-contents .pc-box {
    width: 100%;
    align-items: center;
    flex-wrap: nowrap;
}
.header-contents .pc-box .left {
    display: flex;
    align-items: center;
    width: 30%;
    justify-content: flex-start;
    gap: 30px;
}
.header-contents .pc-box .right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-contents .link {
    display: flex;
    align-items: center;
    width: 25%;
    justify-content: flex-start;
    gap: 20px;
}
.header-contents .link .lang .divider {
    margin: 0 0px;
    font-size: 10px;
}
.header-contents .reserve {
  background-color: var(--color05);
}
.header-contents .reserve a {
    display: flex;
    align-items: center;
    padding: 7px 16px;
    gap: 8px;
}
.header-contents .reserve a img {
    width: 35px;
    height: auto;
}
.header-contents .reserve a p {}
.accordion > li > p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    margin: 0;
}
.accordion > li > p .arrow {
    width: 30px;
    height: 30px;
    transition: transform .3s ease;
    flex-shrink: 0;
  display: block;
  vertical-align: middle;
  transition: transform .3s ease;
  fill: #fff;
}
.accordion > li.open > p .arrow {
  transform: rotate(180deg);
}
.lang a.active {
  font-weight: 700;
  opacity: 1;
  pointer-events: none; /* 現在言語はクリック無効にする場合 */
}
.lang a.inactive {
  opacity: .5;          /* 暗くする */
}
.recaptcha_message {
    display: flex;
    justify-content: center;
    width: 100%;
}
.recaptcha_message p {
    font-size: 14px;
}
.recaptcha_message a {
  font-size: 14px;
}

/* ========== フッター内部ラッパー ========== */
.footer-contents {
    background: #161616;
}
.footer-contents .area {
    width: 90%;
    margin: 0px auto;
    padding: 65px 0;
}
.footer-contents .up {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #fff;
}
.footer-contents .up .box:nth-child(1) {}
.footer-contents .up .box:nth-child(1) .img-box {}
.footer-contents .up .box:nth-child(1) .img-box img {
    height: 85px;
    width: auto;
    object-fit: contain;
}
.footer-contents .up .box:nth-child(1) .text-box {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    gap: 20px;
}
.footer-contents .up .box:nth-child(1) .text-box a {}
.footer-contents .up .box:nth-child(1) .reserve {
    background-color: #570909;
    width: 160px;
    padding: 8px 0;
}
.footer-contents .up .box:nth-child(1) .reserve a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.footer-contents .up .box:nth-child(1) .reserve a img {
    width: 26px;
    height: auto;
}
.footer-contents .up .box:nth-child(1) .reserve a p {}
.footer-contents .up .box:nth-child(2) {}
.footer-contents .up .box:nth-child(2) ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    width: 90%;
    margin-left: auto;
}
.footer-contents .up .box:nth-child(2) li {
    width: 30%;
    text-align: left;
}
.footer-contents .down {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 25px;
}
.footer-contents .down .box:nth-child(1) {
    display: flex;
    gap: 20px;
    width: 40%;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.footer-contents .down .box:nth-child(1) .card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contents .down .ex {}
.footer-contents .down .tel {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contents .down .tel p {}
.footer-contents .down .tel img {
  width: 20px;
  height: auto;
}
.footer-contents .down .box:nth-child(1) .insta {}
.footer-contents .down .box:nth-child(1) .insta img {
    width: 30px;
    height: auto;
}
.footer-contents .down .box:nth-child(2) {
    display: flex;
    align-items: self-start;
    gap: 20px;
}
.footer-contents .down .box:nth-child(2) img {
    height: 120px;
    width: auto;
}

.footer-contents .copy {
    text-align: center;
    padding-bottom: 15px;
}
/* ===== アコーディオン ===== */

.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion > li {
  position: relative;
}

.accordion > li > a,
.accordion > li > p {
  padding: 0.6rem 1rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
}

.accordion > li > p {
  margin: 0;
}

/* アコーディオン内リスト */
.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion > li {
  position: relative;
}
.accordion > li > p {
  margin: 0;
}

.accordion .list {
  display: none;
  padding: 0;
}
.accordion .list .sub {
}
.accordion .list .sub a {
    display: inline-block;
    padding: 2px 4px;
    background-color: var(--color07);
    color: #fff;
    text-decoration: none;
    margin-bottom: 6px;
}

.accordion .list a:first-child {
  border-top: none;
}
.accordion .open .list {
    display: flex;
}





/* ===== WPパスワード保護 ===== */
.section-password {
  position: relative;
  z-index: 100;
}
.section-password .container {}
.password-wrap {
  width: 100%;
  margin: 3rem auto;
  padding: 2rem;
  background: #0e0505ab;
  border-radius: 12px;
  text-align: center;
}
.password-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.password-input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background-color: #fff;
}
.password-submit {
  padding: 0.5rem 1rem;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}
/* ========== QR ========== */
.qr-link {
    position: fixed;
    bottom: 20px;
    right: 0;
    z-index: 999;
    overflow: hidden;
    color: #000;
    max-width: 330px;
    transform-origin: bottom right;
    cursor: pointer;
    transition: width 0.5s ease, height 0.5s ease;
}

.qr-link .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease;
  width: 100%;
}

.qr-link .up {
  background-color: hsla(0, 0%, 100%, 0.6);
  width: 100%;
  border-radius: 10px 0px 0 0;
}

.qr-link .up .ttl {
    text-align: center;
    padding: 5px 10px;
}

.qr-link .down {
    background-color: var(--color07);
    display: flex;
    align-items: center;
    border-radius: 0 0 0px 10px;
    padding: 5px 10px;
    gap: 10px;
    transition: all 0.3s ease;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.qr-link .down .ex {
    text-align: left;
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: left;
}

.qr-link .img-box img {
  width: 65px;
  height: auto;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
/* 拡大時 */
.qr-link.expanded {
    max-width: 545px;
    width: 545px;
    height: 275px;
}
.qr-link.expanded .box {
}

.qr-link.expanded .up .ttl {
  font-size: 25px;
  padding: 8px 15px;
}

.qr-link.expanded .down {
    padding: 20px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.qr-link.expanded .down .ex {
  font-size: 28px;
  width: 65%;
}

.qr-link.expanded .img-box {
  width: 35%;
}

.qr-link.expanded .img-box img {
  width: 100%;
}

/* 通常時は小さい注釈表示、拡大時は非表示 */
.qr-link .down .ex span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}
.qr-link.expanded .down .ex span {
  display: none;
}



/* ========== 投稿一覧 ========== */
.child .card-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; */
}
.child .card {
  /* background: #fff;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid #fff;
  transition: .4s ease-in-out; */
}
.child .card:hover {
  /* transform: translateY(-4px); */
}
.child .card a {
  text-decoration: none;
  color: inherit;
  display: inline;
}
.child .card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.child .card-content {
  padding: 1rem;
}
.child .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--color01);
}
.child .card-excerpt {
  font-size: 0.95rem;
  color: #666;
}
/* ページネーション */
.pagination {
  margin-top: 2rem;
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}
.pagination .current {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}
/* カテゴリ */
.cat-label {
  border-radius: 5px;
  display: inline-block;
  padding: 0.3em 0.8em;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.cat-label:hover {
  opacity: 0.8;
}
/* タブメニュー */
/* タブメニュー全体 */
.tab-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

/* 各タブリンク */
.tab-menu a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: #f0f0f0;
  color: #333;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

/* ホバー時 */
.tab-menu a:hover {
  background-color: #0073aa;
  color: #fff;
}

/* アクティブタブ */
.tab-menu a.active {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
  font-weight: bold;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .tab-menu a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}
/* ========== 投稿詳細　========== */
/* メインラッパー */
.single-content {
    color: Var(--color01);
}
/* 上部タイトルセクション */
.single-content .section:first-child {
  text-align: center;
}
/* タイトル */
.single-content h2 {
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: clamp(1.25rem, 1.028rem + 0.85vw, 1.875rem);
}
.single-content h3 {
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: clamp(1.125rem, 0.925rem + 0.76vw, 1.688rem);
}
/* 投稿日時 */
.single-content .jp_ttl time {
  font-size: 1rem;
}
/* カテゴリーリンク */
.post-categories {
  margin-top: 10px;
}
.post-categories .cat-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 12px;
  margin-right: 6px;
  margin-bottom: 6px;
  border-radius: 20px;
  background-color: #ccc;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.post-categories .cat-label:hover {
  opacity: 0.8;
}
/* 本文セクション */
.single-content .entry-content {
  line-height: 1.8;
  color: var(--color01);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid #fff;
  border-radius: 8px;
  padding: 1rem;
}
/* 本文内の画像 */
.single-content .entry-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
/* 本文内の見出し */
.single-content .entry-content h2, .single-content .entry-content h3, .single-content .entry-content h4 {
  margin: 2rem 0 1rem;
  font-weight: bold;
  display: inline-block;
}
.single-content .entry-content h2 {
  background: linear-gradient(transparent 70%, var(--color04) 70%);
}
/* 本文内の段落 */
.single-content .entry-content p {
  margin-bottom: 1rem;
  padding: 0 1rem;
}
.single-content .entry-content code {
  margin-bottom: 1rem;
  padding: 0 1rem;
}

/* ========== 共通専用　========== */

.fade-letter .char {
  display: inline-block;
}
/* btn */
.buttons {
    padding-top: 50px;
    text-align: center;
    width: 100%;
}
.buttons  *,
.buttons  *:before,
.buttons  *:after {
  box-sizing: border-box;
  transition: 0.5s ease-in-out;
}
.buttons  i, .buttons  em,
.buttons  b, .buttons  strong,
.buttons  span {
  transition: none;
}

.buttons *:before,
.buttons *:after {
  z-index: -1;
}

.buttons a {
  text-decoration: none;
  line-height: 80px;
  color: #fff;
}
.buttons [class^=btn-] {
    position: relative;
    display: block;
    overflow: hidden;
    width: auto;
    height: 80px;
    text-transform: uppercase;
    border: 1px solid #FFF;
    text-align: center;
    z-index: 1;
}
.btn-10 {
  color: var(--color08);
}
.btn-10:before, .btn-10:after,
.btn-10 span:before,
.btn-10 span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 80px;
  background-color: var(--color08);
  transition: 0.4s;
}
.btn-10:after,
.btn-10 span:before {
  left: auto;
  right: 0;
}
.btn-10 span:before,
.btn-10 span:after {
  transition-delay: 0.4s;
}
.btn-10:hover {
  color: #e5e4d6;
}
.btn-10:hover:before, .btn-10:hover:after,
.btn-10:hover span:before,
.btn-10:hover span:after {
  width: 100%;
}
.btn-10:active {
  background-color: #959159;
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
.btn-10 span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: center;
}

.btn-10 .arrow {
  transition: transform 0.4s ease;
  display: inline-block;
}

.btn-10:hover .arrow {
  transform: translateX(4px);
}

.btn-01 {
    background-color: #161616;
    color: #fff;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 0;
}
.btn-01 p {
    padding-right: 6px;
    color: #fff;
}
.btn-01 img {
    width: 16px;
    height: auto;
}

.tll_ex {
  color: var(--color02);
}
.section-achievements .button {
  margin-top: 8px;
}
.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: .3s;
}
.button-text {
  font-weight: 600;
}
.arrow-extend {
  padding: 20px;
  color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.arrow-extend::before {
  content: '';
  width: 60px;
  height: 60px;
  background-color: var(--color04);
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .4s;
  z-index: -1;
}
.arrow-extend::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color03);
  border-bottom: 2px solid var(--color03);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.arrow-extend:hover::before {
  width: 100%;
}
/* blog */
.category {
}
/* ===== お問い合わせフォーム（Simple Contact Form） ===== */
.contact form {
    max-width: 100%;
    margin: 3rem auto;
}
.contact form label {
  display: block;
  margin-top: 2rem;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--color01);
}
.contact form p:first-child {
  margin-top: 0;
}
.contact form input[type="text"], .contact form input[type="email"], .contact form input[type="file"], .contact form textarea, .contact form input[type="tel"], .wpcf7 input[type="tel"] {
    width: 100%;
    padding: 0.6em;
    border: 1px solid #00000038;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
    background: #ffffff;
    color: #000;
}

.contact form input[type="submit"], .contact form button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.6em 1.2em;
    background-color: var(--color04);
    color: var(--color02);
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 250px;
}
.contact form input[type="submit"]:hover,
.contact form button:hover {
  background-color: var(--color04);
}
.contact .area p {
}
.scf-success {
  background: #e0ffe0;
  border: 1px solid #00aa00;
  padding: 1em;
  margin-bottom: 1.5em;
  color: #007700;
}
.contact form a {
  text-decoration: underline;
  font-weight: 500;
}
/* rechapcha */
.grecaptcha-badge { visibility: hidden; }
@media screen and (max-width:630px) {
  .contact form {
    margin: 1rem auto;
    padding: 0;
  }
  .contact form label {
    margin-top: 1rem;
  }
}
/* 確認画面 */
.contact .area {}
.contact .area h2 {}
.contact .area dl {
  background-color: var(--color02);
  border-radius: 8px;
  margin-top: 1rem;
  padding: 1rem;
}
.contact .area dl dt {
  margin-top: 1rem;
  background-color: var(--color05);
  display: inline-block;
  color: var(--color02);
  padding: 5px 10px;
  border-radius: 5px;
}
.contact .area dl dd {
  font-weight: 600;
  margin-top: 5px;
}
/* ===== 検索ボックス ===== */
.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--color01);
  border-radius: 25px;
  max-width: 400px;
  background-color: var(--color02);
}
.search-form input {
  width: 250px;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}
.search-form input::placeholder {
  color: #777777;
}
.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.search-form button::after {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23232220'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}
/* ===== effect-underline ===== */
a.effect-underline {
  display: inline-block;
  position: relative;
}
a.effect-underline:after {
	content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid;
  margin-top: 10px;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.effect-underline:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
/* ===== プライバシーポリシー ===== */
.privacy {}
.privacy .area {
    background-color: var(--color02);
    padding: 1rem;
    color: var(--color01);
}
.privacy .area a {
  text-decoration: underline;
}
/* ============== デスクトップ大型（1281px〜） ============== */
@media screen and (min-width: 1281px) and (max-width: 1600px) {
.footer-contents .down .box:nth-child(2) img {
    height: 95px;
}
}
/* ============== ノートPC 1025-1280px ============== */
@media screen and (max-width: 1280px) {
  .header-contents .link {
    width: 30%;
  }
  .header-contents .menu {
    width: 30%;
  }
  .header-contents .logo {
    width: 25%;
  }
  .header-contents .logo img {
    object-fit: contain;
  }
  .footer-contents .up .box:nth-child(2) ul {
    width: 100%;
  }
  .footer-contents .up .box:nth-child(1) {
    width: 35%;
  }
.footer-contents .down .box:nth-child(1) .insta {
    padding-bottom: 0;
}
  .footer-contents .up .box:nth-child(2) li {
    width: 35%;
  }
  .accordion > li > a, .accordion > li > p {
    text-align: right;
  }
.footer-contents .down .box:nth-child(2) img {
    height: 75px;
    width: auto;
}
.header-contents .pc-box .right .pc-nav li a {
    font-size: 13px;
}
.footer-contents .down .box:nth-child(1) {
    width: 50%;
}
.header-contents .pc-box .right .pc-nav li p {
    font-size: 13px;
}
.accordion > li > p .arrow {
    width: 19px;
    height: 19px;
}
.header-contents .reserve a p {
    font-size: 16px;
}
.header-contents .reserve a img {
    width: 25px;
}
.accordion > li > a, .accordion > li > p {
    padding: 10px;
}
.header-contents .pc-box .left {
    width: auto;
}
}
/* ============== タブレット共通 ============== */
@media screen and (min-width: 768px) and (max-width: 1024px) {}
/* ============== タブレット共通 ============== */
@media screen and (max-width: 1024px) {
.footer-contents .up {
    flex-direction: column;
}
.footer-contents .up .box:nth-child(1) {
    width: 100%;
}
.footer-contents .up .box:nth-child(1) {
    width: 45%;
}
.footer-contents .up .box:nth-child(2) li {
    width: 30%;
}
.header-contents {
    height: 60px;
}
.footer-contents .up .box:nth-child(1) {
    width: 57%;
}
.footer-contents .up {
    gap: 10px;
}
.footer-contents .down {
    flex-direction: column;
}
.footer-contents .down .box:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
}
.footer-contents .down .box:nth-child(1) .insta {
    padding-bottom: 0;
}
}
/* ============== タブレット横 768-1024 landscape ============== */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {}
/* ============== タブレット縦 768-1024 portrait ============== */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {}
/* ============== タブレット830 ============== */
@media screen and (max-width: 830px) {
.header-contents .sp-box {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.header-contents .menu {
    width: auto;
    display: flex;
    align-items: center;
}
.header-contents .link {
    width: auto;
    justify-content: end;
}
.accordion > li > p .arrow {
    display: none;
}
header .nav li a, header .nav li p {
    padding: 0;
}
.header-contents .reserve a img {
    width: 25px;
}
}
/* ============== スマホ（中〜大型）631-767 ============== */
@media screen and (min-width: 631px) and (max-width: 767px) {}
/* ============== スマホ（小型）-630 ============== */
@media screen and (max-width: 630px) {
  .header-contents .link {
    width: 70%;
  }
.header-contents .link .reserve a {
    padding: 8px 5px 8px 8px;
}
  header .nav ul {
    padding: 65px 10px 10px;
  }
  .accordion > li > a, .accordion > li > p {
    padding: 0;
  }
  .buttons {
    padding-top: 16px;
  }
  p, a, li {
    letter-spacing: 2px;
  }
  .buttons a {
    line-height: 65px;
  }
  .btn-10 span {
    height: 65px;
  }
  .btn-10:before, .btn-10:after, .btn-10 span:before, .btn-10 span:after {
    height: 65px;
  }
  .buttons [class^=btn-] {
    height: 65px;
  }
  .footer-contents .up .box:nth-child(1) {
    width: 85%;
}
.footer-contents .up .box:nth-child(2) li {
    width: 46%;
    text-align: left;
}
.footer-contents .down .box:nth-child(1) {
    flex-direction: column;
        gap: 15px;
}
.footer-contents .down .box:nth-child(1) .insta {
    padding-bottom: 10px;
}
.footer-contents .down .box:nth-child(2) {
    gap: 8px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}
  .footer-contents .down .box:nth-child(2) a img {
  width: 100%;
}
.footer-contents .down .box:nth-child(2) a {
    width: 48%;
}
.footer-contents .down .box:nth-child(2) a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-contents .area {
    padding: 65px 0 20px;
}
.footer-contents .down {
    height: 100%;
    gap: 15px;
}
.error .error__code {
    font-size: 45px;
}
.error .error__text-ja-main {
    font-size: 20px;
}
.error .error__text-ja-sub {
    font-size: 15px;
    text-align: left;
}
.error_contents {
    height: 400px;
    top: 134px;
}
.error {
    height: 600px;
}
.qr-link {
    bottom: 25px;
}
.qr-link .up {
    background-color: hsla(0, 0%, 100%, 0.8);
    border-radius: 6px 0px 0 0;
}
.qr-link .down {
    background-color: hsl(37deg 32% 53% / 80%);
    border-radius: 0 0 0px 8px;
    padding: 3px 10px;
}
.qr-link .up .ttl {
    font-size: 12px;
    letter-spacing: 0px;
}
.qr-link .down .ex {
    margin-bottom: 0;
    font-size: 13px;
}
p, a, li {
    letter-spacing: 1px;
}
.footer-contents .up .box:nth-child(2) ul {
    justify-content: flex-start;
}
.footer-contents .accordion > li > a, .footer-contents .accordion > li > p {
    text-align: left;
}
}