/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/


/* コンセプト */
    body {
      margin: 0;
      font-family: "Helvetica Neue", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
      background-color: #fdf8f3;
      color: #3b3b3b;
      line-height: 1.8;
    }

    .concept-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .concept-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .concept-title {
      color: #5a3e2b;
      font-size: 32px;
      font-weight: bold;
    }

    .concept-paragraph {
      font-size: 18px;
    }

    .concept-image {
      width: 100%;
      max-width: 600px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    @media (min-width: 768px) {
      .concept-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
      }

      .concept-text {
        flex: 1;
      }

      .concept-image-block {
        flex: 1;
        text-align: right;
      }
    }


/*　強み　*/
  .features-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
  }

  .features-title {
    font-size: 28px;
    color: #5a3e2b;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .feature-item {
    background-color: #f8f4ef;
    border-radius: 12px;
    padding: 20px 15px;
    width: 160px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .feature-item:hover {
    transform: scale(1.05);
  }

  .feature-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .feature-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }

  .small-text {
    font-size: 13px;
    color: #666;
  }

  @media (max-width: 600px) {
    .feature-item {
      width: 100%;
      max-width: 300px;
    }
  }

/* 設備 */
  .room-section {
    background-color: #faf7f2;
    padding: 60px 20px;
    text-align: center;
  }

  .room-title {
    font-size: 28px;
    color: #5a3e2b;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
  }

  .gallery img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 160px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .facility-list h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
  }

  .facility-list ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #444;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .facility-list li {
    background-color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  @media (max-width: 600px) {
    .gallery {
      grid-template-columns: 1fr 1fr;
    }

    .facility-list li {
      width: 100%;
      max-width: 300px;
    }
  }

/* プラン */
  .plan-section {
    background-color: #fffaf5;
    padding: 60px 20px;
    text-align: center;
  }

  .plan-title {
    font-size: 28px;
    color: #5a3e2b;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .plan-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 16px;
    color: #444;
  }

  .plan-box p {
    margin-bottom: 16px;
  }

  .plan-box .price {
    font-size: 22px;
    color: #d2691e;
    margin-bottom: 20px;
  }

  .plan-box strong {
    color: #333;
  }

  .reservation h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #333;
  }

  .reservation ul {
    list-style: none;
    padding: 0;
  }

  .reservation li {
    margin: 8px 0;
  }

  a {
    color: #1e88e5;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

/* お客様の声 */
  .voice-section {
    background-color: #fef9f5;
    padding: 60px 20px;
    text-align: center;
  }

  .voice-title {
    font-size: 28px;
    color: #5a3e2b;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .voice-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .voice-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
  }

  .voice-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  .voice-name {
    font-size: 14px;
    color: #888;
    text-align: right;
    font-style: italic;
  }

/* アクセス・周辺案内 */
  .access-section {
    background-color: #f7f5f2;
    padding: 60px 20px;
    text-align: center;
  }

  .access-title {
    font-size: 28px;
    color: #5a3e2b;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
  }

  .access-info {
    text-align: left;
  }

  .access-info p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .access-list {
    list-style: none;
    padding: 0;
    font-size: 15px;
    line-height: 2;
    color: #444;
  }

  .map-box iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }

/* よくあるご質問 */
  .faq-section {
    background-color: #fffdf9;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-title {
    font-size: 28px;
    color: #5a3e2b;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background-color: #f2ede7;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: bold;
    transition: background 0.3s;
  }

  .faq-question:hover {
    background-color: #e4ded7;
  }

  .faq-answer {
    display: none;
    padding: 15px;
    background-color: #fff;
    font-size: 15px;
    color: #444;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

/*　TOPページ（オーナー挨拶）　*/
  .owner-section {
    background-color: #fefaf6;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .owner-title {
    font-size: 28px;
    color: #5a3e2b;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .owner-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
  }

  .owner-photo img {
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .owner-message {
    flex: 1;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
  }

  .owner-name {
    margin-top: 20px;
    font-weight: bold;
    color: #333;
  }

  @media screen and (max-width: 768px) {
    .owner-container {
      flex-direction: column;
      align-items: center;
    }

    .owner-photo img {
      width: 100%;
      max-width: 100%;
    }

    .owner-message {
      text-align: center;
    }
  }

/* ご予約・お問い合わせ */
  .cta-section {
    background: linear-gradient(to bottom, #fffaf2, #f8e9d2);
    padding: 60px 20px;
    text-align: center;
  }

  .cta-title {
    font-size: 28px;
    color: #5a3e2b;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .cta-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
  }

  .cta-btn {
    background-color: #8c6449;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.25s, transform 0.08s;
    display: inline-block;
  }

  .cta-btn:hover {
    background-color: #a27556;
    text-decoration: none;
    color: #FFF;
  }
  .cta-btn:active {
    transform: translateY(1px);
  }

  /* バナーエリア */
  .cta-banners {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 320px));
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
  }

  .banner-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.08s, filter 0.25s;
  }

  .banner-link:hover {
    filter: brightness(1.05);
    text-decoration: none;
    color: #FFF;
  }
  .banner-link:active {
    transform: translateY(1px);
  }

  .banner-icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
  }
  .banner-text {
    font-size: 15px;
    letter-spacing: 0.2px;
  }

  /* Instagram風グラデーション */
  .banner-instagram {
    background: radial-gradient(circle at 30% 30%, #ffd163, transparent 40%),
                linear-gradient(135deg, #f58529, #feda77, #dd2a7b, #8134af, #515bd4);
  }

  /* Googleマップ風カラー */
  .banner-maps {
    background: linear-gradient(135deg, #34a853, #0f9d58);
  }

  @media screen and (max-width: 600px) {
    .cta-btn {
      width: 100%;
      max-width: 520px;
    }
    .cta-banners {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }
