@charset "UTF-8";
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  /* アンチエイリアスを指定する */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  /* メトリクスカーニングを指定する */
  font-kerning: normal;
  margin: 0;
}

a {
  text-decoration: underline;
  color: #2962D8;
}
a:hover, a:active, a:focus {
  color: #2962D8;
  opacity: 0.8;
  text-decoration: none;
}

p {
  font-family: "Noto Sans JP", sans-serif;
}

/**
 * フルードイメージにします。
 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* svgのIEバグ回避 */
img[src$=".svg"] {
  width: 100%;
  height: auto;
}

i,
cite,
em,
address,
dfn {
  font-style: normal;
}

code,
pre {
  font-family: Consolas, Menlo, Courier, monospace;
}

/* container
-------------------------------------------------------------------------- */
/* イージング設定
======================================================================== */
/* その他設定
======================================================================== */
/* flexbox 設定
======================================================================== */
/* =============================================================================
   bese
========================================================================== */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
}

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

.fullPageScroll {
  height: 100dvh;
  overflow: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}
.fullPageScroll .com-section {
  scroll-snap-align: start;
  height: 100dvh;
}
.fullPageScroll .com-section .section-content {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}

/* =============================================================================
   common
========================================================================== */
/* =============================================================================
   header
========================================================================== */
.l-header {
  position: absolute;
  top: 35.5555555556%;
  right: 0;
  z-index: 999;
}
.l-header .site-brand {
  display: block;
  width: 18.1333333333vw;
  max-width: 100px;
  position: relative;
  line-height: 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .l-header {
    top: 0;
  }
  .l-header .site-brand:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fff;
    width: 0;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  .l-header .site-brand svg {
    position: relative;
    z-index: 2;
  }
  .l-header .site-brand svg g path:nth-child(2) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  .l-header .site-brand:hover {
    opacity: 1;
  }
  .l-header .site-brand:hover svg g path:nth-child(1) {
    fill: none;
  }
  .l-header .site-brand:hover svg g path:nth-child(2) {
    fill: #000;
  }
  .l-header .site-brand:hover:before {
    width: 100%;
  }
}

/* =============================================================================
    Module
========================================================================== */
.mod-navigation {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-around;
}
.mod-navigation li {
  width: fit-content;
}
.mod-navigation li a {
  position: relative;
  display: block;
  padding: 2px 2.1333333333vw;
  overflow: hidden;
}
.mod-navigation li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #000;
  z-index: -1;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.mod-navigation li a span {
  line-height: 0;
  display: block;
  opacity: 0.5;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.mod-navigation li a#nav_top span {
  width: 5.3333333333vw;
}
.mod-navigation li a#nav_top:before {
  background-color: #002BFF;
}
.view-top .mod-navigation li a#nav_top {
  pointer-events: none;
}
.view-top .mod-navigation li a#nav_top span {
  opacity: 1;
}
.view-top .mod-navigation li a#nav_top:before {
  width: 100%;
}
.mod-navigation li a#nav_project span {
  width: 11.2vw;
}
.mod-navigation li a#nav_project:before {
  background-color: #FF4500;
}
.view-project .mod-navigation li a#nav_project {
  pointer-events: none;
}
.view-project .mod-navigation li a#nav_project span {
  opacity: 1;
}
.view-project .mod-navigation li a#nav_project:before {
  width: 100%;
}
.mod-navigation li a#nav_concept span {
  width: 12.2666666667vw;
}
.mod-navigation li a#nav_concept:before {
  background-color: #FFCE00;
}
.view-concept .mod-navigation li a#nav_concept {
  pointer-events: none;
}
.view-concept .mod-navigation li a#nav_concept span {
  opacity: 1;
}
.view-concept .mod-navigation li a#nav_concept:before {
  width: 100%;
}
.mod-navigation li a#nav_floor_guide span {
  width: 17.0666666667vw;
}
.mod-navigation li a#nav_floor_guide:before {
  background-color: #00D110;
}
.view-floor_guide .mod-navigation li a#nav_floor_guide {
  pointer-events: none;
}
.view-floor_guide .mod-navigation li a#nav_floor_guide span {
  opacity: 1;
}
.view-floor_guide .mod-navigation li a#nav_floor_guide:before {
  width: 100%;
}
.mod-navigation li a#nav_interview span {
  width: 14.9333333333vw;
}
.mod-navigation li a#nav_interview:before {
  background-color: #FF00CE;
}
.view-interview .mod-navigation li a#nav_interview {
  pointer-events: none;
}
.view-interview .mod-navigation li a#nav_interview span {
  opacity: 1;
}
.view-interview .mod-navigation li a#nav_interview:before {
  width: 100%;
}
@media (min-width: 769px) {
  .mod-navigation {
    max-width: 760px;
    right: 0;
    margin: auto;
  }
  .mod-navigation li a {
    position: relative;
    display: block;
    padding: 2px;
    overflow: hidden;
  }
  .mod-navigation li a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  .mod-navigation li a span {
    line-height: 0;
    display: block;
    opacity: 0.5;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  .mod-navigation li a#nav_top span {
    width: 43.33px;
  }
  .mod-navigation li a#nav_top:before {
    background-color: #002BFF;
  }
  #top .mod-navigation li a#nav_top {
    pointer-events: none;
  }
  #top .mod-navigation li a#nav_top span {
    opacity: 1;
  }
  #top .mod-navigation li a#nav_top:before {
    width: 100%;
  }
  .mod-navigation li a#nav_project span {
    width: 96.22px;
  }
  .mod-navigation li a#nav_project:before {
    background-color: #FF4500;
  }
  .mod-navigation li a#nav_concept span {
    width: 104.19px;
  }
  .mod-navigation li a#nav_concept:before {
    background-color: #FFCE00;
  }
  .mod-navigation li a#nav_floor_guide span {
    width: 144px;
  }
  .mod-navigation li a#nav_floor_guide:before {
    background-color: #00D110;
  }
  .mod-navigation li a#nav_interview span {
    width: 124.13px;
  }
  .mod-navigation li a#nav_interview:before {
    background-color: #FF00CE;
  }
  .view-bottom .mod-navigation {
    opacity: 0;
  }
  .view-bottom .mod-navigation a {
    pointer-events: none;
  }
}

/* =============================================================================
   固有
========================================================================== */
[data-section-name=top] {
  background-color: #000;
}
[data-section-name=top] .bgimg, [data-section-name=top] .copy1, [data-section-name=top] .copy2, [data-section-name=top] .bg_num {
  position: absolute;
}
[data-section-name=top] .bgimg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
[data-section-name=top] .bgimg div[style] {
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
}
[data-section-name=top] .bgimg:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
[data-section-name=top] .copy1 {
  top: 10.7936507937dvh;
  left: 5.3333333333vw;
  width: 42.6666666667vw;
  mix-blend-mode: difference;
  z-index: 3;
}
[data-section-name=top] .copy2 {
  top: 55.5555555556dvh;
  left: 16vw;
  width: 80vw;
  z-index: 3;
}
[data-section-name=top] .bg_num {
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-align: right;
  z-index: 2;
  opacity: 0;
  transition: 5800ms ease;
  transition-delay: 1.5s;
}
[data-section-name=top] .bg_num svg {
  transform: translateX(-35vw);
  width: auto;
  height: 100%;
}
[data-section-name=top].in .bg_num {
  opacity: 1;
}
[data-section-name=top] .news {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  z-index: 3;
  background-color: #000;
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 54px;
}
[data-section-name=top] .news .title {
  width: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
[data-section-name=top] .news .title > div {
  width: 35px;
  line-height: 0;
}
[data-section-name=top] .news .title svg path {
  fill: #000;
}
[data-section-name=top] .news .detail {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: calc(100% - 86px);
  font-size: 14px;
  font-size: 0.875rem;
}
[data-section-name=top] .news .detail div {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}
[data-section-name=top] .news:hover {
  opacity: 1;
}
[data-section-name=top] .news:hover .title {
  background-color: #fff;
}
[data-section-name=top] .news:hover .title svg path {
  fill: #000;
}
@media (min-width: 769px) {
  [data-section-name=top] .copy1 {
    top: 6.25dvh;
    left: 7.1527777778vw;
    width: 18.94375vw;
  }
  [data-section-name=top] .copy2 {
    top: 44.75dvh;
    left: 51.7361111111vw;
    width: 41.5277777778vw;
  }
  [data-section-name=top] .bg_num {
    width: 77.7777777778vw;
  }
  [data-section-name=top] .bg_num svg {
    transform: translateX(0);
  }
  [data-section-name=top] .news {
    position: absolute;
    bottom: 3.75dvh;
    left: 2.0833333333vw;
    display: flex;
    z-index: 3;
    background-color: #000;
    height: 54px;
    max-width: 480px;
  }
  [data-section-name=top] .news .title {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #333;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    background-color: #000;
  }
  [data-section-name=top] .news .title svg path {
    fill: #fff;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=top] .news .detail {
    width: calc(100% - 100px);
    overflow: hidden;
  }
  [data-section-name=top] .news .detail div {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-duration: 15s;
    animation-iteration-count: infinite;
  }
  [data-section-name=top] .news:hover .title {
    background-color: #fff;
  }
  [data-section-name=top] .news:hover .title svg path {
    fill: #000;
  }
}
@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%, to {
    transform: translate(-100%);
  }
}

@media (max-width: 768px) {
  [data-section-name=project] .bgimg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
  }
  [data-section-name=project] .bgimg div[style] {
    background-repeat: no-repeat;
    background-position: top right 44%;
    background-size: 125% auto;
    width: 100%;
    padding-top: 100%;
  }
  [data-section-name=project] .content {
    margin-top: 43.75dvh;
    height: 56.25dvh;
    position: relative;
  }
  [data-section-name=project] .content:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 125%;
    height: 105%;
    background: #000;
    transform: rotate(8deg);
    z-index: 1;
  }
  [data-section-name=project] .content > * {
    position: absolute;
    z-index: 2;
  }
  [data-section-name=project] .content .title {
    top: 3.5dvh;
    left: 4vw;
    width: 74.6666666667vw;
    mix-blend-mode: difference;
    margin-bottom: 6.6666666667%;
  }
  [data-section-name=project] .content .wrap {
    top: 22.5dvh;
    left: 4vw;
    right: 4vw;
    width: 92vw;
    height: 31.25dvh;
    overflow: hidden;
    padding-bottom: 60px;
    line-height: 2;
  }
  [data-section-name=project] .content .wrap:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgba(0, 212, 255, 0) 100%);
    z-index: 3;
  }
  [data-section-name=project] .content .wrap .inner {
    padding-bottom: 60px;
    overflow-y: auto;
    height: calc(100% + 60px);
  }
}
@media (min-width: 769px) {
  [data-section-name=project] .bgimg {
    position: absolute;
    top: 0;
    right: 0;
    width: 77.7777777778vw;
    height: 100%;
  }
  [data-section-name=project] .bgimg div[style] {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  [data-section-name=project] .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 44.375vw;
    min-width: 580px;
    height: 100%;
    overflow: hidden;
    padding: 15dvh 6.8055555556%;
  }
  [data-section-name=project] .content .title {
    width: 81.0641627543%;
    mix-blend-mode: difference;
    margin-bottom: 9.3896713615%;
  }
  [data-section-name=project] .content .wrap {
    position: relative;
    mix-blend-mode: difference;
    width: 100%;
    line-height: 2;
    font-size: 20px;
    font-size: 1.25rem;
    height: 62.5dvh;
    padding-bottom: 100px;
  }
  [data-section-name=project] .content .wrap:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgba(0, 212, 255, 0) 100%);
    z-index: 3;
  }
  [data-section-name=project] .content .wrap .inner {
    padding-bottom: 100px;
    overflow-y: scroll;
    height: calc(100% + 100px);
  }
  [data-section-name=project] .content:before {
    content: "";
    display: block;
    position: absolute;
    top: -20%;
    left: -35%;
    width: 112%;
    height: 200%;
    background-color: #000;
    transform: rotate(-10deg);
  }
}

[data-section-name=concept] .mod-concept {
  display: flex;
  flex-wrap: wrap;
}
[data-section-name=concept] .mod-concept li {
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
[data-section-name=concept] .mod-concept li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  height: 50dvh;
  opacity: 1 !important;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=concept] .mod-concept li a dl {
  text-align: center;
  transform: translateY(25%);
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  mix-blend-mode: difference;
}
[data-section-name=concept] .mod-concept li a dl dt {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
[data-section-name=concept] .mod-concept li a dl dd {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=concept] .mod-concept li a dl dd:before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 20px auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  [data-section-name=concept] .mod-concept li.on a {
    background: rgba(0, 0, 0, 0.3);
  }
  [data-section-name=concept] .mod-concept li.on a dl {
    transform: translateY(0);
    mix-blend-mode: normal;
  }
  [data-section-name=concept] .mod-concept li.on a dl dd {
    opacity: 1;
  }
}
@media (min-width: 769px) {
  [data-section-name=concept] .mod-concept {
    display: flex;
    flex-wrap: nowrap;
  }
  [data-section-name=concept] .mod-concept li {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  [data-section-name=concept] .mod-concept li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    height: 100dvh;
    opacity: 1 !important;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=concept] .mod-concept li a dl {
    text-align: center;
    transform: translateY(25%);
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=concept] .mod-concept li a dl dt {
    font-size: 52px;
    font-size: 3.25rem;
    letter-spacing: 0.1em;
  }
  [data-section-name=concept] .mod-concept li a dl dd {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=concept] .mod-concept li a dl dd:before {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 30px auto;
    background-color: #fff;
  }
  [data-section-name=concept] .mod-concept li:hover a {
    background: rgba(0, 0, 0, 0.3);
  }
  [data-section-name=concept] .mod-concept li:hover a dl {
    transform: translateY(0);
    mix-blend-mode: normal;
  }
  [data-section-name=concept] .mod-concept li:hover a dl dd {
    opacity: 1;
  }
}

[data-section-name=floor_guide] .mod-floor_guide {
  position: relative;
  height: 100dvh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
[data-section-name=floor_guide] .mod-floor_guide .item {
  display: flex;
  align-items: center;
  height: 100%;
}
[data-section-name=floor_guide] .mod-floor_guide .item + .item dl {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
[data-section-name=floor_guide] .mod-floor_guide .item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=floor_guide] .mod-floor_guide .item dl {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-left: 8vw;
  overflow: hidden;
}
[data-section-name=floor_guide] .mod-floor_guide .item dl > div {
  position: relative;
  z-index: 3;
  transform: translateY(35%);
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=floor_guide] .mod-floor_guide .item dl dt {
  display: flex;
  align-items: center;
  line-height: 0;
}
[data-section-name=floor_guide] .mod-floor_guide .item dl dt .title {
  mix-blend-mode: difference;
}
[data-section-name=floor_guide] .mod-floor_guide .item dl dt .title svg path {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=floor_guide] .mod-floor_guide .item dl dt .icon {
  line-height: 0;
  width: 35px;
  margin-left: 30px;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=floor_guide] .mod-floor_guide .item dl dd {
  opacity: 0;
  margin: 10px 0 0;
  line-height: 1.5;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  font-size: 14px;
  font-size: 0.875rem;
}
[data-section-name=floor_guide] .mod-floor_guide .item dl:before {
  content: "";
  display: block;
  position: absolute;
  top: -55%;
  left: -200%;
  height: 230%;
  width: 40vw;
  min-width: 600px;
  transform: rotate(-20deg);
  background: rgba(255, 255, 255, 0.6);
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(1):before {
  background-image: url(../img/bg_floor_guide01.jpg);
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(1) dt .title {
  width: 155.74px;
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(2):before {
  background-image: url(../img/bg_floor_guide02.jpg);
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(2) dt .title {
  width: 110.68px;
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(3):before {
  background-image: url(../img/bg_floor_guide03.jpg);
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(3) dt .title {
  width: 80.82px;
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(4):before {
  background-image: url(../img/bg_floor_guide04.jpg);
}
[data-section-name=floor_guide] .mod-floor_guide .item:nth-child(4) dt .title {
  width: 138.2px;
}
[data-section-name=floor_guide] .mod-floor_guide .item.on:before {
  opacity: 1;
}
[data-section-name=floor_guide] .mod-floor_guide .item.on dl:before {
  left: -10%;
}
[data-section-name=floor_guide] .mod-floor_guide .item.on dl > div {
  transform: translateY(0);
}
[data-section-name=floor_guide] .mod-floor_guide .item.on dl > div dt .title svg path {
  fill: #000;
}
[data-section-name=floor_guide] .mod-floor_guide .item.on dl > div dt .icon {
  opacity: 0;
  transform: translateX(10px);
}
[data-section-name=floor_guide] .mod-floor_guide .item.on dl > div dd {
  opacity: 1;
  color: #000;
}
@media (min-width: 769px) {
  [data-section-name=floor_guide] .mod-floor_guide {
    position: relative;
    height: 100dvh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item {
    display: flex;
    align-items: center;
    height: 100%;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item + .item dl {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item dl {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-left: 100px;
    overflow: hidden;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item dl > div {
    transform: translateY(25%);
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item dl dt .title svg path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item dl dt .icon {
    width: 40px;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item dl dd {
    opacity: 0;
    margin: 10px 0 0;
    line-height: 1.5;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item dl:before {
    content: "";
    display: block;
    position: absolute;
    top: -50%;
    left: -110%;
    height: 230%;
    width: 40vw;
    min-width: 600px;
    transform: rotate(-20deg);
    background: rgba(255, 255, 255, 0.6);
    z-index: 2;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item dl:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 1;
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(1):before {
    background-image: url(../img/bg_floor_guide01.jpg);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(1) dt .title {
    width: 207.65px;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(2):before {
    background-image: url(../img/bg_floor_guide02.jpg);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(2) dt .title {
    width: 132.82px;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(3):before {
    background-image: url(../img/bg_floor_guide03.jpg);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(3) dt .title {
    width: 107.76px;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(4):before {
    background-image: url(../img/bg_floor_guide04.jpg);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:nth-child(4) dt .title {
    width: 184.27px;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:hover {
    cursor: pointer;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item:hover dl:after {
    opacity: 1;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item.on:before {
    opacity: 1;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item.on dl:before {
    left: -10%;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item.on dl > div {
    transform: translateY(0);
  }
  [data-section-name=floor_guide] .mod-floor_guide .item.on dl > div dt .title svg path {
    fill: #000;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item.on dl > div dd {
    opacity: 1;
    color: #000;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item.on:hover {
    cursor: auto;
  }
  [data-section-name=floor_guide] .mod-floor_guide .item.on:hover dl:after {
    opacity: 0;
  }
}

[data-section-name=interview] .mod-interview {
  position: relative;
  background: #000;
}
[data-section-name=interview] .mod-interview .wrap_slider {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
[data-section-name=interview] .mod-interview .img {
  width: 100%;
}
[data-section-name=interview] .mod-interview .img > div[style] {
  padding-top: 46.1822660099dvh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
[data-section-name=interview] .mod-interview .status {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 46.1822660099dvh;
  z-index: 2;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=interview] .mod-interview .status .name_en {
  position: absolute;
  bottom: 10.2586206897dvh;
  right: 1.9704433498vw;
}
[data-section-name=interview] .mod-interview .status .name_jp {
  position: absolute;
  bottom: 3.8177339901dvh;
  right: 1.9704433498vw;
  width: fit-content;
  text-align: right;
  font-size: 16px;
  font-size: 4.2666666667vw;
  color: #fff;
}
[data-section-name=interview] .mod-interview .status .name_jp span {
  font-size: 10px;
  font-size: 2.6666666667vw;
  display: block;
}
[data-section-name=interview] .mod-interview .detail {
  position: relative;
  background-color: #E5E5E5;
  width: 75.4666666667vw;
  height: 53.8177339901dvh;
  margin-left: auto;
  z-index: 3;
}
[data-section-name=interview] .mod-interview .detail:before {
  content: "";
  display: block;
  position: absolute;
  right: calc(100% - 1px);
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100dvh calc(11.7333333333vw + 1px);
  border-color: transparent transparent #e5e5e5 transparent;
}
[data-section-name=interview] .mod-interview .detail .swiper-container {
  height: 100%;
}
[data-section-name=interview] .mod-interview .detail .swiper-wrapper {
  box-sizing: border-box;
}
[data-section-name=interview] .mod-interview .detail .swiper-slide {
  height: 100%;
  padding: 0 4.2666666667vw;
}
[data-section-name=interview] .mod-interview .detail .wrap {
  padding: 8vw 0 13.3333333333vw;
  overflow: hidden;
  height: 95%;
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  opacity: 0;
  position: relative;
}
[data-section-name=interview] .mod-interview .detail .wrap:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13.3333333333vw;
  background: linear-gradient(0deg, rgb(229, 229, 229) 20%, rgba(0, 212, 255, 0) 100%);
  z-index: 3;
}
[data-section-name=interview] .mod-interview .detail dl {
  padding-bottom: 150px;
  overflow-y: auto;
  height: calc(100% + 100px);
  -webkit-overflow-scrolling: touch;
}
[data-section-name=interview] .mod-interview .detail dl .item + .item {
  margin-top: 30px;
}
[data-section-name=interview] .mod-interview .detail dl dt {
  color: #fff;
  background-color: #000;
  padding: 6px 6px 5px;
  margin-bottom: 15px;
}
[data-section-name=interview] .mod-interview .detail dl dt svg {
  width: auto;
  height: 17.74px;
  line-height: 0;
}
[data-section-name=interview] .mod-interview .detail dl dd {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  color: #000;
  line-height: 1.75;
}
[data-section-name=interview] .mod-interview .swiper-slide-active .status {
  opacity: 1;
}
[data-section-name=interview] .mod-interview .swiper-slide-active .wrap {
  opacity: 1;
}
[data-section-name=interview] .swiper-button_wrap {
  position: absolute;
  top: 48.645320197dvh;
  left: 5.3333333333vw;
  z-index: 3;
  width: 40px;
}
[data-section-name=interview] .swiper-button_wrap .swiper-button {
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
}
[data-section-name=interview] .swiper-button_wrap .swiper-button:after {
  content: none;
}
[data-section-name=interview] .swiper-button_wrap .swiper-button-prev {
  transform: rotate(180deg);
}
[data-section-name=interview] .swiper-button_wrap .swiper-button-next {
  margin-top: 16px;
}
@media (max-width: 768px) {
  [data-section-name=interview] .mod-interview #slider .slide2 .status .name_en svg path {
    fill: #000;
  }
  [data-section-name=interview] .mod-interview #slider .slide2 .status .name_jp {
    color: #000;
  }
}
@media (min-width: 769px) {
  [data-section-name=interview] .mod-interview {
    display: flex;
    position: relative;
    background: #000;
  }
  [data-section-name=interview] .mod-interview .wrap_slider {
    width: 59.7222222222vw;
    position: relative;
    top: 0;
    left: 0;
  }
  [data-section-name=interview] .mod-interview .img {
    width: 100%;
  }
  [data-section-name=interview] .mod-interview .img > div[style] {
    padding-top: 71.625dvh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  [data-section-name=interview] .mod-interview .status {
    position: absolute;
    top: 0;
    left: 0;
    width: 59.7222222222vw;
    height: 100%;
    mix-blend-mode: difference;
    padding: 0;
  }
  [data-section-name=interview] .mod-interview .status .name_en {
    position: absolute;
    bottom: -5.2356020942dvh;
    right: 23.7674418605%;
  }
  [data-section-name=interview] .mod-interview .status .name_jp {
    position: absolute;
    bottom: -14.8342059337dvh;
    right: 23.2558139535%;
    width: fit-content;
    text-align: right;
    font-size: 24px;
    font-size: 1.5rem;
  }
  [data-section-name=interview] .mod-interview .status .name_jp span {
    font-size: 14px;
    font-size: 0.875rem;
    display: block;
  }
  [data-section-name=interview] .mod-interview .detail {
    position: relative;
    width: 40.2777777778vw;
    background-color: #E5E5E5;
    height: 100dvh;
  }
  [data-section-name=interview] .mod-interview .detail:before {
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100dvh 11.1111111111vw;
    border-color: transparent transparent #e5e5e5 transparent;
  }
  [data-section-name=interview] .mod-interview .detail .swiper-slide {
    padding: 0 6.9444444444vw 0 2.7777777778vw;
    height: 100dvh;
  }
  [data-section-name=interview] .mod-interview .detail .wrap {
    padding: 80px 0 100px 0;
    height: 100%;
  }
  [data-section-name=interview] .mod-interview .detail dl .item + .item {
    margin-top: 50px;
  }
  [data-section-name=interview] .mod-interview .detail dl dt {
    font-size: 17px;
    font-size: 1.0625rem;
    color: #fff;
    background-color: #000;
    padding: 6px 6px 5px;
    margin-bottom: 15px;
  }
  [data-section-name=interview] .mod-interview .detail dl dt svg {
    width: auto;
    height: 17.74px;
    line-height: 0;
  }
  [data-section-name=interview] .mod-interview .detail dl dd {
    font-size: 16px;
    font-size: 1rem;
    margin: 0;
    color: #000;
    line-height: 1.75;
  }
  [data-section-name=interview] .swiper-button_wrap {
    position: absolute;
    top: auto;
    bottom: 5.2356020942dvh;
    left: 0;
    z-index: 3;
    width: 59.7222222222vw;
    display: flex;
    justify-content: flex-end;
  }
  [data-section-name=interview] .swiper-button_wrap .btn_wrap {
    display: flex;
    padding-right: 22.9069767442%;
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button {
    position: static;
    margin: 0;
    width: 40px;
    height: 40px;
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button:after {
    content: none;
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button-prev {
    transform: rotate(180deg);
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button-next {
    margin-left: 20px;
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button svg > g g path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button svg > g g path + path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button svg > g > path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button:hover svg > g g path {
    fill: #fff;
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button:hover svg > g g path + path {
    fill: #fff;
  }
  [data-section-name=interview] .swiper-button_wrap .swiper-button:hover svg > g > path {
    fill: #000;
  }
}

[data-section-name=bottom] {
  position: relative;
}
[data-section-name=bottom] .aside {
  background-image: url(../img/img_opencampus_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 61.5763546798dvh;
}
[data-section-name=bottom] .aside:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
[data-section-name=bottom] .aside .loop-wrap {
  position: absolute;
  top: 18.75dvh;
  left: 0;
  right: 0;
  z-index: 2;
}
[data-section-name=bottom] .aside .loop-wrap .loop-line {
  display: flex;
  overflow: hidden;
}
[data-section-name=bottom] .aside .loop-wrap .loop-line .loop {
  display: flex;
  animation: infinity-scroll-left 70s infinite linear 0.5s both;
}
[data-section-name=bottom] .aside .loop-wrap .loop-line .loop li {
  width: 200vw;
  min-width: 200vw;
  padding: 0 8vw;
}
[data-section-name=bottom] .aside .btn {
  position: absolute;
  top: 42dvh;
  left: 0;
  right: 0;
  width: 280px;
  margin: auto;
  z-index: 2;
}
[data-section-name=bottom] .aside .btn a {
  display: block;
  line-height: 0;
}
[data-section-name=bottom] .aside .btn a svg g g path:not([fill]) {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .aside .btn a svg g path {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .aside .btn a:hover {
  opacity: 1;
}
[data-section-name=bottom] .aside .btn a:hover svg g g path:not([fill]) {
  fill: #fff;
}
[data-section-name=bottom] .aside .btn a:hover svg g g path[fill] {
  fill: #fff;
}
[data-section-name=bottom] .aside .btn a:hover svg g > path {
  fill: #000;
}
[data-section-name=bottom] .footer {
  height: 38.4236453202dvh;
  background-color: #000;
  padding: 6.157635468dvh 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-section-name=bottom] .footer .brand {
  width: 258px;
  margin: 0 auto 3.6945812808dvh;
}
[data-section-name=bottom] .footer .brand a {
  display: block;
  line-height: 0;
}
[data-section-name=bottom] .footer .address {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "游ゴシック", YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: normal;
  margin-bottom: 3.6945812808dvh;
}
[data-section-name=bottom] .footer .mod-sns {
  display: flex;
  justify-content: center;
  margin-bottom: 3.6945812808dvh;
}
[data-section-name=bottom] .footer .mod-sns li {
  width: 36px;
  margin: 0 5px;
  line-height: 0;
}
[data-section-name=bottom] .footer .mod-sns li a {
  display: block;
}
[data-section-name=bottom] .footer .mod-sns li a svg #fb > g path[fill] {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #fb > g path:not([fill]) {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #fb > path {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #tw > g path[fill] {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #tw > g path:not([fill]) {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #tw > path {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #in > g:not([fill]) path[fill] {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #in > g:not([fill]) path:not([fill]) {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #in > g[fill] path[fill] {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #in > g[fill] path:not([fill]) {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #line > g path[fill] {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #line > g path:not([fill]) {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #line > path {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #yt > g path[fill] {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #yt > g path:not([fill]) {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a svg #yt > path {
  transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
[data-section-name=bottom] .footer .mod-sns li a:hover {
  opacity: 1;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #fb > g path[fill] {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #fb > g path:not([fill]) {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #fb > path {
  fill: #000;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #tw > g path[fill] {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #tw > g path:not([fill]) {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #tw > path {
  fill: #000;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g:not([fill]) path[fill] {
  fill: #000;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g:not([fill]) path:not([fill]) {
  fill: #000;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g[fill] path[fill] {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g[fill] path:not([fill]) {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #line > g path[fill] {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #line > g path:not([fill]) {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #line > path {
  fill: #000;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #yt > g path[fill] {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #yt > g path:not([fill]) {
  fill: #fff;
}
[data-section-name=bottom] .footer .mod-sns li a:hover svg #yt > path {
  fill: #000;
}
[data-section-name=bottom] .footer .copy {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media (min-width: 769px) {
  [data-section-name=bottom] .aside {
    background-image: url(../img/img_opencampus_bg.jpg);
    padding-top: 60dvh;
  }
  [data-section-name=bottom] .aside:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
  }
  [data-section-name=bottom] .aside .loop-wrap {
    position: absolute;
    top: 18.75dvh;
    left: 0;
    right: 0;
    z-index: 2;
  }
  [data-section-name=bottom] .aside .loop-wrap .loop-line {
    display: flex;
    overflow: hidden;
  }
  [data-section-name=bottom] .aside .loop-wrap .loop-line .loop {
    display: flex;
    animation: infinity-scroll-left 95s infinite linear 0.5s both;
  }
  [data-section-name=bottom] .aside .loop-wrap .loop-line .loop li {
    width: 80vw;
    min-width: 80vw;
    padding: 0 2vw;
  }
  [data-section-name=bottom] .aside .btn {
    position: absolute;
    top: 42dvh;
    left: 0;
    right: 0;
    width: 280px;
    margin: auto;
    z-index: 2;
  }
  [data-section-name=bottom] .aside .btn a {
    display: block;
    line-height: 0;
  }
  [data-section-name=bottom] .aside .btn a svg g g path:not([fill]) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .aside .btn a svg g path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .aside .btn a:hover {
    opacity: 1;
  }
  [data-section-name=bottom] .aside .btn a:hover svg g g path:not([fill]) {
    fill: #fff;
  }
  [data-section-name=bottom] .aside .btn a:hover svg g g path[fill] {
    fill: #fff;
  }
  [data-section-name=bottom] .aside .btn a:hover svg g > path {
    fill: #000;
  }
  [data-section-name=bottom] .footer {
    height: 40dvh;
    background-color: #000;
    padding: 50px 0;
  }
  [data-section-name=bottom] .footer .brand {
    width: 304px;
    margin: 0 auto 30px;
  }
  [data-section-name=bottom] .footer .address {
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "游ゴシック", YuGothic, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: normal;
    margin-bottom: 30px;
  }
  [data-section-name=bottom] .footer .mod-sns {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  [data-section-name=bottom] .footer .mod-sns li {
    width: 36px;
    margin: 0 5px;
    line-height: 0;
  }
  [data-section-name=bottom] .footer .mod-sns li a {
    display: block;
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #fb > g path[fill] {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #fb > g path:not([fill]) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #fb > path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #tw > g path[fill] {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #tw > g path:not([fill]) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #tw > path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #in > g:not([fill]) path[fill] {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #in > g:not([fill]) path:not([fill]) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #in > g[fill] path[fill] {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #in > g[fill] path:not([fill]) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #line > g path[fill] {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #line > g path:not([fill]) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #line > path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #yt > g path[fill] {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #yt > g path:not([fill]) {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a svg #yt > path {
    transition: 0.5s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover {
    opacity: 1;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #fb > g path[fill] {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #fb > g path:not([fill]) {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #fb > path {
    fill: #000;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #tw > g path[fill] {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #tw > g path:not([fill]) {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #tw > path {
    fill: #000;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g:not([fill]) path[fill] {
    fill: #000;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g:not([fill]) path:not([fill]) {
    fill: #000;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g[fill] path[fill] {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #in > g[fill] path:not([fill]) {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #line > g path[fill] {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #line > g path:not([fill]) {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #line > path {
    fill: #000;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #yt > g path[fill] {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #yt > g path:not([fill]) {
    fill: #fff;
  }
  [data-section-name=bottom] .footer .mod-sns li a:hover svg #yt > path {
    fill: #000;
  }
  [data-section-name=bottom] .footer .copy {
    display: block;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/* =============================================================================
   その他
========================================================================== */
.js-mask {
  position: relative;
  overflow: hidden;
}
.js-mask:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  background-color: #fff;
  transform: translateX(-101%);
}
.js-mask > * {
  opacity: 0;
  transition: 0.5s ease;
  transition-delay: 0.5s;
}
.js-mask.in:before {
  animation: mask 1.5s forwards ease;
}
.js-mask.in > * {
  opacity: 1;
}

@keyframes mask {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
