@charset "UTF-8";
/*======================================
    Font / Color
======================================*/
@font-face {
  font-family: "SFButtacupLettering";
  src: url("../font/SFButtacupLettering.ttf") format("truetype");
  font-weight: 400;
}
/*======================================
    common
======================================*/
html {
  font-size: 62.5%;
  font-family: "FOT-筑紫ゴシック Pr5 L", "TsukuGoPr5-L", "Tsukushi A Round Gothic", "筑紫A丸ゴシック", sans-serif;
  color: #000;
}

body {
  background-color: #fff;
}

.body.is-modal {
  overflow-y: hidden;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.is-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  br.is-sp {
    display: block;
  }
}

.inner {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/*======================================
    header
======================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}
.header.is-active {
  background-color: #fff;
  border-bottom: 1px solid #000;
}
.header.-page {
  background-color: #fff;
}
.header.-page .inner {
  height: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .header.-page .inner {
    height: 68px;
  }
  .header.-page .inner .h-links {
    display: none;
  }
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 95px;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header .inner {
    height: 68px;
  }
}

.fv__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 250;
  background-color: #fff !important;
  display: none;
}
.fv__header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 95px;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
@media screen and (max-width: 768px) {
  .fv__header .inner {
    height: 68px;
    display: grid;
    grid-template-columns: 148px auto;
  }
}
.fv__header .h-logo {
  width: 217px;
}
@media screen and (max-width: 768px) {
  .fv__header .h-logo {
    width: 148px;
  }
}
.fv__header.is-active {
  display: block;
}

.h-logo {
  width: 256px;
}
@media screen and (max-width: 768px) {
  .h-logo {
    width: 148px;
  }
}

.h-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: #000;
  -webkit-column-gap: 1.82em;
     -moz-column-gap: 1.82em;
          column-gap: 1.82em;
  font-family: "SFButtacupLettering", sans-serif;
}
@media screen and (max-width: 1024px) {
  .h-links {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .h-links {
    font-size: 1.4rem;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .h-links.is-hide {
    opacity: 0;
    visibility: hidden;
  }
}

.h-link a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.h-link a:hover {
  opacity: 0.7;
}

.d-icon {
  position: fixed;
  top: 25px;
  right: 15px;
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media screen and (max-width: 768px) {
  .d-icon.is-show, .d-icon.-page {
    visibility: visible;
    opacity: 1;
  }
}
.d-icon.is-active .d-bar.bar1 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.d-icon.is-active .d-bar.bar2 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.d-icon.is-active .d-bar.bar3 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.d-bars {
  position: relative;
  width: 24px;
  height: 16px;
}

.d-bar {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #000;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease;
  transition: top 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.d-bar.bar1 {
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.d-bar.bar2 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.d-bar.bar3 {
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.d-contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  background-color: red;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.d-contents.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.d-logo {
  margin-left: 15px;
  width: 143px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.d-links {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.25em;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 4rem;
  line-height: 2;
}

.d-link a {
  display: block;
  font-family: "SFButtacupLettering", sans-serif;
}

/*======================================
    top
======================================*/
.fv__logo {
  display: block;
  position: fixed;
  left: 0;
  z-index: 240;
  text-align: center;
  width: 66.78%;
  pointer-events: none;
}
.fv__logo.is-active {
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .fv__logo {
    width: 91.3%;
  }
}

.logo__container {
  position: relative;
}
.logo__container img#logo1 {
  opacity: 0;
  visibility: hidden;
}
.logo__container img#logo2, .logo__container img#logo3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fv {
  padding-top: 95px;
  position: relative;
}

.vh100 {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.top-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 2rem;
  border-bottom: 1px solid #000;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.4rem;
  }
}
.top-link.section1 .top-link__img--wrap, .top-link.section3 .top-link__img--wrap, .top-link.section5 .top-link__img--wrap {
  border-right: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .top-link.section1 .top-link__img--wrap, .top-link.section3 .top-link__img--wrap, .top-link.section5 .top-link__img--wrap {
    border-right: none;
  }
}
.top-link.section2, .top-link.section4 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .top-link.section2, .top-link.section4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-link.section2 .top-link__img--wrap, .top-link.section4 .top-link__img--wrap {
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .top-link.section2 .top-link__img--wrap, .top-link.section4 .top-link__img--wrap {
    border-left: none;
  }
}

.top-link__img--wrap {
  width: 53.87%;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .top-link__img--wrap {
    width: 100%;
    padding: 16px;
    border-top: none;
  }
}

.top-link__img {
  position: relative;
  overflow: hidden;
}
.top-link__img::before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}
@media screen and (max-width: 768px) {
  .top-link__img::before {
    padding-top: 66.6180758017%;
  }
}
.top-link__img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.top-link__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.top-link__contents {
  width: 46.13%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px;
  font-family: "SFButtacupLettering", sans-serif;
}
@media screen and (max-width: 768px) {
  .top-link__contents {
    width: 100%;
    border-top: none;
    padding: 16px 16px 32px;
  }
}
.top-link__contents p {
  font-size: 1.5em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-link__contents p {
    font-size: 1.36em;
  }
}

.top-logo {
  margin-left: auto;
  margin-right: auto;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  .top-logo {
    margin: 30px auto;
  }
}
.top-logo.-section1 {
  max-width: 289px;
  width: 37.3%;
}
@media screen and (max-width: 768px) {
  .top-logo.-section1 {
    max-width: 329px;
    width: 45.82%;
  }
}
.top-logo.-section2 {
  max-width: 427px;
  width: 55.17%;
}
@media screen and (max-width: 768px) {
  .top-logo.-section2 {
    max-width: 452px;
    width: 62.95%;
  }
}
.top-logo.-section3 {
  max-width: 332px;
  width: 42.89%;
}
@media screen and (max-width: 768px) {
  .top-logo.-section3 {
    max-width: 334px;
    width: 46.52%;
  }
}
.top-logo.-section4 {
  max-width: 630px;
  width: 81.4%;
}
@media screen and (max-width: 768px) {
  .top-logo.-section4 {
    max-width: 655px;
    width: 91.23%;
  }
}
.top-logo.-section4 span {
  display: block;
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.06em;
  margin-top: 1em;
}
.top-logo.-section4 span img {
  width: auto;
  height: 1em;
}
@media screen and (max-width: 768px) {
  .top-logo.-section4 span {
    font-size: 1.8rem;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8em;
  height: 2em;
  text-align: center;
  background-color: #000;
  color: #fff;
  letter-spacing: 0.1em;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn:hover {
  background-color: red;
  color: #000;
}

.instagram {
  padding: 100px 0;
  background-color: #000;
}

.instagram__ttl {
  text-align: center;
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "SFButtacupLettering", sans-serif;
  margin-bottom: 1.46em;
}
@media screen and (max-width: 768px) {
  .instagram__ttl {
    font-size: 2.4rem;
    margin-bottom: 2.5em;
  }
}

.contact-link {
  display: block;
  padding-top: 86px;
  padding-bottom: 65px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-link {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.contact-link:hover {
  background-color: red;
}

.wrapper {
  position: relative;
  height: 100px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .wrapper {
    height: 50px;
  }
}

.marquee-anim {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.marquee-anim {
  -webkit-animation: marquee 6.5s linear infinite;
          animation: marquee 6.5s linear infinite;
  position: absolute;
  top: 0;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  white-space: nowrap;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate(-40%, 0%);
            transform: translate(-40%, 0%);
  }
  100% {
    -webkit-transform: translate(-60%, 0%);
            transform: translate(-60%, 0%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate(-40%, 0%);
            transform: translate(-40%, 0%);
  }
  100% {
    -webkit-transform: translate(-60%, 0%);
            transform: translate(-60%, 0%);
  }
}
.marquee-inline {
  display: block;
  padding-right: 1.375em;
  font-size: 80px;
  font-family: "SFButtacupLettering", sans-serif;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  color: #3a0402;
}
.marquee-inline img {
  width: auto;
  height: 1em;
}
@media screen and (max-width: 768px) {
  .marquee-inline {
    font-size: 4rem;
  }
}
.marquee-inline a {
  display: inline-block;
  color: #000037;
}

.modal-open:hover {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 500;
  visibility: hidden;
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.modal.is-active {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.modal ::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

.modal-body {
  position: relative;
  height: 100%;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 90%;
  max-width: 1280px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .modal-close {
    top: 10px;
  }
}

.modal-close__bars {
  position: relative;
  width: 64px;
  height: 64px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .modal-close__bars {
    width: 32px;
    height: 32px;
  }
}

.modal-close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .modal-close-bar {
    width: 45px;
  }
}
.modal-close-bar:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close-bar:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-content {
  height: 100%;
  position: relative;
}
.modal-content .swiper-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal__ttl {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 96px;
  border-bottom: 1px solid #000;
  font-family: "SFButtacupLettering", sans-serif;
}
@media screen and (max-width: 768px) {
  .modal__ttl {
    font-size: 2.7rem;
    height: 52px;
  }
}

.modal-swiper {
  height: 100%;
  height: calc(100% - 96px);
}
@media screen and (max-width: 768px) {
  .modal-swiper {
    height: calc(100% - 52px);
  }
}

.modal-prev,
.modal-next {
  display: none;
}

.modal__column2 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .modal__column2 {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .modal__column2.is-active {
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
}

.modal__column {
  padding: 32px 32px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .modal__column {
    padding: 16px 16px 0;
    padding-right: 16px;
  }
  .modal__column::before, .modal__column::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  .modal__column::after {
    background-color: rgba(255, 0, 0, 0.5);
    mix-blend-mode: multiply;
  }
  .modal__column.swiper-slide-active::before, .modal__column.swiper-slide-active::after {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 768px) {
  .modal__column:nth-child(1) {
    margin-right: 0;
  }
}
.modal__column:nth-child(2) {
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .modal__column:nth-child(2) {
    margin-left: 0;
    padding-left: 16px;
  }
}
.modal__column p {
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .modal__column p {
    font-size: 1.2rem;
    line-height: 2.1666666667;
  }
}
.modal__column p.en {
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  line-height: 2.6666666667;
  font-family: "SFButtacupLettering", sans-serif;
}
@media screen and (max-width: 768px) {
  .modal__column p.en {
    font-size: 1.3rem;
    line-height: 2;
  }
}

.scroll {
  overflow: auto;
  height: 100%;
  padding-right: 32px;
}
@media screen and (max-width: 768px) {
  .scroll {
    padding-right: 16px;
  }
}

.simplebar-scrollbar:before {
  background-color: #b1b1b1;
  width: 6px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .simplebar-scrollbar:before {
    width: 4px;
  }
}

.modal__texts {
  height: 100%;
}
.modal__texts .simplebar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-bottom: 80px;
}
.modal__texts .simplebar-content *:nth-child(n+2) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .modal__texts .simplebar-content *:nth-child(n+2) {
    margin-top: 30px;
  }
}
.modal__texts .simplebar-content *:last-child {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .modal__texts .simplebar-content *:last-child {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .modal__texts {
    padding-bottom: 50px;
  }
}

.modal__imgs {
  padding-bottom: 32px;
}

.modal__img {
  position: relative;
  z-index: 1;
}
.modal__img img {
  height: auto;
}
.modal__img:nth-child(n+2) {
  margin-top: 32px;
}
.modal__img.-youtube::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.modal__img.-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal__contact--wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.modal__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.56em;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  color: #fff;
  background-color: #000;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .modal__contact {
    font-size: 1.2rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 2em;
  }
}
@media screen and (max-width: 768px) {
  .modal__contact {
    font-size: 1.1rem;
  }
}
.modal__contact:hover {
  background-color: red;
  color: #000;
}
.modal__contact:hover::before {
  right: 2.9em;
  background: url(../img/arrow_black.png) no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  .modal__contact:hover::before {
    right: 1.75em;
  }
}
.modal__contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.61em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.11em;
  height: 2em;
  background: url(../img/arrow.png) no-repeat center/contain;
  -webkit-transition: right 0.3s ease, background 0.3s ease;
  transition: right 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .modal__contact::before {
    right: 2em;
  }
}
.modal__contact span {
  font-size: 1.67em;
  letter-spacing: 0.05em;
  font-family: "SFButtacupLettering", sans-serif;
  margin-right: 0.83em;
}

.news-slide a {
  z-index: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-slide a:hover {
  opacity: 0.7;
}

.news-slide__img {
  position: relative;
}
.news-slide__img::before {
  content: "";
  display: block;
  padding-top: 41.9047619048%;
}
@media screen and (max-width: 768px) {
  .news-slide__img::before {
    padding-top: 100%;
  }
}
.news-slide__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-slide__texts {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2rem;
  color: #fff;
  row-gap: 32px;
  width: 70%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .news-slide__texts {
    width: 90%;
    font-size: 1.2rem;
  }
}
.news-slide__texts h3 {
  letter-spacing: 0.14em;
  line-height: 2.05;
}
.news-slide__texts p {
  letter-spacing: 0.16em;
  line-height: 2.1;
  font-family: "SFButtacupLettering", sans-serif;
}
.news-slide__texts div {
  margin-bottom: 32px;
}
.news-slide__texts h3,
.news-slide__texts p {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.4em;
  display: inline;
  background-color: rgba(0, 0, 0, 0.75);
}

.news-swiper-next:after,
.news-swiper-prev:after {
  width: 48px;
  height: 89px;
  font-size: 40px;
  content: "";
}

.news-swiper-prev:after {
  background: url(../img/arrow_left.png) no-repeat center/contain;
}

.news-swiper-next:after {
  background: url(../img/arrow_right.png) no-repeat center/contain;
}

.news-swiper-next,
.news-swiper-prev {
  width: 48px;
  height: 89px;
}
@media screen and (max-width: 768px) {
  .news-swiper-next,
  .news-swiper-prev {
    display: none;
  }
}

.news-swiper-prev {
  left: 3.2% !important;
}

.news-swiper-next {
  right: 3.2% !important;
}

.swiper-pagination {
  bottom: 15px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  margin: 0 7px !important;
}
@media screen and (max-width: 768px) {
  .swiper-pagination .swiper-pagination-bullet {
    margin: 0 9px !important;
  }
}

.page {
  border-bottom: 1px solid #000;
  margin-top: 120px;
  padding-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page {
    margin-top: 68px;
    padding-top: 35px;
    padding-bottom: 50px;
  }
}

.about__inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page__ttl {
  text-align: center;
  font-family: "SFButtacupLettering", sans-serif;
  font-size: 5.6rem;
  letter-spacing: 0.05em;
}
.page__ttl.-news {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  .page__ttl.-news {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .page__ttl {
    font-size: 2.4rem;
  }
}

.about__contents {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 75px;
  font-size: 1.6rem;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .about__contents {
    margin-top: 35px;
    row-gap: 30px;
    font-size: 1.2rem;
    line-height: 2.1666666667;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .img {
    margin: 0 calc(50% - 50vw);
    display: block;
  }
}
.about__contents .jp {
  letter-spacing: 0.14em;
}
@media screen and (max-width: 768px) {
  .about__contents .jp {
    letter-spacing: 0.12em;
  }
}
.about__contents .en {
  letter-spacing: 0.16em;
  font-family: "SFButtacupLettering", sans-serif;
}
@media screen and (max-width: 768px) {
  .about__contents .en {
    font-size: 1.083em;
  }
}

.p-wrap {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-wrap {
    margin-top: 69px;
  }
}

.news-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news-lists {
    margin-top: 35px;
  }
}

.news-list {
  width: 50%;
  padding-top: 40px;
}
.news-list:nth-child(odd) {
  padding-right: 20px;
}
.news-list:nth-child(even) {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .news-list {
    width: 100%;
    padding-top: 15px;
  }
  .news-list:nth-child(odd) {
    padding-right: 0;
  }
  .news-list:nth-child(even) {
    padding-left: 0;
  }
}

.news-list__link:hover .news-list__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news-list__link:hover .news-list__body {
  background-color: red;
  color: #000;
}

.news-list__img {
  overflow: hidden;
  position: relative;
}
.news-list__img img {
  display: block;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-list__body {
  color: #fff;
  background-color: #000;
  font-size: 1.6rem;
  line-height: 1.75;
  padding: 1em 2em;
}
@media screen and (max-width: 768px) {
  .news-list__body {
    font-size: 1.2rem;
    line-height: 2.1666666667;
  }
}
.news-list__body .date {
  letter-spacing: 0.14em;
}
.news-list__body .jp {
  margin-top: 1em;
  letter-spacing: 0.14em;
}
.news-list__body .en {
  margin-top: 1em;
  font-family: "SFButtacupLettering", sans-serif;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 768px) {
  .news-list__body .en {
    font-size: 1.083em;
  }
}

.archive-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  font-family: "SFButtacupLettering", sans-serif;
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  margin-top: 4em;
}
.archive-pagination span, .archive-pagination a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2em;
  height: 2em;
  border: 1px solid #000;
  text-align: center;
}
.archive-pagination span.current {
  color: red;
  border-color: red;
}

.article {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .article {
    font-size: 1.2rem;
  }
}

.article-head {
  margin-top: 64px;
  background-color: #000;
  color: #fff;
  padding: 0.3em 0.86em 1em;
}
@media screen and (max-width: 768px) {
  .article-head {
    margin-top: 30px;
  }
}
.article-head h1 {
  font-size: 1.29em;
  line-height: 1.6666666667;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .article-head h1 {
    font-size: 1.08em;
  }
}
.article-head p {
  letter-spacing: 0.14em;
  margin-top: 0.35em;
}
@media screen and (max-width: 768px) {
  .article-head p {
    font-size: 0.92em;
  }
}

.article-img {
  margin-top: 60px;
}
.article-img img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .article-img {
    margin-top: 34px;
  }
}

.article-contents {
  margin-top: 52px;
  line-height: 2.1428571429;
  letter-spacing: 0.14em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .article-contents {
    line-height: 2.1666666667;
    margin-top: 26px;
    row-gap: 26px;
  }
}
.article-contents .en {
  font-family: "SFButtacupLettering", sans-serif;
}
.article-contents a {
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-image: -webkit-gradient(linear, left top, right top, from(red), to(red));
  background-image: linear-gradient(90deg, red, red);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1.1em;
  text-decoration: underline;
  -webkit-transition: background-image 0.3s ease, color 0.3s ease;
  transition: background-image 0.3s ease, color 0.3s ease;
  font-weight: 500;
}
.article-contents a:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
  background-image: linear-gradient(90deg, #000, #000);
  color: red;
}

.article-btn {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .article-btn {
    margin-top: 40px;
  }
}
.article-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "SFButtacupLettering", sans-serif;
  color: #fff;
  background-color: #000;
  font-size: 1.43em;
  letter-spacing: 0.05em;
  text-align: center;
  width: 8em;
  height: 2em;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .article-btn a {
    font-size: 1.125em;
  }
}
.article-btn a:hover {
  background-color: red;
  color: #000;
}

.loading {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: red;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loading-logo {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .loading-logo {
    width: 95%;
  }
}
