@charset "UTF-8";
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-element.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-element[data-delay="0"] {
  transition-delay: 0s;
}

.fade-in-element[data-delay="1"] {
  transition-delay: 0.1s;
}

.fade-in-element[data-delay="2"] {
  transition-delay: 0.2s;
}

.fade-in-element[data-delay="3"] {
  transition-delay: 0.3s;
}

.fade-in-element[data-delay="4"] {
  transition-delay: 0.4s;
}

.hero .title,
.hero .subtitle,
.flow .steps .step {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero .title {
  animation-delay: 0s;
}

.hero .subtitle {
  animation-delay: 0.1s;
}

.flow .steps .step:nth-child(1) {
  animation-delay: 0s;
}

.flow .steps .step:nth-child(2) {
  animation-delay: 0.1s;
}

.flow .steps .step:nth-child(3) {
  animation-delay: 0.2s;
}

.flow .steps .step:nth-child(4) {
  animation-delay: 0.3s;
}

.flow .steps .step:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#wrapper {
  overflow: hidden;
  position: relative;
}

.title {
  font-weight: bold;
  line-height: 1.3;
}

.subtitle {
  color: #444444;
}

.description {
  color: #444444;
  line-height: 1.6;
}

.badge {
  color: #ffffff;
  font-size: min(12px, 3.1vw);
  background: linear-gradient(90deg, rgb(255, 166, 0) 0%, rgb(255, 102, 61) 100%);
  border-radius: 30px;
  display: inline-block;
  font-weight: bold;
  padding: 3px 20px;
  margin: 0 0 4px;
}

.button {
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0px 4px 20px 0px rgba(255, 30, 86, 0.26);
  color: #ff1e56 !important;
  display: flex;
  font-weight: bold;
  padding: 15px 30px;
  text-decoration: none !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) {
  .button:hover {
    box-shadow: 0px 6px 25px 0px rgba(255, 30, 86, 0.35);
    transform: translateY(-2px);
  }
}

@media screen and (max-width: 899px) {
  .container {
    padding: 0 20px;
  }
}

/* フェードインアニメーション用のスタイル */
.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  /* 遅延時間を設定 */
}
.fade-in-element.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-element[data-delay="0"] {
  transition-delay: 0s;
}
.fade-in-element[data-delay="1"] {
  transition-delay: 0.1s;
}
.fade-in-element[data-delay="2"] {
  transition-delay: 0.2s;
}
.fade-in-element[data-delay="3"] {
  transition-delay: 0.3s;
}
.fade-in-element[data-delay="4"] {
  transition-delay: 0.4s;
}
.fade-in-element[data-delay="5"] {
  transition-delay: 0.5s;
}
.fade-in-element[data-delay="6"] {
  transition-delay: 0.6s;
}
.fade-in-element[data-delay="7"] {
  transition-delay: 0.7s;
}
.fade-in-element[data-delay="8"] {
  transition-delay: 0.8s;
}
.fade-in-element[data-delay="9"] {
  transition-delay: 0.9s;
}
.fade-in-element[data-delay="10"] {
  transition-delay: 1s;
}

.hero {
  margin: 0 auto;
  max-width: 1200px;
  padding: 100px 0 0;
  position: relative;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 899px) {
  .hero {
    padding: 10.2vw 12.8vw 0;
  }
}
.hero .title {
  background: linear-gradient(90deg, rgb(255, 102, 61) 0%, rgb(254, 39, 90) 100%);
  background-clip: text;
  font-size: min(34px, 6.6vw);
  line-height: 1.3;
  margin-bottom: 20px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .subtitle {
  font-size: min(15px, 3.5vw);
  margin: 0 auto 40px;
}
.hero .subtitle span {
  font-weight: bold;
}

.flow {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 899px) {
  .flow {
    padding: 20vw 0 10vw;
    transform: translateY(-15vw);
  }
}
.flow .bg {
  background: linear-gradient(116deg, rgb(255, 242, 192) 5%, rgb(254, 242, 226) 50%, rgb(255, 242, 192) 95%);
  height: 100%;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
.flow .bg::before, .flow .bg::after {
  background: #ffffff;
  border-radius: 50%;
  content: "";
  height: 274px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  width: 2624px;
  z-index: 2;
}
@media screen and (max-width: 899px) {
  .flow .bg::before, .flow .bg::after {
    height: 80.5vw;
    width: 132vw;
  }
}
.flow .bg::before {
  top: -220px;
}
@media screen and (max-width: 899px) {
  .flow .bg::before {
    top: -60vw;
  }
}
.flow .bg::after {
  bottom: -220px;
}
@media screen and (max-width: 899px) {
  .flow .bg::after {
    content: none;
  }
}
.flow .circle-bg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  /* Fill スタイル（グラデーション背景） */
  /* Outline スタイル（ボーダーのみ） */
  /* 個別の位置とサイズ */
}
.flow .circle-bg span {
  border-radius: 50vh;
  left: 50%;
  position: absolute;
}
.flow .circle-bg .fill {
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 242, 192, 0.8) 0%, rgba(255, 242, 192, 0) 100%);
}
.flow .circle-bg .outline {
  border: 3px solid rgba(255, 223, 118, 0.7);
  box-sizing: border-box;
  filter: blur(5px);
}
.flow .circle-bg .circle-1 {
  height: 163px;
  top: 4px;
  transform: translateX(376px);
  width: 163px;
}
@media screen and (max-width: 899px) {
  .flow .circle-bg .circle-1 {
    top: -46px;
    transform: translateX(19.4vw);
  }
}
.flow .circle-bg .circle-2 {
  height: 237px;
  top: 23px;
  transform: translateX(450px);
  width: 237px;
}
@media screen and (max-width: 899px) {
  .flow .circle-bg .circle-2 {
    top: -27px;
    transform: translateX(19.4vw);
  }
}
.flow .circle-bg .circle-3 {
  height: 276px;
  top: 10px;
  transform: translateX(-380px);
  width: 276px;
}
@media screen and (max-width: 899px) {
  .flow .circle-bg .circle-3 {
    top: -30px;
    transform: translateX(-71.6vw);
  }
}
.flow .circle-bg .circle-4 {
  height: 158px;
  top: 10px;
  transform: translateX(-380px);
  width: 158px;
}
@media screen and (max-width: 899px) {
  .flow .circle-bg .circle-4 {
    top: 40px;
    transform: translateX(-71.6vw);
  }
}
.flow .circle-bg .circle-5 {
  height: 247px;
  opacity: 0.8;
  top: 360px;
  transform: translateX(-760px);
  width: 247px;
}
.flow .circle-bg .circle-6 {
  height: 122px;
  top: 391px;
  transform: translateX(-615px);
  width: 122px;
}
.flow .title {
  color: #444444;
  font-size: 22px;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 30px;
  position: relative;
  text-align: center;
  z-index: 3;
}
.flow .title span {
  color: #ff860d;
}
.flow .title em {
  font-size: 2.2em;
  font-style: normal;
}
.flow .steps {
  margin: 0 0 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 899px) {
  .flow .steps {
    font-size: min(16px, 4.1vw);
    flex-direction: column;
    gap: 2.5vw;
    margin: 0;
    padding: 0 11.2vw;
  }
}
.flow .step {
  background: #ffffff;
  border-radius: 60px 60px 60px 0px;
  display: grid;
  gap: 10px;
  grid-template-rows: auto 1fr;
  padding: 30px 10px;
  text-align: center;
  width: 190px;
}
@media screen and (max-width: 899px) {
  .flow .step {
    border-radius: 5.1vw 5.1vw 5.1vw 0;
    padding: 5.1vw;
    display: grid;
    gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 4em 1fr;
    width: 100%;
  }
}
.flow .step .number {
  color: #ff860d;
  font-size: min(24px, 6.1vw);
  font-weight: bold;
  text-align: center;
}
.flow .step .text {
  font-size: min(14px, 3.5vw);
  line-height: 1.4;
  text-align: center;
}
.flow .step .text span {
  font-weight: bold;
}
@media screen and (max-width: 899px) {
  .flow .step .text {
    text-align: left;
  }
}

.features {
  margin: 0 auto;
  max-width: 650px;
  padding: 80px 0;
}
@media screen and (max-width: 899px) {
  .features {
    padding: 0 7.7vw 10.2vw;
  }
}
.features h2.title {
  color: #444444;
  font-size: 5.1vw;
  line-height: 1.3;
  margin: 0 auto 30px;
  position: relative;
  text-align: center;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .features h2.title {
    display: none;
  }
}
.features h2.title span {
  color: #ff860d;
  font-size: 1.2em;
}
.features h2.title em {
  font-size: 1.5em;
  font-style: normal;
}
.features .container {
  padding: 0;
  display: grid;
  gap: 30px 15px;
  grid-template-columns: 50px 1fr;
}
@media screen and (max-width: 899px) {
  .features .container {
    gap: 6vw 3vw;
    grid-template-columns: 10vw 1fr;
  }
}
.features .timeline {
  color: #00b4d6;
  font-size: 12px;
  font-weight: bold;
  background-image: url(../../images/flow/s_arrow.svg), linear-gradient(90deg, rgb(208, 248, 255) 0%, rgba(208, 248, 255, 0.2) 77%);
  background-position: center bottom, center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto, 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-orientation: mixed;
  writing-mode: vertical-rl;
}
.features .timeline.row-2 {
  grid-row: span 2;
}
.features .card {
  border-radius: 20px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 40px;
  text-align: left;
}
@media screen and (max-width: 899px) {
  .features .card {
    padding: 6.6vw;
  }
}
.features .card.row-2 {
  grid-row: span 2;
}
.features .card.points {
  background: linear-gradient(90deg, rgb(255, 166, 0) 0%, rgb(255, 102, 61) 100%);
  padding: 2px;
  position: relative;
}
.features .card.points::before {
  background: url(../../images/flow/feature_p_06_02.png) no-repeat center center/contain;
  bottom: 20px;
  content: "";
  height: 53px;
  position: absolute;
  right: 37px;
  width: 53px;
}
@media screen and (max-width: 899px) {
  .features .card.points::before {
    bottom: calc(100% - 30px);
    right: 10px;
  }
}
.features .card .content {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 200px;
}
@media screen and (max-width: 899px) {
  .features .card .content {
    grid-template-columns: 1fr;
  }
}
.features .card .content.divider {
  border-top: dashed 1px #000;
  margin: 15px 0 0;
  padding: 25px 0 0;
}
.features .card .info .title {
  color: #444444;
  font-size: min(22px, 5.6vw);
  line-height: 1.3;
  margin: 0 auto 10px;
}
.features .card .info .description {
  font-size: min(12px, 3.4vw);
}
@media screen and (max-width: 899px) {
  .features .card .info .description {
    font-size: 3.4vw;
  }
}
.features .card .image {
  background: linear-gradient(90deg, rgb(255, 102, 61) 0%, rgb(254, 39, 90) 100%);
  border-radius: 10px;
  box-sizing: border-box;
  height: 127px;
  padding: 2px;
  width: 200px;
}
@media screen and (max-width: 899px) {
  .features .card .image {
    aspect-ratio: 224/134;
    height: auto;
    width: 100%;
  }
}
.features .card .image img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.features .card .point-inner {
  background: #fffae0;
  border-radius: 20px;
  display: flex;
  gap: 28px;
  padding: 20px 40px;
}
@media screen and (max-width: 899px) {
  .features .card .point-inner {
    flex-direction: column;
    gap: 10px;
    padding: 5.6vw;
  }
}
.features .card .points-display {
  background: linear-gradient(96.75deg, #f09400 6.92%, #ff663d 40.82%);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  line-height: 1.2;
  margin: 0 auto;
  margin: 20px 0 0;
  padding: 15px;
  text-align: center;
  width: 170px;
}
@media screen and (max-width: 899px) {
  .features .card .points-display {
    width: 100%;
    flex-direction: row;
    gap: 2px;
    padding: 4vw 3vw;
    align-items: anchor-center;
  }
}
.features .card .points-display .text {
  color: #ffffff;
  font-size: min(16px, 3.7vw);
  font-weight: bold;
}
@media screen and (max-width: 899px) {
  .features .card .points-display .text {
    font-size: 4.1vw;
    margin: 2vw 0 0;
  }
}
.features .card .points-display .highlight {
  color: #fff28d;
  font-size: min(23px, 5.2vw);
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 899px) {
  .features .card .points-display .highlight {
    font-size: 5.8vw;
  }
}
.features .card .points-display .highlight span {
  font-size: 60px;
}
@media screen and (max-width: 899px) {
  .features .card .points-display .highlight span {
    font-size: 15.3vw;
  }
}
.features .card .plus-icon {
  background: #ff860d;
  border-radius: 24px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.cta {
  background: url(../../images/flow/cta_bg_01_pc.jpg) no-repeat center center;
  padding: 70px 0 40px;
  text-align: center;
}
@media screen and (max-width: 899px) {
  .cta {
    background: url(../../images/flow/cta_bg_01_sp.jpg) no-repeat center center/cover;
    padding: 10.2vw 12.8vw;
  }
}
.cta .title {
  color: #ffffff;
  font-size: min(26px, 6.6vw);
  line-height: 1.3;
  margin-bottom: 40px;
  text-shadow: 0 2px 16px rgba(255, 30, 86, 0.25), 0 0 45px rgba(255, 30, 86, 0.7);
}
.cta .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.cta .buttons .button {
  font-size: 20px;
  background: #fff url(../../images/flow/s_arrow_02.svg) no-repeat calc(100% - 15px) center/35px auto;
  width: 320px;
}
@media screen and (max-width: 899px) {
  .cta .buttons .button {
    font-size: 5.1vw;
    width: 100%;
    background-size: 8.9vw auto;
  }
}

/*# sourceMappingURL=style.css.map */