@charset "UTF-8";
/*! ----------------------------------------------
   メディアクエリ
--------------------------------------------------- */
/*! ----------------------------------------------
   inner
--------------------------------------------------- */
/*! ----------------------------------------------
   共通
--------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #F0F1F1;
  font-family: "Juana-Thin", "vdl-v7mincho", serif;
  font-weight: lighter;
  font-style: normal;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

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

.txt {
  font-family: "vdl-v7mincho";
  font-weight: 200;
  font-style: normal;
  text-align: justify;
  letter-spacing: 0.1em;
}

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

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

.mainblur {
  filter: blur(8px);
}

/*! ----------------------------------------------
   ページレイアウト
--------------------------------------------------- */
.grid {
  max-width: 100%;
  width: 100dvw;
  height: 100dvh;
  position: relative;
}
.wrapper {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 198px;
  grid-template-rows: 198px auto 198px;
}
@media (max-width: 1024px) {
  .wrapper {
    grid-template-columns: auto auto 198px;
    grid-template-rows: 198px auto 198px;
  }
}
@media (max-width: 599px) {
  .wrapper {
    grid-template-columns: auto auto 70px;
    grid-template-rows: 86px auto 66px;
  }
}
.wrapper #header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  grid-column: 1/4;
  grid-row: 1/2;
  z-index: 150;
}
.wrapper #header .header_logo {
  max-width: 278px;
  height: auto;
  margin: 48px 0 0 4vw;
  z-index: 100;
}
@media (max-width: 599px) {
  .wrapper #header .header_logo {
    margin: 24px 0 0 4vw;
    max-width: 128px;
  }
}
.wrapper #header .nav {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh; /*ナビの高さ*/
  background: rgba(255, 255, 255, 0.7); /*背景を少し透過させる*/
  /*動き*/
  transition: 0.7s all;
}
.wrapper #header .nav.panelactive {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.wrapper #header .nav_list {
  visibility: hidden;
  opacity: 0;
  color: #000000;
  text-align: center;
  font-size: clamp(18px, 1.5vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  padding: 160px 0 0;
  transition: 1s all;
}
.wrapper #header .nav_list ul {
  width: 100%;
}
.wrapper #header .nav_list ul > * + * {
  margin-top: 20px;
}
.wrapper #header .nav_list a {
  display: block;
  width: 100%;
  height: 100%;
}
.wrapper #header .nav_list a:hover {
  opacity: 0.5;
  transform: 2s;
}
.wrapper #header .nav_list.panelactive {
  visibility: visible;
  opacity: 1;
}
.wrapper #header .nav_btn {
  position: relative;
  top: 48px;
  right: 4vw;
  z-index: 200;
  width: 82px;
  height: 82px;
  margin: 0 0 0 auto;
}
@media (max-width: 599px) {
  .wrapper #header .nav_btn {
    top: 24px;
    width: 46px;
    height: 46px;
  }
}
.wrapper #header .nav_btn span {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
}
.wrapper #header .nav_btn span:first-child {
  top: 0;
  left: 0;
  border: solid 1px #F0F1F1;
  width: 72px;
  height: 72px;
}
@media (max-width: 599px) {
  .wrapper #header .nav_btn span:first-child {
    width: 40px;
    height: 40px;
  }
}
.wrapper #header .nav_btn span:last-child {
  bottom: 0;
  right: 0;
  background-color: rgba(240, 241, 241, 0.5);
  width: 58px;
  height: 58px;
  transition: 0.5s;
}
@media (max-width: 599px) {
  .wrapper #header .nav_btn span:last-child {
    width: 34px;
    height: 34px;
  }
}
.wrapper #header .nav_btn.active {
  z-index: 999;
}
.wrapper #header .nav_btn:hover span:last-child {
  background-color: #F0F1F1;
  transform: translate(-12px, -12px);
  transition: 0.5s;
}
@media (max-width: 599px) {
  .wrapper #header .nav_btn:hover span:last-child {
    transform: translate(-7px, -7px);
  }
}
.wrapper #Footer {
  grid-column: 1/4;
  grid-row: 3/4;
  position: relative;
}
.wrapper #Footer .copy {
  font-size: 10px;
  position: absolute;
  right: 4vw;
  bottom: 2px;
}
.wrapper #Footer .page_top a {
  position: fixed;
  display: block;
  width: 10px;
  height: 100px;
  right: 4vw;
  bottom: 60px;
}
.wrapper #Footer .page_top a:hover {
  opacity: 1;
  transform: translateY(-12px);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.wrapper #Footer .page_top a > span {
  position: absolute;
  right: 10px;
  bottom: 0;
  display: block;
  width: 1px;
  height: 100px;
  background-color: #F0F1F1;
  border-radius: 10px;
}
.wrapper #Footer .page_top a::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  position: relative;
  right: 8px;
  top: -2.5px;
  transform: rotate(45deg);
  background-color: #F0F1F1;
  border-radius: 10px;
}
.wrapper #Footer .page_top a > p {
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 2px;
  left: 0;
}

/*! ----------------------------------------------
   page_nav
--------------------------------------------------- */
.page_nav {
  position: fixed;
  top: 200px;
  right: 4vw;
  text-align: right;
  font-size: clamp(18px, 1vw, 26px);
  z-index: 200;
}
@media (max-width: 599px) {
  .page_nav {
    top: 140px;
  }
}
.page_nav > * + * {
  margin-top: 32px;
}
@media (max-width: 599px) {
  .page_nav > * + * {
    margin-top: 14px;
  }
}
.page_nav li > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 5px;
}
.page_nav li > a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  right: -10px;
  /*線の形状*/
  width: 130%;
  height: 0.5px;
  background: #F0F1F1;
  /*アニメーションの指定*/
  transition: all 0.7s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: right top; /*左上基点*/
}
.page_nav li > a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

/*! ----------------------------------------------
   fadeIn
--------------------------------------------------- */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@font-face {
  font-family: "Juana-Thin";
  font-style: normal;
  font-weight: 200;
  src: url("../font/Juana-Thin.woff") format("woff"), url("../font/Juana-Thin.eot") format("eot"), url("../font/Juana-Thin.svg") format("svg");
}
/*! ----------------------------------------------
   Top
--------------------------------------------------- */
#Top #Top_main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  grid-column: 1/4;
  grid-row: 2/3;
}
#Top #Top_main .main_contents {
  position: relative;
}
#Top #Top_main .main_contents .main_bg {
  width: 100%;
  height: 100%;
}
#Top #Top_main .main_contents .main_bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#Top #Top_main .main_contents .main_bg .bg_img > img {
  width: 100%;
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}
@media (max-width: 599px) {
  #Top #Top_main .main_contents .main_bg .bg_img > img {
    -o-object-position: 60% 0%;
       object-position: 60% 0%;
  }
}
#Top #Top_main .main .catch {
  position: absolute;
  bottom: 12.5%;
  left: 6.46vw;
  z-index: 100;
  font-size: clamp(1rem, 1.5vw, 2.5rem);
}

/*! ----------------------------------------------
   Top以外の背景
--------------------------------------------------- */
#Contents {
  background-image: url(../images/main_bg.png);
  background-repeat: repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
#Contents::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#Contents .wrapper {
  max-width: 1980px;
}

#Gallery, #Order, #Information {
  position: relative;
  z-index: 100;
  max-width: 1980px;
  height: 100%;
  grid-column: 1/4;
  grid-row: 2/3;
  margin: 0 4vw;
  padding: 2.5em 0;
}
#Gallery .ttl_h2, #Order .ttl_h2, #Information .ttl_h2 {
  font-size: clamp(36px, 1vw, 72px);
  margin-left: 10px;
  margin-bottom: 1em;
}
#Gallery .ttl_h2::before, #Order .ttl_h2::before, #Information .ttl_h2::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  position: relative;
  left: -28px;
  top: 46px;
  border: solid 1px #F0F1F1;
  margin-left: 10px;
}
#Gallery .ttl_h2::after, #Order .ttl_h2::after, #Information .ttl_h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: relative;
  left: 6px;
  top: -32px;
  background-color: #F0F1F1;
  opacity: 0.3;
  z-index: 10;
}
#Gallery section, #Order section, #Information section {
  scroll-margin-top: 220px;
  margin-bottom: 134px;
}
#Gallery section .inner, #Order section .inner, #Information section .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
#Gallery section .inner .ttl_h3, #Order section .inner .ttl_h3, #Information section .inner .ttl_h3 {
  font-size: clamp(24px, 1vw, 52px);
  margin-bottom: 0.86em;
  position: relative;
}
#Gallery section .inner .ttl_h3::after, #Order section .inner .ttl_h3::after, #Information section .inner .ttl_h3::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -1px;
  display: block;
  /* border: dashed 1px #fff; */
  width: 30px;
  /* transform: rotate3d(1, 1, 1, -20deg); */
  height: 30px;
  border-radius: 50%;
  background-color: rgba(240, 241, 241, 0.2);
}
#Gallery section .inner .ttl_h4, #Order section .inner .ttl_h4, #Information section .inner .ttl_h4 {
  font-size: 20px;
  margin-left: 120px;
  margin-bottom: 0.6em;
}
@media (max-width: 599px) {
  #Gallery section .inner .ttl_h4, #Order section .inner .ttl_h4, #Information section .inner .ttl_h4 {
    margin-left: 60px;
  }
}
#Gallery section .inner .ttl_h4::before, #Order section .inner .ttl_h4::before, #Information section .inner .ttl_h4::before {
  content: "";
  display: block;
  width: 60px;
  height: 0.5px;
  background-color: #F0F1F1;
  position: relative;
  transform: translate(-75px, 16px);
}
@media (max-width: 599px) {
  #Gallery section .inner .ttl_h4::before, #Order section .inner .ttl_h4::before, #Information section .inner .ttl_h4::before {
    width: 40px;
    transform: translate(-55px, 16px);
  }
}
#Gallery section .inner .gallery, #Order section .inner .gallery, #Information section .inner .gallery {
  -moz-columns: 3;
       columns: 3; /*段組みの数*/
  padding: 0 15px; /*ギャラリー左右に余白をつける*/
  margin: 0;
  /*ギャラリー内のイメージは横幅100%にする*/
}
#Gallery section .inner .gallery figure, #Order section .inner .gallery figure, #Information section .inner .gallery figure {
  margin-bottom: 20px; /*各画像下に余白をつける*/
  list-style: none;
}
#Gallery section .inner .gallery img, #Order section .inner .gallery img, #Information section .inner .gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
@media (max-width: 599px) {
  #Gallery section .inner .gallery, #Order section .inner .gallery, #Information section .inner .gallery {
    -moz-columns: 2;
         columns: 2; /*段組みの数*/
  }
}

#Information .content_area {
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  #Information .content_area {
    margin-bottom: 40px;
  }
}
#Information .txt_inner {
  max-width: 600px;
  margin: 0 0 60px 120px;
}
#Information .txt_inner p:nth-of-type(2) {
  margin: 10px 0 6px 0;
}
#Information .txt_inner .underline {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  #Information .txt_inner {
    max-width: 480px;
  }
}
@media (max-width: 599px) {
  #Information .txt_inner {
    max-width: 350px;
    margin: 10px 0 40px 20px;
  }
}
#Information .map_inner {
  position: relative;
  margin-bottom: 530px;
}
@media (max-width: 599px) {
  #Information .map_inner {
    margin-bottom: 280px;
  }
}
#Information .map_inner .map {
  position: absolute;
  padding-top: 20px;
  left: 120px;
  width: 60%;
  height: 450px;
}
@media (max-width: 599px) {
  #Information .map_inner .map {
    width: 85%;
    height: 200px;
    left: 30px;
  }
}
#Information .map_inner .map > iframe {
  width: 100%;
  height: 100%;
}
#Information #OpenDay .content_area {
  max-width: 600px;
}
#Information #OpenDay .content_area > figure {
  width: 100%;
  height: auto;
  margin-left: 120px;
  aspect-ratio: 1;
}
@media (max-width: 1024px) {
  #Information #OpenDay .content_area > figure {
    width: 80%;
  }
}
@media (max-width: 599px) {
  #Information #OpenDay .content_area > figure {
    width: 95%;
    margin-left: 30px;
  }
}

#Order .li_outline {
  max-width: 70%;
  margin: 0 auto;
  border: solid 1px #F0F1F1;
  outline: solid 1px #F0F1F1;
  outline-offset: 4px;
}
#Order .li_outline .order_list {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 18x;
}
#Order .li_outline .order_list > * + * {
  margin-top: 20px;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  top: 20px;
  left: 10px;
  background: #ccc;
  width: 2px;
  height: 42px;
  border-radius: 2px;
}

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

.modaal-close:focus, .modaal-close:hover {
  background: none;
}

.modaal-gallery-prev:before {
  margin: -5px 0 0;
  transform: rotate(-135deg);
}

.modaal-gallery-prev:after {
  margin: 14px 0 0;
  transform: rotate(135deg);
}

.modaal-gallery-control {
  top: 50%;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 1028px) {
  .modaal-gallery-control {
    width: 40px;
    height: 40px;
  }
}

.modaal-gallery-control:before, .modaal-gallery-control:after {
  width: 2px;
  height: 28px;
  background: #ccc;
  left: 30px;
}
@media screen and (max-width: 1028px) {
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    height: 14px;
    left: 20px;
  }
}

.modaal-gallery-control:after {
  margin: 14px 0 0;
}
@media screen and (max-width: 1028px) {
  .modaal-gallery-control:after {
    margin: 4px 0 0;
  }
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 30px;
}
@media screen and (max-width: 1028px) {
  .modaal-gallery-prev:before, .modaal-gallery-prev:after {
    left: 20px;
  }
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  background: none;
}

.modaal-gallery-item img {
  max-width: 800px;
  height: auto;
}

/*! ----------------------------------------------
   lightbox2カスタマイズ
--------------------------------------------------- */
/*# sourceMappingURL=style.css.map */