@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
body {
  background: url(../img/bg-header.jpg) no-repeat center top;
  background-size: 100% auto;
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
/* link */
a {
  color: #fff;
}

/* -------------------------------------------

header

------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 6rem;
}

@media screen and (max-width: 768px) {
  header {
    padding: 0;
  }
}
header h1 {
  width: 14rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  header h1 {
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
  }
  header h1 img {
    width: auto;
    height: 4.8rem;
  }
}
/* -------------------------------------------

nav

------------------------------------------- */
.gnav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4.5rem;
}

.gnav-menu > li {
  font-weight: 500;
  white-space: nowrap;
}

.gnav-menu > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.gnav-menu > li > a span {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: normal;
}

.gnav-menu > li > a::after {
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: ease-in-out 0.3s;
}

.gnav-menu > li > a:hover::after {
  transform: scale(1, 1);
}

.gnav-menu > li > a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

@media screen and (max-width: 768px) {
  .gnav-menu {
    gap: 0;
  }
  .gnav-menu > li {
    text-align: center;
    width: 50%;
  }
  .gnav-menu > li a {
    padding: 0.6rem 0;
  }
  .gnav-menu > li > a::after {
    display: none;
  }
}
/* -------------------------------------------

footer

------------------------------------------- */
footer {
  padding: 4rem 0 2rem 0;
  background: url(../img/bg-footer.jpg) no-repeat center/cover;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer a {
  color: #000;
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .logo {
  width: 20rem;
  margin: 6rem 0;
}

footer small {
  display: block;
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 4rem 0 8rem 0;
  }
  footer .logo {
    width: 20rem;
  }
}
/* -------------------------------------------

class

------------------------------------------- */
/* heading */
.heading-1 {
  line-height: 1;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
}
.heading-1 img {
  width: auto;
  height: 12rem;
}

.heading-2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.heading-2 span {
  font-size: 3.2rem;
}

/* more */
.more {
  background: url(../img/arrow.png) no-repeat center right 2.2rem, url(../img/bg-more.png) no-repeat center;
  background-size: 0.7rem auto, cover;
  color: #3a310f;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 22rem;
  height: 4.8rem;
  margin: 0 auto;
}

/* detail */
dl.detail {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 0.12rem #fff;
  border-bottom: solid 0.12rem #fff;
}

dl.detail dt {
  padding: 1.5rem 0;
  width: 25%;
  white-space: nowrap;
  text-align: center;
  border-bottom: solid 0.12rem #fff;
  background: #4d4d4d;
}

dl.detail dd {
  padding: 1.5rem 2rem;
  width: 75%;
  border-bottom: solid 0.12rem #fff;
}

@media screen and (max-width: 768px) {
  dl.detail {
    display: block;
  }
  dl.detail dt {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1.5rem 2rem;
    width: 100%;
  }
  dl.detail dd {
    padding: 1.5rem 2rem;
    width: 100%;
  }
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
  border-bottom: none;
}

dl.bk dt,
dl.bk dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

dl.wh dt,
dl.wh dd {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  dl.bk dt {
    border-bottom: none;
  }
  dl.wh dt {
    border-bottom: none;
  }
}
/* ttl */
.ttl,
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  position: relative;
}

.ttl:after,
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::after {
  content: "";
  background: #ba8f39;
  display: block;
  height: 3px;
  bottom: -3px;
  position: absolute;
  width: 25%;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .ttl:after,
  .CMS-NEWS-TITLE:after,
  .CMS-ARTICLE-TITLE::after {
    width: 40%;
  }
}
/* base-width */
.base-width {
  width: 88rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .base-width {
    width: auto;
  }
}
/* page-top */
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
  width: 5rem;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 7rem;
  }
}
/* txt-vertical */
.txt-vertical {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .txt-vertical.not {
    writing-mode: horizontal-tb;
    white-space: normal;
  }
}
/* list */
ul.list-group li {
  margin-left: 2rem;
  list-style: disc;
}
ul.list-group li:not(:last-child) {
  margin-bottom: 0.3rem;
}

/* preapre */
.prepare {
  color: #ba8f39;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 8rem 0;
}

/* map */
.gmap iframe {
  width: 100%;
  height: 36rem;
}

.gmap.grey iframe {
  filter: grayscale(100%);
}

/* display */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* margin */
.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
  background: #000;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: -1;
  -webkit-overflow-scrolling: touch;
}

.gnav-sp nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.gnav-sp-menu li {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

.gnav-sp-menu li span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1.2rem 0;
  white-space: nowrap;
}

/* toggle */
.toggle-btn {
  background: #000;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  z-index: 100000;
}

.toggle-btn span {
  background: #fff;
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

/* -------------------------------------------

fade

------------------------------------------- */
.fade {
  opacity: 0;
  transform: translateY(2rem);
}

.fade.is-animation {
  animation: fade 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 999;
  width: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 9999;
}
.fixed-btn a {
  background: url(../img/bg-fixed.png) no-repeat center/cover;
  display: flex;
  align-items: center;
  width: 5rem;
  color: #2d1e0f;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  padding: 1rem 0;
}
.fixed-btn a img {
  width: 2.5rem;
  margin-bottom: 0.4rem;
}

@media screen and (max-width: 768px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    flex-direction: row;
    gap: 0;
  }
  .fixed-btn li {
    width: 100%;
  }
  .fixed-btn a {
    width: 100%;
    padding: 0;
    height: 6rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }
  .fixed-btn li img {
    width: 2.4rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
  }
}/*# sourceMappingURL=common.css.map */