@charset "UTF-8";
/*============================================================
	Top
============================================================*/
/*  mv
-------------------------------------------------*/
#top__mv {
  padding: 0;
  height: 100vh;
  background: url(../img/top/bg_mv_pc.svg) no-repeat center center/contain;
}
@media only screen and (max-width: 767px) {
  #top__mv {
    background: url(../img/top/bg_mv_sp.svg) no-repeat center bottom/contain;
  }
}
#top__mv .inner {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#top__mv .inner .mv {
  position: relative;
  width: 56.6666666667%;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner .mv {
    width: 19.6428571429rem;
  }
}
#top__mv .inner .mv .main__img {
  opacity: 0;
  -webkit-transition: all ease-in-out 2s;
  transition: all ease-in-out 2s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
#top__mv .inner .mv .main__img.topAnim {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#top__mv .inner .mv .cloud-lt,
#top__mv .inner .mv .cloud-rb {
  width: 26.875rem;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner .mv .cloud-lt,
  #top__mv .inner .mv .cloud-rb {
    width: 15.3571428571rem;
  }
}
#top__mv .inner .mv .cloud-lt {
  top: 0;
  left: -12.5rem;
  -webkit-animation: toRight 10s;
          animation: toRight 10s;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner .mv .cloud-lt {
    left: -7.1428571429rem;
  }
}
#top__mv .inner .mv .cloud-rb {
  bottom: 0;
  right: -12.5rem;
  -webkit-animation: toLeft 10s;
          animation: toLeft 10s;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner .mv .cloud-rb {
    right: -7.1428571429rem;
  }
}
#top__mv .inner h1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-left: 3.125rem;
  opacity: 0;
  -webkit-transition: all ease-in-out 1s;
  transition: all ease-in-out 1s;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
}
@media only screen and (max-width: 767px) {
  #top__mv .inner h1 {
    font-size: 2.1428571429rem;
    margin-left: unset;
    margin-top: 3.5714285714rem;
  }
}
#top__mv .inner h1 span {
  font-size: 1.5rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner h1 span {
    font-size: 1.2857142857rem;
  }
}
#top__mv .inner h1 strong {
  color: #94252a;
}
#top__mv .inner h1.topAnim {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
#top__mv .inner .scroll {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 8.75rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.125rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner .scroll {
    font-size: 0.9642857143rem;
    padding-bottom: 7.1428571429rem;
  }
}
#top__mv .inner .scroll::before, #top__mv .inner .scroll::after {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #top__mv .inner .scroll::before, #top__mv .inner .scroll::after {
    width: 0.0357142857rem;
    height: 6.4285714286rem;
  }
}
#top__mv .inner .scroll::before {
  background: rgba(34, 34, 34, 0.1);
}
#top__mv .inner .scroll::after {
  background: #222;
  -webkit-animation: scrollDown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scrollDown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes toRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes toLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes toLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/*  About us
-------------------------------------------------*/
#about_us {
  color: #fff;
  position: relative;
  background-color: #222;
  background-image: url(../img/common/bg_brush-01.svg), url(../img/common/bg_brush-02.svg);
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 28.125rem auto, 43.75rem auto;
}
@media only screen and (max-width: 767px) {
  #about_us {
    background-size: 16.0714285714rem auto, 25rem auto;
  }
}
#about_us .inner .ttl {
  width: 100%;
}
#about_us .inner h1 {
  text-align: center;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  #about_us .inner h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 3rem;
    white-space: nowrap;
    letter-spacing: 0.2em;
  }
}
@media only screen and (max-width: 767px) {
  #about_us .inner h1 {
    font-size: 1.7142857143rem;
    margin-bottom: 1.7857142857rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
@media print, screen and (min-width: 768px) {
  #about_us .inner ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#about_us .inner ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media print, screen and (min-width: 768px) {
  #about_us .inner ul li {
    width: 41.6666666667%;
  }
}
@media print, screen and (min-width: 768px) {
  #about_us .inner ul li figure {
    position: absolute;
    width: 37.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #about_us .inner ul li figure {
    margin-bottom: 1.7857142857rem;
  }
}
#about_us .inner ul li h2::after {
  background: #fff;
}
#about_us .inner ul li .btn__arrow {
  color: #fff;
  margin: 3.125rem 0 0 auto;
}
@media only screen and (max-width: 767px) {
  #about_us .inner ul li .btn__arrow {
    margin: 1.7857142857rem 0 0 auto;
  }
}
#about_us .inner ul li .btn__arrow + .btn__arrow {
  margin: 1.875rem 0 0 auto;
}
@media only screen and (max-width: 767px) {
  #about_us .inner ul li .btn__arrow + .btn__arrow {
    margin: 1.0714285714rem 0 0 auto;
  }
}
#about_us .inner ul li small {
  display: block;
  color: #999;
  font-size: 0.875rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  text-align: justify;
  margin-top: 3.125rem;
}
@media only screen and (max-width: 767px) {
  #about_us .inner ul li small {
    font-size: 0.8571428571rem;
    margin-top: 1.7857142857rem;
  }
}
#about_us .inner ul li small::before {
  content: "※";
}
#about_us .inner ul li small.en {
  padding-left: 2.75em;
  text-indent: -2.75em;
}
#about_us .inner ul li small.en::before {
  content: "Note: ";
}
@media print, screen and (min-width: 768px) {
  #about_us .inner ul li:first-child figure {
    left: 0;
    bottom: 0;
  }
}
#about_us .inner ul li:last-child {
  margin-top: 17.5rem;
}
@media only screen and (max-width: 767px) {
  #about_us .inner ul li:last-child {
    margin-top: 3.5714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  #about_us .inner ul li:last-child figure {
    right: 0;
    top: 0;
  }
}

/*  Landmarks Nearby
-------------------------------------------------*/
#landmarks {
  background-image: url(../img/common/bg_dots-01.svg), url(../img/common/bg_dots-02.svg);
  background-position: right top, left bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 31.25rem auto, 31.25rem auto;
}
@media only screen and (max-width: 767px) {
  #landmarks {
    background-size: 14.2857142857rem auto, 14.2857142857rem auto;
  }
}
#landmarks .inner .container .spot {
  margin: 3.125rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot {
    margin: 1.7857142857rem 0;
    grid-template-columns: 100%;
    gap: 2.1428571429rem;
  }
}
#landmarks .inner .container .spot li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li {
    width: 90%;
    margin-inline: auto;
  }
}
#landmarks .inner .container .spot li figure {
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li figure {
    margin-bottom: 1.0714285714rem;
  }
}
#landmarks .inner .container .spot li dl dt {
  border-bottom: solid 1px #222;
  font-weight: 500;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li dl dt {
    padding-bottom: 0.7142857143rem;
    margin-bottom: 0.7142857143rem;
  }
}
#landmarks .inner .container .spot li dl dd strong {
  font-size: 2.25rem;
  color: #94252a;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li dl dd strong {
    font-size: 2.1428571429rem;
  }
}
#landmarks .inner .container .spot li dl dd small {
  display: block;
  text-align: right;
  font-size: 0.875rem;
  margin-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li dl dd small {
    font-size: 0.8571428571rem;
  }
}
#landmarks .inner .container .spot li dl dd small::before {
  content: "※";
}
#landmarks .inner .container .spot li .btn__arrow {
  margin: 1.25rem 0 0 auto;
  color: #94252a;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li .btn__arrow {
    margin: 0.7142857143rem 0 0 auto;
  }
}
#landmarks .inner .container .spot li .btn__arrow::after {
  border-color: #94252a;
}
#landmarks .inner .container .spot li .btn__arrow span::before, #landmarks .inner .container .spot li .btn__arrow span::after {
  border-right-color: #94252a;
  border-bottom-color: #94252a;
}
#landmarks .inner .container .spot li.expo {
  width: 100%;
  background: #fff;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #landmarks .inner .container .spot li.expo {
    grid-row: 1/2;
    grid-column: 1/4;
    padding: 1.875rem;
    display: grid;
    grid-template-columns: 18.75rem auto;
    grid-template-rows: auto auto;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li.expo {
    padding: 5%;
  }
}
#landmarks .inner .container .spot li.expo::after {
  position: absolute;
  content: "";
  background: url(../img/top/img_expo.svg) no-repeat right top/contain;
  width: 6.25rem;
  height: 5rem;
  top: 0.625rem;
  right: 0.625rem;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li.expo::after {
    top: 45%;
    right: 5%;
  }
}
@media print, screen and (min-width: 768px) {
  #landmarks .inner .container .spot li.expo figure {
    margin-bottom: 0;
    grid-row: 1/4;
    grid-column: 1/2;
    margin-right: 1.875rem;
    overflow: hidden;
    position: relative;
  }
  #landmarks .inner .container .spot li.expo figure img {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
  }
}
#landmarks .inner .container .spot li.expo h4 {
  font-weight: 600;
  margin-bottom: 0.75em;
}
@media print, screen and (min-width: 768px) {
  #landmarks .inner .container .spot li.expo h4 {
    grid-row: 1/2;
    grid-column: 2/3;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li.expo h4 {
    font-size: 1.4285714286rem;
    line-height: 1.4;
  }
}
#landmarks .inner .container .spot li.expo h4 span {
  font-size: 1.125rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 768px) {
  #landmarks .inner .container .spot li.expo dl {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
#landmarks .inner .container .spot li.expo dl dt {
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  #landmarks .inner .container .spot li.expo dl dd small:not(.en) {
    display: inline-block;
    margin-left: 4em;
  }
}
#landmarks .inner .container .spot li.expo .btn__arrow {
  grid-row: 3/4;
  grid-column: 2/3;
}
@media only screen and (max-width: 767px) {
  #landmarks .inner .container .spot li.expo.kr::after {
    top: 40%;
  }
}