@charset "UTF-8";

/* 共通 */
body {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-weight: bold;
  overflow-x: hidden;
}



img {
  max-width: 100%;
  /* max-height: 100%; */
  object-fit: contain;
}

.container {
  max-width: 430px;
  margin: auto;
  padding: 15px;
}

:root {
  --main-color: #FBF0F9;
  --line-color: #00C300;
  --sub-color: #F0FBF0;
  --blue-color: #4169E1;
  --red-color: #E60033;
  --pink-color: #FF4081;
}

.fade_in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}

.fade_in.show {
  opacity: 1;
  transform: translateY(0);
}

/* LINE */
#line {
  background: #2D2D2D;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 900;
}

.line_btn {
  display: block;
  width: 85%;
  background: #04A704;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  border-radius: 30px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  margin: 0px auto 0;
  position: relative;
  box-shadow: 0px 5px 0px 0px #018F01, 0px 5px 5px 0px var(--line-color) inset, 0px -5px 5px 0px var(--line-color) inset;
  animation: poyopoyo 2s ease-out infinite;
}

@keyframes poyopoyo {

  0%,
  40%,
  60%,
  80% {
    transform: scale(1.0);
  }

  50%,
  70% {
    transform: scale(0.95);
  }

}

.line_btn span {
  font-size: 16px;
}

.button_icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, .5);
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
}

.button_icon::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(-25%, -50%);
  left: 50%;
  border: 4px solid transparent;
  border-left: 6px solid var(--line-color);
}

.line_color {
  color: var(--line-color);
}

/* FV */
#fv {
  position: relative;
  height: 560px;
}

.fv_img {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv_img::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 1));
}

.fv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#fv h1 {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 92%;
  z-index: 2;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
  color: var(--pink-color);
  opacity: 0;
  transform: translateX(calc(-50% + 50px));
  animation: slideIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

#fv h1 span {
  font-size: 20px;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(calc(-50%));
  }
}

#fv h2 {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 92%;
  font-size: 15px;
  text-align: center;
  z-index: 2;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  color: var(--red-color);
}

/* sec01 */
section:not(#fv) {
  padding: 20px 0;
  font-size: 16px;
}

section:not(#fv) h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}

section:not(#fv) h2 {
  font-size: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: auto;
  width: max-content;
}

section:not(#fv) h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFE0B2;
  z-index: -1;
}

.section_width {
  /* width: 430px; */
  width: calc(100% + 30px);
  transform: translateX(-15px);
  max-width: 430px;
  box-sizing: border-box;
}

.sec01_img {
  height: 430px;
  object-fit: cover;
  object-position: center 10%;
  margin: 20px 0;
}

/* sec02 */

h4 {
  font-size: 19px;
  text-align: center;
  margin-bottom: 20px;
}

.graph_flex {
  position: relative;
  margin: 40px 0;
  height: 320px;
}

.graph_flex p {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 8px;
}

.graph_img {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: unset;
  width: 65%;
  z-index: 2;
}

.sec02_img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: unset;
  width: 45%;
}

.comment_wrap {
  background: var(--main-color);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 30px 15px;
  margin-bottom: 20px;
}

.comment_flex {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.comment_flex img {
  max-width: unset;
  width: 52px;
}

/* sec03 */
.review_wrap {
  background: var(--sub-color);
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  margin-bottom: 20px;
}

.review_flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

.review_flex .number {
  border-radius: 20px;
  background: var(--line-color);
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review_flex:not(:first-child) {
  padding-top: 20px;
}

.review_flex:not(:last-child) {
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}

.review_text {
  margin-bottom: 16px;
}

.blue_color {
  color: var(--blue-color);
}

/* sec04 */
#sec04 p {
  margin-bottom: 16px;
}

.mb_0 {
  margin-bottom: 0;
}

.red_color {
  color: var(--red-color);
}

.fukidashi {
  background: #FFF9C4;
  border-radius: 12px;
  padding: 12px;
  position: relative;
  color: #4d4d4d;
  margin-left: 10px;
}

.fukidashi:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  border: 10px solid transparent;
  border-right: 25px solid #FFF9C4;
}