@charset "UTF-8";
:root {
  --color-black: #260303;
  --color-yellow: #FFD800;
  --color-orange: #FF6200;
  --color-green: #26AA07;
  --color-cream: #FFF9E3;
  --color-gray: #F7F7F7;
  --transition-base: 0.3s;
  --hover-opacity: 0.6;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

:where(body) {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  width: 100%;
  height: auto;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mt-\[10px\] {
  margin-top: 10px;
}

.md\:mt-\[10px\] {
  margin-top: 10px;
}

.lg\:mt-\[10px\] {
  margin-top: 10px;
}

.mt-\[24px\] {
  margin-top: 24px;
}

.md\:mt-\[24px\] {
  margin-top: 24px;
}

.lg\:mt-\[24px\] {
  margin-top: 24px;
}

.txt-align-\[center\] {
  text-align: center;
}

.txt-color-\[black\] {
  --txt-color: var(--color-black);
}

.txt-color-\[white\] {
  --txt-color: #fff;
}

.bg-color-\[black\] {
  --bg-color: var(--color-black);
}

.bg-color-\[white\] {
  --bg-color: #FFF;
}

.bg-color-\[yellow\] {
  --bg-color: var(--color-yellow);
}

.bg-color-\[orange\] {
  --bg-color: var(--color-orange);
}

.bg-color-\[green\] {
  --bg-color: var(--color-green);
}

.bg-color-\[cream\] {
  --bg-color: var(--color-cream);
}

.c-paragraph {
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

.c-paragraph-equal {
  text-align: justify;
  word-break: keep-all;
}

.c-heading-lv2 {
  text-align: center;
  font-weight: 600;
}
.c-heading-lv2 span {
  font-size: min(pv(22), 22px);
  display: inline-block;
  padding-top: pv(20);
}
@media only screen and (min-width:1400px) {
  .c-heading-lv2 span {
    font-size: 22px;
  }
}
@media only screen and (max-width:769px) {
  .c-heading-lv2 span {
    font-size: 14px;
    padding-top: 12px;
  }
}

.c-heading-lv3 {
  font-weight: 400;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  padding: 20px 0;
  text-align: center;
  border-radius: 10px;
  background: var(--color-yellow);
  width: 250px;
  margin: 0 auto;
}
.c-button > span {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}
.c-button > img {
  width: 16px;
  height: auto;
}
.c-button:hover {
  opacity: 0.7;
}

.pc-br {
  display: block;
}
@media only screen and (min-width:1400px) {
  .pc-br {
    display: block;
  }
}
@media only screen and (max-width:769px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media only screen and (min-width:1400px) {
  .sp-br {
    display: none;
  }
}
@media only screen and (max-width:769px) {
  .sp-br {
    display: block;
  }
}

.middle-br {
  display: block;
}
@media only screen and (min-width:1400px) {
  .middle-br {
    display: none;
  }
}
@media only screen and (max-width:769px) {
  .middle-br {
    display: none;
  }
}

section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
section .container {
  position: relative;
  margin: 0 auto;
}

.header {
  width: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
}
.header.is-active {
  z-index: 12;
}
@media only screen and (max-width:769px) {
  .header.is-active {
    height: 100%;
  }
}
.header .inner {
  display: flex;
}
@media only screen and (max-width:769px) {
  .header .inner {
    height: 100%;
  }
}
.header .leftMenu {
  color: #FFF;
  width: 30%;
  padding: 33px 0 0 56px;
}
.header .leftMenu p a {
  font-size: 1rem;
}
.header .leftMenu p a:hover {
  opacity: 0.6;
}
@media only screen and (max-width:769px) {
  .header .leftMenu {
    display: none;
  }
}
.header.changeColor .leftMenu {
  color: #231815;
}
.header .rightMenu {
  max-width: 370px;
  width: 90%;
  padding: 33px 56px 0 0;
  text-align: right;
  position: relative;
  margin-left: auto;
  transition: transform 0.3s;
  margin-top: -20px;
}
@media only screen and (max-width:769px) {
  .header .rightMenu {
    max-width: 100%;
    width: 100%;
    height: 100%;
    padding: 33px;
    margin-top: 0px;
  }
}
.header .rightMenu.is-active {
  background: #eadab9;
}
.header .rightMenu.is-active .navigation {
  opacity: 1;
}
.header .navigation {
  max-width: 370px;
  width: 90%;
  margin-left: auto;
  opacity: 0;
  transition: all 300ms;
  display: none;
}
@media only screen and (max-width:769px) {
  .header .navigation {
    height: 100%;
    margin: 0 auto;
  }
}
.header .navigation.is-active {
  opacity: 1;
  display: block;
}
.header .navigation .langMenu {
  text-align: left;
  font-size: 1rem;
  padding-top: 40px;
}
.header .navigation .langMenu a:hover {
  opacity: 0.6;
}
.header .navigation .navigation-list {
  text-align: left;
  font-size: 1.25rem;
  padding-top: 40px;
}
.header .navigation .navigation-list li {
  padding: 10px 0;
}
.header .navigation .navigation-list li a:hover {
  opacity: 0.6;
}
.header .navigation .instagramLink {
  display: block;
  width: 100px;
  height: auto;
  padding-top: 65px;
  padding-bottom: 40px;
}
.header .navigation .instagramLink img {
  width: 100%;
  height: auto;
}
.header .c-nav-btn {
  height: 44px;
  width: 50px;
  background: none;
  border: none;
  display: block;
  margin-left: auto;
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 100;
}
@media only screen and (max-width:769px) {
  .header .c-nav-btn {
    top: 30px;
    right: 40px;
  }
}
.header .c-nav-btn::after,
.header .c-nav-btn::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  display: block;
  background: #FFF;
}
.header.changeColor .c-nav-btn::after, .header.changeColor .c-nav-btn::before {
  background: #231815;
}
.header .c-nav-btn::before {
  top: 10px;
}
.header .c-nav-btn::after {
  top: 24px;
}
@media only screen and (max-width:769px) {
  .header .c-nav-btn::after {
    top: 16px;
  }
}
.header .c-nav-btn::after {
  transform: translateY(8px);
}
.header .c-nav-btn::after,
.header .c-nav-btn::before {
  transition: transform 0.3s;
}
.header .c-nav-btn.is-active::before {
  transform: rotate(25deg);
  box-shadow: none;
  top: 17px;
}
.header .c-nav-btn.is-active::after {
  transform: rotate(-25deg);
  top: 17px;
}

.inquiryPage .header, .infoPage.singlePage .header {
  z-index: 1;
}
.inquiryPage .header.is-active, .infoPage.singlePage .header.is-active {
  z-index: 10;
}
.inquiryPage .leftMenu, .infoPage.singlePage .leftMenu {
  color: #231815;
}
.inquiryPage .c-nav-btn::after,
.inquiryPage .c-nav-btn::before, .infoPage.singlePage .c-nav-btn::after,
.infoPage.singlePage .c-nav-btn::before {
  background: #231815;
}

.loading {
  display: none;
}

.reservationBtn-fixed {
  position: fixed;
  z-index: 10;
  opacity: 0;
  transition: 0.3s;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 145px;
  height: 70px;
}
.reservationBtn-fixed a {
  margin: auto;
  padding: 0;
}
.reservationBtn-fixed a:hover {
  opacity: 0.6;
}
.reservationBtn-fixed a img {
  width: 100%;
  height: auto;
}
.reservationBtn-fixed.is-active {
  opacity: 1;
}

body.footer-active #js-rsvBtn {
  opacity: 0;
}

.topPage .mainSlidePh {
  max-width: 100%;
  width: 100%;
  padding: 20px;
}
.topPage .mainSlidePh .slider-container {
  width: 100%;
  height: calc(100vh - 40px);
  overflow: hidden;
  border-radius: 20px;
}
.topPage .mainSlidePh .slide-img_wrapper {
  max-width: 100%;
  width: 100%;
  height: calc(100vh - 40px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.topPage .mainSlidePh .slide-img_wrapper.-no01 {
  background-image: url("../../asset/images/mainSlidePh01.webp");
}
.topPage .mainSlidePh .slide-img_wrapper.-no01 .text {
  width: 233px;
  height: auto;
}
@media only screen and (max-width:769px) {
  .topPage .mainSlidePh .slide-img_wrapper.-no01 .text {
    width: 143px;
    left: 33% !important;
  }
}
.topPage .mainSlidePh .slide-img_wrapper.-no02 {
  background-image: url("../../asset/images/mainSlidePh02.webp");
}
.topPage .mainSlidePh .slide-img_wrapper.-no02 .text {
  width: 69px;
  height: auto;
}
@media only screen and (max-width:769px) {
  .topPage .mainSlidePh .slide-img_wrapper.-no02 .text {
    width: 49px;
    top: 30% !important;
  }
}
.topPage .mainSlidePh .slide-img_wrapper.-no03 {
  background-image: url("../../asset/images/mainSlidePh03.webp");
}
.topPage .mainSlidePh .slide-img_wrapper.-no03 .text {
  width: 69px;
  height: auto;
}
@media only screen and (max-width:769px) {
  .topPage .mainSlidePh .slide-img_wrapper.-no03 .text {
    width: 49px;
    top: 30% !important;
  }
}
.topPage .mainSlidePh .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes fade-text {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.topPage .mainSlidePh .swiper-slide-active .text {
  animation-name: fade-text;
  animation-duration: 3s;
  animation-delay: 2s;
  animation-fill-mode: both;
}
.topPage .mainSlidePh .scroll-down {
  position: absolute;
  left: 60px;
  bottom: 50px;
  z-index: 1;
}
.topPage .mainSlidePh .scroll-down img {
  width: 26px;
  height: auto;
}
.topPage .reservationBtn-fixed {
  opacity: 1;
}
.topPage .info {
  width: 100%;
  margin: 100px auto 70px auto;
}
@media only screen and (max-width:1420px) {
  .topPage .info {
    width: 92%;
  }
}
.topPage .info .infoTitle {
  font-size: 28px;
  font-size: clamp(22px, 1.9718309859vw, 28px);
  margin-bottom: 20px;
  text-align: left;
}
.topPage .info .infoList {
  max-width: 480px;
  width: 100%;
}
@media only screen and (max-width:1420px) {
  .topPage .info .infoList {
    margin: 0 auto;
  }
}
.topPage .info .infoList li a {
  display: block;
  padding: 12px 0;
  border-bottom: dashed 1px #231815;
}
.topPage .info .infoList h3 {
  font-size: 20px;
  font-size: clamp(15px, 1.4084507042vw, 20px);
  font-weight: normal;
}
.topPage .info .infoList .date {
  font-size: 20px;
  font-size: clamp(14px, 1.4084507042vw, 20px);
  padding-bottom: 8px;
}
.topPage .info .infoMoreLink {
  max-width: 480px;
  width: 100%;
  text-align: right;
  display: block;
  margin-top: 20px;
}
@media only screen and (max-width:1420px) {
  .topPage .info .infoMoreLink {
    margin: 0 auto;
  }
}
.topPage .info .infoMoreLink .btnText {
  text-decoration: underline;
  font-size: 20px;
  font-size: clamp(16px, 1.4084507042vw, 20px);
}
.topPage .about {
  position: relative;
  margin: 135px auto 125px;
}
@media only screen and (max-width:1420px) {
  .topPage .about {
    max-width: 1420px;
  }
}
.topPage .about .catchCopy {
  position: absolute;
  right: 130px;
}
@media only screen and (max-width:1420px) {
  .topPage .about .catchCopy {
    position: relative;
    right: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.topPage .about .catchCopy img {
  width: 105px;
  height: auto;
}
@media only screen and (max-width:769px) {
  .topPage .about .catchCopy img {
    width: 70px;
  }
}
.topPage .about .phWrap {
  padding-top: 50px;
}
.topPage .about .phWrap img {
  width: 387px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .topPage .about .phWrap img {
    width: 92%;
    max-width: 704px;
  }
}
@media only screen and (max-width:1420px) {
  .topPage .about .phWrap .phWrapTop {
    display: none;
  }
}
.topPage .about .phWrap .phWrapBottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media only screen and (max-width:1420px) {
  .topPage .about .phWrap .phWrapBottom {
    display: none;
  }
}
.topPage .about .phWrap .phWrapSp {
  display: none;
}
@media only screen and (max-width:1420px) {
  .topPage .about .phWrap .phWrapSp {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    overflow-x: auto;
    white-space: nowrap;
    gap: 3%;
    -webkit-overflow-scrolling: touch;
    margin-left: 3%;
  }
}
.topPage .about .linkWrap {
  margin: 100px auto 0;
}
.topPage .about .linkWrap a {
  text-align: center;
}
.topPage .about .linkWrap a:hover {
  opacity: 0.6;
}
.topPage .about .linkWrap a .shoulderCopy {
  display: block;
  font-size: 25px;
  font-size: clamp(21px, 1.7605633803vw, 25px);
}
.topPage .about .linkWrap a .mainCopy {
  font-size: 40px;
  font-size: clamp(32px, 2.8169014085vw, 40px);
  font-weight: normal;
}
.topPage .about .linkWrap a .more {
  display: block;
  text-decoration: underline;
  font-size: 20px;
  font-size: clamp(18px, 1.4084507042vw, 20px);
}
.topPage .about .linkWrap img {
  width: 291px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .topPage .about .linkWrap img {
    width: 100%;
    max-width: 294px;
  }
}
@media only screen and (max-width:769px) {
  .topPage .about .linkWrap img {
    max-width: 184px;
  }
}
.topPage .cuisine {
  position: relative;
  margin: 0 auto 125px;
  padding-top: 130px;
}
@media only screen and (max-width:1420px) {
  .topPage .cuisine {
    max-width: 1420px;
    border-top: solid 1px #231815;
  }
}
.topPage .cuisine .catchCopy {
  position: absolute;
  left: 130px;
}
@media only screen and (max-width:1420px) {
  .topPage .cuisine .catchCopy {
    position: relative;
    right: unset;
    left: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.topPage .cuisine .catchCopy img {
  width: 169px;
  height: auto;
}
@media only screen and (max-width:769px) {
  .topPage .cuisine .catchCopy img {
    width: 112px;
  }
}
.topPage .cuisine .phWrap {
  padding-top: 50px;
}
.topPage .cuisine .phWrap img {
  width: 387px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .topPage .cuisine .phWrap img {
    width: 92%;
    max-width: 704px;
  }
}
.topPage .cuisine .phWrap .phWrapTop {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width:1420px) {
  .topPage .cuisine .phWrap .phWrapTop {
    display: none;
  }
}
.topPage .cuisine .phWrap .phWrapBottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media only screen and (max-width:1420px) {
  .topPage .cuisine .phWrap .phWrapBottom {
    display: none;
  }
}
.topPage .cuisine .phWrap .phWrapSp {
  display: none;
}
@media only screen and (max-width:1420px) {
  .topPage .cuisine .phWrap .phWrapSp {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    overflow-x: auto;
    white-space: nowrap;
    gap: 3%;
    -webkit-overflow-scrolling: touch;
    margin-left: 3%;
  }
}
.topPage .cuisine .linkWrap {
  margin: 100px auto 0;
}
.topPage .cuisine .linkWrap a {
  text-align: center;
}
.topPage .cuisine .linkWrap a:hover {
  opacity: 0.6;
}
.topPage .cuisine .linkWrap a .shoulderCopy {
  display: block;
  font-size: 25px;
  font-size: clamp(21px, 1.7605633803vw, 25px);
}
.topPage .cuisine .linkWrap a .mainCopy {
  font-size: 40px;
  font-size: clamp(32px, 2.8169014085vw, 40px);
  font-weight: normal;
}
.topPage .cuisine .linkWrap a .more {
  display: block;
  text-decoration: underline;
  font-size: 20px;
  font-size: clamp(18px, 1.4084507042vw, 20px);
}
.topPage .cuisine .linkWrap img {
  width: 423px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .topPage .cuisine .linkWrap img {
    width: 100%;
    max-width: 434px;
  }
}
@media only screen and (max-width:769px) {
  .topPage .cuisine .linkWrap img {
    max-width: 264px;
  }
}
.topPage .loopSlidePh {
  padding-top: 175px;
  margin-bottom: 100px;
  max-width: 100%;
  width: 100%;
}
@media only screen and (max-width:1420px) {
  .topPage .loopSlidePh {
    padding-top: 130px;
    border-top: solid 1px #231815;
    max-width: 1420px;
  }
}
.topPage .loopSlidePh {
  /* 外枠：はみ出た部分を隠す */
}
.topPage .loopSlidePh .loopSlider {
  overflow: hidden;
  width: 100%;
}
.topPage .loopSlidePh {
  /* トラック：2つのリストを横並びにする */
}
.topPage .loopSlidePh .slide-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content; /* 中身の幅に合わせる */
  animation: scroll 20s linear infinite; /* 20秒かけてループ */
}
.topPage .loopSlidePh {
  /* 各リストのスタイル */
}
.topPage .loopSlidePh .slide-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.topPage .loopSlidePh .slide-list li {
  width: 387px; /* 画像の幅 */
  padding: 0 10px;
}
.topPage .loopSlidePh .slide-list img {
  width: 100%;
  height: auto;
  display: block;
}
.topPage .loopSlidePh {
  /* 左へ流れるアニメーション */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* 全体の半分（1つ目のリスト分）まで進む */
  }
}
.topPage .howto {
  max-width: unset;
  background: #f7f3eb;
}
@media only screen and (max-width:1420px) {
  .topPage .howto {
    padding-top: 80px;
    margin-top: 80px;
    max-width: 1420px;
  }
}
.topPage .howto .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 147px 0 170px;
}
@media only screen and (max-width:1420px) {
  .topPage .howto .inner {
    padding: 0;
  }
}
@media only screen and (max-width:769px) {
  .topPage .howto .inner {
    width: 82%;
  }
}
.topPage .howto .txtphWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width:1420px) {
  .topPage .howto .txtphWrap {
    align-items: center;
    display: block;
  }
}
@media only screen and (max-width:1420px) {
  .topPage .howto .el-txtBlock {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.topPage .howto .el-txtBlock h2 {
  font-size: 2.5rem;
  font-weight: normal;
}
@media only screen and (max-width:1420px) {
  .topPage .howto .el-txtBlock h2 {
    font-size: 50px;
    font-size: clamp(36px, 3.5211267606vw, 50px);
  }
}
@media only screen and (max-width:769px) {
  .topPage .howto .el-txtBlock h2 {
    font-size: 1.75rem;
  }
}
.topPage .howto .el-txtBlock p {
  font-size: 1.25rem;
  margin-top: 70px;
}
@media only screen and (max-width:1420px) {
  .topPage .howto .el-txtBlock p {
    margin-top: 56px;
    font-size: 35px;
    font-size: clamp(28px, 2.4647887324vw, 35px);
  }
}
@media only screen and (max-width:769px) {
  .topPage .howto .el-txtBlock p {
    font-size: 1.25rem;
  }
}
.topPage .howto .el-txtBlock p .spBr {
  display: none;
}
@media only screen and (max-width:1420px) {
  .topPage .howto .el-txtBlock p .spBr {
    display: block;
  }
}
.topPage .howto .el-phBlock {
  width: 387px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .topPage .howto .el-phBlock {
    position: relative;
    margin: 90px auto 0 auto;
    width: 100%;
    max-width: 387px;
  }
}
.topPage .howto .linkWrap {
  display: flex;
  justify-content: right;
  margin-top: 50px;
}
@media only screen and (max-width:1420px) {
  .topPage .howto .linkWrap {
    padding-bottom: 90px;
    width: 92%;
    margin: 50px auto 0 auto;
  }
}
.topPage .howto .linkWrap a {
  display: flex;
  align-items: center;
}
.topPage .howto .linkWrap span {
  font-size: 25px;
  font-size: clamp(21px, 1.7605633803vw, 25px);
}
.topPage .howto .linkWrap img {
  width: 25px;
  height: auto;
}
@media only screen and (max-width:769px) {
  .topPage .howto .linkWrap img {
    width: 18px;
    height: 26px;
  }
}
.topPage .movie {
  max-width: 1200px;
  width: 100%;
  margin: 200px auto 0;
}
@media only screen and (max-width:1420px) {
  .topPage .movie {
    margin: 65px auto 0;
  }
}
.topPage .movie div {
  width: 100%;
  height: 700px;
  background: gray;
}
@media only screen and (max-width:1420px) {
  .topPage .movie div {
    width: 92%;
    height: 400px;
    border-radius: 20px;
    margin: 0 auto;
  }
}
.topPage .plan .linkWrap {
  margin: 100px auto 0;
}
.topPage .plan .linkWrap a {
  text-align: center;
}
.topPage .plan .linkWrap a:hover {
  opacity: 0.6;
}
.topPage .plan .linkWrap a .shoulderCopy {
  display: block;
  font-size: 25px;
  font-size: clamp(21px, 1.7605633803vw, 25px);
}
.topPage .plan .linkWrap a .mainCopy {
  font-size: 40px;
  font-size: clamp(32px, 2.8169014085vw, 40px);
  font-weight: normal;
}
.topPage .plan .linkWrap a .more {
  display: block;
  text-decoration: underline;
  font-size: 20px;
  font-size: clamp(18px, 1.4084507042vw, 20px);
}
.topPage .plan .linkWrap img {
  width: 192px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .topPage .plan .linkWrap img {
    max-width: 200px;
    width: 100%;
  }
}
@media only screen and (max-width:769px) {
  .topPage .plan .linkWrap img {
    max-width: 116px;
  }
}
.topPage .plan .el-phBlock {
  margin-top: 50px;
}
.topPage .plan .el-phBlock img {
  max-width: 1200px;
  width: 100%;
  height: auto;
}
.topPage .plan .el-phBlock img.pcPh {
  display: block;
}
@media only screen and (max-width:1420px) {
  .topPage .plan .el-phBlock img.pcPh {
    display: none;
  }
}
.topPage .plan .el-phBlock img.spPh {
  display: none;
  width: 92%;
  max-width: 708px;
  margin: 0 auto;
}
@media only screen and (max-width:1420px) {
  .topPage .plan .el-phBlock img.spPh {
    display: block;
  }
}
.topPage .access {
  max-width: 1200px;
  width: 100%;
  margin: 140px auto 150px;
}
@media only screen and (max-width:1420px) {
  .topPage .access {
    padding-top: 100px;
    border-top: solid 1px #231815;
    width: 92%;
    margin: 100px auto 150px auto;
  }
}
.topPage .access .sectionTitle {
  text-align: center;
}
.topPage .access .sectionTitle span {
  font-size: 1.5625rem;
}
@media only screen and (max-width:1420px) {
  .topPage .access .sectionTitle span {
    font-size: 40px;
    font-size: clamp(24px, 2.8169014085vw, 40px);
  }
}
.topPage .access .sectionTitle h3 {
  font-size: 2.5rem;
  font-weight: normal;
}
@media only screen and (max-width:1420px) {
  .topPage .access .sectionTitle h3 {
    font-size: 60px;
    font-size: clamp(30px, 4.2253521127vw, 60px);
  }
}
.topPage .access .mapWrap {
  margin-top: 50px;
  max-width: 1200px;
  width: 100%;
  height: 680px;
  background: lightgray;
}
@media only screen and (max-width:1420px) {
  .topPage .access .mapWrap {
    max-width: 708px;
    width: 100%;
    height: 708px;
    margin: 50px auto 0 auto;
    border-radius: 20px;
  }
}
.topPage .access .mapWrap iframe {
  height: 100%;
}

.planPage .planTitle {
  max-width: 100%;
  width: 100%;
  position: relative;
}
.planPage .mainPh {
  background: url("../../asset/images/plan-mainPh.webp");
  height: 700px;
  width: calc(100% - 40px);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin: 20px;
  position: relative;
  /*@media only screen and (max-width:1420px) {
    height: 1000px;
  }*/
}
@media only screen and (max-width:769px) {
  .planPage .mainPh {
    height: 520px;
  }
}
.planPage .mainPh .logo {
  width: 147px;
  height: auto;
  position: absolute;
  right: 50px;
  bottom: 50px;
}
@media only screen and (max-width:769px) {
  .planPage .mainPh .logo {
    width: 87px;
  }
}
.planPage .mainPh .logo img {
  width: 100%;
  height: auto;
}
.planPage .mainPh .reservationBtn {
  position: absolute;
  z-index: 10;
  transition: 0.3s;
  bottom: -35px;
  right: 0;
  left: 0;
  margin: auto;
  width: 145px;
  height: 70px;
}
@media only screen and (max-width:1420px) {
  .planPage .mainPh .reservationBtn {
    display: none;
  }
}
.planPage .mainPh .reservationBtn a {
  margin: auto;
  padding: 0;
}
.planPage .mainPh .reservationBtn a:hover {
  opacity: 0.6;
}
.planPage .mainPh .reservationBtn a img {
  width: 100%;
  height: auto;
}
.planPage .el-catchCopy {
  text-align: center;
  margin: 140px auto 230px;
}
@media only screen and (max-width:1420px) {
  .planPage .el-catchCopy {
    margin-top: 100px;
  }
}
@media only screen and (max-width:769px) {
  .planPage .el-catchCopy {
    margin: 60px auto 90px;
  }
}
.planPage .el-catchCopy h2 {
  font-size: 2.8125rem;
  font-weight: normal;
}
@media only screen and (max-width:1420px) {
  .planPage .el-catchCopy h2 {
    font-size: 60px;
    font-size: clamp(32px, 4.2253521127vw, 60px);
  }
}
.planPage .el-catchCopy p {
  font-size: 1.25rem;
  margin-top: 70px;
}
@media only screen and (max-width:1420px) {
  .planPage .el-catchCopy p {
    font-size: 30px;
    font-size: clamp(16px, 2.1126760563vw, 30px);
  }
}
@media only screen and (max-width:769px) {
  .planPage .el-catchCopy p {
    margin-top: 30px;
  }
}
.planPage .el-catchCopy p .spBr {
  display: none;
}
@media only screen and (max-width:1420px) {
  .planPage .el-catchCopy p .spBr {
    display: block;
  }
}
.planPage .planStyle {
  margin: 0 auto;
}
.planPage .planStyle .planMenu {
  margin: 0 auto;
  text-align: center;
}
.planPage .planStyle .planMenu .el-title {
  display: inline-block;
}
.planPage .planStyle .planMenu .el-title img {
  width: 305px;
  height: auto;
}
.planPage .planStyle .planMenu .planMenu-title {
  margin: 50px auto 0;
}
.planPage .planStyle .planMenu .planMenu-title ul {
  display: flex;
  justify-content: space-between;
}
.planPage .planStyle .planMenu .planMenu-title ul li a {
  display: block;
  width: 387px;
}
.planPage .planStyle .planMenu .planMenu-title ul li .el-ph {
  width: 100%;
  height: auto;
}
.planPage .planStyle .planMenu .planMenu-title ul li .el-txt {
  display: block;
  margin: 40px auto 0;
}
.planPage .planStyle .planMenu .planMenu-title ul li.planMenu-nami .el-txt {
  width: 225px;
  height: auto;
}
.planPage .planStyle .planMenu .planMenu-title ul li.planMenu-musuhi .el-txt {
  width: 194px;
  height: auto;
}
.planPage .planStyle .planMenu .planMenu-title ul li.planMenu-dokuzza .el-txt {
  width: 107px;
  height: auto;
}
.planPage .planStyle .planMenu .planMenu-list {
  margin-top: 100px;
}
.planPage .planStyle .planMenu .planMenu-list .planMenu-ListTable {
  width: 100%;
  border-collapse: collapse;
}
.planPage .planStyle .planMenu .planMenu-list .titleRow {
  background: #eadab9;
}
.planPage .planStyle .planMenu .planMenu-list .titleRow th {
  padding: 7px 0;
  text-align: center;
  border: solid 1px #000;
}
.planPage .planStyle .planMenu .planMenu-list .txtRow td {
  width: 33.333%;
  padding: 7px 0;
  text-align: center;
  border-left: solid 1px #000;
}
.planPage .planStyle .planMenu .planMenu-list .txtRow td:nth-child(3) {
  border-right: solid 1px #000;
}
.planPage .planStyle .planMenu .planMenu-list .txtRow .el-planTableNone {
  width: 50px;
  height: auto;
  margin: 0 auto;
}
.planPage .planStyle .planMenu .planMenu-list tr:last-child {
  border-bottom: solid 1px #000;
}
.planPage .planStyle .planMenu .planMenu-list .note {
  font-size: 0.9375rem;
  padding-top: 20px;
  text-align: left;
}
.planPage .planDetail {
  position: relative;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail {
    width: 86%;
    margin: 0 auto;
  }
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .el-planTitle {
    display: none;
  }
}
.planPage .planDetail .el-planTitle-sp {
  display: none;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .el-planTitle-sp {
    display: block;
    width: 314px;
    height: auto;
  }
}
@media only screen and (max-width:769px) {
  .planPage .planDetail .el-planTitle-sp {
    width: 210px;
  }
}
.planPage .planDetail .txtPhWrap {
  position: relative;
}
.planPage .planDetail .txtPhWrap .el-planTxt {
  font-size: 1.25rem;
  line-height: 2.4;
  margin-top: 90px;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .txtPhWrap .el-planTxt {
    font-size: 30px;
    font-size: clamp(16px, 2.1126760563vw, 30px);
  }
}
@media only screen and (max-width:769px) {
  .planPage .planDetail .txtPhWrap .el-planTxt {
    margin-top: 50px;
  }
}
.planPage .planDetail .txtPhWrap .el-planPh {
  width: 387px;
  height: auto;
  position: absolute;
  right: 0;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .txtPhWrap .el-planPh {
    position: relative;
    width: 100%;
    margin-top: 60px;
  }
}
.planPage .planDetail .txtPhWrap .el-planPh img {
  width: 100%;
  height: auto;
}
.planPage .planDetail .txtPhWrap .el-planPh .namiPlan-ph {
  display: block;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .txtPhWrap .el-planPh .namiPlan-ph {
    display: none;
  }
}
.planPage .planDetail .txtPhWrap .el-planPh .namiPlan-ph-sp {
  display: none;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .txtPhWrap .el-planPh .namiPlan-ph-sp {
    display: block;
  }
}
.planPage .planDetail .planList {
  margin-top: 100px;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planList {
    margin-top: 50px;
  }
}
.planPage .planDetail .planList li {
  padding: 40px 0;
  min-height: 96px;
  display: flex;
  align-items: center;
  border-top: solid 1px #000;
}
.planPage .planDetail .planList li:last-child {
  border-bottom: solid 1px #000;
}
.planPage .planDetail .planList li.planList-cuisineTxt {
  height: 200px;
}
.planPage .planDetail .planList li.planList-cuisineTxt .el-txt {
  line-height: 1.4;
}
.planPage .planDetail .planList .el-title {
  font-size: 1.25rem;
  width: 180px;
  text-align: center;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planList .el-title {
    font-size: 25px;
    font-size: clamp(15px, 1.7605633803vw, 25px);
  }
}
@media only screen and (max-width:769px) {
  .planPage .planDetail .planList .el-title {
    width: 130px;
  }
}
.planPage .planDetail .planList .el-title .inner {
  display: inline-block;
}
.planPage .planDetail .planList .el-title span {
  border-top: dotted 1px #000;
  display: block;
}
.planPage .planDetail .planList .el-txt {
  font-size: 1.5rem;
  width: calc(100% - 180px);
  text-align: left;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planList .el-txt {
    font-size: 25px;
    font-size: clamp(16px, 1.7605633803vw, 25px);
  }
}
.planPage .planDetail .planList .el-txt span {
  font-size: 1.25rem;
  font-size: 20px;
  font-size: clamp(15px, 1.4084507042vw, 20px);
}
.planPage .planDetail .planList .el-txt tr {
  width: 100%;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planList .el-txt tr {
    margin-top: 10px;
  }
}
.planPage .planDetail .planList .el-txt th {
  font-size: 1.5rem;
  font-weight: normal;
  width: 240px;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planList .el-txt th {
    font-size: 25px;
    font-size: clamp(16px, 1.7605633803vw, 25px);
    display: block;
    width: 100%;
  }
}
.planPage .planDetail .planList .el-txt th.w400 {
  width: 400px;
}
@media only screen and (max-width:769px) {
  .planPage .planDetail .planList .el-txt th.w400 {
    width: 100%;
  }
}
.planPage .planDetail .planList .el-txt td {
  font-size: 1.5rem;
  width: calc(100% - 240px);
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planList .el-txt td {
    font-size: 25px;
    font-size: clamp(16px, 1.7605633803vw, 25px);
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
}
.planPage .planDetail .planReservation {
  text-align: right;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planReservation {
    text-align: unset;
  }
}
.planPage .planDetail .planReservation-link {
  display: inline-block;
  width: 200px;
  height: auto;
  margin-top: 50px;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .planReservation-link {
    width: 100%;
  }
}
.planPage .planDetail .planReservation-link img {
  width: 100%;
  height: auto;
}
.planPage .planDetail .el-reservationBtn {
  width: 200px;
  height: auto;
  display: block;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .el-reservationBtn {
    display: none;
  }
}
.planPage .planDetail .el-reservationBtn-sp {
  display: none;
  max-width: 668px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width:1420px) {
  .planPage .planDetail .el-reservationBtn-sp {
    display: block;
    max-width: 450px;
  }
}
.planPage .namiPlan {
  margin: 180px auto 140px;
}
@media only screen and (max-width:1420px) {
  .planPage .namiPlan {
    margin-top: 0px;
  }
}
.planPage .namiPlan .el-planTitle {
  width: 273px;
  height: auto;
}
.planPage .namiPlan .el-planPh {
  bottom: 0;
}
.planPage .musuhiPlan {
  padding: 100px 0;
  background: #f7f3eb;
  width: 100%;
  max-width: 100%;
}
.planPage .musuhiPlan .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.planPage .musuhiPlan .el-planTitle {
  width: 290px;
  height: auto;
}
.planPage .musuhiPlan .el-planPh {
  top: 222px;
}
.planPage .dokuzzaPlan {
  margin: 90px auto 100px;
}
.planPage .dokuzzaPlan .el-planTitle {
  width: 321px;
  height: auto;
}
.planPage .dokuzzaPlan .el-planPh {
  bottom: 0;
}
.planPage .facilityDetail {
  max-width: 100%;
  width: 100%;
  padding: 100px 0 90px;
  background: #f7f3eb;
}
.planPage .facilityDetail .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width:1420px) {
  .planPage .facilityDetail .inner {
    width: 86%;
  }
}
.planPage .facilityDetail .titleCopy .el-title {
  font-size: 2.5rem;
  text-align: center;
}
@media only screen and (max-width:1420px) {
  .planPage .facilityDetail .titleCopy .el-title {
    font-size: 50px;
    font-size: clamp(28px, 3.5211267606vw, 50px);
  }
}
.planPage .facilityDetail .titleCopy .el-txt {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}
@media only screen and (max-width:1420px) {
  .planPage .facilityDetail .titleCopy .el-txt {
    font-size: 1.875rem;
    font-size: 30px;
    font-size: clamp(16px, 2.1126760563vw, 30px);
  }
}
@media only screen and (max-width:769px) {
  .planPage .facilityDetail .titleCopy .el-txt {
    margin-top: 30px;
  }
}
.planPage .facilityDetail .titleCopy .el-txt .spBr {
  display: none;
}
@media only screen and (max-width:1420px) {
  .planPage .facilityDetail .titleCopy .el-txt .spBr {
    display: block;
  }
}
.planPage .facilityDetail .detailTxt {
  margin-top: 30px;
}
.planPage .facilityDetail .detailTxt li {
  padding: 40px 0;
  min-height: 170px;
  display: flex;
  align-items: center;
  border-top: solid 1px #000;
}
.planPage .facilityDetail .detailTxt li:last-child {
  border-bottom: solid 1px #000;
}
.planPage .facilityDetail .detailTxt .el-title {
  font-size: 1.25rem;
  line-height: 1.6;
  width: 180px;
  text-align: center;
}
@media only screen and (max-width:1420px) {
  .planPage .facilityDetail .detailTxt .el-title {
    font-size: 20px;
    font-size: clamp(15px, 1.4084507042vw, 20px);
  }
}
@media only screen and (max-width:769px) {
  .planPage .facilityDetail .detailTxt .el-title {
    width: 130px;
  }
}
.planPage .facilityDetail .detailTxt .el-txt {
  font-size: 1.5rem;
  line-height: 1.6;
  width: calc(100% - 180px);
  text-align: left;
  margin-top: 10px;
}
@media only screen and (max-width:1420px) {
  .planPage .facilityDetail .detailTxt .el-txt {
    font-size: 24px;
    font-size: clamp(16px, 1.6901408451vw, 24px);
  }
}
.planPage .phGallery {
  max-width: 100%;
  width: 100%;
  padding: 100px 0 90px;
}
.planPage .phGallery .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width:1420px) {
  .planPage .phGallery .inner {
    width: 86%;
  }
}
.planPage .phGallery .titleCopy .el-title {
  font-size: 2.5rem;
  text-align: center;
}
@media only screen and (max-width:1420px) {
  .planPage .phGallery .titleCopy .el-title {
    font-size: 40px;
    font-size: clamp(28px, 2.8169014085vw, 40px);
  }
}
.planPage .phGallery .galleryWrap {
  margin-top: 40px;
}
.planPage .phGallery .galleryWrap ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.planPage .phGallery .galleryWrap ul li {
  width: 32%;
  cursor: pointer;
  transition: 0.3s;
}
@media only screen and (max-width:1420px) {
  .planPage .phGallery .galleryWrap ul li {
    width: 49%;
  }
}
.planPage .phGallery .galleryWrap ul li:hover {
  opacity: 0.8;
}
@media only screen and (min-width:1400px) {
  .planPage .phGallery .galleryWrap ul li:nth-child(3n+1) {
    margin-right: 2%;
  }
  .planPage .phGallery .galleryWrap ul li:nth-child(3n+3) {
    margin-left: 2%;
  }
  .planPage .phGallery .galleryWrap ul li:nth-child(n+4) {
    margin-top: 2%;
  }
}
@media only screen and (max-width:1420px) {
  .planPage .phGallery .galleryWrap ul li:nth-child(2n+1) {
    margin-right: 1%;
  }
  .planPage .phGallery .galleryWrap ul li:nth-child(2n+2) {
    margin-left: 1%;
  }
  .planPage .phGallery .galleryWrap ul li:nth-child(n+3) {
    margin-top: 2%;
  }
}
.planPage .phGallery .galleryWrap {
  /* モーダル背景（初期は非表示） */
}
.planPage .phGallery .galleryWrap #modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.planPage .phGallery .galleryWrap {
  /* 拡大画像 */
}
.planPage .phGallery .galleryWrap #modal img {
  max-width: 700px;
  width: 50%;
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width:1025px) {
  .planPage .phGallery .galleryWrap #modal img {
    max-width: 70%;
    width: unset;
  }
}
@media only screen and (max-width:769px) {
  .planPage .phGallery .galleryWrap #modal img {
    max-width: 90%;
    width: unset;
  }
}

@media only screen and (max-width:1420px) {
  .inquiryPage .container {
    width: 82%;
    margin: 0 auto;
  }
}
.inquiryPage .title {
  margin: 70px auto;
  text-align: center;
}
.inquiryPage .logo {
  width: 170px;
  height: 275px;
  margin: 0 auto;
}
@media only screen and (max-width:769px) {
  .inquiryPage .logo {
    width: 130px;
    height: auto;
  }
}
.inquiryPage .logo img {
  width: 100%;
  height: auto;
}
.inquiryPage .el-title {
  margin-top: 120px;
  font-size: 2.8125rem;
  font-weight: normal;
}
@media only screen and (max-width:1420px) {
  .inquiryPage .el-title {
    font-size: 60px;
    font-size: clamp(32px, 4.2253521127vw, 60px);
  }
}
@media only screen and (max-width:769px) {
  .inquiryPage .el-title {
    margin-top: 60px;
  }
}
.inquiryPage .inquiryDetail {
  margin-bottom: 240px;
}
.inquiryPage .form-noteTxt {
  margin-top: 100px;
  margin-bottom: 45px;
}
.inquiryPage .form-noteTxt .el-txt p {
  font-size: 1.5625rem;
  text-align: left;
}
@media only screen and (max-width:1420px) {
  .inquiryPage .form-noteTxt .el-txt p {
    font-size: 25px;
    font-size: clamp(16px, 1.7605633803vw, 25px);
  }
}
.inquiryPage .form-noteTxt .el-txt p.note {
  font-size: 1.25rem;
  margin-top: 10px;
}
@media only screen and (max-width:1420px) {
  .inquiryPage .form-noteTxt .el-txt p.note {
    font-size: 20px;
    font-size: clamp(16px, 1.4084507042vw, 20px);
  }
}
.inquiryPage .required {
  color: #e60012;
}
.inquiryPage .inquiry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: solid 1px #231815;
}
.inquiryPage .inquiry-row.topBorder {
  border-top: solid 1px #231815;
}
.inquiryPage .inquiry-row.bottomBorder {
  border-bottom: solid 1px #231815;
}
.inquiryPage .inquiry-row.message {
  display: block;
  align-items: unset;
  justify-content: unset;
}
.inquiryPage .inquiry-row.message .inquiry-col-left {
  margin-top: 80px;
}
.inquiryPage .inquiry-row.message .inquiry-col-right {
  width: 100%;
  padding-left: 0px;
  margin-top: 33px;
}
.inquiryPage .inquiry-row.message textarea {
  border: solid 1px #231815;
}
.inquiryPage .inquiry-col-left {
  width: 260px;
  text-align: center;
}
@media only screen and (max-width:769px) {
  .inquiryPage .inquiry-col-left {
    width: 130px;
  }
}
.inquiryPage .inquiry-col-left p {
  font-size: 1.25rem;
}
@media only screen and (max-width:1420px) {
  .inquiryPage .inquiry-col-left p {
    font-size: 1.5625rem;
    font-size: 25px;
    font-size: clamp(15px, 1.7605633803vw, 25px);
  }
}
@media only screen and (max-width:769px) {
  .inquiryPage .inquiry-col-left p {
    font-size: 0.875rem;
  }
}
.inquiryPage .inquiry-col-right {
  width: calc(100% - 260px);
  padding-left: 120px;
}
@media only screen and (max-width:769px) {
  .inquiryPage .inquiry-col-right {
    width: calc(100% - 130px);
    padding-left: 20px;
  }
}
.inquiryPage .inquiry-col-right p {
  font-size: 1.375rem;
}
@media only screen and (max-width:1420px) {
  .inquiryPage .inquiry-col-right p {
    font-size: 1.5625rem;
    font-size: 25px;
    font-size: clamp(16px, 1.7605633803vw, 25px);
  }
}
.inquiryPage .noteTxt {
  margin-top: 25px;
  margin-bottom: 70px;
}
.inquiryPage input, .inquiryPage textarea, .inquiryPage select {
  width: 100%;
  padding: 7px 18px;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width:1420px) {
  .inquiryPage input, .inquiryPage textarea, .inquiryPage select {
    background: #FFF;
  }
}
@media only screen and (max-width:769px) {
  .inquiryPage input {
    width: 100%;
    display: inline-block;
  }
}
.inquiryPage select {
  min-height: 60px;
  /* ブラウザのデフォルト矢印を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* カスタム画像を設定 */
  background-image: url("../../asset/images/btm-arrow.webp");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 32px;
  /* パディングで画像と文字が被らないようにする */
  padding-right: 30px;
}
@media only screen and (max-width:769px) {
  .inquiryPage select {
    background-size: 22px;
    padding-right: 20px;
  }
}
.inquiryPage select.preferredPlan {
  background-image: none;
}
.inquiryPage input[type=submit] {
  width: 200px;
}
@media only screen and (max-width:769px) {
  .inquiryPage input[type=submit] {
    width: 150px;
  }
}
.inquiryPage .submitBtn {
  background-image: url("../../asset/images/submit-button.webp");
  background-color: unset;
  background-size: cover;
  background-repeat: no-repeat;
  width: 200px; /* ボタンの幅を画像の幅に調整 */
  height: 70px; /* ボタンの高さを画像の高さに調整 */
  border: none; /* 枠線を取り除く */
  cursor: pointer; /* カーソルをポインターに変更 */
  text-indent: -9999px; /* 文字を非表示にする */
  transition: 0.3;
  margin: 45px 0 10px;
}
@media only screen and (max-width:769px) {
  .inquiryPage .submitBtn {
    width: 150px;
    height: 52px;
  }
}
.inquiryPage .submitBtn:hover {
  opacity: 0.8;
}
.inquiryPage .wpcf7-list-item {
  margin-top: 45px;
}
.inquiryPage .wpcf7-list-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inquiryPage .wpcf7-list-item input[type=checkbox] {
  width: 30px;
  height: 30px;
}
.inquiryPage .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 1.25rem;
  margin-left: 20px;
}
@media only screen and (max-width:769px) {
  .inquiryPage .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 20px;
    font-size: clamp(16px, 1.4084507042vw, 20px);
  }
}
.inquiryPage .wpcf7-date::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0; /* 透明にして全体をクリック可能にする */
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.inquiryPage {
  /* 親要素のコンテナを相対位置にする（必須） */
}
.inquiryPage .wpcf7-form-control-wrap {
  position: relative;
}
.inquiryPage .personalInformation {
  overflow: auto;
  width: 100%;
  height: 300px;
}
.inquiryPage .personalInformation .inner {
  padding: 30px 40px;
}
@media only screen and (max-width:769px) {
  .inquiryPage .personalInformation .inner {
    padding: 15px 20px;
  }
}
.inquiryPage .personalInformation ul li .el-title {
  font-size: 1.25rem;
  margin-top: 25px;
}
@media only screen and (max-width:769px) {
  .inquiryPage .personalInformation ul li .el-title {
    font-size: 20px;
    font-size: clamp(16px, 1.4084507042vw, 20px);
  }
}
.inquiryPage .personalInformation ul li .el-title.mtNone {
  margin-top: 0px;
}
.inquiryPage .personalInformation ul li .el-txt {
  font-size: 1.125rem;
  margin: 20px 0 0 30px;
}
@media only screen and (max-width:769px) {
  .inquiryPage .personalInformation ul li .el-txt {
    font-size: 18px;
    font-size: clamp(14px, 1.2676056338vw, 18px);
  }
}
.inquiryPage .personalInformation.bottomBorder {
  border-bottom: solid 1px #231815;
}
.inquiryPage .agreeTxt {
  font-size: 16px;
  font-size: clamp(14px, 1.1267605634vw, 16px);
}
.inquiryPage .cancelTxt {
  margin-top: 10px;
}
.inquiryPage .cancelTxt a {
  text-decoration: underline;
}
.inquiryPage #wpcf7cpcnf table {
  min-width: 400px;
  margin: 0 auto;
}
.inquiryPage #wpcf7cpcnf table th {
  display: none;
}
.inquiryPage #wpcf7cpcnf table td p {
  font-size: 1.25rem;
}
@media only screen and (max-width:1420px) {
  .inquiryPage #wpcf7cpcnf table td p {
    font-size: 1.5625rem;
    font-size: 25px;
    font-size: clamp(20px, 1.7605633803vw, 25px);
  }
}
.inquiryPage #wpcf7cpcnf .wpcf7cp-btns {
  min-width: 400px;
  margin: 40px auto 0 auto;
  display: table;
  text-align: center;
}
.inquiryPage #wpcf7cpcnf .wpcf7cp-cfm-edit-btn {
  background: #eadab9;
  border-radius: 30px;
  font-size: 1.25rem;
  border: none;
  padding: 23px 35px;
}
.inquiryPage #wpcf7cpcnf .wpcf7cp-cfm-submit-btn {
  background: #eadab9;
  border-radius: 30px;
  font-size: 1.25rem;
  border: none;
  padding: 21px 33px;
}

.inquiryPage.-cancel .el-title {
  font-size: 1.25rem;
}
@media only screen and (max-width:1420px) {
  .inquiryPage.-cancel .el-title {
    font-size: 1.5625rem;
  }
}
.inquiryPage.-cancel .formArea_inner p {
  font-size: 1.125rem;
}
@media only screen and (max-width:1420px) {
  .inquiryPage.-cancel .formArea_inner p {
    font-size: 1.25rem;
  }
}
.inquiryPage.-cancel .mailto {
  text-decoration: underline;
}

.infoPage .infoTitle {
  max-width: 100%;
  width: 100%;
  position: relative;
}
.infoPage .title {
  margin: 70px auto;
  text-align: center;
}
.infoPage .logo {
  width: 170px;
  height: 275px;
  margin: 0 auto;
}
@media only screen and (max-width:769px) {
  .infoPage .logo {
    width: 130px;
    height: auto;
  }
}
.infoPage .logo img {
  width: 100%;
  height: auto;
}
.infoPage .el-title {
  margin-top: 120px;
  font-size: 2.8125rem;
  font-weight: normal;
}
@media only screen and (max-width:1420px) {
  .infoPage .el-title {
    font-size: 60px;
    font-size: clamp(32px, 4.2253521127vw, 60px);
  }
}
@media only screen and (max-width:769px) {
  .infoPage .el-title {
    margin-top: 60px;
  }
}
.infoPage .mainPh {
  background: url("../../asset/images/info-mainPh.webp");
  height: 700px;
  width: calc(100% - 40px);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin: 20px;
  position: relative;
  /*@media only screen and (max-width:1420px) {
    height: 1000px;
  }*/
}
@media only screen and (max-width:769px) {
  .infoPage .mainPh {
    height: 700px;
  }
}
@media only screen and (max-width:1420px) {
  .infoPage .infoColumn {
    width: 86%;
    margin: 0 auto;
  }
}
.infoPage .infoColumn ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.infoPage .infoColumn li {
  width: 32%;
}
@media only screen and (max-width:1025px) {
  .infoPage .infoColumn li {
    width: 49%;
  }
  .infoPage .infoColumn li:nth-child(2n+1) {
    margin-right: 1%;
  }
  .infoPage .infoColumn li:nth-child(2n+2) {
    margin-left: 1%;
  }
  .infoPage .infoColumn li:nth-child(n+3) {
    margin-top: 2%;
  }
}
@media only screen and (min-width:1025px) {
  .infoPage .infoColumn li:nth-child(3n+1) {
    margin-right: 2%;
  }
  .infoPage .infoColumn li:nth-child(3n+2) {
    margin-right: 2%;
  }
  .infoPage .infoColumn li:nth-child(n+4) {
    margin-top: 2%;
  }
}
.infoPage .infoColumn li a {
  background: #f7f3eb;
  padding: 30px 70px;
  border-radius: 20px;
}
@media only screen and (max-width:769px) {
  .infoPage .infoColumn li a {
    padding: 20px 24px;
  }
}
.infoPage .infoColumn li a:hover {
  opacity: 0.6;
}
.infoPage .infoColumn .columnLink {
  display: block;
}
.infoPage .infoColumn .column {
  text-align: center;
}
.infoPage .infoColumn .column .clm_day {
  font-size: 1.25rem;
}
@media only screen and (max-width:1420px) {
  .infoPage .infoColumn .column .clm_day {
    font-size: 20px;
    font-size: clamp(18px, 1.4084507042vw, 20px);
  }
}
.infoPage .infoColumn .column .clm_title {
  font-size: 1.25rem;
  font-weight: normal;
  text-align: left;
  margin: 0 auto;
  text-align: justify;
}
@media only screen and (max-width:1420px) {
  .infoPage .infoColumn .column .clm_title {
    font-size: 20px;
    font-size: clamp(18px, 1.4084507042vw, 20px);
  }
}
.infoPage .infoColumn .pageNavi {
  margin: 90px auto 180px;
  text-align: center;
}
@media only screen and (max-width:769px) {
  .infoPage .infoColumn .pageNavi {
    margin: 60px auto 110px;
  }
}
.infoPage .infoColumn .pageNavi .nav-links a, .infoPage .infoColumn .pageNavi .nav-links span {
  font-size: 1.25rem;
  padding: 0 13px;
}
.infoPage .infoDetailColumn .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 200px auto;
}
@media only screen and (max-width:1420px) {
  .infoPage .infoDetailColumn .inner {
    width: 92%;
  }
}
.infoPage .infoDetailColumn .column {
  margin-bottom: 100px;
}
.infoPage .infoDetailColumn .titleDayWrap {
  margin-bottom: 60px;
}
.infoPage .infoDetailColumn .titleWrap {
  padding-bottom: 30px;
  border-bottom: solid 1px #231815;
}
@media only screen and (max-width:769px) {
  .infoPage .infoDetailColumn .titleWrap {
    padding-bottom: 20px;
  }
}
.infoPage .infoDetailColumn .el-txt-title {
  font-size: 2.8125rem;
}
@media only screen and (max-width:1420px) {
  .infoPage .infoDetailColumn .el-txt-title {
    font-size: 45px;
    font-size: clamp(25px, 3.1690140845vw, 45px);
  }
}
.infoPage .infoDetailColumn .el-txt-day {
  padding-top: 20px;
  font-size: 1.25rem;
}
@media only screen and (max-width:1420px) {
  .infoPage .infoDetailColumn .el-txt-day {
    font-size: 20px;
    font-size: clamp(16px, 1.4084507042vw, 20px);
  }
}
@media only screen and (max-width:769px) {
  .infoPage .infoDetailColumn .el-txt-day {
    padding-top: 10px;
  }
}
.infoPage .infoDetailColumn .page_navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progressPage .progressTitle {
  max-width: 100%;
  width: 100%;
  position: relative;
}
.progressPage .mainPh {
  background: url("../../asset/images/plan-mainPh.webp");
  height: 700px;
  width: calc(100% - 40px);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin: 20px;
  position: relative;
  /*@media only screen and (max-width:1420px) {
    height: 1000px;
  }*/
}
@media only screen and (max-width:769px) {
  .progressPage .mainPh {
    height: 520px;
  }
}
.progressPage .mainPh .logo {
  width: 147px;
  height: auto;
  position: absolute;
  right: 50px;
  bottom: 50px;
}
@media only screen and (max-width:769px) {
  .progressPage .mainPh .logo {
    width: 87px;
  }
}
.progressPage .mainPh .logo img {
  width: 100%;
  height: auto;
}
.progressPage .el-catchCopy {
  text-align: center;
  margin: 140px auto 230px;
}
@media only screen and (max-width:1420px) {
  .progressPage .el-catchCopy {
    margin-top: 100px;
  }
}
.progressPage .el-catchCopy h2 {
  font-size: 2.8125rem;
  font-weight: normal;
}
@media only screen and (max-width:1420px) {
  .progressPage .el-catchCopy h2 {
    font-size: 60px;
    font-size: clamp(40px, 4.2253521127vw, 60px);
  }
}
.progressPage .el-catchCopy p {
  font-size: 1.25rem;
  margin-top: 70px;
}
@media only screen and (max-width:1420px) {
  .progressPage .el-catchCopy p {
    font-size: 30px;
    font-size: clamp(20px, 2.1126760563vw, 30px);
  }
}
.progressPage .el-catchCopy p .spBr {
  display: none;
}
@media only screen and (max-width:1420px) {
  .progressPage .el-catchCopy p .spBr {
    display: block;
  }
}

.footer {
  background: #eadab9;
  max-width: 100%;
}
.footer .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 94px 0 50px;
}
@media only screen and (max-width:1420px) {
  .footer .inner {
    max-width: 80%;
  }
}
.footer .top {
  display: flex;
  justify-content: space-between;
}
.footer .top .leftMenu a {
  font-size: 1rem;
}
@media only screen and (max-width:1420px) {
  .footer .top .leftMenu a {
    font-size: 1.625rem;
    font-size: 26px;
    font-size: clamp(16px, 1.8309859155vw, 26px);
  }
}
.footer .top .left .navigation {
  margin-top: 80px;
}
.footer .top .left .navigation a {
  font-size: 1.625rem;
}
@media only screen and (max-width:1420px) {
  .footer .top .left .navigation a {
    font-size: 26px;
    font-size: clamp(18px, 1.8309859155vw, 26px);
  }
}
.footer .top .left .navigation li {
  margin-top: 15px;
}
.footer .top .right .logo {
  width: 155px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .footer .top .right .logo {
    width: 164px;
  }
}
@media only screen and (max-width:1025px) {
  .footer .top .right .logo {
    width: 124px;
  }
}
@media only screen and (max-width:769px) {
  .footer .top .right .logo {
    width: 104px;
  }
}
.footer .top .right .logo img {
  width: 100%;
  height: auto;
}
.footer .bottom {
  display: flex;
  justify-content: right;
}
@media only screen and (max-width:1420px) {
  .footer .bottom {
    justify-content: left;
    margin-top: 70px;
    padding-bottom: 70px;
  }
}
.footer .bottom a {
  width: 158px;
  height: auto;
}
@media only screen and (max-width:1420px) {
  .footer .bottom a {
    width: 160px;
  }
}
@media only screen and (max-width:1025px) {
  .footer .bottom a {
    width: 130px;
  }
}
.footer .bottom a img {
  width: 100%;
  height: auto;
}

.copyright {
  text-align: center;
  font-size: 0.9375rem;
  padding: 15px 0;
}/*# sourceMappingURL=style.css.map */