@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;
}
html,
body {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--color01);
  background-color: var(--color05);
}
/* ========== root ========== */
:root {
  --color01: #3e392d;
  --color02: #fff;
  --color03: #009176;
  --color04: #3e392d;
  --color05: #fcf5e6;
  --color06: #e6d8b7;
  --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.5rem, 0.313rem + 0.63vw, 0.938rem);
  --line: 0.5px solid #000;
  --max-width: 1200px;
  --font_base: "Noto Sans CJK JP", sans-serif;
  --font_sub01: "futura-pt", sans-serif;
  --fw-regular: 400;
  --fw-medium: 700;
  --fw-bold: 900;
  --header-height: clamp(3.125rem, 2.054rem + 3.57vw, 5.625rem);
  /* 50-90 */
}
/* * {
  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.063rem, 0.009rem + 0.18vw, 0.188rem);
}
.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 a {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem); /* 14px~18px */
  font-weight: var(--fw-regular);
  line-height: 1;
}
/* ===== ブレークポイント別の表示制御クラス ===== */

/* 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以上：最大値に固定
-------------------------------------------- */
/* ========== ベース用フォントサイズ ========== */
/* 最小：8px ~ 12px */
.fs-mini {
  font-size: clamp(0.5rem, 0.393rem + 0.36vw, 0.75rem);
  line-height: 1.5;
  font-weight: var(--fw-regular);
}
/* 小さめ文字：12px ~ 14px */
.fs-sm {
  font-size: clamp(0.75rem, 0.696rem + 0.18vw, 0.875rem);
  font-weight: var(--fw-regular);
}
/* 通常文字：14px ~ 16px */
.fs-base {
  font-size: clamp(0.875rem, 0.821rem + 0.18vw, 1rem);
  font-weight: var(--fw-regular);
}
/* 通常文字2：14px ~ 18px */
.fs-base02 {
  font-size: clamp(0.875rem, 0.768rem + 0.36vw, 1.125rem);
  font-weight: var(--fw-regular);
}
/* 通常文字：14px ~ 16px */
p,
a,
li {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  line-height: 2;
  font-weight: var(--fw-regular);
  font-family: "Noto Sans CJK JP", sans-serif;
  letter-spacing: 1px;
}
/* やや大きめ：14px ~ 24px */
.fs-md {
  font-size: clamp(0.875rem, 0.607rem + 0.89vw, 1.5rem);
  font-weight: var(--fw-bold);
}
/* 大きめ見出しなど：18~24px */
.fs-lg {
  font-size: clamp(1.125rem, 0.993rem + 0.56vw, 1.5rem);
  font-weight: var(--fw-bold);
}
/* 特大：24px ~ 48px */
.fs-xl {
  font-size: clamp(1.5rem, 0.857rem + 2.14vw, 3rem);
  font-weight: var(--fw-bold);
}
/* ========== ルビ ========== */
rt {
  letter-spacing: 5px;
  text-align: center;
  padding-bottom: 8px;
}
/* ========== タイトル・見出し向け ========== */
/* h1：24px ~ 48px */
h1 {
  font-size: clamp(1.5rem, 0.857rem + 2.14vw, 3rem);
  font-weight: var(--fw-bold);
  line-height: 1.3;
}
/* h2：18px ~ 32px */
h2 {
  font-size: clamp(1.125rem, 0.75rem + 1.25vw, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.35;
}
/* h3：18px ~ 24px */
h3 {
  font-size: clamp(1.125rem, 0.964rem + 0.54vw, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.4;
}
/* サブタイトルなど：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, 1.875rem + 2.08vw, 3.75rem); /* 40px〜60px */
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
/* 英語小タイトル）：32px ~ 42px */
.en-ttl {
  font-size: clamp(2rem, 1.732rem + 0.89vw, 2.625rem);
  font-weight: 700;
}
/* 英語大タイトル：32px ~ 60px */
.en-xl {
  font-size: clamp(2rem, 1.25rem + 2.5vw, 3.75rem);
  font-weight: 700;
}
/* FS-en）：24px ~ 36px */
.number {
  font-size: clamp(1.5rem, 1.179rem + 1.07vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 1px;
}
.en {
  font-family: var(--font_sub01);
  letter-spacing: 1px;
}
/* ========== 汎用ユーティリティクラス ========== */
.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: nowrap;
  gap: 1rem;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
/* マージン・パディング */
.pt {
  padding-top: clamp(4.375rem, 2.614rem + 7.51vw, 9.375rem);
}
.mt {
  margin-top: clamp(4.375rem, 2.614rem + 7.51vw, 9.375rem);
}
.pb {
  padding-bottom: clamp(4.375rem, 2.614rem + 7.51vw, 9.375rem);
}
.mb {
  margin-bottom: clamp(4.375rem, 2.614rem + 7.51vw, 9.375rem);
}
.pt-1 {
  padding-top: clamp(1.875rem, 0.885rem + 4.23vw, 4.688rem);
}
.pb-1 {
  padding-bottom: clamp(1.875rem, 0.885rem + 4.23vw, 4.688rem);
}
/* シャドウ・角丸 */
.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-70 {
  width: 68%;
}
.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: 1000%;
  }
}
@media screen and (max-width: 480px) {
}
/* 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: 1400px) {
  .container {
    width: min(90%, var(--max-width));
  }
}
@media screen and (max-width: 992px) {
  .container {
    width: min(90%, 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; /* 拡大の基準位置（中央） */
}
.reveal-l2r,
.reveal-r2l {
  display: inline-block; /* テキスト要素に必要 */
  clip-path: inset(0 100% 0 0); /* 初期状態で非表示 */
}

/* 背景を広げる */
.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:last-child {
}
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 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-family: var(--font_sub01);
  transform: translateY(0);
  transition: transform 0.3s ease;
  will-change: transform;
  height: var(--header-height);
}
.logotype {
  color: var(--txt_white);
  display: flex;
  align-items: center;
  gap: 1rem;
}
nav {
  display: flex;
  align-items: center;
}
.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 2rem;
  align-items: center;
}
.menu__box li a {
  font-weight: var(--fw-medium);
  transition: 0.3s ease-in-out;
}
.menu__item:hover {
  color: var(--color02);
}
.menu__box li:nth-child(9) a {
  background-color: var(--color04);
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
}
#menu__toggle {
  display: none;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  margin: 0;
}
.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  z-index: 2;
  top: 0px;
}
.menu__btn .menu__icon {
  width: 40px;
  height: 40px;
  position: relative;
}
.menu__icon span {
  position: absolute;
  width: 13px;
  height: 13px;
  background: transparent;
  border: 1.5px solid #000;
  transition: all 0.4s ease;
}
.menu__icon span:nth-child(1) {
  top: 0;
  left: 24px;
}
.menu__icon span:nth-child(2) {
  top: 12px;
  left: 12px;
}
.menu__icon span:nth-child(3) {
  top: 12px;
  left: 24px;
}
.menu__icon span:nth-child(4) {
  top: 24px;
  left: 0px;
}
.menu__icon span:nth-child(5) {
  top: 24px;
  left: 12px;
}
.menu__icon span:nth-child(6) {
  top: 24px;
  left: 24px;
}
#menu__toggle:checked ~ .menu__btn .menu__icon span:nth-child(1) {
  top: 0;
  left: 0px;
  background: var(--color05);
}
#menu__toggle:checked ~ .menu__btn .menu__icon span:nth-child(2) {
  top: 0;
  left: 24px;
  background: var(--color05);
}
#menu__toggle:checked ~ .menu__btn .menu__icon span:nth-child(3) {
  top: 12px;
  left: 12px;
  background: var(--color05);
}
#menu__toggle:checked ~ .menu__btn .menu__icon span:nth-child(4) {
  top: 24px;
  left: 24px;
  background: var(--color05);
}
#menu__toggle:checked ~ .menu__btn .menu__icon span:nth-child(5) {
  top: 24px;
  left: 0px;
  background: var(--color05);
}
#menu__toggle:checked ~ .menu__btn .menu__icon span:nth-child(6) {
  opacity: 0;
}

.menu-sp {
  display: none;
}
header .logotype {
}
header .logotype .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 830px) {
  .menu__item.menu-pc {
    display: none;
  }
  .menu__item.menu-sp {
    display: block;
  }
  nav nav {
    display: inline;
  }
  .logotype img {
    height: 22px;
  }
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    margin: -600px 0 0 0;
    padding: 80px 0 0;
    text-align: center;
    background-color: var(--color04);
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition-duration: 0.5s;
    color: #fff;
    clip-path: ellipse(100% 100% at 50% 0%);
    gap: 1rem;
  }
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: var(--txt_white);
    transition-duration: 0.5s;
  }
  .menu__item:last-child {
    text-align: center;
    line-height: 3.7;
  }
  .menu__item:last-child span {
    background-color: var(--color02);
    color: #000;
    padding: 8px 20px;
    border-radius: 22px;
  }
  .menu__item:hover {
    background-color: var(--sub_bg02);
  }
}
@media screen and (min-width: 830px) {
  .menu__btn {
    display: none;
  }
}

/* ========== フッター全体 ========== */
footer {
  border-top: 1px solid #000;
  background-color: var(--color05);
}
footer .footer-inner {
  flex-wrap: nowrap;
  align-items: center;
  height: 300px;
}
footer .box01 {
  border-right: 1px solid #000;
  height: 100%;
  width: 30%;
}
footer .box01 .card {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 75px 50px;
}
footer .box01 .card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 75px 50px;
}
footer .box01 .card .txt-box {
  width: 70%;
}
footer .box01 .card .a {
}
footer .menu__box .footer_menu li {
}
footer .menu__box .footer_menu a {
  background-color: transparent;
  color: #000;
  padding: inherit;
  border-radius: none;
}
footer .box01 .card .txt-box .ttl {
  line-height: 1;
}
footer .box01 .card .txt-box .lead {
  line-height: 1;
  padding: 25px 0;
}
footer .box01 .card .txt-box .ex {
  white-space: nowrap;
}
footer .box01 .card .img-box {
  padding-left: 50px;
}
footer .box01 .card .img-box img {
  width: 40px;
  opacity: 0.6;
}
footer .box02 {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
footer .box02 .contents {
  width: 50%;
  padding: 55px 0 75px 50px;
}
footer .box02 .txt-box {
  display: inline-block;
}
footer .box02 .txt-box nav ul {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}
footer .box02 .txt-box nav {
}
footer .box02 .txt-box nav ul {
  margin-top: 20px;
}
footer .box02 .txt-box nav ul li {
  white-space: nowrap;
}
footer .footer-bottomr {
  display: flex;
  align-items: self-end;
  padding: 0 10px 10px 0;
}
footer .footer-bottomr .privacy {
  text-align: right;
}

/* Contactメニュー：サブメニュー（初期状態） */
.submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  position: absolute;
  background-color: #fff;
  padding: 0;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 100px;
}
/* Contactメニュー：サブメニューの各項目 */
.submenu li {
  margin: 0;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #eee;
}
.submenu li:last-child {
  border-bottom: none;
}
/* Contactメニュー：サブメニューのリンク */
.submenu a {
  display: block;
  font-size: 0.95rem;
  color: var(--text-color, #333);
  text-decoration: none;
  transition: color 0.3s ease;
}
.submenu a:hover {
  color: var(--main-color, #007bff);
}
/* Contactメニュー：active状態（展開） */
.has-submenu.active .submenu {
  max-height: 300px; /* 十分に大きく設定 */
  opacity: 1;
  transform: translateY(0);
  padding: 0.5rem 0;
}

/* ===== 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 {
  overflow: hidden;
  border: none;
  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;
  text-decoration: none;
  border-radius: 4px;
}
/* カテゴリ */
.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 {
}
.section .ttl {
}
.section .jp_ttl {
}
/* btn */
.button {
}
.button a p {
  padding-right: 13px;
  width: 135px;
}
.button a {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.draw-line {
  width: 135px;
  height: auto;
  display: block;
  margin-top: -10px;
}
.line-path {
  fill: none;
  stroke: #fff;
  stroke-width: 6px;
  stroke-miterlimit: 10;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  transition: none;
}
.front-page .line-path {
  stroke: #000;
}
.button a:hover .line-path {
  stroke-dashoffset: 1000;
  animation: draw 1.5s ease-out forwards;
}
@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* blog */
.category {
  padding: 2px 8px;
  border-radius: 5px;
}
/* ===== お問い合わせフォーム（Simple Contact Form） ===== */
.contact form {
  max-width: 100%;
  border-radius: 8px;
}
.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;
  display: flex;
  flex-direction: column;
}
.contact form input[type="text"],
.contact form input[type="email"],
.contact form input[type="file"],
.wpcf7 input[type="tel"],
.contact form textarea {
  width: 100%;
  padding: 0.6em;
  border: 1px solid var(--color01);
  font-size: 1em;
  box-sizing: border-box;
}
.contact form input[type="submit"],
.contact form button {
  display: inline-block;
  margin-top: 8px;
  padding: 0.6em 1.2em;
  background-color: var(--color04);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 275px;
}
.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;
}
button.wpcf7cp-cfm-edit-btn {
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: var(--color03);
  color: var(--color02);
  width: 175px;
  padding: 8px 0;
}
button.wpcf7cp-cfm-submit-btn {
  margin-bottom: 20px;
  background-color: var(--color06);
  width: 175px;
  padding: 8px 0;
}
.contact form .req {
  color: var(--color03);
  margin-left: 4px;
}
/* Turnstile全体のラッパー */
.wpcf7-turnstile {
  display: flex;
  justify-content: center;
}
.contact .area .submit-area {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.wpcf7-spinner {
  visibility: hidden;
  display: contents;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}
@media screen and (max-width: 630px) {
  .contact form {
    margin: 1rem auto;
  }
  .contact form label {
    margin-top: 1rem;
  }
  .contact form input[type="submit"],
  .contact form button {
    width: 120px;
  }
}
/* 確認画面 */
.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;
  white-space: nowrap;
}
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 .area {
  background-color: var(--color02);
  padding: 1rem;
  color: var(--color01);
}
.privacy .area a {
  text-decoration: underline;
}
/* ============== デスクトップ大型（1281px〜） ============== */
@media screen and (min-width: 1200px) and (max-width: 1600px) {
  footer .box01 .card .txt-box .ttl {
    font-size: clamp(2.188rem, -1.563rem + 5vw, 3.438rem);
  }
}
/* ============== ノートPC 1025-1280px ============== */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
}

/* ============== ノートPC 1280-1470 ============== */
@media screen and (min-width: 1280px) and (max-width: 1470px) {
  footer .box01 .card .txt-box .ttl {
    font-size: clamp(2.5rem, -1.711rem + 5.26vw, 3.125rem);
  }
  footer .box01 .card .txt-box .ex {
    font-size: 15px;
  }
  footer .box01 {
    width: 35%;
  }
}

/* ============== タブレット共通 ============== */
@media screen and (max-width: 1024px) {
  footer .footer-inner {
    flex-direction: column;
  }
  footer .box01 {
    border-right: none;
    width: 100%;
    border-bottom: 1px solid #000;
  }
  footer .box01 .card {
    flex-direction: column;
  }
  footer .box01 .card .txt-box .lead {
    text-align: center;
  }
  footer .box01 .card .txt-box .ttl {
    text-align: center;
  }
  footer .box01 .card .txt-box .lead {
    text-align: center;
    margin-top: -15px;
  }
  footer .box01 .card .txt-box .ex {
    margin-top: 18px;
    text-align: center;
  }
  footer .box02 .txt-box .name {
    text-align: center;
    margin-bottom: 12px;
  }
  footer .box02 .txt-box .address {
    margin-top: 0px;
    text-align: center;
  }
  footer .box02 {
    width: 100%;
    padding-top: 50px;
  }
  footer .box02 .txt-box nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  .privacy {
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 8px;
  }
  footer .footer-bottomr .privacy {
    text-align: center;
    margin-bottom: 10px;
  }
  footer .logotype {
    justify-content: center;
  }
}
/* ============== タブレット横 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) {
  footer .box02 {
    flex-direction: column;
  }
  footer .box02 .contents {
    width: 100%;
    padding: 0px 0 35px;
    display: flex;
    justify-content: center;
  }
  footer .box01 .card .img-box {
    padding-left: 0;
    padding-top: 16px;
  }
}
/* ============== スマホ（中〜大型）631-767 ============== */
@media screen and (min-width: 631px) and (max-width: 767px) {
}
/* ============== スマホ（小型）-630 ============== */
@media screen and (max-width: 630px) {
  header {
    height: 65px;
  }
  .menu__box {
    height: 500px;
    padding: 65px 0 0;
    gap: 5px;
  }
  .menu__item {
    padding: 8px 0px;
  }
  footer .footer-bottomr {
    text-align: end;
    padding: 0;
  }
  .draw-line {
    width: 112px;
    margin-top: -12px;
  }
  .button a p {
    padding-right: 0;
    width: 105px;
  }
  footer .box02 .txt-box nav ul {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
  }
  footer .box02 .txt-box nav ul li a {
    font-size: 12px;
  }
  footer .box01 .card .txt-box .lead {
    margin-top: -15px;
    margin: 0;
    padding: 16px 0 20px;
  }
  footer .box01 .card .txt-box .ex {
    margin-top: 0;
    padding-bottom: 20px;
    text-align: center;
  }
  footer .box01 .card .img-box {
    padding-left: 0;
  }
  footer .box02 {
    flex-direction: column;
  }
  footer .box02 .contents {
    padding: 75px 0 0px 0px;
  }
  footer .box02 {
    padding: 0;
  }
  footer .box01 {
    height: 310px;
  }
  footer .box02 {
    height: 295px;
  }
  footer .box02 .txt-box .name {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: var(--fw-bold);
  }
  footer .box02 .txt-box .address {
    line-height: 2;
  }
  footer .box02 .contents {
    width: 100%;
  }
  footer .box02 .contents {
    padding: 75px 0 50px 0px;
  }
  footer .box02 .txt-box {
    width: 100%;
  }
  .privacy {
    margin-top: 14px;
    font-size: 8px;
  }
  .logotype img {
    height: 16px;
    object-fit: contain;
  }
  rt {
    letter-spacing: 2px;
    padding-bottom: 2px;
  }
  .contact form input[type="text"],
  .contact form input[type="email"],
  .contact form input[type="file"],
  .wpcf7 input[type="tel"],
  .contact form textarea {
    padding: 3px;
  }
  header .logotype .logo {
    object-fit: contain;
  }
  .site-footer .logotype {
    justify-content: center;
  }
  .site-footer .logotype img {
    height: 15px;
    margin-bottom: 5px;
  }
  footer .box01 .card {
    padding: 75px 0;
  }
  header {
    padding: 5px 8px;
  }
}
