@charset "UTF-8";
/*------------------------------------------
  Responsive Grid Media Queries
--------------------------------------------*/
/*===========================
  Mixin
===========================*/
/*===========================
  Common CSS 
=========================== */
*,
*:before,
*:after {
  box-sizing: inherit;
}

*::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}

*::selection {
  background-color: #000000;
  color: #ffffff;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
  font-size: 0.5208333333vw;
  scroll-behavior: auto;
  width: 100%;
}
@media (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media (max-width: 1600px) {
  html {
    font-size: 0.546875vw;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 0.5989583333vw;
  }
}
@media (max-width: 1080px) {
  html {
    font-size: 0.7291666667vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.0416666667vw;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 2.34375vw;
  }
}

:root {
  --font-jp: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --base-font-size: 1.4em;
}

body {
  -webkit-font-smoothing: antialiased;
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-jp);
  font-size: var(--base-font-size);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: break-word;
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.03em;
}

.jp {
  font-family: var(--font-jp);
}

main {
  overflow: hidden;
}

.pc_only {
  display: block !important;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .sp_only {
    display: block !important;
  }
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

section {
  margin: 0;
}

.section__ttl {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  transform: scale(0.7, 1);
}

.br__sp {
  display: none;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .br__sp {
    display: block;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .sp__br br {
    display: none;
  }
}

/* 全て共通：hideエリアをはじめは非表示 */
.hide-area {
  display: none;
}

/* モーダルボタンの色変更 */
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/* 確認を促すモーダルタイトル */
#modaal-title {
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  text-align: center;
}

.alphabetical {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.prefix {
  transform: translateY(-50%);
}

.grid {
  -ms-grid-rows: 100px 50px;
  -ms-grid-columns: 150px 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: 100px 50px;
}

.grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.grid > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.grid > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

/*　フォードイン　*/
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/*//////////// 

トップイメージ

////////////*/
#mainImg .mainImg {
  align-items: center;
  background-image: url(../img/main-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #mainImg .mainImg {
    background-size: inherit;
    min-height: 60vh;
    padding: 3rem;
  }
}
#mainImg .mainImg::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}
#mainImg .mainImg h1 {
  position: relative;
  z-index: 1;
}
#mainImg .mainImg h1 img.pc-only {
  display: block;
  margin: 0 auto;
  max-width: 80%;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #mainImg .mainImg h1 img.pc-only {
    display: none;
  }
}
#mainImg .mainImg h1 img.sp-only {
  display: none;
  padding: 0 3rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #mainImg .mainImg h1 img.sp-only {
    display: block;
    padding: 0;
  }
}
#mainImg .couponText__wrap {
  background-color: #09291a;
  border: 12px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(0, 0, 0, 0.5);
  margin: 10rem auto;
  max-width: 980px;
  padding: 3rem;
  position: relative;
  position: relative;
  text-align: center;
  z-index: 1;
}
#mainImg .couponText__wrap::before, #mainImg .couponText__wrap::after {
  background: radial-gradient(circle at center, #ddd 0%, #aaa 100%);
  border: 2px solid #666;
  border-radius: 50%;
  content: "";
  height: 40px;
  position: absolute;
  width: 40px;
  z-index: 2;
}
#mainImg .couponText__wrap::before {
  left: -20px;
  top: -20px;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #mainImg .couponText__wrap::before {
    display: none;
  }
}
#mainImg .couponText__wrap::after {
  right: -20px;
  top: -20px;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #mainImg .couponText__wrap::after {
    display: none;
  }
}
#mainImg .couponText__wrap::marker {
  display: none;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #mainImg .couponText__wrap {
    margin: 0 3rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #mainImg .couponText__wrap {
    background-color: rgba(1, 47, 2, 0.8);
    border: 5px solid #ffffff;
    left: 50%;
    margin: 0;
    max-width: 480px;
    padding: 1.5rem;
    position: absolute;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 2;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  #mainImg .couponText__wrap {
    margin-top: 8rem;
  }
}
@media only screen and (max-width: 480px) {
  #mainImg .couponText__wrap {
    top: 80%;
  }
}
#mainImg .couponText__wrap h2 {
  display: inline-block;
  font-size: 6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  #mainImg .couponText__wrap h2 {
    font-size: 2rem;
  }
}
#mainImg .couponText__wrap h2::before {
  background-color: #ffffff;
  border-radius: 2px;
  bottom: -5px;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 80px;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  #mainImg .couponText__wrap h2::before {
    height: 6px;
  }
}
#mainImg .couponText__wrap h2::after {
  background-color: red;
  border-radius: 50%;
  bottom: -6px;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translate(-2400%, -50%);
  width: 5px;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  #mainImg .couponText__wrap h2::after {
    bottom: -7px;
  }
}
#mainImg .couponText__wrap h2::after {
  left: calc(50% + 120px);
}
#mainImg .couponText__wrap h2::before {
  right: calc(50% + 120px);
}
#mainImg .couponText__wrap p {
  font-size: 3rem;
  font-weight: bold;
  padding-top: 3rem;
}
@media only screen and (max-width: 480px), only screen and (min-width: 481px) and (max-width: 768px) {
  #mainImg .couponText__wrap p {
    font-size: 1.6rem;
    padding-top: 1rem;
  }
}

/*//////////// 

ABOUT

////////////*/
.about {
  margin-top: 10rem;
  padding: 10rem 0;
  position: relative;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .about {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about {
    margin-top: 0;
    padding: 15rem 1rem 0rem;
  }
}
.about .about__wrap {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .about .about__wrap {
    padding: 10rem 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap {
    flex-direction: column-reverse;
    padding: 5rem 1rem 0;
  }
}
.about .about__wrap .about__image {
  flex: 0 0 60%;
  margin-right: 2rem;
  padding-top: 30%;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap .about__image {
    padding-top: 100%;
  }
}
.about .about__wrap .about__image img {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.about .about__wrap .about__inner__txt {
  margin: 1rem auto;
  max-width: 500px;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap .about__inner__txt {
    margin: 10rem auto 3rem;
  }
}
.about .about__wrap .about__inner__txt .about__ttl {
  flex: 0 0 30%;
  font-size: 6rem;
  line-height: 0.4;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .about .about__wrap .about__inner__txt .about__ttl {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap .about__inner__txt .about__ttl {
    text-align: center;
    width: 100%;
  }
}
.about .about__wrap .about__inner__txt .about__ttl .about__subttl {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap .about__inner__txt .about__ttl .about__subttl {
    font-size: 1.3rem;
  }
}
.about .about__wrap .about__inner__txt .octagon__subttl {
  font-size: 2rem;
  padding-top: 3rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap .about__inner__txt .octagon__subttl {
    text-align: center;
  }
}
.about .about__wrap .about__inner__txt .about__txt {
  padding-right: 3rem;
  padding-top: 0;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .about .about__wrap .about__inner__txt .about__txt {
    padding-right: 0;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap .about__inner__txt .about__txt {
    text-align: center;
  }
}
.about .about__wrap .about__inner__txt .button__about {
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 40px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  overflow: hidden;
  padding: 0.9rem 2rem;
  position: relative;
  transition: color 0.3s ease, border 0.3s ease;
  width: 250px;
  z-index: 1;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .about .about__wrap .about__inner__txt .button__about {
    margin: 3rem auto 0;
  }
}
.about .about__wrap .about__inner__txt .button__about a {
  color: inherit;
  position: relative;
  text-decoration: none;
  z-index: 2;
}
.about .about__wrap .about__inner__txt .button__about::before {
  background: linear-gradient(120deg, transparent 0%, #012F02 50%, transparent 100%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-20deg);
  transition: all 0.5s ease;
  width: 200%;
  z-index: 1;
}
.about .about__wrap .about__inner__txt .button__about:hover {
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.about .about__wrap .about__inner__txt .button__about:hover::before {
  left: 0;
}

/*//////////// 

アクセス

////////////*/
.access {
  margin-top: 10rem;
  padding: 10rem 0;
  position: relative;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .access {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access {
    margin-top: 0;
    padding: 5rem 0;
  }
}
.access .access__wrap {
  align-items: flex-start;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__wrap {
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
}
.access .access__wrap .access__inner__txt {
  flex: 0 0 30%;
  margin: 10rem auto;
  max-width: 50%;
  padding-left: 3rem;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__wrap .access__inner__txt {
    margin: 10rem auto 0;
    max-width: 100%;
    text-align: center;
    width: 100%;
  }
}
.access .access__wrap .access__inner__txt .access__ttl {
  flex: 0 0 30%;
  font-size: 6rem;
  line-height: 0.4;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .access .access__wrap .access__inner__txt .access__ttl {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__wrap .access__inner__txt .access__ttl {
    text-align: center;
    width: 100%;
  }
}
.access .access__wrap .access__inner__txt .access__ttl .access__subttl {
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__wrap .access__inner__txt .access__ttl .access__subttl {
    font-size: 1.3rem;
  }
}
.access .access__wrap .access__inner__txt .access__txt {
  padding-top: 2rem;
}
.access .access__wrap .access__inner__txt .button__about {
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 40px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  overflow: hidden;
  padding: 0.9rem 2rem;
  position: relative;
  transition: color 0.3s ease, border 0.3s ease;
  width: 250px;
  z-index: 1;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__wrap .access__inner__txt .button__about {
    margin: 3rem auto;
  }
}
.access .access__wrap .access__inner__txt .button__about a {
  color: inherit;
  position: relative;
  text-decoration: none;
  z-index: 2;
}
.access .access__wrap .access__inner__txt .button__about::before {
  background: linear-gradient(120deg, transparent 0%, #012F02 50%, transparent 100%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-20deg);
  transition: all 0.5s ease;
  width: 200%;
  z-index: 1;
}
.access .access__wrap .access__inner__txt .button__about:hover {
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.access .access__wrap .access__inner__txt .button__about:hover::before {
  left: 0;
}
.access .access__wrap .access__map {
  filter: grayscale(1);
  flex: 0 0 70%;
  margin: 0;
  max-width: 70%;
  padding-top: 40%;
  position: relative;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .access .access__wrap .access__map {
    max-width: 100%;
    padding-top: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .access .access__wrap .access__map {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    padding-top: 50%;
    width: 100%;
  }
}
.access .access__wrap .access__map img, .access .access__wrap .access__map iframe {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/*//////////// 

クーポンボタン

////////////*/
.button__coupon {
  align-items: center;
  background-color: #830F0F;
  border: 2px solid #ffffff;
  border-radius: 5px;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  justify-content: center;
  margin: 10rem auto 0;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease;
  width: 600px;
}
.button__coupon:hover {
  background-color: #510a0a;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .button__coupon {
    font-size: 1.6rem;
    margin: 5rem auto 0;
    width: 90%;
  }
}
.button__coupon a {
  align-items: center;
  box-sizing: border-box;
  color: #ffffff;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  padding: 2rem 3rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.button__coupon a::after {
  content: ">";
  display: inline-block;
  font-size: 1.5rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.button__coupon a:hover::after {
  transform: translateX(5px);
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  .button__coupon a {
    padding: 1.5rem 2rem;
  }
  .button__coupon a::after {
    font-size: 1.2rem;
  }
}

/*//////////// 

フッター

////////////*/
#footer {
  background-color: #393939;
  margin: 40rem auto 0;
  padding: 10rem 2rem;
  position: relative;
}
@media only screen and (min-width: 481px) and (max-width: 768px), only screen and (max-width: 480px) {
  #footer {
    margin: 20rem auto 0;
  }
}
#footer .footer__img {
  filter: brightness(0.5);
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
}
/*# sourceMappingURL=sourcemaps/style.css.map */