@charset "UTF-8";
/*==========================================================================

   mixin

===========================================================================*/
/* webfont */
@import url("//fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&amp;display=swap");
/* local */
/* #wrapper
-----------------------------------------------------------------*/
@media only screen and (max-width: 599px) {
  #wrapper {
    width: 100%;
    height: 100%;
  }
}

/* #page
-----------------------------------------------------------------*/
#page {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

/* #main
-----------------------------------------------------------------*/
#main {
  opacity: 0;
  overflow: hidden;
}

.load-complete #main {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/*--------------------------------------------------------------------------
   l-wrap
---------------------------------------------------------------------------*/
.all_l_wrap {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}

/* media query -> sp
=================================================================*/
@media only screen and (max-width: 599px) {
  .all_l_wrap {
    max-width: none;
    padding: 0 20px;
  }
}
/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  *zoom: 1;
}
.l-grid:after {
  content: "";
  display: table;
  clear: both;
}
.l-grid__item {
  display: block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  float: left;
}

.l-grid__item--1of2 {
  width: 50%;
}
.l-grid__item--1of3 {
  width: 33.33333333%;
}
.l-grid__item--1of4 {
  width: 25%;
}
.l-grid__item--1of5 {
  width: 20%;
}
.l-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-grid
---------------------------------------------------------------------------*/
.l-inline-grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
}
.l-inline-grid__item {
  display: inline-block;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-inline-grid__item--1of2 {
  width: 50%;
}
.l-inline-grid__item--1of3 {
  width: 33.33333333%;
}
.l-inline-grid__item--1of4 {
  width: 25%;
}
.l-inline-grid__item--1of5 {
  width: 20%;
}
.l-inline-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   l-flex-grid
---------------------------------------------------------------------------*/
.l-flex-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.l-flex-grid__item {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-flex-grid__item--full {
  width: 100%;
}
.l-flex-grid__item--1of2 {
  width: 50%;
}
.l-flex-grid__item--1of3 {
  width: 33.33333333%;
}
.l-flex-grid__item--1of4 {
  width: 25%;
}
.l-flex-grid__item--1of5 {
  width: 20%;
}
.l-flex-grid__item--1of6 {
  width: 16.66666666%;
}

/*--------------------------------------------------------------------------
   c-btn
---------------------------------------------------------------------------*/
.c-btn-gradation {
  width: 180px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .c-btn-gradation {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
}
.c-btn-gradation a, .c-btn-gradation > span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#67e154), color-stop(50%, #43cb5c), to(#32b46f));
  background: linear-gradient(to right, #67e154 0%, #43cb5c 50%, #32b46f 100%);
  -webkit-box-shadow: 7px 7px 15px rgba(54, 182, 114, .4);
          box-shadow: 7px 7px 15px rgba(54, 182, 114, .4);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .c-btn-gradation a:hover, .mode-sp .c-btn-gradation a:active, .mode-pc .c-btn-gradation > span:hover, .mode-sp .c-btn-gradation > span:active {
  opacity: 0.8;
}

.c-btn-basic {
  display: inline-block;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .c-btn-basic {
    font-size: 14px;
  }
}
.c-btn-basic a, .c-btn-basic > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 17px 35px;
  border: 2px solid #3A99D0;
  border-radius: 60px;
  background-color: #fff;
  font-weight: 600;
  color: #3A99D0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 599px) {
  .c-btn-basic a, .c-btn-basic > span {
    padding: 16px 36px;
  }
}
.mode-pc .c-btn-basic a:hover, .mode-sp .c-btn-basic a:active, .mode-pc .c-btn-basic > span:hover, .mode-sp .c-btn-basic > span:active {
  background-color: #3A99D0;
  color: #fff;
}

.c-btn-trans {
  width: 482px;
  height: 76px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .c-btn-trans {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}
.c-btn-trans a, .c-btn-trans > span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-trans a::before, .c-btn-trans > span::before {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../../assets/img/common/ico_arrow_circle_white.svg") no-repeat 50% 50%/cover;
  content: "";
}
.mode-pc .c-btn-trans a:hover, .mode-sp .c-btn-trans a:active, .mode-pc .c-btn-trans > span:hover, .mode-sp .c-btn-trans > span:active {
  opacity: 0.8;
}

.c-btn-circle {
  width: 482px;
  height: 76px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .c-btn-circle {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }
}
.c-btn-circle a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  color: #3A99D0;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-circle a::before {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../../assets/img/common/ico_arrow_circle.svg") no-repeat 50% 50%/cover;
  content: "";
}
.mode-pc .c-btn-circle a:hover, .mode-sp .c-btn-circle a:active {
  opacity: 0.8;
}

.c-btn {
  position: relative;
  z-index: 0;
}
.c-btn a,
.c-btn span {
  width: 100%;
  height: 100%;
}
.c-btn--small {
  width: 284px;
  height: 52px;
  font-size: 14px;
}
@media only screen and (max-width: 599px) {
  .c-btn--small {
    width: 100%;
  }
}
.c-btn--middle {
  width: 372px;
  height: 52px;
  font-size: 14px;
}
@media only screen and (max-width: 599px) {
  .c-btn--middle {
    width: 100%;
    font-size: 16px;
  }
}
.c-btn--big {
  width: 312px;
  height: 76px;
  font-size: 20px;
}
@media only screen and (max-width: 599px) {
  .c-btn--big {
    width: 100%;
    height: 60px;
    font-size: 14px;
  }
}
.c-btn--mail span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.c-btn--mail span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background: url("../../assets/img/common/ico_mail.svg") no-repeat 50% 50%/cover;
  content: "";
}
.c-btn--mail-w span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.c-btn--mail-w span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background: url("../../assets/img/common/ico_mail_white.svg") no-repeat 50% 50%/cover;
  content: "";
}
.c-btn--download span {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 34px;
}
.c-btn--download span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../../assets/img/common/ico_save_white.svg") no-repeat 50% 50%/cover;
  content: "";
}

/*--------------------------------------------------------------------------
   form
---------------------------------------------------------------------------*/
input,
button,
select,
textarea {
  border-radius: 0;
  -ms-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

form input,
form textarea {
  border: 0;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
}

/* 入力 */
.c-input {
  width: 100%;
  height: 60px;
  padding: 0 10px 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
}
@media only screen and (max-width: 599px) {
  .c-input {
    height: 50px;
    padding: 5px 15px;
    font-size: 14px;
  }
}

.c-textarea {
  width: 100%;
  max-height: 240px;
  padding: 16px 10px 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  overflow: auto;
}
@media only screen and (max-width: 599px) {
  .c-textarea {
    max-height: 200px;
    padding: 10px 12px;
    font-size: 14px;
  }
}

.c-input.ipt-err,
.c-textarea.ipt-err {
  background-color: #ffe4e4;
}

/* radio */
.c-radio + label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  cursor: pointer;
}
.c-radio + label::before, .c-radio + label::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: "";
}
.c-radio + label::before {
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #b7b7b7;
  background: #fff;
}
.c-radio + label::after {
  left: 4px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-color: #3A99D0;
  opacity: 0;
}
.c-radio:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.radio-list__item {
  display: block;
}
.radio-list__item label span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 599px) {
  .radio-list__item label span {
    padding-left: 25px;
  }
}
.radio-list__item label span::before, .radio-list__item label span::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: "";
}
.radio-list__item label span::before {
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #b7b7b7;
  background: #fff;
}
@media only screen and (max-width: 599px) {
  .radio-list__item label span::before {
    width: 18px;
    height: 18px;
  }
}
.radio-list__item label span::after {
  left: 4px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-color: #3A99D0;
  opacity: 0;
}
@media only screen and (max-width: 599px) {
  .radio-list__item label span::after {
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}
.radio-list__item label input:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* checkbox */
.c-checkbox {
  visibility: hidden;
  position: absolute;
}
.c-checkbox + label {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 30px;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 599px) {
  .c-checkbox + label {
    padding-left: 28px;
  }
}
.c-checkbox + label::before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #b7b7b7;
  background: #fff;
  content: "";
}
@media only screen and (max-width: 599px) {
  .c-checkbox + label::before {
    top: 0;
    width: 20px;
    height: 20px;
  }
}
.c-checkbox + label::after {
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #3A99D0;
  border-bottom: 3px solid #3A99D0;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
@media only screen and (max-width: 599px) {
  .c-checkbox + label::after {
    top: 2px;
    left: 6px;
    width: 8px;
    height: 14px;
  }
}

.c-checkbox:checked + label::after {
  opacity: 1;
}

.mwform-checkbox-field .c-checkbox + span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 30px;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (max-width: 599px) {
  .mwform-checkbox-field .c-checkbox + span {
    padding-left: 28px;
  }
}
.mwform-checkbox-field .c-checkbox + span::before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #b7b7b7;
  background: #fff;
  content: "";
}
@media only screen and (max-width: 599px) {
  .mwform-checkbox-field .c-checkbox + span::before {
    top: 0;
    width: 20px;
    height: 20px;
  }
}
.mwform-checkbox-field .c-checkbox + span::after {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #3A99D0;
  border-bottom: 3px solid #3A99D0;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
@media only screen and (max-width: 599px) {
  .mwform-checkbox-field .c-checkbox + span::after {
    top: 2px;
    left: 6px;
    width: 8px;
    height: 14px;
  }
}
.mwform-checkbox-field .c-checkbox:checked + span::after {
  opacity: 1;
}

/* select */
.c-select {
  position: relative;
  display: inline-block;
  width: 220px;
  height: 70px;
  background-color: #eee;
}
@media only screen and (max-width: 599px) {
  .c-select {
    height: 50px;
  }
}
.c-select.ipt-err {
  background-color: #ffe4e4;
}
.c-select::before {
  position: absolute;
  display: inline-block;
  content: "";
  pointer-events: none;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background: url("../../assets/img/common/ico_arrow_select.svg") no-repeat 0 0/cover;
}
@media only screen and (max-width: 599px) {
  .c-select::before {
    right: 14px;
  }
}
.c-select select {
  width: 100%;
  height: 70px;
  padding: 0 0 0 15px;
  font-size: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 599px) {
  .c-select select {
    height: 50px;
    padding-left: 10px;
    font-size: 14px;
  }
}

/* 幅 */
.ipt-w132 {
  width: 132px;
}
@media only screen and (max-width: 599px) {
  .ipt-w132 {
    width: 70px;
  }
}

.ipt-w220 {
  width: 220px;
}
@media only screen and (max-width: 599px) {
  .ipt-w220 {
    width: 100%;
  }
}

.ipt-w270 {
  width: 270px;
}
@media only screen and (max-width: 599px) {
  .ipt-w270 {
    width: 100%;
  }
}

.ipt-w320 {
  width: 320px;
}
@media only screen and (max-width: 599px) {
  .ipt-w320 {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .ipt-sp-w70 {
    width: 70px;
  }
}

@media only screen and (max-width: 599px) {
  .ipt-sp-w100 {
    width: 150px;
  }
}

@media only screen and (max-width: 599px) {
  .ipt-sp-w150 {
    width: 150px;
  }
}

@media only screen and (max-width: 599px) {
  .ipt-sp-w200 {
    width: 200px;
  }
}

/*--------------------------------------------------------------------------
   all_m_text
---------------------------------------------------------------------------*/
.all_m_text_em {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  padding: 0 16px;
  font-size: clamp(1.125rem, 2.3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  z-index: 0;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .all_m_text_em {
    padding: 0 1.33vw;
  }
}
@media only screen and (max-width: 599px) {
  .all_m_text_em {
    margin-top: 4px;
    padding: 0 15px;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 360px) {
  .all_m_text_em {
    padding: 0 8px;
    font-size: 16px;
  }
}
.all_m_text_em::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3A99D0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

/*--------------------------------------------------------------------------
   cf
---------------------------------------------------------------------------*/
.cf {
  *zoom: 1;
}
.cf:after {
  content: "";
  display: table;
  clear: both;
}

/**
 *
 *  LOADER
 *
 */
/*--------------------------------------------------------------------------
   loader
---------------------------------------------------------------------------*/
#Loader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  z-index: 9999999;
}

#Loader .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 5px;
  background: #3A99D0;
}

#Loader .base {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 320px;
  height: 189px;
  background-image: url(../img/common/logo_loader.svg);
  background-size: contain;
  background-position: 50% 50%;
  opacity: 0;
  z-index: 9;
}
@media only screen and (max-width: 599px) {
  #Loader .base {
    width: 224px;
    height: 132px;
  }
}

.page-index #Loader {
  display: block;
}

/* trans
-------------------------------------------*/
/* anima
-------------------------------------------*/
.load-complete .g-main {
  opacity: 1;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.is-loading .page-index #Loader .base {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.is-loaded .page-index #Loader .base {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

.load-complete .page-index #Loader {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/*--------------------------------------------------------------------------
   SHOW / HIDE
---------------------------------------------------------------------------*/
/*
 show / hide
 -- レスポンシブ用 表示/非表示
*/
.all_mi_pc {
  display: block;
}

img.all_mi_pc {
  display: inline;
}

.all_mi_sp {
  display: none;
}

/* media query -> sp
========================================*/
@media only screen and (max-width: 599px) {
  .all_mi_pc,
  img.all_mi_pc {
    display: none;
  }
  .all_mi_sp {
    display: block;
  }
  img.all_mi_sp {
    display: inline;
  }
}
/*--------------------------------------------------------------------------
   TEXT
---------------------------------------------------------------------------*/
/*
 note
 -- 改行時、一文字目に余白を持たせる
*/
.all_mi_note,
.all_mi_list_note li {
  padding-left: 1em;
  text-indent: -1em;
}

/*--------------------------------------------------------------------------
   IMAGE
---------------------------------------------------------------------------*/
/*
 max
 -- 横幅に合わせて画像を最大化
*/
.all_mi_img_max {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   HOVER
---------------------------------------------------------------------------*/
/*
 hov01
 -- 透過
*/
/* setting */
/* core */
.mi-hov01 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01:hover {
  opacity: 0.7;
}

.mi-hov01-all > * {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.mi-hov01-all > *:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------------------
   init
---------------------------------------------------------------------------*/
.is-animate.is-fadein {
  opacity: 0;
}
.is-animate.is-fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.is-animate.is-fadedown {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.is-animate.is-fadeleft {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.is-animate.is-faderight {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.is-animate.is-fadezoom {
  opacity: 0;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

/*--------------------------------------------------------------------------
   animated
---------------------------------------------------------------------------*/
.is-animated.is-fadein {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeup {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadedown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadeleft {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-faderight {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.is-animated.is-fadezoom {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.6s ease-in-out, transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

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

   keyframes

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

   mixin

===========================================================================*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
.lg-page {
  margin-top: 0;
}

.g-breadcrumb-wrap {
  position: relative;
  z-index: 9;
}

.g-breadcrumb {
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #eee;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}

.load-complete body {
  height: auto;
}

.is-fixed.load-complete body {
  height: 100%;
  overflow: hidden !important;
}

body {
  opacity: 0;
}

.load-complete body {
  opacity: 1;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
html {
  overflow-y: scroll !important;
  overscroll-behavior: none;
}
html.is-fixed.is-safari {
  overscroll-behavior-y: contain;
}
html.is-fixed.dev-sd {
  overflow-y: hidden !important;
}

/*--------------------------------------------------------------------------
   scrollsection
---------------------------------------------------------------------------*/
.is-fixed .brandmessage .scrollsection {
  opacity: 1;
}

.brandmessage .scrollsection {
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../img/common_bg.jpg") no-repeat 50% 50%/cover;
  overflow: hidden;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection {
    height: calc(var(--vh) * 100);
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection {
    height: calc(var(--vh) * 100);
    background: url("../img/common_bg_sp.jpg") no-repeat 50% 50%/cover;
  }
}
.brandmessage .scrollsection_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.brandmessage .scrollsection_bg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: auto;
  translate: -50% -50%;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_bg svg {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: auto;
    height: 100%;
  }
}
.brandmessage .scrollsection_nav {
  position: fixed;
  z-index: 9;
  bottom: 4.43vw;
  left: 2.875vw;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_nav {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_nav {
    display: none;
  }
}
.brandmessage .scrollsection_nav_list {
  list-style-type: none;
}
.brandmessage .scrollsection_nav_item {
  position: relative;
  padding-left: 22px;
}
.brandmessage .scrollsection_nav_item:not(:first-of-type) {
  margin-top: 20px;
}
.brandmessage .scrollsection_nav_item:nth-child(4) {
  margin-bottom: 10px;
}
.brandmessage .scrollsection_nav_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
}
.brandmessage .scrollsection_nav_item button {
  font-family: "Montserrat", sans-serif;
  font-size: 81.25%;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.brandmessage .scrollsection_nav_item button:hover {
  opacity: 1;
}
.brandmessage .scrollsection_nav_item._lower {
  margin-top: 5px;
  margin-left: 12px;
  padding-left: 18px;
}
.brandmessage .scrollsection_nav_item._lower::before {
  content: "";
  width: 6px;
  height: 6px;
}
.brandmessage .scrollsection_nav_item._lower button {
  font-size: 68.75%;
}
.brandmessage .scrollsection_content {
  position: absolute;
  top: 60px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: calc(100% - 60px);
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_content {
    padding: 0 6%;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_content {
    top: 50px;
    padding: 0 6%;
    height: calc(100% - 50px);
  }
}
.brandmessage .scrollsection_content_inner {
  position: relative;
  z-index: 1;
}
.brandmessage .scrollsection_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_title {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.brandmessage .scrollsection_title_en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 175%;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_title_en {
    font-size: 2.8vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_title_en {
    font-size: 5vw;
    letter-spacing: 0.02em;
  }
}
.brandmessage .scrollsection_title_ja {
  display: block;
  position: relative;
  font-size: 112.5%;
  letter-spacing: 0.12em;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_title_ja {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_title_ja {
    margin-left: -5px;
    font-size: 3.73vw;
    letter-spacing: 0.03em;
  }
}
.brandmessage .scrollsection_title_ja::before {
  content: "";
  position: relative;
  top: -4px;
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-right: 5px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_title_ja::before {
    top: -5px;
    right: -7px;
    width: 22px;
    height: 1px;
  }
}
.brandmessage .scrollsection_text {
  font-size: 125%;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_text {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_text {
    font-size: 100%;
    line-height: 1.8;
  }
}
.brandmessage .scrollsection_text + .scrollsection_text {
  margin-top: 42px;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_text + .scrollsection_text {
    margin-top: 4.2vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_text + .scrollsection_text {
    margin-top: 7vw;
  }
}
.brandmessage .scrollsection_btn {
  width: 233px;
  height: 62px;
  margin: 0 auto;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_btn {
    width: 170px;
    height: 44px;
  }
}
.brandmessage .scrollsection_btn a,
.brandmessage .scrollsection_btn button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 40px;
  font-size: 127%;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_btn a,
  .brandmessage .scrollsection_btn button {
    font-size: 100%;
  }
}
.brandmessage .scrollsection_btn a:hover, .brandmessage .scrollsection_btn a:active,
.brandmessage .scrollsection_btn button:hover,
.brandmessage .scrollsection_btn button:active {
  background-color: #fff;
  color: #14135D;
}
.brandmessage .scrollsection_btn a:hover .scrollsection_btn_icon svg, .brandmessage .scrollsection_btn a:active .scrollsection_btn_icon svg,
.brandmessage .scrollsection_btn button:hover .scrollsection_btn_icon svg,
.brandmessage .scrollsection_btn button:active .scrollsection_btn_icon svg {
  fill: #14135D;
}
.brandmessage .scrollsection_btn_icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 11.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 0;
}
.brandmessage .scrollsection_btn_icon svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.brandmessage .scrollsection_btn._back .scrollsection_btn_icon {
  right: auto;
  left: 11.5%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.brandmessage .scrollsection_top .scrollsection_content {
  top: 105px;
  height: calc(100% - 105px);
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_top .scrollsection_content {
    top: 60px;
    height: calc(100% - 60px);
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_top .scrollsection_content {
    top: 60px;
    height: calc(100% - 60px);
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_top_01_title {
    width: 57.55vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_top_01_title {
    width: 80.8vw;
  }
}
@media screen and (max-width: 999px) {
  .brandmessage .scrollsection_top_01_title img {
    width: 100%;
    height: auto;
  }
}
.brandmessage .scrollsection_top_01_scroll {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.brandmessage .scrollsection_top_01_scroll_text {
  height: 110px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_top_01_scroll_text {
    height: 100px;
  }
}
.brandmessage .scrollsection_top_01_scroll_text .text {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 127%;
  font-weight: 600;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_top_01_scroll_text .text {
    font-size: 93.8%;
  }
}
.brandmessage .scrollsection_top_01_scroll_text .line {
  width: 2px;
  height: 71px;
  position: absolute;
  left: calc(50% - 1px);
  bottom: 0;
  overflow: hidden;
}
.brandmessage .scrollsection_top_01_scroll_text .line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: rgba(255, 255, 255, .45);
  width: 2px;
  height: 71px;
}
.brandmessage .scrollsection_top_01_scroll_text .line::after {
  content: "";
  background: #fff;
  width: 2px;
  height: 22px;
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 2;
  display: block;
  opacity: 1;
  -webkit-animation-name: scrollLine;
          animation-name: scrollLine;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: translateY(-11px);
            transform: translateY(-11px);
  }
  100% {
    -webkit-transform: translateY(71px);
            transform: translateY(71px);
  }
}
@keyframes scrollLine {
  0% {
    -webkit-transform: translateY(-11px);
            transform: translateY(-11px);
  }
  100% {
    -webkit-transform: translateY(71px);
            transform: translateY(71px);
  }
}
@media only screen and (max-width: 599px) {
  @-webkit-keyframes scrollLine {
    0% {
      -webkit-transform: translateY(71px);
              transform: translateY(71px);
    }
    100% {
      -webkit-transform: translateY(-22px);
              transform: translateY(-22px);
    }
  }
  @keyframes scrollLine {
    0% {
      -webkit-transform: translateY(71px);
              transform: translateY(71px);
    }
    100% {
      -webkit-transform: translateY(-22px);
              transform: translateY(-22px);
    }
  }
}
.brandmessage .scrollsection_top_02_images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5vw;
  pointer-events: none;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_top_02_images {
    margin: 0 -8vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_top_02_images {
    margin: 0 -10vw;
  }
}
.brandmessage .scrollsection_top_02_img {
  width: 16.25vw;
  margin: 0.5vw;
  border-radius: 1vw;
  overflow: hidden;
}
@media (max-aspect-ratio: 5/3.1) {
  .brandmessage .scrollsection_top_02_img {
    width: 18.8vw;
  }
}
@media (max-aspect-ratio: 5/4.4) {
  .brandmessage .scrollsection_top_02_img {
    width: 23.8vw;
  }
}
@media (max-aspect-ratio: 5/5.6) {
  .brandmessage .scrollsection_top_02_img {
    width: 32vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_top_02_img {
    width: 49.33vw;
    height: auto;
    margin: 1.52vw;
    border-radius: 4.26vw;
  }
}
.brandmessage .scrollsection_top_02_img img {
  width: 100%;
  height: auto;
}
.brandmessage .scrollsection_slogan_01_text {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .brandmessage .scrollsection_slogan_01_text {
    max-width: none;
  }
}
.brandmessage .scrollsection_slogan_01_iconlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 852px;
  margin-top: 3.75vw;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_slogan_01_iconlist {
    margin-top: 6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_slogan_01_iconlist {
    max-width: 375px;
    margin-top: 11.68vw;
  }
}
.brandmessage .scrollsection_slogan_01_icon {
  width: 110px;
  height: 110px;
  margin: 0 1.56vw 2vw;
  background-color: #A8D4FB;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, .76);
          box-shadow: 0 0 20px rgba(255, 255, 255, .76);
  list-style-type: none;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_slogan_01_icon {
    width: 88px;
    height: 88px;
    margin: 0 2.6vw 5vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_slogan_01_icon img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_slogan_02 .scrollsection_content_inner {
    padding: 0 4.26vw;
  }
}
.brandmessage .scrollsection_slogan_02_slogan {
  margin-top: 66px;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_slogan_02_slogan {
    width: 57.55vw;
    margin-top: 6.6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_slogan_02_slogan {
    width: 80.8vw;
    margin-top: 4.8vw;
  }
}
@media screen and (max-width: 999px) {
  .brandmessage .scrollsection_slogan_02_slogan img {
    width: 100%;
    height: auto;
  }
}
.brandmessage .scrollsection_statement {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.brandmessage .scrollsection_statement .scrollsection_title {
  margin-bottom: 75px;
}
@media screen and (max-height: 580px) {
  .brandmessage .scrollsection_statement .scrollsection_title {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_statement .scrollsection_title {
    margin-bottom: 7.5vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement .scrollsection_title {
    margin-bottom: 3.73vw;
  }
}
.brandmessage .scrollsection_statement_01_btn {
  margin-top: 60px;
}
@media screen and (max-height: 580px) {
  .brandmessage .scrollsection_statement_01_btn {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_statement_01_btn {
    margin-top: 6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_01_btn {
    margin-top: 10.66vw;
  }
}
.brandmessage .scrollsection_statement_01_btn.scrollsection_btn {
  width: 179px;
  height: 52px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_01_btn.scrollsection_btn {
    width: 170px;
    height: 48px;
  }
}
.brandmessage .scrollsection_statement_01_btn.scrollsection_btn button {
  padding-right: 10px;
  font-size: 100%;
}
.brandmessage .scrollsection_statement_02 {
  display: block;
  overflow-y: scroll;
  overscroll-behavior: none;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_02 {
    padding: 0;
  }
}
.brandmessage .scrollsection_statement_02_overflow {
  width: 100%;
  height: auto;
}
.brandmessage .scrollsection_statement_02_overflow_inline {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.brandmessage .scrollsection_statement_02_bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.brandmessage .scrollsection_statement_02_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 28, 52, .68);
}
.brandmessage .scrollsection_statement_02_bg_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.3;
}
.brandmessage .scrollsection_statement_02_bg_line svg {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 200%;
  height: auto;
  translate: -50% -50%;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_02_bg_line svg {
    top: 45%;
    left: 50%;
    translate: -50% -50%;
    width: auto;
    height: 100%;
  }
}
.brandmessage .scrollsection_statement_02_bg_line svg .all_line_obj > g {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.brandmessage .scrollsection_statement_02 #video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
.brandmessage .scrollsection_statement_02_inner {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 150px 0 190px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-height: 650px) {
  .brandmessage .scrollsection_statement_02_inner {
    padding: 40px 0 100px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_statement_02_inner {
    padding-left: 15vw;
    padding-right: 15vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_02_inner {
    padding: 60px 0 120px;
  }
}
.brandmessage .scrollsection_statement_02_inner .scrollsection_content_inner {
  position: relative;
}
.brandmessage .scrollsection_statement_02_commentwrap {
  height: 100%;
  padding-right: 14vw;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_02_commentwrap {
    max-width: 80vw;
    min-width: 280px;
    padding-right: 5vw;
  }
}
.brandmessage .scrollsection_statement_02_comment {
  padding-bottom: 100px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_02_comment {
    padding-bottom: 50px;
  }
}
.brandmessage .scrollsection_statement_02_comment .scrollsection_text {
  line-height: 2.14;
}
@media screen and (max-width: 999px) {
  .brandmessage .scrollsection_statement_02_comment .scrollsection_text {
    line-height: 1.8;
  }
}
.brandmessage .scrollsection_statement_02_comment._03 {
  margin-top: 42px;
}
.brandmessage .scrollsection_statement_02_comment._03 .scrollsection_text, .brandmessage .scrollsection_statement_02_comment._04 .scrollsection_text {
  line-height: 1.7;
}
@media screen and (max-width: 999px) {
  .brandmessage .scrollsection_statement_02_comment._03 .scrollsection_text, .brandmessage .scrollsection_statement_02_comment._04 .scrollsection_text {
    line-height: 1.8;
  }
}
.brandmessage .scrollsection_statement_02_comment._04 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_02_comment._04 {
    padding-bottom: 0;
  }
}
.brandmessage .scrollsection_statement_02_scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background-color: rgba(193, 193, 193, .25);
  border-radius: 6px;
}
.brandmessage .scrollsection_statement_02_scrollbar_thumb {
  width: 3px;
  height: 0%;
  background-color: #fff;
  border-radius: 6px;
}
.brandmessage .scrollsection_statement_02_btn {
  position: absolute;
  right: -30px;
  bottom: -80px;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_statement_02_btn {
    right: 4.5vw;
    bottom: 10vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_statement_02_btn {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 30px auto 0;
    padding-bottom: 50px;
  }
}
.brandmessage .scrollsection_statement_02_btn.scrollsection_btn {
  width: 60px;
  height: 60px;
}
.brandmessage .scrollsection_statement_02_btn .scrollsection_btn_icon {
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.brandmessage .scrollsection_promise_01_text {
  max-width: 600px;
  margin-top: 3.75vw;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_01_text {
    margin-top: 3vw;
  }
}
.brandmessage .scrollsection_promise_02_body {
  position: absolute;
  top: 50%;
  left: 18.75vw;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_body {
    left: 6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_body {
    top: 15%;
    left: 5.3vw;
    -webkit-transform: none;
            transform: none;
  }
}
.brandmessage .scrollsection_promise_02_lead {
  position: relative;
}
.brandmessage .scrollsection_promise_02_lead_text {
  font-size: 100%;
  text-shadow: 0 0 16px rgba(6, 68, 131, .17);
  letter-spacing: 0.05em;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_lead_text {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_lead_text {
    font-size: 3.73vw;
    text-shadow: inherit;
  }
}
.brandmessage .scrollsection_promise_02_lead_text._02, .brandmessage .scrollsection_promise_02_lead_text._03 {
  position: absolute;
  top: 0;
  left: 0;
}
.brandmessage .scrollsection_promise_02_copy {
  position: relative;
  margin-top: 50px;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_copy {
    margin-top: 5vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_copy {
    margin-top: 6.66vw;
  }
}
.brandmessage .scrollsection_promise_02_copy_text {
  font-size: 150%;
  text-shadow: 0 0 26px rgba(0, 0, 0, .16);
  line-height: 1.7;
  letter-spacing: 0.075em;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .brandmessage .scrollsection_promise_02_copy_text {
    font-size: 2vw;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_copy_text {
    font-size: 3.2vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_copy_text {
    font-size: 4.2vw;
    text-shadow: inherit;
  }
}
.brandmessage .scrollsection_promise_02_copy_text._02, .brandmessage .scrollsection_promise_02_copy_text._03 {
  position: absolute;
  top: 0;
  left: 0;
}
.brandmessage .scrollsection_promise_02_header {
  position: absolute;
  top: 50%;
  right: 18.75vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_header {
    right: 6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_header {
    top: auto;
    right: 5.3vw;
    bottom: 15%;
    -webkit-transform: none;
            transform: none;
  }
}
.brandmessage .scrollsection_promise_02_number .number {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 1000%;
  text-shadow: 0 0 36px rgba(29, 30, 36, .36);
  text-align: right;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .brandmessage .scrollsection_promise_02_number .number {
    font-size: 13.33vw;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_number .number {
    font-size: 16vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_number .number {
    font-size: 25.6vw;
    text-shadow: inherit;
  }
}
.brandmessage .scrollsection_promise_02_number .number._02, .brandmessage .scrollsection_promise_02_number .number._03 {
  position: absolute;
  top: 0;
  right: 8px;
}
.brandmessage .scrollsection_promise_02_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  margin: 13px 14px 0 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_title {
    margin-right: 10px;
  }
}
.brandmessage .scrollsection_promise_02_title_en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 156%;
  font-weight: 500;
  text-shadow: 0 0 18px rgba(29, 30, 36, .6);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  .brandmessage .scrollsection_promise_02_title_en {
    font-size: 2vw;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_title_en {
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_title_en {
    font-size: 5vw;
    text-shadow: inherit;
  }
}
.brandmessage .scrollsection_promise_02_title_ja {
  display: block;
  position: relative;
  margin-top: 13px;
  font-size: 100%;
  font-weight: 400;
  text-shadow: 0 0 18px rgba(29, 30, 36, .45);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1200px) {
  .brandmessage .scrollsection_promise_02_title_ja {
    font-size: 1.33vw;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .scrollsection_promise_02_title_ja {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_title_ja {
    margin-top: 10px;
    font-size: 3.73vw;
    text-shadow: inherit;
  }
}
.brandmessage .scrollsection_promise_02_title_ja::before {
  position: relative;
  top: -6px;
  right: -4px;
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_title_ja::before {
    width: 24px;
    right: 0px;
  }
}
.brandmessage .scrollsection_promise_02_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.brandmessage .scrollsection_promise_02_bg img {
  width: 100%;
  height: 100%;
}
.brandmessage .scrollsection_promise_02_bg_img {
  overflow: hidden;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  width: 468px;
  height: 468px;
  border-radius: 44px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .scrollsection_promise_02_bg_img {
    width: 204px;
    height: 204px;
  }
}
.brandmessage .scrollsection_promise_02_bg_img .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@media screen and (max-height: 530px) {
  .brandmessage .scrollsection_promise_02_bg_img .img._01 img {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: auto;
    height: 100%;
  }
}
@media screen and (max-height: 750px) {
  .brandmessage .scrollsection_promise_02_bg_img .img._02 img {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: auto;
    height: 100%;
  }
}
.brandmessage .scrollsection_promise_02_bg_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.brandmessage .scrollsection_promise_03 {
  overflow: hidden;
}
.brandmessage .scrollsection_promise_03_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.brandmessage .scrollsection_promise_03_bg img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brandmessage .scrollsection_promise_03_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 68, 131, .15);
}
.brandmessage .scrollsection_promise_03_text {
  max-width: 800px;
  text-shadow: 0 0 30px rgba(0, 0, 0, .3), 0 0 30px rgba(0, 0, 0, .3);
}

body[data-scene=top] .scrollsection_nav_item[data-scene=top],
body[data-scene=slogan] .scrollsection_nav_item[data-scene=slogan],
body[data-scene=statement] .scrollsection_nav_item[data-scene=statement],
body[data-scene=promise] .scrollsection_nav_item[data-scene=promise],
body[data-scene=promise][data-promise="1"] .scrollsection_nav_item[data-scene=promise1],
body[data-scene=promise][data-promise="2"] .scrollsection_nav_item[data-scene=promise2],
body[data-scene=promise][data-promise="3"] .scrollsection_nav_item[data-scene=promise3],
body[data-scene=promise][data-promise="4"] .scrollsection_nav_item[data-scene=promise3],
body[data-scene=story] .scrollsection_nav_item[data-scene=story] {
  font-weight: 600;
}
body[data-scene=top] .scrollsection_nav_item[data-scene=top]::before,
body[data-scene=slogan] .scrollsection_nav_item[data-scene=slogan]::before,
body[data-scene=statement] .scrollsection_nav_item[data-scene=statement]::before,
body[data-scene=promise] .scrollsection_nav_item[data-scene=promise]::before,
body[data-scene=promise][data-promise="1"] .scrollsection_nav_item[data-scene=promise1]::before,
body[data-scene=promise][data-promise="2"] .scrollsection_nav_item[data-scene=promise2]::before,
body[data-scene=promise][data-promise="3"] .scrollsection_nav_item[data-scene=promise3]::before,
body[data-scene=promise][data-promise="4"] .scrollsection_nav_item[data-scene=promise3]::before,
body[data-scene=story] .scrollsection_nav_item[data-scene=story]::before {
  width: 12px;
  height: 12px;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(255,255,255,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 16px #fff);
          filter: drop-shadow(0px 0px 16px #fff);
  opacity: 1;
}
body[data-scene=top] .scrollsection_nav_item[data-scene=top] button,
body[data-scene=slogan] .scrollsection_nav_item[data-scene=slogan] button,
body[data-scene=statement] .scrollsection_nav_item[data-scene=statement] button,
body[data-scene=promise] .scrollsection_nav_item[data-scene=promise] button,
body[data-scene=promise][data-promise="1"] .scrollsection_nav_item[data-scene=promise1] button,
body[data-scene=promise][data-promise="2"] .scrollsection_nav_item[data-scene=promise2] button,
body[data-scene=promise][data-promise="3"] .scrollsection_nav_item[data-scene=promise3] button,
body[data-scene=promise][data-promise="4"] .scrollsection_nav_item[data-scene=promise3] button,
body[data-scene=story] .scrollsection_nav_item[data-scene=story] button {
  opacity: 1;
  font-size: 100%;
  font-weight: 600;
}

body[data-scene=promise][data-promise="1"] .scrollsection_nav_item[data-scene=promise1]::before,
body[data-scene=promise][data-promise="2"] .scrollsection_nav_item[data-scene=promise2]::before,
body[data-scene=promise][data-promise="3"] .scrollsection_nav_item[data-scene=promise3]::before {
  width: 9px;
  height: 9px;
}
body[data-scene=promise][data-promise="1"] .scrollsection_nav_item[data-scene=promise1] button,
body[data-scene=promise][data-promise="2"] .scrollsection_nav_item[data-scene=promise2] button,
body[data-scene=promise][data-promise="3"] .scrollsection_nav_item[data-scene=promise3] button {
  font-size: 93.75%;
}

/*--------------------------------------------------------------------------
   story
---------------------------------------------------------------------------*/
.brandmessage .story .scrollsection_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + 2px);
  background: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story .scrollsection_content {
    height: calc(var(--vh) * 100 + 2px);
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story .scrollsection_content {
    height: calc(var(--vh) * 100 + 2px);
  }
}
.brandmessage .story_content {
  max-width: 1000px;
  margin: 0 auto;
}
.brandmessage .story_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #14135D;
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.brandmessage .story_title_en {
  font-family: "Montserrat", sans-serif;
  font-size: 456.25%; /*73*/
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story_title_en {
    font-size: 362.5%; /*58*/
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_title_en {
    font-size: 350%; /*56*/
  }
}
.brandmessage .story_title_ja {
  margin-left: 22px;
  font-size: 112.5%;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_title_ja {
    margin: 15px 0 0;
    font-size: 87.5%;
  }
}
.brandmessage .story_lead {
  margin-top: 40px;
  font-size: 100%;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #01012c;
}
@media screen and (max-height: 780px) {
  .brandmessage .story_lead {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_lead {
    margin-top: 30px;
    font-size: 87.5%;
  }
}
.brandmessage .story_article {
  position: relative;
  width: 100%;
  height: 370px;
  margin-top: 90px;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story_article {
    height: 37vw;
    margin-top: 9vw;
  }
}
@media screen and (max-height: 850px) {
  .brandmessage .story_article {
    margin-top: 20px;
  }
}
@media screen and (max-height: 780px) {
  .brandmessage .story_article {
    height: 300px;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article {
    height: 64vw;
    margin-top: 30px;
    aspect-ratio: 335/240;
    border-radius: 11px;
  }
}
.brandmessage .story_article a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.brandmessage .story_article a:hover .story_article_bg::before, .brandmessage .story_article a:active .story_article_bg::before {
  opacity: 0.8;
}
.brandmessage .story_article a:hover .story_article_icon, .brandmessage .story_article a:active .story_article_icon {
  background: #fff;
}
.brandmessage .story_article a:hover .story_article_icon svg, .brandmessage .story_article a:active .story_article_icon svg {
  fill: #14135D;
}
.brandmessage .story_article_bg {
  width: 100%;
  height: 100%;
}
.brandmessage .story_article_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(188, 255, 251, .1)), to(#064483));
  background: linear-gradient(to bottom, rgba(188, 255, 251, .1) 0, #064483 100%);
  opacity: 0.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article_bg::before {
    opacity: 0.58;
  }
}
.brandmessage .story_article_bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .1);
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article_bg::after {
    background-color: rgba(29, 29, 29, .21);
  }
}
.brandmessage .story_article_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brandmessage .story_article_body {
  position: absolute;
  bottom: 35px;
  left: 30px;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story_article_body {
    bottom: 3.5vw;
    left: 3vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article_body {
    bottom: 14px;
    left: 17px;
  }
}
.brandmessage .story_article_date {
  font-family: "Montserrat", sans-serif;
  font-size: 93.8%;
  font-weight: 500;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story_article_date {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article_date {
    font-size: 81.25%;
  }
}
.brandmessage .story_article_title {
  margin-top: 20px;
  font-size: 150%;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story_article_title {
    margin-top: 2vw;
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article_title {
    margin: 12px 73px 0 0;
    font-size: 112.5%;
    line-height: 1.55;
  }
}
.brandmessage .story_article_client {
  margin-top: 20px;
  font-size: 100%;
  font-weight: 600;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story_article_client {
    margin-top: 2vw;
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article_client {
    margin-top: 10px;
    font-size: 81.25%;
  }
}
.brandmessage .story_article_icon {
  position: absolute;
  right: 31px;
  bottom: 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .story_article_icon {
    right: 3.1vw;
    bottom: 3.4vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .story_article_icon {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
.brandmessage .story_article_icon svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*--------------------------------------------------------------------------
   link
---------------------------------------------------------------------------*/
.brandmessage .link {
  position: relative;
  z-index: 0;
  padding: 105px 0 130px;
  background: #14135D;
  color: #fff;
}
.brandmessage .link_content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .link_content {
    padding: 0 6%;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_content {
    padding: 0 6%;
  }
}
.brandmessage .link_lead {
  font-size: 100%;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.03em;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_lead {
    font-size: 87.5%;
    line-height: 1.8;
    text-align: left;
  }
}
.brandmessage .link_body {
  margin-top: 65px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_body {
    margin-top: 38px;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area._solution .link_area_btn {
    position: relative;
    background: url("../img/link_solution_bg_sp.jpg") no-repeat 50% 50%/cover;
  }
  .brandmessage .link_area._solution .link_area_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 19, 93, .85);
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area._contact {
    margin-top: 25px;
  }
}
.brandmessage .link_area._contact .link_area_btn {
  position: absolute;
  top: 234px;
  left: calc(50% + 29px);
}
@media screen and (min-width: 999px) and (max-width: 1230px) {
  .brandmessage .link_area._contact .link_area_btn {
    left: auto;
    right: 10px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .link_area._contact .link_area_btn {
    top: 234px;
    left: auto;
    right: 6%;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area._contact .link_area_btn {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    background: url("../img/link_contact_bg_sp.jpg") no-repeat 50% 50%/cover;
  }
  .brandmessage .link_area._contact .link_area_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 19, 93, .85);
  }
}
.brandmessage .link_area_btn {
  max-width: 566px;
  width: 47.66%;
  aspect-ratio: 572/320;
  /*.mode-pc &:hover,
  .mode-sp &:hover {
    a {
      &::before {
        opacity: 1;
      }

      .link_area_btn_icon {
        background: #93FFF9;
        transform: scale(1.1);

        &::before {
          opacity: 0;
        }

        &::after {
          opacity: 1;
        }
      }
    }

    & + .link_area_bg {
      opacity: 1;
    }
  }*/
}
@media screen and (min-width: 999px) and (max-width: 1230px) {
  .brandmessage .link_area_btn {
    width: 46vw;
  }
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .link_area_btn {
    width: 41vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area_btn {
    width: auto;
    aspect-ratio: 335/188;
  }
}
.brandmessage .link_area_btn:not(:first-of-type) {
  margin-left: auto;
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area_btn:not(:first-of-type) {
    margin: 0;
  }
}
.brandmessage .link_area_btn a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px;
  border: 3px solid rgba(255, 255, 255, .6);
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .link_area_btn a {
    padding: 3.33vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area_btn a {
    padding: 20px;
    border-radius: 11px;
  }
}
.brandmessage .link_area_btn a::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 5px solid white;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.brandmessage .link_area_btn_title {
  font-family: "Montserrat", sans-serif;
  font-size: 73px;
  font-weight: 400;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .link_area_btn_title {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area_btn_title {
    font-size: 41px;
  }
}
.brandmessage .link_area_btn_text {
  margin-top: 10px;
  font-size: 100%;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area_btn_text {
    font-size: 87.5%;
  }
}
.brandmessage .link_area_btn_icon {
  display: block;
  position: absolute;
  right: 40px;
  bottom: 35px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  line-height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .link_area_btn_icon {
    right: 3.33vw;
    bottom: 2.91vw;
    width: 5vw;
    height: 5vw;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area_btn_icon {
    right: 23px;
    bottom: 20px;
    width: 35px;
    height: 35px;
  }
}
.brandmessage .link_area_btn_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3A99D0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 599px) {
  .brandmessage .link_area_btn_icon::before {
    width: 3px;
    height: 3px;
  }
}
.brandmessage .link_area_btn_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7px;
  height: 12px;
  background: url("../img/link_arrow_icon.svg") no-repeat 50% 50%/contain;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .brandmessage .link_area_btn._hover:not(:hover), .mode-sp .brandmessage .link_area_btn._hover:not(:hover) {
  opacity: 0.3;
}
@media screen and (min-width: 600px) {
  .brandmessage .link_area_btn:hover a::before {
    opacity: 1;
  }
  .brandmessage .link_area_btn:hover a .link_area_btn_icon {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .brandmessage .link_area_btn:hover a .link_area_btn_icon::before {
    opacity: 0;
  }
  .brandmessage .link_area_btn:hover a .link_area_btn_icon::after {
    opacity: 1;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg {
    opacity: 1;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_g > g {
    opacity: 1;
    translate: 0 0;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_1 {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_2 {
    -webkit-transition-delay: 0.05s;
            transition-delay: 0.05s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_3 {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_4 {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_5 {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_6 {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_7 {
    -webkit-transition-delay: 0.05s;
            transition-delay: 0.05s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_8 {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_9 {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .brandmessage .link_area_btn:hover + .link_area_bg .link_area_bg_svg svg .link_area_10 {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}
.mode-sp .brandmessage .link_area_btn:active a::before {
  opacity: 1;
}
.mode-sp .brandmessage .link_area_btn:active a .link_area_btn_icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mode-sp .brandmessage .link_area_btn:active a .link_area_btn_icon::before {
  opacity: 0;
}
.mode-sp .brandmessage .link_area_btn:active a .link_area_btn_icon::after {
  opacity: 1;
}
.brandmessage .link_area_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.brandmessage .link_area_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 19, 93, .85);
}
.brandmessage .link_area_bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/link_area_bg.svg") no-repeat 50% 50%/contain;
  -webkit-transform: translate(-20%, 20%);
          transform: translate(-20%, 20%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.brandmessage .link_area_bg_svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.brandmessage .link_area_bg_svg svg {
  width: 100%;
  height: 100%;
  scale: 1.4;
}
.brandmessage .link_area_bg_svg svg .link_area_g > g {
  opacity: 0;
  translate: -10% 10%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.brandmessage .link_area_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*--------------------------------------------------------------------------
   story
---------------------------------------------------------------------------*/
.brandmessage .pagetop {
  position: fixed;
  right: 0px;
  bottom: 0px;
  padding: 30px 3%;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.brandmessage .pagetop.is-foot {
  position: absolute;
}
@media only screen and (min-width: 600px) and (max-width: 999px) {
  .brandmessage .pagetop {
    right: 40px;
    padding: 20px 4%;
  }
}
@media only screen and (max-width: 599px) {
  .brandmessage .pagetop {
    padding: 15px 7%;
  }
}
.brandmessage .pagetop_btn {
  display: inline-block;
  padding: 10px;
  background-color: rgba(12, 13, 106, .9);
  border-radius: 100%;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.brandmessage .pagetop_btn:hover, .brandmessage .pagetop_btn:active {
  background-color: #0c0d6a;
}
.brandmessage .pagetop_btn:hover .g-ico, .brandmessage .pagetop_btn:active .g-ico {
  -webkit-animation: g-top-back 0.5s linear;
          animation: g-top-back 0.5s linear;
}
.brandmessage .pagetop .g-ico {
  display: inline-block;
  stroke: #fff;
  vertical-align: middle;
  stroke-width: 2;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 599px) {
  .brandmessage .pagetop .g-ico {
    stroke-width: 3;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 413px) {
  .brandmessage .pagetop .g-ico {
    width: 25px;
    height: 25px;
  }
}
@-webkit-keyframes g-top-back {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  25% {
    opacity: 0;
    -webkit-transform: translate(0, -20%);
    transform: translate(0, -20%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(0, 20%);
    transform: translate(0, 20%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes g-top-back {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  25% {
    opacity: 0;
    -webkit-transform: translate(0, -20%);
    transform: translate(0, -20%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(0, 20%);
    transform: translate(0, 20%);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

.load-complete .brandmessage .pagetop {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.load-complete body[data-scene=top] .brandmessage .pagetop {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/*--------------------------------------------------------------------------
   animation
---------------------------------------------------------------------------*/
/* common
-----------------------------------------------------------------*/
.g-breadcrumb {
  translate: 0 -100%;
  -webkit-transition: translate 1s ease-in-out;
  transition: translate 1s ease-in-out;
}

.lg-header-spot-wrap,
.lg-footer-spot {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.scrollsection_nav {
  opacity: 0;
  translate: -150% 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

body[data-scene=slogan] .scrollsection_nav,
body[data-scene=statement] .scrollsection_nav,
body[data-scene=promise] .scrollsection_nav {
  opacity: 1;
  translate: 0 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

/* top
-----------------------------------------------------------------*/
body[data-scene=top] .g-breadcrumb {
  translate: 0 0;
}

.scrollsection_top_01_title {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.scrollsection_top_01_scroll {
  opacity: 0;
}

.scrollsection_top_02_images {
  opacity: 0;
  scale: 1.5;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.scrollsection_top_02_img {
  opacity: 0;
}

body[data-scene=top] .scrollsection_top_01_title {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=top] .scrollsection_top_01_scroll {
  opacity: 1;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
body[data-scene=top][data-top="2"] .scrollsection_top_01_title {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
body[data-scene=top][data-top="2"] .scrollsection_top_01_scroll {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
body[data-scene=top][data-top="2"] .scrollsection_top_02_images {
  opacity: 1;
}
body[data-scene=top][data-top="3"] .scrollsection_top_01_title {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
body[data-scene=top][data-top="3"] .scrollsection_top_01_scroll {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
body[data-scene=top][data-top="3"] .scrollsection_top_02_images {
  opacity: 1;
}
body[data-scene=top][data-top="3"] .scrollsection_top_02_images {
  scale: 1;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transition: opacity 1s ease-in-out, scale 1s ease-in-out;
  transition: opacity 1s ease-in-out, scale 1s ease-in-out;
}

.scrollsection_top_02_img.is-show {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

/* slogan
-----------------------------------------------------------------*/
.scrollsection_slogan_01 {
  translate: 0 100%;
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.scrollsection_slogan_01 .scrollsection_slogan_01_text {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.scrollsection_slogan_01 .scrollsection_slogan_01_icon {
  opacity: 0;
  translate: 0 100%;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.scrollsection_slogan_02 {
  translate: 0 100%;
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.scrollsection_slogan_02 .scrollsection_slogan_02_slogan {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

body[data-scene=slogan] .scrollsection_top_02_images {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  scale: 1;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_top_02_images {
  opacity: 0.13;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_text {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_text:nth-of-type(1) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_text:nth-of-type(2) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_text:nth-of-type(3) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon {
  opacity: 1;
  translate: 0 0;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(1) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(2) {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(3) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(4) {
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(5) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(6) {
  -webkit-transition-delay: 1.55s;
          transition-delay: 1.55s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(7) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(8) {
  -webkit-transition-delay: 1.65s;
          transition-delay: 1.65s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_01 .scrollsection_slogan_01_icon:nth-of-type(9) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
body[data-scene=slogan][data-slogan="1"] .scrollsection_slogan_02 {
  translate: 0 100%;
  opacity: 0;
}
body[data-scene=slogan][data-slogan="2"] .scrollsection_top_02_images {
  opacity: 0;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body[data-scene=slogan][data-slogan="2"] .scrollsection_slogan_01 {
  translate: 0 -100%;
  opacity: 0;
}
body[data-scene=slogan][data-slogan="2"] .scrollsection_slogan_02 {
  translate: 0 0;
  opacity: 1;
}
body[data-scene=slogan][data-slogan="2"] .scrollsection_slogan_02 .scrollsection_slogan_02_slogan {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

body[data-scene=statement] .scrollsection_top_02_images,
body[data-scene=promise] .scrollsection_top_02_images,
body[data-scene=story] .scrollsection_top_02_images {
  opacity: 0 !important;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px) !important;
          filter: blur(5px) !important;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}
body[data-scene=statement] .scrollsection_top,
body[data-scene=promise] .scrollsection_top,
body[data-scene=story] .scrollsection_top {
  opacity: 0;
}
body[data-scene=statement] .scrollsection_slogan_01,
body[data-scene=promise] .scrollsection_slogan_01,
body[data-scene=story] .scrollsection_slogan_01 {
  translate: 0 -100%;
  opacity: 0;
}
body[data-scene=statement] .scrollsection_slogan_02,
body[data-scene=promise] .scrollsection_slogan_02,
body[data-scene=story] .scrollsection_slogan_02 {
  translate: 0 -100%;
  opacity: 0;
}

/* statement
-----------------------------------------------------------------*/
.scrollsection_statement_01 {
  translate: 0 100%;
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.scrollsection_statement_01 .scrollsection_statement_01_text {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.scrollsection_statement_01 .scrollsection_statement_01_btn {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.scrollsection_statement_02 {
  translate: 0 100%;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.scrollsection_statement_02 .scrollsection_text {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.scrollsection_statement_02 .scrollsection_text.is-show {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}
.scrollsection_statement_02 .scrollsection_content_inner {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

body[data-scene=statement] .scrollsection_statement {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
body[data-scene=statement] .scrollsection_statement_02 {
  translate: 0 0;
}
body[data-scene=statement][data-statement="1"] .scrollsection_statement_01 {
  translate: 0 0;
  opacity: 1;
}
body[data-scene=statement][data-statement="1"] .scrollsection_statement_01_text {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=statement][data-statement="1"] .scrollsection_statement_01_btn {
  opacity: 1;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=statement][data-statement="2"] .scrollsection_statement_01 {
  translate: 0 0;
}
body[data-scene=statement][data-statement="2"] .scrollsection_statement_01 .scrollsection_statement_01_text {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: none;
  transition: none;
}
body[data-scene=statement][data-statement="2"] .scrollsection_statement_01 .scrollsection_statement_01_btn {
  opacity: 1;
  -webkit-transition: none;
  transition: none;
}
body[data-scene=statement][data-statement="2"] .scrollsection_statement_02 {
  translate: 0 0;
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
body[data-scene=statement][data-statement="2"] .scrollsection_statement_02 .scrollsection_content_inner {
  opacity: 1;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body[data-scene=statement][data-statement="2"] .scrollsection_statement_02 .scrollsection_text {
  -webkit-transition: opacity 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, filter 1s ease-in-out, -webkit-filter 1s ease-in-out;
}

body[data-scene=promise] .scrollsection_statement_01 {
  translate: 0 -100%;
  opacity: 0;
}
body[data-scene=promise] .scrollsection_statement_02 {
  translate: 0 -100%;
}

/* promise
-----------------------------------------------------------------*/
.scrollsection_promise_01 {
  translate: 0 100%;
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.scrollsection_promise_01 .scrollsection_promise_01_text {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: opacity 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, filter 1s ease-in-out, -webkit-filter 1s ease-in-out;
}

.scrollsection_promise_02 {
  visibility: hidden;
  pointer-events: none;
  translate: 0 100%;
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.scrollsection_promise_02 .scrollsection_promise_02_header,
.scrollsection_promise_02 .scrollsection_promise_02_body,
.scrollsection_promise_02 .scrollsection_promise_02_bg {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.scrollsection_promise_03 {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: opacity 1s ease-in-out, visibility 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out, -webkit-filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out, filter 1s ease-in-out;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out, filter 1s ease-in-out, -webkit-filter 1s ease-in-out;
}

body[data-scene=promise][data-promise="0"] .scrollsection_promise_01 {
  translate: 0 0;
  opacity: 1;
}
body[data-scene=promise][data-promise="0"] .scrollsection_promise_01 .scrollsection_promise_01_text {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_lead_text._02,
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_lead_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_copy_text._02,
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_copy_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_number .number._02,
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_number .number._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_bg_img {
  width: 468px;
  height: 468px;
  border-radius: 44px;
}
@media only screen and (max-width: 599px) {
  body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_bg_img {
    width: 204px;
    height: 204px;
  }
}
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_bg_img .img._02,
body[data-scene=promise][data-promise="0"] .scrollsection_promise_02_bg_img .img._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_01 {
  translate: 0 -100%;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02 {
  visibility: visible;
  pointer-events: all;
  translate: 0 0;
  opacity: 1;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02 .scrollsection_promise_02_header,
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02 .scrollsection_promise_02_body,
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  opacity: 1;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02 .scrollsection_promise_02_header {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02 .scrollsection_promise_02_body {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_lead_text._02,
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_lead_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_copy_text._02,
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_copy_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_number .number._02,
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_number .number._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_title {
  opacity: 1;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_bg_img {
  width: 468px;
  height: 468px;
}
@media screen and (max-height: 530px) {
  body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_bg_img {
    height: calc(100vh - 60px);
  }
}
@media only screen and (max-width: 599px) {
  body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_bg_img {
    width: 204px;
    height: 204px;
  }
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_bg_img .img._02,
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_bg_img .img._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="1"] .scrollsection_promise_02_bg_img img {
  border-radius: 44px;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_01 {
  translate: 0 -100%;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02 {
  visibility: visible;
  pointer-events: all;
  translate: 0 0;
  opacity: 1;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02 .scrollsection_promise_02_header,
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02 .scrollsection_promise_02_body,
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  opacity: 1;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02 .scrollsection_promise_02_header {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02 .scrollsection_promise_02_body {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_lead_text._01,
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_lead_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_copy_text._01,
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_copy_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_number .number._01,
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_number .number._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_title {
  opacity: 1;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_bg_img {
  width: 688px;
  height: 688px;
}
@media screen and (max-height: 750px) {
  body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_bg_img {
    height: calc(100vh - 60px);
  }
}
@media only screen and (max-width: 599px) {
  body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_bg_img {
    width: 276px;
    height: 276px;
  }
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_bg_img .img._01,
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_bg_img .img._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="2"] .scrollsection_promise_02_bg_img img {
  border-radius: 44px;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_01 {
  translate: 0 -100%;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02 {
  visibility: visible;
  pointer-events: all;
  translate: 0 0;
  opacity: 1;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02 .scrollsection_promise_02_header,
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02 .scrollsection_promise_02_body,
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  opacity: 1;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02 .scrollsection_promise_02_header {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02 .scrollsection_promise_02_body {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_lead_text._01,
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_lead_text._02 {
  opacity: 0;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_copy_text._01,
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_copy_text._02 {
  opacity: 0;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_number .number._01,
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_number .number._02 {
  opacity: 0;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_title {
  opacity: 1;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_bg_img {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_bg_img .img._01,
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_bg_img .img._02 {
  opacity: 0;
}
body[data-scene=promise][data-promise="3"] .scrollsection_promise_02_bg_img img {
  border-radius: 0;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_01 {
  translate: 0 -100%;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02 {
  visibility: visible;
  pointer-events: all;
  translate: 0 0;
  opacity: 1;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02 .scrollsection_promise_02_header,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02 .scrollsection_promise_02_body,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  opacity: 1;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_lead_text._01,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_lead_text._02,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_lead_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_copy_text._01,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_copy_text._02,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_copy_text._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_number .number._01,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_number .number._02,
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_number .number._03 {
  opacity: 0;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_title {
  opacity: 0;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_bg {
  opacity: 1;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_02_bg_img {
  width: 100vw;
  height: 100vh;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
body[data-scene=promise][data-promise="4"] img {
  border-radius: 0;
}
body[data-scene=promise][data-promise="4"] .scrollsection_promise_03 {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* story
-----------------------------------------------------------------*/
.story .scrollsection_content {
  translate: 0 100%;
  -webkit-transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.story .scrollsection_content .story_title {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.story .scrollsection_content .story_lead {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.story .scrollsection_content .story_article {
  opacity: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

body[data-scene=story] .story .scrollsection_content {
  translate: 0 0;
}
body[data-scene=story] .story .scrollsection_content .story_title {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
body[data-scene=story] .story .scrollsection_content .story_lead {
  opacity: 1;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body[data-scene=story] .story .scrollsection_content .story_article {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body[data-scene=story] .scrollsection_promise_01 {
  translate: 0 -100%;
}
body[data-scene=story] .scrollsection_promise_02 {
  visibility: visible;
  pointer-events: all;
  translate: 0 0;
  opacity: 1;
}
body[data-scene=story] .scrollsection_promise_02 .scrollsection_promise_02_header,
body[data-scene=story] .scrollsection_promise_02 .scrollsection_promise_02_body,
body[data-scene=story] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  opacity: 1;
}
body[data-scene=story] .scrollsection_promise_02_lead_text._01,
body[data-scene=story] .scrollsection_promise_02_lead_text._02,
body[data-scene=story] .scrollsection_promise_02_lead_text._03 {
  opacity: 0;
}
body[data-scene=story] .scrollsection_promise_02_copy_text._01,
body[data-scene=story] .scrollsection_promise_02_copy_text._02,
body[data-scene=story] .scrollsection_promise_02_copy_text._03 {
  opacity: 0;
}
body[data-scene=story] .scrollsection_promise_02_number .number._01,
body[data-scene=story] .scrollsection_promise_02_number .number._02,
body[data-scene=story] .scrollsection_promise_02_number .number._03 {
  opacity: 0;
}
body[data-scene=story] .scrollsection_promise_02_title {
  opacity: 0;
}
body[data-scene=story] .scrollsection_promise_02_bg_img {
  width: 100vw;
  height: 100vh;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
body[data-scene=story] .scrollsection_promise_03 {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* end
-----------------------------------------------------------------*/
body[data-scene=end] .story .scrollsection_content {
  translate: 0 0;
  opacity: 1;
}
body[data-scene=end] .story .scrollsection_content .story_title {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}
body[data-scene=end] .story .scrollsection_content .story_lead {
  opacity: 1;
}
body[data-scene=end] .story .scrollsection_content .story_article {
  opacity: 1;
}
body[data-scene=end] .scrollsection_promise_01 {
  translate: 0 -100%;
}
body[data-scene=end] .scrollsection_promise_02 {
  visibility: visible;
  pointer-events: all;
  translate: 0 0;
  opacity: 1;
}
body[data-scene=end] .scrollsection_promise_02 .scrollsection_promise_02_header,
body[data-scene=end] .scrollsection_promise_02 .scrollsection_promise_02_body,
body[data-scene=end] .scrollsection_promise_02 .scrollsection_promise_02_bg {
  opacity: 1;
}
body[data-scene=end] .scrollsection_promise_02_lead_text._01,
body[data-scene=end] .scrollsection_promise_02_lead_text._02,
body[data-scene=end] .scrollsection_promise_02_lead_text._03 {
  opacity: 0;
}
body[data-scene=end] .scrollsection_promise_02_copy_text._01,
body[data-scene=end] .scrollsection_promise_02_copy_text._02,
body[data-scene=end] .scrollsection_promise_02_copy_text._03 {
  opacity: 0;
}
body[data-scene=end] .scrollsection_promise_02_number .number._01,
body[data-scene=end] .scrollsection_promise_02_number .number._02,
body[data-scene=end] .scrollsection_promise_02_number .number._03 {
  opacity: 0;
}
body[data-scene=end] .scrollsection_promise_02_title {
  opacity: 0;
}
body[data-scene=end] .scrollsection_promise_02_bg_img {
  width: 100vw;
  height: 100vh;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
body[data-scene=end] .scrollsection_promise_03 {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* タイトルアニメーション基本設定
-----------------------------------------------------------------*/
.title_anim {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 599px) {
  .title_anim {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.title_anim .slide-in {
  overflow: hidden;
  display: inline-block;
}

.title_anim .slide-in_inner {
  display: inline-block;
  min-height: 35px;
}

/*左右のアニメーション*/
.title_anim .slide-in {
  -webkit-animation-name: slideTextX100S;
          animation-name: slideTextX100S;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes slideTextX100S {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を左の枠外に移動*/
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を元の位置に移動*/
    opacity: 0;
  }
}

@keyframes slideTextX100S {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を左の枠外に移動*/
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を元の位置に移動*/
    opacity: 0;
  }
}
@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.title_anim .slide-in_inner {
  display: inline-block;
  min-height: 35px;
  -webkit-animation-name: slideTextX-100S;
          animation-name: slideTextX-100S;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes slideTextX-100S {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を右の枠外に移動*/
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を元の位置に移動*/
    opacity: 0;
  }
}

@keyframes slideTextX-100S {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を右の枠外に移動*/
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を元の位置に移動*/
    opacity: 0;
  }
}
@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
body[data-scene=slogan][data-slogan="2"] .scrollsection_slogan .title_anim .slide-in,
body[data-scene=statement] .scrollsection_statement .title_anim .slide-in,
body[data-scene=promise][data-promise="0"] .scrollsection_promise .title_anim .slide-in {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  opacity: 0;
}
body[data-scene=slogan][data-slogan="2"] .scrollsection_slogan .title_anim .slide-in_inner,
body[data-scene=statement] .scrollsection_statement .title_anim .slide-in_inner,
body[data-scene=promise][data-promise="0"] .scrollsection_promise .title_anim .slide-in_inner {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  opacity: 0;
}

/* ラインアニメーション
-----------------------------------------------------------------*/
.scrollsection_bg .all_line_obj > g {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-100vw, 150vh);
          transform: translate(-100vw, 150vh);
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-filter 0.3s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
@media only screen and (max-width: 599px) {
  .scrollsection_bg .all_line_obj > g {
    -webkit-transform: translate(-150vw, 50vh);
            transform: translate(-150vw, 50vh);
  }
}

body[data-scene=promise][data-promise="4"] .scrollsection_bg,
body[data-scene=story] .scrollsection_bg,
body[data-scene=end] .scrollsection_bg {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.load-complete body.anim-first .scrollsection_bg #all_line_1 > g {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_01 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_02 {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_03 {
  -webkit-transition-delay: 1.15s;
          transition-delay: 1.15s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_04 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_05 {
  -webkit-transition-delay: 1.25s;
          transition-delay: 1.25s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_06 {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_07 {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_08 {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_09 {
  -webkit-transition-delay: 1.45s;
          transition-delay: 1.45s;
}
.load-complete body.anim-first .scrollsection_bg #all_line_1 .all_line_obj_10 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

body[data-line="1"] .scrollsection_bg #all_line_3 > g,
body[data-line="2"] .scrollsection_bg #all_line_1 > g,
body[data-line="3"] .scrollsection_bg #all_line_2 > g {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(100vw, -200vh);
          transform: translate(100vw, -200vh);
  -webkit-transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, -webkit-filter 0.8s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, -webkit-filter 0.8s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: filter 0.8s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: filter 0.8s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-filter 0.8s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media only screen and (max-width: 599px) {
  body[data-line="1"] .scrollsection_bg #all_line_3 > g,
  body[data-line="2"] .scrollsection_bg #all_line_1 > g,
  body[data-line="3"] .scrollsection_bg #all_line_2 > g {
    -webkit-transform: translate(150vw, -100vh);
            transform: translate(150vw, -100vh);
  }
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_10,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_10,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_10 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_09,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_09,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_09 {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_08,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_08,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_08 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_07,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_07,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_07 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_06,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_06,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_06 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_05,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_05,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_05 {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_04,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_04,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_04 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_03,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_03,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_03 {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_02,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_02,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_02 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
body[data-line="1"] .scrollsection_bg #all_line_3 .all_line_obj_01,
body[data-line="2"] .scrollsection_bg #all_line_1 .all_line_obj_01,
body[data-line="3"] .scrollsection_bg #all_line_2 .all_line_obj_01 {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

body[data-line="1"] .scrollsection_bg #all_line_1 > g,
body[data-line="2"] .scrollsection_bg #all_line_2 > g,
body[data-line="3"] .scrollsection_bg #all_line_3 > g {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  visibility: visible;
  translate: 0vw 0vh;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  scale: 1;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out, -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out, -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-filter 0.3s ease-in-out, -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media only screen and (max-width: 599px) {
  body[data-line="1"] .scrollsection_bg #all_line_1 > g,
  body[data-line="2"] .scrollsection_bg #all_line_2 > g,
  body[data-line="3"] .scrollsection_bg #all_line_3 > g {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_10,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_10,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_10 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_09,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_09,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_09 {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_08,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_08,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_08 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_07,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_07,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_07 {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_06,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_06,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_06 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_05,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_05,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_05 {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_04,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_04,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_04 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_03,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_03,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_03 {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_02,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_02,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_02 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body[data-line="1"] .scrollsection_bg #all_line_1 .all_line_obj_01,
body[data-line="2"] .scrollsection_bg #all_line_2 .all_line_obj_01,
body[data-line="3"] .scrollsection_bg #all_line_3 .all_line_obj_01 {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

body[data-line="1"] .scrollsection_bg #all_line_2 > g,
body[data-line="2"] .scrollsection_bg #all_line_3 > g,
body[data-line="3"] .scrollsection_bg #all_line_1 > g {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="5" /></filter></svg>#filter');
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-100vw, 200vh);
          transform: translate(-100vw, 200vh);
  -webkit-transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, -webkit-filter 0.8s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, -webkit-filter 0.8s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: filter 0.8s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: filter 0.8s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 1s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-filter 0.8s ease-in-out, -webkit-transform 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media only screen and (max-width: 599px) {
  body[data-line="1"] .scrollsection_bg #all_line_2 > g,
  body[data-line="2"] .scrollsection_bg #all_line_3 > g,
  body[data-line="3"] .scrollsection_bg #all_line_1 > g {
    -webkit-transform: translate(-150vw, 100vh);
            transform: translate(-150vw, 100vh);
  }
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_01,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_01,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_01 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_02,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_02,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_02 {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_03,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_03,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_03 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_04,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_04,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_04 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_05,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_05,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_05 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_06,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_06,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_06 {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_07,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_07,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_07 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_08,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_08,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_08 {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_09,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_09,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_09 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
body[data-line="1"] .scrollsection_bg #all_line_2 .all_line_obj_10,
body[data-line="2"] .scrollsection_bg #all_line_3 .all_line_obj_10,
body[data-line="3"] .scrollsection_bg #all_line_1 .all_line_obj_10 {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
/*# sourceMappingURL=maps/style.css.map */
