@charset "UTF-8";
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  font-family: "Quicksand", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: #161E45;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 1rem;
  color: #FFF;
}

ul {
  list-style-type: none;
  list-style-position: inside;
}

h1, h2, h3, p, ul, li, dl, dt, dd, a {
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

@media (min-width: 1025px) {
  .pc {
    display: block !important;
  }
}
@media (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .tab-only {
    display: block !important;
  }
}
@media (max-width: 599px) {
  .tab-only {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .tab {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .tab {
    display: block !important;
  }
}
@media (max-width: 599px) {
  .tab {
    display: block !important;
  }
}

@media (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .sp {
    display: block !important;
  }
}

#fade-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  opacity: 1;
  pointer-events: none;
  transition: opacity 1.5s ease;
}
#fade-overlay.fade-out {
  opacity: 0;
}

.wrap {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.fadeIn {
  opacity: 0;
  transition: opacity 1s, transform 1s;
}
.fadeIn.in-view {
  opacity: 1;
}
.fadeIn.fadeUp {
  transform: translateY(20px);
}
.fadeIn.fadeUp.in-view {
  transform: translateY(0);
}
.fadeIn.fadeDown {
  transform: translateY(-20px);
}
.fadeIn.fadeDown.in-view {
  transform: translateY(0);
}
.fadeIn.fadeLeft {
  transform: translateX(-20px);
}
.fadeIn.fadeLeft.in-view {
  transform: translateX(0);
}
.fadeIn.fadeRight {
  transform: translateX(20px);
}
.fadeIn.fadeRight.in-view {
  transform: translateX(0);
}

.wrap__inner .mainVisual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 16/9;
  background: url("../images/page-bg-01.png") no-repeat top center/cover;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual {
    display: block;
    aspect-ratio: auto;
    background: none;
  }
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .panel {
    position: relative;
    aspect-ratio: 375/214;
    background: url("../images/page-bg-01-sp.png") no-repeat top center/cover;
  }
}
.wrap__inner .mainVisual .panel .logo {
  position: absolute;
  top: 50px;
  left: 50px;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .panel .logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.wrap__inner .mainVisual .headingBlock p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 10.8rem;
  color: #fff;
  margin: 0 0 145px;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock p {
    font-size: 6.4rem;
    line-height: 1.4;
    margin: 40px 0 130px;
  }
}
.wrap__inner .mainVisual .headingBlock p span:first-of-type {
  margin-right: -11px;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock p span:first-of-type {
    margin-right: 0;
  }
}
.wrap__inner .mainVisual .headingBlock p span:nth-of-type(2) {
  margin-right: -19px;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock p span:nth-of-type(2) {
    margin-right: 0;
  }
}
.wrap__inner .mainVisual .headingBlock p span:nth-of-type(3) {
  margin-right: -19px;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock p span:nth-of-type(3) {
    margin-right: 0;
  }
}
.wrap__inner .mainVisual .headingBlock p span:nth-of-type(4) {
  margin-right: -60px;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock p span:nth-of-type(4) {
    margin-right: 0;
    letter-spacing: -1em;
  }
}
.wrap__inner .mainVisual .headingBlock p span:nth-of-type(5) {
  margin-right: -8px;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock p span:nth-of-type(5) {
    margin-right: 0;
  }
}
.wrap__inner .mainVisual .headingBlock h1 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.15em;
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock h1 {
    font-size: 2rem;
    line-height: 1.615;
    margin: 0 0 115px;
  }
}
@media (max-width: 599px) {
  .wrap__inner .mainVisual .headingBlock h1 span {
    display: inline-block;
    margin-bottom: 15px;
  }
}
.wrap__inner section .section__inner {
  text-align: center;
  padding: 0 15px;
  margin: 0 0 120px;
}
@media (max-width: 599px) {
  .wrap__inner section .section__inner {
    text-align: left;
  }
}
.wrap__inner section .section__inner p {
  font-size: 1.6rem;
  line-height: 1.875em;
}

#action {
  padding: 0 0 100px;
  color: #FFF;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 599px) {
  #action {
    padding: 40px 20px 50px;
  }
}
#action .logo {
  margin: 0 0 30px;
}
#action .logo img {
  width: 100%;
  max-width: 250px;
}
#action .title {
  width: 620px;
  margin: 0 auto 35px;
  padding: 20px 0;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 500;
  border-top: solid 1px #FFF;
  border-bottom: solid 1px #FFF;
}
@media (max-width: 599px) {
  #action .title {
    width: 100%;
    font-size: 2.2rem;
  }
}
#action .title span {
  display: block;
  font-size: 2rem;
}
@media (max-width: 599px) {
  #action .title span {
    font-size: 1.8rem;
  }
}
#action .column {
  width: 100%;
  display: flex;
  gap: 90px 180px;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0;
}
@media (max-width: 599px) {
  #action .column {
    flex-direction: column;
  }
}
#action .column .col {
  width: 100%;
  font-size: 1.6rem;
}
@media (min-width: 1025px) {
  #action .column .col {
    max-width: 420px;
  }
}
#action .column .col .date {
  margin: 20px 0 0;
}
#action .column .col .action_btn {
  width: 100%;
  max-width: 400px;
  margin: 35px auto 0;
}
#action .column .col .action_btn a {
  display: block;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(128, 128, 128) 100%);
  color: #000;
  line-height: 60px;
  letter-spacing: 0.1em;
  font-size: 2rem;
  transition: all 0.5s;
}
#action p {
  font-size: 1.6rem;
  line-height: 1.75;
}
#action p.place {
  margin: 0 0 25px;
}

#information {
  color: #FFF;
  text-align: center;
}
@media (max-width: 599px) {
  #information {
    padding: 20px 0 45px;
  }
}
#information .poc {
  font-size: 1.6rem;
  margin: 0 0 15px;
}
#information .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px;
  font-size: 1.6rem;
}
#information .tel a {
  font-size: 1.6rem;
  color: #FFF;
  pointer-events: none;
}
@media (max-width: 599px) {
  #information .tel a {
    pointer-events: painted;
  }
}
#information .business_detail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1em;
  font-size: 1.2rem;
}

footer {
  padding: 80px 0 20px;
}
@media (max-width: 599px) {
  footer {
    padding: 0;
  }
}
footer .logoBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 90px;
  margin: 0 0 40px;
}
@media (max-width: 1024px) {
  footer .logoBlock {
    gap: 0 45px;
  }
}
@media (max-width: 599px) {
  footer .logoBlock {
    flex-direction: column;
    gap: 30px 0;
    margin: 0 0 45px;
  }
}
footer .logoBlock div dl dt {
  text-align: center;
  margin: 0 0 10px;
  font-size: 1.2rem;
}
footer .logoBlock div:nth-child(1) img {
  width: 200px;
}
footer .logoBlock div:nth-child(2) img {
  width: 240px;
}
footer .copyright {
  text-align: center;
}

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