@charset "UTF-8";

/*********************
HOME
*********************/
.paragraph {
  line-height: 1.8;
}

p.paragraph {
  margin-bottom: 1.4em;
}

@media screen and (max-width: 768px) {
  p.paragraph {
    line-height: 1.6;
  }
}

/* MAINPICT */

#home-mainpict .inner {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  min-height: 700px;
  display: flex;
  /*align-items: center;*/
  align-items: flex-end;
}

/* BANNER */
#home-mainpict .banner {
  background-color: var(--main-color);
  color: white;
  border-radius: 20px;
  padding: .6em 2em;
  width: 90%;
  max-width: 480px;
  margin-top: 2em;
}

#home-mainpict .banner .title {
  font-size: 2em;
  font-weight: 700;
}
#home-mainpict .banner .secondary {
  margin-top: .7em;
  padding-top: .5em;
  border-top: 2px dotted rgba(255,255,255,.3);
}
#home-mainpict .banner .btn:hover {
  background-color: var(--sub-color);
}

/* LINE */
.foot-sns {
  display: flex;
  gap: 10px;
}

.line-wrapper {
  position: relative;
  display: flex;
  background: white;
  align-items: center;
  padding: 15px 20px;
  border-radius: 16px;
  transition: .2s;
  box-shadow: 0px 3px 10px rgba(0,0,0,.1);
}
#home-mainpict .line-wrapper {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}
.line-wrapper:hover {
  box-shadow: none;
  translate: 0 2px;
}
.line-wrapper a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.line-wrapper .body {
  text-align: center;
  font-weight: 700;
}
.line-wrapper .qr {
  width: 90px;
  margin-right: 20px;
}
.line-wrapper .bullet {
  background: #00b900;
  color: white;
  font-size: 1.1rem;
  border-radius: 20px;
  margin-bottom: 5px;
  padding: 2px 10px;
}
.line-wrapper.instagram .bullet {
  background: #b92c9b;
}

@media (max-width: 679px) {
  .line-wrapper {
    padding: 10px;
    margin: 0 auto;
    width: 50%;
    align-items: start;
  }
  #home-mainpict .line-wrapper {
    right: 0;
    left: 0;
    bottom: 20px;
    margin: 0 auto;
  }
  .line-wrapper .body {
    width: 100%;
  }
  .line-wrapper .qr {
    display: none;
  }
  #home-mainpict .banner {
    width: 100%;
    max-width: 680px;
  }
}

/* SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation-duration: 20s;
  animation-name: slide-photo;
  animation-iteration-count: infinite;
}

.pict01 {
  background-image: url('../images/main-photo01.jpg');
}

.pict02 {
  background-image: url('../images/main-photo02.jpg');
  animation-delay: 5s;
}

.pict03 {
  background-image: url('../images/main-photo03.jpg');
  animation-delay: 10s;
}

.pict04 {
  background-image: url('../images/main-photo04.jpg');
  animation-delay: 15s;
}

@keyframes slide-photo {
  0% {
    opacity: 0;
    transform: scale(1);
		z-index: 1;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
		z-index: 0;
  }
}

/* COPY */
#home-mainpict .inner .copy-wrapper {
  width: 90%;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
#home-mainpict .inner .copy {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1;
}
#home-mainpict .inner .copy small {
  font-size: 50%;
}

@media (max-width: 991px) {
  #home-mainpict .inner {
    min-height: 600px;
  }
}

@media screen and (max-width: 768px) {
  #home-mainpict .inner {
    height: 70vh;
    min-height: 300px;
    max-height: 600px;
  }

  #home-mainpict .inner .copy-wrapper {
    width: 100%;
    margin: 20px;
  }
  #home-mainpict .inner .copy {
    font-size: 8vw;
  }
}

/* NEWS */
#news-wrapper .inner {
  margin: 1.8em 0;
  display: flex;
  align-items: center;
}

#news-wrapper h3 {
  font-size: 1.1em;
  font-weight: 700;
  margin-right: 2em;
  padding-bottom: .3em;
  border-bottom: 1px solid var(--main-color);
}
.news-inner {
  width: 100%;
}
.news-inner iframe {
  width: 100%;
  height: auto;
}

/* LEAD */
#section-lead {
  background: var(--bg-color-pale);
  text-align: center;
}

#section-lead h2 img {
  width: 80%;
  max-width: 580px;
}

#section-lead .body {
  line-height: 1.8;
  font-size: 1.1em;
}

#section-lead .box .title {
  font-weight: 700;
  position: relative;
}

@media (min-width: 768px) {
  #section-lead .box .title::After {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sub-color);
    position: absolute;
    top: calc(50% - 4px);
    right: 1em;
  }
}

@media (max-width: 767px) {
  #section-lead .box .title::After {
    content: "";
    display: block;
    width: 60px;
    height: 0;
    border-bottom: 2px dotted var(--sub-color);
    margin: 0 auto 15px;
    padding: 4px 0;
  }
}

/* SECTION-TITLE */
header.section-title h2 .en {
  font-size: 1.8em;
  font-weight: 600;
  font-family: var(--EN-gothic);
  letter-spacing: 2px;
  line-height: 1.2;
  margin: 0;
}

header.section-title h2 .jp {
  font-size: 1.6rem;
  display: block;
}

header.section-title figure img {
  width: 100%;
  max-width: 180px;
}

#section-about .point h3 {
  font-weight: 700;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  header.section-title figure img {
    max-width: 100px;
  }

  header.section-title h2 .en {
    font-size: 1.6em;
  }

  header.section-title h2 .jp {
    font-size: 1.4rem;
  }
}

/* SECTION-ABOUT */

.point {
  background: var(--bg-color-pale);
  padding: 2.4em;
  border-radius: 40px;
}

.point figure {
  position: relative;
}

.point figure img {
  border-radius: 20px;
  object-fit: cover;
  min-height: 200px;
}

.point figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 50px;
  background: var(--bg-color-pale);
  border-radius: 0 0 15px 0;
  font-family: var(--EN-gothic);
  text-align: center;
  line-height: 1;
  font-weight: 600;
}

.point figure figcaption::before {
  content: "";
  position: absolute;
  right: -31px;
  top: 0;
  width: 32px;
  height: 32px;
  border-top-right-radius: 16px;
  box-shadow: 0 -16px var(--bg-color-pale);
  rotate: -90deg;
}

.point figure figcaption::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -31px;
  width: 32px;
  height: 32px;
  border-top-right-radius: 16px;
  box-shadow: 0 -16px var(--bg-color-pale);
  rotate: -90deg;
}

.point figure figcaption .caption-point {
  position: relative;
  font-size: 1.2rem;
}

.point figure figcaption .num {
  display: block;
  font-size: 2.4rem;
}

@media (max-width: 575px) {
  .point {
    border-radius: 30px;
    padding: 1.8em 1.4em;
  }
}

/*********************
FACILITY
*********************/

#section-facility {
  background: #f7f4ec;
}

@media (min-width: 992px) {
  #section-facility {
    margin-top: 100px;
  }

  #section-facility header {
    translate: 0 -100px;
  }

  #section-facility header+div {
    margin-top: -100px;
  }
}

@media (max-width: 991px) {
  #section-facility {
    margin-top: 50px;
  }

  #section-facility header {
    translate: 0 -50px;
  }

  #section-facility header+div {
    margin-top: -50px;
  }
}

/* icon */
#section-facility .icon-wrapper {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 15px;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
}

#section-facility .icon-wrapper figure {
  width: calc((100% - 105px) / 8);
}

#section-facility .icon-wrapper figure img {
  display: block;
  padding: 1em;
  background: white;
  border-radius: 10px;
  margin-bottom: 5px;
}

#section-facility .icon-wrapper figure.photo img {
  padding: 0;
}

#section-facility .icon-wrapper figcaption {
  font-size: .9em;
}

@media (max-width: 1289px) {
  #section-facility .icon-wrapper {
    max-width: 880px;
  }

  #section-facility .icon-wrapper figure {
    width: 110px;
  }
}

/* spec */
#section-facility .facility-primary h3 {
  font-size: 1.2em;
  font-weight: 700;
}

#section-facility .facility-primary h3 span {
  display: block;
  border-bottom: 1px solid var(--main-color);
  font-size: 1.2rem;
  padding-bottom: 4px;
}

#section-facility .seat-spec {
  position: relative;
  padding-left: 60px;
}

#section-facility .seat-spec>h3 {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: vertical-rl;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 5px;
}

#section-facility .seat-spec h4 {
  position: relative;
  margin-bottom: .5em;
  padding-left: 20px;
}
#section-facility .seat-spec h4 small {
  font-size: 1.2rem;
}

#section-facility .seat-spec h4::before {
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  background: #bbded6;
  border: 1px solid var(--main-color);
}

#section-facility .seat-spec .seat01 h4::before {
  background: #f2f2ad;
}

#section-facility .seat-spec .seat02 h4::before {
  background: #f7e0c9;
}

#section-facility figure.floor {
  text-align: center;
}

#section-facility figure.floor img {
  width: 100%;
  max-width: 440px;
}

@media (max-width: 575px) {
  #section-facility .seat-spec {
    padding-left: 30px;
  }
}

/*********************
PRICE
*********************/
#section-price .plan {
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2em;
}

#section-price .monthly .plan {
  text-align: center;
}

#section-price h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: .5em;
}

#section-price .monthly .plan h4 {
  padding: .6em;
  border-radius: 10px;
  background: #f7f4ec;
  line-height: 1;
  margin-bottom: 1em;
}

#section-price .monthly .plan dl.time {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1em;
  margin-bottom: 1em;
}

#section-price .monthly .plan dl dt {
  font-size: .9em;
}

@media (max-width: 767px) {
  #section-price .sep-b {
    border-bottom: 3px dotted var(--border-color);
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}

/*********************
OUTLINE
*********************/
.inner-bg {
  background: var(--bg-color-pale);
  border-radius: 20px;
  padding: 4em 2em;
}

@media screen and (max-width: 575px) {

  #outline,
  #faq {
    background: var(--bg-color-pale);
    margin-bottom: 3em;
  }

  .inner-bg {
    border-radius: 0;
    padding: 3em 0 0;
  }
}

/*********************
FLOW
*********************/
#section-flow {
  background: #f9f9e4;
}

.flow-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.flow-wrapper .step {
  font-weight: 600;
  color: var(--sub-color);
  font-size: .9em;
  margin: 0 auto 1em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--sub-color);
  width: fit-content;
}
.flow-wrapper li {
  position: relative;
  background: white;
  padding: 1.4em 2em 2em;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
}
.flow-wrapper.primary li {
  width: calc( (100% - 90px) / 4);
}
.flow-wrapper.primary li figure {
  margin-bottom: 10px;
}
.flow-wrapper.primary li figure img {
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
  border-radius: 7px;
}
.flow-wrapper.secondary li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc( (100% - 60px) / 3);
}

.flow-wrapper.secondary li i {
  display: block;
  top: 0;
  background: #f9f9e4;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 1em;
}

.flow-wrapper li::before {
  position: absolute;
  display: block;
  content: "";
  left: -28px;
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sub-color);
}
.flow-wrapper li::after {
  position: absolute;
  display: block;
  content: "";
  left: -13px;
  top: calc(50% - 5px);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid white;
    border-right: 0;
}
.flow-wrapper.primary li:first-child:before,
.flow-wrapper.primary li:first-child:after {
  content: none;
}

@media (max-width: 991px) {
  .flow-wrapper.primary {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
  .flow-wrapper.primary li {
    width: calc( (100% - 60px) / 2);
  }
  .flow-wrapper.secondary li {
    width: calc( (100% - 90px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .flow-wrapper.secondary li i {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .flow-wrapper {
    flex-direction: column;
  }
  .flow-wrapper .step {
    display: none;
  }
  .flow-wrapper.primary li,
  .flow-wrapper.secondary li {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 1.4em;
  }
  
.flow-wrapper li::before {
  left: calc(50% - 17px);
  top: -35px;
  width: 34px;
  height: 34px;
}
.flow-wrapper li::after {
  left: calc(50% - 5px);
  top: -20px;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid white;
    border-bottom: 0;
}
  .flow-wrapper li i {
    position: relative;
    width: 100px;
    margin-right: 20px;
  }
  .flow-wrapper.secondary li div {
    width: calc(100% - 120px);
    text-align: left;
  }
  .flow-wrapper.primary li figure img {
    width: 90%;
    max-width: 240px;
  }
}

/*********************
ACCESS
*********************/

@media (min-width: 992px) {
  .map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
  }

  .map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/*********************
FAQ
*********************/
#section-faq {
  background: #f7f4ec;
}

.faq-wrapper dl {
  border-bottom: 1px solid var(--border-color);
}

.faq-wrapper dl:last-of-type {
  border-bottom: none;
}

.faq-wrapper dt,
.faq-wrapper dd {
  position: relative;
}

.faq-wrapper dt {
  display: flex;
  align-items: center;
  padding: 15px 30px 15px 15px;
  cursor: pointer;
  font-weight: 500;
}

.faq-wrapper dt.active {
  background: white;
}

.faq-wrapper dt::before {
  display: block;
  content: "Q.";
  font-family: var(--EN-gothic);
  font-weight: 600;
  font-size: 28px;
  margin-right: 10px;
  color: var(--sub-color);
}

.faq-wrapper dt::after {
  content: "＋";
  position: absolute;
  right: 10px;
  font-size: 1.2em;
  color: var(--sub-color);
}

.faq-wrapper dt.active::after {
  content: "－";
}

.faq-wrapper dt .cat {
  display: inline-block;
  width: fit-content;
  text-align: center;
  line-height: 1;
  font-size: .7em;
  background-color: var(--bg-color-pale);
  color: var(--sub-color);
  padding: 4px 10px;
  margin-right: 10px;
  min-width: calc(5em + 20px);
}

.faq-wrapper dd {
  padding: 25px 15px;
  border-top: 1px dashed var(--border-color);
  display: none;
  line-height: 1.8;
}

@media screen and (max-width: 1200px) {
  #faq .faq-wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .faq-wrapper dt {
    padding: 10px 30px 10px 10px;
    font-size: 1em;
  }

  .faq-wrapper dd {
    padding: 15px 5px 25px;
  }

  .faq-wrapper dt::before {
    font-size: 20px;
  }

  .faq-wrapper dd {
    font-size: 1em;
  }
}

/*********************
GALLERY
*********************/
.gallery-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}
ul.gallery {
  display: flex;
  align-items: center;
  display: flex;
  animation: loop-slide 45s infinite linear 1s both;
}
ul.gallery>li {
  margin-right: 20px;
  margin-bottom: 20px;
}
ul.gallery>li img {
  max-width: fit-content;
  border-radius: 10px;
}
ul.gallery>li:nth-child(even) img {
  width: 300px;
  height: 200px;
}
ul.gallery>li:nth-child(odd) img {
  width: 200px;
  height: 240px;
  object-fit: cover;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 680px) {
  ul.gallery>li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
ul.gallery>li:nth-child(even) img {
  width: 150px;
  height: 100px;
}
ul.gallery>li:nth-child(odd) img {
  width: 100px;
  height: 120px;
}
}

/*********************
FORM
*********************/

.form {
  padding: 0;
  margin: 0;
}

input[type="submit"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  appearance: none;
  box-shadow: none;
  outline: none;
  border: none;
  background: white;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.2s;
  border-radius: 3px;
  border: 1px solid #ccc;
}

input.short {
  width: 50%;
  min-width: 200px;
  max-width: 280px;
}

@media screen and (max-width: 880px) {
  input.short {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: #f8f8f8;
  border: 1px solid var(--main-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

.form dl:first-of-type {
  border-top: 1px dotted var(--main-color);
}
.form dl {
  padding: 1.5em 0;
  margin: 0;
  border-bottom: 1px dotted var(--main-color);
}

.form dl.form-required dt:after {
  content: "必須";
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  background: #cd5c5c;
  color: white;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 3px;
}

.form .label-box {
  display: block;
  background: white;
  border-radius: 5px;
  padding: 0.5em 1em;
}

.form .label-box label {
  width: 100%;
}

/* radio */

.form .wpcf7-list-item {
  display: block !important;
  margin: 0 0 10px;
}

.form ul.radio li {
  margin-bottom: .5em;
  font-weight: 500;
}
.form ul.radio li input {
  margin-right: 5px;
}

/*select*/
.form .selectbox {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.form .selectbox select {
  cursor: pointer;
  font-size: 16px;
  padding: 8px 25px 8px 15px;
  text-indent: 0.01px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.form .selectbox::after {
  position: absolute;
  content: "";
  top: 18px;
  right: 8px;
  width: 0;
  height: 0;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #666 transparent transparent transparent;
}

/*button*/
.submit-btn {
  text-align: center;
  margin-top: 20px;
}
.submit-btn input[type="submit"],
.submit-btn input[type="button"],
.submit-btn button[type="submit"],
input[type="submit"].submit-btn,
input[type="button"] {
  transition: 0.2s;
  color: white;
  background: var(--main-color);
  font-weight: bold;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 0.9em;
  padding: 1.2em 2em;
  border-radius: 5px;
  font-family: var(--JP-gothic);
}

input[type="submit"].submit-btn:disabled {
  background: #ccc;
  color: white;
  border: 2px solid #444;
  box-shadow: none;
}

input[type="submit"].submit-btn:enabled:hover {
  background: var(--sub-color);
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

input[type="button"] {
  background: var(--append-color);
  color: white;
  border: none;
}

.submit-btn input[type="submit"]:hover,
.submit-btn input[type="button"]:hover,
.submit-btn button[type="submit"]:hover,
input[type="button"]:hover {
  opacity: .8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 881px) {
  .form dl {
    display: flex;
  }

  .form dl dt {
    width: 240px;
  }

  .form dl dd {
    width: calc(100% - 240px);
    padding-left: 1em;
  }
  .form.confirm dt {
    border-right: 1px dashed var(--border-color);
    padding-right: 1em;
  }
}

@media screen and (max-width: 880px) {
  .form dl {
    margin: 0 0 1em;
    display: block;
  }
  .form dl dt {
    line-height: 1;
    padding-bottom: 10px;
  }

  .form dl dd {
    margin-bottom: 0;
  }
}

input#requestName {
  border: none;
  background: #f5ecd7;
  font-weight: bold;
}

#contact_campaign {
  background: var(--sub-color);
  color: white;
  border: none;
}

#reserve .privacy .inner {
  height: 300px;
  overflow: auto;
  border: 1px solid #EEE;
  background: white;
  font-size: .9em;
}
#reserve .privacy .inner>* {
  padding: 1em;
  line-height: 1.8;
}
#reserve .privacy .inner h5 {
  font-size: 1.1em;
  margin: 0;
  padding-bottom: 0;
}
#reserve .privacy .inner p {
  margin: 0 0 1em;
}

/*********************
CONTACT
*********************/
.page-contact #head-primary {
  justify-content: center;
}

