@charset "UTF-8";
/*-------------------------
- base
- color
- common
- fadein
- header
- footer
- mv_sec
- intro_sec
- about_sec
- pickup_sec
- modal
-------------------------*/



/*=======================================
　base
=======================================*/
body {
  overflow-x: hidden;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #111;
  font-size: 0.96em;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.16em;
  line-height: 1.9;
}

@media screen and (max-width: 768px) { 
  body {
    font-size: calc(0.24vw + 0.76rem);
  }

}

.zen-old {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

main {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}

main .inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.anchor {
  display: block;
  padding-top: 160px;
  margin-top: -120px;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

a:hover {
  opacity: 0.7;
}

/*=======================================
　color
=======================================*/
:root {
  --main_navy: #1d386e;
  --main_green: #286b2d;
  --sub_green: #8dc21f;
}

/*=======================================
　common
=======================================*/
/* notes */
.notes {
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .notes {
    font-size: 8px;
  }
}

/*=======================================
　fadein
=======================================*/
.fade-in {
  opacity: 0;
  -webkit-transition: 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.fade-in.is-show {
  opacity: 1;
}

/*下から*/
.fadeIn_up {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}
.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*その場で出現*/
.fadeIn {
  -webkit-transition: 2s;
  transition: 2s;
}

/*左から*/
.fadeIn_left {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
}

/*右から*/
.fadeIn_right {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
}


.fadeIn_left > .flex-u,
.fadeIn_left > .flex,
.fadeIn_right > .flex-u,
.fadeIn_right > .flex {
  opacity: 0;
  transition: 1.2s cubic-bezier(0, 0, 0, 1);
}
.fadeIn_left.is-show > .flex-u,
.fadeIn_left.is-show > .flex,
.fadeIn_right.is-show > .flex-u,
.fadeIn_right.is-show > .flex {
  opacity: 1;
  transition-delay: 0.8s;
}



.line-container {
  position: relative;
  width: 300px; /* 線の長さを調整 */
  height: 300px; /* 線の長さを調整 */
  z-index: 0;
}

/* やね線左上 */
.fade-in.is-show .line-diagonal-left01 {
  position: absolute;
  top: 0;
  left: 48.5%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: #000; /* 単色（黒） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(135deg); /* 135度（左下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalShort01 1s cubic-bezier(0.2, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-diagonal-right01 {
  position: absolute;
  top: 0;
  left: 44%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション（青から紫） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(45deg); /* 45度（右下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalLong01 2s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

/* やね線右上 */
.fade-in.is-show .line-diagonal-left02 {
  position: absolute;
  top: 0;
  left: 53%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション（青から紫） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(135deg); /* 45度（右下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalLong01 2s cubic-bezier(0.1, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-diagonal-right02 {
  position: absolute;
  top: 0;
  left: 48.5%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: #000; /* 単色（黒） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(45deg); /* 135度（左下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalShort01 1s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

/* やね線右下 */
.fade-in.is-show .line-diagonal-left03 {
  position: absolute;
  top: 0;
  left: 53%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション（青から紫） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(-135deg); /* 45度（右下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalLong01 2s cubic-bezier(0.1, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-diagonal-right03 {
  position: absolute;
  top: 0;
  left: 48.5%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: #000; /* 単色（黒） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(-45deg); /* 135度（左下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalShort01 1s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

/* やね線左下 */
.fade-in.is-show .line-diagonal-left04 {
  position: absolute;
  top: 0;
  left: 48.5%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: #000; /* 単色（黒） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(-135deg); /* 135度（左下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalShort01 1s cubic-bezier(0.2, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-diagonal-right04 {
  position: absolute;
  top: 0;
  left: 44%; /* 中央上部を頂点に */
  height: 20px; /* 線の太さ */
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション（青から紫） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(-45deg); /* 45度（右下方向） */
  transform-origin: left; /* 左端（頂点）を中心に伸縮 */
  animation: stretchDiagonalLong01 2s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

@keyframes stretchDiagonalShort01 {
  0% {
      width: 0;
  }
  100% {
      width: 110%; /* 黒い線を短く */
  }
}

@keyframes stretchDiagonalLong01 {
  0% {
      width: 0;
  }
  100% {
      width: 424.26%; /* グラデーションの線を3倍長く（141.42% × 3） */
  }
}



/* 左下から右上へ斜めに伸びる） */
.fade-in.is-show .line-ddiagonal-left01 {
  position: absolute;
  top: 190px; /* 左下から開始 */
  left: 0;
  height: 20px; /* 線の太さ */
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)); /* グラデーション */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(-45deg); /* 45度（左下から右上へ） */
  transform-origin: left bottom; /* 左下を基準に伸縮 */
  animation: stretchDiagonal 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-vvertical-right01 {
  position: absolute;
  top: 0; /* 右上から開始 */
  left: 62%; /* 中央上部を頂点に */
  width: 20px; /* 線の太さ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション */
  height: 0; /* 初期状態で高さ0 */
  transform: rotate(-45deg); /* 45度（左下から右上へ） */
  transform-origin: left top; /* 左下を基準に伸縮 */
  animation: stretchVertical 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards 1s; /* 1秒遅延 */
}

/* 右下から左上へ斜めに伸びる） */
.fade-in.is-show .line-ddiagonal-left02 {
  position: absolute;
  top: 206px; /* 左下から開始 */
  right: 0;
  height: 20px; /* 線の太さ */
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)); /* グラデーション */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(45deg); /* 45度（左下から右上へ） */
  transform-origin: right bottom; /* 左下を基準に伸縮 */
  animation: stretchDiagonal 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-vvertical-right02 {
  position: absolute;
  top: 0; /* 右上から開始 */
  left: 34%; /* 中央上部を頂点に */
  width: 20px; /* 線の太さ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション */
  height: 0; /* 初期状態で高さ0 */
  transform: rotate(45deg); /* 45度（左下から右上へ） */
  transform-origin: left top; /* 左下を基準に伸縮 */
  animation: stretchVertical 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards 1s; /* 1秒遅延 */
}

/* 右上から左下へ斜めに伸びる） */
.fade-in.is-show .line-ddiagonal-left03 {
  position: absolute;
  top: 0; /* 左下から開始 */
  right: 0;
  height: 20px; /* 線の太さ */
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)); /* グラデーション */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(-45deg); /* 45度（左下から右上へ） */
  transform-origin: right bottom; /* 左下を基準に伸縮 */
  animation: stretchDiagonal 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-vvertical-right03 {
  position: absolute;
  top: 218px; /* 右上から開始 */
  left: 34%; /* 中央上部を頂点に */
  width: 20px; /* 線の太さ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション */
  height: 0; /* 初期状態で高さ0 */
  transform: rotate(135deg); /* 45度（左下から右上へ） */
  transform-origin: left top; /* 左下を基準に伸縮 */
  animation: stretchVertical 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards 1s; /* 1秒遅延 */
}

/* 左下から左上へ斜めに伸びる） */
.fade-in.is-show .line-ddiagonal-left04 {
  position: absolute;
  top: 0; /* 左下から開始 */
  left: 0;
  height: 20px; /* 線の太さ */
  background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)); /* グラデーション */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(45deg); /* 45度（左下から右上へ） */
  transform-origin: left bottom; /* 左下を基準に伸縮 */
  animation: stretchDiagonal 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards;
}

.fade-in.is-show .line-vvertical-right04 {
  position: absolute;
  top: 232px; /* 右上から開始 */
  left: 71%; /* 中央上部を頂点に */
  width: 20px; /* 線の太さ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション */
  height: 0; /* 初期状態で高さ0 */
  transform: rotate(-135deg); /* 45度（左下から右上へ） */
  transform-origin: left top; /* 左下を基準に伸縮 */
  animation: stretchVertical 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards 1s; /* 1秒遅延 */
}




/* 1本目の線アニメーション（左下から右上へ） */
@keyframes stretchDiagonal {
  0% {
    width: 0;
  }
  100% {
    width: 300px; /* 300px × √2（斜辺の長さ） */
  }
}

/* 2本目の線アニメーション（右上から右下へ） */
@keyframes stretchVertical {
  0% {
    height: 0;
  }
  100% {
    height: 424.26%; /* コンテナの高さに合わせる */
  }
}

/* 1本目の線（右下から左上へ斜めに伸びる） */
.fade-in.is-show .line-diagonal-left02 {
  position: absolute;
  bottom: 0; /* 右下から開始 */
  right: 0;
  height: 20px; /* 線の太さ */
  background: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション（右から左へ） */
  width: 0; /* 初期状態で幅0 */
  transform: rotate(-45deg); /* -45度（右下から左上へ） */
  transform-origin: right bottom; /* 右下を基準に伸縮 */
  animation: stretchDiagonal 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards;
}

/* 2本目の線（左上から左下へ垂直に伸びる） */
.fade-in.is-show .line-vertical-right02 {
  position: absolute;
  top: 0; /* 左上から開始 */
  left: 0;
  width: 20px; /* 線の太さ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(249, 61, 34, 0.8), rgba(93, 50, 98, 0.6), rgba(0, 162, 121, 0.6), rgba(255, 255, 255, 0)); /* グラデーション（上から下へ） */
  height: 0; /* 初期状態で高さ0 */
  animation: stretchVertical 0.9s cubic-bezier(0.2, 0, 0.5, 1) forwards 0.9s; /* 0.9秒遅延 */
}




/*=======================================
　header
=======================================*/
#header {
  width: 100%;
  max-width: 100%;
  height: 60px;
  margin: auto;
  padding: 0;
  position: fixed;
  z-index: 2;
}
#interview #header, #features #header, #new #header {
  width: 100%;
  max-width: 100%;
  height: 70px;
  margin: auto;
  padding: 0;
  position: fixed;
  z-index: 2;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #header {
    height: 10%;
    padding: 0;
    background: none;
    z-index: 100;
  }
  #interview #header, #features #header, #new #header {
    width: 100%;
    max-width: 100%;
    height: 50px;
    margin: auto;
    padding: 0;
    position: fixed;
    z-index: 2;
    background-color: #000;
  }
}

#header .inner-head {
  width: 100%;
  max-width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header h1 {
  position: fixed;
  top: 25px;
  right: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 150px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #header h1 {
    position: fixed;
    top: 15px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 160px;
    height: 28px;
    cursor: pointer;
    z-index: 100;
  }
}


#interview #header h1, #features #header h1, #new #header h1 {
  position: fixed;
  top: 25px;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 120px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  #interview #header h1, #features #header h1, #new #header h1 {
    position: fixed;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
  }
}


  #header .openbtn {
    position: fixed;
    top: 16px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 38px;
    height: 37px;
    background-color: #c4c4c4;
    cursor: pointer;
    z-index: 200;
  }
  #header .openbtn span {
      position: relative;
      display: block;
      width: 60%;
      height: 1px;
      float: left;
      transform-origin: center center;
      transition: transform 250ms ease;
      z-index: 200;
  }
  @media screen and (max-width: 768px) {
    #interview #header .openbtn, #features #header .openbtn, #new #header .openbtn {
        position: fixed;
        top: 7px;
        right: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 38px;
        height: 37px;
        background-color: #c4c4c4;
        cursor: pointer;
        z-index: 200;
      }
  }
 
  #header .openbtn span:nth-of-type(1) {
    width: 60%;
    background-color: #444;
    transform: translateY(-0px);
  }
  #header .openbtn span:nth-of-type(2) {
    width: 60%;
    background-color: #c4c4c4;
    transform: translateY(-0px);
  }
  #header .openbtn span:nth-of-type(3) {
    width: 60%;
    background-color: #444;
    transform: translateY(4px);
  }
  #header .openbtn span:nth-of-type(4) {
    width: 60%;
    background-color: #c4c4c4;
    transform: translateY(4px);
  }
  #header .openbtn span:nth-of-type(5) {
    width: 60%;
    background-color: #444;
    transform: translateY(8px);
  }

  #header .openbtn span:nth-of-type(6) {
    width: 74%;
    background-color: #444;
    -webkit-transform: rotate(-45deg);
            transform: translateX(-1px) translateY(-3px) rotate(-45deg);
    z-index: 90;
  }

  #header .openbtn.active span:nth-of-type(1) {
    top: 1px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #header .openbtn.active span:nth-of-type(2) {
    display: none;
  }
  #header .openbtn.active span:nth-of-type(3) {
   
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #header .openbtn.active span:nth-of-type(4) {
    display: none;
  }
  #header .openbtn.active span:nth-of-type(5) {
    display: none;
  }
  #header .openbtn.active span:nth-of-type(6) {
    display: none;
  }

  #header .openbtn .close {
    display: none;
    width: 38.3359px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
  }
  #header .openbtn.active .close {
    display: block;
  }

  
  #header .g_nav {
    position: fixed;
    z-index: 4;
    top: 0;
    right: 0;
    width: 36%;
    max-width: 580px;
    height: 100vh;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: rgba(0, 0, 0, 0.942);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    flex-wrap: nowrap;
    overflow-y: scroll;
    align-items: center;
    margin: auto 0;
    padding: 8vw 20px 4vw;
    justify-content: flex-start;
  }
  #header .g_nav.panelactive {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  @media screen and (max-width: 768px) {
    #header .g_nav {
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      width: 90%;
      max-width: 90%;
      height: 100vh;
      overflow-y: scroll;
      align-items: center;
      margin: auto;
      padding: 15% 0 0;
    }
  }
  @media screen and (max-width: 768px) {
    #header .g_nav {
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      width: 90%;
      max-width: 90%;
      height: 100vh;
      overflow-y: scroll;
      align-items: center;
      margin: auto;
      padding: 10% 0 0;
    }
  }
  
  

  #header .g_nav nav {
    width: 100%;
    height: auto;
    margin-bottom: 2%;
  }
  @media screen and (max-width: 768px) {
    #header .g_nav nav {
      width: 100%;
      height: auto;
      margin-bottom: 2%;
    }
  }
  #header .g_nav nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin-bottom: 0;
  }
  #header .g_nav nav ul li {
    width: 80%;
    margin: 36px auto 0;
  }
  @media screen and (max-width: 768px) {
    #header .g_nav nav ul li {
      width: 80%;
      margin: 28px auto 0;
    }
  }
  @media screen and (max-width: 375px) {
    #header .g_nav nav ul li {
      width: 80%;
      margin: 18px auto 0;
    }
  }
  #header .g_nav nav ul li:nth-child(5), #header .g_nav nav ul li:nth-child(6) {
    width: 88%;
    margin: 36px auto 0;
  }
  @media screen and (max-width: 768px) {
    #header .g_nav nav ul li:nth-child(5), #header .g_nav nav ul li:nth-child(6) {
      width: 88%;
      margin: 28px auto 0;
    }
  }
  @media screen and (max-width: 375px) {
    #header .g_nav nav ul li:nth-child(5), #header .g_nav nav ul li:nth-child(6) {
      width: 88%;
      margin: 20px auto 0;
    }
  }
  #header .g_nav nav ul li a {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
  }
  #header .g_nav nav ul li a img.ourservice {
    width: 220px;
  }

  #header .g_nav .navi_logo {
    height: 5px;
    margin: 0;
    padding: 0;
  }
  @media screen and (max-width: 768px) {
    #header .g_nav .navi_logo {
      height: auto;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
    }
  }

  #header .g_nav .logo {
    width: 200px;
    max-width: 100%;
    margin: 24% auto 5%;
  }
  @media screen and (max-width: 768px) {
    #header .g_nav .logo {
      width: 190px;
      max-width: 100%;
      margin: 40px auto 10px;
    }
  }
  #header .g_nav p {
    text-align: center;
    margin: 0 auto 30px;
    color: #fff;
    z-index: 10;
  }



/* カレント */
.link-current {
  position: relative;
}
.link-current::after {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background: #323232;
  position: absolute;
  left: 0;
  bottom: -8px;
}


/*=======================================
　footer
=======================================*/

footer .info_area {
  background-image: url("../images/bg_pc.jpg");
  background-size: cover;
  text-align: center;
  margin: 0 auto;
  padding-top: 60px;
  border-bottom: #000 solid 1px;
}
@media screen and (max-width: 768px) {
  footer .info_area {
    background-image: url("../images/bg_sp.jpg");
  }
}

footer .foot_logo {
  width: 200px;
  max-width: 100%;
  margin: auto;
  padding: 10px 0 20px;
}

footer .foot_link {
  margin: auto;
  text-align: center;
  font-size: 1.02em;
  font-weight: 500;
  padding: 10px 0 60px;
  width: 160px;
  height: 100px;
  padding: 1px;
}

footer hr {
  transform: rotate(135deg);
  width: 141px;
  border: 0;
  border-top: 1px solid #333;
  margin: 0;
  padding: 0;
  transform-origin: 0% 0%;
}

footer .link_area {
  width: 100%;
  background-color: #000;
  text-align: center;
  margin: 0 auto 20px;
  padding: 0;
}

footer .link_area ul {
  width: 520px;
  text-align: center;
  margin: auto;
  padding: 36px 0;
  display: flex;
  flex-wrap: wrap;

}
footer .link_area ul li {
  width: 50%;
  text-align: center;
  margin: auto;
  padding: 0;
}

footer .link_area ul li:nth-child(1) {
  width: 50%;
  text-align: center;
  margin-right: -20px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  footer .link_area ul {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: auto;
    padding: 36px 0;
    display: flex;
    flex-wrap: wrap;
  
  }
  footer .link_area ul li:nth-child(1) {
    width: 64%;
    max-width: 98%;
    text-align: center;
    margin: 0 auto 10px;
    padding: 0;
  }
  footer .link_area ul li {
    width: 64%;
    max-width: 98%;
    text-align: center;
    margin: 10px auto 0;
    padding: 0;
  }
}

footer .recruit {
  width: 258px;
  margin-left: 10px;
  margin-bottom: 10px;
}

/*=======================================*/
/* -----main----- */
/*=======================================*/


.section_wrap00 {
  width: 100%;
  max-width: 100%;
  background-image: url("../images/bg_pc.jpg");
  background-repeat: repeat-y;
  background-position: top;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .section_wrap00 {
    width: 100%;
    max-width: 100%;
    background-image: url("../images/bg_sp.jpg");
    background-repeat: repeat-y;
    background-position: top;
    background-size: contain;
  }
}


.section_wrap {
  width: 100%;
  max-width: 100%;
  background-image: url("../images/bg_pc.jpg");
  background-repeat: repeat-y;
  background-position: top;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .section_wrap {
    width: 100%;
    max-width: 100%;
    background-image: url("../images/bg_sp.jpg");
    background-repeat: repeat-y;
    background-position: top;
    background-size: contain;
  }
}





/*=======================================
　mv_sec
=======================================*/
#sec_mv {
    width: 100%;
    max-width: 100%;
    z-index: 0;
    position: relative;
    overflow: hidden;
}

#sec_mv .mv_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; /* 変更 */
}
@media screen and (max-width: 768px) {
    #sec_mv {
        padding-top: 0;
        margin-bottom: 40px;
    }
}

#sec_mv .mv_fixed {
    width: 47vw;
    max-width: 96%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: absolute;
    top: 26vw;
    left: 0;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 768px) {
    #sec_mv .mv_fixed {
        top: 60vw;
        width: 80vw;
    }
}


@media screen and (max-width: 768px) {
    #sec_mv .scroll_fixed {
        width: 36vw;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        position: absolute;
        top: 50vw;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    #sec_mv .scroll_fixed span {
        width: 10px;
        margin: auto;
    }
}

/* スクロールダウンの位置 */
.scroll-top {
    width: 60px;
    height: 60px;
    overflow: hidden;
    transform: skewX(135deg);
    position: absolute;
    top: 36vw;
    left: 18vw;
}

/* 線のアニメーション部分 */
.scroll-top::before {
    animation: scroll-top 2s infinite;
    content: '';
    display: block;
    width: 2px;
    height: 0;
    background-color: #000; /* 黒い線に変更 */
}

/* 線のアニメーション */
@keyframes scroll-top {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

/* モーダル用のリンクをセクション全体に広げる */
#sec_mv .open_btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    text-indent: -9999px; /* テキストを非表示 */
}

/* Add styles for the play button */
#sec_mv .play_button {
    width: 120px; /* Adjust size as needed */
    height: auto;
    position: absolute;
    top: -80px; /* Position above the logo; adjust based on logo size */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    z-index: 5; /* Ensure it’s above the video but below the modal link */
    cursor: pointer;
}
@media screen and (max-width: 768px) {
#sec_mv .play_button {
        width: 30%; /* Smaller size for mobile */
        top: 40px; /* Adjust for mobile */
    }
  }


#sec_mv .mainlogo {
    width: 40vw;
    margin: auto;
}
@media screen and (max-width: 768px) {
    #sec_mv .mainlogo {
    width: 78vw;
    margin: auto;
}
}



/* Ensure the modal link remains clickable */
#sec_mv .open_btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Higher than play button and video */
    cursor: pointer;
    text-indent: -9999px;
}

/*=======================================
　modal
=======================================*/


.modaal-wrapper .modaal-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    background: #000;
    padding: 0;
}

.modaal-wrapper .youtube_modal_content {
    position: relative;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}

.modaal-wrapper .youtube_modal_content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/* モーダルの閉じるボタン */
.modaal-close {
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: -15px;
    right: -15px;
}

@media screen and (max-width: 768px) {
    .modaal-close {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 16px;
        top: -10px;
        right: -10px;
    }
}

/* モーダルの背景を暗くする */
.modaal-overlay {
    background: rgba(0, 0, 0, 0.9) !important;
    opacity: 1 !important; /* モーダル表示時の透明度を確保 */
}
/* モバイル向けに背景をさらに調整する場合（任意） */
@media screen and (max-width: 768px) {
    .modaal-overlay {
        background: rgba(0, 0, 0, 0.9) !important; /* モバイルで少し暗く */
    }
}



/*=======================================
　sec_read
=======================================*/

#sec_read {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #sec_read {
    margin-top: 20px;
  }
}

details {
  margin-bottom: 16px;
}

details:last-child {
  margin-bottom: 0;
}


.js-details {
    width: 100%;
	max-width: 100%;
	margin: 0 auto 30px;
	padding: 0;
}

/* --------レイアウト用のスタイル-------- */

.js-details summary {
	width: 100%;
	max-width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}

.js-details .world_fixed {
  width: 45vw;
  max-width: 96%;
  margin: 0 auto ;
  display: flex;
  align-items: center;
  position: absolute;
  top: 9vw;
  left: 0;
  right: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .js-details .world_fixed {
    width: 62vw;
    max-width: 96%;
    display: flex;
    align-items: flex-end;
    top: 29vw;
  }
}



.js-details summary::-webkit-details-marker {
    display: none;
}

.js-details summary::before,
.js-details summary::after {
    width: 100%;
	max-width: 100%;
    height: 20%;
    content: '';
}

.js-details summary::before {
    position: absolute;
    top: 88%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/btn_open.png");
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
}

.js-details summary::after {
    transition: rotate .3s;
}

.js-details[open] summary::before {
  background: unset;
}

.js-details[open] summary::after {
	position: absolute;
	top: 88%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/btn_close.png");
	background-position: top;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 100;
}

/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;

  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #000;
}


/*=======================================
　about_sec
=======================================*/
#about_sec {
  width: 100%;
  max-width: 100%;
  background-image: url(../images/top_vv.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  #about_sec {
    background: none;
    margin: 0;
    padding: 0;
  }
}
#about_sec .inner {
  margin: auto;
  padding: 4vh 0 4vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #about_sec .inner {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

#about_sec .copy {
  width: 45vw;
  max-width: 100%;
  margin: auto;
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
#about_sec .copy2 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
}




/*=======================================
　movie_sec
=======================================*/
#movie_sec {
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #movie_sec {
    margin: 0;
    padding: 0;
  }
}

#movie_sec .imgmovie {
  margin-top: 5.3333333333vw;
  background: #fff;
  position: relative;
}

.content.flex_area .img_area .img .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.4vw;
}
@media screen and (max-width: 768px) {
  .content.flex_area .img_area .img .play_btn {
    width: 10.9589041096vw;
  }
}

/* モーダル中身 共通 */
.modaal-inner-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.modaal-inner-wrapper .modaal-container {
  width: 84%;
  max-width: inherit;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container {
    width: 90%;
    max-width: inherit;
    background: transparent;
  }
}
.modaal-inner-wrapper .modaal-container .modaal-content-container {
  padding: 0;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container img {
  max-width: 100%;
  height: auto;
}
.modaal-inner-wrapper .modaal-container .modaal-content-container iframe, .modaal-inner-wrapper .modaal-container .modaal-content-container video {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

/* 閉じるボタン 共通 */
.modaal-close {
  position: absolute;
  right: -3.0533333333vw;
  top: -3.0533333333vw;
  cursor: pointer;
  z-index: 10;
  background: url("../images/close_btn.png") no-repeat !important;
  background-size: cover !important;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .modaal-close {
    right: -3.0273972603vw;
    top: -11.2054794521vw;
    width: 8.8630136986vw;
    height: 8.8630136986vw;
  }
}
.modaal-close::before, .modaal-close::after {
  display: none;
}

#movie_sec .mv_fixed {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

#movie_sec .arrow {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  z-index: 10;
}

#movie_sec .arrow p {
  width: 12vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (max-width: 768px) {
  #movie_sec .arrow p {
    width: 28%;
  }
}

#movie_sec .movie {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  z-index: 5;
}

:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.vid_contents {
  width: 100%;/*背景色を横幅いっぱいに広げる*/
  text-align: center;
  margin: auto;
  padding: 0%;/*ここで動画の周りの余白を調整*/
  background: #fff;/*余白の背景色*/
  }
  video.vid_main {
  width: 100%;
  max-width: 100%;
  }


/*=======================================
　service01
=======================================*/

.relative-wrapper {
  height: 0px;
  width: 0px;
}

#sec_service {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #sec_service {
    padding: 0 0 0;
  }
}


.scroll-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 5;
}

.scroll-content {
  display: flex;
  animation: scroll 50s linear infinite;
  margin-top: 60px;
}

.item {
  flex: 0 0 auto;
  width: 300px;/*お好みの幅に調整*/
  height: 150px;/*お好みの高さに調整*/
  margin: 0 10px;/*左右の余白はここを調整*/
  text-align: center;
  line-height: 80px;
  font-size: 24px;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}




#sec_service h3, #sec_service h4 {
  width: 100%;
  max-width: 96%;
  margin: auto;
  text-align: center;
}

#sec_service h3 {
  width: 292px;
  max-width: 96%;
  margin: auto;
  padding-bottom: 20px;
}
#sec_service h4 {
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #sec_service h3 {
    width: 54%;
    max-width: 96%;
    margin: auto;
    padding-bottom: 20px;
  }
  #sec_service h4 {
    padding-bottom: 30px;
  }
}





.service01 {
  margin-top: 0;
  padding: 20px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service01 {
    margin-top: 0;
    padding: 40px 0 0;
  }
}

.service01 ul {
  width: 80vw;
  max-width: 80%;
  margin: 0 0 0 20vw;
}
@media screen and (max-width: 768px) {
  .service01 ul {
    width: 96vw;
    max-width: 96%;
    margin: 0 0 0 4vw;
  }
}

#sec_service .service001 {
  position: relative;
  height: 0;
}

#sec_service .service001 .parts01 {
  position: absolute;
  top: 200px;
  left: 0%;
  z-index: 0; 
}
@media screen and (max-width: 768px) {
  #sec_service .service01 .parts01 {
  width: 100vw;
  height: 80px;
  bottom: -1000px;
  margin-left: -20%;
  z-index: 0;
}
}

#sec_service ul.flex-u {
  display: flex;
  margin: 0 0 0 20vw;
  flex-wrap: wrap;
}


#sec_service ul li  {
  margin-bottom: 60px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #sec_service ul li  {
    margin-bottom: 20px;
    padding: 0;
  }
}
#sec_service ul a:hover li  {
  opacity: 0.7;
}

#sec_service ul li.img03  {
  margin-bottom: 0;
  padding: 0;
}



#sec_service ul li .flex-u  {
  margin: 0;
  padding: 0;
  padding-right: 10%;
  background-color: rgba(255, 255, 255, 0.762);
  border-top: #444 solid 1px;
  border-left: #444 solid 1px;
  border-bottom: #444 solid 1px;
}


/* バナーのスライドカラー00a */
.fade-in.fade-in.is-show .link-container00a {
  position: relative;
  margin: 0 auto;
  overflow: hidden; /* クリッピング用のオーバーフロー */
}

.fade-in.fade-in.is-show .link-container00a img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeRightlink 1.6s cubic-bezier(0.6, 0.0, 0.5, 1.0)forwards;
}

.fade-in.fade-in.is-show .link-container00a::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #ffb426 20%, #00a279 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientRightlink 1.6s cubic-bezier(0.5, 0.0, 0.5, 1.0) forwards;
  z-index: 1;
}

/* バナーのスライドカラー00b */
.fade-in.fade-in.is-show .link-container00b {
  position: relative;
  margin: 0 auto;
  overflow: hidden; /* クリッピング用のオーバーフロー */
}

.fade-in.fade-in.is-show .link-container00b img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeRightlink 1.6s cubic-bezier(0.6, 0.0, 0.5, 1.0)forwards;
}

.fade-in.fade-in.is-show .link-container00b::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #f93d22 20%,#5d3262 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientRightlink 1.6s cubic-bezier(0.5, 0.0, 0.5, 1.0) forwards;
  z-index: 1;
}

/* バナーのスライドカラー00c */
.fade-in.fade-in.is-show .link-container00c {
  position: relative;
  margin: 0 auto;
  overflow: hidden; /* クリッピング用のオーバーフロー */
}

.fade-in.fade-in.is-show .link-container00c img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeRightlink 1.6s cubic-bezier(0.6, 0.0, 0.5, 1.0)forwards;
}

.fade-in.fade-in.is-show .link-container00c::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #00a279 20%,#d033cc 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientRightlink 1.6s cubic-bezier(0.5, 0.0, 0.5, 1.0) forwards;
  z-index: 1;
}


@keyframes fadeRightlink {
  0% {
      opacity: 0;
      clip-path: inset(0 0 0 100%); /* 右側が隠れている */
  }
  90% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientRightlink {
  0% {
      clip-path: inset(0 0 0 100%);
      opacity: 1;
  }
  90% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}



/**/

.service02, .service03, .service04 {
  padding: 76px 20px 60px;
}

.service02 ul {
  width: 958px;
  max-width: 96%;
  margin: 0 auto;
}

.service02 h5 {
  width: 200px;
  max-width: 96%;
}

@media screen and (max-width: 768px) {
.service02 h5 {
    width: 50%;
    max-width: 96%;
    margin: auto;
    padding-bottom: 10px;
 }
}


.service02 li.img02 {
  width: 356px;
  max-width: 96%;
}
@media screen and (max-width: 768px) {
  .service02 .sp img {
   width: 80%;
   max-width: 96%;
   margin: auto;
   padding: 4% 0;
   text-align: center;
  }
}



/*
#interview_01
*/

/*=======================================
　mv_sec2
=======================================*/
#sec_mv2 {
  width: 100%;
  max-width: 100%;
  margin-top: 70px;
  z-index: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #sec_mv2 {
    height: auto;
    margin-top: 50px;
    padding-top: 0;
  }
}

#sec_mv2 .mv_fixed {
  position: absolute;
  top: 7%;
  left: 21%;
  width: 460px;
  max-width: 96%;
  height: 100%;
  margin: 0 auto ;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
#sec_mv2 .mv_fixed {
  position: absolute;
  top: 10%;
  left: 36%;
  width: 20vw;
  max-width: 96%;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
}


#sec_mv2 .number {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 40px;
  max-width: 96%;
  height: 100%;
  margin: 0 auto ;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #sec_mv2 .number {
    position: absolute;
    top: 139vw;
    right: 5%;
    width: 30px;
    max-width: 96%;
    height: 46px;
    margin: 0 auto ;
    display: flex;
    align-items: center;
  }
}

/*=======================================
　sec_interview
=======================================*/


.image-container02a {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden; /* クリッピング用のオーバーフロー */
}

.fade-in.is-show .image-container02a img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeInFromRight 1.2s cubic-bezier(0.42, 0.0, 0.58, 1.0)forwards;
}

.fade-in.is-show .image-container02a::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #ffb426 20%,#00a279 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientFromRight 1.2s cubic-bezier(0.42, 0.0, 0.58, 1.0) forwards;
  z-index: 1;
}


@keyframes fadeInFromRight {
  0% {
      opacity: 0;
      clip-path: inset(0 100% 0 0); /* 右側が隠れている */
  }
  95% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientFromRight {
  0% {
      clip-path: inset(0 100% 0 0);
      opacity: 1;
  }
  95% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}



.image-container02b {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.fade-in.is-show .image-container02b img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 0 0 100%); /* 左から右にクリップで現れる */
  animation: fadeInFromLeft 1.2s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

.fade-in.is-show .image-container02b::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffb426 20%,#00a279 80%);
  clip-path: inset(0 0 0 100%); /* 左から右にクリップで現れる */
  opacity: 1;
  animation: fadeGradientFromLeft 1.2s cubic-bezier(0.5, 0, 0.5, 1) forwards;
  z-index: 1;
}

@keyframes fadeInFromLeft {
  0% {
      opacity: 0;
      clip-path: inset(0 0 0 100%); /* 左側が隠れている */
  }
  90% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientFromLeft {
  0% {
      clip-path: inset(0 0 0 100%);
      opacity: 1;
  }
  90% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}





#sec_interview {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  #sec_interview {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 0 20px;
    text-align: center;
    display: block;
  }
}

#sec_interview .inter_position {
  height: auto;
  position: relative;
  z-index: 1;
}

#sec_interview .inter_position::after {
  content: "";
   display: block;
   clear: both;
}


#sec_interview .parts01 {
  position: absolute;
  top: 30px;
  right: -1%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts01 {
    position: absolute;
    top: 8%;
    right: -1%;
    z-index: 0;
  }
}


#sec_interview .inter_position .parts_flex01 {
  display: flex;
  margin: 0;
  margin-bottom: 60px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_interview .inter_position .parts_flex01 {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: 10px;
  }
}


#sec_interview .inter_position .parts_flex02 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #sec_interview .inter_position .parts_flex02 {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: 10px;
  }
}



#sec_interview .inter_position .parts02 {
  width: 56%;
  max-width: 100%;
  margin: 0;
  margin-bottom: 60px;
  padding: 50px 60px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
  display: flex;
  justify-content: flex-end;
}
#sec_interview .parts02 .read01 {
  width: 440px;
  max-width: 100%;
  padding: 0;
  text-align: left;
}
#sec_interview .parts02 .read01 h3 img {
  width: 310px;
  max-width: 100%;
  margin-bottom: 20px;
}
#sec_interview .read01 p {
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #sec_interview .inter_position .parts02 {
    width: 92%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 0;
    padding: 40px 30px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 5;
    display: flex;
    justify-content: flex-end;
  }
  #sec_interview .parts02 .read01 h3 img {
    width: 70vw;
    max-width: 100%;
    margin-bottom: 20px;
  }
}


#sec_interview .parts03 {
  width: 600px;
  max-width: 100%;
  margin: 0;
  margin-top: 116px;
  margin-left: 60px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts03 {
    width: 600px;
    max-width: 100%;
    margin: 0;
    margin-top: 40px;
    margin-left: 40px;
    padding: 0;
  }
}

#sec_interview .parts04 {
  width: 36%;
  max-width: 100%;
  margin: 0;
  margin-left: 0%;
  margin-right: 4%;
  padding: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts04 {
    width: 60%;
    max-width: 100%;
    margin: 0;
    margin-top: 0px;
    margin-left: 40px;
    padding: 0;
    z-index: 5;
  }
}

#sec_interview .parts05 {
  width: 60%;
  max-width: 100%;
  margin: 0;
  padding: 50px 60px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
  display: flex;
  justify-content: flex-start;
}
#sec_interview .parts05 .read01 {
  width: 500px;
  max-width: 100%;
  padding: 0;
  text-align: left;
}
#sec_interview .parts05 .read01 h3 img {
  width: 384px;
  margin-bottom: 20px;
}
#sec_interview .parts05 .read01 p {
  width: 94%;
  margin-right: 6%;
}
#sec_interview .parts05 .read01 .flex {
  display: flex;
}
#sec_interview .parts05 .read01 .flex p {
  width: 66%;
  margin-right: 4%;
}
#sec_interview .parts05 .read01 .flex .parts_img01 {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts05 {
    width: 92%;
    max-width: 100%;
    margin: 0;
    margin-top: 60px;
    margin-left: 8%;
    margin-bottom: 0;
    padding: 40px 30px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 5;
    display: flex;
    justify-content: flex-end;
  }
  #sec_interview .parts05 .read01 p {
    width: 100%;
    margin-right: 0%;
  }
  #sec_interview .parts05 .read01 .flex {
    display: block;
  }
  #sec_interview .parts05 .read01 .flex p {
    width: 100%;
    margin-right: 0%;
  }
  #sec_interview .parts05 .read01 .flex .parts_img01 {
    width: 60%;
    margin-top: 20px;
  }
  #sec_interview .parts05 .read01 h3 img {
    width: 70vw;
    max-width: 100%;
    margin-bottom: 20px;
  }
}


#interview .scroll-container {
  display: flex;
  overflow: hidden;
  margin-top: 40px;
  width: 100%;
  white-space: nowrap;
  z-index: 5;
}

#interview .scroll-content {
  display: flex;
  margin: 0;
  animation: scroll 80s linear infinite;
  z-index: 5;
}

#interview .item {
  flex: 0 0 auto;
  width: 1280px;/*お好みの幅に調整*/
  height: 220px;/*お好みの高さに調整*/
  margin: 0;/*左右の余白はここを調整*/
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  z-index: 5;
}


#sec_interview .parts06 {
  top: 76%;
  right: -4%;
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts06 {
    top: 30%;
    right: -15%;
    position: absolute;
    z-index: 0;
  }
}

#sec_interview .parts07 {
  width: 34%;
  max-width: 24vw;
  margin: 0;
  margin-top: 80px;
  margin-left: 10%;
  margin-right: 4%;
  padding: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts07 {
    width: 50%;
    max-width: 48vw;
    margin: 0;
    margin-top: -40px;
    margin-left: 6%;
    margin-right: 4%;
    padding: 0;
    z-index: 5;
  }
}

#sec_interview .parts08 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 50px 60px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  z-index: 5;
}
#sec_interview .parts08 .read01 {
  width: 430px;
  max-width: 100%;
  padding: 0;
  text-align: left;
}
#sec_interview .parts08 .read01 h3 img {
  width: 420px;
  max-width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts08 {
    width: 92%;
    max-width: 100%;
    margin: 0;
    margin-top: 60px;
    margin-left: 8%;
    margin-bottom: 0;
    padding: 40px 30px 60px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 5;
    display: flex;
    justify-content: flex-end;
  }
  #sec_interview .parts08 .read01 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
  }
  #sec_interview .parts08 .read01 h3 img {
    width: 80vw;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

#sec_interview .parts09 {
  width: 42%;
  max-width: 32vw;
  margin: 20px;
  padding: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts09 {
    width: 48%;
    max-width: 39vw;
    margin: 40px 0 40px 10px;
    padding: 0;
    text-align: right;
    z-index: 5;
  }
}

#sec_interview .parts_all {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.762);
  display: flex;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts_all {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    margin-top: 60px;
    background-color: unset;
    display: flex;
    flex-wrap: wrap;
    z-index: 5;
  }
}

#sec_interview .parts10 {
  width: 54%;
  max-width: 50vw;
  margin: 0;
  padding: 50px 0 30px;
  background-color: rgba(255, 255, 255, 0.762);
  z-index: 5;
}
#sec_interview .parts10 .read01 {
  width: 420px;
  max-width: 66%;
  margin-left: 21vw;
  padding-right: 0;
  text-align: left;
}
#sec_interview .parts10 .read01 h3 img {
  width: 314px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts10 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 40px 40px 200px;
    z-index: 5;
  }
  #sec_interview .parts10 .read01 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
    text-align: left;
  }
  #sec_interview .parts10 .read01 h3 img {
    width: 70vw;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

#sec_interview .parts11 {
  width: 43%;
  max-width: 700px;
  margin: 0;
  margin-top: -50px;
  margin-left: 7%;
  padding: 0;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_interview .parts11 {
    width: 90%;
    max-width: 700px;
    margin: 0;
    margin-top: -140px;
    margin-left: 10%;
    padding: 0;
    z-index: 5;
  }
}


@media screen and (max-width: 768px) {
  #sec_interview .parts12 {
    top: 40%;
    left: -15%;
    position: absolute;
    z-index: 0;
  }
}


@media screen and (max-width: 768px) {
  #sec_interview .parts13 {
    top: 62%;
    left: -15%;
    position: absolute;
    z-index: 0;
  }
}



#interview #interview_movie {
  margin: 20px auto 80px;
}
@media screen and (max-width: 768px) {
  #interview #interview_movie {
    margin: 20px auto 40px;
  }
}

#interview #contents_link {
  margin-left: 20%;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #interview #contents_link {
    margin-left: 5%;
    width: 95%;
  }
}

#interview #contents_link .read01 {
  width: 100%;
  top: 0;
  right: 0;
}

#interview #contents_link ul li {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #interview #contents_link ul li {
    margin-top: 20px;
  }
}



.link-container01 {
  position: relative;
  margin-left: 20%;
  width: 80%;
  margin: 0 auto;
  overflow: hidden; /* クリッピング用のオーバーフロー */
}

.link-container01 img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeRight 1.2s cubic-bezier(0.42, 0.0, 0.58, 1.0)forwards;
}

.link-container01::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #00a279 20%,#d033cc 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientRight 1.2s cubic-bezier(0.42, 0.0, 0.58, 1.0) forwards;
  z-index: 1;
}


@keyframes fadeRight {
  0% {
      opacity: 0;
      clip-path: inset(0 100% 0 0); /* 右側が隠れている */
  }
  90% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientRight {
  0% {
      clip-path: inset(0 100% 0 0);
      opacity: 1;
  }
  90% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}



/*=======================================
　sec_features
=======================================*/


.image-container03a {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden; /* クリッピング用のオーバーフロー */
}

.fade-in.is-show .image-container03a img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeInFromRight 1.6s cubic-bezier(0.42, 0.0, 0.58, 1.0)forwards;
}

.fade-in.is-show .image-container03a::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #f93d22 20%,#5d3262 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientFromRight 1.6s cubic-bezier(0.42, 0.0, 0.58, 1.0) forwards;
  z-index: 1;
}


@keyframes fadeInFromRight {
  0% {
      opacity: 0;
      clip-path: inset(0 100% 0 0); /* 右側が隠れている */
  }
  95% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientFromRight {
  0% {
      clip-path: inset(0 100% 0 0);
      opacity: 1;
  }
  95% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}



.image-container03b {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.fade-in.is-show .image-container03b img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 0 0 100%); /* 左から右にクリップで現れる */
  animation: fadeInFromLeft 1.6s cubic-bezier(0.6, 0, 0.5, 1) forwards;
}

.fade-in.is-show .image-container03b::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f93d22 20%,#5d3262 80%);
  clip-path: inset(0 0 0 100%); /* 左から右にクリップで現れる */
  opacity: 1;
  animation: fadeGradientFromLeft 1.6s cubic-bezier(0.5, 0, 0.5, 1) forwards;
  z-index: 1;
}

@keyframes fadeInFromLeft {
  0% {
      opacity: 0;
      clip-path: inset(0 0 0 100%); /* 左側が隠れている */
  }
  90% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientFromLeft {
  0% {
      clip-path: inset(0 0 0 100%);
      opacity: 1;
  }
  90% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}


#features #sec_mv2 .mv_fixed {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 96%;
  height: 100%;
  margin: 0 auto ;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #features #sec_mv2 .mv_fixed {
  position: absolute;
  top: 10%;
  left: 40%;
  right: 0;
  width: 16vw;
  max-width: 96%;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
}

#sec_features {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 0 60px;
  text-align: center;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  #sec_features {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 0 30px;
    text-align: center;
    display: block;
  }
}

#sec_features .inter_position {
  height: auto;
  padding-bottom: 4%;
  position: relative;
  z-index: 1;
}


#sec_features .inter_position::after {
  content: "";
   display: block;
   clear: both;
}

#sec_features .parts01 {
  position: absolute;
  top: 3%;
  left: -2%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #sec_features .parts01 {
    position: absolute;
    top: 3%;
    left: -2%;
    z-index: 0;
  }
}

#sec_features .parts02 {
  position: absolute;
  top: 3200px;
  left: -2%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #sec_features .parts02 {
    position: absolute;
    top: 1100px;
    left: -2%;
    z-index: 0;
  }
}

#sec_features .parts03 {
  position: absolute;
  top: 4000px;
  right: -2%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #sec_features .parts03 {
    position: absolute;
    top: 4000px;
    right: -2%;
    z-index: 0;
  }
}

#sec_features .parts04 {
  position: absolute;
  top: 8600px;
  right: -2%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
#sec_features .parts04 {
  position: absolute;
  top: 7000px;
  right: -2%;
  z-index: 0;
}
}

#sec_features .inter_position .layout01 {
  width: 90%;
  margin-left: 10%;
  margin-bottom: 80px;
  padding-left: 30px;
  border-top: #444 1px solid;
  border-left: #444 1px solid;
  border-bottom: #444 1px solid;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout01 {
    width: 94%;
    margin-left: 6%;
    margin-bottom: 80px;
    padding-left: 10px;
    padding-bottom: 40px;
    border-top: #444 1px solid;
    border-left: #444 1px solid;
    border-bottom: #444 1px solid;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    display: flex;
  }
}

#sec_features .inter_position .read01 h2 {
  height: 74px;
  margin: auto;
  padding-right: 10%;
  border-bottom: #444 1px solid;
  background-image: url(../images/features_titlehead01.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  font-size: 1.6em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .read01 h2 {
    height: 70px;
    margin: 0;
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 0;
    border-bottom: #444 1px solid;
    background-image: url(../images/features_titlehead01_sp.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto 100%;
    font-size: 1.2em;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
}

#sec_features .inter_position .read01 h2 span {
  font-size: 0.60em;
  padding-top: 5px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .read01 h2 span {
    font-size: 0.76em;
    line-height: 1.4;
    padding-top: 0;
    padding-left: 0px;
  }
}


#sec_features .inter_position .layout01 p {
  width: 760px;
  max-width: 77%;
  margin: auto;
  padding: 30px 0;
  padding-right: 10%;
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
#sec_features .inter_position .layout01 .img {
  width: 960px;
  max-width: 100%;
  margin: auto;
  padding: 20px 0;
  padding-left: 10%;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout01 p {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: -2%;
    padding: 30px 30px 20px;
    font-size: 0.88em;
    letter-spacing: 0.02em;
    line-height: 2.2em;
    text-align: justify;
    z-index: 5;
  }
  #sec_features .inter_position .layout01 .img {
    width: 105%;
    max-width: 105%;
    margin: auto;
    margin-left: -6%;
    padding: 10px 0 0;
    z-index: 5;
  }
}


#sec_features .inter_position .layout01 .features_movie {
  width: 760px;
  max-width: 77%;
  margin: auto;
  padding: 20px 0 60px;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout01 .features_movie {
    width: 120%;
    max-width: 120%;
    margin: auto;
    margin-left: -10%;
    z-index: 5;
  }
}



#sec_features .inter_position .layout02 {
  width: 90%;
  margin-left: 10%;
  margin-bottom: 80px;
  padding-left: 30px;
  border-top: #444 1px solid;
  border-left: #444 1px solid;
  border-bottom: #444 1px solid;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 {
    width: 94%;
    margin-left: 6%;
    margin-bottom: 80px;
    padding-left: 10px;
    padding-bottom: 40px;
    border-top: #444 1px solid;
    border-left: #444 1px solid;
    border-bottom: #444 1px solid;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 5;
  }
}

#sec_features .inter_position .layout02 .flex00 {
  height: 100%;
}

#sec_features .inter_position .layout02 .flex00::after {
  content: "";
   display: block;
   clear: both;
}

#sec_features .inter_position .layout02 .flex01 {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 50px 0 100px;
  justify-content: flex-start;
}
@media screen and (min-width: 1366px) {
  #sec_features .inter_position .layout02 .flex01 {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 50px auto 100px;
    margin-left: -2%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex01 {
    display: flex;
    flex-wrap: wrap-reverse;
    width: 100%;
    max-width: 100%;
    margin: 50px 0 80px;
  }
}
#sec_features .inter_position .layout02 .flex01 .img {
  width: 540px;
  max-width: 540px;
  margin-left: -7%;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex01 .img {
    width: 500px;
    max-width: 100%;
    margin-left: -10%;
  }
}
#sec_features .inter_position .layout02 .flex01 .read02 {
  width: 450px;
  max-width: 100%;
  margin-left: 40px;
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex01 .read02 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: -2%;
    padding: 0px 30px 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
}
#sec_features .inter_position .layout02 .flex01 .read02 h3 {
  width: 450px;
  max-width: 100%;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex01 .read02 h3 {
    width: 110%;
    max-width: 110%;
    margin-left: -18%;
    padding-bottom: 30px;
  }
}
#sec_features .inter_position .layout02 .flex01 .read02 p {
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
#sec_features .inter_position .layout02 .flex01 .read02 .prof {
  width: 280px;
  max-width: 100%;
  margin-top: 40px;
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex01 .prof {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    margin-left: -2%;
    margin-right: 0;
    padding: 0px 30px 30px;

  }
}

#sec_features .inter_position .layout02 .flex02 {
  display: flex;
  width: 100%;
  margin-left: 8%;
  margin-bottom: 100px;
}
@media screen and (min-width: 1366px) {
  #sec_features .inter_position .layout02 .flex02 {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 50px auto 100px;
    margin-left: -6%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex02 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 100px;
  }
}

#sec_features .inter_position .layout02 .flex02 .img {
  width: 400px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex02 .img {
    width: 60%;
    max-width: 100%;
    margin: auto;
    margin-right: 10%;
    text-align: right;
  }
}
#sec_features .inter_position .layout02 .flex02 .read02 {
  width: 470px;
  margin: 0;
  margin-right: 50px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex02 .read02 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: -2%;
    padding: 0px 30px 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
}
#sec_features .inter_position .layout02 .flex02 .read02 h3 {
  width: 390px;
  max-width: 100%;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex02 .read02 h3 {
    width: 110%;
    max-width: 110%;
    margin-left: -18%;
    padding-bottom: 30px;
  }
}
#sec_features .inter_position .layout02 .flex02 .read02 p {
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
#sec_features .inter_position .layout02 .flex02 .read02 .prof {
  width: 280px;
  max-width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex02 .prof {
    width: 60%;
    max-width: 100%;
    margin: auto;
    margin-top: 30px;
    margin-right: 10%;
    text-align: right;
  }
}



#sec_features .inter_position .layout02 .flex03 {
  display: flex;
  width: 100%;
  margin-left: 8%;
  margin-bottom: 80px;
}
@media screen and (min-width: 1366px) {
  #sec_features .inter_position .layout02 .flex03 {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 50px auto 100px;
    margin-left: -6%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex03 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 100px;
  }
}
#sec_features .inter_position .layout02 .flex03 .img {
  width: 400px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex03 .img {
    width: 60%;
    max-width: 100%;
    margin: auto;
    margin-left: 6%;
    text-align: left;
  }
}
#sec_features .inter_position .layout02 .flex03 .read02 {
  width: 470px;
  margin-right: 50px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex03 .read02 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: -2%;
    padding: 0px 30px 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
}
#sec_features .inter_position .layout02 .flex03 .read02 h3 {
  width: 370px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex03 .read02 h3 {
    width: 110%;
    max-width: 110%;
    margin-left: -18%;
    padding-bottom: 30px;
  }
}
#sec_features .inter_position .layout02 .flex03 .read02 p {
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
#sec_features .inter_position .layout02 .flex03 .read02 .prof {
  width: 400px;
  max-width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout02 .flex03 .prof {
    width: 60%;
    max-width: 100%;
    margin: auto;
    margin-top: 30px;
    margin-left: 6%;
    text-align: left;
  }
}




#sec_features .inter_position .layout03 {
  width: 90%;
  margin-right: 10%;

  padding-right: 30px;
  padding-bottom: 30px;
  border-top: #444 1px solid;
  border-right: #444 1px solid;
  border-bottom: #444 1px solid;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout03 {
    width: 94%;
    margin-right: 6%;
    margin-bottom: 80px;
    padding-right: 10px;
    padding-bottom: 20px;
    border-top: #444 1px solid;
    border-right: #444 1px solid;
    border-bottom: #444 1px solid;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
  }
}

#sec_features .inter_position .layout03 .read01 h2 {
  height: 74px;
  margin: auto;
  padding-left: 18%;
  border-bottom: #444 1px solid;
  background-image: url(../images/features_titlehead02.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: auto 100%;
  font-size: 1.6em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout03 .read01 h2 {
    height: 70px;
    width: 100%;
    margin: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 20px;
    border-bottom: #444 1px solid;
    background-image: url(../images/features_titlehead02_sp.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
    font-size: 1.2em;
    font-weight: 700;
    text-align: right;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
  }
}

#sec_features .inter_position .layout03 .img {
width: 900px;
max-width: 100%;
margin-left: auto;
margin-right: auto;
padding: 20px 0;
display: flex;
align-items: flex-start;
justify-content: center; 
overflow-x: scroll; 
}
@media screen and (min-width: 1366px) {
  #sec_features .inter_position .layout03 .img {
  margin: auto;
  padding: 20px 20px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start; 
  overflow-x: scroll; 
  }
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout03 .img {
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start; 
  overflow-x: scroll; 
  }
}
#sec_features .inter_position .layout03 .itemss {
width: 750px;
margin: 0 0 0 8%;
padding: 20px 10px 0;
margin-bottom: 10px;
}
@media screen and (min-width: 1366px) {
  #sec_features .inter_position .layout03 .itemss {
    width: 750px;
    margin: 0 0 0 14%;
    padding: 20px 10px 0;
    margin-bottom: 10px;
    }
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout03 .itemss {
    width: 750px;
    margin: 0 10px;
    padding: 20px 0 10px;
    }
}
#sec_features .inter_position .layout03 .itemss img {
  width: 740px;
  max-width: 740px;
  }

  @media screen and (max-width: 768px) {
    #sec_features .inter_position .layout03 .arrow {
      width: 60px;
      margin: 0 auto;
      text-align: left;
      padding: 5px;
      display: flex;
      
      }
  }



#sec_features .inter_position .layout04 {
  width: 90%;
  margin-right: 10%;
  margin-bottom: 80px;
  padding-right: 30px;
  padding-bottom: 60px;
  border-top: #444 1px solid;
  border-right: #444 1px solid;
  border-bottom: #444 1px solid;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 {
    width: 94%;
    margin-right: 6%;
    margin-bottom: 40px;
    padding-right: 0;
    padding-bottom: 40px;
    border-top: #444 1px solid;
    border-right: #444 1px solid;
    border-bottom: #444 1px solid;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
  }
}

#sec_features .inter_position .layout04 .read01 h2 {
  height: 74px;
  margin: auto;
  padding-left: 18%;
  border-bottom: #444 1px solid;
  background-image: url(../images/features_titlehead02.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: auto 100%;
  font-size: 1.6em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .read01 h2 {
    height: 70px;
    width: 97%;
    margin: 0;
    margin-right: 10px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 20px;
    border-bottom: #444 1px solid;
    background-image: url(../images/features_titlehead02_sp.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
    font-size: 1.2em;
    font-weight: 700;
    text-align: right;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
  }
}

#sec_features .inter_position .layout04 .read00 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin: auto;
}
@media screen and (min-width: 1366px) {
  #sec_features .inter_position .layout04 .read00 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-left: 14%;
  }
}

#sec_features .inter_position .layout04 .contents-box {
  width: 1080px;
  max-width: 100%;
  margin-left: 10px;
  margin-right: 30px;
  padding: 60px 60px 60px 60px;
  border-bottom: #444 1px solid;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box {
    width: 100%;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 0;
    padding: 20px 0 0 0;
    border-bottom: #444 1px solid;
    text-align: left;
  }
}

#sec_features .inter_position .layout04 .contents-box:nth-child(6) {
  width: 1080px;
  max-width: 100%;
  margin-right: 40px;
  padding: 60px 60px 60px 60px;
  border-bottom: none;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box:nth-child(6)  {
    width: 100%;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 0;
    padding: 20px 0 0 0;
    text-align: left;
  }
}


#sec_features .inter_position .layout04 .contents-box:nth-child(1) h3 {
  width: 463px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box:nth-child(1) h3 {
    width: 110%;
    max-width: 110%;
    height: auto;
    margin-top: 10px;
    margin-left: -18%;
    margin-bottom: 20px;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex01 {
  width: 960px;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex01 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: 0;
    padding: 0px 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex01 .text-area {
  width: 450px;
  max-width: 100%;
  margin-right: 160px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex01 .text-area {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex01 .text-area h4 {
	display: flex;
	align-items: center;
  margin: 20px auto 10px;
  font-size: 1.1em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex01 .text-area h4 {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 20px 0 10px;
    font-size: 1.1em;
    font-weight: 400;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex01 .text-area h4::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	display: block;

}

#sec_features .inter_position .layout04 .contents-box .flex01 .text-area h4::after {
	margin-left: .4em;
	background: #444;
}

#sec_features .inter_position .layout04 .contents-box .flex01 .text-area p {
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex01 .text-area p {
    font-size: 0.92em;
    letter-spacing: 0.02em;
    line-height: 2.2em;
    text-align: justify;
    padding-right: 10%;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex01 .img-area {
  width: 300px;
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex01 .img-area {
    width: 50vw;
    max-width: 100%;
    margin: 40px auto 0;
    margin-right: 25%;
    padding: 0;
  }
}


#sec_features .inter_position .layout04 .contents-box:nth-child(2) h3 {
  width: 339px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box:nth-child(2) h3 {
    width: 86%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    margin-left: -18%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex02 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: 0;
    padding: 0px 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
  }
}


#sec_features .inter_position .layout04 .contents-box .flex02 .text-area p {
  font-size: 0.92em;
  letter-spacing: 0.08em;
  line-height: 2.2em;
  text-align: justify;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex02 .text-area p {
   font-size: 0.92em;
   letter-spacing: 0.08em;
   line-height: 2.2em;
   text-align: justify;
   padding-right: 10%;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex02 .img-area {
  width: 100%;
  max-width: 100%;
  margin: auto;
}

#sec_features .inter_position .layout04 .contents-box .flex02 .img-area ul {
  width: 100%;
  max-width: 100%;
  margin: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex02 .img-area ul {
    width: 90%;
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding-right: 15%;
  }
  #sec_features .inter_position .layout04 .contents-box .flex02 .img-area ul li {
    margin: 10px;
  }
}

#sec_features .inter_position .layout04 .contents-box:nth-child(3) h3 {
  width: 401px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box:nth-child(3) h3 {
    width: 95%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    margin-left: -16%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex03 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: 0;
    padding: 0px 0 0 20px;
    display: flex;
    flex-wrap: wrap;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex03 .text-area p {
  font-size: 0.92em;
  letter-spacing: 0.08em;
  line-height: 2.2em;
  text-align: justify;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex03 .text-area p {
   font-size: 0.92em;
   letter-spacing: 0.08em;
   line-height: 2.2em;
   text-align: justify;
   padding-right: 10%;
  }
}

#sec_features .inter_position .layout04 .contents-box:nth-child(4) h3 {
  width: 404px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box:nth-child(4) h3 {
    width: 80%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: 10px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex04 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: 0;
    padding: 0px 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex04 .text-area p {
  font-size: 0.92em;
  letter-spacing: 0.08em;
  line-height: 2.2em;
  text-align: justify;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex04 .text-area p {
   font-size: 0.92em;
   letter-spacing: 0.08em;
   line-height: 2.2em;
   text-align: justify;
   padding-right: 10%;
   padding-bottom: 0px;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex04 .img-area ul li {
  width: 100%;
  max-width: 100%;
  margin: 40px auto 20px;
}
#sec_features .inter_position .layout04 .contents-box .flex04 .img-area ul div:nth-child(4) li {
  width: 100%;
  max-width: 100%;
  margin: 40px auto 5px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex04 .img-area ul {
    padding-top: 20px;
  }

  #sec_features .inter_position .layout04 .contents-box .flex04 .img-area ul li {
    width: 106%;
    max-width: 106%;
    margin: 20px auto 10px;
    margin-left: -12%;
  }
  #sec_features .inter_position .layout04 .contents-box .flex04 .img-area ul div:nth-child(4) li {
    width: 106%;
    max-width: 106%;
    margin: 20px auto 10px;
    margin-left: -12%;
  }
}

.image-container03c {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
}

.fade-in.is-show .image-container03c img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeInFromRight 1.6s cubic-bezier(0.42, 0.0, 0.58, 1.0)forwards;
}

.fade-in.is-show .image-container03c::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #f93d22 20%,#5d3262 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientFromRight 1.6s cubic-bezier(0.42, 0.0, 0.58, 1.0) forwards;
  z-index: 1;
}


#sec_features .inter_position .layout04 .contents-box .flex04 .img-area ul li.image-container03c:nth-child(4) img {
  -webkit-animation: fadeInFromRight 1.6s ease 2s 1 forwards;
  animation: fadeInFromRight 1.6s ease 2s 1 forwards;
}
#sec_features .inter_position .layout04 .contents-box .flex04 .img-area ul li.image-container03c:nth-child(4)::before {
  -webkit-animation: fadeGradientFromRight 1.6s ease 4s 1 forwards;
  animation: fadeGradientFromRight 1.6s ease 4s 1 forwards;
}

#sec_features .inter_position .layout04 .contents-box .flex04 .text-area02 {
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex04 .text-area02 {
    text-align: right;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-left: -6%;
  }
}
#sec_features .inter_position .layout04 .contents-box .flex04 .text-area02 p {
  text-align: right;
  width: 160px;
  margin: 10px 0 20px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex04 .text-area02 p {
    text-align: right;
    width: 140px;
    margin: 0 0 60px;
  }
}



#sec_features .inter_position .layout04 .contents-box:nth-child(5) h3 {
  width: 640px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box:nth-child(5) h3 {
    width: 90%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex05 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: 0;
    padding: 0px 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex05 .text-area p {
  font-size: 0.92em;
  letter-spacing: 0.08em;
  line-height: 2.2em;
  text-align: justify;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex05 .text-area p {
   font-size: 0.92em;
   letter-spacing: 0.08em;
   line-height: 2.2em;
   text-align: justify;
   padding-right: 10%;
   margin-bottom: 10px;
  padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex05 .img-area {
    width: 106%;
    max-width: 106%;
    margin: 10px auto 10px;
    margin-left: -12%;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex05 .text-area02 {
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex05 .text-area02 {
    text-align: right;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-left: -6%;
  }
}
#sec_features .inter_position .layout04 .contents-box .flex05 .text-area02 p {
  text-align: right;
  width: 160px;
  margin: 10px 0 20px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex05 .text-area02 p {
    text-align: right;
    width: 140px;
    margin: 0 0 60px;
  }
}

#sec_features .inter_position .layout04 .contents-box:nth-child(6) h3 {
  width: 295px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box:nth-child(6) h3 {
    width: 74%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: 0px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex06 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-left: 0;
    padding: 0px 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
  }
}


#sec_features .inter_position .layout04 .contents-box .flex06 .text-area p {
  font-size: 0.92em;
  letter-spacing: 0.08em;
  line-height: 2.2em;
  text-align: justify;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex06 .text-area p {
   font-size: 0.92em;
   letter-spacing: 0.08em;
   line-height: 2.2em;
   text-align: justify;
   padding-right: 10%;
   margin-bottom: 10px;
  padding-bottom: 20px;
  }
}
#sec_features .inter_position .layout04 .contents-box .flex06 .text-area02 p {
  font-size: 0.92em;
  letter-spacing: 0.08em;
  line-height: 2.2em;
  text-align: justify;
  margin-bottom: 10px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex06 .text-area02 p {
    font-size: 0.92em;
    letter-spacing: 0.08em;
    line-height: 2.2em;
    text-align: justify;
    padding-right: 10%;
    padding-bottom: 10px;
   }
}

#sec_features .inter_position .layout04 .contents-box .flex06 .img-area {
    width: 100%;
    max-width: 100%;
    margin: 30px 0 0;
  }
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex06 .img-area {
    width: 90%;
    max-width: 100%;
    margin: 10px auto 10px;
    margin-left: 0%;
  }
}

#sec_features .inter_position .layout04 .contents-box .flex06 .text-area03 {
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex06 .text-area03 {
    text-align: right;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-left: -6%;
  }
}
#sec_features .inter_position .layout04 .contents-box .flex06 .text-area03 p {
  text-align: right;
  width: 160px;
  margin: 10px 0 20px;
}
@media screen and (max-width: 768px) {
  #sec_features .inter_position .layout04 .contents-box .flex06 .text-area03 p {
    text-align: right;
    width: 140px;
    margin: 0 0 30px;
  }
}


#features #contents_link {
  position: initial;
  margin-left: 20%;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #features #contents_link {
    margin-left: 5%;
    width: 95%;
  }
}

#features #contents_link .read01 {
  width: 100%;
  top: 0;
  right: 0;
}

#features #contents_link ul li {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #features #contents_link ul li {
  margin-top: 20px;
}
}




/*=======================================
　sec_new
=======================================*/


.image-container04a {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden; /* クリッピング用のオーバーフロー */
}

.fade-in.is-show .image-container04a img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  animation: fadeInFromRight 1.6s cubic-bezier(0.42, 0.0, 0.58, 1.0)forwards;
}

.fade-in.is-show .image-container04a::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #00a279 20%,#d033cc 80%);
  clip-path: inset(0 100% 0 0); /* 右から左にクリップで現れる */
  opacity: 1;
  animation: fadeGradientFromRight 1.6s cubic-bezier(0.42, 0.0, 0.58, 1.0) forwards;
  z-index: 1;
}


@keyframes fadeInFromRight {
  0% {
      opacity: 0;
      clip-path: inset(0 100% 0 0); /* 右側が隠れている */
  }
  95% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientFromRight {
  0% {
      clip-path: inset(0 100% 0 0);
      opacity: 1;
  }
  95% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}



.image-container04b {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.fade-in.is-show .image-container04b img {
  width: 100%;
  height: auto;
  opacity: 0;
  clip-path: inset(0 0 0 100%); /* 左から右にクリップで現れる */
  animation: fadeInFromLeft 1.6s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

.fade-in.is-show .image-container04b::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #d033cc 20%,#00a279 80%);
  clip-path: inset(0 0 0 100%); /* 左から右にクリップで現れる */
  opacity: 1;
  animation: fadeGradientFromLeft 1.6s cubic-bezier(0.5, 0, 0.5, 1) forwards;
  z-index: 1;
}

@keyframes fadeInFromLeft {
  0% {
      opacity: 0;
      clip-path: inset(0 0 0 100%); /* 左側が隠れている */
  }
  90% {
    opacity: 0.8;
    clip-path: inset(0 0 0 0); /* 全て表示 */
}
  100% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}

@keyframes fadeGradientFromLeft {
  0% {
      clip-path: inset(0 0 0 100%);
      opacity: 1;
  }
  90% {
      clip-path: inset(0 0 0 0);
      opacity: 0.5; /* 画像がほぼ表示されるまでグラデーションは残る */
  }
  100% {
      clip-path: inset(0 0 0 0);
      opacity: 0; /* その場でふっと消える */
  }
}



#new #sec_mv2 .mv_fixed {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 190px;
  max-width: 96%;
  height: 100%;
  margin: 0 auto ;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #new #sec_mv2 .mv_fixed {
    position: absolute;
    top: 22%;
    left: 0;
    right: 66%;
    width: 16vw;
    max-width: 96%;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
  }
}


#sec_new {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #sec_new {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 0 30px;
    text-align: center;
  }
}


#sec_new .inter_position {
  height: auto;
  padding-bottom: 4%;
  position: relative;
  z-index: 1;
}

#sec_new .inter_position::after {
  content: "";
   display: block;
   clear: both;
}

#sec_new .parts01 {
  position: absolute;
  top: 60px;
  left: -5%;
  z-index: 0;
}



#sec_new .inter_position .layout01 {
  width: 88%;
  height: 100%;
  margin-left: 12%;
  margin-bottom: 80px;
  padding-left: 30px;
  border-top: #444 1px solid;
  border-left: #444 1px solid;
  border-bottom: #444 1px solid;
  background-color: rgba(255, 255, 255, 0.9);

  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout01 {
    width: 94%;
    margin-left: 6%;
    margin-bottom: 80px;
    padding-left: 10px;
    padding-bottom: 40px;
    border-top: #444 1px solid;
    border-left: #444 1px solid;
    border-bottom: #444 1px solid;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    
  }
}



#sec_new .inter_position .read01 h2 {
  height: 74px;
  margin: auto;
  padding-right: 50px;
  border-bottom: #444 1px solid;
  background-image: url(../images/new_titlehead01.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  font-size: 1.6em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .read01 h2 {
    height: 70px;
    margin: 0;
    padding-top: 0px;
    padding-left: 30px;
    padding-right: 0;
    border-bottom: #444 1px solid;
    background-image: url(../images/new_titlehead01_sp.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto 100%;
    font-size: 1.2em;
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
  }
}

#sec_new .inter_position .layout01 .flex00 {
  height: 100%;
}

#sec_new .inter_position .layout01 .flex00::after {
  content: "";
   display: block;
   clear: both;
}

#sec_new .inter_position .layout01 .flex01 {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 50px auto 80px;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout01 .flex01 {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 20px;
    padding: 0;
    text-align: left;
    }
}

#sec_new .inter_position .layout01 .flex01 h3 {
  width: 980px;
  max-width: 100%;
  margin: 80px auto 60px;
  padding-left: 10%;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout01 .flex01 h3 {
    width: 100%;
    max-width: 100%;
    margin: 10px auto 20px;
    padding-left: 0;
  }
}

#sec_new .inter_position .layout01 .flex01 .img {
  width: 110vw;
  max-width: 110%;
  margin-left: -16%;
  margin-right: 10%;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout01 .flex01 .img {
    width: 74vw;
    max-width: 100%;
    margin: 4% 0 2% 8%;
    padding: 0;
  }
}

#sec_new .inter_position .layout01 .flex01 .read02 {
  width: 68vw;
  max-width: 860px;
  margin: 60px 0 60px;
  margin-left: 5%;
  padding-left: 5%;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout01 .flex01 .read02 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: 0;
    padding: 0px 30px;
    }
}

#sec_new .inter_position .layout01 .flex01 .read02 h4 {
  width: 405px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout01 .flex01 .read02 h4 {
    width: 110%;
    max-width: 110%;
    height: auto;
    margin-top: 20px;
    margin-left: -20%;
    padding-bottom: 0px;
    padding-left: 0;
  }
}

#sec_new .inter_position .layout01 .flex01 .read02 p {
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout01 .flex01 .read02 p {
    font-size: 0.92em;
    letter-spacing: 0.02em;
    line-height: 2.2em;
    text-align: justify;
    padding-right: 2%;
  }
}



#sec_new .inter_position .layout02 {
  width: 88%;
  height:100%;
  margin-right: 12%;
  padding-right: 30px;
  padding-bottom: 20px;
  border-top: #444 1px solid;
  border-right: #444 1px solid;
  border-bottom: #444 1px solid;
  background-color: rgba(255, 255, 255, 0.9);

  z-index: 5;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 {
    width: 94%;
    margin-right: 6%;
    margin-bottom: 40px;
    padding-right: 10px;
    padding-bottom: 40px;
    border-top: #444 1px solid;
    border-right: #444 1px solid;
    border-bottom: #444 1px solid;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    display: flex;
  }
}


#sec_new .inter_position .layout02 .read01 h2 {
  height: 74px;
  margin: auto;
  padding-left: 14%;
  border-bottom: #444 1px solid;
  background-image: url(../images/new_titlehead02.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: auto 100%;
  font-size: 1.6em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 .read01 h2 {
    width: 100%;
    height: 70px;
    margin: 0;
    padding-top: 0px;
    padding-right: 30px;
    border-bottom: #444 1px solid;
    background-image: url(../images/new_titlehead02_sp.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
    font-size: 1.2em;
    font-weight: 700;
    text-align: right;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
  }
}


#sec_new .inter_position .layout02 .flex00 {
  height: 100%;
}

#sec_new .inter_position .layout02 .flex00::after {
  content: "";
   display: block;
   clear: both;
}

#sec_new .inter_position .layout02 .flex01 {
  display: block;
  width: 100%;
  margin: 50px auto 0px;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 .flex01 {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 20px;
    padding: 0;
    text-align: left;
    }
}

#sec_new .inter_position .layout02 .flex01 h3 {
  width: 980px;
  max-width: 100%;
  margin: 80px auto 60px;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 .flex01 h3 {
    width: 100%;
    max-width: 100%;
    margin: 10px auto 20px;
    padding-left: 0;
  }
}

#sec_new .inter_position .layout02 .flex01 .img {
  width: 110vw;
  max-width: 110%;
  margin-left: 6%;
  margin-right: -15%;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 .flex01 .img {
    width: 74vw;
    max-width: 100%;
    margin: 4% 0 2% 11%;
    padding: 0;
  }
}

#sec_new .inter_position .layout02 .flex01 .read02 {
  width: 68vw;
  max-width: 860px;
  margin: 60px auto 60px;
  margin-left: 16%;
  padding-left: 7%;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 .flex01 .read02 {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-left: 10px;
    margin-right: 0;
    padding: 0px 30px;
    }
}


#sec_new .inter_position .layout02 .flex01 .read02 h4 {
  width: 318px;
  max-width: 100%;
  height: 90px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 .flex01 .read02 h4 {
    width: 90%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-left: -13%;
    padding-bottom: 0px;
    padding-left: 0;
  }
}

#sec_new .inter_position .layout02 .flex01 .read02 p {
  font-size: 0.88em;
  letter-spacing: 0.02em;
  line-height: 2.2em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #sec_new .inter_position .layout02 .flex01 .read02 p {
    font-size: 0.92em;
    letter-spacing: 0.02em;
    line-height: 2.2em;
    text-align: justify;
    padding-right: 5%;
  }
}





#new #contents_link {
  position: initial;
  margin-left: 20%;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #new #contents_link {
    margin-left: 5%;
    width: 95%;
  }
}

#new #contents_link .read01 {
  width: 100%;
  top: 0;
  right: 0;
}

#new #contents_link ul li {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #new #contents_link ul li {
    margin-top: 20px;
  }
}



/*=======================================
 --- pagetop ---
=======================================*/

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  transform: translateY(20%) rotate(-45deg);
}