/* CSS Document */

/*ページ共通部分*/
html {
  font: 18px / 1.5 "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 0.05em;
  background-color: #fad4cd;
  color: #3e3a39;
  font-weight: normal;
}
body {
}
header {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#header__inner {
  padding: 20px 0 30px;
  background-color: white;
}
#identity-area {
  text-align: center;
}
#identity-area img {
  width: 250px;
  height: auto;
}

.main-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 30px 30px;
  background-color: white;
}　
.main-content__inner {
}
.main-title {
    position:relative;
    font-size :24px;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: #f5f5f5;
    padding: 10px 20px;
    text-align: center;
}
.nowrap {
  white-space: normal;        /* 折り返し可能にする */
  word-break: keep-all;       /* 日本語は勝手に折らない */
  overflow-wrap: break-word;  /* 横幅いっぱいなら折る */
}
.main-title::before {
   content: '';
   position: absolute;
   top: -5px;
   left: -5px;
   width: 100%;
   height: 100%;
   border: 1px solid #3e3a39 !important;
   /*Lightning見出しデザイン設定のCSS対策*/
   margin: unset;
}
.main-img {
  width: 100%;
  height: auto;
}
/*質問コーナー*/
    .question {
/*      width: 800px;*/
      margin: 30px auto 0;
      padding: 30px 10px;
/*      border: 1px double #000;*/
    }
    .question--q {
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      padding: 0 0 0.5rem;
      border-bottom: 5px dotted #3e3a39;
    }
    .question--a {
      margin: 50px 0 0;
    }
    .question--a form {
      display: flex;
      flex-direction: column;
      gap: 30px 0;
    }
    .question--a button {
      width: 100%;
      height: 50px;
      background: #e43d60;
      background: linear-gradient(180deg, #e43d60 0%, #FF5153 50%, #FF7C7E 100%);
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 0.05em;
      text-align: center;
      border-radius: 9999px;
      margin: 0 auto;
/*      box-shadow: 3px 3px #000;*/
      transition: all 300ms;
    }
    .question--a button:hover {
      opacity: 0.7;
      -webkit-transform:translate(3px, 3px);
      transform: translate(3px, 3px);
      box-shadow: 0 0 #3e3a39;
    }
/*結果ページ*/
    .result-mainarea {
      margin: 0 auto 30px;
      padding: 0 30px;
    }
    .point--title,.information--title {
      font-size: 26px;
      text-align: center;
      font-weight: bold;
      color: #3e3a39;
      width: 100%;
      border-top: 5px double #FF7C7E;
      border-bottom: 5px double #FF7C7E;
      margin: 30px 0 ;
      padding: 10px 20px;
    }

#point--result {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  margin: 10px auto 50px;
}
.point--result--title{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    background-color: #FF7C7E;
    color: white;
    padding: 5px;
    margin: 20px auto 10px;
}
    .point--result--image {
      text-align: center;
      order: -1;
    }
    .point--result--image img {
      width: 380px;
      height: auto;
    }
.point--result--text em{
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  color: red;
}

    .point--current_state,
    .point--next_move {
      margin: 30px 0 30px;
/*      background: #ff6;
      border: 1px solid #000;*/
    }
    .point--next_move {
      margin-bottom: 50px;
    }
    .point--current_state--title,
    .point--next_move--title {
/*      background: #00f;*/
      font-size: 22px;
      text-align: center;
      font-weight: bold;
      margin: 0 0 10px;
/*      color: #fff;
      padding: 20px;*/
    }
    .point--current_state--text,
    .point--next_move--text {
      font-size: 18px;
      text-align: justify;
/*      padding: 20px;*/
    }
    .point--link {
      margin: 50px auto 0;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 20em;
      height: 50px;
      font-size: 20px;
      font-weight: bold;
      text-align: center;
      border-radius: 999px;
      background: #060;
      border: 1px solid #000;
      color: #fff;
      transition: all 300ms;
    }
    .point--link:hover {
      opacity: 0.7;
    }
    .point--back {
      margin: 50px auto;
      text-align: center;
    }
    .point--back_btn {
      font-size: 16px;
      padding: 0 0 5px;
      border-bottom: 5px dotted #3e3a39;
    }
    .point--back_btn::before {
      content: "";
      display: inline-block;
      vertical-align: bottom;
      width: 25px;         /* アイコンの幅 */
      height: 25px;        /* アイコンの高さ */
      margin-right: 5px;   /* テキストとの間隔 */
      background: url(../image/icon_back.png) no-repeat center center;
      background-size: contain; /* アイコンを枠内に収める */
    }
    .question, .point { display:none; }
    .question.is-active { display:block; }
    .point.is-active { display:block; }

.information {
  padding: 0 30px 30px;
/*  border:5px solid #3e3a39;
  border-radius: 10px;*/
}
.information-text {
  margin: 30px auto;
}
.information-img {
  display: block;       /* インライン要素のリンクをブロック化 */
  width: 100%;          /* 親要素の横幅いっぱい */
  text-align: center;   /* 中央揃え（必要なら） */
  border: 1px solid #3e3a39;
}
.information-img img {
  width: 100%;          /* 画像をリンクの幅にフィットさせる */
  height: auto;         /* 縦横比を維持 */
  display: block;       /* 不要な下マージンを消す */
}
.information-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 30px auto 0;
  padding: 5px;
  background: #e43d60;
  background: linear-gradient(180deg, #e43d60 0%, #FF5153 50%, #FF7C7E 100%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 9999px;
/*      box-shadow: 3px 3px #000;*/
  transition: all 300ms;
}
.information-btn::before {
    display: inline-block;
    content: "";
    margin-right: 10px;
    line-height: 1;
    width: 1.25em;
    height: 1.25em;
    vertical-align: middle;
    background-image: url(../image/icon-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.information-btn:hover {
  opacity: 0.7;
  -webkit-transform:translate(3px, 3px);
  transform: translate(3px, 3px);
  box-shadow: 0 0 #3e3a39;
}

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

}

#header__inner {
  padding: 5.333vw 0 8vw;
}
#identity-area {
}
#identity-area img {
  width: 66.667vw;
}
.main-content {
  padding: 0 8vw 8vw;
}　
.main-content__inner {
}
.main-title {
    font-size :6.4vw;
    margin-bottom: 4vw;
    padding: 2.667vw 5.334vw;

}

.main-title::before {
   content: '';
   position: absolute;
   top: -1.334vw;
   left: -1.334vw;
}
  
/*質問コーナー*/
    .question {
      margin: 8vw auto 0;
      padding: 8vw 0;
    }
    .question--q {
      font-size: 6.4vw;
      padding: 0 0 0.5rem;
      border-bottom: 1.333vw dotted #3e3a39;
    }
    .question--a {
      margin: 13.333vw 0 0;
    }
    .question--a form {
      gap: 8vw 0;
    }
    .question--a button {
      width: 100%;
      height: auto;
      font-size: 4.8vw;
      letter-spacing: 0.05em;
      padding: 2.667vw;
    }
    .question--a button:hover {
    }
/*結果ページ*/
    .result-mainarea {
      margin: 0 auto 8vw;
      padding: 0;
    }
    .point--title,.information--title {
      font-size: 6.934vw;
      border-top: 1.333vw double #FF7C7E;
      border-bottom: 1.333vw double #FF7C7E;
      margin: 8vw 0 ;
      padding: 2.667vw 5.334vw;
    }

#point--result {
  margin: 2.667vw auto 13.333vw;
}
.point--result--title{
    font-size: 6.4vw;
    padding: 1.333vw;
    margin: 5.334vw auto 2.667vw;
}
    .point--result--image {
    }
    .point--result--image img {
      width: 100%;
      height: auto;
    }
.point--result--text em{
  font-size: 4.8vw;
}

    .point--current_state,
    .point--next_move {
      margin: 8vw 0 8vw;
    }
    .point--next_move {
      margin-bottom: 13.333vw;
    }
    .point--current_state--title,
    .point--next_move--title {
      font-size:5.864vw;
      margin: 0 0 2.667vw;
    }
    .point--current_state--text,
    .point--next_move--text {
      font-size: 4.8vw;
    }
    .point--link {
      margin: 13.333vw auto 0;
      width: 20em;
      height: 13.333vw;
      font-size: 5.334vw;
    }
    .point--link:hover {
      opacity: 0.7;
    }
    .point form {
      margin: 13.333vw auto;
    }
    .point--back_btn {
      font-size: 4.267vw;
      padding: 0 0 1.333vw;
      border-bottom: 1.333vw dotted #3e3a39;
    }
    .point--back_btn::before {
      width: 6.667vw;         /* アイコンの幅 */
      height: 6.667vw;        /* アイコンの高さ */
      margin-right: 1.333vw;   /* テキストとの間隔 */
      background: url(../image/icon_back.png) no-repeat center center;
      background-size: contain; /* アイコンを枠内に収める */
    }

.information {
  padding: 0 0 8vw;
}
.information-text {
  margin: 8vw auto;
}
.information-img {
}
.information-img img {
}
.information-btn {
  margin: 8vw auto 0;
  padding: 2.667vw;
  font-size: 5.334vw;
  letter-spacing: 0.05em;
}
.information-btn::before {
    margin-right: 2.667vw;
}
.information-btn:hover {
}
}