@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}

em {
  font-style: normal;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --leading-trim: calc((1em - 1lh) / 2);
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho",
    "MS Mincho", "Meiryo", serif;
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "游ゴシック体", "YuGothic", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  font-size: min(0.6944444444vw, 10px);
  margin: 0 !important;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.9259259259vw;
  }
}

body {
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  font-family: var(--mincho);
  background: var(--black);
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

a {
  color: var(--white);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a::after, a::before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
  a:hover::after, a:hover::before {
    opacity: 0.6;
  }
}

.palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 500;
  color: var(--white);
}

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

html #wpadminbar {
  position: fixed;
  top: auto;
  bottom: 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header__logo {
  width: 12rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 24rem;
  }
}
.header__nav {
  position: fixed;
  width: 60rem;
  right: 0;
  top: 0;
  background: #050505;
  height: 100vh;
  z-index: 100;
  padding-top: 15rem;
  padding-inline: 10rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
.header__nav.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .header__nav {
    padding-top: 24rem;
    width: 100%;
  }
}
.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}
.header__menu-item {
  font-size: 2.4rem;
  line-height: 180%;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .header__menu-item {
    font-size: 4.8rem;
  }
}
.header__menu-item::before {
  content: "---";
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__menu-item:hover::before {
  opacity: 0.6;
}

.overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}
.overlay.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.hamburger {
  position: fixed;
  top: 4rem;
  right: 3.2rem;
  z-index: 101;
  width: 6rem;
  height: 6rem;
  border: 1px solid var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 101;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburger {
    top: 6.4rem;
    right: 5.6rem;
    width: 14rem;
    height: 14rem;
  }
}
.hamburger .hamburger__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 4.5rem;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .hamburger .hamburger__line {
    width: 9rem;
    height: 8rem;
  }
}
.hamburger .hamburger__line span {
  width: 100%;
  height: 0.4rem;
  display: block;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
  z-index: 30;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .hamburger .hamburger__line span {
    height: 1.2rem;
  }
}
.hamburger .hamburger__line span:nth-child(1) {
  top: 0rem;
}
.hamburger .hamburger__line span:nth-child(2) {
  top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .hamburger .hamburger__line span:nth-child(2) {
    top: 3.4rem;
  }
}
.hamburger .hamburger__line span:nth-child(3) {
  bottom: 0rem;
  opacity: 1;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.hamburger.is-active .hamburger__line span:nth-child(1) {
  top: 1.3rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hamburger.is-active .hamburger__line span:nth-child(1) {
    top: 3.4rem;
  }
}
.hamburger.is-active .hamburger__line span:nth-child(2) {
  top: 1.3rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .hamburger.is-active .hamburger__line span:nth-child(2) {
    top: 3.4rem;
  }
}
.hamburger.is-active .hamburger__line span:nth-child(3) {
  bottom: 0rem;
  opacity: 0;
}

.footer-fixed {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .footer-fixed {
    height: 36.8rem;
  }
}

.footer__btm {
  background: -webkit-linear-gradient(162deg, #ffdf9a 14.82%, #ffb376 43.39%, #fe8751 89.96%);
  background: linear-gradient(288deg, #ffdf9a 14.82%, #ffb376 43.39%, #fe8751 89.96%);
}
@media screen and (max-width: 768px) {
  .footer__btm {
    background: -webkit-linear-gradient(162deg, #ffdf9a 14.82%, #ffb376 43.39%, #fe8751 89.96%);
    background: linear-gradient(288deg, #ffdf9a 14.82%, #ffb376 43.39%, #fe8751 89.96%);
  }
}
.footer__inner {
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 100%;
  }
}
.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 4.9rem;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer__links {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    width: 100%;
  }
}
.footer__logo {
  width: 17rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 11.5rem;
  }
}
.footer__snss {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer__snss {
    gap: 0.5rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.footer__sns {
  width: 3.7rem;
  height: 3.7rem;
}
.footer__info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .footer__info {
    max-width: 100%;
    width: 100%;
  }
}
.footer__navs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1.6rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__navs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0rem;
  }
}
.footer__navs > .footer__nav-item {
  width: 33.3333333333%;
}
.footer__navs > .footer__nav-item svg {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__navs > .footer__nav-item {
    padding-block: 1rem;
    border-bottom: 1px solid var(--white);
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__navs > .footer__nav-item svg {
    display: block;
    width: 4.2rem;
    min-height: 7px;
    height: 0.7rem;
  }
  .footer__navs > .footer__nav-item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__navs > .footer__nav-item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer__navs > .footer__nav-item:nth-child(3) {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .footer__navs > .footer__nav-item:nth-child(4) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__navs > .footer__nav-item:nth-child(5) {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
}
.footer__nav-item {
  font-size: 1.8rem;
  line-height: 180%;
  font-weight: 700;
  color: var(--white);
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-item:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-item {
    font-size: min(1.8rem, 15px);
  }
}
.footer__terms {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .footer__terms {
    margin-top: 3.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .footer__terms > .footer__nav-item {
    display: inline-block;
    font-size: min(1.8rem, 15px);
  }
}
@media screen and (max-width: 768px) {
  .footer__terms > .footer__nav-item:nth-child(1) {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--white);
  }
}
.footer__terms > .footer__nav-item:nth-child(2) {
  position: relative;
}
.footer__terms > .footer__nav-item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -1.5rem;
  width: 1px;
  height: 2.4rem;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .footer__terms > .footer__nav-item:nth-child(2)::before {
    content: none;
  }
}
.footer__privacy-mark {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  background: var(--white);
  padding: 0.4rem 1rem 0.3rem 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .footer__privacy-mark {
    margin-top: 3.6rem;
    padding: 0.4rem 1rem 0.3rem 1.5rem;
    width: 100%;
  }
}
.footer__privacy-logo {
  width: 6.1rem;
}
.footer__privacy-text {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__privacy-text {
    font-size: 1.5rem;
  }
}

.footer--active {
  position: static;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-sectitle {
  font-size: 6.4rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.c-sectitle::before {
  content: "";
  width: 5.8rem;
  height: 1px;
  position: absolute;
  bottom: -2.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-sectitle::before {
    bottom: -1.2rem;
  }
}
.c-sectitle::after {
  position: absolute;
  bottom: -7.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: attr(date-title);
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .c-sectitle::after {
    bottom: -5.5rem;
  }
}

.c-title {
  text-align: center;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: max(4rem, 30px);
  }
}

.line-fig-bg {
  background-image: url(../images/pc/rokkan-fig.webp);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  position: fixed;
  aspect-ratio: 1920/7561;
  top: -145%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .line-fig-bg {
    background-image: url(../images/sp/rokkan-fig.webp);
    aspect-ratio: 316/4999;
    top: -52%;
  }
}

body {
  overflow-x: hidden;
}

.wrapper {
  max-width: 126rem;
  padding-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

.fdc--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.5rem;
}
@media screen and (min-width: 769px) {
  .fdc--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.mobile {
  display: block;
}
@media screen and (min-width: 769px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media screen and (min-width: 769px) {
  .desktop {
    display: block;
  }
}

.bg-white {
  background: var(--white);
  overflow: hidden;
}

.section-wrap {
  position: relative;
  z-index: 997;
  background: var(--white);
}

.section__title {
  font-size: 6rem;
  line-height: 1;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 8.4rem;
  }
}

.line-fig {
  position: absolute;
  top: calc(100vh - 103rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 192rem;
  height: 702rem;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .line-fig {
    top: calc(100vh + 1rem);
    width: 84.5rem;
    -webkit-transform: translateX(calc(-50% + 7.75rem));
            transform: translateX(calc(-50% + 7.75rem));
    height: 1300rem;
    max-height: 90%;
  }
}

.overflow {
  position: relative;
  overflow: hidden;
}

.fv {
  background-image: url(../video/fv-pc.mp4);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 108rem;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.fv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__video .fv__video-pc {
  display: block;
}
.fv__video .fv__video-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv__video .fv__video-pc {
    display: none;
  }
  .fv__video .fv__video-sp {
    display: block;
  }
}
.fv__title {
  width: 31.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .fv__title {
    width: 52.9rem;
  }
}
.fv__text {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv__text {
    display: block;
    margin-top: 16.6rem;
    font-size: 7.5rem;
    line-height: 1.8533333333;
    text-align: center;
    font-weight: 600;
  }
  .fv__text span {
    font-size: 9.8rem;
    line-height: 1.4183673469;
  }
}

.about {
  margin-top: 13.2rem;
  padding-bottom: 22.9rem;
}
@media screen and (max-width: 768px) {
  .about {
    margin-top: 17.5rem;
    padding-bottom: 0rem;
  }
}
.about .about__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about .about__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .about .about__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about .about__item--1 {
  max-width: 144rem;
  max-width: 75vw;
}
@media screen and (max-width: 768px) {
  .about .about__item--1 {
    max-width: inherit;
  }
}
@media screen and (max-width: 768px) {
  .about .about__item--1 .about__item-body {
    padding-inline: 13.2rem;
  }
}
.about .about__item--1 .about__item-img {
  width: 99.3rem;
  width: 51.71875vw;
  top: -16.8rem;
  top: -8.75vw;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about .about__item--1 .about__item-img {
    width: 100%;
    top: auto;
    margin-top: -11.2rem;
    right: auto;
  }
}
.about .about__item--2 {
  margin-top: 35.4rem;
  margin-top: 18.4375vw;
  max-width: 172.6rem;
  max-width: 89.8958333333vw;
  padding-right: 24.6rem;
  padding-right: 12.8125vw;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .about .about__item--2 {
    padding-right: 6.25vw;
  }
}
@media screen and (max-width: 768px) {
  .about .about__item--2 {
    margin-top: 17.2rem;
    max-width: inherit;
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about .about__item--2 .about__item-body {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about .about__item--2 .about__item-body {
    margin: 0;
    width: 100%;
    padding-inline: 9.6rem 9.4rem;
  }
}
.about .about__item--2 .about__item-img {
  width: 93.4rem;
  width: 48.6458333333vw;
  top: -13.5rem;
  top: -7.03125vw;
  left: 0;
}
@media screen and (max-width: 768px) {
  .about .about__item--2 .about__item-img {
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 12.6rem;
  }
}
.about .about__item--2 .about__text--2 {
  padding-top: 12.6rem;
  padding-top: 6.5625vw;
}
@media screen and (max-width: 768px) {
  .about .about__item--2 .about__text--1 {
    text-align: right;
    margin-left: auto;
  }
  .about .about__item--2 .about__text--2 {
    padding-top: 15.6rem;
  }
}
.about .about__item--3 {
  margin-top: 31.9rem;
  margin-top: 16.6145833333vw;
  max-width: 168rem;
  max-width: 87.5vw;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .about .about__item--3 {
    margin-top: 17.2rem;
    max-width: inherit;
  }
}
.about .about__item--3 .about__item-img {
  width: 131.4rem;
  width: 68.4375vw;
  top: -44.7rem;
  top: -23.28125vw;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about .about__item--3 .about__item-img {
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 0rem;
    margin-bottom: -3.5rem;
  }
}
.about .about__item--3 .about__item-body {
  width: 81.8rem;
  width: 42.6041666667vw;
}
@media screen and (max-width: 768px) {
  .about .about__item--3 .about__item-body {
    margin: 0;
    width: 100%;
    padding-inline: 9.6rem 9.4rem;
  }
}
@media screen and (max-width: 768px) {
  .about .about__item--3 .about__text {
    font-size: 4rem;
    line-height: 2.5;
  }
}
.about .about__item--3 .about__text--2 {
  padding-top: 7rem;
  padding-top: 3.6458333333vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about .about__item--3 .about__text--2 {
    margin-left: auto;
    text-align: right;
    padding-top: 16.4rem;
  }
}
.about .about__item--3 .about__text--3 {
  padding-top: 9.6rem;
  padding-top: 5vw;
}
@media screen and (max-width: 768px) {
  .about .about__item--3 .about__text--3 {
    padding-left: 9.8rem;
    padding-top: 0;
  }
}
.about .about__item-body {
  position: relative;
  z-index: 1;
}
.about .about__item-img {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .about .about__item-img {
    position: relative;
  }
}
.about .about__title {
  font-size: 5rem;
  line-height: 1.6;
  font-weight: 400;
  margin-block: var(--leading-trim);
  padding-bottom: 9.6rem;
}
@media screen and (max-width: 768px) {
  .about .about__title {
    font-size: 5.7rem;
    line-height: 1.9649122807;
    padding-bottom: 14.8rem;
  }
}
.about .about__text {
  font-size: max(2rem, 14px);
  line-height: 2.5;
  font-weight: 400;
  margin-block: var(--leading-trim);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .about .about__text {
    font-size: 4.2rem;
    line-height: 2.380952381;
  }
}

.instagram {
  margin-top: 27rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .instagram {
    margin-top: 41.8rem;
  }
}
.instagram__body {
  max-width: 80.4rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 6.6rem;
  min-height: 80.3rem;
}
@media screen and (max-width: 768px) {
  .instagram__body {
    max-width: inherit;
    width: 100%;
    padding-inline: 4rem;
    margin-top: 13rem;
  }
}

.price {
  margin-top: 31rem;
  padding-bottom: 35.2rem;
}
@media screen and (max-width: 768px) {
  .price {
    margin-top: 27.9rem;
    padding-bottom: 32.5rem;
  }
}
.price__text {
  padding-top: 11.6rem;
  margin-block: var(--leading-trim);
  font-size: 2.8rem;
  line-height: 1.7857142857;
  font-weight: 400;
  text-align: center;
  font-family: var(--gothic);
}
@media screen and (max-width: 768px) {
  .price__text {
    padding-top: 10rem;
    font-size: max(3.2rem, 14px);
  }
}
.price .price__img {
  display: block;
  margin-top: 10rem;
  width: max(80rem, 600px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .price .price__img {
    padding-top: 10rem;
    width: 79.6rem;
  }
}
.price .price__img img {
  width: 100%;
  height: auto;
}

.logo {
  margin-top: 31.5rem;
}
.logo img {
  width: 21rem;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .logo {
    margin-top: 29rem;
  }
}

.gallary {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .gallary {
    margin-top: 41rem;
  }
}
.gallary .gallary__inner {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.gallary__body {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .gallary__body {
    margin-top: 12.5rem;
  }
}
.gallary .gallary-swiper {
  width: 100%;
}
.gallary .gallary-swiper-wrapper {
  width: 100%;
}
.gallary .swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.gallary .gallary__item {
  width: 86.4rem;
  height: 48rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.gallary .gallary__item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .gallary .gallary__item {
    width: 100%;
    height: 60rem;
  }
}

.news {
  position: relative;
  z-index: 1;
  padding-inline: 11rem;
  margin-top: 17rem;
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 35rem;
  }
}
.news__inner {
  max-width: 650px;
  margin-inline: auto;
}
.news__body {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .news__body {
    margin-top: 11rem;
  }
}
.news__body ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.news__item-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.news__item-link:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news__item-date {
  color: #56b2eb;
  font-size: 18px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .news__item-date {
    font-size: max(16px, 3rem);
    line-height: normal;
  }
}
.news__item-title {
  font-size: 18px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .news__item-title {
    font-size: max(16px, 3rem);
    line-height: normal;
  }
}
.news__categories {
  margin-top: 8.4rem;
}
.news__categories ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2.5rem;
}
.news__categories li a {
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news__categories li a span {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news__categories li a span {
    font-size: max(16px, 3rem);
  }
}
.news__categories li a:hover {
  border-bottom: 1px solid var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news__categories li.active a {
  border-bottom: 1px solid var(--white);
}
@media screen and (max-width: 768px) {
  .news__categories {
    margin-top: 7rem;
  }
}

.news.archive .news__inner {
  max-width: 800px;
}
.news.archive .archive__list {
  margin-top: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .news.archive .archive__list {
    margin-top: 11rem;
  }
}

.archive__pagenation {
  margin-top: 11rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.archive__pagenation .pagenation-icon {
  display: inline-block;
  width: 2.75rem;
  height: 0.7rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive__pagenation .pagenation-icon:hover, .archive__pagenation .pagenation-icon:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive__pagenation .pagenation-icon.prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.archive__pagenation .pagenation-icon.prev:hover, .archive__pagenation .pagenation-icon.prev:focus {
  -webkit-transform: scaleX(-1) scale(1.1);
          transform: scaleX(-1) scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.archive__pagenation .pager {
  display: grid;
  place-items: center;
  letter-spacing: 0.04em;
  font-size: max(1.6rem, 14px);
  cursor: pointer;
  line-height: 2.0909090909;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}
@media (hover: hover) and (pointer: fine) {
  .archive__pagenation a.pager:hover, .archive__pagenation a.pager:focus {
    border-bottom: 1px solid var(--white);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.archive__pagenation .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 3rem;
}
@media (hover: hover) and (pointer: fine) {
  .archive__pagenation .current,
  .archive__pagenation .pager a:hover {
    border-bottom: 1px solid var(--white);
  }
}
@media screen and (max-width: 768px) {
  .archive__pagenation {
    margin-top: 10.5rem;
  }
  .archive__pagenation .pagenation-icon {
    width: 2.7rem;
    height: 0.7rem;
  }
  .archive__pagenation .pager {
    font-size: 18px;
  }
  .archive__pagenation .pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    gap: max(4rem, 30px);
  }
}

.page_num {
  display: none;
}

.single__content {
  position: relative;
  margin-top: 10rem;
  max-width: 748px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .single__content {
    margin-top: 14rem;
    padding-inline: 2rem;
    padding-bottom: 80px;
  }
}
.single__content-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4583333333;
  margin-top: 1.1rem;
}
@media screen and (max-width: 768px) {
  .single__content-title {
    font-size: 1.9rem;
    line-height: 1.4736842105;
    margin-top: 0.5rem;
  }
}
.single__thumbnail {
  width: 100%;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .single__thumbnail {
    margin-top: 2rem;
  }
}
.single__content-inner {
  margin-top: 3rem;
}
.single__content-inner > * + * {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .single__content-inner > * + * {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .single__content-inner {
    margin-top: 2rem;
  }
}
.single__content-inner h3 {
  font-size: max(2.2rem, 18px);
  font-weight: 600;
  line-height: 1.56;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--white);
}
@media screen and (max-width: 768px) {
  .single__content-inner h3 {
    font-size: max(2.2rem, 18px);
  }
}
@media screen and (max-width: 768px) {
  .single__content-inner br {
    display: none;
  }
}
.single__content-inner h4 {
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.56;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--white);
}
@media screen and (max-width: 768px) {
  .single__content-inner h4 {
    font-size: max(2rem, 16px);
  }
}
.single__content-inner h5 {
  font-size: max(1.8rem, 15px);
  font-weight: 600;
  line-height: 1.56;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--white);
}
@media screen and (max-width: 768px) {
  .single__content-inner h5 {
    font-size: max(1.8rem, 15px);
  }
}
.single__content-inner p,
.single__content-inner ul {
  font-size: max(1.8rem, 16px);
  line-height: 1.79;
  margin-top: 2rem;
}
.single__content-inner p + *,
.single__content-inner ul + * {
  margin-top: 1.79em;
  margin-top: 4.2rem;
}
@media screen and (max-width: 768px) {
  .single__content-inner p,
  .single__content-inner ul {
    font-size: max(1.4rem, 15px);
    margin-top: 1rem;
  }
}
.single__content-inner li {
  list-style: disc;
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .single__content-inner li {
    margin-left: 2rem;
  }
}
.single__content-inner hr {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  border: none;
  border-top: 1px solid var(--white);
  display: none;
}
@media screen and (max-width: 768px) {
  .single__content-inner hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.single .back-btn {
  margin-top: 10rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  width: fit-content;
  margin-inline: auto;
}
.single .back-btn a {
  font-size: 20px;
  line-height: 1.6666666667;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single .back-btn a:hover {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .single .back-btn {
    margin-top: 14rem;
  }
}

.access {
  position: relative;
  z-index: 1;
  padding-inline: 3rem;
  margin-top: 17rem;
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: 42rem;
    padding-inline: 14.2rem;
  }
}
.access__inner {
  max-width: 604px;
  margin-inline: auto;
}
.access__map {
  margin-top: 4.5rem;
  width: max(80rem, 600px);
  margin-inline: auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.access__map::after {
  content: "";
  display: block;
  padding-top: 63.6815920398%;
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .access__map {
    margin-top: 7rem;
    width: 79.6rem;
  }
  .access__map::after {
    padding-top: 80.4020100503%;
  }
}
.access__body {
  margin-top: 4.3rem;
}
@media screen and (max-width: 768px) {
  .access__body {
    margin-top: 5.5rem;
  }
}
.access__body address {
  font-style: normal;
}
.access__body h3,
.access__body a {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access__body h3,
  .access__body a {
    font-size: 6rem;
    line-height: 1.8666666667;
  }
}
.access__body p {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access__body p {
    font-size: 4.2rem;
    line-height: 1.5476190476;
  }
}
@media screen and (max-width: 768px) {
  .access__body a {
    font-size: 4.2rem;
    line-height: 1.5476190476;
  }
}/*# sourceMappingURL=style.css.map */