@charset "utf-8";



:root {
  --font-base: YakuHanJP, "Noto Sans JP", sans-serif;
  --font-display: "WDXL Lubrifont JP N", sans-serif;
}

body {
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #282828;
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  background-color: #F8EDE2;
  letter-spacing: 0;
}

@media screen and (min-width: 920px) {
  body {
    font-size: 16px;
    line-height: 2;
  }
}

h1,
h2,
h3,
h4,
h5,
span,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-center_pc {
  text-align: left !important;
}

@media screen and (min-width: 920px) {
  .text-center_pc {
    text-align: center !important;
  }
}

.text-center_sp {
  text-align: center !important;
}

@media screen and (min-width: 920px) {
  .text-center_pc {
    text-align: left !important;
  }
}

.br_sp {
  display: block;
}

@media screen and (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}

@media screen and (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

.br_catch {
  display: block;
}

@media screen and (min-width: 920px) {
  .br_catch {
    display: none;
  }
}

.inner_link {
  position: relative;
}

.inner_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #282828;
  position: absolute;
  bottom: -2px;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}

@media screen and (min-width: 920px) {
  .inner_link:hover {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 920px) {
  .inner_link:hover::before {
    scale: 1 1;
    transform-origin: 0 0;
  }
}

.stream_line {
  background-image: linear-gradient(to right, #282828, #282828);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.1;
  width: fit-content;
  font-size: 13px;
}

.stream_line:hover {
  animation: none;
}

@media screen and (min-width: 920px) {
  .stream_line:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}

@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }

  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }

  51% {
    background-position: bottom left;
  }

  100% {
    background-size: 100% 1px;
  }
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 920px) {
  .container-base {
    padding: 0 40px;
    max-width: 1205px;
  }
}

.container-middle {
  width: 100%;
  /* max-width: calc(1400px + min(19.7142857143vw,276px)); */
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 920px) {
  .container-middle {
    padding: 0 min(9.85714285714vw, 138px);
  }
}

.section_ttl {
  margin-bottom: 40px;
}

@media screen and (min-width: 920px) {
  .section_ttl {
    margin-bottom: 80px;
  }
}




.section_ttl_en {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 12px;
}

@media screen and (min-width: 920px) {
  .section_ttl_en {
    font-size: 20px;
    margin-bottom: 26px;
  }
}

.section_ttl_en::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #282828;
}


.section_ttl_jp {
  font-size: min(40px, 10.526315789473683vw);
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

@media screen and (min-width: 920px) {
  .section_ttl_jp {
    font-size: min(64px, 5.161290322580645vw);
  }
}

.section_ttl_jp .txt_red {
  color: #D3232E;
}

.section_ttl_center {
  text-align: center;
}

.section_ttl_center .section_ttl_en::before {
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 919px) {
  .section_ttl {
    text-align: center;
  }

  .section_ttl_en::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.js-fadein,
.js-fadein-float {
  --fade-delay: 0s;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1.2s ease var(--fade-delay),
    transform 1.2s ease var(--fade-delay);
}



.js-fadein.is-visible,
.js-fadein-float.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* フェード完了後、内側の画像を上下に動かす */
.js-fadein-float.is-visible>img {
  animation: floating 3s ease-in-out infinite;
  animation-delay: calc(var(--fade-delay) + 0.8s);
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mv_img_main,
.mv_catch_inner {
  display: block;
}

/* opacityのみで表示 */
.js-fadein-opacity {
  --fade-delay: 0s;

  opacity: 0;
  transition: opacity 0.8s ease var(--fade-delay);
}

.js-fadein-opacity.is-visible {
  opacity: 1;
}

/*-------------------- header --------------------*/
/* --------------------------------
  header
-------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

@media screen and (min-width: 920px) {
  .header {
    pointer-events: auto;
  }
}


/* --------------------------------
  header_visual
-------------------------------- */
.header_visual {
  position: relative;
  width: 184px;
  height: 82px;
  pointer-events: auto;
}

@media screen and (min-width: 920px) {
  .header_visual {
    width: 348px;
    height: 155px;
  }
}


/* --------------------------------
  header_red_bg
-------------------------------- */
.header_red_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 184px;
  height: auto;
}

@media screen and (min-width: 920px) {
  .header_red_bg {
    width: 348px;
  }
}


/* --------------------------------
  header_logo
-------------------------------- */
.header_logo {
  position: absolute;
  top: 13px;
  left: 14px;
  z-index: 2;
  display: block;
  width: 130px;
}

@media screen and (min-width: 920px) {
  .header_logo {
    top: 28px;
    left: 28px;
    width: 222px;
  }
}

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


/* --------------------------------
  hamburger button
-------------------------------- */
.header_menu_btn {
  position: fixed;
  top: 28px;
  right: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 60px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

@media screen and (min-width: 920px) {
  .header_menu_btn {
    display: none;
  }
}

.header_menu_btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: #2b2b2b;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header.is-open .header_menu_btn span:nth-child(1) {
  transform: translateY(8px) rotate(18deg);
}

.header.is-open .header_menu_btn span:nth-child(2) {
  opacity: 0;
}

.header.is-open .header_menu_btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-18deg);
}


/* --------------------------------
  header_nav_wrap
-------------------------------- */
.header_nav_wrap {
  position: fixed;
  top: 60px;
  right: 12px;
  z-index: 1000;
  width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

@media screen and (min-width: 920px) {
  .header_nav_wrap {
    position: static;
    width: auto;
    padding: 44px 40px 0 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
}

.header.is-open .header_nav_wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


/* --------------------------------
  header_nav
-------------------------------- */
.header_nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 20px 16px;
  list-style: none;
  background: #fff;
  border-radius: 8px;
}

@media screen and (min-width: 920px) {
  .header_nav {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
}


/* --------------------------------
  header_nav_item
-------------------------------- */
.header_nav_item {
  line-height: 1;
}

.header_nav_item a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

@media screen and (min-width: 920px) {
  .header_nav_item a {
    font-size: 20px;
  }

  .header_nav_item a:hover {
    color: #D3232E;
  }
}


/* --------------------------------
  body menu open
-------------------------------- */
body.is-menu-open {
  overflow: hidden;
}

@media screen and (min-width: 920px) {
  body.is-menu-open {
    overflow: auto;
  }
}

/*----------------------------------------*/

.mv {
  padding: 0 0 24px;
  width: 100%;
  text-align: center;
  position: relative;
}

.mv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../img/mv_bottom.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.mv_inr {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.mv_img {
  position: relative;
  overflow: hidden;

}

@media screen and (min-width: 920px) {
  .mv_img {
    padding-top: 40px;
  }
}

.mv_img_01 {
  width: 19.743589743589745vw;
  position: absolute;
  top: 23.589743589743588vw;
  left: 8.205128205128204vw;
}

@media screen and (min-width: 920px) {
  .mv_img_01 {
    width: min(125px, 8.928571428571429vw);
    position: absolute;
    top: min(190px, 13.571428571428571vw);
    left: min(62px, 4.428571428571428vw);
  }
}

.mv_img_02 {
  width: 20.51282051282051vw;
  position: absolute;
  top: 12.82051282051282vw;
  left: 37.94871794871795vw;
}

@media screen and (min-width: 920px) {
  .mv_img_02 {
    width: min(110px, 7.857142857142857vw);
    position: absolute;
    top: min(300px, 21.428571428571427vw);
    left: min(230px, 16.428571428571427vw);
  }
}

.mv_img_03 {
  width: 23.846153846153847vw;
  position: absolute;
  top: 100vw;
  left: -27px;
}

@media screen and (min-width: 920px) {
  .mv_img_03 {
    width: min(218px, 15.571428571428573vw);
    position: absolute;
    top: min(510px, 36.42857142857142vw);
    left: min(120px, 8.571428571428571vw);
  }
}

.mv_img_04 {
  width: 23.846153846153847vw;
  position: absolute;
  top: 159.4871794871795vw;
  right: -17px;
}

@media screen and (min-width: 920px) {
  .mv_img_04 {
    width: min(216px, 15.428571428571427vw);
    position: absolute;
    top: min(200px, 14.285714285714285vw);
    right: min(40px, 2.857142857142857vw);
  }
}

.mv_img_05 {
  width: 28.974358974358978vw;
  position: absolute;
  top: 17.94871794871795vw;
  right: -26px;
}

@media screen and (min-width: 920px) {
  .mv_img_05 {
    width: min(174px, 12.428571428571429vw);
    position: absolute;
    top: min(430px, 30.714285714285715vw);
    right: min(140px, 10vw);
  }
}


/* @media screen and (max-width: 919px) {
  .mv_img img {
  width: 100%;
}
} */

.mv_catch {
  position: absolute;
  top: 43.58974358974359vw;
  left: 50%;
  transform: translateX(-50%);
  width: 89.74358974358975vw;
  margin-bottom: 40px;
}

@media screen and (min-width: 920px) {
  .mv_catch {
    width: min(900px, 55.00000000000001vw);
    top: min(220px, 12.142857142857142vw);
    margin-bottom: 0;
  }
}

.mv_catch img {
  width: 100%;
}

.mv_bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 122.871795vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: max-content;
  gap: min(49px, 12.564102564102564vw);
}



@media screen and (min-width: 920px) {
  .mv_bottom {
    position: relative;
    flex-direction: row;
    margin-top: -192px;
    width: auto;
    max-width: 1400px;
    gap: 0;
    top: auto;
    bottom: min(41px, 3.306451612903226vw);
  }
}

@media screen and (min-width: 920px) and (max-width: 1240px) {
  .mv_bottom {
    margin-top: -122px;
  }
}

.mv_bottom .cta {
  margin-bottom: 20px;
  position: relative;
  max-width: 360px;
}

@media screen and (min-width: 920px) {
  .mv_bottom .cta {
    max-width: min(360px, 29.03225806451613vw);
  }
}

@media screen and (min-width: 920px) {
  .mv_bottom_cta {
    max-width: min(390px, 32.5vw);
  }
}

.mv_bottom_txt {
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
}

@media screen and (min-width: 920px) {
  .mv_bottom_txt {
    font-size: 12px;
  }
}

.mv_bottom_catch {
  font-size: min(16px, 4.266666666666667vw);
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.75;
}

@media screen and (min-width: 920px) {
  .mv_bottom_catch {
    position: absolute;
    letter-spacing: 0.03em;
    line-height: 2;
    top: 0;
    right: min(73px, 5.887096774193548vw);
    text-align: left;
    font-size: min(18px, 1.4516129032258065vw);
  }
}




/* ロボット */
.cta_robot {
  position: absolute;
  right: min(18px, 1.4516129032258065vw);
  top: 0;
  z-index: -2;

  width: min(87px, 7.016129032258064vw);

  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 1.35, 0.36, 1);
  pointer-events: none;
}

@media screen and (max-width: 919px) {
  .cta_robot {
    right: 43px;
    transform: translateY(-84px);
    width: 87px;
  }
}

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

/* 吹き出し */
.cta_bubble {
  position: absolute;
  left: min(97px, 7.822580645161291vw);
  top: calc(clamp(0px, 5.48vw, 68px) * -1);
  z-index: 3;

  width: min(146px, 11.774193548387096vw);

  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 919px) {
  .cta_bubble {
    top: -80px;
    left: 42px;
    opacity: 1;
    width: 146px;
  }
}

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



@media screen and (min-width: 920px) {
  .cta:hover .cta_robot {
    transform: translateY(clamp(-67px, calc(-5vw - 5px), 0px));
  }

  .cta:hover .cta_bubble {
    opacity: 1;
  }

}

.mv_img_main img {
  width: 100%;
}




.js-fadein-float {
  --fade-delay: 0s;
  --float-delay: 0s;
  --float-duration: 3s;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease var(--fade-delay),
    transform 0.8s ease var(--fade-delay);
}

.js-fadein-float.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadein-float.is-visible>img {
  animation: floating var(--float-duration) ease-in-out infinite;
  animation-delay: calc(var(--fade-delay) + 0.8s + var(--float-delay));
}

/* 1. キャッチ */
.mv_catch_inner {
  --fade-delay: 0.2s;
}

/* 2. メイン画像 */
.mv_img_main {
  --fade-delay: 0.95s;
}

.mv_img_01 {
  --fade-delay: 0.95s;
  --float-delay: 0s;
}

.mv_img_02 {
  --fade-delay: 0.95s;
  --float-delay: 0.3s;
}

.mv_img_03 {
  --fade-delay: 0.95s;
  --float-delay: 0.6s;
}

.mv_img_04 {
  --fade-delay: 0.95s;
  --float-delay: 0.15s;
}

.mv_img_05 {
  --fade-delay: 0.95s;
  --float-delay: 0.45s;
}

/* 3. ヘッダーとMV下部を同時に表示 */
.header,
.mv_bottom_cta,
.mv_bottom_catch {
  --fade-delay: 1.8s;
}


.background {

  position: relative;
  padding: 0 0 16.428571428571427vw;
}

.background_inr {
  background-color: #F0E2DA;
  padding-bottom: 14px;
}



.background::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 16.428571428571427vw;
  transform: translateX(-50%);
  background-image: url(../img/background_bottom.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
  background-color: #F8EDE2;
}

.background_body {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 50px 0 0;
}

@media screen and (min-width: 920px) {
  .background_body {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: -78px;
    padding: min(182px, 14.677419354838708vw) 0 0;
  }
}

.background_body_illust {
  position: absolute;
  bottom: -60px;
  left: -70px;
  width: min(540px, 43.54838709677419vw);
}

@media screen and (max-width: 919px) {
  .background_body_illust {
    position: static;
    order: 3;
    text-align: center;
    width: auto;
  }
}



@media screen and (min-width: 920px) {
  .background_body .section_ttl {
    width: 40%;
  }
}


@media screen and (min-width: 920px) {
  .background_contents {
    width: 58.22222222222222%;
  }
}

.background_bubble {

  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}


@media screen and (min-width: 920px) {
  .background_bubble {
    padding-top: 82px;
    margin-bottom: 80px;
    max-width: none;
  }
}


.background_bubble_item {
  width: 96%;

  padding: 0 22px 0 0;
  position: relative;
  opacity: 0;
  transform: scale(0.85, 0.85) translate(0, 18px);
  transform-origin: center center;
  will-change: transform, opacity;
}

@media screen and (min-width: 920px) {
  .background_bubble_item {
    width: 89.00763358778626%;
    padding: 0 28px 0 0;
  }
}

.background_bubble_item.is_show {
  animation: bubblePoyon 0.8s ease-out both;
}

.background_bubble_item:nth-child(1).is_show {
  animation-delay: 0s;
}

.background_bubble_item:nth-child(2).is_show {
  animation-delay: 0.24s;
}

.background_bubble_item:nth-child(3).is_show {
  animation-delay: 0.48s;
}

@keyframes bubblePoyon {
  0% {
    opacity: 0;
    transform: scale(0.85, 0.85) translate(0, 24px);
  }

  15% {
    opacity: 1;
    transform: scale(0.9, 0.9) translate(0, 12px);
  }

  30% {
    opacity: 1;
    transform: scale(1.08, 0.88) translate(0, 16px);
  }

  48% {
    opacity: 1;
    transform: scale(0.92, 1.08) translate(0, -24px);
  }

  64% {
    opacity: 1;
    transform: scale(1.04, 0.96) translate(0, 8px);
  }

  80% {
    opacity: 1;
    transform: scale(0.98, 1.02) translate(0, -5px);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1) translate(0, 0);
  }
}

.background_bubble_item:nth-child(odd) {
  padding: 0 0 0 22px;
}

@media screen and (min-width: 920px) {
  .background_bubble_item:nth-child(odd) {
    padding: 0 0 0 28px;
  }
}

.background_bubble_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(-1);

  width: 22px;
  height: 24px;

  background-image: url("../img/bubble_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  pointer-events: none;
}

@media screen and (min-width: 920px) {
  .background_bubble_item::before {
    width: 28px;
    height: 30px;
  }
}

.background_bubble_item:nth-child(even)::before {
  left: auto;
  right: 0;
  transform: translateY(-50%) scaleX(1);
}



.background_bubble_item_inr {
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-weight: 700;
  min-height: 120px;
  text-align: center;
}

@media screen and (min-width: 920px) {
  .background_bubble_item_inr {
    border-radius: 20px;
    font-size: min(18px, 1.4516129032258065vw);
    line-height: 2;
    min-height: min(160px, 12.903225806451612vw);
  }
}

.background_bubble_item:nth-child(1) {
  margin: 0 auto;
}

.background_bubble_item:nth-child(2) {
  margin: 0 auto 0 0;
}

.background_bubble_item:nth-child(3) {
  margin: 0 0 0 auto;
}

.background_contents_txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media screen and (min-width: 920px) {
  .background_contents_txt {
    gap: 20px;
    margin-bottom: 0;
  }
}

.background_contents_txt p {
  text-align: center;
  font-size: min(16px, 4.2105263157894735vw);
  font-weight: 700;
  line-height: 1.75;
}

@media screen and (min-width: 920px) {
  .background_contents_txt p {
    font-size: min(20px, 1.7241379310344827vw);
    line-height: 2;
  }
}


.noim {
  padding: 80px 0 100px;
  position: relative;
}

@media screen and (min-width: 920px) {
  .noim {
    padding: 164px 0 200px;
  }
}

.noim_side_01 {
  position: absolute;
  right: 0;
  top: -140px;
  z-index: 3;
}

@media screen and (max-width: 919px) {
  .noim_side_01 {
    width: 80px;
    top: -100px;
  }
}

.noim_side_02 {
  position: absolute;
  bottom: -290px;
  z-index: 3;
}

@media screen and (max-width: 919px) {
  .noim_side_02 {
    width: 80px;
    bottom: -180px;
  }
}

.noim .section_ttl {
  margin-bottom: 70px;
}

@media screen and (min-width: 920px) {
  .noim .section_ttl {
    margin-bottom: 142px;
  }
}


.noim_list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0;
  position: relative;
  z-index: 4;
}

@media screen and (min-width: 920px) {
  .noim_list {
    flex-direction: row;
    gap: 16px;
  }
}

.noim_list_item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  min-height: 300px;
  padding: 30px 16px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 920px) {
  .noim_list_item {
    min-height: min(374px, 32.241379310344826vw);
    border-radius: 20px;
    padding: 40px 16px;
  }
}

.noim_list_item:nth-child(1) .js-fadein {
  transition-delay: 0s;
}

.noim_list_item:nth-child(2) .js-fadein {
  transition-delay: 0.2s;
}

.noim_list_item:nth-child(3) .js-fadein {
  transition-delay: 0.4s;
}

.noim_list_img {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 30px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 78%;
  max-width: 273px;
}

.noim_list_img.is-visible {
  transform: translate(-50%, 0);
}

@media screen and (min-width: 920px) {
  .noim_list_img {
    width: 300px;
    top: -80px;
  }
}

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

.noim_list_ttl {
  margin-bottom: 12px;
  color: #D3232E;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 920px) {
  .noim_list_ttl {
    font-size: min(24px, 2.0689655172413794vw);
  }
}

.noim_list_txt {
  font-weight: 700;

}

@media screen and (min-width: 920px) {
  .noim_list_txt {
    line-height: 2;
    font-size: min(16px, 1.3793103448275863vw);
  }
}




.approach {
  position: relative;
  padding: 21.071428571428573vw 0 15.214285714285714vw 0;
}

.approach::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 21.071428571428573vw;
  transform: translateX(-50%);
  background-image: url(../img/approach_top.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
  background-color: #F8EDE2;
}

.approach::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../img/approach_bottom.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.approach_inr {
  background-color: #fff;
  padding: 0 0 82px;
}

/* --------------------------------
  approach_body
-------------------------------- */
.approach_body {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 920px) {
  .approach_body {
    flex-direction: row;
    justify-content: space-between;
    margin-top: -96px;
  }
}


/* --------------------------------
  approach_body_illust
-------------------------------- */
.approach_body_illust {
  order: 4;
  width: 80%;
  max-width: 300px;
  margin: 40px auto 0;
}

@media screen and (min-width: 920px) {
  .approach_body_illust {
    position: absolute;
    left: 0;
    bottom: -216px;
    z-index: 1;
    width: min(500px, 44.642857142857146vw);
    max-width: none;
    margin: 0;
  }
}

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

.approach_body_illust_02 {
  position: absolute;
  top: -80px;
  right: -10px;
  width: 80px;
}

@media screen and (min-width: 920px) {
  .approach_body_illust_02 {
    width: auto;
    top: -190px;
  }
}

/* --------------------------------
  approach_side
-------------------------------- */
.approach_side {
  display: contents;
}

@media screen and (min-width: 920px) {
  .approach_side {
    display: block;
    width: 50.888888888888886%;
  }
}

.approach_side .section_ttl {
  margin-bottom: 40px;
}

@media screen and (min-width: 920px) {
  .approach_side .section_ttl {
    margin-bottom: 66px;
  }
}


/* --------------------------------
  section_ttl
-------------------------------- */
.approach_side .section_ttl {
  order: 1;
}


/* --------------------------------
  approach_contents
-------------------------------- */
.approach_contents {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* margin-top: 32px; */
}

@media screen and (min-width: 920px) {
  .approach_contents {
    width: 45.733333%;
    margin-top: 0;
    padding-top: 80px;
  }
}

.approach_contents p {
  text-align: justify;
  font-size: min(16px, 4.2105263157894735vw);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.015em;
}

@media screen and (min-width: 920px) {
  .approach_contents p {
    font-size: min(20px, 1.7241379310344827vw);
    line-height: 2;
  }
}

.approach_contents p .label {
  background-color: #d3232e;
  color: #fff;
  padding: 2px 6px
}


/* --------------------------------
  approach cta
-------------------------------- */
.approach_side .cta {
  order: 3;
  width: 100%;
  margin-top: 32px;
}

@media screen and (min-width: 920px) {
  .approach_side .cta {
    margin-top: 48px;
  }
}


.use {
  position: relative;
  background: #f8eee3;
  padding: 40px 0 60px;
  overflow-x: clip;
}

@media screen and (min-width: 920px) {
  .use {
    padding: 118px 0 130px;
  }
}

.use_side {
  position: absolute;
  z-index: 0;
  right: 0;
  top: -120px;
}

@media screen and (max-width: 919px) {
  .use_side {
    top: -90px;
    width: 120px;
  }
}


.use .section_ttl {
  margin-bottom: 30px;
}

.use_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 40px;
  padding: 0;
  position: relative;
  z-index: 4;
}

@media screen and (min-width: 1140px) {
  .use_list {
    flex-direction: row;
    margin: 0 auto;
  }
}

.use_item {
  position: relative;
  padding: 0;
  text-align: center;
  flex-shrink: 0;
}

.use_item_01 {
  width: min(391px, 102.89473684210526vw);
}

@media screen and (min-width: 920px) {
  .use_item_01 {
    z-index: 1;
  }
}

.use_item_01 .use_img {
  width: 310px;
  top: 18px;
  right: -10px;
}

.use_item_01 .use_body {
  left: min(60px, 15.384615384615385vw);
  bottom: min(128px, 25.128205128205128vw);
  text-align: left;
}

@media screen and (min-width: 920px) {
  .use_item_01 .use_img {
    width: 310px;
    top: 42px;
    right: -27px;
  }

  .use_item_01 .use_body {
    left: 66px;
    bottom: 87px;
    text-align: left;
  }
}

.use_item_02 {
  width: min(408px, 107.36842105263158vw);
  margin: -44px;
  margin: -92px 0 0 0;
}

.use_item_02 .use_img {
  width: 265px;
  top: 8px;
  left: 64px;
}

.use_item_02 .use_body {
  left: min(70px, 17.94871794871795vw);
  bottom: min(56px, 14.358974358974358vw);
}

@media screen and (min-width: 920px) {
  .use_item_02 {
    width: 408px;
    margin: 0 0 0 -44px;
    padding-top: 10px;
  }

  .use_item_02 .use_img {
    width: 265px;
    top: 8px;
    left: 64px;
  }

  .use_item_02 .use_body {
    left: 71px;
    bottom: 66px;
  }
}

.use_item_03 {
  width: min(391px, 102.89473684210526vw);
  margin: -16px 0 0 0;
}

.use_item_03 .use_img {
  width: 265px;
  left: 66px;
  top: 10px;
}

.use_item_03 .use_body {
  left: min(38px, 9.743589743589745vw);
  bottom: min(80px, 20.51282051282051vw);
}

@media screen and (min-width: 920px) {
  .use_item_03 {
    width: 391px;
    margin: 0 0 0 -16px;
    padding-top: 50px;
  }

  .use_item_03 .use_img {
    width: 265px;
    left: 77px;
    top: 50px;
  }

  .use_item_03 .use_body {
    left: 38px;
    bottom: 84px;
  }
}

.use_item_bg {
  z-index: 0;
  display: block;
  width: 100%;
  object-fit: contain;
  pointer-events: none;
}

.use_item_inner {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.use_num {
  position: absolute;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
}

@media screen and (min-width: 920px) {
  .use_num {
    font-size: 120px;
  }

}

.use_item_01 .use_num {
  left: 70px;
  top: 100px;
  color: #FCAB33;
}

.use_item_02 .use_num {
  right: 38px;
  top: 56px;
  color: #42CACE;
}

.use_item_03 .use_num {
  right: 38px;
  top: 36px;
  color: #1B52A7;
}

.use_item_01 .use_img {
  transition-delay: 0s;
}

.use_item_02 .use_img {
  transition-delay: 0.2s;
}

.use_item_03 .use_img {
  transition-delay: 0.4s;
}

.use_img {
  position: absolute;
}

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

.use_body {
  position: absolute;
}

.use_ttl {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 920px) {
  .use_ttl {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.use_txt {
  font-weight: 700;
  line-height: 1.75;
}

.use_txt span {
  font-size: 14px;
}

.cta_wrap {
  display: flex;
  justify-content: center;
}

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 540px;
  min-height: min(90px, 23.076923076923077vw);
  padding: min(20px, 5.128205128205128vw) min(40px, 10.256410256410255vw);

  color: #fff;
  text-decoration: none;
  border-radius: 999px;

  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}

@media screen and (min-width: 920px) {
  .cta {
    min-height: min(120px, 9.67741935483871vw);
    padding: min(20px, 1.6129032258064515vw) min(40px, 3.225806451612903vw);
    max-width: min(540px, 43.54838709677419vw);
    min-height: min(120px, 9.67741935483871vw);
  }
}

/* 固定される影 */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(8px);
  background: #A11B23;
  border-radius: inherit;
  z-index: -2;
}

/* 動く赤い本体 */
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #D3232E;
  border-radius: inherit;
  z-index: -1;
  transition: transform 0.25s ease;
}

/* 中の文字も本体と一緒に動かす */
.cta .cta_sub,
.cta_main {
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}


@media screen and (min-width: 920px) {

  .cta:hover::after,
  .cta:hover .cta_sub,
  .cta:hover .cta_main {
    transform: translateY(8px);
  }
}



.cta_center {
  margin: 0 auto;
}

.cta_sub {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-size: min(16px, 4.102564102564102vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 920px) {
  .cta_sub {
    font-size: min(18px, 1.4516129032258065vw);
  }
}

.cta_sub::before,
.cta_sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 24px;
  background: #fff;
}

.cta_sub::before {
  left: -22px;
  transform: translateY(-50%) rotate(-28deg);
}

.cta_sub::after {
  right: -22px;
  transform: translateY(-50%) rotate(28deg);
}

.cta_main {
  font-size: min(20px, 5.128205128205128vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 920px) {
  .cta_main {
    font-size: min(28px, 2.258064516129032vw);
  }
}

.cta_with_icon {
  align-items: unset;
  max-width: 400px;
  min-height: 90px;
}

@media screen and (min-width: 920px) {
  .cta_with_icon {
    max-width: min(400px, 32.25806451612903vw);
    min-height: min(90px, 7.258064516129033vw);
  }
}

.cta_with_icon .cta_sub {
  line-height: 1.5;
  text-align: left;
  margin-bottom: 0;
}

.cta_with_icon .cta_sub::before,
.cta_with_icon .cta_sub::after {
  display: none;
}

.cta_with_icon .icon-arrow {
  position: absolute;
  top: 50%;
  right: 36px;
  z-index: 1;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}



@media screen and (min-width: 920px) {
  .cta:hover .icon-arrow {
    transform: translateY(-50%) translateY(8px);
  }
}

.cta_with_icon .icon-arrow::before,
.cta_with_icon .icon-arrow::after {
  background: #fff;
}

/* 
@media screen and (max-width: 1024px) {
  .section_ttl_jp {
    font-size: 44px;
  }

  .use_list {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 560px;
    margin: 70px auto 0;
  }

  .use_item {
    min-height: auto;
  }

  .use_item_02 {
    margin-left: 0;
    margin-right: 0;
  }

  .use_item_inner {
    min-height: 455px;
    padding: 50px 28px 54px;
  }

  .use_item_03 .use_num {
    top: 20px;
    right: 40px;
    font-size: 92px;
  }
}

@media screen and (max-width: 767px) {
  .use {
    padding: 60px 0 76px;
  }

  .use::before {
    top: -120px;
    right: -120px;
    width: 230px;
    height: 230px;
  }

  .container_base {
    width: min(100% - 32px, 1240px);
  }

  .section_ttl_en {
    margin-bottom: 34px;
    font-size: 17px;
  }

  .section_ttl_en::after {
    bottom: -18px;
    width: 20px;
  }

  .section_ttl_jp {
    font-size: 32px;
  }

  .use_list {
    margin-top: 48px;
    gap: 22px;
  }

  .use_item_inner {
    min-height: 390px;
    padding: 42px 22px 44px;
  }

  .use_item_01 .use_num,
  .use_item_02 .use_num,
  .use_item_03 .use_num {
    top: 28px;
    right: 28px;
    left: auto;
    font-size: 70px;
  }

  .use_img {
    height: 170px;
    margin-bottom: 20px;
  }

  .use_ttl {
    font-size: 22px;
  }

  .use_txt {
    font-size: 15px;
  }

  .cta_wrap {
    margin-top: 34px;
  }

  .cta {
    min-height: 88px;
    padding: 16px 28px;
    box-shadow: 0 7px 0 #a91e25;
  }

  .cta_sub {
    font-size: 15px;
  }

  .cta_main {
    font-size: 24px;
  }
} */





.reason {
  position: relative;

  padding: 18.428571428571427vw 0 16.428571428571427vw;
}

.reason_inr {
  background: #F0E2DA;
  padding: 0 0 30px;
}

.reason::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../img/reason_top.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.reason::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../img/reason_bottom.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.reason_side {
  position: absolute;
  left: 0;
  bottom: -20px;
  z-index: 1;
}

@media screen and (max-width: 919px) {
  .reason_side {
    width: 90px;
  }
}

.reason_head {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;

}

@media screen and (max-width: 919px) {
  .reason_head {
    flex-direction: column;
    justify-content: flex-start;

  }
}

.reason_head .section_ttl {
  margin-bottom: 42px;
}

.reason_head_txtArea {
  width: 42.044444444444444%;
  margin-top: -40px;
}

@media screen and (max-width: 919px) {
  .reason_head_txtArea {
    display: contents;
    width: auto;
  }
}

@media screen and (max-width: 919px) {
  .reason_ttl {
    order: 1;
  }
}

.reason_lead {
  margin: 50px 0 0;
  color: #282828;
  font-size: min(20px, 1.6129032258064515vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 919px) {
  .reason_lead {
    order: 3;
    margin: 32px 0 0;
    font-size: 16px;
    line-height: 1.8;
  }
}

.reason_data {
  padding-top: 46px;
  width: 49.333333333333336%;

  padding-top: 42px;

}

@media screen and (max-width: 919px) {
  .reason_data {
    order: 2;
    width: 100%;
    padding: 0;
    max-width: 350px;
  }
}

.reason_data_row {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

@media screen and (min-width: 920px) {
  .reason_data_row {
    gap: 8px;
    margin-bottom: 8px;
  }
}

.reason_data_card {
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
}

.reason_data_card_half {
  min-height: min(224px, 18.064516129032256vw);
  padding: min(20px, 1.6129032258064515vw);
  flex: 1;
}

@media screen and (max-width: 919px) {
  .reason_data_card_half {
    min-height: auto;
    padding: min(14px, 3.5897435897435894vw) min(14px, 3.5897435897435894vw) min(10px, 2.564102564102564vw);
  }
}

.reason_data_card_wide {
  min-height: 178px;
  padding: 20px;
}

@media screen and (max-width: 919px) {
  .reason_data_card_wide {
    min-height: auto;
    padding: 14px;
  }
}

.reason_data_label {
  display: inline-block;
  margin: 0;
  padding: 9px 6px;
  background: #F5F1ED;
  border-radius: 8px;
  font-size: min(18px, 1.4516129032258065vw);
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 919px) {
  .reason_data_label {
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 14px;
  }
}

.reason_data_value {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 10px 0 0;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 919px) {
  .reason_data_value {
    gap: 6px;
    margin-top: 2010pxpx;
  }
}

.reason_data_value span {
  color: #D3232E;
  font-size: min(140px, 11.29032258064516vw);
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  font-weight: 400;
}

@media screen and (max-width: 919px) {
  .reason_data_value span {
    font-size: min(80px, 20.51282051282051vw);
  }
}

.reason_data_value em {
  font-style: normal;
  font-size: min(40px, 3.225806451612903vw);
  font-weight: 900;
  line-height: 1.1;
  padding-bottom: 14px;
}

@media screen and (max-width: 919px) {
  .reason_data_value em {
    font-size: min(24px, 6.153846153846154vw);
    padding-bottom: 10px;
  }
}

.reason_data_card_buildings .reason_data_value {
  flex-direction: column;
  gap: 0;
}

.reason_data_card_buildings .reason_data_value span {
  font-size: min(90px, 7.258064516129033vw);
  margin-right: 4px;
}

@media screen and (max-width: 919px) {
  .reason_data_card_buildings .reason_data_value span {
    font-size: min(56px, 14.358974358974358vw);
    margin-right: 0;
  }
}

.reason_data_card_buildings .reason_data_value em {
  font-size: min(32px, 2.5806451612903225vw);
  font-family: var(--font-base);
  color: #282828;
}

@media screen and (max-width: 919px) {
  .reason_data_card_buildings .reason_data_value em {
    font-size: min(24px, 6.153846153846154vw);
  }
}

.reason_data_card_buildings .reason_data_value .reason_data_value_inr em {
  padding-bottom: 0;
}

.reason_area_text {
  margin: 30px 0 0;
  color: #D3232E;
  font-size: min(68px, 5.483870967741936vw);
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  text-align: center;
}

@media screen and (max-width: 919px) {
  .reason_area_text {
    margin-top: 10px;
    font-size: min(42px, 10.76923076923077vw);
    line-height: 1.35;
  }
}

.reason_area_text .dot {
  color: #282828;
  display: inline-block;
  margin-inline: -0.25em;
}

.reason_list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 920px) {
  .reason_list {
    flex-direction: row;
    gap: 16px;
  }
}

.reason_item {
  position: relative;
  background: #F8EDE2;
  border-radius: 12px;
  padding: 40px 20px 20px;
  box-sizing: border-box;
}

@media screen and (min-width: 920px) {
  .reason_item {
    border-radius: 20px;
    padding: min(54px, 4.354838709677419vw) min(39px, 3.1451612903225805vw) min(38px, 3.064516129032258vw);
    flex: 1;
  }
}

/* 数字バッジ */
.reason_num {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: 2;
}

.reason_num img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason_num_text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 920px) {
  .reason_num_text {
    font-size: 40px;
  }
}

/* 背景画像のサイズを個別指定 */
.reason_item_01 .reason_num {
  width: 68px;
  height: 68px;
}

.reason_item_02 .reason_num {
  width: 72px;
  height: 72px;
  top: -36px;
}

.reason_item_03 .reason_num {
  width: 64px;
  height: 70px;
  top: -36px;
}

.reason_item_ttl {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 920px) {
  .reason_item_ttl {
    font-size: min(24px, 2.4vw);
    margin-bottom: 12px;
  }

  .reason_item_txt {
    line-height: 2;
  }
}





















.faq {
  background: #f8eee3;
  padding: 60px 0 40px;
}

@media screen and (min-width: 920px) {
  .faq {
    padding: 82px 0 0;
  }
}


.accordion {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 962px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 920px) {
  .accordion {
    gap: 20px;
  }
}

.accordion>li {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

@media screen and (min-width: 920px) {
  .accordion>li {
    border-radius: 20px;
  }
}

.accordion_q button {
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 86px;
  box-sizing: border-box;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 24px 24px;
}

@media screen and (min-width: 920px) {
  .accordion_q button {
    grid-template-columns: 42px 1fr 24px;
    min-height: 100px;
    padding: 30px 38px 30px 34px;
    gap: 20px;
  }
}

@media (hover: hover) {
  .accordion_q button:hover {
    opacity: 0.8;
  }
}

.accordion_q_prefix {
  color: #d3232e;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 920px) {

  .accordion_q_prefix {
    font-size: 32px;
  }
}

.accordion_q_content {
  display: block;
  color: #282828;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 920px) {
  .accordion_q_content {
    font-size: 20px;
  }
}

.accordion_q_icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  justify-self: end;
}

.accordion_q_icon::before,
.accordion_q_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 2px;
  background: #d3232e;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion_q_icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion>li.is_open .accordion_q_icon::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.accordion_a {
  display: none;
  overflow: hidden;
}

.accordion>li.is_open .accordion_a {
  display: block;
}

.accordion_a_inner {
  display: grid;
  grid-template-columns: 32px 1fr;
  border-top: 1px solid #d8d8d8;
  padding: 20px;
  gap: 8px;
}

@media screen and (min-width: 920px) {
  .accordion_a_inner {
    grid-template-columns: 42px 1fr;
    padding: 32px 38px 34px 34px;
    gap: 20px;
  }
}

.accordion_a_prefix {
  color: #d3232e;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}

@media screen and (min-width: 920px) {
  .accordion_a_prefix {
    font-size: 32px;
  }
}


.accordion_a_content {
  color: #282828;
  font-weight: 400;
  line-height: 1.5;
}


.accordion_a_content p {
  margin: 0;
}

.accordion_a_content_block {
  margin-bottom: 10px;
}

.accordion_a_content_block:last-child {
  margin-bottom: 0;
}

.accordion_a_content_block .bold {
  font-weight: 700;
}

.accordion_a_content_block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion_a_content_block ul li {
  position: relative;
  line-height: 1.7;
  padding-left: 20px;
}

.accordion_a_content_block ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 6px;
  width: 4px;
  height: 4px;
  background-color: #282828;
  border-radius: 50%;
}



.conversation {
  background: radial-gradient(74.9% 52.17% at 29.01% 27.55%, #E6222E 0%, #E1232E 25.52%, #D4262E 54.43%, #BD2A2D 84.87%, #AF2D2D 100%);
  color: #fff;
  padding: 140px 0 100px;
  position: relative;
}

@media screen and (min-width: 920px) {
  .conversation {
    padding: min(441px, 35.564516129032256vw) 0 171px;
  }
}

.conversation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(../img/conversation_top.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}


.conversation_logo {
  text-align: center;
  margin-bottom: 30px;
}

.conversation_ttl {
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.015em;
  margin-bottom: 36px;
}

@media screen and (min-width: 920px) {
  .conversation_ttl {
    font-size: 64px;
  }
}

.conversation_txt {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (min-width: 920px) {
  .conversation_txt {
    font-size: 18px;
  }
}

.conversation_cta_row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 920px) {
  .conversation_cta_row {
    flex-direction: row;
    gap: 0;
  }
}

.conversation_cta_row_item {
  width: 100%;
  text-align: center;
  max-width: 400px;
}

@media screen and (min-width: 920px) {
  .conversation_cta_row_item:first-child {
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid #ffffff33;
    max-width: 440px;
  }
}

.conversation_cta_row_item_ttl {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  font-weight: 700;
}

@media screen and (min-width: 920px) {
  .conversation_cta_row_item_ttl {
    font-size: 20px;
  }
}

/* 白背景版CTA：既存ctaのサイズ・文字サイズ・影・hover沈み込みは残す */
.cta_ai_white {
  color: #D3232E;

  margin-bottom: 72px;
}

/* 影は消さず、色だけ変更 */
.cta_ai_white::before {
  background: #6E1218;
}

/* ボタン本体だけ白に */
.cta_ai_white::after {
  background: #fff;
}

/* 文字色だけ赤に */
.cta_ai_white .cta_sub,
.cta_ai_white .cta_main {
  color: #D3232E;
}

/* 既存の「無料・匿名OK!」横の斜線も赤に */
.cta_ai_white .cta_sub::before,
.cta_ai_white .cta_sub::after {
  background: #D3232E;
}

/* 吹き出しはこのタイプでは使わない */
.cta_ai_white .cta_bubble {
  display: none;
}

/* ロボット：通常時は下に隠す */
.cta_ai_white .cta_robot {
  left: min(47px, 3.357142857142857vw);
  right: auto;
  top: auto;
  bottom: -8px;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1.35, 0.36, 1);
  width: 108px;
}

/* 既存の .cta:hover .cta_robot より強く指定 */
@media screen and (min-width: 920px) {
  .cta_ai_white:hover .cta_robot {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左右装飾画像 */
.cta_ai_white .cta_deco {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  opacity: 0;
  transform: translateY(-50%) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}



/* 左画像の位置 */
.cta_ai_white .cta_deco_left {
  left: -54px;
}

/* 右画像の位置 */
.cta_ai_white .cta_deco_right {
  right: -54px;
}

/* 画像本体 */
.cta_ai_white .cta_deco img {
  display: block;
  width: 100%;
  height: auto;
}

/* hoverで左右画像を表示 */
.cta_ai_white:hover .cta_deco {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* SP調整 */
@media screen and (max-width: 919px) {
  .cta_ai_white .cta_robot {
    left: 28px;
    right: auto;
    top: auto;
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
    width: 62px;
  }

  .cta_ai_white .cta_deco {
    display: none;
  }

}

.icon-arrow {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.icon-arrow::before,
.icon-arrow::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/arrow.svg);
  mask-image: url(../img/arrow.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #fff;
  transition: translate 0.2s ease-out;
}

@media screen and (min-width: 920px) {

  .icon-arrow::before,
  .icon-arrow::after {
    width: 32px;
    height: 32px;
  }
}

.icon-arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -100% 0;
}

a:hover .icon-arrow::before,
button:hover .icon-arrow::before {
  translate: 100% 0;
}

a:hover .icon-arrow::after,
button:hover .icon-arrow::after {
  translate: 0 0;
}

.icon-arrow-blank::before,
.icon-arrow-blank::after {
  -webkit-mask-image: url(../img/arrow_blank.svg);
  mask-image: url(../img/arrow_blank.svg);
}

.icon-arrow-blank::after {
  translate: -100% 100%;
}

a:hover .icon-arrow-blank::before,
button:hover .icon-arrow-blank::before {
  translate: 100% -100%;
}

a:hover .icon-arrow-blank::after,
button:hover .icon-arrow-blank::after {
  translate: 0 0;
}




.btn {
  display: inline-flex;
  width: 100%;
  max-width: 400px;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #DCDCDC;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 0;
  line-height: 1.4;
}

@media screen and (min-width: 920px) {
  .btn {
    font-size: 18px;
  }
}

.btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  transition: opacity 0.3s ease-out;
  opacity: 0;
}

.btn .icon::before,
.btn .icon::after {
  transition: translate 0.2s ease-out, background-color 0.3s;
}

.btn:hover {
  color: #D3232E;
  border-color: #D3232E;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover .icon::before,
.btn:hover .icon::after {
  background: #D3232E;
}















/*---------- footer ----------*/
.site_footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 24px;
  background: #282828;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .site_footer {
    padding: min(3.5vw, 49px) min(4vw, 56px) min(2.14285714286vw, 30px);
  }
}

.site_footer_head {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 58px;
}

@media screen and (min-width: 1000px) {
  .site_footer_head {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 70px;
  }
}



.site_footer_head_txt {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.0375em
}

@media screen and (min-width: 1000px) {
  .site_footer_head_txt {
    max-width: 555px;
    text-align: left;
  }
}

.site_footer_name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.site_footer_info {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 7.5px;
  color: #fff;
}

.site_footer_info_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.site_footer_address {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  text-decoration: none;
}

.site_footer_number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.site_footer_number a {
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.site_footer_data {
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.site_footer_bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .site_footer_bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site_footer_bottom .stream_line {
  background-image: linear-gradient(to right, #fff, #fff);
  padding-bottom: 2px;
  margin: 14px 0 0;
}

@media screen and (min-width: 1000px) {
  .site_footer_bottom .stream_line {
    margin: 0;
  }
}

.site_footer_link {
  width: 100%;
  max-width: 555px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 1000px) {
  .site_footer_link {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site_footer_link_row {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media screen and (min-width: 1000px) {
  .site_footer_link_row {
    gap: 24px;
  }
}

.page_top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  width: fit-content;
  color: #fff;
}




.page_top_icon {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.page_top_icon img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.page_top_icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: url("../img/icon_pagetop.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.23s ease;
}

@media screen and (min-width: 1000px) {

  .page_top:hover .page_top_icon img,
  .page_top:hover .page_top_icon::after {
    transform: translateY(-100%);
  }
}



.copyright {
  font-size: 13px;
}




#noim-chat-button {
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#noim-chat-button.is-hide-on-conversation {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}







.scrollDown {
  width: fit-content;
  height: auto;
  color: #fff;
  margin: 0 auto;
  font-weight: 600;
  font-family: var(--font-serif);
}

@media screen and (min-width: 920px) {
  .scrollDown {
    position: absolute;
    bottom: 24px;
    left: 50%;
    translate: -50% 0;
    line-height: 1;
    z-index: 1;
    font-size: 18px;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
    opacity: 0;
  }

  60% {
    transform: scale(1, 1);
    transform-origin: 0 0;
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
    opacity: 1;
    /* 表示されたままキープ */
  }
}

#animatedText span {
  display: inline-block;
  animation-name: scroll;
  animation-timing-function: ease;
  animation-fill-mode: both;
  /* 最後の状態を保持 */
}