/***** テーマ内の内容を変更 *******/
.menu,
.nav-menu,
#primary-menu {
    display: none;
}
.site-header {
    display: none;
}

.site-main .entry-content{
    margin:0;
}

/*======================================
  Design System
======================================*/

:root{

    /* メインカラー */
    --main-color:#8c6b4f;

    /* セクション背景 */
    --sub-bg:#f8f4ef;

    /* 白 */
    --white:#ffffff;

    /* テキスト */
    --text:#333333;

    /* 補助テキスト */
    --text-light:#666666;

    /* 少し薄い文字 */
    --text-gray:#555555;

    /* ボーダー */
    --border:#ece4db;

    /* FV背景 */
    --gray-bg:#f5f5f5;

    /* 仮画像背景 */
    --image-bg:#dddddd;

    /* イラスト背景 */
    --image-area:#f4eee7;

    /* シャドウ */
    --shadow:0 10px 30px rgba(0,0,0,.06);
    --shadow-card:0 10px 28px rgba(0,0,0,.06);

    /* アニメーション */
    --transition:.3s;

}

/* =========================================
   components.css
   共通パーツ・共通レイアウト
========================================= */

/* ---------- 基本リセット ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body{
    overflow-x:hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fff;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* ---------- 余白リセット ---------- */

h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

/* ---------- 共通レイアウト ---------- */

.section {
    padding: 100px 20px;
}

.section--gray {
    background: #f7f7f7;
}

.section--cream {
    background: #fffaf0;
}

.inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/*==============================
セクション説明文
==============================*/

.section-text{
    max-width: 820px;
    margin: 24px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: #666;
    padding: 0 20px;
}

/* ノートPC */
@media (max-width: 1200px){

    .section-text{
        max-width: 700px;
    }

}

/* タブレット */
@media (max-width: 992px){

    .section-text{
        max-width: 620px;
        font-size: 15px;
        line-height: 1.9;
    }

}

/* スマホ */
@media (max-width: 768px){

    .section-text{
        max-width: 100%;
        padding: 0;
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.8;
        text-align : left;
    }

}

/* PC表示 / SP非表示 */
.pc {
  display: block;
}

/* SP表示 / PC非表示 */
.sp {
  display: none;
}

/* 899px以下をスマホ扱い */
@media screen and (max-width: 899px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* PCで表示、スマホで非表示 */
.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

/* スマホ時（899px以下など自由に調整可能） */
@media screen and (max-width: 899px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
}

/* ---------- セクション見出し ---------- */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title__en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #999;
    margin-bottom: 8px;
}

.section-title__jp {
    display: block;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 600;
    color: #333;
}

/* ---------- テキスト ---------- */

.lead {
    font-size: 18px;
    line-height: 2;
    text-align: center;
}

.text {
    font-size: 16px;
    line-height: 1.9;
}

/* ---------- ボタン ---------- */

.btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 16px 32px;
    border-radius: 999px;
    background: #333;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
}

.btn--main {
    background: #c58b57;
    color: #fff;
}

.btn--outline {
    background: #fff;
    color: #333;
    border: 1px solid #333;
}

/* ---------- カード ---------- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    line-height: 1.9;
}

/* ---------- CTA ---------- */

.cta-box {
    background: #f7efe7;
    border-radius: 24px;
    padding: 60px 30px;
    text-align: center;
}

.cta-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 17px;
    line-height: 2;
}

/* ---------- 表示切替 ---------- */

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

/* ---------- スマホ ---------- */

@media screen and (max-width: 767px) {

    body {
        font-size: 16px;
    }

    .section {
        padding: 70px 18px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title__jp {
        font-size: 25px;
    }

    .lead {
        font-size: 16px;
        text-align: left;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .card {
        padding: 24px;
        border-radius: 14px;
    }

    .btn {
        width: 100%;
        min-width: auto;
        padding: 15px 24px;
    }

    .cta-box {
        padding: 45px 22px;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 24px;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

/*======================================
Footer
======================================*/

.site-footer{

    background:var(--main-color);
    color:#fff;

    padding:45px 20px;

}

.footer-inner{

    max-width:1200px;
    margin:0 auto;

    text-align:center;

}

.footer-logo{

    margin:0 0 20px;

    font-size:22px;
    font-weight:700;
    letter-spacing:.08em;

}

.footer-nav{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;

    margin-bottom:20px;

    flex-wrap:wrap;

}

.footer-nav a{

    color:#fff;
    text-decoration:none;

    font-size:14px;

    transition:var(--transition);

}

.footer-nav a:hover{

    opacity:.7;

}

.footer-nav span{

    opacity:.5;

}

.copyright{

    margin:0;

    font-size:13px;
    color:rgba(255,255,255,.8);

}

@media(max-width:768px){

.site-footer{

padding:35px 20px;

}

.footer-logo{

font-size:18px;

}

.footer-nav{

flex-direction:column;
gap:10px;

}

.footer-nav span{

display:none;

}

.footer-nav a{

font-size:14px;

}

.copyright{

font-size:12px;

}

}


/*********************************
 * 特商法および個人情報保護方針
 * ******************************/

.legal-page {
  background: #fdfaf5;
  padding: 30px 20px;
  color: #333;
}

.legal-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-page h1 {
  display : none;
}

.legal-section {
  margin-bottom: 70px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 2px solid #d8c7aa;
  color: #4a3a2a;
}

.legal-section h3 {
  font-size: 18px;
  margin: 34px 0 12px;
  color: #4a3a2a;
}

.legal-section p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 16px;
}

.legal-section ul {
  margin: 10px 0 24px 1.5em;
  padding: 0;
}

.legal-section li {
  font-size: 15px;
  line-height: 1.9;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  border: 1px solid #e4d8c7;
  padding: 18px 20px;
  line-height: 1.8;
  vertical-align: top;
}

.legal-table th {
  width: 28%;
  background: #f7f1e8;
  color: #4a3a2a;
  font-weight: 600;
  text-align: left;
}

.legal-date {
  text-align: right;
  margin-top: 40px;
  color: #666;
}

/* スマホ */
@media screen and (max-width: 767px) {

  .legal-page {
    padding: 50px 16px;
  }

  .legal-inner {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .legal-page h1 {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .legal-section {
    margin-bottom: 50px;
  }

  .legal-section h2 {
    font-size: 20px;
  }

  .legal-section h3 {
    font-size: 16px;
  }

  .legal-section p,
  .legal-section li,
  .legal-table {
    font-size: 14px;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    border-bottom: none;
    padding: 14px 16px;
  }

  .legal-table td {
    padding: 14px 16px 18px;
  }

  .legal-date {
    text-align: left;
  }
}

.pc{
    display:block;
}

.sp{
    display:none;
}

@media screen and (max-width:767px){

    .pc{
        display:none;
    }

    .sp{
        display:block;
    }

}

/* =========================
CONTACT
========================= */
.contact{
    padding:50px 0;
    background:#fff8f7;
}
.contact .inner{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
}
.contact-form{
    max-width:760px;
    margin:24px auto 0;
    padding:32px 34px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 6px 22px rgba(0,0,0,.05);
}

/* =========================
FORM
========================= */
.form-item{
    margin-bottom:26px;
    padding-bottom:24px;
    border-bottom:1px solid #e7eeee;
}
.form-item:last-of-type{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}
.form-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}
.title-text{
    display:inline-block;
    padding:5px 0 5px 12px;
    border-left:5px solid #63b7b0;
    font-size:16px;
    font-weight:700;
    color:#444;
    line-height:1.3;
}
.required,
.optional{
    display:inline-block;
    padding:3px 8px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    line-height:1;
    color:#fff;
}
.required{
    background:#d97b7b;
}
.optional{
    background:#999;
}
.contact-form input[type="text"],
.contact-form textarea{
    width:100%;
    margin:0;
    padding:13px 15px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    box-sizing:border-box;
    font-size:15px;
}
.contact-form input[type="text"]:focus,
.contact-form textarea:focus{
    border-color:#63b7b0;
    box-shadow:0 0 0 3px rgba(99,183,176,.15);
    outline:none;
}
.contact-form textarea{
    min-height:170px;
    resize:vertical;
}
.check-list{
    display:flex;
    flex-direction:column;
    gap:6px;
}
.radio-item{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
    font-size:15px;
    line-height:1.4;
    color:#555;
    cursor:pointer;
}
.radio-item input[type="checkbox"]{
    width:16px!important;
    height:16px!important;
    margin:0!important;
    padding:0!important;
    flex:none;
}
.radio-item span{
    display:block;
    line-height:1.4;
}
.form-note{
    margin:0 0 8px;
    font-size:13px;
    line-height:1.6;
    color:#888;
}
.form-submit{
    margin-top:30px;
    text-align:center;
}
.form-submit input[type="submit"]{
    width:320px;
    max-width:100%;
    height:54px;
    border:none;
    border-radius:999px;
    background:#63b7b0;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}
.form-submit input[type="submit"]:hover{
    background:#56a7a1;
}
.contact-form input[type="hidden"]{
    display:none!important;
}
.contact-form .check-list br{
    display:none;
}
.contact h2 br{
    display:none;
}

/* =========================
SP
========================= */
@media screen and (max-width:767px){
    .contact{
        padding:38px 0;
    }
    .contact .inner{
        padding:0 18px;
    }
    .contact-form{
        margin-top:18px;
        padding:24px 20px;
        border-radius:14px;
    }
    .form-item{
        margin-bottom:22px;
        padding-bottom:20px;
    }
    .form-title{
        gap:8px;
        margin-bottom:10px;
    }
    .title-text{
        padding:4px 0 4px 10px;
        border-left-width:4px;
        font-size:15px;
    }
    .contact-form input[type="text"],
    .contact-form textarea{
        padding:12px 14px;
        font-size:16px;
    }
    .contact-form textarea{
        min-height:150px;
    }
    .form-submit{
        margin-top:26px;
    }
    .form-submit input[type="submit"]{
        width:100%;
    }
}

/***************************
 * サンクスページ
 ***************************/
.thanks-page {
    padding: 120px 20px;
    background: #fff;
}

.thanks-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.thanks-inner h1 {
    margin: 0 0 32px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
}

.thanks-inner h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--main-color);
    border-radius: 10px;
}

.thanks-inner p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.thanks-inner p:last-child {
    margin-bottom: 0;
}

/* ボタン */
.thanks-button {
    margin-top: 50px;
    text-align: center;
}

.thanks-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 240px;
    height: 54px;
    padding: 0 36px;

    background: var(--main-color);
    color: #fff;

    border-radius: 50px;

    text-decoration: none;
    font-size: 16px;
    font-weight: 600;

    transition: .3s;
}

.thanks-btn:hover {
    background: #007d8c;
    color: #fff;
    transform: translateY(-2px);
}

.thanks-btn,
.thanks-btn:link,
.thanks-btn:visited,
.thanks-btn:hover,
.thanks-btn:active,
.thanks-btn:focus{
    color:#fff;
    text-decoration:none;
}

/***************************
 * スマホ
 ***************************/
@media screen and (max-width:767px){

    .thanks-page{
        padding:60px 20px;
    }

    .thanks-inner{
        max-width:100%;
    }

    .thanks-inner h1{
        font-size:24px;
        margin-bottom:24px;
    }

    .thanks-inner p{
        font-size:15px;
        line-height:1.9;
        text-align:left;
    }

    .thanks-button{
        text-align:center;
        margin-top:40px;
    }

    .thanks-btn{
        min-width:220px;
        height:48px;
        padding:0 28px;
        font-size:15px;
    }
    /* ボタンだけ中央 */
    .thanks-inner p.thanks-button{
        text-align:center !important;
        margin-top:40px;
    }

    .thanks-btn{
        min-width:220px;
        height:48px;
        padding:0 28px;
        font-size:15px;
    }
}

/*==================================
スマホ固定ボタン
==================================*/

.sp-fixed-contact{

    position:fixed;
    bottom:0;
    left:0;

    width:100%;
    height:60px;

    display:none;

    z-index:9999;

    box-shadow:0 -4px 12px rgba(0,0,0,.12);

}

.sp-fixed-contact a{

    flex:1;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    color:#fff;
    text-decoration:none;

}

.sp-line{

    background:#06C755;

}

.sp-mail{

    background:#009fb3;

}

.sp-fixed-contact i{

    font-size:24px;

}

.sp-fixed-contact strong{

    display:block;
    font-size:15px;
    font-weight:700;
    line-height:1.2;

}

.sp-fixed-contact small{

    display:block;
    font-size:10px;
    opacity:.9;

}

.sp-line:hover{

    background:#04b44d;

}

.sp-mail:hover{

    background:#00859a;

}

@media(max-width:767px){

.sp-fixed-contact{

    display:flex;

}

body{

    padding-bottom:60px;

}

}