/* 基本リセット */
body {
  margin: 0;
  font-family: "游明朝体", "Yu Mincho", "UDDigiKyokashoN-R", serif;
  background-color: #fff;
  color: #333;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

.container {
  max-width: 600px;
  margin: 0 auto;
}

p {
  color:#fefefa;
  font-size: 13px;
   text-align: center;
   margin: 0;  
}

.icon-wrapper {
  text-align: center;
  margin-top: 10px;
}

.icon-img {
  display: block;
  margin: 0 auto; 
   max-width: 150px; /* 画像の最大幅を100pxに設定 */
  height: auto;
}

.view {
  text-align: center;
}

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




/* セクション全体を上の画像と中央揃いに */
.cta-exact-section {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background-color: #2b1e1c;
  padding: 20px;
  box-sizing: border-box;
}

/* キラキラアニメーション定義 */
@keyframes glow {
  0%   { text-shadow: 0 0 2px #50321d, 0 0 10px #e5c48f; }
  50%  { text-shadow: 0 0 4px #50321d, 0 0 20px #e5c48f; }
  100% { text-shadow: 0 0 2px #50321d, 0 0 10px #e5c48f; }
}

/* 見出し */
.cta-caption {
  font-size: 22px; /* 少し大きめに */
  color: #e5c48f;
  font-weight: bold;
  font-family: "Yu Mincho", serif;
  text-align: center;
  margin-top: 5px; 
  margin-bottom: 18px;
  text-shadow: 0 0 2px #50321d, 0 0 10px #e5c48f;
  animation: glow 2.5s ease-in-out infinite;
}

/* ボタン配置 */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
    margin-bottom: 15px;
}

/* ボタン本体 */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fefefa;
  color: #2b1e1c;
  font-weight: bold;
  font-size: 17px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 4px 0 #a37f5c;
  min-width: 180px;
  justify-content: center;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.btn-icon {
  width: 24px;
  height: 24px;
}

/* スマホでだけ自動縮小したい場合 */
@media screen and (max-width: 600px) {

  .cta-exact-section {
    transform: scale(calc(100vw / 600));
    transform-origin: top center;
  }

  .cta-caption {
    font-size: 5vw;
    text-shadow: 0 0 0.5vw #50321d, 0 0 2vw #e5c48f;
    margin-bottom:20px;
  }

  p{
    font-size: 2vw;
     margin: 0;
   
  }

  .cta-btn {
    font-size: 4vw;
    padding: 6px 0px;
    min-width: 42vw;
    border-radius: 2vw;
    gap: 2vw;
  }

  .cta-buttons {
    gap: 3vw;
     margin-bottom: 11px;
  }

  .btn-icon {
    width: 5vw;
    height: 5vw;
  }
}


   .form-container {
      max-width: 600px;
     margin: 10px auto 50px;
      background-color: rgba(230, 198, 179, 0.9);
      padding: 40px 30px;
     
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    h2 {
      font-weight:bold;
      font-size: 28px;
      color: #2b1e1c;
      text-align: center;
      margin-bottom: 30px;
    }

    label {
      display: block;
      margin-top: 20px;
      color: #2b1e1c;
      font-weight: bold;
    }

    input[type="text"],
    input[type="email"],
    select,
    textarea {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
      box-sizing: border-box;
    }

    textarea {
      height: 150px;
      resize: vertical;
    }

    .notice {
      margin-top: 25px;
      font-size: 16px;
      font-weight: bold;
      color: #cb4444;
    }

    .privacy {
      margin-top: 20px;
    }

    .privacy input {
      margin-right: 10px;
    }

    .submit-button {
      background-color: #2b1e1c;
      color: #fff;
      border: none;
      padding: 15px 20px;
      font-size: 16px;
      border-radius: 5px;
      margin-top: 20px;
      cursor: pointer;
      width: 100%;
    }

    .submit-button:hover {
      opacity: 0.9;
    }

    .success-message {
      text-align: center;
      color: #2b1e1c;
      font-size: 20px;
      display: none;
      padding: 30px;
    }

/* 固定LINEボタン */
.line-fixed-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #06C755; /* LINEグリーン */
  color: #fff;
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.line-fixed-btn:hover {
 
  background-color: #05b34f;
}

.line-fixed-btn img {
  width: 32px;
  height: 32px;
  display: block;
}

.line-fixed-btn span {
  display: inline-block;
  white-space: nowrap;
}