@charset "UTF-8";

/* カラー変数 */
:root {
  --main-color: #1b2d50;
  --color01: #f7f6f0;
  --color02: #b1a45b;
  --color03: #4b4b4b;
  --text-color: #333;
  --white: #fff;
  --mincho: yu-mincho-pr6n, sans-serif;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('/path/to/NotoSansJP-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: var(--white);
  font-family: Arial, sans-serif;
  color: var(--text-color);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

/* * {
  outline: 1px solid red;
} */

/* 共通 */
.inner {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}

/* ロゴ */
.header-logo,
.logo-footer {
  width: 50px;
}

/* ボタン */
.btn {
  background-color: var(--white);
  font-size: 20px;
  padding: 30px;
  max-width: 310px;
  width: 100%;
  margin-inline: auto;
  color: var(--main-color);
  line-height: 1;
  display: grid;
  grid-template-columns: 90% 10%;
  place-items: center;
  position: relative;
  box-shadow: 0px 10px 20px rgba(75, 75, 75, 0.1);
}

.btn--navy {
  background-color: var(--main-color);
  color: var(--white);
  position: relative;
  box-shadow: 0px 10px 20px rgba(75, 75, 75, 0.2);
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 97%;
  height: 1px;
  background-color: #8f9ebb;
  z-index: 1;
}

.btn::before {
  top: 6px;
}

.btn::after {
  bottom: 6px;
}

.btn--navy::before,
.btn--navy::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 1px;
  background-color: #c7d0e4;
  z-index: 1;
}

.btn--navy::before {
  top: 6px;
}

.btn--navy::after {
  bottom: 6px;
}

@media (any-hover: hover) {

  .btn:hover,
  .btn--navy:hover {
    opacity: .8;
    text-decoration: none;
  }

  .btn:hover {
    color: var(--main-color);
  }

  .btn--navy:hover {
    color: var(--white);
  }
}

/* CTA */
.cta--bg {
  background-color: var(--color01);
  box-shadow: 0px 4px 10px rgba(182, 176, 142, 0.6);
}

.cta {
  background-color: var(--color01);
  padding: 35px 0;
}

.cta--top {
  box-shadow: 0px 4px 10px rgba(182, 176, 142, 0.6);
}

.cta__inner {
  padding: 0 30px;
}

.cta__text-main {
  font-size: 14px;
  letter-spacing: .03em;
}

.cta__text-sub {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: var(--mincho);
  text-shadow: 0.1px 0.1px 0 var(--text-color);
}

.cta__btn {
  display: grid;
  row-gap: 10px;
  font-family: var(--mincho);
}

.cta__info {
  margin-top: 23px;
}

.cta__counter {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.cta__tel {
  color: var(--text-color);
  font-size: 26px;
  line-height: 1.2;
  font-family: var(--mincho);
  text-shadow: 0.1px 0.1px 0 var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* セクションタイトル */
.section-title {
  text-align: center;
}

.section-title__main {
  font-size: 24px;
  font-family: var(--mincho);
  font-style: normal;
  font-weight: 400;
  margin-block-end: 40px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 10px 15px;
  z-index: 10;
}

.header__btn {
  color: var(--white);
  background-color: var(--main-color);
  border: none;
  font-size: 16px;
  font-family: var(--mincho);
  letter-spacing: .1em;
  padding: 7px 38px;
  position: relative;
}

.header__btn:hover {
  background-color: var(--main-color);
  color: var(--white);
  opacity: .8;
}

.header__btn::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 12px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-image: url("../lp-images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* フッター */
.footer {
  background-color: #333;
  padding: 50px 15px 70px;
}

.footer__inner {
  display: grid;
  row-gap: 45px;
}

.footer__list {
  display: grid;
  row-gap: 30px;
}

.footer__list li a {
  font-family: var(--mincho);
  font-size: 16px;
  color: var(--white);
}

.fv__inner {
  position: relative;
}

.fv__text-wrap {
  position: absolute;
  bottom: 2.1%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  width: 100%;
}

.fv__title {
  color: var(--white);
  position: relative;
  font-size: 32px;
  line-height: 1.65;
  font-family: var(--mincho);
  text-shadow: 0.1px 0.1px 0 var(--white);
  letter-spacing: .06em;
  text-indent: -.06em;
}

.fv__title::before {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 141px;
  left: 0;
  top: 0;
  background: rgba(6, 8, 9, 0.47);
  filter: blur(50px);
  z-index: -1;
}

.fv__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.06em;
  position: relative;
  top: -14px;
  text-shadow: 0 0 10px #2E2A22;
}

/* お悩み解決 */
.problem {
  background-image: url("../lp-images/sp/bg_01.png");
  padding-block-start: 52px;
  padding-block-end: 50px;
  font-family: yu-mincho-pr6n, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.problem__inner {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}

.problem__head {
  position: relative;
}

.problem__head::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 1px;
  bottom: -30px;
  left: 50%;
  translate: -50%;
  background-color: #4b4b4b;
}

.problem__title {
  font-family: var(--mincho);
  text-shadow: 0.1px 0.1px 0 var(--text-color);
}

.problem__title--small {
  font-size: 16px;
  display: inline-block;
}

.problem__title--small--bottom {
  margin-block-start: -10px;
  display: inline-block;
}

.problem__title--medium {
  font-size: 24px;
}

.problem__title--big {
  font-size: 28px;
}

.problem__contents {
  margin-top: 60px;
}

.problem__item {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  padding: 20px;
}

.problem__text {
  font-size: 16px;
  color: var(--text-color);

}

.problem__text span {
  text-shadow: 0.2px 0.2px 0 var(--text-color);
}

.problem *+.uk-grid-margin,
.uk-grid+.uk-grid,
.uk-grid>.uk-grid-margin {
  margin-top: 14px;
}

.solution__img {
  display: block;
  width: 100%;
  height: 100%;
  margin-block-start: -6px;
}

/* 利用事例 */
.feature {
  margin-top: 45px;
  padding-block-end: 80px;
}

.feature__wrap {
  margin-top: 26px;
}

.feature__block:not(:first-child) {
  margin-top: 40px;
}

.feature__main-image {
  aspect-ratio: 375/276;
  width: 100%;
  object-fit: cover;
}

.feature__contents {
  grid-template-areas:
    "images"
    "description";
  padding-top: 16px;
}

.feature__description {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}

.feature__number {
  font-size: 32px;
  line-height: 1;
  color: var(--color02);
  font-family: var(--mincho);
  text-shadow: 0.1px 0.1px 0 var(--text-color);
  position: relative;
  display: inline-block;
}

.feature__number::after {
  position: absolute;
  content: "";
  width: 58px;
  height: 1px;
  background-color: var(--color02);
  top: 55%;
  right: -75px;
}

.feature__title {
  color: var(--text-color);
  font-size: 24px;
  line-height: 1.42;
  letter-spacing: .03em;
  margin-top: -10px;
  font-family: var(--mincho);
}

.feature__text {
  color: var(--text-color);
  font-size: 14px;
  margin-top: 18px;
  font-family: var(--mincho);
}

.feature__images {
  display: flex;
  justify-content: flex-end;
  column-gap: 22px;
  margin-top: 40px;
}

.feature__image01 {
  aspect-ratio: 154/93;
  max-width: 154px;
  width: 100%;
  object-fit: cover;
}

.feature__image02 {
  aspect-ratio: 94/137;
  max-width: 94px;
  width: 100%;
  object-fit: cover;
}

.feature__image03 {
  aspect-ratio: 210/104;
  max-width: 210px;
}

.feature__image04 {
  aspect-ratio: 1/1;
  max-width: 86px;
}

.feature__image05 {
  aspect-ratio: 1/1;
  max-width: 86px;
}

.feature__image06 {
  aspect-ratio: 1/1;
  max-width: 134px;
}

/* 利用事例 */
.case {
  padding-block-start: 80px;
}

.case__contents {
  display: grid;
  row-gap: 18px;
}

.case__body {
  padding: 24px 15px;
}

.case__label {
  color: var(--text-color);
  font-family: var(--mincho);
  font-size: 16px;
  margin-bottom: 0;
}

.case__label--ja {
  margin-left: 24px;
}

.case__title {
  color: var(--text-color);
  font-family: var(--mincho);
  font-size: 20px;
  text-shadow: 0.2px 0.2px 0 var(--text-color);
  line-height: 1.6;
  margin-top: 0;
  position: relative;
}

.case__title::after {
  position: absolute;
  content: "";
  display: block;
  background-color: var(--color02);
  width: 100%;
  height: 1px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.case__content {
  margin-top: 34px;
  display: grid;
  row-gap: 8px;
}

.case__block {
  color: var(--text-color);
}

.case__block-title {
  color: var(--text-color);
}

.case__block-text {
  font-size: 14px;
  letter-spacing: .04em;
  line-height: 1.86;
  margin-block-start: 4px;
}

/* プラン紹介 */
.plan {
  padding-block-start: 80px;
  padding-block-end: 80px;
}

.plan__inner {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}

.plan__contents {
  margin-block-start: 52px;
}

.plan__items {
  padding-block-start: 55px;
  padding-block-end: 36px;
}

.plan__items:not(:first-child) {
  padding-block-start: 40px;
  padding-block-end: 0;
}

.plan__items:not(:first-child) .plan__main-image {
  max-width: initial;
}

.plan__items:not(:first-child) .plan__card-body {
  padding-inline-start: 0;
  padding-inline-end: 0;
}

.plan__items:not(:first-child) .plan__more {
  font-size: 20px;
}

.plan__card-body {
  padding: 8px 15px;
}

.plan__items--bg-color {
  background-color: var(--color01);
  border: 1px solid var(--color02);
  position: relative;
}

.plan__items--bg-color::before {
  position: absolute;
  content: "おすすめプラン";
  display: inline-block;
  color: var(--white);
  background-color: var(--color02);
  padding: 4px 46px;
  font-size: 20px;
  font-family: var(--mincho);
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan__main-image {
  aspect-ratio: 315/223;
  max-width: 315px;
  width: 100%;
  object-fit: cover;
}

.plan__body {
  max-width: 690px;
  width: 100%;
  margin-inline: auto;
}

.plan__title {
  font-size: 20px;
  font-family: var(--mincho);
}

.plan__title--ashirai {
  position: relative;
}

.plan__title--ashirai::after,
.plan__title--ashirai::before {
  position: absolute;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: var(--color02);
}

.plan__title--ashirai::before {
  left: 0;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.plan__title--ashirai::after {
  right: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.plan__text {
  font-size: 14px;
  line-height: 1.86;
  letter-spacing: .06em;
  margin: 0;
}

.plan__details {
  font-size: 14px;
  padding: 0 15px;
  letter-spacing: .06em;
  line-height: 1.68;
}

.plan__more {
  font-family: var(--mincho);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}

.plan__more::before {
  display: none;
}

.plan__more::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: var(--text-color);
}

.plan__details-title {
  font-weight: normal;
}

.plan__tokuten li+li {
  margin-top: 16px;
}

.plan__tokuten-note {
  padding-inline-start: 30px;
}

.party__party-option {
  border: 1px solid var(--color02);
  margin-block-start: 30px;
}

.party-option {
  padding: 32px 15px;
}

.party-option__title {
  font-family: var(--mincho);
  font-size: 22px;
  color: var(--color03);
  margin-block-end: 24px;
}

.party-option__block:not(:first-child) {
  margin-top: 32px;
}

.party-option__block-title {
  font-family: var(--mincho);
  font-size: 18px;
  position: relative;
}

.party-option__block-title::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color02);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.party-option__item {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .06em;
  position: relative;
}

.party-option__item::after {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--text-color);
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

.party-option__list {
  padding-inline-start: 14px;
  list-style: none;
  margin-block-start: 25px;
}

/* メニュー */
.menu {
  border-top: 1px solid var(--color02);
  margin-top: 30px;
  padding: 30px 15px;
}

.menu__title {
  font-size: 14px;
}

.menu__category {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-inline-start: 20px;
}

.menu__category::before {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--color02);
}

.menu__list {
  list-style-type: none;
}

.menu__list li {
  position: relative;

}

.menu__list li::before {
  position: absolute;
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--text-color);
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

.menu__term {
  font-weight: normal;
}

/* 当日までの流れ */
.flow {
  padding-block-start: 80px;
  padding-block-end: 200px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.flow::before,
.flow::after {
  position: absolute;
  display: block;
  content: "";
}

.flow::after {
  right: -10%;
  bottom: 0;
  background-image: url(../lp-images/sp/flow_bg01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 340px;
  height: 238px;
  z-index: 0;
}

.flow__inner {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
  position: relative;
  z-index: 1;
}

.flow__contents {
  display: grid;
  row-gap: 50px;
}

.flow__step {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas:
    "image image title title title title"
    "text text text text text text";
  align-items: center;
  background-color: var(--color01);
  padding: 26px 15px 36px;
  border: 1px solid var(--color02);
  position: relative;
}

.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 31px;
  bottom: -38px;
  left: 50%;
  translate: -50%;
  background-image: url("../lp-images/arrow_gray.svg");
}

.flow__icon {
  grid-area: image;
  background-color: var(--white);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

.flow__contents {
  margin-top: 32px;
}

.flow__heading {
  grid-area: title;
  font-size: 20px;
  margin-block-end: 0;
  margin-block-start: -8px;
  padding-left: 14px;
  letter-spacing: .06em;
  font-family: var(--mincho);
}

.flow__text {
  grid-area: text;
  font-size: 14px;
  line-height: 1.68;
  letter-spacing: .06em;
}

/* よくある質問 */
.qa {
  padding-block-start: 80px;
  padding-block-end: 80px;
}

.qa__inner {
  max-width: 90%;
  width: 100%;
  margin-inline: auto;
}

.qa__list {
  margin-top: 47px;
}

.qa__list-item {
  border-top: 1px solid #999;
  padding-top: 37px;
  padding-bottom: 8px;
}

.qa__list-item:last-child {
  border-bottom: 1px solid #999;
}

.qa__title {
  font-size: 16px;
}

.qa__desc-wrap {
  margin-top: 26px;
}

.qa__description {
  font-size: 16px;
}

.qa__desc-detail {
  list-style-type: none;
}

/* データ */
.date {
  padding-block-start: 80px;
}

.date__inner {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}

.date__title {
  font-family: var(--mincho);
  font-size: 20px;
  padding-inline-start: 22px;
}

.date__main-image {
  aspect-ratio: 345/300;
  object-fit: cover;
}

.date__body {
  padding: 0 15px;
  margin-block-start: -14px;
}

.date__content {
  margin-bottom: 35px;
}

.date__block {
  display: flex;
  column-gap: 32px;
  line-height: 1.4;
  letter-spacing: .06em;
}

.date__block-title {
  font-weight: normal;
}

.date__ex-title {
  font-size: 16px;
  font-family: var(--mincho);
  margin: 0;
}

.date__ex-text {
  font-size: 14px;
  margin: 0;
}

.date__modal-wrap {
  margin-top: 10px;
}

.date__modals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* アクセス */
.access {
  padding-block-start: 80px;
  padding-block-end: 80px;
}

.access__contents {
  margin-top: 30px;
}

.access__image iframe {
  aspect-ratio: 345/275;
  object-fit: cover;
}

.access__info {
  margin-top: 0;
}

.access-info {
  padding: 0 20px;
}

.access-info__block {
  column-gap: 15px;
  padding-block: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.access-info__block:not(:last-child) {
  border-bottom: 1px solid #d7d7d7;
}

.access-info__block-text {
  font-size: 14px;
  color: var(--text-color);
  letter-spacing: .06em;
  line-height: 1.68;
}

.access-info__block-text span {
  font-family: var(--mincho);
  color: var(--text-color);
}

.access-info__block-text--big {
  font-size: 18px;
  text-shadow: 0.1px 0.1px 0 var(--text-color);
  line-height: 1.4;
  letter-spacing: initial;

}

.access-info__block-text--right {
  margin-left: 20px;
}

.access-info__block-text-tel--big {
  font-size: 22px;
  font-family: var(--mincho);
  color: var(--text-color)!important;
}

/* 他会場 */
.other {
  padding-block-start: 64px;
  padding-block-end: 64px;
  background-color: var(--white);
}

.other__inner {
  padding: 0 15px;
}
.other__head h2 {
  font-size: 24px !important;
  font-family: var(--mincho);
}
.other__contents {
  margin-block-start: 30px;
}

.other__title {
  font-size: 16px;
  font-family: var(--mincho);
  position: relative;
  display: inline-block;
}

.other__link {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-block-start: 20px;
}

.other__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 12px;
  background-image: url(../lp-images/arrow_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 25%;
  transform: translateY(-50%) rotate(-90deg);
  right: -40px;
}

@media screen and (min-width: 960px) {
  body {
    font-size: 16px;
  }

  .inner {
    max-width: 960px;
    margin-inline: auto;
  }

  /* ロゴ */
  .header-logo,
  .logo-footer {
    width: 110px;
  }

  /* ボタン */
  .btn {
    max-width: 412px;
    font-size: 28px;
  }

  /* CTA */
  .cta {
    max-width: 1056px;
    /* width: 100%; */
    margin-inline: auto;
    padding: 40px 0 37px;
  }

  .cta__text-main {
    font-size: 18px;
    letter-spacing: .06em;
    margin-block-end: 0;
  }

  .cta__text-sub {
    font-size: 24px;
    text-shadow: 0.3px 0.3px 0 var(--text-color);
    margin: 0;
  }

  .cta__text-sub--bg {
    background-color: var(--color03);
    color: var(--white);
    margin: 10px auto;
    width: 90%;
  }

  .cta__btn {
    grid-template-columns: repeat(2, 1fr);
    /* padding-block-start: 40px; */
    row-gap: 0;
  }

  .cta__counter {
    font-size: 18px;
  }

  .cta__tel {
    font-size: 32px;
    margin: 0;
  }

  .cta__tel img {
    width: 28px;
    height: 37px;
  }

  /* セクションタイトル */
  .section-title__main {
    font-size: 48px;
  }

  /* ヘッダー */
  .header {
    padding: 10px 36px;
    background: transparent;
  }

  .header__btn {
    font-size: 18px;
    padding: 18px 66px;
  }

  .header__btn::after {
    right: 30px;
  }

  /* フッター */
  .footer {
    padding: 40px 15px;
  }

  .footer__inner {
    max-width: 1180px;
    width: 100%;
    margin-inline: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer__list {
    display: flex;
    column-gap: 50px;
  }

  .footer__list li a {
    white-space: nowrap;
  }

  /* ファーストビュー */
  .fv {
    position: relative;
  }

  .fv__text-wrap {
    bottom: 23%;
  }

  .fv__title {
    font-size: 48px;
    margin-left: -46px;
  }

  .fv__title::before {
    display: none;
  }

  .fv__title--pc-bg {
    position: relative;
  }

  .fv__title--pc-bg::before {
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 120%;
    height: 150%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(6, 8, 9, 0.47);
    filter: blur(50px);
    z-index: -1;
  }

  .fv__text {
    font-size: 16px;
    top: -10px;
  }

  .fv__cta {
    position: absolute;
    bottom: -280px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-block-start: 34px;
  }

  /* お悩み解決 */
  .problem {
    padding-block-start: 375px;
    padding-block-end: 80px;
  }

  .problem__inner {
    max-width: 1056px;
    margin-inline: auto;
  }

  .problem__head::before {
    bottom: -40px;
  }

  .problem__title--small {
    font-size: 28px;
  }

  .problem__title--medium {
    font-size: 58px;
    letter-spacing: .03em;
  }

  .problem__title--big {
    font-size: 64px;
    letter-spacing: .03em;
  }

  .problem__contents {
    margin-top: 90px;
  }

  .problem__item {
    padding: 27px 20px 24px;
  }

  .problem__text {
    font-size: 24px;
  }

  /* 利用事例 */
  .feature {
    margin-block-start: 68px;
    padding-block-end: 110px;
  }

  .feature__block {
    justify-content: space-between;
  }

  .feature__block:not(:first-child) {
    margin-top: 64px;
  }

  .feature__wrap {
    display: flex;
    column-gap: 25px;
    margin-top: 0;
  }

  .feature__main-image-wrap {
    width: 48%;
  }

  .feature__main-image {
    aspect-ratio: 690/511;
  }

  .feature__main-image--reverse {
    padding-top: 50px;
  }

  .feature__contents {
    display: grid;
    grid-template-areas:
      "images"
      "description";
    padding-block-start: 0;
  }

  .feature__description {
    grid-area: description;
    padding-inline-start: 0;
    margin-block-start: -40px;
  }

  .feature__description--02 {
    width: 80%;
    margin-block-start: 54px;
    margin-inline-start: auto;
  }

  .feature__number {
    font-size: 40px;
  }

  .feature__title {
    font-size: 40px;
    letter-spacing: initial;
  }

  .feature__text {
    font-size: 20px;
    width: 83%;
  }

  .feature__text--w100 {
    width: 100%;
  }

  .feature__images {
    grid-area: images;
    column-gap: 53px;
    margin-block-start: 0;
  }

  .feature__images--reverse {
    flex-direction: row-reverse;

  }

  .feature__image01 {
    aspect-ratio: 304/183;
    max-width: 304px;
  }

  .feature__image02 {
    aspect-ratio: 184/267;
    max-width: 184px;
  }

  .feature__image03 {
    aspect-ratio: 436/216;
    max-width: 436px;

  }

  /* .feature__image04 {
    max-width: 136px;
  }

  .feature__image05 {
    max-width: 136px;
  }

  .feature__image06 {
    max-width: 258px;
  } */

  /* 利用事例 */
  .case {
    padding-block-start: 110px;
  }

  .case__contents {
    max-width: 1180px;
    width: 100%;
    margin-inline: auto;
    row-gap: 30px;
    padding: 0 15px;
  }

  .case__contents-block {
    column-gap: 50px;
    justify-content: space-between;
  }

  .case__contents-block:first-child {
    padding-block-start: 50px;
  }

  .case__image-wrap {
    width: 38%;
  }

  .case__main-image {
    aspect-ratio: 450/365;
  }

  .case__contents-inner {
    width: 57%;

  }

  .case__body {
    padding: 0;
  }

  .case__title {
    font-size: 24px;
  }

  .case__block-text {
    font-size: 16px;
  }

  /* プラン紹介 */
  .plan {
    padding-block-start: 118px;
  }

  .plan__items--bg-color::before {
    font-size: 36px;
    padding: 9px 32px;
    top: -45px;
  }

  .plan__item-card {
    column-gap: 52px;
  }

  .plan__item--left {
    width: 41%;

  }

  .plan__contents {
    max-width: 1120px;
    width: 100%;
    margin-inline: auto;
    margin-block-start: 100px;
  }

  .plan__items {
    padding-block-start: 80px;
  }

  .plan__main-image {
    aspect-ratio: 324/230;
    max-width: 324px;
  }

  .plan__items:not(:first-child) .plan__main-image {
    aspect-ratio: 367/261;
    max-width: 367px;
  }

  .plan__details {
    font-size: 16px;
  }

  .plan__details-item {
    display: flex;
    column-gap: 10px;
  }

  .plan__tokuten {
    margin-left: 10%;
  }

  .plan__tokuten-note {
    margin-top: 10px;
    margin-left: 10%;
  }

  .plan__body {
    max-width: 900px;
  }

  .plan__body--short {
    max-width: 730px;
  }

  .plan__title {
    font-size: 24px;
    display: inline-block;
    padding: 0 30px;
  }

  .plan__text {
    font-size: 16px;
    line-height: 1.4;
  }

  .plan__card-body {
    padding: 25px 4px 10px;
  }

  .plan__card-body p {
    margin-top: 0;
  }

  .plan__more {
    font-size: 20px;
    position: relative;
    top: -50px;
    left: 57.5%;
  }

  /* パーティーオプション */
  .party-option {
    padding-block-start: 40px;
  }

  .party__party-option {
    max-width: 1047px;
    width: 100%;
    margin-inline: auto;
  }

  .party-option__block {
    margin-top: 32px;
  }

  .party-option__block:nth-child(odd) {
    margin-left: 52px;
  }

  .party-option__block-title {
    font-size: 22px;
  }

  .party-option__title {
    font-size: 36px;
  }

  .party-option__contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 100px;
  }

  /* メニュー */
  .menu__block {
    display: flex;
    column-gap: 10px;
  }

  .menu__category-inner {
    display: flex;
    flex-wrap: wrap;
  }

  .menu__subcategory {
    width: 50%;
  }

  /* 当日までの流れ */
  .flow {
    padding-block-start: 110px;
    padding-block-end: 210px;
  }

  .flow::before {
    width: 640px;
    height: 563px;
    left: initial;
    left: -10px;
    top: 230px;
    background-image: url(../lp-images/pc/flow_bg02.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .flow::after {
    width: 640px;
    height: 563px;
    left: initial;
    right: -87px;
    bottom: 96px;
  }

  .flow__contents {
    margin-top: 70px;
    row-gap: 70px;
    max-width: 670px;
    width: 100%;
    margin-inline: auto;
  }

  .flow__step {
    grid-template-areas:
      "image image title title title title title"
      "image image text text text text text";
    padding: 50px 5%;
  }

  .flow__step:not(:last-child):after {
    bottom: -46px;
  }

  .flow__icon {
    width: 117px;
    height: 117px;
  }

  .flow__heading {
    margin-left: -70px;
    font-size: 22px;
    position: relative;
    top: 20px;
  }

  .flow__text {
    margin-left: -58px;
    font-size: 18px;
    position: relative;
    top: 12px;
  }

  /* よくある質問 */
  .qa {
    padding-block-start: 110px;
    padding-block-end: 110px;
  }

  .qa__inner {
    max-width: 885px;
  }

  .qa__list-item {
    padding-block-start: 32px;
    padding-block-end: 32px;
  }

  .qa .uk-accordion>:nth-child(n+2) {
    margin-top: 0;
  }

  .qa__list {
    margin-top: 65px;
  }

  .qa__title {
    font-size: 18px;
  }

  .qa__description {
    font-size: 18px;
  }

  /* データ */
  .date {
    padding-block-start: 120px;
  }

  .date__inner {
    padding-inline-end: 0;
  }

  .date__card {
    max-width: 1310px;
    margin-inline-start: auto;
    justify-content: space-between;
  }

  .date__body {
    padding: 0 10px;
  }

  .date__title {
    margin-block-start: 80px;
    padding-inline-start: 0;
    font-size: 24px;
  }

  .date__main-image {
    aspect-ratio: 564/493;
    max-width: 564px;
    margin-inline-start: 90px;
  }
  .date__modal-img {
   max-width: 750px;
   width: 100%; 
  }
  /* アクセス */
  .access {
    padding-block-start: 110px;
    padding-block-end: 110px;
  }

  .access__contents {
    margin-top: 57px;
    max-width: 1310px;
    width: 100%;
  }

  .access__image-wrap {
    width: 43%;
  }

  .access__image iframe {
    aspect-ratio: 564/493;
  }

  .access__info {
    width: 57%;
  }

  .access-info {
    margin-left: 100px;
    padding: 0 40px;
  }

  .access-info__block {
    column-gap: 32px;
    padding-block-end: 30px;
  }

  .access-info__block-text {
    font-size: 16px;
  }

  .access-info__block-text--big {
    font-size: 20px;
  }

  .access-info__block-text-tel--big {
    font-size: 28px;
  }

  /* 他会場 */
  .other {
    padding-block-start: 110px;
    padding-block-end: 110px;
  }

  .other__head h2 {
    font-size: 32px !important;
  }

  .other__contents {
    margin-block-start: 60px;
    max-width: 1000px;
    margin-inline: auto;
  }

  .other__contents-inner {
    justify-content: space-between;
  }

  .other__card {
    max-width: 378px;
  }
}

@media (min-width:1180px) {
  .fv__cta {
    bottom: -230px;
  }
}