@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[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;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
@font-face {
  font-family: "sackers";
  src: url("../fonts/sackers-gothic-std-light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* ========== root ========== */
:root {
  --color01: #2a2a2a;
  --color02: #c4c4c4;
  --color03: #6b8c9a;
  --color04: #88625c;
  --color05: #1f1f1f;
  --txt_white: #fff;
  --b_shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
  --t_shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --max-width: 1400px;
  --font_base: "nitalago-ruika", sans-serif;
  --font_sub01: "sackers", sans-serif;
  --font_sub02: "sackers", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --header-height: 70px;
}

/* * {
  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(1rem, 0.938rem + 0.29vw, 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以下：最小値
  480px～1920px：可変
  1920px以上：最大値
-------------------------------------------- */

/* ========== ベース用フォントサイズ ========== */

/* 小さめ文字：14px～15px */
.fs-sm {
  font-size: clamp(0.875rem, 0.854rem + 0.07vw, 0.9375rem);
  line-height: 1.6;
  font-weight: var(--fw-regular);
}

/* 通常文字：16px～17px */
.fs-base {
  font-size: clamp(1rem, 0.979rem + 0.07vw, 1.0625rem);
  line-height: 1.7;
  font-weight: var(--fw-regular);
}

/* 本文 */
p,
li {
  font-size: clamp(1rem, 0.979rem + 0.07vw, 1.0625rem);
  line-height: 1.7;
  font-weight: var(--fw-regular);
}

/* リンクは親要素の文字サイズを継承 */
a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

/* やや大きめ：17px～20px */
.fs-md {
  font-size: clamp(1.0625rem, 1rem + 0.21vw, 1.25rem);
  line-height: 1.6;
  font-weight: var(--fw-medium);
}

/* 大きめ見出しなど：19px～23px */
.fs-lg {
  font-size: clamp(1.1875rem, 1.104rem + 0.28vw, 1.4375rem);
  line-height: 1.45;
  font-weight: var(--fw-medium);
}

/* 特大：22px～28px */
.fs-xl {
  font-size: clamp(1.375rem, 1.25rem + 0.42vw, 1.75rem);
  line-height: 1.4;
  font-weight: var(--fw-bold);
}
/* =========================================================
  Typography - Heading
========================================================= */

/* h1：28px～40px */
h1 {
  font-size: clamp(1.75rem, 1.486rem + 1.13vw, 2.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

/* h2：24px～32px */
h2 {
  font-size: clamp(1.5rem, 1.324rem + 0.75vw, 2rem);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

/* h3：20px～26px */
h3 {
  font-size: clamp(1.25rem, 1.118rem + 0.56vw, 1.625rem);
  font-weight: var(--fw-medium);
  line-height: 1.45;
}

/* h4：18px～22px */
h4 {
  font-size: clamp(1.125rem, 1.037rem + 0.38vw, 1.375rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

/* サブタイトルなど：18px～24px */
.ttl-font {
  font-size: clamp(1.125rem, 0.993rem + 0.56vw, 1.5rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

/* 特大文字（Heroなど）：36px～52px */
.hero-ttl {
  font-size: clamp(2.25rem, 1.898rem + 1.5vw, 3.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
body {
  line-height: 1.6;
  background-color: var(--color05);
  color: var(--color02);
}
.en {
  font-family: var(--font_sub02);
}
/* ========== 汎用ユーティリティクラス ========== */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.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: 30%;
}
.h-100 {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .w-50 {
    width: 100%;
  }
  .w-30 {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .w-30 {
    width: 100%;
  }
}
/* grid */
.grid-center {
  display: grid;
  place-items: center;
}
/* container */
.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .container {
    width: min(90%, var(--max-width));
  }
}
@media screen and (max-width: 992px) {
  .container {
    width: min(85%, var(--max-width));
  }
}
@media screen and (max-width: 600px) {
  .container {
    width: min(90%, 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;
}
/* 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; /* 拡大の基準位置（中央） */
}

/* 背景を広げる */
.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: red;
}
.white {
  color: var(--color02);
}
/* =========================================================
  Header / Footer / Common Contact
  header.php・footer.php・template-parts/common/contact.php 対応
========================================================= */

/* ========== ヘッダー ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--header-height);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(198, 155, 103, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(198, 155, 103, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-height);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__brand {
  position: relative;
  z-index: 1002;
  flex: 0 0 auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-header__logo .custom-logo {
  display: block;
  width: auto;
  max-width: min(260px, 28vw);
  max-height: 48px;
  object-fit: contain;
}

.site-header__name {
  display: inline-block;
  color: var(--color02);
  font-family: var(--font_sub02);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.25rem);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}

.site-header__name:hover {
  opacity: 0.72;
}

.site-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-header__toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* PCメニュー */
.menu__box {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(20px, 2.2vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__box > li {
  position: relative;
}

.menu__box > li > a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: var(--color02);
  font-family: var(--font_sub02);
  font-size: 13px;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.menu__box > li > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s ease;
}

.menu__box > li > a:hover::after,
.menu__box > li.current-menu-item > a::after,
.menu__box > li.current-menu-ancestor > a::after,
.menu__box > li.current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* サブメニュー */
.menu__box .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 1003;
  min-width: 220px;
  padding: 10px 0;
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid rgba(198, 155, 103, 0.24);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.menu__box .sub-menu li {
  width: 100%;
}

.menu__box .sub-menu a {
  display: block;
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.menu__box .sub-menu a:hover {
  color: var(--color02);
  background: rgba(198, 155, 103, 0.08);
}

.menu__box li:hover > .sub-menu,
.menu__box li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ハンバーガー */
.menu__btn {
  position: relative;
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  position: absolute;
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color02);
  transition:
    top 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu__btn > span {
  top: 50%;
  transform: translateY(-50%);
}

.menu__btn > span::before,
.menu__btn > span::after {
  content: "";
  left: 0;
}

.menu__btn > span::before {
  top: -8px;
}

.menu__btn > span::after {
  top: 8px;
}

.site-header__toggle:checked + .menu__btn > span {
  background: transparent;
}

.site-header__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========== 共通お問い合わせCTA ========== */
.common-contact {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 140px) 0;
  background: rgba(198, 155, 103, 0.03);
  border-top: 1px solid rgba(198, 155, 103, 0.18);
}

.common-contact::before,
.common-contact::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(198, 155, 103, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.common-contact::before {
  top: -140px;
  left: -140px;
  width: 320px;
  height: 320px;
}

.common-contact::after {
  right: -100px;
  bottom: -100px;
  width: 240px;
  height: 240px;
}

.common-contact__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid rgba(198, 155, 103, 0.28);
  text-align: center;
}

.common-contact__en,
.common-contact__title,
.common-contact__text {
  text-align: center;
}

.common-contact__en {
  margin-bottom: 14px;
  color: rgba(198, 155, 103, 0.7);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.3em;
}

.common-contact__title {
  color: var(--color02);
  letter-spacing: 0.08em;
}

.common-contact__text {
  max-width: 700px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
}

.common-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-width: min(100%, 320px);
  margin-top: 34px;
  padding: 18px 24px;
  border: 1px solid var(--color02);
  color: var(--color02);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.common-contact__button:hover {
  color: var(--color05);
  background: var(--color02);
  transform: translateY(-2px);
}

.common-contact__button span {
  font-size: 15px;
  letter-spacing: 0.08em;
}

/* ========== フッター ========== */
.site-footer {
  position: relative;
  background: #080808;
  border-top: 1px solid rgba(198, 155, 103, 0.18);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 8vw, 120px);
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(44px, 6vw, 80px);
}

.footer-left {
  flex: 0 1 420px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--color02);
  font-family: var(--font_sub02);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.45rem);
  line-height: 1.3;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.72;
}

.footer-logo .custom-logo-link {
  display: inline-flex;
}

.footer-logo .custom-logo {
  display: block;
  width: auto;
  max-width: min(280px, 50vw);
  max-height: 64px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 12px 40px;
  min-width: min(100%, 420px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li {
  min-width: 0;
}

.footer-menu li a {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer-menu li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--color02);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.footer-menu li a:hover,
.footer-menu .current-menu-item > a {
  color: var(--color02);
}

.footer-menu li a:hover::after,
.footer-menu .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(90%, var(--max-width));
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(198, 155, 103, 0.14);
}

.footer-bottom .social_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.footer-bottom .social_area a {
  color: rgba(198, 155, 103, 0.72);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.footer-bottom .social_area a:hover {
  color: var(--color02);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: right;
}

/* ========== タブレット・SP ========== */
@media screen and (max-width: 1024px) {
  .site-header__inner {
    min-height: var(--header-height);
  }

  .site-header__logo .custom-logo {
    max-width: min(220px, 55vw);
    max-height: 42px;
  }

  .menu__btn {
    display: flex;
  }

  .menu__box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: 100svh;
    padding: calc(var(--header-height) + 40px) min(8vw, 56px) 50px;
    overflow-y: auto;
    background: rgba(6, 6, 6, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
  }

  .site-header__toggle:checked ~ .menu__box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu__box > li {
    width: 100%;
    border-bottom: 1px solid rgba(198, 155, 103, 0.18);
  }

  .menu__box > li > a {
    padding: 18px 4px;
    font-size: 16px;
    white-space: normal;
  }

  .menu__box > li > a::after {
    display: none;
  }

  .menu__box .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 12px 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu__box .sub-menu a {
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.62);
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-left,
  .footer-nav {
    width: 100%;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-menu {
    width: 100%;
  }
}

@media screen and (max-width: 630px) {
  .site-header__inner {
    width: min(92%, var(--max-width));
  }

  .site-header__logo .custom-logo {
    max-width: min(190px, 58vw);
    max-height: 36px;
  }

  .menu__box {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .common-contact__inner {
    padding: 38px 20px;
  }

  .common-contact__button {
    width: 100%;
    min-width: 0;
  }

  .footer-inner {
    width: min(90%, var(--max-width));
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .footer-menu {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    width: min(90%, var(--max-width));
  }

  .footer-bottom small {
    text-align: left;
  }
}

/* ===== 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;
}
/* ========== 投稿一覧 ========== */
.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: 0.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 {
  padding-top: 60px;
  padding-bottom: 60px;
}
/* 上部タイトルセクション */
.single-content .section:first-child {
  text-align: center;
}
/* タイトル */
.single-content h2 {
  font-weight: bold;
  margin-bottom: 0.5em;
}
/* 投稿日時 */
.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;
}
.top-ttl {
  font-size: clamp(3rem, -1.429rem + 9vw, 7rem);
}
.section .ttl {
  font-weight: bold;
  text-shadow: 2px 2px 2px var(--color01);
}
.section .jp_ttl {
  text-shadow: 2px 2px 2px var(--color01);
}
/* btn */
.button {
  width: 250px;
}
.tll_ex {
  color: var(--color02);
}
.section-achievements .button {
  margin-top: 8px;
}
.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: 0.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: 0.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 {
  padding: 2px 8px;
  border-radius: 5px;
}
/* ===== お問い合わせフォーム（Simple Contact Form） ===== */
.contact form {
  max-width: 100%;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 8px;
  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;
}
.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 {
  width: 100%;
  padding: 0.6em;
  border: 1px solid var(--color02);
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
  background: #e9e9e9;
  color: var(--color03);
}
.contact form textarea {
  min-height: 120px;
  resize: vertical;
}
.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;
}
.contact form input[type="submit"]:hover,
.contact form button:hover {
  background-color: var(--color04);
}
.contact .area p {
  color: var(--color02);
}
.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;
}
@media screen and (max-width: 630px) {
  .contact form {
    margin: 1rem auto;
    padding: 8px;
  }
  .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;
  color: var(--color03);
}
/* ===== 検索ボックス ===== */
.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;
}
/* ========== パンくずリスト ========== */
.breadcrumbs {
  width: min(90%, var(--max-width));
  margin: 0 auto;
  padding: 24px 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(198, 155, 103, 0.72);
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: rgba(198, 155, 103, 0.4);
}

.breadcrumbs__item,
.breadcrumbs__item a,
.breadcrumbs__item span {
  font-size: 13px;
  line-height: 1.5;
}

.breadcrumbs__item a {
  transition: color 0.3s ease;
}

.breadcrumbs__item a:hover {
  color: var(--color02);
}

@media screen and (max-width: 630px) {
  .breadcrumbs {
    padding: 16px 0;
  }
}
/* ============== デスクトップ大型（1281px〜） ============== */
@media screen and (min-width: 1281px) and (max-width: 1600px) {
}
/* ============== ノートPC 1025-1280px ============== */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
}
/* ============== タブレット共通 ============== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
}
/* ============== タブレット横 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) {
}
/* ============== スマホ（中〜大型）631-767 ============== */
@media screen and (min-width: 631px) and (max-width: 767px) {
}
/* ============== スマホ（小型）-630 ============== */
@media screen and (max-width: 630px) {
}
