@charset 'UTF-8';
/* ==========================================================================
   CUSTOM STYLESHEET
   ==========================================================================
   1. Reset & Base Styles
      1.1 Bootstrap
      1.2 WorPress
   2. Components
   3. Utilities
   4. Layout
      4.1 Header
      4.2 Navigation
      4.3 Footer
      4.4 Main Content
   ========================================================================== */

/* ==========================================================================
   1. Reset & Base Styles
   ========================================================================== */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light dark;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family:
    "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic", "Meiryo",
    "Noto Sans JP",
    -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  color: #241a08;
  background: url("../img/bg-body.png?ver=1.0.2") #f7f7f9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Old Mincho", serif;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Zen Old Mincho", serif;
}
/* スクリーン幅ごとのブレークポイント */
@media (min-width: 1200px) {
  :root {
    --h1: 2.15rem;
    --h2: 2.1rem;
    --h3: 2.0rem;
    --h4: 1.75rem;
    --h5: 1.5rem;
    --h6: 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --h1: 2.1rem;
    --h2: 2.0rem;
    --h3: 1.75rem;
    --h4: 1.5rem;
    --h5: 1.25rem;
    --h6: 1.125rem;
  }
}

@media (max-width: 767px) {
  :root {
    --h1: 2.1rem;
    --h2: 1.6rem;
    --h3: 1.4rem;
    --h4: 1.25rem;
    --h5: 1.125rem;
    --h6: 1rem;
  }
}

/* 各見出しに変数を適用 */
h1, .h1 {
  font-size: var(--h1);
  line-height: 1.4;
  margin-bottom: 0.8em;
  font-weight: 700;
}

h2, .h2 {
  font-size: var(--h2);
  line-height: 1.5;
  margin-bottom: 0.75em;
  font-weight: 700;
}

h3, .h3 {
  font-size: var(--h3);
  line-height: 1.5;
  margin-bottom: 0.7em;
  font-weight: 700;
}

h4, .h4 {
  font-size: var(--h4);
  line-height: 1.5;
  margin-bottom: 0.6em;
  font-weight: 700;
}

h5, .h5 {
  font-size: var(--h5);
  line-height: 1.5;
  margin-bottom: 0.5em;
  font-weight: 700;
}

h6, .h6 {
  font-size: var(--h6);
  line-height: 1.5;
  margin-bottom: 0.5em;
  font-weight: 700;
}

blockquote {
  position: relative;
  padding: 1rem 2rem;
  background-color: #f7f7f9;
  border-radius: 1rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}
ol, ul {
  padding-left: 1.5rem;
}
li p:last-child {
  margin-bottom: 0;
}

hr {
  opacity: 0.15;
}

a {
  color: #7b6c3e;
  text-decoration: none;
}
a:hover {
  color: #241a08;
}
a.text-underline {
  text-decoration: underline;
}
a.text-underline:hover {
  text-decoration: none;
}

.tac {
  text-align: center;
}
.vam {
  vertical-align: middle;
}

:root {
  /* 参照用（計算には使用しないがドキュメントのため定義） */
  --phi: 1.618;

  /* Mobile base ( <640px )  16, 26, 42, 68, 110, 178 */
  --space-0: 0px;
  --space-1: 16px;   /* base */
  --space-2: 26px;   /* ≒ 16 * φ  */
  --space-3: 42px;   /* ≒ 26 * φ  */
  --space-4: 68px;   /* ≒ 42 * φ  */
  --space-5: 110px;  /* ≒ 68 * φ  */
  --space-6: 178px;  /* ≒ 110 * φ */

  /* デフォのセクション上下（非対称＝視線を下へ流す） */
  --section-pt: var(--space-2); /* 小 */
  --section-pb: var(--space-3); /* 大 */
}

/* Tablet ( ≥640px ) 20, 32, 52, 84, 136, 220 */
@media (min-width: 640px) {
  :root {
    --space-1: 20px;
    --space-2: 32px;
    --space-3: 52px;
    --space-4: 84px;
    --space-5: 136px;
    --space-6: 220px;

    --section-pt: var(--space-2);
    --section-pb: var(--space-3);
  }
}

/* Desktop ( ≥1024px ) 24, 39, 63, 102, 165, 267 */
@media (min-width: 1024px) {
  :root {
    --space-1: 24px;
    --space-2: 39px;
    --space-3: 63px;
    --space-4: 102px;
    --space-5: 165px;
    --space-6: 267px;

    --section-pt: var(--space-2);
    --section-pb: var(--space-3);
  }
}

@media (min-width: 1200px) {
  :root {
    --space-1: 24px;
    --space-2: 39px;
    --space-3: 63px;
    --space-4: 102px;
    --space-5: 165px;
    --space-6: 267px;

    --section-pt: var(--space-3);
    --section-pb: var(--space-4);
  }
}

.site {
  overflow-x: hidden;
}

/* ========== セクション（非対称パディングの既定） ========== */
.section {
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
}

/* 基本のMaterial Symbols */
.ms {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1;
  display: inline-block;
  vertical-align: -0.175em;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.ms::before {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  vertical-align: -0.12em;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 1em;
  margin-right: .35em;
  speak: none;
}

/* --------------------------------------------------------------------------
   1.1 Bootstrap
   -------------------------------------------------------------------------- */

/* 
   Badge
   -------------------------- */
.badge {
  text-align: center;
  padding: .3em .5em !important;
  font-size: 1em;
  border-radius: 0;
  border-width: 1px;
  border-style: solid;
}
.badge.small {
  font-size: .75rem !important;
}
.badge-content {
  color: #7b6c3e !important;
  font-size: .75em;
  border: none;
  border-radius: 2px;
}

.text-bg-primary {
  color: #f26522 !important;
  background-color: #feefe8 !important;
  border-color: #f26522;
}
a:hover .text-bg-primary {
  color: #FFF !important;
  background-color: #7b6c3e !important;
  border-color: #7b6c3e !important;
}
.text-bg-secondary {
  color: #14375b !important;
  background-color: #e7eaf0 !important;
  border-color: #14375b;
}
a:hover .text-bg-secondary {
  color: #FFF !important;
  background-color: #7b6c3e !important;
  border-color: #7b6c3e !important;
}
.text-bg-dark {
  color: #FFF !important;
  background-color: #7b6c3e !important;
  border-color: #7b6c3e;
}
a:hover .text-bg-dark {
  color: #FFF !important;
  background-color: #241a08 !important;
  border-color: #241a08 !important;
}


/* 
   Buttons
   -------------------------- */
.btn {
  padding: .5rem 1.25rem;
  font-weight: 700;
  border-width: 2px;
  border-radius: 0;
  letter-spacing: 1px;
}

.btn-sm {
  padding: .5rem .75rem;
  font-size: 80%;
}

.btn-primary {
  background-color: #f26522;
  border-color: #f26522;
  box-shadow: 0 4px 0 #cb4100;
  transition: none;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.btn-primary:hover {
  background-color: #7b6c3e;
  border-color: #7b6c3e;
  box-shadow: none;
  transform: translateY(4px);
}
.card:hover .btn-primary {
  background-color: #7b6c3e;
  border-color: #7b6c3e;
  box-shadow: none;
  transform: translateY(4px);
}

.btn-secondary {
  background-color: #14375b;
  border-color: #14375b;
  box-shadow: 0 4px 0 #0b2948;
  transition: none;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.btn-secondary:hover {
  background-color: #7b6c3e;
  border-color: #7b6c3e;
  box-shadow: none;
  transform: translateY(4px);
}
.card-blog:hover .btn-secondary {
  box-shadow: none;
  transform: translateY(4px);
}

.btn-contact {
  padding-top: .3rem;
  padding-bottom: .2rem;
}

.btn-outline-secondary {
  background-color: #FFF;
  border-color: #14375b;
  box-shadow: 0 4px 0 #0b2948;
  transition: none;
}
.btn-outline-secondary:hover {
  box-shadow: none;
  transform: translateY(4px);
}

.btn-secondary-light {
  background-color: #f5d6ea;
  border-color: #f5d6ea;
  color: #333;
  box-shadow: 0 4px 0 #0b2948;
  transition: none;
}
.btn-secondary-light:hover {
  background-color: #eab5d7;
  border-color: #eab5d7;
  color: #333;
  box-shadow: none;
  transform: translateY(4px);
}

/* 
   Cards
   -------------------------- */
.card {
  border: none;
  border-radius: 0;
  --bs-card-border-radius: 0;
}
.card figure {
  margin: 0;
}
.card-img-top {
  height: auto;
}
.card-img, .card-img-top {
  border-radius: 0;
}

.card-img-overlay-top {
  font-family: "Zen Old Mincho", serif;
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem;
  background: #f26522;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  font-size: .75rem;
  border-radius: 0;
}

.card-footer {
  padding-top: 0;
  padding-bottom: 1rem;
  background-color: #FFF;
  border: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card-footer:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.card-blog {
  position: relative;
  height: 100%;
}
.card-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 30px rgba(49, 49, 49, .3);
  opacity: 0;
  transition: opacity .3s cubic-bezier(.4,.1,.3,1);
  border-radius: 0;
}
.card-blog:hover::before { opacity:1; }

.card-blog .card-img-top {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.card-blog-media {
  padding-top: 56.25%;
  background-position: 50%;
  background-size: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-blog .card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.5rem;
}
.card-blog .card-title a {
  display: block;
  text-align: justify;
  text-align-last: left;
  color: #241a08;
}
.card-blog-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}

.card-blog .card-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: justify;
  text-align-last: left;
  font-size: .95rem;
  line-height: 1.25rem;
}
.card-blog .card-footer .btn {
  font-size: .8rem;
}

.card-icon {
  margin-left: auto;
  margin-right: auto;
  max-width: 100px;
}

.card-faq {
  position: relative;
  height: 100%;
  padding: 0;
}
.card-faq .card-img-top {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.card-faq .card-body .card-title {
  margin-top: 0 !important;
  font-size: 1.25rem;
  color: #463a17;
  border-bottom: 1px solid #ad9f74;
  padding-bottom: 0.4rem;
}
.card-faq .card-body p:last-child {
  margin-bottom: 0;
}

.card-nayami {
  text-align: center;
}
.card-nayami .card-img-top {
  margin-left: auto;
  margin-right: auto;
  max-width: 180px;
  height: auto;
}
.card-nayami .card-title {
  font-size: 1.25rem;
}
.card-nayami .card-title span {
  text-decoration-line: underline;
  text-decoration-style: double;
  text-decoration-color: #7b6c3e;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.card-nayami .card-text {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
}

/* カードは線を消して白い“タイル”に */
.cards-grid {
  border-right: 1px solid var(--bs-border-color, #dee2e6);
  border-bottom: 1px solid var(--bs-border-color, #dee2e6); 
}
.cards-grid .card-reason {
  padding: 0;
  border-left: 1px solid var(--bs-border-color, #dee2e6);
  border-top: 1px solid var(--bs-border-color, #dee2e6);
}

.card-reason {
  height: 100%;
}

.card-reason .card-title {
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}
.card-reason .card-text {
  font-size: .85rem;
  text-align: center;
}

/* card-style-01 */
.card-style-01 {
  position: relative;
  height: 100%;
}

.card-style-01 .card-body {
  border: 2px solid #7b6c3e;
  border-radius: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background:
    linear-gradient(
      to bottom,
      rgba(255,250,238,0) 0%,
      rgba(255,250,238,1) 100%
    );
}

.card-style-01 .card-header {
  display: inline-block;
  padding: 1.5rem 2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  border: 0;
  border-radius: 0;
  background-color: #fcf3e3;
}
.card-style-01 .card-header h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
  text-decoration-line: underline;
  text-decoration-style: double;
  text-decoration-color: #7b6c3e;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.card-style-01 .card-body .card-text {
  font-size: .9rem;
  text-align: center;
  font-weight: 600;
}

.card-style-02 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  height: 100%;
  background-color: #f8f8f8;
  height: 256px;
  width: 256px;
  border-radius: 99rem;
}
.card-style-02 img {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

/* card-step */
.card-step .card-title {
  font-size: 1.2rem;
  text-align: center;
}
.card-step .card-text {
  font-size: .85rem;
  font-weight: 500;
  text-align: justify;
  text-align-last: left;
}

/* 
   List
   -------------------------- */
.list-group-flush {
  margin-bottom: 1.5rem;
}
.list-group-item {
  padding: .5rem;
}

/* 
   Navs
   -------------------------- */

/* dropdowns */
.dropdown-menu {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}
.dropdown-menu .dropdown-item {
  padding: .75rem;
}
.nav-item .nav-link, .dropdown-menu .dropdown-item {
  font-weight: 700;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.nav-item.dropdown:hover .nav-link {
  cursor: pointer;
}

/* 
   Forms
   -------------------------- */

.form-box {
  padding: 1.5rem 3rem 3rem;
  background-color: #FFF;
  border: 1px solid #dee2e6;
}

.form-box .form-label {
  margin-top: .5rem;
  margin-bottom: .25rem;
  font-size: 1rem;
  letter-spacing: 1px;
}
.mw_wp_form .vertical-item {
  padding: .25rem 0;
  line-height: normal;
  font-size: .9rem;
}
.form-check .form-check-input {
  transform: translateY(1px);
}

.soudan-box {
  padding: 1.5rem;
  background-color: #f8f8f8;
}

.no-label-text .mwform-checkbox-field-text {
  display: none;
}

.text-red {
  color: #c00e0e;
}
.row-group {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px dotted rgba(0,0,0,.15);
}
.col-form-label {
  font-size: 16px;
  font-weight: 700;
}
.form-check-input:checked {
  background-color: #7b6c3e;
  border-color: #7b6c3e;
}

@media(hover: hover) {
  .row-group .agreement a:hover {
    background-size:0 1px
  }
}

.form-label {
  margin-bottom: 0;
  font-size: .8rem;
  letter-spacing: 1px;
}
.form-control, .form-check-input {
  margin-top: 0;
  font-size: .8rem;
  background-color: #f8f8f8;
}

.form-box .form-control, .form-box .form-check-input {
  font-size: 1rem;
}

.form-text {
  font-size: .75rem;
}

.btn-submit {
  padding: .5rem 3rem;
  color: #FFF;
  font-size: 1rem;
  background-color: #14375b;
  border-color: #14375b;
  box-shadow: 0 4px 0 #0b2948;
  transition: none;
}
.btn-submit:hover {
  color: #FFF;
  background-color: #14375b;
  border-color: #14375b;
  box-shadow: none;
  transform: translateY(4px);
}

.btn-back {
  padding: .5rem 3rem;
  color: #FFF;
  font-size: 1rem;
  background-color: #232823;
  border-color: #232823;
  box-shadow: 0 4px 0 #131413;
  transition: none;
}
.btn-back:hover {
  color: #FFF;
  background-color: #232823;
  border-color: #232823;
  box-shadow: none;
  transform: translateY(4px);
}

.mw_wp_form_confirm .small {
  display: none;
}

.mwform-checkbox-field-text {
  display: inline-block;
}
 
/* 
   Position
   -------------------------- */
@media (max-height: 500px) {
  .sticky-top {
    position: static; /* sticky を解除 */
    top: 0;
  }
}


/* 
   Tables
   -------------------------- */


/* 
   Typography
   -------------------------- */
.lead {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .15em;
}

.bigger {
  font-size: 115%;
}
@media (min-width: 992px) {
  .bigger {
    font-size: 125%;
  }
}


/* --------------------------------------------------------------------------
   1.2 Wordpress
   -------------------------------------------------------------------------- */

/* 
   Breadcrumbs
   -------------------------- */
.breadcrumbs {
  font-size: .8rem;
  color: #463a17;
}
.breadcrumbs-body {
  padding: .75rem 0;
  border-top: 1px solid #8c887e;
}
.breadcrumbs a {
  font-size: .8rem;
  color: #463a17;
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.breadcrumbs span {
  color: #463a17;
}
.breadcrumbs i {
  font-size: .6rem;
  color: #726b56;
}

/* 
   WP-PageNavi
   -------------------------- */
.wp-pagenavi {
  clear: both;
  margin: 1.5rem 0;
  font-size: 1rem;
  text-align: center;
}
.wp-pagenavi a {
  color: #FFF !important;
  text-decoration: none !important;
}
 .wp-pagenavi span {
  display: inline-block;
  margin: 2px 5px;
  padding: .75rem 1rem;
  text-decoration: none;
  background: none #FFF;
  color: #463a17;
  border-radius: 4px;
}
.wp-pagenavi a {
  display: inline-block;
  margin: 2px 5px;
  padding: .75rem 1rem;
  text-decoration: none;
  background: none #463a17;
  color: #FFF;
  border-radius: 4px;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover {
  color: #FFF !important;
  background: none #7b6c3e;
}

/* ==========================================================================
   2. Components
   ========================================================================== */

/* table */

.table .center-middle {
  text-align: center;
  vertical-align: middle;
}

.table td ol:last-of-type,
.table td ul:last-of-type,
.table td p:last-of-type {
  margin-bottom: 0;
}

.main-content .table .price {
  white-space: nowrap;
}
.main-content .table th {
  background-color: #efeee8;
}
.main-content .table td {
  background-color: #f8f8f7;
}
.main-content .table thead th {
  background-color: #dddcd6;
}
@media (min-width: 992px) {
  .main-content .table th {
    white-space: nowrap;
  }
  .main-content .table tbody th {
    min-width: 16vw;
  }
}
.main-content .table .price .out-tax {
  color: #111;
  font-weight: 900;
  font-size: 1.25rem;
}
.table-bordered>:not(caption)>* {
  border-color: #FFF;
  border-width: 2px 0;
}
.main-content .table-bordered>:not(caption)>*>* {
  border-color: #FFF;
  border-width: 0 2px;
}
.main-content .table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-bg-type: rgba(150,150,150,0.05);
}
@media (max-width: 991.98px) {
  .main-content .table-responsive-lg .table {
    min-width: 1200px;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-block th {
    display: block;
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    padding-top: 2.0rem;
    padding-bottom: 1.0rem;
  }
  .table-responsive-block td {
    display: block;
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    padding-top: 1.0rem;
    padding-bottom: 2.0rem;
  }
  .main-content .table .price {
    vertical-align: middle;
  }
}

@media (max-width: 575.98px) {
  .in-tax {
    margin-left: -.5rem;
    font-size: .8rem;
  }
}
@media (max-width: 399.98px) {
  .main-content .table th, .main-content .table td {
    font-size: .85rem;
    line-height: 1.5rem;
    letter-spacing: 0;
  }
  .main-content .table .price .out-tax {
    font-size: 1.1rem;
  }
  .in-tax {
    font-size: .75rem;
  }
}

/* 
   List
   -------------------------- */
/* 中央配置リスト */
.centered-list {
  display: table;
  margin: 0 auto 1.5rem; 
  padding: 0;
  list-style-position: inside;
}
.centered-list li {
  text-align: left;
  padding-left: .25rem;
}
.centered-dl {
  display: table;
  margin: 0 auto;
  text-align: left;
}
.centered-dl dt {
  font-weight: bold;
  margin-top: 1rem;
}
.centered-dl dd {
  margin-left: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #DDD;
}

/* カスタムリスト */

/* ※マーク */
ul.kome-mark {
  list-style: none;
  padding-left: 1em;
}
ul.kome-mark li {
  position: relative;
  padding-left: 1.2em;
}
ul.kome-mark li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* チェックマーク */
ul.square-check-mark {
  list-style: none;
  padding-left: 1em;
}
ul.square-check-mark li {
  position: relative;
  padding-left: 1.2em;
}
ul.square-check-mark li::before {
  content: "check_box";
  font-family:"Material Symbols Outlined";
  font-style:normal; font-weight:400; font-size:1em; line-height:1;
  display:inline-block; vertical-align:-0.12em;
  font-variation-settings:"FILL" 0,"wght" 400,"GRAD" 0,"opsz" 24;
  margin-right:.35em;
  speak:none;
}

/* ==========================================================================
   3. Utilities
   ========================================================================== */

.bg-light {
  background-color: rgba(255,250,238,1) !important;
}

/* 
   Colors
   -------------------------- */
.fc-0{ color: #241a08 !important; }
.fc-1{ color: #7b6c3e !important; }

.fs-8 { font-size: 0.8rem; }
.fs-9 { font-size: 0.9rem; }
.fs-10{ font-size: 1.0rem; }
.fs-11{ font-size: 1.1rem; }
.fs-12{ font-size: 1.2rem; }
.fs-13{ font-size: 1.3rem; }
.fs-14{ font-size: 1.4rem; }
.fs-15{ font-size: 1.5rem; }
.fs-16{ font-size: 1.6rem; }
.fs-17{ font-size: 1.7rem; }
.fs-18{ font-size: 1.8rem; }
.fs-19{ font-size: 1.9rem; }
.fs-20{ font-size: 2.0rem; }

.bgc-0{ background-color: #241a08 !important; }
.bgc-1{ background-color: #7b6c3e !important; }

.link-underline { color: rgba(123,108,62,1) !important; }

/* 
   Frame
   -------------------------- */

/* レスポンシブにしたい幅は親やコンテナで制御 */
.frame {
  max-width: 800px;      /* 任意 */
  margin-inline: auto;
}

/* 9スライスでフレーム化 */
.frame {
  /* フレームの見かけの太さ（画像スライス厚に合わせる） */
  --frame-thickness: 32px; /* 実装時に微調整 */

  border: var(--frame-thickness) solid transparent;
  /* 画像はお手元のフレーム素材に差し替え */
  border-image-source: url("../img/frame-01.png");
  /* ソース画像のスライス位置（pxはソース画像基準）。中央も塗るなら fill */
  border-image-slice: 64 fill;
  /* 実際の表示上の太さ。省略時は border-width が使われる */
  border-image-width: var(--frame-thickness);
  /* 伸ばし方：角を保ちつつ辺を繰り返し配置するなら round、単純伸長は stretch */
  border-image-repeat: round;

  /* 角丸の素材にも対応させたい場合は overflow を用意 */
  box-sizing: border-box;
}

/* 中身の余白 */
.frame__inner {
  padding: clamp(16px, 3vw, 32px);
}

/* 画像の解像度別（Retina）に差し替える例 */
@media (min-resolution: 2dppx) {
  .frame {
    border-image-source: url("../img/frame-01@2x.png");
    /* @2xでも slice 値はソース画像のpxに合わせて倍に（例：128） */
    border-image-slice: 128 fill;
  }
}



/* 
   Sizing
   -------------------------- */
.w-30 {
  width: 30% !important;
}
.w-40 {
  width: 40% !important;
}

.img-w-50 {
  max-width: 50%;
  height: auto;
}
.img-w-75 {
  max-width: 75%;
  height: auto;
}
@media (max-width: 767.98px) {
  .img-md-w-50 {
    max-width: 50%;
    height: auto;
  }
  .img-md-w-75 {
    max-width: 75%;
    height: auto;
  }
}

@media (max-width: 991.98px) {
  .mw-lg-w60 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 60vw;
    height: auto;
  }
}

.w-6r {
  width: 6rem;
}
.w-9r {
  width: 9rem;
}
.w-10r {
  width: 10rem;
}
.w-11r {
  width: 11rem;
}
.w-12r {
  width: 12rem;
}
.w-13r {
  width: 13rem;
}
.w-14r {
  width: 14rem;
}
.w-15r {
  width: 15rem;
}

.w-20r {
  width: 20rem;
}
.w-21r {
  width: 21rem;
}
.w-22r {
  width: 22rem;
}
.w-23r {
  width: 23rem;
}


/* ==========================================================================
   4. Layout
   ========================================================================== */

/* --------------------------------------------------------------------------
   4.1 Header
   -------------------------------------------------------------------------- */
.header {
  background-color: #FFF;
}
.header .navbar-brand {
  max-width: 240px;
}
.navbar-brand img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .header .navbar-brand {
    max-width: 320px;
  }
}

.header .site-overview {
  display: none;
  margin: 0;
  font-size: .74rem;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .header .site-overview {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .header .btn {
    padding: 0.375rem 0.5rem;
    font-size: .9rem;
  }
}

/* --------------------------------------------------------------------------
   4.2 Navigation
   -------------------------------------------------------------------------- */
/* 
   4.2.1 Main (header)
   -------------------------- */
.main-navigation {
  color: #241a08;
}
.main-navigation.scroll {
  display: none;
}
.main-navigation.scroll .navbar-brand {
  display: none;
}
.main-navigation .nav-link {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  padding: .5rem .25rem .5rem;
  color: #241a08;
}
.main-navigation .nav-link i {
  font-size: .8rem;
  transform: translateY(-1px);
  opacity: .5;
}
.main-navigation .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #7b6c3e;
  transition: width 0.3s ease;
}
.main-navigation .nav-link:hover {
  color: #333;
}
.main-navigation .nav-link:hover::before {
  width: 100%;
}

/* sub */
.sub-navigation .nav-link {
  position: relative;
  font-weight: 900;
  font-size: .75rem;
  line-height: 1;
  padding: .25rem .5rem;
  color: #241a08;
}
.sub-navigation .nav-link:hover {
  color: #7b6c3e;
  text-decoration: underline;
}
.sub-navigation .nav-link .ms {
  opacity: .5;
}

/* contact */

@media (min-width: 1400px) {
  .main-navigation .nav-link {
    padding: .5rem .6rem .75rem;
  }
}
@media (min-width: 1200px) {
  .main-navigation .nav-link {
    font-size: .95rem;
    letter-spacing: 0;
  }
  .main-navigation {
    display: block;
  }
  .main-navigation .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .main-navigation .nav-link {
    letter-spacing: -.5px;
  }
}


.fadeDown {
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 1020;
  opacity: 0;
  animation-name: fadeDown;
  animation-duration: .5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  box-shadow: 0px 5px 10px 0px rgba(100, 100, 100, 0.15);
  background-color: #FFF;
}
@keyframes fadeDown {
  0% {
     opacity: 0;
     transform: translateY(-100px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}
.main-navigation.fadeDown {
  display: block;
}
.main-navigation.fadeDown .navbar-brand {
  display: block;
}
.main-navigation.fadeDown .navbar-brand {
  max-width: 160px;
}
.main-navigation.fadeDown .nav-link {
  padding: .5rem .25rem;
  font-size: .85rem;
  font-weight: 900;
}
.main-navigation.fadeDown .dropdown-menu {
  padding: .5rem .25rem;
  font-size: .85rem;
  font-weight: 900;
}

/* dropdowns */
.dropdown-menu {
  color: #FFF;
  background-color: rgba(123,108,62,.9);
}
.dropdown-toggle::after {
  opacity: .5;
}
.dropdown-menu .dropdown-item {
  font-family: "Zen Old Mincho", serif;
  position: relative;
  padding-left: 1.75rem;
  display: inline-block;
  color: inherit;
}
.dropdown-menu li:not(:first-child) .dropdown-item {
  border-top: 1px dotted rgba(255,255,255,0.25);
}
.dropdown-menu .dropdown-item:hover {
  background-color: rgba(50,50,50,0.9); 
}
.dropdown-menu .dropdown-item::before {
  content: "keyboard_double_arrow_right";
  font-family:"Material Symbols Outlined";
  font-style:normal; font-weight:400; font-size:1em; line-height:1;
  display:inline-block; vertical-align:-0.12em;
  font-variation-settings:"FILL" 0,"wght" 400,"GRAD" 0,"opsz" 24;
  margin-right:.35em;
  speak:none;
}

/* --- toggle button --- */
.navbar-toggler {
  overflow: hidden;
  position: relative;
  padding: 0px;
  width: 90px;
  height: 36px;
  color: #FFF;
  border: none;
  outline: none;
  box-sizing: border-box;
  background-color: #3f312b;
  /* box-shadow: 0 4px 0 #7b6c3e; */
  border-radius: 0;
}
.navbar-toggler:focus {
  /* box-shadow: 0 4px 0 #463a17; */
}
.navbar-toggler:hover {
  color: #FFF;
  background-color: #111;
  box-shadow: none;
  /* transform: translateY(4px); */
}
.navbar-toggler:hover .navbar-toggler-icon {
  background-color: #FFF;
}
.navbar-toggler-icon {
  position: absolute;
  display: block;
  left: 10px;
  width: 23px;
  height: 3px;
  background-image: none!important;
  background-color: #FFF;
  /* transition: ease .5s; */
}
.navbar-toggler-icon:nth-of-type(1) {top:9px;}
.navbar-toggler-icon:nth-of-type(2) {top:17px;}
.navbar-toggler-icon:nth-of-type(3) {top:25px;}

.navbar-toggler-title {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
  font-size: .7rem;
  font-weight: bold;
  letter-spacing: -1px;
}
.navbar-toggler:hover .navbar-toggler-title {
  color: #FFF;
}

/* 
   4.2.2 Footer
   -------------------------- */
.footer .site-overview {
  margin: 0;
  font-size: .74rem;
  font-weight: 700;
}
@media (max-width: 361px) {
  .footer .site-overview {
  }
}
.footer .navbar-brand {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.footer-navigation .nav-link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: .9rem;
  line-height: 1;
  position: relative;
  display: inline-block;
  color: #241a08;
}
.footer-navigation .nav-link i {
  font-size: .8rem;
  opacity: .5;
  transform: translateY(-1px);
}
.footer-navigation .nav-link::before {
  content: "keyboard_double_arrow_right";
  font-family:"Material Symbols Outlined";
  font-style:normal; font-weight:400; font-size:1em; line-height:1;
  display:inline-block; vertical-align:-0.12em;
  font-variation-settings:"FILL" 0,"wght" 400,"GRAD" 0,"opsz" 24;
  margin-right:.35em;
  speak:none;
}
.footer-navigation ul ul .nav-link::before {
  content: "\f101";
}
.footer-navigation .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #7b6c3e;
  transition: width 0.3s ease;
}
.footer-navigation .nav-link:hover {
  color: #241a08;
}
.footer-navigation .nav-link:hover::after {
  width: 100%;
}

/* 
   4.2.3 Offcanvas
   -------------------------- */
.offcanvas {
  background-color: #3f312b !important;
}
.offcanvas.offcanvas-end {
  width: 420px;
}
.offcanvas-body .nav-link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  position: relative;
  padding-left: 1.25rem;
  display: block;
  color: #FFF;
  font-size: .85rem;
}
.offcanvas-body .nav-link i {
  font-size: .8rem;
  opacity: .5;
}
.offcanvas-body .nav-link::before {
  content: "keyboard_arrow_right";
  font-family:"Material Symbols Outlined";
  font-style:normal; font-weight:400; font-size:1em; line-height:1;
  display:inline-block; vertical-align:-0.12em;
  font-variation-settings:"FILL" 0,"wght" 400,"GRAD" 0,"opsz" 24;
  margin-right:.35em;
  speak:none;
}
.offcanvas-body .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #EEE;
  transition: width 0.3s ease;
}
.offcanvas-body .nav-link:hover {
  color: #EEE;
}
.offcanvas-body .nav-link:hover::after {
  width: 100%;
}

.offcanvas-body ul ul {
  list-style: none;
  padding-left: 1rem;
}
.offcanvas-body ul ul li {
  list-style: none;
}
.offcanvas-body ul ul .nav-link {
  padding-left: 1.75rem;
}
.offcanvas-body ul ul .nav-link::before {
  content: "\f101";
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, auto); /* 2列表示に設定 */
  column-gap: 1rem; /* 列間の間隔を調整 */
}


/* --------------------------------------------------------------------------
   4.3 Footer
   -------------------------------------------------------------------------- */
/* 
   4.3.1 Footer Top
   -------------------------- */
.footer-top {
  padding: 3rem 0;
  color: #241a08;
  background-color: rgba(200,200,200,.15);
}

/* 
   4.3.2 Footer Bottom
   -------------------------- */
.footer-bottom {
  padding: .75rem 0;
  color: #FFF;
  background-color: rgba(63,49,43,.95);
}
.copyright {
  font-family: "Zen Old Mincho", serif;
  margin: 0;
  padding: 0;
  color: #FFF;
  text-align: center;
  font-size: .8rem;
  letter-spacing: 1px;
}

.footer-bottom a {
  color: #FFF;
  text-decoration: underline;
}
.footer-bottom a:hover {
  text-decoration: none;
}

/* 
   4.3.3 Back to TOP
   -------------------------- */
.back-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #FFF;
  background-color: rgba(63,49,43,.95);
  border-radius: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity .5s ease-out;
}
.back-to-top.view {
  opacity: 1;
}
.back-to-top:hover {
  color: #FFF;
  background-color: rgba(0,0,0,0.6);
}


/* --------------------------------------------------------------------------
   4.4 Main Content
   -------------------------------------------------------------------------- */

.text-marker {
  background: linear-gradient(transparent 70%, #ffea00 70%);
}

.text-marker-white {
  padding: 2px;
  background-color: rgba(255,255,255,.95);
}

.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-underline-01 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.text-underline-02 {
  text-decoration: underline;
  text-decoration-color: #ccb366;
  text-decoration-thickness: 8px;
  text-underline-offset: 8px;
}

.text-wavy {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.text-dashed {
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.text-double {
  text-decoration-line: underline;
  text-decoration-style: double;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.highlight {
  display: inline-block;
  background-color: rgba(255,255,255,.75);
  padding: 0.2em 0.5em;      /* 文字周りに余白 */
}

/* 
   4.4.0 Common
   -------------------------- */

.section-header {
  text-align: center;
}
.section-body {
  padding-top: var(--section-pt);
}
.section-footer {
  padding-top: var(--section-pt);
}

/* 
   4.4.1 Home
   -------------------------- */

/* セクション：ヒーロー */
.hero-content {
  padding: 1rem 0 3rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../img/bg-hero-sp-2.jpg?ver=1.0.1");
}
.hero-text-content .hero-text {
  margin-top: 3rem;
  padding: 0 0 3rem;
}
.hero-text-content .hero-text h1,
.hero-text-content .hero-text p {
  text-align: center;
}

.hero-list {
  font-family: "Zen Old Mincho", serif;
  display: table;
  margin: 0 auto;
  padding: 0;
  list-style-position: inside;
}
.hero-list li {
  font-size: 1rem;
  text-align: left;
  padding-left: 1em;
  font-weight: 900;
}

@media (min-width: 576px) {
  .mwf-content {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .hero-content {
    background-image: url("../img/bg-hero-2.jpg?ver=1.0.1");
  }
  .mwf-content .mwf-content-body {
    height: 600px;
  }
  .hero-text-content .hero-text {
    margin-top: 0;
  }
  .hero-list li {
    font-size: 1.1rem;
  }
}
@media (min-width: 1200px) {
  .hero-text-content {
    padding-right: 5vw;
  }
  .hero-text-content .hero-text {
    width: 540px;
  }
  .hero-list li {
    font-size: 1.25rem;
  }
}

.mwf-content {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(123, 108, 62, .2);
}
.mwf-content .mwf-content-header {
  background-color: #7b6c3e;
}
.mwf-content .mwf-content-header h2 {
  margin: 0;
  padding: .5rem 0;
  text-align: center;
  color: #FFF;
  font-size: 1.25rem;
}
.mwf-content .mwf-content-body {
  overflow-y: auto;
  padding: 1rem 2.5rem;
  background-color: #FFF;
}

.agree-text {
  margin-top: .25rem;
  margin-bottom: 0;
  font-size: .85rem;
  text-align: center;
}
.agree-text a {
  text-decoration: underline;
}
.agree-text a:hover {
  text-decoration: none;
}

/* セクション：お悩み・解消 */
.solutions-content {
  background:
    linear-gradient(
      to bottom,
      rgba(123,108,62,.25) 0%,
      rgba(123,108,62,.0) 35%,
      rgba(123,108,62,.15) 100%
    );
}

.nayami-content .section-body {
  padding-bottom: var(--section-pb);
}

.kaisho-content .kaisho-content-box {
  position: relative;
  padding:  2rem .75rem;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.75) 0%,
      rgba(255,255,255,.50) 35%,
      rgba(255,255,255,.95) 100%
    );
  border-top: 8px solid #7b6c3e;
}
.kaisho-content .kaisho-content-box::before {
  position: absolute;
  display: block;
  content: "";
  top: 6px;
  left: 0;
  width: 100%;
  border-top: 3px solid #7b6c3e;
}
@media (min-width: 1200px) {
  .kaisho-content .kaisho-content-box {
    padding: 3.5rem 1.5rem;
  }
}

.kaisho-content .kaisho-content-box .about-us-img {
  padding: 1rem;
  max-width: 640px;
}
.kaisho-content .kaisho-content-box .about-us-text {
  padding: 1rem;
}
.kaisho-content .kaisho-content-box .about-us-text p {
  font-size: .9rem;
  width: 332px;
}
@media (min-width: 576px) {
  .kaisho-content .kaisho-content-box .about-us-text p {
    text-align: justify;   /* 均等揃え */
    text-align-last: left; /* 最後の行は左揃え */
    width: 472px;
  }
}

.solutions-cta-content {
  padding-top: var(--section-pt);
}
.solutions-cta-content p {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .15em;
}
.solutions-cta-content .solutions-cta-text {
  text-align: center;
}
.solutions-cta-content .cta {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.75rem;
}
.solutions-cta-content .cta a {
  color: #241a08;
  letter-spacing: 0;
}
.solutions-cta-content .cta a:hover {
  color: #7b6c3e;
}

/* セクション：CTA */
#cta01 .cta-content {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../img/bg-cta-sp-01.jpg?ver=1.0.0");
}

#cta02 .cta-content {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("../img/bg-cta-sp-02.jpg?ver=1.0.0");
}

.cta-content .contact-box {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  padding: 1.5rem;
  text-align: center;
  background-color: rgba(255,255,255,.75);
}
@media (min-width: 768px) {
  #cta01 .cta-content {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url("../img/bg-cta-01.jpg?ver=1.0.0");
  }
  #cta02 .cta-content {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url("../img/bg-cta-02.jpg?ver=1.0.0");
  }
}

/* セクション：提案範囲 */
.service-content {
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.50) 35%,
      rgba(255,255,255,1) 100%
    );
}

/* セクション：選ばれる理由 */
.reason-box {
  padding-bottom: var(--section-pb);
}
.reason-box:last-of-type {
  padding-bottom: 0;
}
.reason-box .reason-box-header {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -2.5rem;
  text-align: center;
  padding: 1.5rem 1.5rem 1.5rem 5rem;
  background-color: #fcf3e3;
  z-index: 2;
}
.reason-box .reason-box-header span {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  left: .75rem;
  top: 50%;
  line-height: 3.5rem;
  color: #FFF;
  background-color: #7b6c3e;
  transform: translateY(-50%);
}
.reason-box .reason-box-header h3 {
  margin: 0;
  line-height: 1.1;
}
.reason-box .reason-box-body {
  padding: 3rem .75rem .75rem;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.95) 0%,
      rgba(255,255,255,.75) 100%
    );
  box-shadow: 0 0 10px rgba(123, 108, 62, .2);
}
.reason-box .reason-box-body .list-group {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
}
.reason-box .reason-box-body .list-group i {
  color: #65c973;
}

@media (min-width: 992px) {
  .reason-box .reason-box-header {
    width: 820px!important;
  }
  .reason-box .reason-box-body {
    padding: 3rem 1.5rem 1.5rem;
  }
}
@media (min-width: 1200px) {
  .reason-box .reason-box-body {
    padding: 3.5rem 3rem 3rem;
  }
}
@media (min-width: 1400px) {
  .reason-box .reason-box-body {
    padding: 4rem 5rem;
  }
}
@media (max-width: 575.98px) {
  .reason-box .list-group:last-of-type {
    margin-bottom: 0;
    border-bottom: 1px solid #dee2e6;
  }
}

.success-method-box p {
  margin: 0;
  text-align: center;
}

/* セクション：お客様の声 */
.interview-content {
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.75) 0%,
      rgba(255,255,255,.25) 35%,
      rgba(255,255,255,.75) 100%
    );
}

/* セクション：Web集客術ブログ */
.blog-content {
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.75) 0%,
      rgba(255,255,255,.25) 35%,
      rgba(255,255,255,.75) 100%
    );
}

/* セクション：ご利用料金プラン */
.plan-table th, .plan-table td {
  margin: 0;
  padding: 0;
  text-align: center;
}
.plan-first td, .plan-second td, .plan-third td, .plan-fourth td {
  width: 220px;
}
@media (min-width: 768px) {
  .plan-first td, .plan-second td, .plan-third td, .plan-fourth td {
    width: 300px;
  }
  .plan-second th, .plan-fourth th {
    display: none;
  }
}
@media (min-width: 1200px) {
  .plan-first td {
    width: 50%;
  }
  .plan-second th, .plan-third th, .plan-fourth th {
    display: none;
  }
}

.plan-table tbody th {
  background-color: #f0f0f0;
}
.plan-table tbody tr:nth-child(odd) th {
  background-color: #e0e0e0;
}
.plan-first tbody td {
  background-color: #fffaf5;
}
.plan-first tbody tr:nth-child(odd) td {
  background-color: #fff0e3; 
}
.plan-second tbody td {
  background-color: #fffcf6; 
}
.plan-second tbody tr:nth-child(odd) td {
  background-color: #fff7e5; 
}
.plan-third tbody td {
  background-color: #f7fcf8; 
}
.plan-third tbody tr:nth-child(odd) td {
  background-color: #e8f7ea; 
}
.plan-fourth tbody td {
  background-color: #f5fafb; 
}
.plan-fourth tbody tr:nth-child(odd) td {
  background-color: #e3f1f2; 
}

:root{
  --cell-fz: .8rem;
  --cell-lh: 1.75;
  --cell-vpad: .75rem;
  --cell-hpad: 1rem;
}
.plan-table th, .plan-table td {
  vertical-align: middle;
}
.plan-table .price {
  font-size: 125%;
  font-weight: 900;
}
.plan-table thead {
  height: 3rem;
  font-weight: 900;
}
.plan-table thead th {
  font-size: .9rem;
  background-color: #d0d0d0;
}
.plan-first thead td {
  background-color: #ff9740; 
}
.plan-second thead td {
  background-color: #ffc851; 
}
.plan-third thead td {
  background-color: #65c973; 
}
.plan-fourth thead td {
  background-color: #43a3a8; 
}

.cell{
  display: flex;                /* ← flexに変更 */
  align-items: center;          /* 縦方向の中央寄せ */
  justify-content: center;      /* 水平方向も中央寄せしたい場合は追加 */
  font-size: var(--cell-fz);
  line-height: var(--cell-lh);
  padding: var(--cell-vpad) var(--cell-hpad);
  text-align: center;           /* 横中央寄せに揃えたいなら */
  overflow: hidden;
  font-weight: 700;
}
.cell.h-1l{ height: calc(var(--cell-lh)*1em*1 + var(--cell-vpad)*2); -webkit-line-clamp:1; }
.cell.h-2l{ height: calc(var(--cell-lh)*1em*2 + var(--cell-vpad)*2); -webkit-line-clamp:2; }
.cell.h-3l{ height: calc(var(--cell-lh)*1em*3 + var(--cell-vpad)*2); -webkit-line-clamp:3; }
.cell.h-5l{ height: calc(var(--cell-lh)*1em*5 + var(--cell-vpad)*2); -webkit-line-clamp:5; }
.cell.h-8l{ height: calc(var(--cell-lh)*1em*8 + var(--cell-vpad)*2); -webkit-line-clamp:8; }

.plan-table-02 th, .plan-table-02 td {
  text-align: center;
  vertical-align: middle;
  font-size: .9rem;
}
.plan-table-02 .plan-spot td {
  background-color: #fffaf5;
}
.plan-table-02 .plan-small td {
  background-color: #fffcf6; 
}
.plan-table-02 .plan-light td {
  background-color: #f7fcf8; 
}
.plan-table-02 .plan-standard td {
  background-color: #f5fafb; 
}
.plan-table-02 .plan-premium td {
  background-color: #f5fafb; 
}

/* セクション：ご利用の流れ */
.service-refusal-list ul li {
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .service-refusal-list .frame__inner {
    padding: 0;
  }
}
.service-flow-group {
  padding-bottom: 3rem;
}

.service-refusal-group {
  padding: 3rem .75rem .75rem;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.95) 0%,
      rgba(255,255,255,.75) 100%
    );
  box-shadow: 0 0 10px rgba(123, 108, 62, .2);
}
@media (min-width: 992px) {
  .service-refusal-group {
    padding: 3rem 1.5rem 1.5rem;
  }
}
@media (min-width: 1200px) {
  .service-refusal-list ul li {
    letter-spacing: 1px;
  }
  .service-refusal-group {
    padding: 3.5rem 3rem 3rem;
  }
}
@media (min-width: 1400px) {
  .service-refusal-group {
    padding: 4rem 5rem;
  }
}
.service-refusal-header {
  text-align: center;
}
.service-refusal-text p {
  margin: 0;
  font-size: .9rem;
  text-align: justify;
  text-align-last: left;
}

/* セクション：よくある質問 */
.faq-content {
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.75) 0%,
      rgba(255,255,255,.25) 35%,
      rgba(255,255,255,.75) 100%
    );
}


/* 
   4.4.2 Page
   -------------------------- */
.page-content {
  margin: .75rem auto;
  padding: .75rem;
  background-color: #FFF;
}
@media (min-width: 992px) {
  .page-content {
    margin: 3rem auto;
    padding: 3rem;
  }
}

.page-content a {
  text-decoration: underline;
}
.page-content a:hover {
  text-decoration: none;
}
.page-content .btn {
  text-decoration: none;
}
.page-content .btn:hover {
  text-decoration: none;
}

/* 見出し共通装飾 */
.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  margin-top: 3rem;
  margin-bottom: .75rem;
  position: relative;
}

.page-content h1 {
  font-size: clamp(1.5rem, 1.20rem + 1.20vw, 1.75rem);     /* 26px → 32px */
  letter-spacing: 0.01em;
}
.page-content h2 {
  font-size: clamp(1.375rem, 1.00rem + 0.90vw, 1.625rem); /* 22px → 26px */
  letter-spacing: 0.01em;
}
.page-content h3 {
  font-size: clamp(1.25rem, 1.00rem + 0.60vw, 1.375rem);  /* 20px → 22px */
  letter-spacing: 0.005em;
}
.page-content h4 {
  font-size: clamp(1.125rem, 0.95rem + 0.40vw, 1.25rem);  /* 18px → 20px */
  letter-spacing: 0.003em;
}
.page-content h5 {
  font-size: clamp(1rem, 0.90rem + 0.30vw, 1.125rem);     /* 16px → 18px */
  letter-spacing: 0.003em;
}
.page-content h6 {
  font-size: clamp(0.875rem, 0.80rem + 0.15vw, 0.9375rem);/* 14px → 15px */
  letter-spacing: 0.002em;
}


/* h1 - メインタイトル */
.page-content h1 {
  color: #463a17;
  border-bottom: 4px solid #463a17;
  padding-bottom: 0.4rem;
}

/* h2 - セクションタイトル */
.page-content h2 {
  position: relative;
  color: #463a17;
  padding-left: 0.8rem;
}
.page-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 90%;
  background-color: #463a17;
  transform: translateY(-45%);
}

/* h3 - サブセクション */
.page-content h3 {
  position: relative;
  color: #463a17;
  padding-left: 0.8rem;
}
.page-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 70%;
  background-color: #7b6c3e;
  transform: translateY(-45%);
}

.page-content h4 {
  position: relative;
  color: #463a17;
  padding-left: 0.6rem;
}
.page-content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 50%;
  background-color: #ad9f74;
  transform: translateY(-45%);
}

/* h5以下は軽めに */
.page-content h5 {
  color: #463a17;
  border-bottom: 1px solid #ad9f74;
  padding-bottom: 0.4rem;
}
.page-content h6 {
  color: #463a17;
  border-bottom: 1px dotted #ad9f74;
  padding-bottom: 0.4rem;
}


/* お問い合わせページ */

/* form-step */
.form-step {
  overflow: hidden;
}
.form-step .nav-item {
  margin: 0 !important;
  position: relative;
  padding: 1rem 0;
  color: #FFF;
  background-color: #595757;
}
.form-step .nav-item.active {
  color: #FFF;
  background-color: #7b6c3e;
}

.form-step .nav-item:last-child{
  padding-right: 1rem;
}
.form-step .nav-item:last-child:before,
.form-step .nav-item:last-child:after{
  display:none;
}
.form-step .nav-item:before,
.form-step .nav-item:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.form-step .nav-item:before{
  top: 50%;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}
.form-step .nav-item:after{
  top: 50%;
  right:-.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #595757;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .form-step .nav-item:after {
    display: none;
  }
  .form-step .nav-item:last-child{
    padding-right: 0;
  }
}

.form-step .nav-item.active:after{
  top: 50%;
  right:-.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #7b6c3e;
  border-width: 3rem 0 3rem 1rem;
  z-index: 10;
  transform: translateY(-50%);
}

/* 運営会社ページ */

.introduction-box {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #FFF;
  border-radius: 1.5rem;
}
.profile-name {
  margin-bottom: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
}
.profile-role {
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 700;
}
.profile-position {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.personal-story p {
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 1px;
}

.industry-experience {
  padding: 1rem;
  border-radius: 1rem;
}
.industry-experience p {
  margin-bottom: 0;
  font-size: .9rem;
}

/* 
   4.4.3 Post
   -------------------------- */
.post-content {
  margin: .75rem auto;
  padding: .75rem;
  background-color: #FFF;
}
@media (min-width: 992px) {
  .post-content {
    margin: 3rem auto;
    padding: 3rem;
  }
}

/*
.post-content i {
  color: #0b2948;
}
*/

.post-content a {
  text-decoration: underline;
}
.post-content a:hover {
  text-decoration: none;
}
.post-content .btn {
  text-decoration: underline;
}
.post-content .btn:hover {
  text-decoration: none;
}

/* 見出し共通装飾 */
.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 3rem;
  margin-bottom: .75rem;
  position: relative;
}

.post-content h1 {
  font-size: clamp(1.625rem, 1.20rem + 1.20vw, 2rem);     /* 26px → 32px */
  letter-spacing: 0.01em;
}
.post-content h2 {
  font-size: clamp(1.375rem, 1.00rem + 0.90vw, 1.625rem); /* 22px → 26px */
  letter-spacing: 0.01em;
}
.post-content h3 {
  font-size: clamp(1.25rem, 1.00rem + 0.60vw, 1.375rem);  /* 20px → 22px */
  letter-spacing: 0.005em;
}
.post-content h4 {
  font-size: clamp(1.125rem, 0.95rem + 0.40vw, 1.25rem);  /* 18px → 20px */
  letter-spacing: 0.003em;
}
.post-content h5 {
  font-size: clamp(1rem, 0.90rem + 0.30vw, 1.125rem);     /* 16px → 18px */
  letter-spacing: 0.003em;
}
.post-content h6 {
  font-size: clamp(0.875rem, 0.80rem + 0.15vw, 0.9375rem);/* 14px → 15px */
  letter-spacing: 0.002em;
}

.post-content hr {
  margin-top: 3rem;
}

/* h1 - メインタイトル */
.post-content h1 {
  color: #463a17;
  border-bottom: 4px solid #463a17;
  padding-bottom: 0.4rem;
}

/* h2 - セクションタイトル */
.post-content h2 {
  position: relative;
  color: #241a08;
  padding-left: 0.8rem;
}
.post-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 90%;
  background-color: #463a17;
  transform: translateY(-45%);
}

/* h3 - サブセクション */
.post-content h3 {
  position: relative;
  color: #241a08;
  padding-left: 0.8rem;
}
.post-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 70%;
  background-color: #7b6c3e;
  transform: translateY(-45%);
}

.post-content h4 {
  position: relative;
  color: #241a08;
  padding-left: 0.6rem;
}
.post-content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 60%;
  background-color: #7b6c3e;
  transform: translateY(-45%);
}

/* h5以下は軽めに */
.post-content h5 {
  color: #241a08;
  border-bottom: 1px solid #7b6c3e;
  padding-bottom: 0.4rem;
}
.post-content h6 {
  color: #241a08;
  border-bottom: 1px dotted #7b6c3e;
  padding-bottom: 0.4rem;
}

/* post-navigation */
.post-navigation {
  clear: both;
  margin-bottom: 3rem;
}
.post-navigation .card {
  height: 100%;
  border-radius: 0;
}
.post-navigation .small {
  font-size: .65rem;
  color: #726b56;
}
.post-navigation .card-body {
  padding: .5rem;
}
.post-navigation .card-title {
  margin-bottom: 0;
  font-size: .8rem;
  color: #463a17;
}
.post-navigation a:hover .small {
  color: #333;
}
.post-navigation a:hover .card-title {
  color: #333;
}


/* 
   4.4.4 Sidebar
   -------------------------- */
.sidebar {
  top: 80px;
  margin: 3rem auto;
  z-index: 5;
}
.sidebar .widget {
  margin-bottom: 1.5rem;
}
.sidebar .widget-title {
  margin: 0;
  padding: .75rem .5rem;
  font-size: 1.15rem;
  color: #FFF;
  background-color: #463a17;
}
.sidebar .widget ul, .sidebar .widget ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar .widget ul li {
  position: relative;
}
.sidebar .widget ul li:not(:first-child) {
  border-top: 1px dotted rgba(0,0,0,0.25);
}
.sidebar .widget ul li a {
  position: relative;
  display: block;
  padding: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: #241a08;
  background-color: #FFF;
  text-decoration: none;
}
.sidebar .widget ul li a:hover {
  color: #7b6c3e;
  background-color: #f3f3f1;
}
.sidebar .widget ul li a::before {
  content: "keyboard_arrow_right";
  font-family:"Material Symbols Outlined";
  font-style:normal; font-weight:400; font-size:1em; line-height:1;
  display:inline-block; vertical-align:-0.12em;
  font-variation-settings:"FILL" 0,"wght" 400,"GRAD" 0,"opsz" 24;
  margin-right:.35em;
  speak:none;
}
.sidebar .widget ul li li a::before {
  content: "keyboard_double_arrow_right";
  font-family:"Material Symbols Outlined";
  font-style:normal; font-weight:400; font-size:1em; line-height:1;
  display:inline-block; vertical-align:-0.12em;
  font-variation-settings:"FILL" 0,"wght" 400,"GRAD" 0,"opsz" 24;
  margin-right:.35em;
  speak:none;
}

.sidebar .widget .searchform {
  padding: 1rem;
  background-color: #FFF;
  text-align: center;
}
.sidebar .widget .searchform #s {
  width: 100%;
}
.searchform #s {
  margin-bottom: .75rem;
  padding: .375rem .75rem;
  border: 1px solid #d2d3d4;
  border-radius: .375rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: #f8f8f8;
}
#searchsubmit {
  display: block;
  margin: 0 auto;
  padding: .25rem .75rem;
  color: #FFF;
  font-size: .9rem;
  font-weight: 500;
  background-color: #7b6c3e;
  border-color: #7b6c3e;
  border-radius: .375rem;
  border: none;
  box-shadow: 0 4px 0 #463a17;
  transition: none;
}
#searchsubmit:hover {
  box-shadow: none;
  transform: translateY(4px);
}

/* 
   4.4.5 Archive
   -------------------------- */
.archive-content {
  margin: 3rem auto;
}
/* h1 - メインタイトル */
.archive-content h1 {
  color: #463a17;
  border-bottom: 4px solid #463a17;
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
}