/* ------------------------------ Hero（旅行・観光地用） ------------------------------ */
.hero-wrapper {
    width:100%;
    margin:0 auto;
    overflow:hidden;
}

.hero {
    position:relative;
    height:350px;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.hero-logo {
    position: static;   /* ← これが最重要 */
    display: block;
    margin: 20px 0 20px 20px;  /* 中央寄せしたい場合 */
    height: 55px;
}

/* ヒーロー内テキスト */
.hero-text {
    position: absolute;
    bottom: 12%;
    left: 5%;
    z-index: 2;
    color: #3A2F2F; /* 深いブラウン（旅の落ち着き） */
}

/* タイトル（ティールブルー） */
.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #2A7F8F; /* ティールブルー（海・空のイメージ） */
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* サブタイトル */
.hero-text p {
    font-size: 20px;
    color: #4A3F3F; /* 柔らかいブラウン */
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .hero {
        height:220px;
    }
    .hero-logo {
        height: 45px;
        width: auto;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-text p {
        font-size: 16px;
    }

  /* 標準セクションを縦並びにする */
  .standard-section {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  /* 画像をスマホ幅に合わせる */
  .std-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* テキストブロックも幅100%に */
  .std-text-block {
    width: 100%;
    min-width: 0;
  }
}


/* ------------------------------ Standard Section（旅行・観光地用） ------------------------------ */
.standard-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #F4EFE6; /* 砂浜ベージュ */
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    color: #3A2F2F;
}

.std-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 8px;
    border: 4px solid #D8D2C4; /* ベージュ系枠 */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.25s;
}

.std-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.std-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 0;
    color: #3A2F2F;
    position: relative;
    padding-left: 16px;
}

/* 左のティールブルーライン */
.std-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 26px;
    background: #2A7F8F; /* ティールブルー */
    border-radius: 3px;
}

.std-content {
    margin-top: 15px;
    line-height: 1.8;
    color: #4A3F3F;
    font-size: 17px;
}

.std-text-block {
    flex: 1;
    min-width: 280px;
}

/* ------------------------------ Gallery Section（旅行・観光地用） ------------------------------ */
.gallery-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: #F4EFE6;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.gallery-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    color: #3A2F2F;
}

.gallery-caption {
    flex: 1;
    line-height: 1.7;
}

.gallery-img {
    width: 100%;
    max-width: 380px;
    border-radius: 8px;
    border: 4px solid #D8D2C4;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: 0.25s;
}

.gallery-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.gallery-text {
    flex: 1;
    min-width: 260px;
}

.gallery-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #3A2F2F;
    position: relative;
    padding-left: 14px;
}

.gallery-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 22px;
    background: #2A7F8F;
    border-radius: 3px;
}

.gallery-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4A3F3F;
}

/* ------------------------------ Legal Tabs（旅行・観光地用） ------------------------------ */
.legal-tabs {
    margin: 50px auto;
    max-width: 900px;
    padding: 25px;
    background: #F4EFE6;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #3A2F2F;
}

.legal-tab-buttons button {
    padding: 10px 22px;
    border: none;
    background: #2A7F8F;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.legal-tab-buttons button:hover {
    background: #3A2F2F;
    color: #F4EFE6;
}

.legal-tab-buttons button.active {
    background: #3A2F2F;
    color: #F4EFE6;
    border: 2px solid #2A7F8F;
}

.legal-tab-content {
    display: none;
    padding: 25px;
    background: #EDE7DD;
    border-radius: 6px;
    line-height: 1.8;
    color: #3A2F2F;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.1);
}

/* ------------------------------ Table（旅行・観光地用） ------------------------------ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px auto;
    background: #F4EFE6;
    color: #3A2F2F;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

table th {
    background: #2A7F8F;
    color: #fff;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 3px solid #3A2F2F;
}

table td {
    padding: 14px;
    border-bottom: 1px solid #D8D2C4;
    font-size: 16px;
    color: #3A2F2F;
}

table tr:nth-child(even) {
    background: #EDE7DD;
}

table tr:hover {
    background: #E0D8CC;
    transition: 0.2s;
}

/* ------------------------------ CTA（旅行・観光地用） ------------------------------ */
.section.cta {
    text-align: center;
    padding: 60px 20px;
    background: #F4EFE6;
    color: #3A2F2F;
}

.section.cta h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2A7F8F;
}

.section.cta p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #4A3F3F;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2A7F8F;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #3A2F2F;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

/* ------------------------------ Section Title（H2） ------------------------------ */
.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #2A7F8F;
    margin: 40px auto 20px;
    position: relative;
    padding-left: 18px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 28px;
    background: #2A7F8F;
    border-radius: 3px;
}

/* ------------------------------ Sub Title（H3） ------------------------------ */
.sub-title {
    font-size: 24px;
    font-weight: bold;
    color: #3A2F2F;
    margin: 25px 0 10px;
    border-left: 4px solid #2A7F8F;
    padding-left: 12px;
}

/* ------------------------------ Product Buy Button（購入ボタン） ------------------------------ */
.product-buy-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #2A7F8F;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    margin: 20px auto;
    cursor: pointer;
    transition: 0.25s;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-buy-btn:hover {
    background: #3A2F2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ------------------------------ FAQ Section ------------------------------ */

.faq-item {
    margin-bottom: 24px;        /* FAQ項目同士の余白 */
    padding-bottom: 16px;       /* 下に余白 */
    border-bottom: 1px solid #e5e5e5; /* 薄い区切り線で視線誘導 */
}

.faq-question {
    font-weight: bold;
    margin-bottom: 8px;         /* Q と A の間に余白 */
    font-size: 1.05rem;
}

.faq-answer {
    margin-left: 12px;          /* A を少し右にずらすと読みやすい */
    line-height: 1.7;           /* 行間を広げて読みやすく */
    font-size: 1rem;
}

body.rtl {
    direction: rtl;
    text-align: right;
}
