@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #000;
  position: relative;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, BIZ UDGothic, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  width: 100%;
  height: auto;
}

.pc_slider {
  display: block;
}

.sp_slider {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_slider {
    display: none;
  }
  .sp_slider {
    display: block;
  }
}
/****** ▲general *****/
/******　▼header　*****/
header {
  width: 100%;
  position: relative;
  z-index: 999;
  overflow: hidden;
}
header .header_bar {
  width: 100%;
  padding: 1%;
  display: flex;
  align-items: center;
}
header .header_bar .logo {
  width: 6%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  header {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  header .header_bar {
    width: 100%;
    padding: 3px;
    display: flex;
    align-items: center;
  }
  header .header_bar .logo {
    width: 12%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 687px) {
  header {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  header .header_bar {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
  }
  header .header_bar .logo {
    width: 18%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  header {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  header .header_bar {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
  }
  header .header_bar .logo {
    width: 18%;
    margin: 0 auto;
  }
}
/* ▼ロード後フェードイン */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ▲ロード後フェードイン */
/* ▼ロード後フェードイン_ロゴ用 */
.fadeIn_logo {
  animation-name: fadeInAnime_logo;
  animation-duration: 2s;
  animation-delay: 3.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime_logo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ▲ロード後フェードイン ロゴ用 */
/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #e61f19;
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  top: -15px;
  left: calc(50% - 50px);
  /*50%から円の半径を引いた値*/
  transition: all 0.7s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 678px) {
  #g-nav ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1.8s;
  animation-delay: 0.2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.g-nav-policy {
  opacity: 0;
}

.g-nav-policy .panelactive {
  opacity: 1;
}

#g-nav.panelactive a {
  animation-name: gnaviAnime;
  animation-duration: 1.8s;
  animation-delay: 0.2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: left;
  list-style: none;
}

#g-nav li a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 12px 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.g-nav-policy_wrap {
  margin-top: 35%;
}

.g-nav-policy {
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 5px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.sample_link13 a {
  display: block;
  color: #fff;
  background-image: linear-gradient(to right, rgb(230, 31, 25) 50%, rgb(255, 255, 255) 50%);
  background-position: 0 0;
  background-size: 400% auto;
  transition: 0.8s;
}

.sample_link13 a:hover {
  background-position: -100% 0;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 1%;
  right: 1%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100%;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 5px;
  height: 3px;
  border-radius: 6px;
  background-color: #e61f19;
  width: 75%;
}

.openbtn1 span:nth-of-type(1) {
  top: 19px;
}

.openbtn1 span:nth-of-type(2) {
  top: 27px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 19px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  top: 31px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width: 1024px) {
  .openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 1px;
    right: 10px;
    cursor: pointer;
    width: 54px;
    height: 54px;
    background-color: #fff;
    border-radius: 100%;
  }
  /*×に変化*/
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 7px;
    height: 3px;
    border-radius: 3px;
    background-color: #e61f19;
    width: 70%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 20px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 30px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 19px;
    left: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    top: 32px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/******　▼slide　*****/
#slide {
  width: 100%;
  padding: 0;
}
#slide .slider {
  width: 10%;
  margin: 0 auto;
}
#slide .mypattern {
  width: 100%;
}
#slide .mypattern .slick-slide {
  margin: 0px;
}

@media screen and (max-width: 1024px) {
  #slide {
    width: 100%;
    padding: 0;
  }
  #slide .slider {
    width: 5%;
    margin: 0 auto;
  }
  #slide .mypattern {
    width: 100%;
  }
  #slide .mypattern .slick-slide {
    margin: 0px 0;
  }
}
/*********　▼mv_minimal******/
.mv_minimal {
  position: relative;
}
.mv_minimal .button_solid017 {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
}

/* solid017 */
.button_solid017 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 340px;
  padding: 10px 50px;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  transition: 0.3s ease-in-out;
  font-weight: 800;
  background: #2671aa;
  border-radius: 50px;
  border: 0.2rem solid #000;
  box-shadow: 0.2rem 0.2rem 0px 0.1rem #727272;
}

.button_solid017 a:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}

.button_solid017 a:after {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 47%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .mv_minimal {
    position: relative;
  }
  .mv_minimal .button_solid017 {
    position: absolute;
    left: 50%;
    bottom: 5.5%;
    transform: translateX(-50%);
  }
  /* solid017 */
  .button_solid017 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 340px;
    padding: 15px 50px;
    color: #fff;
    font-size: 25px;
    transition: 0.3s ease-in-out;
    font-weight: 800;
    background: #2671aa;
    border-radius: 50px;
    border: 0.2rem solid #000;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #727272;
  }
  .button_solid017 a:hover {
    transform: translate3d(0.2rem, 0.2rem, 0);
    box-shadow: none;
    opacity: 1;
    transition: all 0.2s;
  }
  .button_solid017 a:after {
    content: "";
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 47%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 678px) {
  .mv_minimal {
    position: relative;
  }
  .mv_minimal .button_solid017 {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
  }
  /* solid017 */
  .button_solid017 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 500px;
    padding: 5px 40px;
    color: #fff;
    font-size: 38px;
    transition: 0.3s ease-in-out;
    font-weight: 800;
    background: #2671aa;
    border-radius: 50px;
    border: 0.2rem solid #000;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #727272;
  }
  .button_solid017 a:hover {
    transform: translate3d(0.2rem, 0.2rem, 0);
    box-shadow: none;
    opacity: 1;
    transition: all 0.2s;
  }
  .button_solid017 a:after {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 47%;
    right: 30px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 480px) {
  .mv_minimal {
    position: relative;
  }
  .mv_minimal .button_solid017 {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
  }
  .button_solid017 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 250px;
    padding: 5px 15px;
    color: #fff;
    font-size: 25px;
    transition: 0.3s ease-in-out;
    font-weight: 800;
    background: #2671aa;
    border-radius: 50px;
    border: 0.2rem solid #000;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #727272;
  }
  .button_solid017 a:after {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 47%;
    right: 30px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
  }
}
/*********　▲mv_minimal******/
/*********　▼mv_89ners******/
/*********　▲mv_89ners******/
/********　▼mv_corporate  *******/
.mv_corporate {
  position: relative;
}
.mv_corporate .mv_corporate_button {
  position: absolute;
  width: 20%;
  left: 0%;
  bottom: 14%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mv_corporate .mv_logo {
  position: absolute;
  width: 45%;
  right: 2%;
  bottom: 22%;
}

/* 008 */
.button008 a {
  background: #e61f19;
  border: 1px solid #fff;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 5px 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  font-family: ui-sans-serif;
  white-space: nowrap;
  transition: 0.4s ease-in-out;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.button008 a:hover {
  background: #fff;
  color: #e61f19;
  border: 1px solid #e61f19;
}

/* 009 */
.button009 a {
  background: #ffd11a;
  border: 1px solid #000;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 5px 25px;
  color: #000;
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
  font-family: sans-serif;
  white-space: nowrap;
  transition: 0.3s ease-in-out;
  -webkit-clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
          clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.button009 a:hover {
  background: #f25657;
  color: #fff;
  border: 1px solid #fff;
}

@media screen and (max-width: 1024px) {
  .mv_corporate {
    position: relative;
  }
  .mv_corporate .mv_corporate_button {
    position: absolute;
    width: 30%;
    left: 0%;
    bottom: 15%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
  .mv_corporate .mv_logo_sp {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 33%;
  }
  /* 008 */
  .button008 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 2px 25px;
    font-size: 20px;
    transition: 0.4s ease-in-out;
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  }
  /* 009 */
  .button009 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 2.5px 25px;
    font-size: 20px;
    transition: 0.3s ease-in-out;
    -webkit-clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
            clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
  }
}
@media screen and (max-width: 687px) {
  .mv_corporate {
    position: relative;
  }
  .mv_corporate .mv_corporate_button {
    position: absolute;
    width: 80%;
    left: 0%;
    bottom: 14%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .mv_corporate .mv_logo_sp {
    position: absolute;
    width: 100%;
    left: 49%;
    transform: translate(-50%, 0);
    bottom: 31%;
  }
  /* 008 */
  .button008 {
    margin: 5% auto;
    margin-left: 0;
  }
  .button008 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 300px;
    padding: 5px 20px;
    font-size: 20px;
    transition: 0.4s ease-in-out;
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  }
  /* 009 */
  .button009 {
    margin: 0% auto;
    margin-left: 0;
  }
  .button009 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 300px;
    padding: 5px 20px;
    font-size: 20px;
    transition: 0.3s ease-in-out;
    -webkit-clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
            clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
  }
}
@media screen and (max-width: 480px) {
  .mv_corporate {
    position: relative;
    /* 008 */
    /* 009 */
  }
  .mv_corporate .mv_corporate_button {
    position: absolute;
    width: 50%;
    left: 0%;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .mv_corporate .mv_logo_sp {
    position: absolute;
    width: 100%;
    left: 49%;
    transform: translate(-50%, 0);
    bottom: 31%;
  }
  .mv_corporate .button008 {
    margin: 5% auto;
    margin-left: 0;
  }
  .mv_corporate .button008 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 150px;
    padding: 5px 10px;
    font-size: 20px;
    transition: 0.4s ease-in-out;
    -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  }
  .mv_corporate .button009 {
    margin: 0% auto;
    margin-left: 0;
  }
  .mv_corporate .button009 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 150px;
    padding: 5px 10px;
    font-size: 15px;
    transition: 0.3s ease-in-out;
    -webkit-clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
            clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
  }
}
/*********　▼reveal-text_01  *******/
.reveal-text_wrap_01 {
  position: absolute;
  left: 5%;
  bottom: 68%;
}

:root {
  --delay: 1s;
  --duration: 1100ms;
  --iterations: 1;
}

.reveal-text_01,
.reveal-text_01::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text_01 {
  width: 53%;
  --animation-delay: var(--delay, 800ms);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.reveal-text_01::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e61f19;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@media screen and (max-width: 687px) {
  .reveal-text_wrap_01 {
    position: absolute;
    left: 20%;
    top: 4%;
  }
  .reveal-text_01 {
    width: 80%;
    cursor: default;
  }
  .reveal-text_01::after {
    content: "";
    background-color: #e61f19;
  }
}
@media screen and (max-width: 480px) {
  .reveal-text_wrap_01 {
    position: absolute;
    left: 22%;
    top: 6%;
  }
  .reveal-text_01 {
    width: 80%;
    cursor: default;
  }
  .reveal-text_01::after {
    content: "";
    background-color: #e61f19;
  }
}
/*********　▲reveal-text_01  *******/
/*********　▼reveal-text_02  *******/
.reveal-text_wrap_02 {
  position: absolute;
  left: 3%;
  bottom: 51%;
}

:root {
  --delay_02: 1s;
  --duration: 1100ms;
  --iterations: 1;
}

.reveal-text_02,
.reveal-text_02::after {
  animation-delay: var(--animation-delay_02, 1.5s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text_02 {
  width: 53%;
  --animation-delay: var(--delay_02, 800ms);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.reveal-text_02::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e61f19;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@media screen and (max-width: 687px) {
  .reveal-text_wrap_02 {
    position: absolute;
    left: 17%;
    top: 20%;
  }
  .reveal-text_02 {
    width: 70%;
    cursor: default;
  }
  .reveal-text_02::after {
    content: "";
    background-color: #e61f19;
  }
}
/*********　▲reveal-text_02  *******/
/*********　▼reveal-text_03  *******/
.reveal-text_wrap_03 {
  position: absolute;
  left: 0.1%;
  bottom: 30%;
}

:root {
  --delay_03: 1s;
  --duration: 1600ms;
  --iterations: 1;
}

.reveal-text_03,
.reveal-text_03::after {
  animation-delay: var(--animation-delay_03, 2.1s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text_03 {
  width: 55%;
  --animation-delay: var(--delay_03, 800ms);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  cursor: default;
}
.reveal-text_03::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e61f19;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@media screen and (max-width: 687px) {
  .reveal-text_wrap_03 {
    position: absolute;
    left: 10%;
    bottom: 58%;
  }
  .reveal-text_03 {
    width: 100%;
    cursor: default;
  }
  .reveal-text_03::after {
    content: "";
    background-color: #e61f19;
  }
}
@media screen and (max-width: 480px) {
  .reveal-text_wrap_03 {
    position: absolute;
    left: 1%;
    bottom: 55%;
  }
  .reveal-text_03 {
    width: 100%;
    cursor: default;
  }
  .reveal-text_03::after {
    content: "";
    background-color: #e61f19;
  }
}
/*********　▲reveal-text_03  *******/
/*********　▲mv_corporate  ******/
/******　▲slide　*****/
/******　▲header　*****/
/******　▼side_sticky　*****/
.side_wrap {
  display: flex;
  justify-content: flex-end;
  position: fixed;
  z-index: 100;
  right: 0;
}
.side_wrap .side_sticky {
  width: 35%;
}

@media screen and (max-width: 687px) {
  .side_wrap {
    display: flex;
    justify-content: flex-end;
    position: sticky;
    z-index: 100;
    top: 50%;
    right: 0;
  }
  .side_wrap .side_sticky {
    width: 28%;
  }
}
/******　▲side_sticky　*****/
/******　▼ページトップボタンサイズ縮小　*****/
.w-20 {
  width: 3rem;
}

.h-20 {
  height: 3rem;
}

/******　▲ページトップボタンサイズ縮小　*****//*# sourceMappingURL=top.css.map */