@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #39250b;
}

body {
  font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 750px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 750px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

main {
  max-width: 750px;
  margin-inline: auto;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 750px) {
  html {
    font-size: 2.1333333333vw;
  }
}
@media (min-width: 750px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-block: 0;
}

.inner {
  width: 100%;
  padding-inline: 12.5px;
  margin-inline: auto;
}
@media screen and (min-width: 750px) {
  .inner {
    max-width: 810px;
    padding-inline: 30px;
  }
}

header {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

.fv {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.fv__title {
  aspect-ratio: 80/1120;
  position: absolute;
  top: 2.6982829109%;
  right: 4%;
  width: 10.6666666667%;
}

.fv__logo {
  aspect-ratio: 236/77;
  position: absolute;
  top: 2.6165167621%;
  left: 3.3333333333%;
  width: 31.4666666667%;
}

.fv__brand {
  position: absolute;
  top: 13.9002452984%;
  left: 9.0666666667%;
  width: 24.8%;
  aspect-ratio: 175/118;
}

.slide {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.slide--right {
  position: absolute;
  left: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.slide--right.is-animated {
  opacity: 1;
  left: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide--left {
  position: absolute;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.slide--left.is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide--up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.slide--up.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide--down {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.slide--down.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide--in-left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.slide--in-left.is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide--in-right {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out;
  transition: opacity 0.8s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.slide--in-right.is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.event {
  background: #ffb8c8;
  padding-block: 2.8% 5.3333333333%;
}

.event__time {
  aspect-ratio: 697/91;
  width: 92.9333333333%;
  margin-inline: auto;
  display: block;
}

.event__tokuten01 {
  aspect-ratio: 649/369;
  width: 86.5333333333%;
  margin-inline: auto;
  margin-top: 5.3333333333%;
  display: block;
}

.event__tokuten02 {
  aspect-ratio: 651/1129;
  width: 86.8%;
  margin-inline: auto;
  margin-top: 3.2%;
  display: block;
}

.event__text {
  margin-top: 4%;
  width: 81.0666666667%;
  margin-inline: auto;
  display: block;
  line-height: 1.3333333333;
}

.common__text {
  font-size: clamp(0.938rem, 0.375rem + 2.4vw, 1.5rem);
  color: #39250b;
  text-align: left;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
  letter-spacing: -0.05em;
}

.access {
  padding-block: 14.5333333333% 5.3333333333%;
}

.access__title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2rem, 8.53vw, 4rem);
  font-weight: 700;
  text-align: center;
  color: #d0892a;
  position: relative;
}

.access__before {
  width: 26.6666666667%;
  margin-inline: auto;
  padding-top: 1.6%;
  position: absolute;
  bottom: 5.3333333333%;
  left: 4%;
}

.access__info {
  padding-block: 3.0666666667% 3.3333333333%;
  border-top: 1px solid #d0892a;
  border-bottom: 1px solid #d0892a;
  margin-top: 2.9333333333%;
}

.access__text {
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  color: #964e12;
  text-align: center;
  line-height: 1.2;
  margin-top: 2.1333333333%;
}

.access__item {
  margin-top: 4.8%;
}

.access__item:first {
  margin-top: 4.5333333333%;
}

.access__item img {
  aspect-ratio: 187/53;
  width: 27.1014492754%;
  margin-inline: auto;
}

.access__map iframe {
  aspect-ratio: 696/365;
  width: 100%;
  height: 100%;
  margin-top: 3.0666666667%;
  border: 0;
}

.date {
  aspect-ratio: 677/47;
  width: 100%;
  padding-block: 1.0625rem 1.75rem;
}
@media screen and (min-width: 750px) {
  .date {
    padding-block: 2.1875rem 3.4375rem;
  }
}

#btn_animation .btn {
  display: block;
  position: relative;
  aspect-ratio: 647/151;
  width: 100%;
  height: auto;
  line-height: 78px;
  font-size: 24px;
  text-decoration: none;
  border-radius: 5rem;
  color: #fbfbfb;
  text-align: center;
  overflow: hidden;
}

#btn_animation .btn:hover {
  text-decoration: none;
  color: #fbfbfb;
}

#btn_animation .btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  -webkit-animation: btn_animation 2.5s ease-in-out infinite;
          animation: btn_animation 2.5s ease-in-out infinite;
}

@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.btn__wrapper {
  position: relative;
  display: block;
  width: 86.2666666667%;
  margin-inline: 7%;
}

.btn__wrapper .btn__before {
  position: absolute;
  top: -12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 405/60;
  width: 70%;
  height: auto;
  z-index: 1;
}

.festa {
  padding-block: 8% 4.1333333333%;
  background-image: url(../images/festa_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.festa__title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1rem, -0.375rem + 5.87vw, 2.375rem);
  font-weight: 600;
  text-align: center;
  color: #b2494e;
  width: 100%;
}

.festa__img {
  aspect-ratio: 481/99;
  width: 61.6666666667%;
  height: auto;
  margin-inline: auto;
  padding-top: 2.5333333333%;
}

.festa__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  font-weight: 500;
  text-align: center;
  color: #d0892a;
  width: 100%;
  padding-top: 3.3333333333%;
}

.festa__lead {
  aspect-ratio: 698/85;
  width: 89.4871794872%;
  padding-top: 2.6666666667%;
  margin-inline: auto;
}

.relative {
  position: relative;
}

.relative img {
  width: 100%;
  height: auto;
}

.common__title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.438rem, 6.13vw, 2.875rem);
  font-weight: 700;
  text-align: center;
  color: #964e12;
}

.kaijyo {
  background-image: url(../images/kaijyo_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding-block: 1.4666666667% 5.0666666667%;
}

.kaijyo__image {
  position: relative;
  height: auto;
  overflow: hidden;
  aspect-ratio: 698/690;
  width: 89.4871794872%;
  margin-inline: auto;
  margin-top: 4.6666666667%;
}

.kaijyo__image01 {
  aspect-ratio: 698/382;
  width: 100%;
  margin-inline: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.kaijyo__image02 {
  aspect-ratio: 462/308;
  width: 66.1891117479%;
  margin-inline: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

.kaijyo__image03 {
  aspect-ratio: 236/308;
  width: 33.8108882521%;
  margin-inline: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

.kaijyo__sub {
  aspect-ratio: 698/156;
  width: 89.4871794872%;
  margin-inline: auto;
  margin-top: 5.2%;
}

.kaijyo__text {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.313rem, 5.6vw, 2.625rem);
  font-weight: 500;
  text-align: center;
  margin-inline: auto;
  color: #b2494e;
  width: 89.7435897436%;
  margin-top: 6%;
}

.coupon {
  background-image: url(../images/coupon_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding-block: 8% 4.2666666667%;
}

.coupon__title {
  width: 92.1333333333%;
  margin-inline: auto;
}

.coupon__sub {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.625rem, 6.93vw, 3.25rem);
  font-weight: 500;
  padding-top: 5.7333333333%;
  text-align: center;
  color: #b2494e;
}

.coupon__sub span {
  font-size: clamp(2.375rem, 10.13vw, 4.75rem);
}

.coupon__item01 {
  aspect-ratio: 698/410;
  width: 93.0666666667%;
  margin-inline: auto;
  padding-top: 5.7333333333%;
}

.coupon__item02 {
  aspect-ratio: 698/410;
  width: 93.0666666667%;
  margin-inline: auto;
  padding-top: 5.4666666667%;
}

.coupon__item03 {
  aspect-ratio: 698/410;
  width: 93.0666666667%;
  margin-inline: auto;
  padding-top: 6.6666666667%;
}

.coupon__item04 {
  aspect-ratio: 698/464;
  width: 93.0666666667%;
  margin-inline: auto;
  padding-top: 5.4666666667%;
}

.coupon__info {
  padding-top: 3.4666666667%;
  width: 91.3333333333%;
  margin-inline: auto;
  letter-spacing: -0.05em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}

.coupon__btn {
  margin-top: 7.3333333333%;
}

.common-info {
  font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  color: #39250b;
  text-align: left;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
}

.reason {
  background-image: url(../images/reason_bg@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding-block: 2.8% 5.4666666667%;
}

.reason__title {
  width: 68.1333333333%;
  margin-inline: auto;
}

.reason__items {
  width: 93.0666666667%;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  height: auto;
  overflow: hidden;
  margin-top: 3.4666666667%;
  padding-block: 1.3333333333% 7.0666666667%;
}

.reason__item {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 5.7333333333%;
}

.reason__item-title {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.reason__item-text {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.125rem, 0.729rem + 1.69vw, 2.25rem);
  font-weight: 500;
  color: #39250b;
  text-align: center;
  line-height: 1.2222222222;
  padding-top: 2.4%;
  width: 95.6647398844%;
  margin-inline: auto;
}

.reason__item-img {
  width: 95.6647398844%;
  margin-inline: auto;
  overflow: hidden;
  padding-top: 1.7333333333%;
}

.reason__item-img--full {
  width: 100%;
  margin-top: 0;
}

.reason__item01-sub {
  width: 71.8208092486%;
  margin-inline: auto;
  padding-top: 2.6666666667%;
}

.reason_info {
  width: 96.5317919075%;
  margin-inline: auto;
  margin-top: 1%;
}

.reason_info--center {
  text-align: center;
}

.reason__item05-sub {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.438rem, 0.931rem + 2.16vw, 2.875rem);
  font-weight: 400;
  color: #39250b;
  text-align: center;
  margin-block: 4% 0;
}

.reason__item06-sub {
  width: 72.2543352601%;
  margin-inline: auto;
  margin-block: 2.6666666667% 0;
}

.reason__btn {
  margin-top: 10.8%;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.keyframe-event {
  -webkit-animation: float 2s ease-in-out infinite;
          animation: float 2s ease-in-out infinite;
}

.event02 {
  background: #ffffff;
}

.event02__first {
  padding-block: 3.9375rem 2.4375rem;
  z-index: 2;
}

.event02__title {
  aspect-ratio: 690/124;
  width: 92%;
  margin-inline: auto;
  margin-top: 1.625rem;
}

.event02__sub {
  aspect-ratio: 645/277;
  width: 86%;
  margin-inline: auto;
  margin-top: 2.4375rem;
}

.event02__img {
  aspect-ratio: 740/477;
  margin-inline: auto;
  margin-top: 0.75rem;
}

.event02__text {
  margin-top: 0.8125rem;
}

.event03 {
  background-image: url(../images/event03_bg@2x.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: -8%;
  z-index: -1;
}

.event03__title {
  padding-top: 13.4666666667%;
  width: 69.2%;
  margin-inline: auto;
}

.event03__title img {
  width: 100%;
  height: auto;
  z-index: -1;
}

.event03__logo {
  aspect-ratio: 750/240;
  width: 100%;
  margin-inline: auto;
  margin-top: 4.8%;
}

.event03__img {
  aspect-ratio: 692/1052;
  width: 92.2666666667%;
  margin-inline: auto;
  margin-top: 3.3333333333%;
}

.event03__text {
  margin-top: 2%;
}

.event03__second {
  margin-top: 2.1333333333%;
}

.event03__second-title {
  aspect-ratio: 750/378;
  width: 100%;
  margin-inline: auto;
}

.event03__second-text {
  font-size: clamp(1.063rem, 4.53vw, 2.125rem);
  font-weight: 500;
  line-height: 1.2;
  color: #39250b;
  text-align: center;
  margin-top: 4.4%;
  width: 96%;
  margin-inline: auto;
}

.event03__second-text span {
  color: #d0892a;
}

.event03__second-img {
  aspect-ratio: 692/485;
  width: 92.2666666667%;
  margin-inline: auto;
  margin-top: 1.8666666667%;
}

.event03__second-img img {
  width: 100%;
  height: auto;
}

.event03__size {
  margin-top: 7.4666666667%;
}

.event03__size-title {
  aspect-ratio: 692/68;
  width: 92.2666666667%;
  margin-inline: auto;
}

.event03__size-img {
  aspect-ratio: 692/281;
  width: 92.2666666667%;
  margin-inline: auto;
  margin-top: 2.6666666667%;
}

.event03__size_text {
  margin-top: 2.4%;
}

.event03__btn {
  margin-top: 7.2%;
}

/* 画像サイズ調整 */
.splide__slide img {
  height: auto;
  width: 100%;
}

/* 選択されていないサムネイルは薄くする */
.splide__slide {
  opacity: 0.6;
}

/* 選択されているサムネイルだけ透過しない */
.splide__slide.is-active {
  opacity: 1;
}

.splide__arrows svg {
  display: none;
  /* 背景画像を使用するためSVGを非表示 */
}

.main-slider {
  position: relative;
}

.splide__arrows {
  position: absolute;
  top: 50%;
  z-index: 9999;
  width: 100%;
  pointer-events: none;
  /* 親要素のクリックを許可 */
}

.splide__arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: auto;
  /* ボタン自体はクリック可能 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.splide__arrow--prev {
  left: 10px;
  background-image: url(../images/prev@2x.png);
}

.splide__arrow--next {
  right: 10px;
  left: auto;
  background-image: url(../images/next@2x.png);
}

#main-carousel {
  position: relative;
}

.splide__pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.splide__pagination li {
  display: inline-block;
  margin: 0 4px;
}

.splide__pagination button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #575757;
}

.splide__pagination button.is-active {
  background-color: #b2494e;
  opacity: 1;
}

.collection__info {
  padding-block: 4.2666666667%;
  padding-inline: 2%;
}

.collection__title {
  aspect-ratio: 750/156;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.collection__title--girly {
  background: #ec6d81;
}

.collection__title--girly img {
  width: 79.6%;
}

.collection__title--eccentric {
  background: #7fdca5;
}

.collection__title--eccentric img {
  width: 88.5333333333%;
}

.collection__title--cool {
  background: #70ccef;
}

.collection__title--cool img {
  width: 73.2%;
}

.collection__title--classic {
  background: #245411;
}

.collection__title--classic img {
  width: 93.8666666667%;
}

.collection__title--elegant {
  background: #a674b0;
}

.collection__title--elegant img {
  width: 90.8%;
}

.collection__title--modern {
  background: #c13a36;
}

.collection__title--modern img {
  width: 93.8666666667%;
}

.mamafuri {
  padding-block: 4.2666666667%;
  background-image: url(../images/mamafuri_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.mamafuri__title01 {
  width: 92.1333333333%;
  aspect-ratio: 691/125;
  margin-inline: auto;
}

.mamafuri__title02 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.375rem, 10.13vw, 4.75rem);
  font-weight: 500;
  text-align: center;
  color: #b2494e;
  width: 100%;
  padding-top: 4.2666666667%;
}

.mamafuri__title03 {
  width: 84.1333333333%;
  aspect-ratio: 631/155;
  padding-top: 1.4666666667%;
  margin-inline: auto;
}

.mamafuri__title04 {
  width: 77.8666666667%;
  aspect-ratio: 584/44;
  margin-inline: auto;
  padding-top: 4.2666666667%;
}

.mamafuri__img {
  width: 87.4666666667%;
  aspect-ratio: 656/308;
  margin-inline: auto;
  padding-top: 1.3333333333%;
}

.mamafuri__info {
  padding-top: 1.4666666667%;
  padding-inline: 6.2666666667%;
}

.mamafuri__title05 {
  width: 100%;
  aspect-ratio: 750/110;
  margin-inline: auto;
  padding-top: 3.4666666667%;
}

.mamafuri__title06 {
  width: 96.1333333333%;
  aspect-ratio: 721/178;
  margin-inline: auto;
  padding-top: 1.6%;
}

.mamafuri__img02 {
  width: 85.4666666667%;
  aspect-ratio: 641/236;
  margin-inline: auto;
  padding-top: 5.8666666667%;
}

.mamafuri__title07 {
  width: 92%;
  aspect-ratio: 690/184;
  margin-inline: auto;
  padding-top: 3.6%;
}

.mamafuri__info02 {
  padding-top: 2.9333333333%;
  padding-inline: 4%;
}

.mamafuri-plan {
  padding-block: 7.4666666667% 9.6%;
  background: #fef0ee;
  width: 100%;
  height: auto;
}

.mamafuri-plan__title {
  width: 87.6%;
  aspect-ratio: 657/141;
  margin-inline: auto;
}

.mamafuri-plan__item {
  width: 92.1333333333%;
  margin-inline: auto;
  padding-top: 5.4666666667%;
}

.flow {
  padding-block: 11.0666666667% 5.8666666667%;
  background-image: url(../images/flow_bg@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.flow__container {
  width: 91.8666666667%;
  margin-inline: auto;
  background: #fff;
  opacity: 0.902;
  border: 1px solid #b2494e;
  padding-block: 4.8% 5.8666666667%;
}

.flow__title {
  width: 88.6666666667%;
  margin-inline: auto;
}

.flow__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  padding-top: 3.0666666667%;
}

.flow__img {
  width: 85.6%;
  margin-inline: auto;
  padding-top: 5.4666666667%;
}

.faq {
  padding-block: 7.4666666667% 9.6%;
  background-image: url(../images/faq_bg@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  margin-top: -8.2666666667%;
}

.faq__sub {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.313rem, 5.6vw, 2.625rem);
  font-weight: 500;
  text-align: center;
  color: #39250b;
  padding-top: 6.4%;
}

.faq__title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.188rem, 9.33vw, 4.375rem);
  font-weight: 500;
  text-align: center;
  color: #b2494e;
  padding-top: 2.5333333333%;
}

.faq__title span {
  font-size: clamp(1.563rem, 6.67vw, 3.125rem);
  font-weight: 500;
  text-align: center;
  color: #b2494e;
}

.faq__container {
  width: 92.8%;
  margin-inline: auto;
  padding-block: 1.8666666667% 1.6%;
  background: #fff;
  padding-inline: 4% 4.8%;
  overflow-x: hidden;
  overflow-y: auto;
  height: 512px;
  margin-top: 3.8666666667%;
}

article {
  padding: 8px 40px;
  background-color: #eee;
}

article + article {
  border-top: 2px dashed #fff;
}

/* SimpleBarのカスタムスタイル - 角丸スクロールバー */
.faq__container .simplebar-scrollbar {
  background-color: #cfcfcf !important;
  border-radius: 10px !important;
  width: 0.625rem !important;
}

.faq__container .simplebar-scrollbar::before {
  background-color: #cfcfcf !important;
  border-radius: 10px !important;
  opacity: 1 !important;
}

.faq__container .simplebar-track {
  background-color: #fff;
  border-radius: 10px;
}

.faq__container .simplebar-track.simplebar-vertical {
  right: 0px;
  width: 0.625rem;
}

.faq__item {
  width: 100%;
  height: auto;
  padding-block: 3.2% 3.8666666667%;
}

.faq__item-q {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  font-weight: 500;
  text-align: left;
  color: #5b7ca4;
  padding-inline: 9.0666666667% 2.9333333333%;
  position: relative;
}

.faq__item-q::before {
  content: "Q";
  position: absolute;
  width: 4.4%;
  height: 6.4%;
  top: 0;
  left: 2.5333333333%;
}

.faq__item-a {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.375rem, 5.87vw, 2.75rem);
  font-weight: 500;
  text-align: left;
  color: #b2494e;
  padding-inline: 9.0666666667% 0.6666666667%;
  margin-top: 2%;
  position: relative;
}

.faq__item-a::before {
  content: "A";
  position: absolute;
  width: 4.6666666667%;
  height: 7.0666666667%;
  top: 0;
  left: 2.5333333333%;
}

.faq__item-text {
  font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(1rem, 4.27vw, 2rem);
  line-height: 1.25;
  font-weight: 500;
  text-align: left;
  color: #39250b;
  padding-left: 2.8%;
  padding-top: 1.6%;
}

.faq__line {
  background-image: url(../images/faq_line@2x.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.voice {
  padding-block: 7.2% 5.0666666667%;
  background-image: url(../images/voice_bg@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.voice__title {
  width: 55.4666666667%;
  margin-inline: auto;
}

.voice__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  font-weight: 500;
  text-align: center;
  color: #39250b;
  padding-top: 4.6666666667%;
}

.voice__img {
  width: 98.4%;
  margin-inline: auto;
  padding-top: 2%;
}

.voice__container {
  padding-top: 6.9333333333%;
}

.voice__text {
  font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(1.063rem, 4.53vw, 2.125rem);
  font-weight: 400;
  text-align: left;
  color: #39250b;
  line-height: 1.5588235294;
}

.voice__line {
  width: 100%;
  height: auto;
  padding-block: 4.6666666667%;
}

.voice_btn {
  margin-top: 8.5333333333%;
}

.after {
  padding-block: 4.9333333333% 4.5333333333%;
  background-image: url(../images/after_bg@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.after__title {
  width: 92%;
  margin-inline: auto;
}

.after__item {
  width: 92.6666666667%;
  margin-inline: auto;
  padding-top: 3.2%;
}

.after__item img {
  width: 100%;
  height: auto;
}

.after__info {
  padding-top: 2.8%;
  padding-inline: 4.1333333333%;
  line-height: 1.75;
  letter-spacing: -0.05em;
}

.yellow-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(30%, #fdfd9b), color-stop(60%, transparent));
  background: linear-gradient(transparent 50%, #fdfd9b 30% 80%, transparent 60%);
}

.tokuten {
  background-image: url(../images/tokuten_bg@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 8% 7.0666666667%;
}

.tokuten__sub {
  width: 65.8666666667%;
  margin-inline: auto;
}

.tokuten__title {
  width: 92%;
  margin-inline: auto;
  padding-top: 1.2%;
}

.tokuten__item {
  width: 92%;
  margin-inline: auto;
  padding-top: 6.1333333333%;
}

.tokuten__item img {
  width: 100%;
  height: auto;
}

.tokuten__btn {
  margin-top: 8.9333333333%;
}