/* ======================================================

   FV

========================================================= */

/* ===========================
   FV Base (Mobile First)
=========================== */
.fv {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.fv__inner {
    height: 100vh;
    position: relative;
    min-height:740px
}

/* ---- Heading / Lead ---- */
.fv__heading {
    width: 96%;
    position: absolute;
    top: 20vw;
    left: 4%;
    z-index: 9;
}

.fv__lead {
    width: 70%;
  z-index: 9;
    position: absolute;
    top: 70vw;
    left: 4%;
}

/* ---- People (background image) ---- */
.fv__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}
  .fv__copy {
    position: relative;
    z-index: 9;
  }

/* ---- Decoration images ---- */
.fv__decos {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fv__deco {
  position: absolute;
  z-index: 3;
}

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

/* 配置（モバイル） */
.fv__deco--village  { top:  -40px; left:  -40px; width:  160px; }
.fv__deco--aircon   { top: -50px; right: -30px; width:  163px;}
.fv__deco--woman    { top: 55%; left:  -20px; width:  87px; z-index: 2;}
.fv__deco--solar    { display: none;}
.fv__deco--port     { top: 31%; right: 5%; width: 87px; }
.fv__deco--kitchen  { top: 56%; right: -20px; width: 115px; }
.fv__deco--baseball { top: 55%; left: 48%; width: 60px;}
.fv__deco--microwave {display: none;}
.fv__deco--team { bottom: 2%; right: 2%; width: 133px;}

/* ===========================
   PC
=========================== */
@media screen and (min-width: 1025px) {
    .fv {  /*overflow-y: visible;*/ padding-bottom: 13%;}
    .fv__inner {}
  .fv__bg {
    inset: 0;
    pointer-events: none;
  }
  .fv__heading {
      width: 37.8125%;
      top: 8vw;
      left: auto;
      right: 10%;
    }
    .fv__lead {
        width: 31.4844%;
        top: 28vw;
        left: auto;
        right: 17%;
    }

  /* 配置（PC） */
    .fv__deco--village  { top:  15%; left: 0; width:  206px; z-index: 2;}
    .fv__deco--aircon   { top: 40%; right: -30px; width:  300px; }
    .fv__deco--woman    { top: 15%; left: auto; right:  50px; width:  150px; z-index: 9;}
    .fv__deco--solar    { top: auto; bottom: -10%; right: 14.5%; width:  213px; display: block;}
    .fv__deco--port     { top: -90px; right: auto; left: 19%; width: 300px;  z-index: 2;}
    .fv__deco--kitchen  { top: 9%; left: 42%; width: 165px; z-index: 10;}
    .fv__deco--baseball { top: 17%; left: auto; right: 3%; width: 140px;}
    .fv__deco--microwave {display: none;}
    .fv__deco--team { bottom: -13%; right: 36.25%; width: 388px;}
}

/* ===========================
   Animation
=========================== */
@keyframes fvFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fvPop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* 1. 背景・人物 (0.1s〜) */
[data-fv-anim="base"] {
  opacity: 0;
  animation: fvFadeUp 0.8s ease-out 0.1s forwards;
}

/* 2. キャッチコピー (0.9s〜) */
[data-fv-anim="copy"] {
  opacity: 0;
  animation: fvFadeUp 0.8s ease-out 0.9s forwards;
}

/* 3. 装飾画像 (1.7s〜、stagger 0.1s刻み) */
[data-fv-anim="decos"] .fv__deco {
  opacity: 0;
  animation: fvPop 0.5s ease-out forwards;
}
[data-fv-anim="decos"] .fv__deco:nth-child(1) { animation-delay: 1.7s; }
[data-fv-anim="decos"] .fv__deco:nth-child(2) { animation-delay: 1.8s; }
[data-fv-anim="decos"] .fv__deco:nth-child(3) { animation-delay: 1.9s; }
[data-fv-anim="decos"] .fv__deco:nth-child(4) { animation-delay: 2.0s; }
[data-fv-anim="decos"] .fv__deco:nth-child(5) { animation-delay: 2.1s; }
[data-fv-anim="decos"] .fv__deco:nth-child(6) { animation-delay: 2.2s; }
[data-fv-anim="decos"] .fv__deco:nth-child(7) { animation-delay: 2.3s; }
[data-fv-anim="decos"] .fv__deco:nth-child(8) { animation-delay: 2.4s; }
[data-fv-anim="decos"] .fv__deco:nth-child(9) { animation-delay: 2.5s; }

/* リプレイ時にアニメーションをリセット */
.fv.is-replaying [data-fv-anim],
.fv.is-replaying [data-fv-anim="decos"] .fv__deco {
  animation: none;
  opacity: 0;
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  [data-fv-anim],
  [data-fv-anim="decos"] .fv__deco {
    animation: none;
    opacity: 1;
  }
}


/* ======================================================

   about

========================================================= */
#top_about {
    width: 100%;
    position: relative;
    padding-top: 50px;
    margin-bottom: 30px;
    background: url("../images/top_about_bg.png") no-repeat center top;
    background-size: cover;
}
#top_about .top_about_inner {
    width: 100%;
    position: relative;
}
#top_about .top_about_inner:before {
    content: "";
    display: block;
    width: 266px;
    height: 211px;
    background: url("../images/top_about_deco_sp.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: -50px;
    right: -30px;
}


#top_about .top_about_inner .left_block {
    width: 90%;
    margin: 0 auto 40px;
}
#top_about .top_about_inner .left_block h3,
#top_about .top_about_inner .left_block p { color: #fff; font-weight: 700;}
#top_about .top_about_inner .left_block .title {
    font-size: clamp(27px, 1.06rem + 2.67vw, 49px);
    line-height: 1.7;
    margin-bottom: 15px;
}
#top_about .top_about_inner .right_block { position: relative;}
#top_about .top_about_inner .right_block .block01 {
    width: 80%;
    max-width: 410px;
    margin: 0 auto 40px;
    background: #CCCCCC;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 20px 0 0 0;
    position: relative;
}
#top_about .top_about_inner .right_block .block01:after {
    content: "";
    display: block;
    width: 23px;
    height: 27px;
    background: url("../images/top_about_arrow.png") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -40px;
    right: 0;
    left: 0;
    margin: auto;
}

#top_about .top_about_inner .right_block .title {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

#top_about .top_about_inner .right_block .about_flow {
    display: flex;
    align-items: center;
    justify-content: center;
}
#top_about .top_about_inner .right_block .about_flow li {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    background: #000;
    padding: 12px;
    position: relative;
    color: #fff;
    border-radius: 7px;
    margin-right: 20px;
}
#top_about .top_about_inner .right_block .about_flow li:before {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 7px solid #000;
  border-right: 0;
}

#top_about .top_about_inner .right_block .about_flow li:last-child {
    background: none;
    border: 3px solid #000;
    color: #000;
    margin-right: 0;
}
#top_about .top_about_inner .right_block .about_flow li:last-child:before{
    content: none;
}
#top_about .top_about_inner .right_block .block02 {
    width: 100%;
    background: url("../images/top_about_img02.png") no-repeat center top;
    background-size: 140%;
    padding: 70px 5% 200px;
}
#top_about .top_about_inner .right_block .block02 .title {
    color: #FF1A1A;
}
#top_about .top_about_inner .right_block .block02 .title span {
    font-size: 19px;
}
#top_about .top_about_inner .right_block .block02 .about_flow li {
    background: #FF1A1A;
}
#top_about .top_about_inner .right_block .block02 .about_flow li:before {
  border-left: 7px solid #FF1A1A;
}
#top_about .top_about_inner .right_block .block02 .about_flow li:last-child {
    border: 3px solid #FF1A1A;
    color: #FF1A1A;
    background: none;
}
@media screen and (min-width: 1025px) {
    #top_about {
    padding-top: 50px;
    margin-bottom: 0px;
    background: url("../images/top_about_bg.png") no-repeat center top;
    background-size: cover;
        padding-bottom: 120px;
}
    #top_about .top_about_inner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    #top_about .top_about_inner:before { content: none;}
    #top_about:before {
        content: "FUKUKURU";
        position: absolute;
        top: -50px;
        right: -30px;
        color: rgba(255,255,255,0.15);
        font-size: 198px;
        font-weight: 700;
        letter-spacing: 0.1em;
        font-family: "Roboto", sans-serif;
    }
    #top_about .top_about_inner .left_block {
        width: 49%;
        margin: 0;
        padding-top: 50px;
    }
    #top_about .top_about_inner .left_block .title { margin-bottom: 70px;}
    #top_about .top_about_inner .left_block p { line-height: 2.3; font-size: 25px;}
    #top_about .top_about_inner .right_block {
        width: 51%;
    }
    #top_about .top_about_inner .right_block .block01 {
        margin: 0 auto 85px;
        border-radius: 30px;
        padding: 30px 0 0 0;
    }
    #top_about .top_about_inner .right_block .block01:after {
        width: 40px;
        height: 46px;
        bottom: -85px;
    }

    #top_about .top_about_inner .right_block .title {
        font-size: 20px;
    }

    #top_about .top_about_inner .right_block .about_flow {
    display: flex;
    align-items: center;
    justify-content: center;
}
    #top_about .top_about_inner .right_block .about_flow li {
        font-size: 16px;
        padding: 20px;
        border-radius: 10px;
    }
    #top_about .top_about_inner .right_block .about_flow li:last-child { font-size: 18px;}
    #top_about .top_about_inner .right_block .block02 {
        max-width: 715px;
        background: url("../images/top_about_img02.png") no-repeat center top;
        background-size: 100%;
        padding: 100px 5% 220px;
    }

    #top_about .top_about_inner .right_block .block02 .title span { font-size: 30px;}
    #top_about .top_about_inner .right_block .block02 .about_flow li:last-child { font-size: 22px;}
}


/* ======================================================

   series

========================================================= */
#top_series {
    width: 92%;
    margin: 0 auto 60px;
    background: #fff;
    box-sizing: border-box;
    padding: 35px 25px 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}
#top_series .f_logo {
    width: 50%;
    margin: 0 auto 20px;
}

#top_series .f_service {
    display: flex;
    flex-direction: column;

}
#top_series .f_service li { margin-bottom: 10px;}
#top_series .f_service li.comming,
#top_series .f_service li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 15px 30px;
    border-radius: 999px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease,
    background-color .25s ease;
    will-change: transform;
    background: #FF1A1A;
}
#top_series .f_service li.comming { background: #707070;}
.service-card__title {
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.service-card__title span {
    position: relative;
    padding-right: 1.5em;
}
.service-card__title span:before,
.service-card__title span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.service-card__title span:before { transform: rotate(45deg);}
.service-card__title span:after { transform: rotate(-45deg);}
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.service-card__status {
    font-size: 12px;
    opacity: .5;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.service-card__illust {
    width: 120px;
    position: absolute;
}
#top_series .f_service li:first-child .service-card__illust { top: 5px; right: 10px;}
#top_series .f_service li:nth-child(2) .service-card__illust { width: 100px; top: 10px; right: 15px;}
#top_series .f_service li:nth-child(3) .service-card__illust { top: 10px; right: 0px;}
#top_series .f_service li:nth-child(4) .service-card__illust { top: 10px; right: 5px;}
#top_series .f_service li:nth-child(5) .service-card__illust { top: 10px; right: -10px;}
#top_series .f_service li:nth-child(6) .service-card__illust { width: 140px; top: 8px; right: -10px;}



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

    #top_series {
        width: 90%;
        margin: 0 auto 140px;
        padding: 50px 50px 50px;
        border-radius: 50px;
        flex-direction:row;
        justify-content: space-between;
        align-items: center;
    }
    #top_series .f_logo {
        width: 26%;
        max-width: 400px;
        margin: 0;
    }

    #top_series .f_service {
        width: 68%;
        max-width: 1060px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #top_series .f_service li {
        width: 32%;
        max-width: 340px;
        margin-bottom: 20px;
    }
    #top_series .f_service li.comming,
    #top_series .f_service li a {
        height: 120px;
        box-sizing: border-box;
        padding: 15px 40px;
    }
    .service-card__title {
        font-size: 20px;
        letter-spacing: 0.025em;
    }
    .service-card__title span {
        padding-right: 1.5em;
    }
.service-card__title span:before,
.service-card__title span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.service-card__title span:before { transform: rotate(45deg);}
.service-card__title span:after { transform: rotate(-45deg);}
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

    .service-card__status {
        font-size: 14px;
        margin-top: 5px;
    }

    .service-card__illust {}
    #top_series .f_service li:first-child .service-card__illust {  width: 53%; max-width: 155px; right: 0px; top: 15px;}
    #top_series .f_service li:nth-child(2) .service-card__illust { width: 44%; max-width: 130px; right: 15px; top: 20px;}
    #top_series .f_service li:nth-child(3) .service-card__illust { width: 53%;max-width: 155px; top: 20px; right: -15px;}
    #top_series .f_service li:nth-child(4) .service-card__illust { width: 53%;max-width: 155px; top: 20px; right: 5px;}
    #top_series .f_service li:nth-child(5) .service-card__illust { width: 53%;max-width: 160px; top: 15px; right: -20px;}
    #top_series .f_service li:nth-child(6) .service-card__illust { width: 61%; max-width: 180px; top: 15px; right: -30px;}
}



/* ======================================================

   how to

========================================================= */
#top_howto {
    width: 90%;
    margin: 0 auto 50px;
    position: relative;
}
.fukidashi { text-align: center; margin-bottom: 30px;}
.fukidashi span {
    background: #fff;
    border-radius: 10px;
    font-size: clamp(14px, 0.59rem + 1.21vw, 24px);
    padding: 15px;
    color: #FF1A1A;
    line-height: 1;
    font-weight: 700;
    position: relative;
}
.fukidashi span:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 8px solid #fff;
  border-bottom: 0;
}
#top_howto .title {
    font-size: clamp(25px, 0.88rem + 2.91vw, 49px);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

#top_howto .text_area p {
    font-size: clamp(13px, 0.61rem + 0.85vw, 20px);
    line-height: 2.5;
    font-weight: 700;
    text-align: center;
    color: #fff;
}
#top_howto .text_area p.text { margin-bottom: 1.5em;}
#top_howto .flow_contents { margin-bottom: 50px;}


@media screen and (min-width: 1025px) {
    #top_howto {
        max-width: 1200px;
        margin: 0 auto 50px;
    }
    .fukidashi { margin-bottom: 60px;}
    .fukidashi span { padding: 20px;}
    .fukidashi span:before {
        bottom: -14px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 14px solid #fff;
}
    #top_howto .title { margin-bottom: 60px;}
    #top_howto .flow_contents { margin-bottom: 90px;}
}
/* ======================================================

   future

========================================================= */
#top_future {
    position: relative;
    padding-top: 50px;
}
#top_future .top_future_text {
    width: 90%;
    margin: 0 auto 40px;
    position: relative;
    z-index: 3;
}
#top_future:after {
    content: "FUTURE";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 1;
    font-size: 100px;
    color: rgba(255,255,255,0.15);
}


#top_future .top_future_text .title {
    margin-bottom: 40px;
    font-size: clamp(30px, 1.34rem + 2.3vw, 49px);
    position: relative;
    z-index: 2;
}
#top_future .top_future_text p,
#top_future .top_future_text h3 {
    color: #fff;
    font-weight: 700;
}
#top_future .top_future_text p { font-size: clamp(13px, 0.53rem + 1.21vw, 23px);}

#top_future .top_future_contents {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 40px 0;
}
#top_future .top_future_contents .future_block {
    width: 85%;
    margin: 0 auto 20px;
    position: relative;
    background: #FF1A1A;
    border-radius: 20px;
}
#top_future .top_future_contents .future_block:last-child { margin-bottom: 0;}
#top_future .top_future_contents .future_block .f_image {
    width:calc(100% - 10px);
    height:210px;
    margin-left: 20px;
    margin-top: -10px;
}
#top_future .top_future_contents .future_block .f_image img {
    width: 100%;
    height:210px;
    object-fit:cover;
    border-radius: 20px;
}


#top_future .top_future_contents .future_block .number{
    font-family: "Roboto", sans-serif;
    font-size:60px;
    font-weight: 600;
    line-height: 1;
    width: fit-content;
    margin: -23px 10px -40px auto;
}
#top_future .top_future_contents .future_block .vertical{
    font-family: "Roboto", sans-serif;
  position:absolute;
  top:10px;
  left:35px;
  writing-mode:vertical-rl;
  font-size:12px;
  letter-spacing:0.1em;
    font-weight:600;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
}

#top_future .top_future_contents .future_block .inner {
    box-sizing: border-box;
    padding: 0 30px 30px;
    margin-top:20px;
}


#top_future .top_future_contents .future_block h4 {
    font-size: clamp(23px, 1.07rem + 1.58vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
}
#top_future .top_future_contents .future_block p {
    font-size: clamp(13px, 0.73rem + 0.36vw, 16px);
    color: #fff;
    line-height: 1.9;
}
@media screen and (min-width: 1025px) {

  /* 外側コンテナ:この高さ分だけ縦スクロールが発生する */
  #top_future_wrap.horizontal-section {
    position: relative;
    height: 500vh;          /* この値の中で横スクロールが完結する */
    width: 100%;
    overflow: visible;      /* ← sticky を効かせるため必須 */
  }

  /* 画面に貼り付くラッパー:ここが100vhで固定される */
  #top_future_wrap .sticky-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;          /* ← 画面の高さに固定 */
    overflow: hidden;       /* 横方向のはみ出しを隠す */
  }

  #top_future {
    position: relative;
    width: 100%;
    height: 100vh;          /* ← 必ず100vhにする */
    padding-top: 50px;
    box-sizing: border-box;
    overflow: hidden;       /* 念のため */
  }

  /* 背景の "FUTURE" 文字 */
  #top_future:after {
    content: "FUTURE";
    position: absolute;
    top: 20%;
    left: 10%;
    right: 0;
    margin: auto;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 1;
    font-size: 198px;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 0;
  }

  /* 横に流れるトラック */
  #top_future .horizontal-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    height: 100%;           /* ← 親(#top_future)の100vhに合わせる */
    will-change: transform;
    position: relative;
    z-index: 1;
  }

  /* タイトルブロック(先頭パネル) */
  #top_future .top_future_text {
    flex-shrink: 0;
    width: 1920px;
    padding: 0 260px;
    box-sizing: border-box;
  }
  #top_future .top_future_text .title {
    margin-bottom: 30px;
  }

  /* カード群のラッパー */
  #top_future .top_future_contents {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background: #fff;
    padding: 230px 0 100px;
      position: relative;
  }
    #top_future .top_future_contents:before {
        content: "";
        display: block;
        position: absolute;
        left: -925px;
        top: 0;
      width: 0;
  height: 0;
  border-style: solid;
  border-top: 480px solid transparent;
  border-bottom: 480px solid transparent;
  border-right: 925px solid #fff;
  border-left: 0;
    }

  /* 各カード */
  #top_future .top_future_contents .future_block {
    width: 810px;
    flex-shrink: 0;
    margin: 0 30px;
    border-radius: 30px;
    position: relative;
  }
  #top_future .top_future_contents .future_block .f_image {
    width: 100%;
    height: 404px;
    margin-left: 40px;
    margin-top: -50px;
  }
  #top_future .top_future_contents .future_block .f_image img {
    height: 404px;
    border-radius: 30px;
  }
  #top_future .top_future_contents .future_block .number {
    position: absolute;
    top: 45%;
    right: 50px;
    font-size: 108px;
  }
  #top_future .top_future_contents .future_block .vertical {
    position: absolute;
    bottom: 70px;
    right: 20px;
    font-size: 16px;
  }
  #top_future .top_future_contents .future_block .inner {
    padding: 0 70px 60px;
  }
  #top_future .top_future_contents .future_block h4 {
    margin-bottom: 20px;
  }
}

/* スマホ・タブレット */
@media screen and (max-width: 1024px) {
  #top_future_wrap.horizontal-section {
    height: auto;
  }
  #top_future_wrap .sticky-wrapper {
    position: static;
    height: auto;
    overflow: visible;
  }
  #top_future .horizontal-track {
    display: block;
    transform: none !important;
  }
  #top_future .top_future_contents {
    display: block;
  }
  #top_future .top_future_contents .future_block {
    width: 100%;
    margin-bottom: 40px;
  }
}



/* ======================================================

   service

========================================================= */
#top_service {
    width: 100%;
    background-image: url("../images/top_service_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #fff;
    padding: 60px 0 40px;
}
#top_service .ttl_pt03 {
    margin-bottom: 40px;
}
.top_service_contents {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.top_service_contents .service_block {
    width: 49%;
    position: relative;
    border-radius: 15px;
    background: #FF1A1A;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.top_service_contents .service_block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.top_service_contents .service_block:nth-child(2n) { margin-left: 2%;}
.top_service_contents .service_block:before {
    content: "";
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    margin: auto;
    background: #FF1A1A;
}
.top_service_contents .service_block .inner_block {
    width: 100%;
    position: relative;
}
.top_service_contents .service_block .inner_block:before,
.top_service_contents .service_block .inner_block:after {
    content: "";
    display: block;
    position: absolute;
}
.top_service_contents .service_block .inner_block:before {
    width: 17px;
    height: 17px;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    background: #fff;
}
.top_service_contents .service_block .inner_block:after {
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    top: 16px;
    right: 16px;
}

.top_service_contents .service_block .inner_block .logo {
    width: 20px;
    margin: 0 auto 10px;
}
.top_service_contents .service_block .inner_block .service_img {
    width: 80%;
    margin: 0 auto -40px;
}
.top_service_contents .service_block .inner_block .comming_text {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 40%;
    font-size: 12px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    z-index: 3;
}

.top_service_contents .service_block .text_block {
    width: 92%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
    z-index: 2;
}
.top_service_contents .service_block .text_block .sub {
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.025em;
    line-height: 1.6;
    font-size: clamp(11px, 0.57rem + 0.48vw, 15px);
    margin-bottom: 10px;
}
.top_service_contents .service_block .text_block .sub span {
    color:#FF1A1A ;
}

.top_service_contents .service_block .text_block .s_title {
    text-align: center;
    font-weight: 700;
    font-size: clamp(14px, 0.53rem + 1.45vw, 26px);
}
.top_service_contents .service_block .text_block .s_title span {
    border: 2px solid #FF1A1A;
    padding:0 3px;
    color:#FF1A1A ;
}


.top_service_contents .service_block:first-child .inner_block .service_img {
    width: 90%;
    margin-bottom: -50px;
}
.top_service_contents .service_block:nth-child(2) .inner_block .service_img {
    margin-bottom: -35px;
}

.top_service_contents .service_block.comming {
    background: #707070;
}
.top_service_contents .service_block.comming:before {
    background: #707070;
}

.top_service_contents .service_block.comming .inner_block .service_img img {
    opacity: 0.3;
}

@media screen and (min-width: 1025px) {
    #top_service {
        padding: 160px 0 140px;
    background-image: url("../images/top_service_bg.png");
    background-size:100%;
    }
    #top_service .ttl_pt03 { margin-bottom: 100px;}
    .top_service_contents {display: flex;
    flex-wrap: wrap;
}

    .top_service_contents .service_block {
        width: 32%;
        border-radius: 30px;
        padding-bottom: 15px;
        margin-bottom: 90px;
    }
    .top_service_contents .service_block:nth-child(4) { margin-left: 0;}
    .top_service_contents .service_block:nth-child(3),
    .top_service_contents .service_block:nth-child(5) { margin-left: 2%;}

    .top_service_contents .service_block:before {
        width: 96px;
        height: 96px;
        top: -34px;
    }

    .top_service_contents .service_block .inner_block:before,
    .top_service_contents .service_block .inner_block:after {
    content: none;
    }

    .top_service_contents .service_block .inner_block .logo {
        width: 42px;
        margin: -10px auto 25px;
    }
    .top_service_contents .service_block .inner_block .service_img {
        width: 80%;
        margin: 0 auto -90px;
    }
    .top_service_contents .service_block .inner_block .comming_text {display: none;}
    .top_service_contents .service_block .text_block {
    border-radius: 20px;
    padding:30px;
    }
    .top_service_contents .service_block .text_block .s_title {
        margin-bottom: 15px;
    }
    .top_service_contents .service_block .text_block .s_title span { padding:0 7px;}

    .top_service_contents .service_block:first-child .inner_block .service_img {
        width: 80%;
        margin-bottom: -90px;
    }
    .top_service_contents .service_block:nth-child(2) .inner_block .service_img {
        width: 60%;
        margin-bottom: -20px;
    }
    .top_service_contents .service_block.comming { background: #FF1A1A;}
    .top_service_contents .service_block.comming:before { background: #FF1A1A;}
    .top_service_contents .service_block.comming .inner_block .service_img img { opacity: 1;}

    .top_service_contents .service_block .pc_area p { text-align: center; font-size: 14px;}
    .top_service_contents .service_block .txt_btn {
        width: 220px;
        margin: 20px auto 0;
    }
    .top_service_contents .service_block .txt_btn a {
        display: block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        position: relative;
        border:1px solid #CCCCCC;
        border-radius: 25px;
        color: #000;
        text-decoration: none;
        transition:0.3s;
    }
    .top_service_contents .service_block .txt_btn a:hover {
        border:1px solid #FF1A1A;
        background: #FF1A1A;
        color: #fff;
    }
    .top_service_contents .service_block .txt_btn a::before{
        content: "";
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 8px;
	height: 8px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
        transition:0.3s;
}
    .top_service_contents .service_block .txt_btn a::before:hover { border-top: 1px solid #fff; border-right: 1px solid #fff;}
    .top_service_contents .service_block.comming .pc_area .txt_btn {
        width: 220px;
        margin: 20px auto 0;
        background: #E3E3E3;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-weight: 600;
        border-radius: 25px;
    }

}
/* ======================================================

   flow

========================================================= */
#top_flow {
}
#top_flow .flow_top_text {
    width: 100%;
    background: url("../images/top_flow_sp_bg.png") no-repeat center top;
    background-size: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 100px 5% 60px;
}
#top_flow .flow_top_text p,
#top_flow .flow_top_text h3 {
    color: #fff;
    font-weight: 700;
}
#top_flow .flow_top_text .title {
    font-size: clamp(30px, 1.51rem + 1.58vw, 43px);
    line-height: 1.6;
    margin-bottom: 30px;
}
#top_flow .flow_top_text p {
    font-size: clamp(13px, 0.61rem + 0.85vw, 20px);
    line-height: 2.3
}

#top_flow .flow_top_text .deco_img {
    width: 60%;
    margin-left: 40%;
    margin-top: 50px;
}

.step-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.step-card {
    background: #fff;
    border-radius:15px;
    position: relative;
    padding: 20px 32% 20px 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.step-card:last-child { margin-bottom: 0;}
.step-card:after {
    content: "";
    display: block;
    position: absolute;
    left: 35%;
    bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 0;
}
.step-card:last-child:after { content: none;}

.step-label {
    font-family: "Roboto", sans-serif;
    margin: 0;
    text-align: center;
    color: #FF1A1A;
    font-size: clamp(11px, 0.55rem + 0.61vw, 16px);
    font-weight: 700;
    line-height: 1;
}
.step-number {
    font-family: "Roboto", sans-serif;
    margin: 2px 0 25px;
    text-align: center;
    color: #FF1A1A;
    font-size: clamp(22px, 0.7rem + 2.91vw, 46px);
    font-weight: 700;
    line-height: 1;
    position: relative;
}
.step-number:after {
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 13px;
    background: url("../images/ribbon_icon.png") no-repeat;
    background-size: contain;
    right: 0;
    left: 0;
    bottom: -19px;
    margin: auto;
}
.step-card:before {
    content: "";
    display: block;
    position: absolute;
    top: 52%;
/*    top: 50%;
    transform: translateY(-50%);*/
    width: calc(100% - 40px);
    height: 1px;
    background: #FF1A1A;
    left: 0;
    right: 0;
    margin: auto;
}

.step-text {
  text-align: center;
  color: #FF1A1A;
  font-weight: 700;
  font-size: clamp(13px, 0.61rem + 0.85vw, 20px);
  line-height: 1.5;
  margin: 0;
}

.step-or {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FF1A1A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
    margin: 0 5px;
}

.step-illust {
    width: 140px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}


@media screen and (min-width: 1025px) {
    #top_flow {
        background: url("../images/top_flow_bg.png") no-repeat center top;
        background-size: 100%;
    }
    #top_flow .flow_top_text {
        max-width: 1200px;
        margin: 0 auto 20px;
        background: none;
        padding: 200px 0 220px;
        position: relative;
    }
    #top_flow .flow_top_text .title { margin-bottom: 60px;}
    #top_flow .flow_top_text .deco_img {
        max-width: 441px;
        margin: 0;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    #top_flow .ttl_pt03 { margin-bottom: 80px;}
    .step-container { flex-direction:row; justify-content: space-between;}
    .step-card {
        width: 30.8333%;
        border-radius:30px;
        padding: 40px 45px 0px 45px;
        margin-bottom: 0px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
.step-card:after {
    left: auto;
    right: -26px;
    bottom: 50%;
    transform: translateY(-50%);
border-top: 13px solid transparent;   /* 上を透明に */
border-bottom: 13px solid transparent;/* 下を透明に */
border-left: 26px solid #fff;
}

    .step-card:before { content: none;}
    .step-number {
        margin: 2px 0 30px;
        padding-bottom: 20px;
    }
    .step-number:after {
        width: 28px;
        height: 20px;
        bottom: -10px;
        margin: auto;
    }
    .step-number:before {
    content: "";
    display: block;
    position: absolute;
        bottom: 0;
        width: 100%;
    height: 1px;
    background: #FF1A1A;
    left: 0;
    right: 0;
    margin: auto;
}

    .step-text { margin-bottom: -30px;}
    .step-or { font-size: 13px;}

    .step-illust {
        width: 200px;
        position: static;
        margin:auto auto 0;
    }


}



@media screen and (max-width: 1024px){
    .fv__deco--port{right:5px;}
    .fv__deco--kitchen{top: 51%;right: 3%;}
    .fv__deco--woman{left: 8%; top: 48%; width: 146px;}
    #top_about .top_about_inner .right_block .block02{background: url("../images/top_about_img02_sp.png") no-repeat center top /contain;}
}
