@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 1s !important;
}

.anim--delay {
  animation-delay: 0.6s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn.onAnim {
  animation: fadeIn 2s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp.onAnim {
  animation: fadeUp 2s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 1s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight.onAnim {
  animation: fadeRight 1s ease 0s 1 alternate forwards;
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

:placeholder-shown {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
}

a {
  color: #000;
}
a:hover {
  text-decoration: underline;
}

html {
  font-size: 16px;
}
@media all and (max-width: 680px) {
  html {
    font-size: 3.7208vw;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  overscroll-behavior: none;
}
@media all and (max-width: 680px) {
  body {
    font-size: 3.7208vw;
  }
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}

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

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

.textRight {
  text-align: right;
}

@media all and (max-width: 680px) {
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 940px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 680px) {
  html {
    font-size: 3.7208vw;
  }
  body {
    font-size: 3.7208vw;
  }
}
@media all and (max-width: 680px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp {
    display: none !important;
  }
}
.inner {
  max-width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
@media all and (max-width: 940px) {
  .inner {
    padding: 0 30px;
  }
}
@media all and (max-width: 680px) {
  .inner {
    padding: 0 3.48825vw;
  }
}

.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease 0s;
  padding: 20px 50px;
}
.mainHeader:hover {
  text-decoration: none;
}
@media all and (max-width: 940px) {
  .mainHeader {
    padding: 20px 30px;
  }
}
@media all and (max-width: 680px) {
  .mainHeader {
    padding: 2.3255vw 3.48825vw;
  }
}
.mainHeader__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
  max-width: 62.5rem;
}
.mainHeader__logo {
  position: relative;
  width: 240px;
  transition: all 0.3s ease 0s;
  filter: none;
}
.mainHeader__logo:hover {
  text-decoration: none;
}
@media all and (max-width: 680px) {
  .mainHeader__logo {
    width: 34.8825vw;
  }
}
.mainHeader__logo img {
  height: auto;
  width: 100%;
}
.mainHeader.top {
  background-color: transparent;
}

.gNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #000;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s 0s ease, translate 0s 0.3s ease;
  translate: 120% 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gNav.active {
  transition: opacity 0.3s 0s ease, translate 0s 0s ease;
  opacity: 1;
  translate: 0 0;
}
.gNav__inner {
  max-height: calc(100vh - 120px);
  overflow: auto;
  width: 100%;
}
.gNav__contentWrap {
  max-width: 30.625rem;
  margin: 0 auto;
}
.gNav__upper {
  width: 100%;
  margin-bottom: 2.5rem;
  position: relative;
  padding-top: 2.5rem;
}
@media all and (max-width: 680px) {
  .gNav__upper {
    display: flex;
    justify-content: space-between;
    padding: 0 1.25rem;
  }
}
.gNav__lower {
  padding: 0 1.25rem;
}
.gNav__logo {
  width: 5.625rem;
  position: absolute;
  left: -6.25rem;
  top: 0;
}
@media all and (max-width: 940px) {
  .gNav__logo {
    left: -5rem;
  }
}
@media all and (max-width: 680px) {
  .gNav__logo {
    position: relative;
    left: 0;
    width: 4.375rem;
  }
}
.gNav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
  flex-direction: column;
  align-items: normal;
  gap: 2.2rem;
}
@media all and (max-width: 680px) {
  .gNav__list {
    gap: 1.5em;
    align-items: flex-end;
    text-align: right;
    padding-top: 1.8125rem;
  }
}
.gNav__list__item a {
  display: flex;
  color: #fff;
  position: relative;
  padding: 0.35em 0;
  text-align: center;
  font-size: 1.25rem;
  transition: all 0.3s ease 0s;
  font-size: 1.5rem;
  position: relative;
  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
}
@media all and (max-width: 680px) {
  .gNav__list__item a {
    font-size: 1rem;
    text-align: right;
    align-items: flex-end;
  }
}
.gNav__list__item a > span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.5em;
}
@media all and (max-width: 680px) {
  .gNav__list__item a > span {
    align-items: flex-end;
  }
}
.gNav__list__item a > span em {
  font-size: 1.375rem;
}
@media all and (max-width: 680px) {
  .gNav__list__item a > span em {
    font-size: 1rem;
  }
}
.gNav__list__item a > span strong {
  font-size: 0.875rem;
}
.gNav__list__item a:hover {
  text-decoration: none;
}
.gNav__list__item a:hover {
  filter: drop-shadow(0 0 0.625rem #fff);
}
.gNav__booking {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border: 0.0625rem solid #fff;
  padding: 1.5em;
  font-weight: bold;
  transition: all 0.3s ease 0s;
}
.gNav__booking:hover {
  text-decoration: none;
}
.gNav__booking:hover {
  background-color: #fff;
  color: #000;
}

.spBT {
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  position: relative;
  z-index: 99;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
@media all and (max-width: 680px) {
  .spBT {
    width: 9.302vw;
    height: 9.302vw;
    padding: 1.16275vw;
  }
}
.spBT__inner {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media all and (max-width: 680px) {
  .spBT__inner {
    gap: 1.3953vw;
  }
}
.spBT__bar {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease 0s;
}
.spBT__bar:hover {
  text-decoration: none;
}
@media all and (max-width: 680px) {
  .spBT__bar {
    height: 0.69765vw;
  }
}
.spBT.active .spBT__bar:first-child {
  translate: 0 300%;
  rotate: 40deg;
}
.spBT.active .spBT__bar:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__bar:last-child {
  translate: 0 -300%;
  rotate: -40deg;
}

.fv {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 1.875rem 2.5rem;
  position: relative;
  background-color: #000;
}
@media all and (max-width: 680px) {
  .fv {
    padding-bottom: 1.875rem;
  }
}
.fv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/fv_bg.webp);
  transition: opacity 0.5s ease 0.4s;
  opacity: 0;
}
@media all and (max-width: 680px) {
  .fv {
    padding: 8.125rem 1.25rem 3.125rem;
  }
}
.fv__inner {
  width: 100%;
  position: relative;
  z-index: 5;
}
.fv__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media all and (max-width: 680px) {
  .fv__content {
    gap: 5rem;
  }
}
.fv__logo {
  width: 7.75rem;
  transition: opacity 1.5s ease 0.8s;
  opacity: 0;
}
.fv__lead {
  transition: opacity 1.5s ease 1.2s;
  opacity: 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.75rem;
}
@media all and (max-width: 680px) {
  .fv__lead {
    font-size: 1.25rem;
  }
}
.fv__lead-en {
  transition: opacity 1.5s ease 1.5s;
  margin-top: 1em;
  opacity: 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 0.875rem;
}
@media all and (max-width: 680px) {
  .fv__lead-en {
    font-size: 0.75rem;
  }
}
.fv.onAnim:before {
  opacity: 1;
}
.fv.onAnim .fv__logo {
  opacity: 1;
}
.fv.onAnim .fv__lead {
  opacity: 1;
}
.fv.onAnim .fv__lead-en {
  opacity: 1;
}

.commonHeading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media all and (max-width: 680px) {
  .commonHeading {
    padding: 0 0.4375rem;
  }
}
.commonHeading em {
  line-height: 1.1;
  margin-bottom: 0.3em;
  color: #52696F;
  font-size: 5rem;
  font-weight: 500;
}
@media all and (max-width: 940px) {
  .commonHeading em {
    font-size: 4rem;
  }
}
@media all and (max-width: 680px) {
  .commonHeading em {
    font-size: 3.75rem;
  }
}
.commonHeading strong {
  font-weight: bold;
  font-size: 1.375rem;
}
@media all and (max-width: 680px) {
  .commonHeading strong {
    font-size: 0.875rem;
  }
}

.intro {
  position: relative;
  background-color: #000;
  padding: 5rem 0 10rem;
  color: #fff;
  overflow: hidden;
}
@media all and (max-width: 680px) {
  .intro {
    padding: 4.375rem 0 7.5rem;
  }
}
.intro__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 0.875rem;
  margin-bottom: 10rem;
}
@media all and (max-width: 680px) {
  .intro__heading {
    font-size: 0.75rem;
    margin-bottom: 5rem;
  }
}
.intro__heading strong {
  font-size: 1.375rem;
  margin-bottom: 0.4em;
}
@media all and (max-width: 680px) {
  .intro__heading strong {
    font-size: 0.875rem;
  }
}
.intro__section {
  position: relative;
}
@media all and (max-width: 680px) {
  .intro__section {
    padding: 0 0.625rem;
  }
}
.intro__section .content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.intro__section .lead {
  font-weight: bold;
  font-size: 2.625rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.intro__section .text {
  font-weight: bold;
  font-size: 0.875rem;
}
.intro__section .string {
  color: #191919;
  line-height: 1;
  font-size: 17.5rem;
  position: absolute;
  filter: blur(1.875rem);
  z-index: -1;
  opacity: 0;
  transition: all 1.25s ease 0.25s;
}
@media all and (max-width: 940px) {
  .intro__section .string {
    scale: 0.7;
  }
}
@media all and (max-width: 680px) {
  .intro__section .string {
    scale: 1;
  }
}
.intro__section.onAnim .string {
  opacity: 1;
  filter: blur(0);
}
.intro__section1 {
  margin-bottom: 5rem;
}
@media all and (max-width: 680px) {
  .intro__section1 {
    margin-bottom: 10rem;
  }
}
.intro__section1 .string {
  top: 50%;
  left: 0;
  translate: 75% -40%;
  width: 18.75rem;
  transform-origin: left top;
}
@media all and (max-width: 680px) {
  .intro__section1 .string {
    width: 16.875rem;
    translate: 0% -55%;
    left: auto;
    right: 0;
  }
}
.intro__section2 {
  margin-bottom: 6.25rem;
}
@media all and (min-width: 681px) {
  .intro__section2 .content {
    align-items: flex-end;
  }
}
.intro__section2 .string {
  top: 0%;
  right: 0;
  translate: 0% -54%;
  width: 18.25rem;
  transform-origin: right top;
}
@media all and (max-width: 940px) {
  .intro__section2 .string {
    translate: 0% -20%;
  }
}
@media all and (max-width: 680px) {
  .intro__section2 .string {
    width: 16.5rem;
    right: auto;
    left: 0;
    translate: 0% -37%;
  }
}
.intro__section3 .string {
  top: 0%;
  left: 0;
  translate: 0% -58%;
  width: 16.875rem;
  transform-origin: left top;
}
@media all and (max-width: 680px) {
  .intro__section3 .string {
    width: 15.625rem;
    left: auto;
    right: 0;
    translate: 10% -12%;
  }
}

.experience {
  padding-bottom: 10rem;
}
@media all and (max-width: 680px) {
  .experience {
    padding-bottom: 6.25rem;
  }
}
.experience__img {
  height: 23.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/experience_header.webp);
}
.experience__header {
  position: relative;
  z-index: 5;
  margin-top: -4.0625rem;
  margin-bottom: 5rem;
}
@media all and (max-width: 940px) {
  .experience__header {
    margin-top: -2.8125rem;
  }
}
@media all and (max-width: 680px) {
  .experience__header {
    margin-top: -1.5625rem;
  }
}
.experience__heading {
  color: #52696F;
  line-height: 1.2;
  font-size: 8.75rem;
  margin-bottom: 0.25em;
  font-weight: 500;
}
@media all and (max-width: 940px) {
  .experience__heading {
    font-size: 6.25rem;
  }
}
@media all and (max-width: 680px) {
  .experience__heading {
    font-size: 3.75rem;
  }
}
.experience__lead {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 0.3em;
}
@media all and (max-width: 680px) {
  .experience__lead {
    font-size: 0.875rem;
  }
}
.experience__lead-en {
  color: #6A6F72;
}
@media all and (max-width: 680px) {
  .experience__lead-en {
    font-size: 0.75rem;
  }
}
.experience__wrap {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media all and (max-width: 680px) {
  .experience__wrap {
    gap: 5rem;
  }
}
.experience__section__heading {
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
}
@media all and (max-width: 680px) {
  .experience__section__heading {
    font-size: 1.25rem;
  }
}
.experience__section__caption {
  text-align: center;
}
@media all and (max-width: 680px) {
  .experience__section__caption {
    font-size: 0.875rem;
  }
}
.experience__section__box {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media all and (max-width: 680px) {
  .experience__section__box {
    margin-top: 1.25rem;
    gap: 1.875rem;
  }
}
@media all and (max-width: 680px) {
  .experience__section__box {
    flex-direction: column;
  }
}
.experience__section__box .experience-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.875rem;
}
@media all and (min-width: 681px) {
  .experience__section__box .experience-images {
    width: calc(50% - 0.75rem);
  }
}
.experience__section__box .experience-images a {
  width: calc(50% - 0.4375rem);
}
.experience__section__box .experience-images a:first-child {
  width: 100%;
}
@media all and (min-width: 681px) {
  .experience__section__box .content {
    width: calc(50% - 0.75rem);
  }
}
.experience__section__box .info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.experience__section__box .info dt {
  background-color: #52696F;
  color: #fff;
  font-weight: bold;
  max-width: 8.75rem;
  min-width: 6.875rem;
  text-align: center;
  padding: 0.1em 0.2em 0.2em;
  white-space: nowrap;
}
@media all and (max-width: 680px) {
  .experience__section__box .info dd {
    font-size: 0.875rem;
  }
}
.experience__section__box .info__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.experience__section__box .info .flex {
  flex-direction: row;
  gap: 1.5625rem;
  align-items: flex-start;
}
.experience__section__box .btWrap {
  margin-bottom: 2.5rem;
}
.experience__section__box .btWrap a {
  display: block;
  border: 0.0625rem solid #6A6F72;
  color: #6A6F72;
  padding: 1.25em;
  transition: all 0.3s ease 0s;
  text-align: center;
  font-weight: bold;
}
.experience__section__box .btWrap a:hover {
  text-decoration: none;
}
.experience__section__box .btWrap a:hover {
  background-color: #6A6F72;
  color: #fff;
}
.experience__section__box .btWrap a.disable {
  pointer-events: none;
  opacity: 0.5;
}
.experience__section__box .enContent {
  color: #6A6F72;
  line-height: 1.6;
}
@media all and (max-width: 680px) {
  .experience__section__box .enContent {
    font-size: 0.75rem;
  }
}
.experience__section__box .enContent__heading {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
.experience__section__movies {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3.125rem;
}
@media all and (max-width: 680px) {
  .experience__section__movies {
    gap: 1.875rem;
    flex-direction: column;
  }
}
.experience__section__movies__item {
  width: 48%;
}
@media all and (max-width: 680px) {
  .experience__section__movies__item {
    width: 100%;
  }
}
.experience__section__movies__item .movie {
  position: relative;
  padding-top: 56.25%;
}
.experience__section__movies__item .movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.experience__section__movies__item .caption {
  text-align: center;
  margin-top: 1em;
}

.community {
  padding: 6.25rem 0 10rem;
  background-color: #f7f7f7;
}
@media all and (max-width: 680px) {
  .community {
    padding: 3.75rem 0 5rem;
  }
}
.community__section {
  margin-top: 10rem;
}
@media all and (max-width: 680px) {
  .community__section {
    margin-top: 5rem;
  }
}
.community__section__heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 2.5rem;
}
.community__section__heading strong {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.3em;
}
@media all and (max-width: 680px) {
  .community__section__heading strong {
    font-size: 1.25rem;
  }
}
.community__section__heading em {
  color: #6A6F72;
}
@media all and (max-width: 680px) {
  .community__section__heading em {
    font-size: 0.75rem;
  }
}

.souvenirs {
  padding: 5rem 0;
}
@media all and (max-width: 680px) {
  .souvenirs {
    padding: 3.75rem 0 3.75rem;
  }
}

.reservation {
  padding: 5rem 0 10rem;
}
@media all and (max-width: 680px) {
  .reservation {
    padding: 3.75rem 0 7.5rem;
  }
}
.reservation__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reservation__btWrap {
  max-width: 30.625rem;
  width: 100%;
  margin-bottom: 2.5rem;
}
@media all and (max-width: 680px) {
  .reservation__btWrap {
    margin-bottom: 1.25rem;
  }
}
.reservation__btWrap a {
  border: 0.0625rem solid #6A6F72;
  display: block;
  width: 100%;
  color: #6A6F72;
  font-weight: bold;
  padding: 1.25em;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.reservation__btWrap a:hover {
  text-decoration: none;
}
.reservation__btWrap a:hover {
  background-color: #6A6F72;
  color: #fff;
}
.reservation .ja {
  font-weight: bold;
  margin-bottom: 0.75em;
}
@media all and (max-width: 680px) {
  .reservation .ja {
    font-weight: normal;
  }
}
.reservation .en {
  color: #6A6F72;
}
@media all and (max-width: 680px) {
  .reservation .en {
    font-size: 0.75rem;
  }
}

.access {
  padding: 5rem 0;
}
@media all and (max-width: 680px) {
  .access {
    padding: 3.75rem 0 3.75rem;
  }
}
.access__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 680px) {
  .access__box {
    flex-direction: column;
    gap: 1rem;
  }
}
.access__content {
  width: 18.75rem;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.access__content .en {
  color: #6a6f72;
}
@media all and (max-width: 680px) {
  .access__content {
    width: 100%;
  }
}
.access__mapWrap {
  width: calc(100% - 21.875rem);
  position: relative;
  max-width: 40.625rem;
  height: 15.625rem;
}
@media all and (max-width: 680px) {
  .access__mapWrap {
    width: 100%;
    max-width: 100%;
    height: 18.75rem;
  }
}
.access__mapWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.textBox {
  margin-bottom: 1rem;
}
.textBox:last-child {
  margin-bottom: 0;
}
.textBox.grey {
  color: #6A6F72;
}
@media all and (max-width: 680px) {
  .textBox.grey {
    font-size: 0.75rem;
  }
}

.mb80 {
  margin-bottom: 5rem;
}
@media all and (max-width: 680px) {
  .mb80 {
    margin-bottom: 2.5rem;
  }
}

.col3-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
@media all and (max-width: 940px) {
  .col3-info {
    gap: 2.5rem;
  }
}
@media all and (max-width: 680px) {
  .col3-info {
    grid-template-columns: 1fr;
  }
}
.col3-info__img {
  margin-bottom: 1rem;
}
.col3-info__heading {
  font-weight: bold;
  font-size: 1.375rem;
  margin-bottom: 0.3em;
}
@media all and (max-width: 680px) {
  .col3-info__heading {
    font-size: 1.125rem;
  }
}

.col2-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}
@media all and (max-width: 680px) {
  .col2-info {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
}
.footer a {
  color: #fff;
}
.footer__inner {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}
@media all and (max-width: 940px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
}
.footer__logo {
  width: 6.1875rem;
}
@media all and (min-width: 941px) {
  .footer__logo {
    order: 1;
  }
}
.footer__nav {
  margin-left: auto;
  width: calc(50% - 0.75rem);
}
@media all and (min-width: 941px) {
  .footer__nav {
    order: 3;
  }
}
@media all and (max-width: 940px) {
  .footer__nav {
    margin-top: 3.75rem;
    margin-right: auto;
    width: 100%;
    max-width: 23.375rem;
  }
}
.footer__nav__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 2.8125rem;
}
.footer__nav__list li {
  text-align: right;
}
.footer__nav__bt a {
  display: block;
  border: 0.0625rem solid #fff;
  color: #fff;
  padding: 1.25em;
  transition: all 0.3s ease 0s;
  text-align: center;
  font-weight: bold;
}
.footer__nav__bt a:hover {
  text-decoration: none;
}
.footer__nav__bt a:hover {
  background-color: #fff;
  color: #000;
}
.footer__info {
  max-width: 18.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
@media all and (min-width: 941px) {
  .footer__info {
    order: 2;
  }
}
@media all and (max-width: 940px) {
  .footer__info {
    width: 100%;
    max-width: 23.375rem;
  }
}
.footer__info .en {
  font-size: 0.75rem;
}

/*# sourceMappingURL=common.css.map */
