@charset "UTF-8";
/* CSS Document */
.winter {
  display: none !important;
}
.summer {
  display: block !important;
}

.has-child {
  position: relative;
}

.sub-menu {
  display: none;
  margin-top: -30px !important;
}

@media (max-width: 599px) {
  /* .has-child {
    position: static;
  }

  .has-child .sub-menu {
    position: static !important; 
    top: 0 !important;
    left: 0 !important;
    padding: 10px 20px;
    display: none; 
  }
  #g-nav-list {
    max-height: 100vh;
    overflow-y: auto;
  } */
  #g-nav-sp ul {
    position: static !important;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
  }

  .has-child {
    position: static;
  }

  .has-child .sub-menu {
    position: static;
    width: 100%;
    padding-left: 1em;
    display: none;
  }

  .has-child.open .sub-menu {
    display: block;
  }
}

.toggle-icon {
  margin-left: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.f-tel {
  color: #fff;
  text-decoration: none;
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 2px;
}

@media (min-width: 600px) and (max-width: 900px) {
  .fix-text {
    display: none;
  }
  .sns-h {
    display: none !important;
  }
  .section_features_text_detail01,
  .section_features_text_detail02,
  .section_features_text_detail03,
  .section_features_text_detail04 {
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 12px !important;
    line-height: 15px !important;
    text-align: left;
    font-weight: 100;
    padding: 30px 10px 10px 10px;
  }
  .side-logo {
    display: none !important;
  }
  .g-info-wrap {
    display: none;
  }
  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50% !important;
    left: 170px;
    transform: translate(-50%, -50%);
  }
  .f-nav {
    display: none !important;
  }
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #0c0c0c;
  text-align: center;
  color: #fff;
  z-index: 99999999999999999999999999999999999999999999999;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 80px;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/*枠線が伸びて出現*/
.line {
  position: relative; /* 枠線が書かれる基点*/
}

/*上下線*/
.line::before,
.line::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #fff; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #fff; /* 枠線の色*/
}

/*上線*/
.line::before {
  top: 0;
  left: 0;
  animation: lineAnime 0.5s linear 3s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  top: 0;
  right: 0;
  animation: lineAnime2 0.5s linear 3.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.line::after {
  bottom: 0;
  right: 0;
  animation: lineAnime 0.5s linear 4s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
  animation: lineAnime2 0.5s linear 4.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/*枠線内側の要素*/
.line .lineinappear {
  animation: lineInnerAnime 0.5s linear 4.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.openbtn:hover {
  opacity: 0.5;
}
.g-nav-wrap ul li a:hover {
  opacity: 0.5;
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.eachTextAnime02 span {
  opacity: 0;
}
.eachTextAnime02.appeartext02 span {
  animation: text_anime_on_02 3s ease-out forwards;
  animation-delay: 1s !important;
}

@keyframes text_anime_on_02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.eachTextAnime03 span {
  opacity: 0;
}
.eachTextAnime03.appeartext03 span {
  animation: text_anime_on_02 3s ease-out forwards;
  animation-delay: 3s !important;
}

@keyframes text_anime_on_03 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.eachTextAnime04 span {
  opacity: 0;
}
.eachTextAnime04.appeartext04 span {
  animation: text_anime_on_02 3s ease-out forwards;
  animation-delay: 5s !important;
}

@keyframes text_anime_on_04 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*タイトルアニメーション----------------------------------------------------------------------------------------------------------*/

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff; /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/*画面分割-----------------------------------------------------------------------------------------------------------------------*/

/* Loading画像中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}
/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  background-color: #0c0c0c;
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
  transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
  transform: scaleY(0);
}
/*画面分割-----------------------------------------------------------------------------------------------------------------------*/

.f-address {
  margin: 5px 0 10px 0;
}

.f-top-text p {
  font-size: 14px;
  letter-spacing: 2px;
}

.f-12px {
  font-size: 12px;
}
.red {
  color: #cf5e5e;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.link {
  text-decoration: none;
  border: solid 1px #fff;
  padding: 10px 0px;
  display: block;
  margin: 15px 0;
  width: 200px;
  text-align: center;
}
.link:hover {
  background-color: #333;
}
.under-text02 {
  display: none;
}
.top-wrapper {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding-left: 80px;
}
.eng-t {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 16px;
  letter-spacing: 10px;
  font-weight: 300;
  padding-left: 5px;
}
.jan-t {
  font-size: 22px;
  letter-spacing: 10px;
  font-weight: 300;
  padding-right: 5px;
}
/*ライトボックス-----------------------------------------------------------------------------------*/
.lum-lightbox {
  z-index: 999999999999999999999999;
}
.luminous2 img {
  width: 100%;
}
.luminous2 img:hover {
  opacity: 0.5;
  cursor: pointer;
}
.lum-lightbox-inner img {
  width: 60%;
}
@media (max-width: 599px) {
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 0;
  }
  .eng-t {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 12px;
    letter-spacing: 8px;
    font-weight: 300;
    padding-left: 5px;
  }
  .lum-lightbox-inner img {
    max-width: 100% !important;
    max-height: 95vh !important;
  }
  .top-wrapper {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding-left: 0px;
  }
}
/*ライトボックス------------------------------------------------------------------------------------------*/

.side-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
}

.side-menu li:hover {
  filter: brightness(50%);
}

.side-menu li a {
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.side-menu li a:hover {
  text-decoration: underline;
}

.side-menu li:nth-of-type(2) {
  transition-delay: 0.025s;
}

.side-menu li:nth-of-type(3) {
  transition-delay: 0.05s;
}

.side-menu li:nth-of-type(4) {
  transition-delay: 0.075s;
}

.side-menu li:nth-of-type(5) {
  transition-delay: 0.1s;
}

.side-menu.open li {
  transform: translateY(100vh);
}

@media (max-width: 768px) {
  .side-menu ul {
    flex-direction: column;
    top: 0;
    left: -100vw;
  }

  .side-menu li {
    height: 20vh;
    width: 100vw;
  }

  .side-menu.open li {
    transform: translateX(100vw);
  }
}

/* side-hamburger side-menu */
.side-hamburger {
  background-color: #0c0c0c;
  border-radius: 50%;
  position: fixed;
  top: 20px;
  left: 20px;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.side-hamburger:focus {
  outline: 0;
}

.side-hamburger .line {
  background-color: #fff;
  display: block;
  margin: 4px auto;
  height: 2px;
  width: 20px;
  transition: all 0.1s ease-in;
}

.side-hamburger.open .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.side-hamburger.open .line:nth-child(2) {
  opacity: 0;
}

.side-hamburger.open .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.under-header {
  display: none;
}

/*切り替え------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 599px) {
  .line02,
  .line2 {
    display: none;
  }

  .side-header {
    display: none;
  }
  .under-header {
    display: block;
  }

  .under-logo-img {
    display: block;
    width: 9%;
    position: absolute;
    top: 17px;
    left: 15px;
  }
  .under-logo {
    display: none !important;
  }

  /*枠線が伸びて出現*/
  .line-sp {
    position: relative; /* 枠線が書かれる基点*/
    padding: 12px 30px 12px 40px;
  }

  /*上下線*/
  .line-sp::before,
  .line-sp::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: #fff; /* 枠線の色*/
  }

  /*左右線*/
  .line2-sp::before,
  .line2-sp::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 0;
    background: #fff; /* 枠線の色*/
  }

  /*上線*/
  .line-sp::before {
    top: 0;
    left: 0;
    animation: lineAnime-sp 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
  }

  /*右線*/
  .line2-sp::before {
    top: 0;
    right: 0;
    animation: lineAnime2-sp 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
  }

  /*下線*/
  .line-sp::after {
    bottom: 0;
    right: 0;
    animation: lineAnime-sp 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
  }

  /*左線*/
  .line2-sp::after {
    bottom: 0;
    left: 0;
    animation: lineAnime2-sp 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
  }

  @keyframes lineAnime-sp {
    0% {
      width: 0%;
    }
    100% {
      width: 100%;
    }
  }

  @keyframes lineAnime2-sp {
    0% {
      height: 0%;
    }
    100% {
      height: 100%;
    }
  }

  /*枠線内側の要素*/
  .line-sp .lineinappear-sp {
    animation: lineInnerAnime-sp 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
    opacity: 0; /*初期値を透過0にする*/
  }

  @keyframes lineInnerAnime-sp {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}

/*切り替え------------------------------------------------------------------------------------------------------------------*/

body {
  background-color: #0c0c0c;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
main {
  background-color: #0c0c0c;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

.pc_none {
  display: none;
}
.f-button-wrap {
  display: block;
  font-size: 16px;
  position: absolute;
  top: 53%;
  left: 27%;
  width: 38px;
}
.f-button {
  color: #fff;
  text-decoration: none;
  writing-mode: vertical-rl;
  align-items: 25px;
  letter-spacing: 12px;
  padding: 20px 10px 10px 10px;
  display: block;
}

.f-button-wrap:hover {
  background-color: #333;
}

.view-more {
  text-decoration: none;
  color: #fff;
  font-size: 10px;
  padding: 15px 10px;
  border: solid 0.5px #fff;
  display: block;
  margin: 30px auto;
  width: 25%;
  text-align: center;
  letter-spacing: 5px;
  font-weight: 100;
}
.view-more:hover {
  background-color: #333;
  opacity: 0.5;
}

/*
.top-header {
    width: 100%;
    height: 70px;
    color: #1d1d1d;
    background-color: none;
    position: fixed;
    top: 0;
    transition: 0.5s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	z-index: 99999999;
}
*/

.under-footer {
  width: 100%;
  height: 70px;
  color: #ffffff;
  background-color: #383838;
  position: fixed;
  bottom: 0;
  transition: 0.5s;
  display: none;
}

/*sidebar-----------------------------------------------------------------------------------------------------------------------------------*/
.section-sidebar {
  display: block;
  margin: 40px auto;
  max-width: 900px;
}
.categories ul {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.archive_list li {
  list-style: none;
}
.cat-item {
  color: #fff;
  border: solid 1px #fff;
  padding: 10px 15px;
}
.cat-item a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 100;
}
.archive_title {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 20px;
}
.postLink {
  display: flex;
  align-items: center;
}

.g-info-wrap {
  border-top: solid 0.5px #fff;
  position: absolute;
  bottom: 10%;
  width: 300px;
  padding: 35px 0px;
  left: 40px;
}
.ad01 {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 100;
  margin-bottom: 5px;
}
.ad02 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
}
.tel-wrap {
  margin-top: 35px;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}
.te01 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.tel-icon {
  width: 30px;
  height: 30px;
}

/*sidebar-----------------------------------------------------------------------------------------------------------------------------------*/

.grecaptcha-badge {
  visibility: hidden !important;
}
.title {
  margin: 40px 0;
}
.t-en {
  border-bottom: solid 0.5px #fff;
  padding-bottom: 15px;
  letter-spacing: 5px;
  font-size: 18px;
  font-weight: 100;
  width: 40%;
}
.t-ja {
  padding-top: 15px;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 100;
  text-align: left !important;
}

/*追記--------------------------------------------------------*/

.menu.open li:hover {
  filter: brightness(50%);
}
/*=====================================================================================*/

.side-logo-img {
  display: none;
}
.side-header {
  position: fixed;
  width: 80px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0c0c0c;
  z-index: 999;
}
.h-logo-img {
  display: block;
  width: 5%;
}
.under-header {
  display: none;
}

/* ハンバーガーボタン----------------------------------------------------------------------------------------------------------------- */
.menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
  z-index: 99;
}

.hm01 {
  background-image: url("../01_images/ho.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.si01 {
  background-image: url("../01_images/ho.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.hm02 {
  background-image: url("../01_images/leaf.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.si02 {
  background-image: url("../01_images/leaf.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.hm03 {
  background-image: url("../01_images/water.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.si03 {
  background-image: url("../01_images/water.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.hm04 {
  background-image: url("../01_images/menu-04-pc.png");
  background-position: right 0px bottom 0px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.si04 {
  background-image: url("../01_images/menu-04-pc.png");
  background-position: right 0px bottom 0px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.hm05 {
  background-image: url("../01_images/fire.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.si05 {
  background-image: url("../01_images/fire.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  height: 100vh;
  width: 20vw;
}
.menu li a {
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.menu li a:hover {
  text-decoration: underline;
}

.menu li:nth-of-type(2) {
  transition-delay: 0.025s;
}

.menu li:nth-of-type(3) {
  transition-delay: 0.05s;
}

.menu li:nth-of-type(4) {
  transition-delay: 0.075s;
}

.menu li:nth-of-type(5) {
  transition-delay: 0.1s;
}

.menu.open li {
  transform: translateY(100vh);
}

@media (max-width: 768px) {
  .menu ul {
    flex-direction: column;
    top: 0;
    left: -100vw;
  }

  .menu li {
    height: 20vh;
    width: 100vw;
  }

  .menu.open li {
    transform: translateX(100vw);
  }
  .hm04 {
    background-image: url("../01_images/menu-04-sp.png");
    background-position: right 0px bottom 0px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    height: 100vh;
    width: 20vw;
  }
}

/* Hamburger menu */
.hamburger {
  background-color: #0c0c0c;
  border-radius: 50%;
  position: fixed;
  top: 40px;
  left: 20px;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999;
}

.hamburger:focus {
  outline: 0;
}

.hamburger .line {
  background-color: #fff;
  display: block;
  margin: 4px auto;
  height: 2px;
  width: 20px;
  transition: all 0.1s ease-in;
}

.hamburger.open .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ハンバーガーボタン----------------------------------------------------------------------------------------------------------------- */

.fix-text {
  font-size: 13px;
  position: relative;
  top: 32%;
  left: 9%;
  width: 80px;
  writing-mode: vertical-rl;
  vertical-align: middle;
  letter-spacing: 6px;
  transform: translateY(-50%) translateX(-50%);
  font-weight: 500;
  z-index: -1;
}
.sns-h {
  display: block;
  position: absolute;
  bottom: 0;
  left: 22px;
}
.sns-h li {
  list-style: none;
  margin: 10px 0;
  text-align: center;
  width: 57%;
}
.sns-h img {
  width: 70%;
}

/*footer------------------------------------------------------------------------------------------------------------------------------------------------*/
/* CSS Document */
.footer {
  display: block;
  margin: 0px auto 45px;
  max-width: 900px;
}
.f-logo-img {
  display: block;
  width: 5%;
}
.f-top li {
  list-style: none;
}
.f-sns,
.f-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.f-sns li,
.f-nav li {
  list-style: none;
}
.f-sns li {
  margin: 0 15px;
}
.f-sns img {
  width: 80%;
  margin: 0 auto;
}
.f-top-text {
  display: block;
  margin: 20px 0;
}
.copyrights {
  text-align: center;
  display: block;
  margin: 0 auto;
  line-height: 20px;
  font-size: 12px;
  font-weight: 100;
}
.f-sns {
  border-bottom: solid 0.5px #fff;
  padding-bottom: 15px;
}
.f-sns li:last-child {
  margin-right: 0;
}
.f-nav {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-weight: 100;
  margin: 15px 0;
  border-top: 0.5px solid #fff;
  padding-top: 15px;
}
.f-nav li {
  margin: 0 20px;
}
.f-nav li:last-child {
  margin-right: 0;
}
.f-nav li a {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-weight: 100;
  font-size: 14px;
}
.f-nav li :hover,
.sns-h li:hover {
  opacity: 0.5;
}
.f-sns li:hover {
  opacity: 0.5;
}
.f-logo:hover {
  opacity: 0.5;
}
.nav-menu {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  letter-spacing: 3px;
}

/*スマホ----------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  .lum-lightbox-inner img {
    width: 100%;
  }

  .f-button {
    display: none;
  }
  .under-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 10px;
    /*    border: 1px solid #FFF;*/
    /*    padding: 12px 30px 12px 40px;*/
    text-align: center;
    color: #fff;
    text-decoration: none;
  }
  .u-nav-ul {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
  }
  .under-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7%;
  }
  .under-icon img {
    width: 100%;
    height: 100%;
  }
  .view-more {
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    padding: 12px 10px;
    border: solid 0.5px #fff;
    display: block;
    margin: 30px auto;
    width: 45%;
    text-align: center;
    letter-spacing: 5px;
    font-weight: 100;
  }
  .under-b {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: solid 1px #fff;
    width: 68%;
    padding: 10px 15px;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
  }
  .u-nav,
  .u-nav-ul {
    height: 70px;
  }
  .under-re-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    position: relative;
    left: 6%;
  }
  .u-nav {
    padding: 0 3%;
  }

  .news-category a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 100;
    letter-spacing: 1px;
  }
  .news-category {
    border: solid 0.5px #fff;
    padding: 7px 10px;
    display: flex;
    align-items: center;
  }
  .section-news p {
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 25px;
  }
  .postLink a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0 !important;
    font-weight: 600;
  }
  .section-sidebar {
    display: block;
    margin: 40px auto;
    padding: 0 20px;
  }
  .archive_title {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .cat-item {
    color: #fff;
    border: solid 0.5px #fff;
    padding: 7px 10px;
    display: flex;
    align-items: center;
  }
  .cat-item a {
    font-size: 12px;
  }

  .top-header {
    /* width: 100%;
    height: 50px;
    color: #1d1d1d;
    background-color: #0c0c0c;
    position: relative;
    top: 0;
	display: flex;
	justify-content: space-between;*/
    display: none;
  }
  .side-logo-img {
    display: block;
    width: 9%;
    position: absolute;
    top: 6px;
    left: 15px;
  }
  .hamburger .line {
    background-color: #fff;
    display: block;
    margin: 5px auto;
    height: 2px;
    width: 25px;
    transition: all 0.1s ease-in;
  }
  .side-header {
    position: relative;
    width: 100%;
    height: 50px;
    top: 0;
    background-color: #0c0c0c;
    z-index: 999999999999999999;
  }
  .fix-text,
  .sns-h {
    display: none;
  }

  .h-logo-img {
    display: block;
    width: 10%;
    margin: auto 0;
    padding-left: 15px;
  }
  .hamburger {
    display: block;
    margin: auto 0;
    background-color: #0c0c0c;
    border-radius: 50%;
    position: absolute;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    top: 15px; /*16px---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
    left: 88%;
    right: 20px;
    z-index: 999;
    padding-right: 15px;
  }
  .top-header-hm-wrapper {
    display: block;
    margin: auto 0;
  }

  .under-header {
    width: 100%;
    height: 70px;
    color: #ffffff;
    background-color: #0c0c0c;
    position: fixed;
    bottom: 0;
    transition: 0.5s;
    z-index: 999;
    display: block;
  }
  main {
    margin-left: 0 !important;
    font-weight: 100;
  }
  .access-flow {
    display: block !important;
  }
  .access-li-title {
    width: 100% !important;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .access-flow-title {
    text-align: center;
    letter-spacing: 3px;
    border: solid 1px #fff;
    padding: 35px 30px;
    margin: 15px 0;
    font-weight: 100;
    width: 45%;
  }
  .t-en {
    border-bottom: solid 1px #fff;
    padding-bottom: 15px;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 100;
    width: 60%;
    line-height: 25px;
  }
  .access-text {
    display: block;
    margin: 20px auto;
    padding-left: 15px;
  }
  .access-flow-wrapper {
    display: block;
    margin: 80px auto;
    padding: 0 15px;
  }
  .footer {
    display: block;
    margin: 50px auto 10px;
    padding: 0 15px;
  }
  .f-logo-img {
    display: block;
    width: 12%;
  }
  .f-nav {
    display: none;
  }
  .copyrights {
    text-align: center;
    display: block;
    margin: 0 auto;
    line-height: 20px;
    font-size: 12px;
    font-weight: 100;
    margin-top: 25px;
  }
  .hm04 {
    background-image: url("../01_images/menu-04-sp.png");
    background-position: right 0px bottom 0px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    height: 100vh;
    width: 20vw;
  }
}
/*タブレット----------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 600px) and (max-width: 1024px) {
  .footer {
    display: block;
    margin: 50px auto 10px;
    padding-left: 80px;
  }
  .f-nav li {
    margin: 0 15px;
  }
}

/*top-header---------------------------------------------------------------------------------------------------------------------------------*/
.top-nav-menu {
  display: flex;
  justify-content: flex-start;
  padding-left: 2%;
}
.top-nav-menu ul {
  display: flex;
  justify-content: space-between;
  padding-right: 3%;
}
.top-nav-menu li {
  padding: 0 20px;
}
.top-nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
}

/*予約ボタン--------------------------------------------------------------------------------------------------------------------------------------------------*/

.fuller-button {
  color: white;
  background: none;
  padding: 0;
  letter-spacing: 0.35em;
  font-size: 0.7em;
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
  width: 100px;
  height: 100px;
  border-radius: 75%;
  position: fixed;
  bottom: 2%;
  right: 2%;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
}

.fuller-button.white {
  box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 0.3),
    0 0 0.8em rgba(255, 255, 255, 0.3);
  border: #fff solid 2px;
}
.fuller-button.white:hover {
  color: rgba(0, 0, 0, 0.8);
  background-color: #fff;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3),
    0 0 1.2em rgba(255, 255, 255, 0.5);
}

.pure-form .pure-control-group label {
  text-align: left;
  position: absolute;
  left: 0;
  top: 15%;
  z-index: 0;
  letter-spacing: 0;
  margin: 0 1em;
}

.pure-form .pure-control-group input {
  background: none;
  box-shadow: none;
  padding-left: 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
  color: #fff;
}

.pure-form .pure-control-group input:focus {
  border-bottom: 2px solid white;
}

.pure-form .pure-control-group textarea {
  background: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  resize: none;
  height: 8em;
  color: #fff;
}

.pure-form .pure-control-group textarea:focus {
  border-left: 2px solid white;
}

.pure-form .pure-control-group input[type="email"]:focus:invalid {
  color: #fff;
}

.pure-form .pure-control-group input[type="email"]:invalid {
  color: #fb5454;
}

.pure-form button {
  margin: 0.5em 1em;
}

/*波形を2つ設定*/
.fuller-button::after,
.fuller-button::before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  left: -25%;
  top: -25%;
  /*波形の形状*/
  border: 1px solid #fff;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*ループするアニメーションの設定*/
  animation: 1s circleanime linear infinite;
}

/*波形の2つ目は0.5秒遅らせてアニメーション*/
.fuller-button::before {
  animation-delay: 0.5s;
}

/*波形のアニメーション*/
@keyframes circleanime {
  0% {
    transform: scale(0.68);
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/*plan----------------------------------------------------------------------------------------------------------------------------*/
.plan-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 80px auto;
}
.plan-block {
  display: block;
  width: 33%;
  border-top: solid 0.5px #fff;
  border-bottom: solid 0.5px #fff;
  padding: 40px 0;
}
.plan-img {
  width: 100%;
}
.plan-name {
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.plan-button {
  text-decoration: none;
  color: #fff;
  border: solid 0.5px #fff;
  padding: 14px 25px;
  cursor: pointer;
  display: block;
  width: 100px;
  text-align: center;
  margin: 20px 0 0 auto;
}

/*========= ナビゲーションのためのCSS ===============*/
.side-logo {
  display: block;
  width: 10%;
  position: absolute;
  top: 90px;
  left: 100px;
}
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -120%;
  width: 370px;
  height: 100vh; /*ナビの高さ*/
  background: #0c0c0c;
  /*動き*/
  transition: all 0.6s;
  margin-left: 80px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: unset;
  left: 100px;
  margin-top: 17%;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: left;
  font-size: 14px;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 100;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  left: 13px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  position: fixed;
  background: #0c0c0c;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
}

.openbtn span:nth-of-type(3) {
  top: 25px;
}

.openbtn span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 8px;
  left: -6px;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}
.g-nav-list li :hover {
  opacity: 0.5;
}

@media (max-width: 599px) {
  .openbtn-sp {
    position: relative;
    z-index: 9999;
    bottom: 1px;
    right: 13px;
    top: auto;
    left: auto;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*ボタン内側*/
  .openbtn-sp span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  }

  .openbtn-sp span:nth-of-type(1) {
    top: 13px;
  }

  .openbtn-sp span:nth-of-type(2) {
    top: 19px;
  }

  .openbtn-sp span:nth-of-type(3) {
    top: 25px;
  }

  .openbtn-sp span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -4px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
  }

  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

  .openbtn-sp.active-sp span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn-sp.active-sp span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn-sp.active-sp span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .openbtn-sp.active-sp span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }
  #g-nav-sp.panelactive-sp {
    right: 0 !important;
    left: auto;
  }
  .under-hamburger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    position: absolute;
    right: 0;
    width: 80px;
    top: 3px;
  }
  .g-nav-wrap-sp {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 0;
    box-sizing: border-box;
  }
  .side-logo {
    display: block;
    width: 35%;
    margin: 0 auto 20px;
    position: static;
  }
  #g-nav-sp {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 99;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 270px;
    height: calc(100vh - 70px); /*ナビの高さ*/
    background: #0c0c0c;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav-sp.panelactive-sp {
    right: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav-sp.panelactive-sp #g-nav-list-sp {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 270px;
    height: calc(100vh - 100px); /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav-sp ul {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 30px 15px 20px 20px;
    box-sizing: border-box;
  }

  /*リストのレイアウト設定*/

  #g-nav-sp li {
    list-style: none;
    text-align: left;
    position: relative;
  }

  #g-nav-sp li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .g-info-wrap-sp {
    border-top: solid 1px #fff;
    padding-top: 10px;
    margin-top: auto; /* ← フッターのように下に追いやる */
    margin-bottom: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
