@charset "UTF-8";
/*
====>> 動きや表示の状態を表すデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・サイトのパーツ等のスタイルを格納するファイル

*/
/*---------------------------------------
メディアクエリ関連
---------------------------------------*/
/*---------------------------------------
レイアウト関連
---------------------------------------*/
/*---------------------------------------
テキスト関連
---------------------------------------*/
/*---------------------------------------
コンポーネント関連
---------------------------------------*/
/*自動でベンダープレフィックスをつける*/
/*		線
-----------------------------------------------------*/
.l-contents {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: opacity 1.5s ease, -webkit-filter 1.5s ease;
  transition: opacity 1.5s ease, -webkit-filter 1.5s ease;
  transition: opacity 1.5s ease, filter 1.5s ease;
  transition: opacity 1.5s ease, filter 1.5s ease, -webkit-filter 1.5s ease;
}

.loaded {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.is-border_wrap {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid currentColor;
}

.is-border {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid currentColor;
}

/*		リバース
-----------------------------------------------------*/
.is-flipped_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse wrap;
          flex-flow: row-reverse wrap;
}

.is-flipped_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-flow: column-reverse wrap;
          flex-flow: column-reverse wrap;
}

/*		リストスタイル
-----------------------------------------------------*/
.c-list.is-dotted {
  padding: 20px;
  list-style-type: disc;
}
.c-list.is-dotted li {
  padding: 20px 20px 20px 0;
}

.c-list.is-number {
  padding: 20px;
  list-style: decimal;
}
.c-list.is-number li {
  padding: 20px 20px 20px 0;
}

/*		角丸
-----------------------------------------------------*/
.is-round {
  border-radius: 16px;
}

.is-edge {
  border-radius: 0;
}

/*		ディスプレイ
-----------------------------------------------------*/
.is-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 600px) {
  .is-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.is-hide {
  display: none;
}

.is-show {
  opacity: 1;
  visibility: visible;
}

/*		カラー指定
-----------------------------------------------------*/
.is-black {
  color: var(--color-black);
}

.is-gray {
  color: var(--color-gray);
}

/*		テキスト装飾
-----------------------------------------------------*/
.is-strong {
  font-weight: bold;
}

/*		位置
-----------------------------------------------------*/
.is-left {
  text-align: left;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

/*		スクロール制御
-----------------------------------------------------*/
.is-scroll_off {
  overflow: hidden;
}

.is-scroll_on {
  overflow: auto;
}

.is-show span {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

/*		headerアニメーション
-----------------------------------------------------*/
.l-header img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-header .top {
  opacity: 1;
}
.l-header .through {
  opacity: 0;
}
.l-header.is-through {
  background-color: rgba(255, 255, 255, 0.9607843137);
}
.l-header.is-through .top {
  opacity: 0;
}
.l-header.is-through .through {
  opacity: 1;
}
.l-header.is-through .hamburger span {
  background-color: var(--c-accent);
}
.l-header.is-through.is-active {
  background-color: initial;
}

.l-nav svg {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-nav svg .icon {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-nav.is-through .l-nav_item a {
  border: 1px solid var(--c-accent);
  color: transparent;
  text-shadow: 0 1.5em 0 var(--c-accent), 0 0 0 var(--c-accent);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-nav.is-through .l-nav_item a:hover {
  background-color: var(--c-accent);
  text-shadow: 0 0 0 var(--c-white), 0 -1.5em 0 var(--c-white);
}
.l-nav.is-through .l-nav_item a:hover svg {
  stroke: var(--c-white);
}
.l-nav.is-through .l-nav_item a:hover svg .icon {
  fill: var(--c-white);
  stroke: var(--c-white);
}
.l-nav.is-through .l-nav_item svg {
  stroke: var(--c-accent);
}
.l-nav.is-through .l-nav_item svg .icon {
  fill: var(--c-accent);
  stroke: var(--c-accent);
}
.l-nav.is-through .lang-select_item {
  color: var(--c-accent);
}
.l-nav.is-through .lang-select_item:after {
  border-bottom: 1px solid var(--c-accent);
}
.l-nav.is-through .lang-select_item svg {
  fill: var(--c-accent);
}
.l-nav.is-through .hamburger span {
  background-color: var(--c-accent);
}
.l-nav.is-through.is-active .l-nav_item a {
  border: 1px solid var(--c-white);
  color: transparent;
  text-shadow: 0 1.5em 0 var(--c-white), 0 0 0 var(--c-white);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-nav.is-through.is-active .l-nav_item a:hover {
  background-color: var(--c-accent);
  text-shadow: 0 0 0 var(--c-white), 0 -1.5em 0 var(--c-white);
}
.l-nav.is-through.is-active .l-nav_item a:hover svg {
  stroke: var(--c-white);
}
.l-nav.is-through.is-active .l-nav_item a:hover svg .icon {
  fill: var(--c-white);
  stroke: var(--c-white);
}
.l-nav.is-through.is-active .l-nav_item svg {
  stroke: var(--c-accent);
}
.l-nav.is-through.is-active .l-nav_item svg .icon {
  fill: var(--c-accent);
  stroke: var(--c-accent);
}
.l-nav.is-through.is-active .lang-select_item {
  color: var(--c-accent);
}
.l-nav.is-through.is-active .lang-select_item:after {
  border-bottom: 1px solid var(--c-accent);
}
.l-nav.is-through.is-active .lang-select_item svg {
  stroke: var(--c-accent);
}
.l-nav.is-through.is-active .hamburger span {
  background-color: var(--c-accent);
}

#js-heading-anime span {
  overflow: hidden;
  display: inline-block;
}
#js-heading-anime span span {
  display: inline-block;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 1.2s var(--ease-custom-out);
  transition: -webkit-transform 1.2s var(--ease-custom-out);
  transition: transform 1.2s var(--ease-custom-out);
  transition: transform 1.2s var(--ease-custom-out), -webkit-transform 1.2s var(--ease-custom-out);
}
#js-heading-anime.is-visible span span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

body.is-active .hamburger span {
  background-color: var(--c-white) !important;
  position: absolute;
  left: 0;
  top: 50%;
}
body.is-active .hamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body.is-active .hamburger span:nth-child(2) {
  opacity: 0;
}
body.is-active .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
body.is-active .l-header img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.is-active .l-header .top {
  opacity: 1;
}
body.is-active .l-header .through {
  opacity: 0;
}
body.is-active .l-header.is-through .top {
  opacity: 1;
}
body.is-active .l-header.is-through .through {
  opacity: 0;
}
body.is-active .l-nav svg {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.is-active .l-nav svg .icon {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.is-active .l-nav.is-through .l-nav_item a {
  border: 1px solid var(--c-white);
  color: transparent;
  text-shadow: 0 1.5em 0 var(--c-white), 0 0 0 var(--c-white);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.is-active .l-nav.is-through .l-nav_item a:hover {
  background-color: var(--c-white);
  text-shadow: 0 0 0 var(--c-accent), 0 -1.5em 0 var(--c-accent);
}
body.is-active .l-nav.is-through .l-nav_item a:hover svg {
  stroke: var(--c-accent);
}
body.is-active .l-nav.is-through .l-nav_item a:hover svg .icon {
  fill: var(--c-accent);
  stroke: var(--c-accent);
}
body.is-active .l-nav.is-through .l-nav_item svg {
  stroke: var(--c-white);
}
body.is-active .l-nav.is-through .l-nav_item svg .icon {
  fill: var(--c-white);
  stroke: var(--c-white);
}
body.is-active .l-nav.is-through .lang-select_item {
  color: var(--c-white);
}
body.is-active .l-nav.is-through .lang-select_item:after {
  border-bottom: 1px solid var(--c-white);
}
body.is-active .l-nav.is-through.is-active .l-nav_item a {
  border: 1px solid var(--c-white);
  color: transparent;
  text-shadow: 0 1.5em 0 var(--c-white), 0 0 0 var(--c-white);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
body.is-active .l-nav.is-through.is-active .l-nav_item a:hover {
  background-color: var(--c-accent);
  text-shadow: 0 0 0 var(--c-white), 0 -1.5em 0 var(--c-white);
}
body.is-active .l-nav.is-through.is-active .l-nav_item a:hover svg {
  stroke: var(--c-white);
}
body.is-active .l-nav.is-through.is-active .l-nav_item a:hover svg .icon {
  fill: var(--c-white);
  stroke: var(--c-white);
}
body.is-active .l-nav.is-through.is-active .l-nav_item svg {
  stroke: var(--c-accent);
}
body.is-active .l-nav.is-through.is-active .l-nav_item svg .icon {
  fill: var(--c-accent);
  stroke: var(--c-accent);
}
body.is-active .l-nav.is-through.is-active .lang-select_item {
  color: var(--c-accent);
}
body.is-active .l-nav.is-through.is-active .lang-select_item:after {
  border-bottom: 1px solid var(--c-accent);
}
body.is-active .l-nav.is-through.is-active .lang-select_item svg {
  stroke: var(--c-accent);
}
body.is-active .l-nav.is-through.is-active .hamburger span {
  background-color: var(--c-accent);
}

.mask-anim {
  overflow: hidden;
  position: relative;
}
.mask-anim img {
  -webkit-filter: blur(2rem);
          filter: blur(2rem);
}

.mask-anim:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-white);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 1;
}

[data-image=true].mask-anim:before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

[data-image=true] img {
  -webkit-filter: blur(0);
          filter: blur(0);
}

.--fadeUp img {
  -webkit-transition: 1s;
  transition: 1s;
}
.--fadeUp:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

[data-fadeUp] {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

/* fadeUpクラスが追加されたときにアニメーションを適用 */
.fadeUp {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.modal {
  display: none; /* 非表示が基本 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  /* Swiper内の画像の調整 */
}
.modal_inner {
  background: #fff;
  max-width: 800px;
  width: 90%;
  position: relative;
  overflow: hidden;
}
.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal .close-btn {
  position: absolute;
  top: 0px;
  right: 15px;
  z-index: 10;
  cursor: pointer;
  font-size: 24px;
}
.modal .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.modal .swiper-button-next:after,
.modal .swiper-button-prev:after {
  color: var(--c-accent);
}
.modal .swiper-pagination-bullet-active {
  background-color: var(--c-accent);
}

#js-access-tab {
  position: relative;
}
#js-access-tab .line {
  display: none;
}
@media screen and (max-width: 414px) {
  #js-access-tab .line {
    display: block;
  }
  #js-access-tab .line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 90%;
    width: 15px;
    height: 1px;
    background-color: var(--c-white);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #js-access-tab .line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 90%;
    width: 15px;
    height: 1px;
    background-color: var(--c-white);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
#js-access-tab.active .line::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

@media screen and (max-width: 414px) {
  .access-flow_contents {
    padding: 0 !important;
  }
  .access-flow_contents .access-flow_contents-sp {
    padding: 20px;
  }
}

.lang-select_menu_child-list {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.lang-select_menu_item p {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}/*# sourceMappingURL=state.css.map */