@charset "UTF-8";
:root {
  --animation-time: .5s;
  --animation-delay: .5s;
  --ease-curve: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

html, body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 1.6em;
  color: #5c5c5c;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 781px) {
  html, body {
    font-size: 18px;
  }
}

@media screen and (max-width: 781px) {
  body {
    overflow-x: hidden;
  }
}

a {
  text-decoration: none;
  font-weight: normal;
}
a.back {
  background-color: rgb(185, 59, 122);
  margin-left: 1em;
  color: white;
  border-radius: 10px;
  padding: 0.5em 1em;
}
a.back span {
  font-size: 0.5em;
  margin-right: 1em;
}

.under781 {
  display: none;
}

@media screen and (max-width: 781px) {
  .under781 {
    display: inline-block;
  }
}
.under450 {
  display: none;
}

@media screen and (max-width: 450px) {
  .under450 {
    display: inline-block;
  }
}
.over782 {
  display: inline-block;
}

@media screen and (max-width: 781px) {
  .over782 {
    display: none;
  }
}
.fadein {
  transition: opacity 1s, transform 1s;
  opacity: 0;
  transform: translateY(50px);
}
.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s;
  border-bottom: 1px solid #d0d0d0;
  background-color: white;
  height: 60px;
}
header .logos {
  margin-left: 1em;
}
header .logos .logo svg {
  width: 133px;
  height: 36px;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
  fill: url(#gradient_red);
}
header .menu-trigger,
header .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
header .menu-trigger {
  position: relative;
  width: 40px;
  height: 24px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
header .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #818181;
}
header .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header .menu-trigger span:nth-of-type(2) {
  top: 10px;
}
header .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
header .menu-trigger.active {
  transform: rotate(360deg);
}
header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
header .menu-trigger.active span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
}
header .menu-trigger.active span:nth-of-type(3) {
  opacity: 0;
}
header .menu {
  transition: all 0.5s;
}
header .menu ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 1em;
  font-size: 16px;
  font-weight: bold;
}
header .menu ul li {
  margin-left: 1.5em;
}
header .menu ul li a {
  color: #5c5c5c;
  display: inline-block;
  transition: all 0.5s;
}
header .sp-only {
  display: none;
}
header a.instagram {
  background: #ebb051;
  padding: 0.5em 1em 0.5em 0.7em;
  color: white !important;
  font-weight: bold;
  border-radius: 2em;
}
header a.instagram:before {
  content: "";
  display: inline-block;
  background: url("/data/images/svg/icon_instagram.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 19px;
  height: 19px;
  margin: 0 0.5em -4px 0;
}
header a.reservation {
  background: linear-gradient(135deg, #ffa77f, #e95855);
  padding: 0.5em 1em 0.5em 0.7em;
  color: white !important;
  font-weight: bold;
  border-radius: 2em;
}
header a.reservation:before {
  content: "";
  display: inline-block;
  background: url("/data/images/svg/icon_clock.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 19px;
  height: 19px;
  margin: 0 0.5em -4px 0;
}
header .area2 {
  display: none;
  margin-right: 1em;
  align-items: center;
}
header .area2 a.reservation {
  margin-left: 1em;
}
@media screen and (max-width: 960px) {
  header .area2 {
    display: flex;
  }
  header .menu {
    position: absolute;
    top: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    height: 0vh;
    width: 100%;
    overflow: hidden;
    padding: 0 5vw;
    box-sizing: border-box;
  }
  header .menu ul {
    width: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  header .menu ul li:before {
    display: none;
  }
  header .menu ul li {
    width: 48%;
    padding: 1em 0;
    border-bottom: 1px solid #c4c4c4;
    text-align: center;
    margin: 0 2% 0 0;
  }
  header .menu ul li:nth-child(2n) {
    margin-right: 0;
  }
  header .menu ul li.wide {
    border: none;
    width: 100%;
    margin-right: 0;
    padding-bottom: 0;
  }
  header .menu ul li.wide a {
    width: 90%;
    padding: 1em 1em;
  }
  header .menu ul li.sp-only {
    display: block;
  }
}

@media screen and (max-width: 781px) {
  main {
    overflow: hidden;
  }
}
main a {
  color: #1fabd9;
}
main .button {
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.3s;
}
main .button.reservation {
  padding: 1em;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffa77f, #e95855);
  color: white;
  justify-content: center;
  font-weight: bold;
  max-width: 400px;
}
main .button.reservation:before {
  content: "";
  display: inline-block;
  background: url("/data/images/svg/icon_clock.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin: 0 0.5em 0 0;
}
main .button.reservation:hover {
  background: linear-gradient(135deg, #fa8048, #ec3532);
}
main .button.instagram {
  padding: 1em;
  margin: 0 auto 1em;
  background-color: #ebb051;
  color: white;
  justify-content: center;
  font-weight: bold;
  max-width: 400px;
}
main .button.instagram:before {
  content: "";
  display: inline-block;
  background: url("/data/images/svg/icon_instagram.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin: 0 0.5em 0 0;
}
main .button.instagram:hover {
  background-color: #d46022;
}
main .button:hover {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}
main section {
  position: relative;
}
main section h2, main section h3, main section h4 {
  display: inline-block;
  margin: 0 0 1em 0;
  font-weight: normal;
}
main section h2 img, main section h3 img, main section h4 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 781px) {
  main section h2, main section h3, main section h4 {
    margin-bottom: 0.5em;
    margin-top: 0.5em;
  }
  main section h2 img, main section h3 img, main section h4 img {
    max-width: 94vw;
  }
}
main section p {
  margin: 1em 0 0 0;
}
main section .wrap {
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 781px) {
  main section .wrap {
    padding: 3vw;
    width: auto;
    margin: 0;
  }
}
main section .two-cols {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
main section#hero {
  width: 100%;
  height: 60vw;
}
main section#hero img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main section#hero img.badge {
  position: absolute;
  bottom: 2em;
  left: 2em;
  width: 75px;
  height: 75px;
}
main section#hero .wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section#hero .wrap svg {
  width: 40vw;
  max-width: 400px;
  fill: white;
}
@media screen and (max-width: 781px) {
  main section#hero {
    height: 130vw;
  }
  main section#hero img.bg {
    object-position: 55% 50%;
  }
  main section#hero img.badge {
    bottom: 3vw;
    left: 3vw;
    width: 15vw;
    height: 15vw;
  }
}
main section#ticker {
  border-bottom: 1px solid #d0d0d0;
}
main section#ticker .items {
  padding: 1em 0;
}
main section#ticker .items .slick-list .slick-track a {
  display: flex;
  padding: 0 2em;
}
main section#ticker .items .slick-list .slick-track a h4 {
  margin: 0;
  color: #5c5c5c;
}
main section#ticker .items .slick-list .slick-track a p {
  display: flex;
  align-items: center;
  margin: 0 1em 0 0;
  color: #5c5c5c;
  font-size: 0.7em;
  line-height: 0.7em;
  background-color: #f2f2f2;
  padding: 0em 1em;
  border-radius: 10px;
}
main section#about .wrap {
  text-align: center;
}
main section#about .wrap .intro {
  padding: 5em 1em;
}
main section#about .wrap .intro h2 {
  width: 637px;
  height: 35px;
}
main section#about .wrap .intro p {
  line-height: 2em;
}
main section#about .wrap .two-cols {
  align-items: stretch;
}
main section#about .wrap .two-cols .image {
  width: 70%;
}
main section#about .wrap .two-cols .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
main section#about .wrap .two-cols .text {
  width: 30%;
  min-width: 450px;
  box-sizing: border-box;
  padding: 3em 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
main section#about .wrap .two-cols .text h3 {
  height: 63px;
}
main section#about .wrap .two-cols.first {
  margin-bottom: 1em;
}
main section#about .wrap .two-cols.first .image {
  padding-right: 1em;
}
main section#about .wrap .two-cols.first .image img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
main section#about .wrap .two-cols.first .text {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background: linear-gradient(90deg, #f4f4f4, #ffffff);
  text-align: left;
}
main section#about .wrap .two-cols.second .image {
  padding-left: 1em;
}
main section#about .wrap .two-cols.second .image img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
main section#about .wrap .two-cols.second .text {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: linear-gradient(270deg, #f4f4f4, #ffffff);
  text-align: left;
}
@media screen and (max-width: 781px) {
  main section#about .wrap .intro {
    padding: 2em 3vw 2.5em;
  }
  main section#about .wrap .intro h2 {
    width: 74vw;
    height: auto;
  }
  main section#about .wrap .two-cols {
    flex-direction: column;
  }
  main section#about .wrap .two-cols .image {
    width: 100%;
    padding: 0 !important;
  }
  main section#about .wrap .two-cols .image img {
    border-radius: 20px;
  }
  main section#about .wrap .two-cols .text {
    width: 100%;
    min-width: auto;
    padding: 1em;
  }
  main section#about .wrap .two-cols.first .text h3 {
    height: 14vw;
    max-height: 60px;
  }
  main section#about .wrap .two-cols.second {
    flex-direction: column-reverse;
  }
  main section#about .wrap .two-cols.second .text h3 {
    height: 14vw;
    max-height: 60px;
  }
}
main section#instructor .wrap {
  max-width: 1080px;
  padding: 5em 1em;
}
main section#instructor .wrap .two-cols {
  align-items: stretch;
}
main section#instructor .wrap .two-cols .image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
main section#instructor .wrap .two-cols .text {
  width: 512px;
  min-width: 512px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 2em;
  position: relative;
}
main section#instructor .wrap .two-cols .text .ryt {
  position: absolute;
  right: 0;
  top: 2em;
  width: 75px;
  height: 75px;
  opacity: 0.6;
}
main section#instructor .wrap .two-cols .text h2 {
  height: 23px;
}
main section#instructor .wrap .two-cols .text h3 {
  height: 23px;
  margin-bottom: 0.5em;
}
main section#instructor .wrap .two-cols .text h4 {
  font-size: 16px;
}
@media screen and (max-width: 781px) {
  main section#instructor .wrap {
    padding: 1em 3vw 2em;
  }
  main section#instructor .wrap .two-cols {
    flex-direction: column;
  }
  main section#instructor .wrap .two-cols .image {
    width: 90vw;
    margin: 0 auto;
  }
  main section#instructor .wrap .two-cols .text {
    width: auto;
    margin: 0 auto;
    min-width: auto;
    padding: 0 5vw;
    align-items: center;
  }
  main section#instructor .wrap .two-cols .text .ryt {
    top: -70vw;
    right: 5vw;
    width: 15vw;
    height: 15vw;
  }
  main section#instructor .wrap .two-cols .text h2, main section#instructor .wrap .two-cols .text h3 {
    height: 5.5vw;
    max-height: 25px;
  }
}
main section#room {
  height: 800px;
  background: url("/data/images/photo_room1.jpg") no-repeat 50% 100%;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 781px) {
  main section#room {
    height: 120vw;
    background-attachment: initial;
  }
}
main section#trial .wrap {
  max-width: 1080px;
  padding: 5em 1em;
}
main section#trial .wrap .two-cols .image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: 55% 50%;
}
main section#trial .wrap .two-cols .text {
  width: 420px;
  min-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0em 1em 0em 2em;
  box-sizing: border-box;
}
main section#trial .wrap .two-cols .text h2 {
  height: 26px;
  display: flex;
  align-items: center;
}
main section#trial .wrap .two-cols .text h2:before {
  content: "";
  display: inline-block;
  background: url("/data/images/icon_leaf.png") no-repeat 50% 50%;
  background-size: contain;
  width: 50px;
  height: 50px;
  margin-right: 0.5em;
  animation: bubble 1s linear infinite;
}
main section#trial .wrap .two-cols .text h2 img {
  width: auto;
}
main section#trial .wrap .two-cols .text .tips {
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 1em 0;
  width: 100%;
  margin-top: 1em;
}
main section#trial .wrap .two-cols .text .tips h4 {
  text-align: center;
  display: block;
}
main section#trial .wrap .two-cols .text .tips ul {
  margin-bottom: 0;
}
main section#trial .wrap .two-cols .text .tips ul li {
  font-size: 16px;
}
main section#trial .wrap .two-cols .text .tips ul li span {
  font-size: 0.9em;
}
main section#trial .wrap .two-cols .text a.button.faq {
  background-color: #eaeaea;
  color: #5c5c5c;
  padding: 0.5em 1em;
  margin-top: 1em;
}
main section#trial .wrap .two-cols .text a.button.faq:before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 51px;
  background: url("/data/images/icon_faq.png") no-repeat 50% 50%;
  background-size: contain;
}
main section#trial .wrap .two-cols .text a.button.faq:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 18px;
  background: url("/data/images/svg/icon_arrow.svg") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 781px) {
  main section#trial .wrap {
    padding: 2em 3vw 0.5em;
  }
  main section#trial .wrap .two-cols {
    flex-direction: column-reverse;
  }
  main section#trial .wrap .two-cols .image {
    width: 100%;
    margin: 4em auto 0;
  }
  main section#trial .wrap .two-cols .text {
    width: auto;
    margin: 0 auto;
    min-width: auto;
    padding: 0;
    align-items: center;
  }
  main section#trial .wrap .two-cols .text h2 {
    height: 5.5vw;
    max-height: 25px;
  }
  main section#trial .wrap .two-cols .text a.button.faq {
    margin-bottom: 1em;
  }
}
main section#photo-spacer .two-cols .image {
  width: 49%;
}
main section#photo-spacer .two-cols .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}
main section#photo-spacer .two-cols .image.left img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
main section#photo-spacer .two-cols .image.right img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (max-width: 781px) {
  main section#photo-spacer .two-cols .image {
    height: 50vw;
  }
}
main section#time .wrap {
  max-width: 860px;
  padding: 5em 1em;
}
main section#time .wrap .two-cols .left {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-right: 2em;
}
main section#time .wrap .two-cols .left .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  color: #5c5c5c;
  min-height: 330px;
  margin-right: 0.5em;
}
main section#time .wrap .two-cols .left .item .hour {
  height: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.6em 0.6em;
}
main section#time .wrap .two-cols .left .item .extended {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.6em 0.6em 0.6em 0.6em;
}
main section#time .wrap .two-cols .left .item .extended span:nth-child(2) {
  color: #818181;
  margin: 0.5em 0;
  font-size: 0.8em;
}
main section#time .wrap .two-cols .left .item.set1 {
  background-color: #c0ccdf;
}
main section#time .wrap .two-cols .left .item.set1 .extended {
  background-color: #dbe3ee;
}
main section#time .wrap .two-cols .left .item.set2 {
  background-color: #c0d5df;
}
main section#time .wrap .two-cols .left .item.set2 .extended {
  background-color: #deebf1;
}
main section#time .wrap .two-cols .left .item.set3 {
  background-color: #c0dfdf;
}
main section#time .wrap .two-cols .left .item.set3 .extended {
  background-color: #dff3f3;
}
main section#time .wrap .two-cols .left .item.set4 {
  background-color: #c0dfd3;
}
main section#time .wrap .two-cols .left .item.set4 .extended {
  background-color: #e5f6ef;
}
main section#time .wrap .two-cols .left .item.set5 {
  background-color: #c0dfc4;
}
main section#time .wrap .two-cols .left .item.set5 .extended {
  background-color: #e7faea;
}
main section#time .wrap .two-cols .left .item.set6 {
  background-color: #d7e4bc;
}
main section#time .wrap .two-cols .left .item.set6 .extended {
  background-color: #f4fae7;
}
main section#time .wrap .two-cols .right {
  width: 320px;
  min-width: 320px;
}
main section#time .wrap .two-cols .right h2 {
  margin-bottom: 0em;
  height: 27px;
}
@media screen and (max-width: 960px) {
  main section#time .wrap .two-cols .left {
    width: 50%;
  }
  main section#time .wrap .two-cols .right {
    width: 50%;
  }
}
@media screen and (max-width: 781px) {
  main section#time .wrap {
    padding: 4em 3vw;
  }
  main section#time .wrap .two-cols {
    flex-direction: column-reverse;
  }
  main section#time .wrap .two-cols .left {
    justify-content: center;
    margin-right: 0;
    width: 100%;
  }
  main section#time .wrap .two-cols .left .item {
    margin-right: 2%;
    min-height: 200px;
    font-size: 15px;
  }
  main section#time .wrap .two-cols .left .item span {
    line-height: 1em;
  }
  main section#time .wrap .two-cols .left .item:last-child {
    margin-right: 0;
  }
  main section#time .wrap .two-cols .right {
    margin: 1em auto 1em;
    width: auto;
    text-align: center;
  }
  main section#time .wrap .two-cols .right h2 {
    height: 5.4vw;
    max-height: 25px;
  }
  main section#time .wrap .two-cols .right p {
    text-align: center;
  }
  main section#time .wrap .center {
    text-align: center;
    display: block;
  }
}
main section#price .wrap {
  max-width: 960px;
  padding: 0 1em 5em;
  text-align: center;
}
main section#price .wrap h2 {
  margin-bottom: 0;
  height: 27px;
}
main section#price .wrap table {
  width: 100%;
  background-color: #f9f9f9;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1em;
}
main section#price .wrap table th {
  width: 22%;
  height: 5em;
}
main section#price .wrap table th.top {
  width: 10%;
}
main section#price .wrap table th p {
  margin: 0 auto;
  display: inline;
}
main section#price .wrap table td, main section#price .wrap table th {
  padding: 1em;
  border: 3px solid white;
  color: #5c5c5c;
  position: relative;
}
main section#price .wrap table td p, main section#price .wrap table th p {
  margin-top: 0;
}
main section#price .wrap table td p span, main section#price .wrap table th p span {
  display: inline-block;
  font-size: 0.6em;
  color: #818181;
  line-height: 1em;
}
main section#price .wrap table td p.small, main section#price .wrap table th p.small {
  display: none;
  font-size: 0.7em;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.5em 1em;
  line-height: 1.2em;
  border-radius: 1em;
  margin-top: 0.5em;
}
main section#price .wrap table td {
  vertical-align: middle;
}
main section#price .wrap table td p {
  font-size: 1.1em;
}
main section#price .wrap table tr.head th {
  height: auto;
}
main section#price .wrap .two-cols {
  font-size: 0.8em;
}
main section#price .wrap .two-cols .left ul {
  text-align: left;
}
main section#price .wrap .two-cols .right {
  margin-top: 1em;
}
main section#price .wrap .two-cols .right span {
  margin-left: 0.5em;
}
main section#price .wrap .two-cols .right span:before {
  margin-right: 0.25em;
}
main section#price .wrap .button.reservation {
  margin-top: 2em;
}
@media screen and (max-width: 781px) {
  main section#price .wrap {
    padding-top: 1em;
  }
  main section#price .wrap h2 {
    height: 5.4vw;
    max-height: 25px;
  }
  main section#price .wrap .limit5m:before,
  main section#price .wrap .limit10m:before,
  main section#price .wrap .no-limit:before {
    width: 2vw;
    height: 2vw;
  }
  main section#price .wrap table th {
    height: 5em;
  }
  main section#price .wrap table th p {
    writing-mode: vertical-rl;
    white-space: pre;
    display: block;
  }
  main section#price .wrap table th, main section#price .wrap table td {
    font-size: 18px;
    line-height: 4.5vw;
    padding: 1em 0.5em;
    vertical-align: middle;
  }
  main section#price .wrap .two-cols {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 500px) {
  main section#price .wrap table th, main section#price .wrap table td {
    font-size: 3.5vw;
  }
}
main section#price.open .small {
  display: block !important;
}
main section#access .wrap {
  max-width: 650px;
  width: 650px;
  padding: 0 0 5em;
}
main section#access .wrap .two-cols {
  margin-top: 2em;
}
main section#access .wrap .two-cols .left {
  width: 52%;
  padding-right: 4%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-right: 1px solid #cfcfcf;
}
main section#access .wrap .two-cols .left h2 {
  height: 22px;
}
main section#access .wrap .two-cols .left ul {
  text-align: left;
}
main section#access .wrap .two-cols .left .button.google-map {
  background-color: #f2f2f2;
  color: #818181;
  justify-content: center;
  padding: 0.5em 1em;
}
main section#access .wrap .two-cols .left .button.google-map:before {
  content: "";
  display: block;
  position: absolute;
  left: 0.5em;
  background: url("/data/images/icon_gmap.png") no-repeat 50% 50%;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin: 0 0.5em 0 0;
}
main section#access .wrap .two-cols .left .address {
  font-size: 16px;
}
main section#access .wrap .two-cols .right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
main section#access .wrap .two-cols .right img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
main section#access .wrap .two-cols .right .attention {
  border: 1px solid #818181;
  border-radius: 10px;
  padding: 1em;
  font-size: 18px;
  line-height: 1.4em;
}
@media screen and (max-width: 781px) {
  main section#access iframe {
    height: 100vw;
  }
  main section#access .wrap {
    padding: 0 3vw;
    width: auto;
  }
  main section#access .wrap .two-cols {
    flex-direction: column;
    margin-top: 1em;
  }
  main section#access .wrap .two-cols .left {
    width: 100%;
    border: none;
    padding: 0;
    align-items: center;
  }
  main section#access .wrap .two-cols .left h2 {
    height: 5.2vw;
    max-height: 25px;
  }
  main section#access .wrap .two-cols .left .address {
    width: 80%;
    margin: 0 auto;
    padding: 1em 0;
  }
  main section#access .wrap .two-cols .left .button {
    padding: 1em !important;
    width: 80%;
  }
  main section#access .wrap .two-cols .right {
    width: 80%;
    margin: 0 auto 3em;
  }
}
main section#photo-spacer2 img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: 50% 40%;
}
@media screen and (max-width: 781px) {
  main section#photo-spacer2 img {
    height: 100vw;
  }
}
main section#wp-items {
  margin: 3em 0;
}
main section#wp-items .wrap {
  max-width: 1000px;
  padding: 0 3%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
main section#wp-items .wrap a {
  width: 22.5%;
  display: block;
  margin-right: 3%;
  margin-bottom: 1.5em;
}
main section#wp-items .wrap a img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
main section#wp-items .wrap a p {
  margin: 0.3em 0 0 0;
  text-align: center;
  color: #818181;
}
main section#wp-items .wrap a:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 781px) {
  main section#wp-items {
    margin: 0;
  }
  main section#wp-items .wrap {
    margin-top: 1em;
  }
  main section#wp-items .wrap a {
    width: 48.5%;
  }
  main section#wp-items .wrap a:nth-child(2n) {
    margin-right: 0;
  }
}
main section#news {
  padding: 5em 3%;
  background-color: #f6f6f6;
}
main section#news .wrap {
  max-width: 1000px;
  text-align: center;
}
main section#news .wrap h2 {
  margin-bottom: 2em;
  height: 25px;
}
main section#news .wrap .items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 4em;
}
main section#news .wrap .items a {
  width: 22.5%;
  display: block;
  margin-right: 3%;
  margin-bottom: 3em;
  color: #5c5c5c;
  text-align: left;
  position: relative;
}
main section#news .wrap .items a:nth-child(4n) {
  margin-right: 0;
}
main section#news .wrap .items a h4 {
  line-height: 1.3em;
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
main section#news .wrap .items a img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
main section#news .wrap .items a p {
  margin: 0.3em 0 0 0;
  text-align: left;
  color: #818181;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.4em;
}
main section#news .wrap .items a p.date {
  position: absolute;
  bottom: -1em;
}
@media screen and (max-width: 781px) {
  main section#news {
    padding: 1em 0 5em;
  }
  main section#news .wrap h2 {
    height: 5.5vw;
    max-height: 25px;
    margin-bottom: 2em;
  }
  main section#news .wrap .items a {
    width: 48.5%;
    margin-bottom: 2em;
  }
  main section#news .wrap .items a:nth-child(2n) {
    margin-right: 0;
  }
}

a.pagetop {
  position: fixed;
  right: 1em;
  bottom: 1em;
  width: 2em;
  height: 3em;
  opacity: 0;
}
a.pagetop img {
  width: 100%;
  height: 100%;
}
a.pagetop.fixed {
  position: fixed;
  opacity: 1;
}
@media screen and (max-width: 781px) {
  a.pagetop {
    right: 2vw;
    bottom: 3vw;
  }
}

footer {
  background: linear-gradient(135deg, #925163, #a92f46);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1em;
  height: 100px;
  position: relative;
}
footer .instagram {
  position: absolute;
  right: 1em;
  top: 1em;
  display: block;
  width: 30px;
  height: 30px;
}
footer .instagram img {
  width: 100%;
  height: 100%;
  display: block;
}
footer .logo {
  display: block;
}
footer .logo svg {
  fill: white;
  height: 35px;
  width: 146px;
}
footer .menu {
  transition: all 0.5s;
}
footer .menu ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}
footer .menu ul li {
  margin-left: 1.5em;
}
footer .menu ul li a {
  display: inline-block;
  transition: all 0.5s;
  color: white !important;
}
@media screen and (max-width: 950px) {
  footer .menu ul li {
    font-size: 14px;
    margin-left: 1em;
  }
}
@media screen and (max-width: 781px) {
  footer {
    flex-direction: column-reverse;
    height: auto;
    align-items: center;
  }
  footer .logo {
    margin: 3em auto 3em;
  }
  footer .menu {
    padding-top: 2em;
  }
  footer .menu ul {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  footer .menu ul li {
    margin: 0 0 0.5em;
  }
}

body {
  /* スタート位置でのヘッダーのデザイン変更 */
}
body.hero-zone header {
  border-bottom: none;
  background-color: transparent;
  height: 80px;
}
body.hero-zone header .logos .logo svg {
  fill: white;
}
body.hero-zone header .menu-trigger span {
  background-color: white;
}
body.hero-zone header .menu ul li a {
  color: white;
}
body.hero-zone a.pagetop {
  opacity: 0;
}
body.menu-open header {
  background-color: rgba(255, 255, 255, 0.9);
  height: 60px;
}
body.menu-open header .logos .logo svg {
  fill: url(#gradient_red) !important;
}
body.menu-open header .menu-trigger span {
  background-color: #818181;
}
body.menu-open header .menu {
  height: 100vh;
  border-top: 1px solid #818181;
}
body.menu-open header .menu ul li a {
  color: #5c5c5c;
}
body.menu-open header .menu ul li a.reservation {
  color: white;
}
body.menu-open main {
  filter: blur(4px);
}

/* Animations */
@keyframes bubble {
  0% {
    transform: scale(100%);
  }
  10% {
    transform: scale(108%);
  }
  20% {
    transform: scale(95%);
  }
  30% {
    transform: scale(100%);
  }
}
/*  WordPress */
/*  TOP */
body.blog.home .grecaptcha-badge {
  display: none;
}
body.blog.home h1, body.blog.home h2, body.blog.home h3, body.blog.home h4, body.blog.home h5 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}
body.blog.home h1 {
  text-align: center;
  margin: 5em auto 2em !important;
  font-size: 26px;
}
body.blog.home a {
  color: #5c5c5c;
}
body.blog.home .wp-site-blocks {
  padding: 0;
}
body.blog.home main {
  min-height: calc(100vh - 220px - 4em);
  padding: 0 20px;
}
body.blog.home main ul {
  margin-top: 0em;
}
body.blog.home main ul li {
  margin-top: 1em;
}
body.blog.home main ul li h2 {
  margin-top: 0 !important;
}
body.blog.home main ul li h2 a {
  font-size: 18px;
  line-height: 1.4em;
  color: #5c5c5c;
}
body.blog.home main ul li figure {
  height: 200px;
  margin-top: 0 !important;
}
body.blog.home main ul li figure a {
  display: block;
  height: 100%;
}
body.blog.home main ul li figure a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.blog.home main ul li .alignwide {
  margin-top: 0.5em;
}
body.blog.home main ul li time {
  text-decoration: none;
  font-style: normal;
  font-size: 0.8em;
}
body.blog.home main nav {
  margin-top: 5em;
}
@media screen and (max-width: 599px) {
  body.blog.home main {
    padding: 0 3vw;
  }
  body.blog.home main ul {
    gap: unset;
  }
  body.blog.home main ul li {
    width: 48%;
    margin-right: 3%;
  }
  body.blog.home main ul li:nth-child(2n) {
    margin-right: 0;
  }
  body.blog.home main ul li h2 a {
    height: auto !important;
  }
  body.blog.home main ul li figure {
    height: 150px;
  }
}

/*  投稿 */
body.single-post .grecaptcha-badge {
  display: none;
}
body.single-post h1, body.single-post h2, body.single-post h3, body.single-post h4, body.single-post h5 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}
body.single-post h3 {
  margin: 7em auto 1em;
  font-size: 18px;
  max-width: 800px;
}
body.single-post h1 {
  text-align: left;
  margin: 0em auto 1em !important;
  font-size: 26px;
}
body.single-post figure {
  margin: 0.5em auto 1em !important;
}
body.single-post p {
  margin: 0.5em 0;
}
body.single-post .alignwide {
  max-width: 800px;
}
body.single-post .wp-site-blocks {
  padding: 0;
}
body.single-post .wp-block-post-author__name {
  margin: 0 !important;
}
body.single-post main {
  min-height: calc(100vh - 220px - 6em);
  padding-bottom: 5em;
}
body.single-post .news-list {
  padding: 1em;
  max-width: 1000px;
  margin: 0 auto;
}
body.single-post .news-list li {
  text-align: left;
}
body.single-post .news-list li a {
  font-size: 16px;
  line-height: 1.2em;
}
body.single-post .news-list li > div a {
  width: 100%;
  height: 150px;
}
body.single-post .news-list li > div a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  body.single-post .news-list li {
    width: 48%;
    margin-right: 3%;
  }
  body.single-post .news-list li:nth-child(2n) {
    margin-right: 0;
  }
  body.single-post .news-list li > div a {
    height: 100px;
  }
}
body.single-post .all-articles {
  display: block;
  margin: 0 auto;
  color: #1fabd9;
  text-align: center;
  margin-bottom: 3em;
}
@media screen and (max-width: 781px) {
  body.single-post h3 {
    margin: 5em auto 2em;
    font-size: 16px;
  }
  body.single-post h1 {
    margin: 0em auto 1.5em !important;
    font-size: 26px;
  }
  body.single-post main {
    padding: 14vw 3vw 0;
  }
}

/*  固定ページ */
body.page {
  /* FAQ */
  /* RESERVATION */
  /* REVIEWS */
  /* CONTACT FORM */
}
body.page .grecaptcha-badge {
  display: none;
}
body.page h1, body.page h2, body.page h3, body.page h4, body.page h5 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}
body.page h1 {
  text-align: center;
  margin: 7em auto 4em !important;
  font-size: 26px;
}
body.page figure {
  margin-top: 0.5em;
}
body.page p {
  margin-top: 0.5em;
}
body.page .alignwide {
  max-width: 800px;
}
body.page .wp-site-blocks {
  padding: 0;
}
body.page main {
  min-height: calc(100vh - 220px - 6em);
  padding-bottom: 5em;
}
@media screen and (max-width: 781px) {
  body.page h1 {
    margin: 3em auto 1.5em !important;
    font-size: 26px;
  }
  body.page main {
    padding: 0 3vw;
  }
}
body.page.page-id-2 h1:before {
  content: "";
  display: block;
  background: url("/data/images/icon_faq_big.png") no-repeat 50% 50%;
  width: 118px;
  height: 118px;
  background-size: contain;
  margin: 0 auto 1em;
}
body.page.page-id-2 main .entry-content {
  max-width: 650px;
  margin: 0 auto;
  padding-left: 2em;
}
body.page.page-id-2 main .entry-content blockquote {
  border: none;
  position: relative;
  padding: 0;
  margin-top: 4em;
  max-width: none;
}
body.page.page-id-2 main .entry-content blockquote:before {
  content: "Q";
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #818181;
  position: absolute;
  left: -2em;
  top: 0;
}
body.page.page-id-2 main .entry-content > p {
  position: relative;
  max-width: none;
  color: #333;
}
body.page.page-id-2 main .entry-content > p:before {
  content: "A";
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  position: absolute;
  left: -2em;
  top: 0;
}
body.page.page-id-2 main .entry-content > p strong {
  font-weight: normal;
  font-size: 16px;
}
body.page.page-id-2 main .entry-content .last {
  margin-top: 5em;
  margin-left: -3em !important;
}
body.page.page-id-2 main .entry-content .last:before {
  display: none;
}
@media screen and (max-width: 781px) {
  body.page.page-id-2 main .entry-content {
    padding-left: 3.5em;
  }
  body.page.page-id-2 main .entry-content blockquote:before,
  body.page.page-id-2 main .entry-content > p:before {
    left: -1.5em;
  }
}
body.page.page-id-75 .read {
  text-align: center;
}
body.page.page-id-75 .read .button {
  margin: 1em auto;
}
body.page.page-id-75 .read .note {
  font-size: 0.8em;
}
body.page.page-id-75 .flow {
  margin-top: 5em;
}
body.page.page-id-75 .flow, body.page.page-id-75 .cancel-flow {
  background-color: #f7f8f9;
  padding: 1em;
  border-radius: 10px;
}
body.page.page-id-75 .flow h4, body.page.page-id-75 .cancel-flow h4 {
  font-size: 22px;
}
body.page.page-id-75 .flow h5, body.page.page-id-75 .cancel-flow h5 {
  font-size: 20px;
  font-weight: bold;
}
body.page.page-id-75 .flow p, body.page.page-id-75 .cancel-flow p {
  font-size: 18px;
}
body.page.page-id-75 .cancel {
  margin-top: 5em;
}
body.page.page-id-75 .cancel h4 {
  font-size: 22px;
}
@media screen and (max-width: 781px) {
  body.page.page-id-75 .wp-block-columns {
    margin-top: 4em;
    gap: unset;
  }
}
body.page.page-id-41 .entry-content {
  max-width: 600px;
  margin: 0 auto;
}
body.page.page-id-41 p.read {
  margin-bottom: 1em;
  border: none;
  padding: 0;
}
body.page.page-id-41 p {
  border-radius: 20px;
  border: 1px solid #818181;
  padding: 1em;
  display: inline-block;
}
body.page.page-id-41 p.last {
  margin-top: 2em;
  border: none;
  padding: 0;
}
body.page.page-id-154 .grecaptcha-badge, body.page.page-id-158 .grecaptcha-badge {
  display: block;
}
body.page.page-id-154 .wp-container-2 > :where(:not(.alignleft):not(.alignright)), body.page.page-id-158 .wp-container-2 > :where(:not(.alignleft):not(.alignright)) {
  max-width: 400px;
}
body.page.page-id-154 input[type=text],
body.page.page-id-154 input[type=email],
body.page.page-id-154 input[type=tel],
body.page.page-id-154 select,
body.page.page-id-154 option,
body.page.page-id-154 textarea, body.page.page-id-158 input[type=text],
body.page.page-id-158 input[type=email],
body.page.page-id-158 input[type=tel],
body.page.page-id-158 select,
body.page.page-id-158 option,
body.page.page-id-158 textarea {
  border-radius: 10px;
  border: 1px solid #999;
  padding: 0.5em 1em;
  width: 100%;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #5c5c5c;
}
body.page.page-id-154 select, body.page.page-id-158 select {
  padding: 1em 1em;
  background-color: white;
}
body.page.page-id-154 input[type=submit],
body.page.page-id-154 input[type=button], body.page.page-id-158 input[type=submit],
body.page.page-id-158 input[type=button] {
  border-radius: 10px;
  border: none;
  background-color: #1fabd9;
  color: white;
  padding: 0.5em 1em;
  font-weight: bold;
  font-size: 20px;
  min-width: 6em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
body.page.page-id-154 input[type=button], body.page.page-id-158 input[type=button] {
  background-color: #5c5c5c;
  margin-right: 1em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
body.page.page-id-154 .wpcf7-response-output, body.page.page-id-158 .wpcf7-response-output {
  padding: 1em;
  border-radius: 10px;
}
