/*
 * ----------------------------------------------------
 * 1. Base & Utility Styles
 * ----------------------------------------------------
 */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  word-wrap: break-word;
  font-size: 17px;
  background-color: #f4f4f4;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  font-family:
    Hiragino Sans,
    Arial,
    sans-serif !important;
  color: #000000 !important;
}

@media screen and (min-width: 920px) {
  body {
    width: 620px;
    margin: 0 auto;
  }
}

img {
  max-width: 100%;
}

/* Article Body Wrapper */
.article-body {
  position: relative;
  font-size: 17px !important;
  line-height: 1.8 !important;
  background-color: #ffffff;
  padding: 15px 20px !important;
}

/* Text and Links */
.article-body p {
  margin: 0;
  text-align: center;
}
.article-body a {
  text-decoration: underline;
  color: #4682b4;
}

/* Font Size Utilities (sb-fs-xx classes are preserved for consistency with content) */
.sb-fs-10 {
  font-size: 10px !important;
}
.sb-fs-13 {
  font-size: 13px !important;
}
.sb-fs-17 {
  font-size: 17px !important;
}
.sb-fs-19 {
  font-size: 19px !important;
}
.sb-fs-21 {
  font-size: 21px !important;
}
.sb-fs-23 {
  font-size: 23px !important;
}
.sb-fs-25 {
  font-size: 25px !important;
}

/* Font Color/Weight/Background Utilities (sb-color-xx, sb-font-bold, sb-bg-xx are preserved) */
.sb-font-bold {
  font-weight: bold;
}
.sb-color-black {
  color: #000;
}
.sb-color-red {
  color: #ff0000;
}
.sb-color-pink {
  color: rgb(240, 102, 102);
}
.sb-color-l-blue {
  color: rgb(60, 169, 245);
}
.sb-color-blue {
  color: #1900ff;
}
.sb-color-m-blue {
  color: rgb(0, 102, 204);
}
.sb-color-orange {
  color: rgb(255, 153, 0);
}
.sb-color-purple {
  color: rgb(107, 36, 178);
}
.sb-align-center {
  display: block;
  text-align: center;
}
.sb-align-right {
  display: block;
  text-align: right;
}

/* Highlight Marker (sb-bg-gum-marker is the base) */
.sb-bg-yellow-marker {
  background: #ffff00;
}
.sb-bg-l-yellow-marker {
  background: rgb(255, 255, 204);
}
.sb-bg-beige-marker {
  background: rgb(245, 229, 203);
}
.sb-bg-l-blue-marker {
  background: rgb(204, 224, 245);
}
.sb-bg-pink-marker {
  background: rgb(250, 225, 240);
}
.sb-bg-gray-marker {
  background: rgb(229, 229, 229);
}
.sb-line-yellow-marker {
  background: linear-gradient(to bottom, #fff 50%, #ffff00 50%);
}

/* Image/Media Overrides */
.article-body img,
.article-body video {
  display: unset !important;
  height: auto !important;
  max-width: 100%;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

/* Citation/Note Text Style */
.note-citation-small {
  font-size: 0.6em;
  line-height: 1.5;
  margin-bottom: 1em;
  margin-top: 1em;
}
.note-citation-small.align-right {
  text-align: right;
}
.note-citation-small.align-left {
  text-align: left;
}

/*
 * ----------------------------------------------------
 * 2. Unified Heading Styles
 * ----------------------------------------------------
 */

/* 見出し */
h2.heading-pink {
  font-size: 19px;
  border-bottom: 1px solid #999;
  border-left: 6px solid #ff6f82;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0 0 10px 15px;
  margin: 30px 0 30px;
}

/*
 * ----------------------------------------------------
 * 3. Call-to-Action Buttons
 * ----------------------------------------------------
 */

.cta-btn {
  animation: puyoBtn 1.6s ease-in infinite;
  width: 500px;
  max-width: 95%;
  height: auto;
  margin: 5px auto;
}
@keyframes puyoBtn {
  0% {
    transform: scale(1.09);
  }
  10% {
    transform: scale(1.09);
  }
  30% {
    transform: scale(1.01);
  }
  40% {
    transform: scale(1.01);
  }
  50% {
    transform: scale(1, 1.04);
  }
  60% {
    transform: scale(1.09);
  }
  70% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.09);
  }
}

/*
 * ----------------------------------------------------
 * 4. Footer
 * ----------------------------------------------------
 */

footer .footer-links {
  text-align: center;
  padding: 20px;
  background-color: #fff;
}

footer .footer-links a {
  display: block;
  margin-bottom: 16px;
  color: #3366cc;
  text-decoration: underline;
  font-size: 13px;
  letter-spacing: 0.05em;
}

footer .footer-links a:last-child {
  margin-bottom: 0;
}

/*
 * ----------------------------------------------------
 * 5. Margin Bottom Utility Classes (10px to 100px)
 * ----------------------------------------------------
 */

/* Margin Bottom (mB-10 to mB-100) */
.mB-10 {
  margin-bottom: 10px !important;
}
.mB-20 {
  margin-bottom: 20px !important;
}
.mB-30 {
  margin-bottom: 30px !important;
}
.mB-40 {
  margin-bottom: 40px !important;
}
.mB-50 {
  margin-bottom: 50px !important;
}
.mB-60 {
  margin-bottom: 60px !important;
}
.mB-70 {
  margin-bottom: 70px !important;
}
.mB-80 {
  margin-bottom: 80px !important;
}
.mB-90 {
  margin-bottom: 90px !important;
}
.mB-100 {
  margin-bottom: 100px !important;
}

/*
 * ----------------------------------------------------
 * 6. Arrow Animation
 * ----------------------------------------------------
 */

.downArrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.downArrow > span {
  /* 矢印の大きさの設定 */
  width: 100px;
  height: 65px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.downArrow > span::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 50%;
  height: 40%;
  /* 矢印の色の設定 */
  background: #3ca9f5;
}

.downArrow > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  /* 矢印の色の設定 */
  background:
    -webkit-gradient(
        linear,
        left bottom,
        right top,
        color-stop(49%, transparent),
        color-stop(50%, #d096bb)
      )
      top left/50% 100% no-repeat,
    -webkit-gradient(
        linear,
        right bottom,
        left top,
        color-stop(49%, transparent),
        color-stop(50%, #d096bb)
      )
      top right/50% 100% no-repeat;
  background:
    linear-gradient(to top right, transparent 49%, #3ca9f5 50%) top left/50%
      100% no-repeat,
    linear-gradient(to top left, transparent 49%, #3ca9f5 50%) top right/50%
      100% no-repeat;
}
.movebtn {
  -webkit-animation-name: btnAnime02;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: btnAnime02;
  -moz-animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  align-items: flex-start;
  justify-content: center;
}

@-webkit-keyframes btnAnime02 {
  /*初期位置*/
  0% {
    /*1番目の値はX方向, 2番目の値はY方向*/
    -webkit-transform: translate(0, 0);
  }

  /*animation-durationで設定した値の半分の時間（50%）の時の位置*/
  50% {
    -webkit-transform: translate(0, -8px);
  }

  /*animation-durationで設定した値になった（100%）時の位置*/
  100% {
    -webkit-transform: translate(0, 0);
  }
}

/*
 * ----------------------------------------------------
 * 7. Enquete
 * ----------------------------------------------------
 */

.enquete .question-reveal-scroll .questionArea {
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #cccccc;
}

.enquete .navi {
  text-align: center;
  margin-bottom: 20px;
  order: 1;
}

.enquete .navi__numbers {
  position: relative;
  display: inline-flex;
  margin: 10px 0;
  font-weight: bold;
}

.enquete .navi__numbers::before {
  content: "";
  width: calc(100% - 40px);
  height: 20px;
  background-color: #eeeeee;
  position: absolute;
  top: calc(50% - 10px);
  left: 20px;
}

.enquete .navi__numbers .current {
  color: #fff;
  background-color: #ff6f82;
}

.enquete .navi__numbers span {
  color: #ffffff;
  background-color: #bbbbbb;
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  margin: 0 10px;
  width: 70px;
  aspect-ratio: 1/1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.enquete .navi__numbers .current ~ span {
  color: #fff;
  background-color: #ffe5f2;
}

.enquete .question-reveal-scroll .title {
  width: 100%;
  color: #000000;
  background-color: #ffffff;
  font-size: 20px;
  text-align: left;
  margin: 0 auto 1em;
  padding: 0;
  order: 2;
}

.enquete .question-reveal-scroll .imagebox {
  text-align: center;
  margin: 0 0 20px;
  order: 3;
}

.enquete .question-reveal-scroll .imagebox img,
.enquete .question-reveal-scroll .imagebox video {
  display: inline !important;
}

.enquete .question-reveal-scroll .linkbox {
  box-sizing: border-box;
  order: 4;
}

.enquete .question-reveal-scroll input {
  display: none;
}

.enquete .question-reveal-scroll input + label {
  border: none;
  padding: 6px 0;
  display: block;
}

.enquete .question-reveal-scroll input + label .btn {
  color: #000000;
  background-color: #eeeeee;
  width: 100%;
  border-radius: 100vh;
  padding: 0.5em 1em;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
}

.enquete .question-reveal-scroll input + label .btn:focus {
  outline: none !important;
}

.enquete .question-reveal-scroll input:checked + label .btn {
  background-color: #ff6f82;
  color: #ffffff;
}

.enquete .question-reveal-scroll ::-moz-focus-inner {
  border-color: transparent;
}

.enquete .question-reveal-scroll .send-btn {
  margin: 1rem auto;
}

.enquete .question-reveal-scroll .send-btn button {
  text-align: center;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  padding: 16px 48px;
  background-color: #ff6f82;
  border-radius: 10px;
  position: relative;
  pointer-events: auto;
  display: block;
  transition: transform 0.2s;
}

.enquete .send-btn button:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.enquete .revealarea {
  font-size: 1.2rem;
  text-align: left;
  margin: 3rem auto 0;
  padding: 0;
  box-sizing: border-box;
}

.enquete .is-hidden {
  display: none;
}

/*
 * ----------------------------------------------------
 * 8. Notes
 * ----------------------------------------------------
 */

.caution-area {
  font-size: 10px;
  margin-top: 30px;
}
.caution-area p {
  color: rgb(187, 187, 187);
  background-color: rgb(255, 255, 255);
  text-align: left;
  line-height: 30px;
}
.caution-area p a {
  color: rgb(187, 187, 187);
}
