@charset "UTF-8";
/* リキッドレイアウト対応 */
@media (max-width: 1240px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media (min-width: 1240px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* ホバー */
a, input[type=submit] {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
a:hover, input[type=submit]:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

html {
  font-family: "BIZ UDGothic", sans-serif;
  scrollbar-gutter: stable;
}

html.is-fixed {
  overflow: hidden;
}

.pink {
  color: #f77b96;
}

.marker {
  background: #f3f77b;
}

.note {
  font-size: 14px;
  font-size: 0.875rem;
  color: #c0c0c0;
  display: block;
}
@media screen and (max-width: 767px) {
  .note {
    font-size: 0.75rem;
  }
}

*,
*::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;
}

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

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

/* 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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -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;
}

.inner {
  width: 100%;
  max-width: 1280px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 1250px;
    padding-right: 5%;
    padding-left: 5%;
  }
}

.section-title {
  font-size: 50px;
  font-size: 3.125rem;
  font-family: "BIZ UDMincho", serif;
  text-align: center;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-title span {
  color: #f77b96;
}

/* ボタンの光る効果 */
.shine-effect {
  overflow: hidden;
  -webkit-animation: float 1s ease-in-out infinite;
          animation: float 1s ease-in-out infinite;
  border-radius: 0.625rem;
}

/* shine (キラッ) エフェクト */
.shine-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: translateX(-50%) skewX(-20deg);
          transform: translateX(-50%) skewX(-20deg);
  -webkit-animation: shine 1.5s linear infinite;
          animation: shine 1.5s linear infinite;
}

/* キラッと光るアニメーション */
@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.fixed-btn {
  background: #fff;
  padding: 10px 0;
  padding: 0.625rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .fixed-btn__inner {
    padding-left: 3%;
    padding-right: 3%;
  }
}

.fixed-btn__img {
  -webkit-box-shadow: 0 0.3125rem 0 #db647e;
          box-shadow: 0 0.3125rem 0 #db647e;
}

.fixed-btn__img:hover {
  opacity: 0.7;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fixed-btn__img {
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .fixed-btn__img {
    width: 100%;
  }
}

.footer__attention {
  background: #323232;
  padding: 35px 0 30px;
  padding: 2.1875rem 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__attention {
    padding: 1.25rem 0;
  }
}

.footer__inner {
  max-width: 1440px;
  max-width: 90rem;
}

.footer__attention-block:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .footer__attention-block:not(:first-child) {
    margin-top: 0.9375rem;
  }
}

.footer__attention-block {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__attention-block {
    font-size: 0.75rem;
  }
}

.footer__attention-block-title {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .footer__attention-block-title {
    font-size: 0.75rem;
  }
}

.footer__attention-block-list {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .footer__attention-block-list {
    font-size: 0.75rem;
  }
}

.footer__bottom {
  background: #18171a;
  padding: 5px 0 160px;
  padding: 0.3125rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding: 0.3125rem 0 5rem;
  }
}

.footer__bottom-text {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom-text {
    font-size: 0.75rem;
  }
}

.frequency {
  padding-top: 55px;
  padding-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .frequency {
    padding-top: 1.875rem;
  }
}

.frequency__content {
  background-image: url(../../images/common/ideal-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  padding: 40px 0;
  padding: 2.5rem 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .frequency__content {
    padding: 1.25rem 0;
    margin-top: 0.625rem;
  }
}

.frequency__inner {
  max-width: 1000px;
  max-width: 62.5rem;
}

.frequency__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .frequency__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.frequency__img {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .frequency__img {
    width: 100%;
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.frequency__text {
  width: 63%;
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .frequency__text {
    width: 100%;
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem;
    border-radius: 0.3125rem;
    margin-top: 1.25rem;
  }
}

.frequency__text:after {
  content: "";
  position: absolute;
  top: 5px;
  top: 0.3125rem;
  left: 5px;
  left: 0.3125rem;
  right: 5px;
  right: 0.3125rem;
  bottom: 5px;
  bottom: 0.3125rem;
  border: 1px solid #cbe8ef;
  pointer-events: none;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .frequency__text:after {
    border-radius: 0.3125rem;
  }
}

.frequency__subtitle {
  font-weight: 500;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.2;
  font-family: "BIZ UDMincho", serif;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .frequency__subtitle {
    white-space: normal;
    white-space: initial;
    font-size: 1.5rem;
  }
}

.frequency__detail {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .frequency__detail {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.impression {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .impression {
    padding-top: 1.875rem;
  }
}

.impression__content {
  background: -webkit-gradient(linear, left top, right top, from(#ffcbca), to(#fde3ff));
  background: linear-gradient(to right, #ffcbca, #fde3ff);
  -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
          clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 85px;
  padding-bottom: 5.3125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .impression__content {
    padding-top: 1.25rem;
    padding-bottom: 5rem;
    margin-top: 0.625rem;
    -webkit-clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
            clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  }
}

.impression__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .impression__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.impression__flex:before {
  content: "";
  display: block;
  width: 90%;
  height: 95%;
  background: #fff;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .impression__flex:before {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    height: 100%;
  }
}

.impression__flex:after {
  content: "";
  display: block;
  width: 292px;
  width: 18.25rem;
  height: 243px;
  height: 15.1875rem;
  background-image: url(../../images/common/answer-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: -35px;
  top: -2.1875rem;
  left: min(50vw + 200px, 910px);
  left: min(50vw + 12.5rem, 56.875rem);
}
@media screen and (max-width: 767px) {
  .impression__flex:after {
    width: 9.125rem;
    height: 7.5625rem;
    top: 13.125rem;
    right: 10%;
    left: auto;
    left: initial;
  }
}

.impression__img {
  width: 280px;
  width: 17.5rem;
  position: relative;
}

.impression__text {
  width: calc(100% - 17.5rem);
  position: relative;
  padding-left: 40px;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .impression__text {
    width: 82%;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.25rem;
  }
}

.impression__title {
  font-family: "BIZ UDMincho", serif;
  font-weight: 500;
  letter-spacing: -0.08em;
  font-size: 50px;
  font-size: 3.125rem;
  margin-top: -10px;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .impression__title {
    font-size: 1.5rem;
  }
}

.impression__detail {
  padding-top: 10px;
  padding-top: 0.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .impression__detail {
    font-size: 0.875rem;
  }
}

.impression__note {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .impression__note {
    padding-top: 0.625rem;
    padding-right: 0;
  }
}

.menu {
  background-image: url(../../images/common/menu-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  padding: 50px 0 60px;
  padding: 3.125rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .menu {
    padding: 1.5625rem 0 1.875rem;
  }
}

.menu__title {
  font-family: "BIZ UDMincho", serif;
  color: #fff;
  font-weight: 500;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .menu__title {
    font-size: 1.5rem;
  }
}

.menu__title span {
  display: inline-block;
}

.menu__content {
  max-width: 911px;
  max-width: 56.9375rem;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 0.625rem;
  margin-top: 240px;
  margin-top: 15rem;
  position: relative;
  padding: 90px 40px 40px;
  padding: 5.625rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .menu__content {
    border-radius: 0.3125rem;
    margin-top: 7.5rem;
    padding: 2.5rem 1.25rem 1.25rem;
  }
}

.menu__content:before {
  content: "";
  display: block;
  width: 725px;
  width: 45.3125rem;
  height: 254px;
  height: 15.875rem;
  background-image: url(../../images/common/menu-illust.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: -215px;
  top: -13.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .menu__content:before {
    width: 22.625rem;
    height: 7.9375rem;
    top: -6.25rem;
  }
}

.menu__subtitle {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .menu__subtitle {
    font-size: 1.125rem;
  }
}

.menu__items {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .menu__items {
    padding-top: 1.25rem;
  }
}

.menu__item:not(:first-child) {
  padding-top: 40px;
  padding-top: 2.5rem;
  border-top: 1px solid #e1e1e1;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .menu__item:not(:first-child) {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
  }
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__item-ranking {
  width: 108px;
  width: 6.75rem;
}
@media screen and (max-width: 767px) {
  .menu__item-ranking {
    width: 3.75rem;
  }
}

.menu__item-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .menu__item-title {
    font-size: 1.125rem;
    padding-top: 0.9375rem;
  }
}

.menu__item-detail {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .menu__item-detail {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.menu__item-img {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.menu__item:first-child {
  position: relative;
}

.menu__item:first-child:after {
  content: "";
  display: block;
  width: 72px;
  width: 4.5rem;
  height: 54px;
  height: 3.375rem;
  background-image: url(../../images/common/pickup.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  left: 33px;
  left: 2.0625rem;
  top: 100px;
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .menu__item:first-child:after {
    top: 2.5rem;
    left: 0;
    width: 2.25rem;
    height: 1.6875rem;
  }
}

.mv {
  width: 100%;
  background-image: url(../../images/common/mv-bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: scroll;
  background-size: 100% 88%;
  position: relative;
}

.mv:after {
  content: "";
  display: block;
  width: 47%;
  height: 88%;
  background-image: url(../../images/common/mv-img.png);
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: scroll;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1470px) {
  .mv:after {
    background-size: cover;
    min-width: 44.8125rem;
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  .mv:after {
    min-width: 33.75rem;
  }
}

.mv__inner {
  max-width: 1440px;
  max-width: 90rem;
}

.mv__header {
  background: #fff;
  position: relative;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  padding: 10px 0;
  padding: 0.625rem 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .mv__header {
    padding: 0.3125rem 0;
  }
}

.mv__header-logo {
  width: 224px;
  width: 14rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .mv__header-logo {
    width: 7.5rem;
  }
}

.mv__text {
  margin-top: 150px;
  margin-top: 9.375rem;
  margin-bottom: 150px;
  margin-bottom: 9.375rem;
  position: relative;
  width: 765px;
  width: 47.8125rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .mv__text {
    width: 100%;
    max-width: 34.375rem;
  }
}

.mv__text:after {
  content: "";
  position: absolute;
  top: 5px;
  top: 0.3125rem;
  left: 5px;
  left: 0.3125rem;
  right: 5px;
  right: 0.3125rem;
  bottom: 5px;
  bottom: 0.3125rem;
  border: 1px solid #fac7d2;
  pointer-events: none;
  border-radius: 0.3125rem;
}

.mv__text-sub {
  color: #fff;
  background: #f77b96;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 15px;
  padding: 0.9375rem;
  text-align: center;
  border-radius: 0.625rem 0.625rem 0 0;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__text-sub {
    font-size: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.3125rem 0.3125rem 0 0;
  }
}

.mv__text-main {
  font-family: "BIZ UDMincho", serif;
  font-size: 50px;
  font-size: 3.125rem;
  background: #fff;
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 20px 20px 20px 35px;
  padding: 1.25rem 1.25rem 1.25rem 2.1875rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .mv__text-main {
    font-size: 1.25rem;
    border-radius: 0 0 0.3125rem 0.3125rem;
    padding: 0.9375rem;
    text-align: center;
  }
}

.mv__text-main span {
  font-size: 60px;
  font-size: 3.75rem;
  background: #f3f77b;
}
@media screen and (max-width: 767px) {
  .mv__text-main span {
    font-size: 1.5rem;
  }
}

.mv__text-main sub {
  font-size: 24px;
  font-size: 1.5rem;
  position: relative;
  top: -10px;
  top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__text-main sub {
    font-size: 0.875rem;
  }
}

.mv__btn-wrap {
  max-width: 732px;
  max-width: 45.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 10px;
  padding: 0.625rem;
  border-radius: 0.625rem;
  position: relative;
  z-index: 1;
}

.mv__btn {
  max-width: 722px;
  max-width: 45.125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 0 0.3125rem 0 #db647e;
          box-shadow: 0 0.3125rem 0 #db647e;
}

.mv__note {
  max-width: 722px;
  max-width: 45.125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__note {
    margin-top: 0.3125rem;
  }
}

.mv__btn:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nayami {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .nayami {
    padding-top: 1.25rem;
  }
}

.nayami__content {
  background: #f2f2f2;
  padding: 65px 0;
  padding: 4.0625rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .nayami__content {
    padding: 1.875rem 0 12.5rem;
  }
}

.nayami__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 100px;
  gap: 0 6.25rem;
  max-width: 800px;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: -80px;
  left: -5rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .nayami__items {
    gap: 1.25rem;
    left: auto;
    left: initial;
  }
}

.nayami__item {
  width: 158px;
  width: 9.875rem;
  height: 158px;
  height: 9.875rem;
  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;
  text-align: center;
  border-radius: 4.9375rem;
  -webkit-box-shadow: 0 0 1.875rem rgba(0, 0, 0, .15);
          box-shadow: 0 0 1.875rem rgba(0, 0, 0, .15);
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#e8e8e8));
  background: linear-gradient(to bottom, #f6f6f6, #e8e8e8);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  background: #f2f2f2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .nayami__item {
    width: 5.625rem;
    height: 5.625rem;
    font-size: 0.875rem;
    -webkit-box-shadow: 0 0 0.9375rem rgba(0, 0, 0, .15);
            box-shadow: 0 0 0.9375rem rgba(0, 0, 0, .15);
  }
}

.nayami__item:after {
  content: "";
  display: block;
  width: 87px;
  width: 5.4375rem;
  height: 39px;
  height: 2.4375rem;
  background-image: url(../../images/common/nayami-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  top: 10px;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .nayami__item:after {
    width: 2.6875rem;
    height: 1.25rem;
    top: 0.3125rem;
  }
}

.nayami__item {
  position: relative;
}

.nayami__item:nth-child(n+4) {
  position: relative;
  right: -130px;
  right: -8.125rem;
}
@media screen and (max-width: 767px) {
  .nayami__item:nth-child(n+4) {
    right: auto;
    right: initial;
  }
}

.nayami__content:before, .nayami__content:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  position: absolute;
  bottom: 40px;
  bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .nayami__content:before, .nayami__content:after {
    bottom: 0;
  }
}

.nayami__content:before {
  background-image: url(../../images/common/nayami-01.png);
  width: 215px;
  width: 13.4375rem;
  height: 371px;
  height: 23.1875rem;
  right: calc(50vw + 15% + 152px);
}
@media screen and (max-width: 767px) {
  .nayami__content:before {
    width: 6.6875rem;
    height: 11.5625rem;
    right: calc(50vw + 5%);
  }
}

.nayami__content:after {
  background-image: url(../../images/common/nayami-02.png);
  width: 237px;
  width: 14.8125rem;
  height: 373px;
  height: 23.3125rem;
  left: calc(50vw + 15% + 152px);
}
@media screen and (max-width: 767px) {
  .nayami__content:after {
    width: 7.375rem;
    height: 11.625rem;
    left: calc(50vw + 5%);
  }
}

.onetime {
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .onetime {
    padding-top: 1.25rem;
  }
}

.onetime__content {
  margin-top: 20px;
  margin-top: 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffcbca), to(#fde3ff));
  background: linear-gradient(to right, #ffcbca, #fde3ff);
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .onetime__content {
    margin-top: 0.625rem;
    padding: 1.25rem 0;
  }
}

.onetime__inner {
  max-width: 1080px;
  max-width: 67.5rem;
}

.onetime__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .onetime__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.onetime__img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .onetime__img {
    width: 100%;
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.onetime__text {
  width: 60%;
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .onetime__text {
    width: 100%;
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.25rem;
    border-radius: 0.3125rem;
    margin-top: 1.25rem;
  }
}

.onetime__subtitle {
  font-family: "BIZ UDMincho", serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .onetime__subtitle {
    white-space: normal;
    white-space: initial;
    font-size: 1.5rem;
  }
}

.onetime__detail {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .onetime__detail {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}

.onetime__note {
  padding-top: 15px;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .onetime__note {
    padding-top: 0.625rem;
  }
}

.point {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .point {
    padding-top: 1.25rem;
  }
}

.point__content {
  background: #f2f2f2;
  padding: 50px 0;
  padding: 3.125rem 0;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .point__content {
    padding: 2.5rem 0;
    margin-top: 0.3125rem;
  }
}

.point__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .point__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.point__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 767px) {
  .point__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}

.point__item-img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .point__item-img {
    width: 100%;
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.point__item-text {
  width: 63%;
  background: #fff;
  position: relative;
  padding: 80px 50px 50px;
  padding: 5rem 3.125rem 3.125rem;
  border-radius: 0.625rem;
  height: 90%;
  min-height: 300px;
  min-height: 18.75rem;
}
@media screen and (max-width: 767px) {
  .point__item-text {
    width: 100%;
    max-width: 28.125rem;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    padding: 1.25rem;
    position: static;
    min-height: 0;
    min-height: initial;
  }
}

.point__item-number {
  width: 98px;
  width: 6.125rem;
  height: 98px;
  height: 6.125rem;
  background: #0e0b0b;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  top: -15px;
  top: -0.9375rem;
  left: -30px;
  left: -1.875rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .point__item-number {
    width: 3.75rem;
    height: 3.75rem;
    top: -1.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 0.75rem;
  }
}

.point__item-number span {
  font-size: 30px;
  font-size: 1.875rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .point__item-number span {
    font-size: 1.125rem;
  }
}

.point__item-title {
  font-family: "BIZ UDMincho", serif;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .point__item-title {
    font-size: 1.5rem;
  }
}

.point__item-title span {
  display: inline-block;
}

.point__item-detail {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  padding-top: 10px;
  padding-top: 0.625rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .point__item-detail {
    font-size: 0.875rem;
  }
}

.point__item-note {
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .point__item-note {
    padding-top: 0.625rem;
  }
}

.shop {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .shop {
    margin-top: 1.875rem;
  }
}

.shop__content {
  background: -webkit-gradient(linear, left top, right top, from(#ffcbca), to(#fde3ff));
  background: linear-gradient(to right, #ffcbca, #fde3ff);
  padding: 40px 0;
  padding: 2.5rem 0;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .shop__content {
    padding: 1.25rem 0;
    margin-top: 0.9375rem;
  }
}

.shop__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .shop__images {
    gap: 0.625rem;
  }
}

.shop__info {
  background: #fff;
  border-radius: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 40px;
  padding: 2.5rem;
  max-width: 910px;
  max-width: 56.875rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.875;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .shop__info {
    border-radius: 0.3125rem;
    margin-top: 0.9375rem;
    padding: 0.9375rem;
    width: 90%;
    font-size: 0.875rem;
  }
}

.shop__info-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .shop__info-table dl {
    padding: 0.625rem 0;
  }
}

.shop__info-table dl:first-child {
  border-top: 1px solid #e1e1e1;
}

.shop__info-table dt {
  width: 160px;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .shop__info-table dt {
    width: 5.625rem;
  }
}

.shop__info-table dd {
  width: calc(100% - 10rem);
}
@media screen and (max-width: 767px) {
  .shop__info-table dd {
    width: calc(100% - 6.25rem);
  }
}

.shop__info-map {
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 43%;
}
@media screen and (max-width: 767px) {
  .shop__info-map {
    margin-top: 1.25rem;
    padding-top: 120%;
  }
}

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

.voice {
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .voice {
    padding-top: 1.875rem;
  }
}

.voice__content {
  background-image: url(../../images/common/voice-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  padding: 30px 0;
  padding: 1.875rem 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .voice__content {
    padding: 1.25rem 0;
    margin-top: 0.625rem;
  }
}

.voice__review {
  max-width: 575px;
  max-width: 35.9375rem;
  background: #fff;
  padding: 30px;
  padding: 1.875rem;
  border-radius: 0.625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .voice__review {
    padding: 0.9375rem;
    border-radius: 0.3125rem;
  }
}

.voice__review-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .voice__review-title {
    font-size: 1rem;
  }
}

.voice__review-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .voice__review-items {
    gap: 0.625rem;
  }
}

.voice__review-item {
  width: calc(50% - 0.625rem);
}

.voice__items {
  padding-top: 55px;
  padding-top: 3.4375rem;
  max-width: 895px;
  max-width: 55.9375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .voice__items {
    padding-top: 1.875rem;
    width: 90%;
    max-width: 28.125rem;
  }
}

.voice__item:not(:first-child) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .voice__item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.voice__item {
  background: #fff;
  border: 5px solid #f2f2f2;
  border: 0.3125rem solid #f2f2f2;
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 35px;
  padding: 1.5625rem 2.1875rem;
  -webkit-box-shadow: 0.3125rem 0.3125rem 0 #e1e1e1;
          box-shadow: 0.3125rem 0.3125rem 0 #e1e1e1;
}
@media screen and (max-width: 767px) {
  .voice__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.9375rem;
    border-radius: 0.3125rem;
  }
}

.voice__item-img {
  width: 130px;
  width: 8.125rem;
}

.voice__item-text {
  width: calc(100% - 8.125rem);
  padding-left: 35px;
  padding-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .voice__item-text {
    width: 100%;
    padding-left: 0;
    padding-top: 1.25rem;
  }
}

.voice__item-comment {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .voice__item-comment {
    font-size: 0.875rem;
  }
}

.voice__item-name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding-top: 15px;
  padding-top: 0.9375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .voice__item-name {
    font-size: 0.75rem;
    padding-top: 0.625rem;
  }
}

.voice__note {
  padding-top: 25px;
  padding-top: 1.5625rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 380px;
  max-width: 23.75rem;
}
@media screen and (max-width: 767px) {
  .voice__note {
    padding-top: 0.9375rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
/*# sourceMappingURL=styles.css.map */
