

/* =============================

common

============================= */

html{
    scroll-behavior: smooth;
    font-family: "Noto Sans JP", sans-serif;
}

main{
  padding-top: 5%;
}

p,li,dd,a.h2,h3,dt,dd{
    line-height: 1.9;
    letter-spacing: .04em;
    font-weight: 500;
}

p,li,dd,a,dt,dd{
  font-size: 14px;
  color: #fff;
}

:root{
    --margin: clamp(5rem, 3.571rem + 7.14vw, 9.375rem);/* 80px-150px */
    --margin00: clamp(2.125rem, 1.609rem + 3.3vw, 4.5rem);/* 36px-72px */
    --margin01: 60px;
    --margin02: clamp(3.5rem, 3.352rem + 0.74vw, 4rem);/* 56px-64px */
    --margin03: clamp(1.75rem, 1.602rem + 0.74vw, 2.25rem);/* 28px-38px */
    --margin04: clamp(1.5rem, 1.352rem + 0.74vw, 2rem);/* 24px-32px */
    --margin05: 24px;
    --margin06: clamp(0.5rem, 0.391rem + 0.7vw, 1rem); /* 8px-16px */


    --pink:#fe00c3;
    --pastel-pink:#f78fd0;
    --blue:#01beda;
    --gray:#565555;
    --gray02:#d3d3d3;
    --black: #231815;

    --font-a:150px;
    --font-b:clamp(2.25rem, 1.435rem + 4.07vw, 5rem); /* 36px-80px */
    --font-c:clamp(1.5rem, 0.907rem + 2.96vw, 3.5rem);/* 24px-56px */
    --font-d:clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);/* 20px-28px */
    --font-e:clamp(0.875rem, 0.838rem + 0.19vw, 1rem);/* 14px-16px */
    --font-f:14px;
    --font-g:12px;
    --font-h:clamp(1.125rem, 0.94rem + 0.93vw, 1.75rem);/* 18px-28px */
    --font-i:clamp(1rem, 0.955rem + 0.23vw, 1.125rem);/* 16px-18px */
}


html{
    color: var(--black);
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;;
}

.en-text{
    font-family: "Josefin Sans", sans-serif;
}

.font-500{
    font-weight: 500;
    letter-spacing: .1em;
}

.wrap{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--margin01);
    box-sizing: border-box;
}

.sp,.sp-2,.sp-footer,.sp-img,.spimg-02
{
    display: none!important;
}



.box{
   padding: clamp(15.625rem, 14.375rem + 6.25vw, 21.875rem) 0;
   max-width: 1920px;
   margin: 0 auto;
}





footer .link-icon{

    width: 10px;
    height: 10px;
}


.h2-title{
    font-size: var(--font-h);
    font-weight: bold;
    line-height: 1em;
    letter-spacing: .05em;
    word-break: break-all;
    padding-bottom: 16px;
}

.h2-center{
  text-align: center;
}

.h2-center .h2-title{
  font-size: var(--font-b);
}


.text-blur{
	color: #fff;
	text-shadow: 1px 1px #FE2C55,-1px -1px #25F4EE;
}


 .flex-box{
  display: flex;
 }


.left-box{
  width: 40%;
}

.right-box{
  width: 58%;
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝アニメーション＝＝＝＝＝＝＝＝＝＝＝＝＝ */



/* ふわっと表示 */

.view{
    width: 200px;
    transform: translateY(10px);
    opacity: 0;
    transition: all .75s ease-in-out .2s;
}

.view.js-on{
    transform: translateY(0px);
    opacity: 1;
}



/* 基本 */
.scr-target {
    opacity: 0;
    transition: all .75s ease-in-out .2s;
}

/* 下から */
.scr-bottom {
    transform: translate3d(0, 10px, 0);
}

/* 上から */
.scr-top {
    transform: translate3d(0, -10px, 0);
}

/* 右から（左方向へ動く） */
.scr-right {
    transform: translate3d(5px, 0, 0);
}

/* 左から（右方向へ動く） */
.scr-left {
    transform: translate3d(-5px, 0, 0);
}

/* 表示時 */
.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝ボタン＝＝＝＝＝＝＝＝＝＝＝＝＝ */

    .btn-text{
        position: relative;
        z-index: 3;
    }
    #liver .detail-btn{
          display: flex;
    justify-content: end;
    }

/* ボタン本体 */
      #liver .detail-btn a {
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        width: 250px;
        padding: 16px 52px 16px 20px; /* 右に余白（アイコン分） */
        display: block;
        color: #fff;
        text-decoration: none;
      }

      .last-btn a{
         border: 1px solid var(--pink);
      }

      /* ★ 左から右へ流れる背景アニメーション */
      .btn-fill-left::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(247, 143, 208, 0.9); /* 適度なホバー背景色 */
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease-out;
      }
      .btn-fill-left:hover::before {
        transform-origin: left;
        transform: scaleX(1);
      }

      /* ===========================
   右端：線だけの円＋矢印
   =========================== */
      .btn-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border: 1px solid #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s ease, border 0.3s ease;
      }

      /* 中の矢印 */
      .arrow {
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
      }

      /* ★ ホバー時：円に背景がつき、矢印が右へスライド */
      .btn-fill-left:hover .btn-icon {
        background: #fff;
        border-color: #fff;
      }
      .btn-fill-left:hover .arrow {
        transform: translateX(3px) rotate(45deg);
        border-color: #000; /* 円が白背景になるので黒に変更 */
      }




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝スライダ―ドット＝＝＝＝＝＝＝＝＝＝＝＝＝ */




.slick-dots li button:before {
    font-family: 'slick';
    font-size: 24px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    content: '•';
    text-align: center;
    opacity: .8;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 2;
}


.slick-dots li.slick-active button:before {
    opacity: .8;
    color: var(--pink);
}

.slick-dots {
    bottom: -130px;
  }



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */




/* =============================

background

============================= */



    body {
      margin: 0;
      padding: 0;
      position: relative;
      background: var(--black); /* 黒背景とかお好みで */
      overflow-x: hidden;
    }

    .orb {
      position: absolute;
      width: 60vw;
      height: 60vw;
      border-radius: 50%;
      filter: blur(200px);
      animation: move-orb 10s infinite alternate;
      background: radial-gradient(circle, rgba(255, 0, 150, 0.8) 0%, rgba(255, 0, 150, 0) 70%);
      top: 0;
      left: 10%;
      z-index: -1;
      opacity: 0.9;
    }

    .orb:nth-child(2) {
      width: 60vw;
      height: 60vw;
      background: radial-gradient(circle, rgba(0, 200, 255, 0.7) 0%, rgba(0, 200, 255, 0) 70%);
      animation-duration: 75s;
      animation-direction: alternate-reverse;
      top: 20%;
      right: 10%;
    }

    .orb:nth-child(3) {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgb(255 0 196 / 60%) 0%, rgba(255, 255, 0, 0) 70%);
    animation-duration: 90s;
    top: 60%;
    left: 0;
    }

    .orb-box{
      overflow: hidden;
    }

    .orb,
    .orb-box{
        pointer-events: none;
    }

    @keyframes move-orb {
      0% {
        transform: translate(-20vw, -20vw) scale(1);
      }
      100% {
        transform: translate(20vw, 20vw) scale(1.3);
      }
    }







    /* 背景動画のフェード＆ぼかし */
.fv_movie {
  transition: filter 0.8s ease, opacity 0.8s ease;
}

.fv_fallback {
  filter: blur(10px);              /* ★非blur状態を明示 */
  opacity: 0;
  transition: filter 0.6s ease, opacity 0.6s ease;
}


/* ぼかし適用 */
.fv_movie.blur,
.fv_fallback.blur {
  filter: blur(70px) brightness(0.8);
  transition: filter 0.4s ease;
}


/* フェードアウト */
.fv_movie.fadeout,
.fv_fallback.fadeout {
  opacity: 0; 
}

/* orb の初期状態（非表示） */
.orb-box {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.5s ease;
}

/* 表示開始 */
.orb-box.show {
  opacity: 1;
}










/* =============================

header

============================= */

.head-logo{
    display: flex;
    align-items: center;
    width: 30%;
}

.header-wrap{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-left: 72px;
}

.fv-text{
  font-size: 16px!important;
}

.logo-box {
    width: 60%;
}

.logo-box a{
    width: var(--margin01);
    display: flex;
    align-items: center;
    width: 100%;
}

.logo-box img{
    width: 130px;
    display: inline-block;
}

.head-logo,
.logo-box,
.logo-box a
{
    width: auto;
}


/* =============================

nav

============================= */

/* =========================================
  BASE HEADER
========================================= */
header {
  width: 100%;
  position: fixed;
  z-index: 80000;
  background-color: transparent;
  padding: var(--margin06) 0;
  margin-top: 30px;
}

/* =========================================
  OVERLAY（黒背景）
========================================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 900; /* nav と btn19 の間に入る最適値 */
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

/* =========================================
  MOBILE NAV MENU
========================================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;         /* PC時 */
  height: 100vh;
  background: #000;
  transform: translateX(20%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.mobile-nav.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* closing（アニメーション維持） */
.mobile-nav.closing .nav-list li {
  opacity: 0;
  transform: translateY(-10px);
}

.mobile-nav.closing .nav-list li:nth-child(1) { transition-delay: 0.4s; }
.mobile-nav.closing .nav-list li:nth-child(2) { transition-delay: 0.3s; }
.mobile-nav.closing .nav-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.closing .nav-list li:nth-child(4) { transition-delay: 0.1s; }
.mobile-nav.closing .nav-list li:nth-child(5) { transition-delay: 0s; }

/* =========================================
  NAV ITEMS
========================================= */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 40px;
  width: 100%;
}

.nav-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-bottom: 24px;
}

.mobile-nav.open .nav-list li {
  opacity: 1;
  transform: translateY(0);
}

.nav-list li:nth-child(1) { transition-delay: 0.15s; }
.nav-list li:nth-child(2) { transition-delay: 0.25s; }
.nav-list li:nth-child(3) { transition-delay: 0.35s; }
.nav-list li:nth-child(4) { transition-delay: 0.45s; }
.nav-list li:nth-child(5) { transition-delay: 0.55s; }

/* =========================================
  LINK STYLE
========================================= */
.nav-list li a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  display: block;
  padding-bottom: 5px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

.nav-list li a:hover {
  background-size: 100% 1px;
  background-position: bottom left;
}

/* =========================================
  HAMBURGER BUTTON （アニメも保持）
========================================= */
#btn19 {
  position: fixed;
  top: 60px;
  right: 60px;
  z-index: 1100;
  width: 40px;
  height: 34px;
  cursor: pointer;
}

#btn19 span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.5s ease;
}

#btn19 span:nth-of-type(1) { top: 0; }
#btn19 span:nth-of-type(2) { top: 15px; }
#btn19 span:nth-of-type(3) { bottom: 0; }

/* 円アニメ（保持） */
#btn19::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 84px;
  height: 84px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all 0.75s;
}

/* active → ✕ 変形 */
#btn19.active span:nth-of-type(1) {
  transform: translateY(20px) rotate(-45deg);
  top: -6px;
  left: -2px;
}

#btn19.active span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  animation: active-btn19-bar02 0.8s forwards;
}

@keyframes active-btn19-bar02 {
  100% { height: 0; }
}

#btn19.active span:nth-of-type(3) {
  transform: translateY(-20px) rotate(45deg);
  bottom: -3px;
  left: -2px;
}

#btn19.active::after {
  animation: active-btn19 0.7s 0.25s forwards;
}

@keyframes active-btn19 {
  0%   { border-color: transparent; transform: rotate(0); }
  25%  { border-color: transparent #fff transparent transparent; }
  50%  { border-color: transparent #fff #fff transparent; }
  75%  { border-color: transparent #fff #fff #fff; }
  100% { border-color: #fff; transform: rotate(-680deg); }
}
      


 /* =============================

fv

============================= */




/* ===============================
   ファーストビューの背景（動画/画像）
================================ */
.fv_bk {
  height: 100svh;
  width: 100%;
}

.fv_movie {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  position: fixed;
  inset: 0;
  z-index: -2;
}

/* 動画が再生できない場合の静止画 */
.fv_fallback {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  position: fixed;
  inset: 0;
  opacity: 0;
  z-index: -3;
  transition: opacity 0.4s ease;
}

.fv_fallback.show {
  opacity: 1;
  z-index:-2;
}

/* ===============================
   ファーストビューのテキスト配置
================================ */


.fv-box {
  display: flex;
  justify-content: space-between;
  height: 100svh;
  align-items: flex-end;
}

.fv-title{
      padding-bottom: 10%;
}

/* タイトル */
.fv-title h1 {
  font-size: 120px;
  color: #fff;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: .05em;
  padding-bottom: 16px;
}





/* スクロールダウンの位置 */
.scroll-box {
    position: relative;
    right: 0;
    top: -200px;
  writing-mode: vertical-rl;
}
/* 線のアニメーション部分 */
.scroll-box::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
/* 線の背景色 */
.scroll-box::after {
  background-color: #ccc;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


.scroll-box p{
writing-mode: sideways-lr;
}




 /* =============================

introduction

============================= */


.intro-box{
  display: flex;
  justify-content: space-between;
}




/* =============================

about

============================= */


.about-box{
  display: flex;
  justify-content: space-between;
  padding: 10% 0;
}

.about-left-box{
  width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


.about-right-box{
  background: url(../img/about_img.png) no-repeat center/ contain;
  width: 100%;
  height: 500px;
}



/* =============================

support-system

============================= */


.support .h2-title{
    font-size: var(--font-c);
}

.support-img{
    mask-image: url(../img/sup_icon01.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain; 
    width: 100%;
    height: 80px;
    fill: #fff;
    background: #fff;
}

.sd02{
    mask-image: url(../img/sup_icon02.svg);
}

.sd03{
    mask-image: url(../img/sup_icon03.svg);
   margin-top: 20%;
}

.sd04{
    mask-image: url(../img/sup_icon04.svg);
    margin-top: 20%;
}


.support-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.support-title{
  order:1;
  font-size: var(--font-i);
    padding: 16px 0;
}

.support-item{
  width: 40%;
  display: flex;
  flex-direction: column;
  order: 2;
}

.support-detail{
  order:3;
  font-size: var(--font-f);
}




/* =============================

whiy choose us

============================= */


th,td{
   padding: 1.8em 1.2em;
}

.reason-box{
  color: #fff;
  overflow: auto;
  padding: 10% 0;
}

.reason-box table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  white-space: nowrap; 
}

.tb-red{
  background: rgba(254,0,195,.5);
  border: 1px solid rgba(254,0,195,.5);
  width: 30%;
}

.tb-gray,
.tb-list{
  background: rgba(86,85,75,.5);
  border: 1px solid rgba(86,85,75,.5);
  width: 30%;
}

.tb-list{
  width: 10%;
}

.tb-red-list{
  background: rgba(247,143,208,.5);
  border: 1px solid rgba(247,143,208,.5);
  width: 30%;
}

.tb-gray-list{
    border: 1px solid rgba(86,85,75,.5);
}






/* =============================

growth map

============================= */


#liver .flow-h2 .h2-title{
    font-size: 40px;
}

#liver .flow-items{
      border: 1px solid #ffffff;
    border-radius: 10px 10px 0 0;
}

#liver .flow-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#liver .flow-h2,
#liver .flow-items{
  width: 30%;
}


.fa03,.fa04,.fa05{
  margin-top: 6%;
}

#liver .flow-content{
  display: flex;
  flex-direction: column;
  position: relative;
}

#liver .flow-content dt,
#liver .flow-content dd{
  padding: 8%;
}

#liver .flow-content dt{
  padding-bottom:0;
}

#liver .flow-arrow{
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    border-right: 0;
        width: 10px;
    height: 10px;
}



#liver .flow-title{
  order: 2;
  padding-top: 8%;
}

#liver .flow-img{
  background: url(../img/flow_01.jpg) no-repeat center / cover;
  width: 100%;
  order: 1;
  height: 150px;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}

#liver .flow-img::after{
  content: "01";
  position: absolute;
  color:rgba(254,0,195,.8);
  bottom: -10px;
  z-index: 1;
  font-size: var(--font-c);
  left: 20px; 
  font-weight: bold;
}

#liver .fi02{
  background: url(../img/flow_02.jpg) no-repeat center / cover;
}

#liver .fi02::after{
  content: "02";
}

#liver .fi03{
  padding-top: 20%;
  background: url(../img/flow_03.jpg) no-repeat center / cover;
}

#liver .fi03::after{
  content: "03";
}

#liver .fi04{
  padding-top: 20%;
  background: url(../img/flow_04.jpg) no-repeat center / cover;
}

#liver .fi04::after{
  content: "04";
}


#liver .fi05{
  padding-top: 20%;
  background: url(../img/flow_05.jpg) no-repeat center / cover;
}

#liver .fi05::after{
  content: "05";
}


#liver .flow-detail{
  order: 3;
  padding: 8% 0;
}

#liver .flow-margin{
  margin-top: 6%;
}


 /* =============================

voice

============================= */



.voice-h2 .h2-title{
  font-size: var(--font-b);
}

.voice-box{
  padding: 10% 0 0;
}

.voice-box .left-box{
  background: url(../img/voice_img.png) no-repeat center / contain;
  width: 100%;
  height: 500px;
}

.voice-box .right-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }


  .voice-item{
    background:rgba(247,143,208,.5);
    padding: 2em;
    position: relative;
    margin: 1em 0;
  }

  .voice-item::before{
    position: absolute;
    content: "";
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid rgba(247,143,208,.5);
    border-right: 0;
    left: -10px;
    transform: rotate(180deg);
    top: 40px;
  }

  .vi02::before,
  .vi03::before{
        top: 30px;
  }

  .voice-item p{
    position: relative;
  }


  .voice-item p::before{
    content: "''";
    color: var(--pink);
    font-size: 40px;
    position: absolute;
    top: -30px;
    opacity: .7;
    z-index: -1;
  }  


    .voice-item p::after{
    content: "''";
    color: var(--pink);
    font-size: 40px;
    position: absolute;
    right: 0;
    opacity: .7;
    z-index: -1;
  }  






 /* =============================

earning model

============================= */


.earning-content{
  padding: 10% 0;
}

.earning-content dl{
  display: flex!important;
  flex-direction: column;
}


.earning-h2{
  display: flex;
  flex-direction: column;
}

.earning .flex-box{
  border-bottom: 1px solid #fff;
      padding-bottom: 6%;
}

.earning .right-box{
  display: flex;
}

.earning .right-box p{
 width: 90%;
}

.earning-h2 p{
  width: 40%;
}

.earning-detail{
  order:3;
  font-size: var(--font-f);
      padding-right: 10%;
}
.earning-title{
  order:2;
  font-size: var(--font-i);
    padding: 16px 0;
}
.earning-img{
    mask-image: url(../img/em_icon01.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain; 
    width: 100%;
    height: 80px;
    fill: #fff;
    background: #fff;
    order: 1;
}

.em02{
   mask-image: url(../img/em_icon02.svg);
}

.em03{
   mask-image: url(../img/em_icon03.svg);
}


.em04{
   mask-image: url(../img/em_icon04.svg);
}



#liver .arrow_box {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 20px 0 0;
    width: 100%;
}

#liver .prev-arrow,
#liver .next-arrow {
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(254,0,195,.5);
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
    top: -20px;
}

#liver .prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
}

#liver .prev-arrow::before,
#liver .next-arrow::before{
    position:absolute;
    content: "";
    width:10px;
    height:10px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

.slick-dots li button:before {
    position: static;
    display: block;
    width: 100%;
    margin: 0;
    list-style: none;
    text-align: center;
        display: block;
    /* position: absolute;
    top: 60px;
    left: 50px; */

}

.slick-dots li{
      margin: 0 15px;
}



.slick-slide {
  height: auto !important;
}

.slick-track {
  display: flex !important;
  align-items: stretch !important;
}

/* =============================

community

============================= */


.community-h2 .h2-title{
  font-size: var(--font-b);
}

.community .flex-box{
  justify-content: space-between;
}

.community-right{
  width: 100%;
  display: flex;
  justify-content: end;
}


.commnunity-left{
  width: 100%;
}

.community-text{
    padding-top: 24%;
}

.community-img {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 3px;
grid-row-gap: 3px;
width: 80%;
height: 500px;
}

.div1 { 
  grid-area: 1 / 1 / 2 / 3;
  background: url(../img/com_img01.jpg) no-repeat center / cover;
}
.div2 { 
  grid-area: 2 / 1 / 3 / 2;
 background: url(../img/com_img02.jpg) no-repeat center / cover;}
.div3 {
   grid-area: 2 / 2 / 3 / 3; 
   background: url(../img/com_img03.jpg) no-repeat center / cover;}
.div4 { 
  grid-area: 3 / 1 / 4 / 3; 
 background: url(../img/com_img04.jpg) no-repeat center top 36% / cover;}






 /* =============================

requirement

============================= */


.req-flow-content{
  display: flex;
  justify-content: space-between;
}

.req-flow-item:not(:last-child){
  padding-right: 6%;
}

.requirement-box{
  padding: 10% 0;
}

.req-detail{
  order:3;
  font-size: var(--font-f);
}
.req-title{
  order:1;
  font-size: var(--font-i);
    padding: 16px 0;
}


.req-img{
    mask-image: url(../img/step_icon01.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain; 
    width: 100%;
    height: 80px;
    fill: #fff;
    background: #fff;
    order: 2;
}

.ri02{
    mask-image: url(../img/step_icon02.svg);
}

.ri03{
    mask-image: url(../img/step_icon03.svg);
}

.ri04{
    mask-image: url(../img/step_icon04.svg);
}


.requirement-box dl{
  display: flex;
}

.requirement-box dl:not(:last-child){
  margin-bottom: 3px;
}

.requirement-box dt{
  background: rgba(254,0,195,.3);
  width: 20%;
  padding: 3em;
  align-content: center;
}

.requirement-box dd{
  background: rgba(255,255,255,.3);
  width: 80%;
  padding: 3em;
}






 /* =============================

message

============================= */


.message{
  position: relative;
}

.message-text{
  padding: 10% 0;
  text-align: center;
}

.message-bk-img{
  position: relative;
      z-index: -1;
}

.message-img{
  background: url(../img/message_img01.jpg) no-repeat center / cover;
    width: clamp(9.375rem, 8.75rem + 3.13vw, 12.5rem);
    height: clamp(9.375rem, 8.75rem + 3.13vw, 12.5rem);
    position: absolute;
    top: -700px;
}

.mi02{
  background: url(../img/message_img02.jpg) no-repeat center / cover;
  top: -450px;
  left: 80px;
}

.mi03{
  background: url(../img/message_img03.jpg) no-repeat center / cover;
  top: -250px;
  left: 30px;
}

.mi04{
  background: url(../img/message_img04.jpg) no-repeat center / cover;
  top: -630px;
  right: 80px;
}

.mi05{
  background: url(../img/message_img05.jpg) no-repeat center / cover;
  top: -350px;
  right: 30px;
}


.message-bk{
background: rgba(255, 255, 255, .4);
    width:clamp(6.25rem, 5.625rem + 3.13vw, 9.375rem);
    height: clamp(6.25rem, 5.625rem + 3.13vw, 9.375rem);
    position: absolute;
    top: -580px;
    left: 10px;
    z-index: -1;
}

.mb02{
  background: rgba(255, 255, 255, .4);
    width: clamp(6.25rem, 5.625rem + 3.13vw, 9.375rem);
    height: clamp(6.25rem, 5.625rem + 3.13vw, 9.375rem);
    position: absolute;
    z-index: -1;
    top: -700px;
    right: 30px;
}

.mb03{
  background: rgba(255, 255, 255, .4);
    width: clamp(6.25rem, 5.625rem + 3.13vw, 9.375rem);
    height:clamp(6.25rem, 5.625rem + 3.13vw, 9.375rem);
    position: absolute;
    z-index: -1;
    top: -220px;
    right: 0;
}





 /* =============================

last

============================= */



.last-box{
    justify-content: space-between;
}


.last .h2-title{
      font-size: 40px;
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


#liver .last-box a{
    background: var(--pink);
    color: #fff;
    width: 80%;
    display: block;
    padding: 1em;
    border-radius: 80px;
    font-weight: bold;
    font-size: var(--font-d);
    justify-self: right;
}




 /* =============================

footer

============================= */


.footer-box{
  display: flex;
}

.footer-box li:nth-child(2n){
  padding: 0 16px;
}

.footer-box ul li a,
.footer-list h2 a{
    display: flex;
    align-items: center;
    font-size: var(--font-g)!important;
}

.footer-box:first-child{
    width: 30%;
}


.footer-list h2{
        padding-bottom: 10%;
}

.footer-list img{
  width: 100px;
}

.footer-middle-list ul{
      padding-left: 10px;

}

.footer-prpl{
    font-size: 80%;
    line-height: 1.8em;
}

.footer-logo img{
    width: 100%;
}

.footer-others{
    display: flex;
}

.footer-others p{
    padding: 0 8px ;
}


footer{
    color: #fff;
    padding:  var(--margin02) 0;
}

.footer-top{
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

}




.footer-list h2{
    font-size: var(--font-f);
    font-weight: bold;
}

.footer-list ul li{
    font-size: var(--font-g)!important;
    line-height: 1.9rem;
}

.footer-list ul li:hover,
.footer-list h2 a:hover,
.footer-others a:hover,
.footer-bottom-list a:hover{

  color: #3f3a39;
  transition: .2s;
}

.footer-list ul li:hover .link-icon{
    background: url(../img/link_icon.png) no-repeat center / cover;
}



.footer-overview{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.footer-bottom{
  display: flex;
  justify-content: space-between;
    padding-top: 48px;
    font-size: var(--font-g)!important;
}

.footer-bottom p{
  font-size: 80%;
}

.text-indent{
    display: block;
    width: 1em;
    height: auto;
}





/* =============================

sitemap

============================= */

#sitemap-pg{
  padding: 15% 0 10%;
}

.sitemap-box .footer-box,
.sitemap-box .footer-contents{
 width: 100%;
}

.sitemap-box{
  padding: 4% 0;
}

.sitemap-box h2{
  color: var(--red);
}

.sub-top-title{
    display: flex;
    justify-content: space-between;
}

#sitemap-pg .h2-title{
    font-size: var(--font-d);
        display: flex;
    align-items: center;
    letter-spacing: .1em;
}

#sitemap-pg .h2-title-box{
    position: relative;
    width: 100%;
    top: -180px;
    right: 0;
}

#sitemap-pg .h2-title-accent{
    font-size: 160px;
    color: var(--gray);
    position: absolute;
    z-index: -1;
    right: 0;
    white-space: nowrap;
}

#sitemap-pg .h2-accent{
    font-size: var(--font-b);

}

#sitemap-pg .title-accent{
    display: inline-block;
}

#sitemap-pg .title-img{
    background: url(../img/page-top.png) no-repeat center / cover;
    width: 100%;
    height: 250px;
    margin: 36px 0;
    box-shadow: 0px 0px 20px -6px #cfcfcf;
}

#sitemap-pg .link-border{
     border-bottom: 1px solid var(--gray);
     padding: 4%;
}

#sitemap-pg .footer-box:nth-of-type(2){
  margin: 0 6%;
}

#sitemap-pg  .footer-list a{
    display: block;
    position: relative;
  }


#sitemap-pg .footer-list a::after{
    position: absolute;
    content: ">";
    display: inline-block;
    right: 0;
    font-size: 80%;
}

@media screen and (max-width: 1200px){

.sitemap-box{
  flex-direction: row!important;
 
}

}

@media screen and (max-width: 1000px){
.sitemap-box > a{
 font-size:  var(--font-f)!important;
}

}

@media screen and (max-width: 800px){

.sitemap-box{
  flex-direction: column!important;
}

  #sitemap-pg .footer-box:nth-of-type(2){
  margin: 0;
}

  #sitemap-pg .footer-box{
  margin: 4% 0;
}

#sitemap-pg .link-border{
     border-bottom: 1px solid var(--gray);
     padding: 6%;
}

.sitemap-box{
  padding: 8% 0;
}


}

@media screen and (max-width: 640px){

  #sitemap-pg .link-border{
            padding: 12% 6%;
  }

}


/* =============================

animation

============================= */





.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ========== 画像表示アニメーション ========== */



/* 共通スタイル */
.clip-img-wrapper {
  overflow: hidden;
  display: block;
}
.clip-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: clip-path 0.6s cubic-bezier(.01, .79, .91, .97), transform 1.2s;
}

.clip-img-wrapper {
  overflow: hidden;
  display: block;
}
.clip-img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    clip-path 0.6s cubic-bezier(.01,.79,.91,.97),
    transform 1.2s;
  transition-delay: var(--delay, 0s);
}

/* 上から */
.clip-img-wrapper-top img {
  clip-path: inset(100% 0 0 0);
}
.clip-img-wrapper-top.show img {
  clip-path: inset(0% 0 0 0);
  transform: translateY(-6px);
}

/* 下から */
.clip-img-wrapper-bottom img {
  clip-path: inset(0 0 100% 0);
}
.clip-img-wrapper-bottom.show img {
  clip-path: inset(0% 0 0 0);
  transform: translateY(-6px);
}

/* 左から */
.clip-img-wrapper-left img {
  clip-path: inset(0 100% 0 0);
}
.clip-img-wrapper-left.show img {
  clip-path: inset(0% 0 0 0);
  transform: translateX(-6px);
}

/* 右から */
.clip-img-wrapper-right img {
  clip-path: inset(0 0 0 100%);
}
.clip-img-wrapper-right.show img {
  clip-path: inset(0 0 0 0);
  transform: translateX(6px);
}







/* ========== リンクアニメーション ========== */


.btn-hover-anime{
  z-index: 1;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  color: white;
  padding: 1em 2em;
  outline: none;
  border: none;
  background-color: var(--red);
  width: 50%;
  border: solid 1px var(--red);
  font-weight: bold;
}

.btn-hover-anime::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  transform-origin: center right;
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}

.btn-hover-anime:hover {
  cursor: pointer;
  color: var(--red);
  border: solid 1px var(--red);
}

.btn-hover-anime:hover::before {
  transform-origin: center left;
  transform: scaleX(1);
}

.btn-hover-arrow{
   display: flex;
    justify-content: space-between;
}

.btn-hover-arrow span{
    transition: .5s;
}

.btn-hover-anime:hover .btn-hover-arrow span{
        transform: translateX(10px);
    color: var(--red);
}


.btn-hover-arrow:hover span{
    transform: translateX(10px);
    color: var(--red);
}




/* ========== 矢印アニメーション ========== */

.c-arrow-link {
  position: relative;
  padding-right: 40px;
  display: block;
}
.c-arrow-link--icon {
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 18px;
    margin: auto 0;
    line-height: 1;
    transform: translate(0, -70%);
}
.c-arrow-link--icon:before,
.c-arrow-link--icon:after {
  content: "➜";
  position: absolute;
  top: 0;
  right: 3px;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  color: var(--red);
  font-weight:bold;
}
.c-arrow-link--icon:after {
  transform: translateX(-100%);
}
.c-arrow-link.is-hover .c-arrow-link--icon:before {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}
.c-arrow-link.is-hover .c-arrow-link--icon:after {
  animation-name: transformRightLeft;
}
.c-arrow-link.is-hover:hover .c-arrow-link--icon:before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.c-arrow-link.is-hover:hover .c-arrow-link--icon:after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}



