@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* 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;
  width: 100%;
}

/* 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%;
  height: auto;
  vertical-align: bottom;
}

/* Natural flow and rhythm in articles by default */
/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* mixin
------------------------------------------------------------*/
/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-sub: "Zen Maru Gothic", serif;
  --f-family-number: "Inter", sans-serif;
  --f-font-size: 16px;
  --f-line-height: 1.4;
  --f-letter-spacing: 0.05em;
  --f-weight-regular: 400;
  --f-weight-medium: 500;
  --f-weight-semibold: 600;
  --f-weight-bold: 700;
  --f-weight-black: 900;
  --c-base: #605040;
  --c-white: #ffffff;
  --c-main: #EDA5A6;
  --c-main-deep: #E48A8B;
  --c-main-thin: #F1C1C1;
  --c-red: #EF5B5D;
  --c-yellow: #FFEC8D;
  --c-beige: #FFFAEC;
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  font-weight: var(--f-weight-regular);
  color: var(--c-base);
  letter-spacing: var(--f-letter-spacing);
  overflow-wrap: break-word;
  word-break: break-all;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

main {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  main {
    overflow: hidden;
  }
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
a:hover, a:focus {
  opacity: 0.8;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.9;
}

.br-pc-only,
.is-pc-only {
  display: block !important;
}
@media screen and (max-width: 1024px) {
  .br-pc-only,
  .is-pc-only {
    display: none !important;
  }
}

.br-tab-lg,
.is-tab-lg {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .br-tab-lg,
  .is-tab-lg {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .br-pc, .is-pc {
    display: none !important;
  }
}

.br-tab, .is-tab {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .br-tab, .is-tab {
    display: block !important;
  }
}

.br-sp, .is-sp {
  display: none !important;
}
@media screen and (max-width: 480px) {
  .br-sp, .is-sp {
    display: block !important;
  }
}

.center {
  margin: 0 auto;
  text-align: center;
}

.w-100 {
  width: 100% !important;
}

mb-0 {
  margin-bottom: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* container.
------------------------------------------------------------*/
.l-main {
  margin-top: 70px;
}

/* container.
------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--c-main);
  transition: all 0.3s;
}
.l-header.is-hidden {
  top: -140px;
}
.l-header__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  padding: 9px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 9px 20px;
  }
}
.l-header__top-link {
  max-width: 127px;
}
.l-header__logo {
  width: 100%;
}
.l-header__detail {
  display: flex;
  align-items: center;
  gap: 30px;
}
.l-header__txt {
  font-size: 1.25rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  letter-spacing: 0.13em;
}
@media screen and (max-width: 768px) {
  .l-header__txt {
    display: none;
  }
}

.l-header__collabo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-header__collabo-logo {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .l-header__collabo-logo {
    width: 90px;
    min-width: 90px;
  }
}
.l-header__collabo-info {
  position: relative;
  display: flex;
  align-items: center;
}
.l-header__collabo-info::before {
  content: "×";
  font-size: 1.5rem;
  color: var(--c-white);
  line-height: 1;
}
.l-header__collabo-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 54px;
  border: solid 3px var(--c-white);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .l-header__collabo-icon {
    width: 48px;
    border: solid 2px var(--c-white);
  }
}
.l-header__collabo-id {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: var(--f-weight-medium);
  color: var(--c-base);
  background-color: var(--c-white);
  border-radius: 100vh;
  padding: 0.5em 24px;
  position: relative;
  right: 18px;
}
@media screen and (max-width: 768px) {
  .l-header__collabo-id {
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header.-collabo .c-btn__head-btn {
    display: none;
  }
}
.l-header__bottom {
  position: relative;
  text-align: center;
  padding: 8px 0;
  background-color: var(--c-yellow);
}
.l-header__bottom::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--c-yellow);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.l-header__bottom span {
  font-size: 1rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-base);
}
.l-header__bottom span::before {
  content: "\\";
  font-size: 0.8em;
  font-weight: var(--f-weight-bold);
}
.l-header__bottom span::after {
  content: " /";
  font-size: 0.8em;
  font-weight: var(--f-weight-bold);
}
@media screen and (max-width: 768px) {
  .l-header__bottom span {
    font-size: 0.875rem;
  }
}

.c-btn {
  padding: 7px 19px 10px;
  border-radius: 500px;
  color: var(--c-white);
  font-size: 1.625rem;
  font-weight: var(--f-weight-semibold);
  background: var(--c-red);
}
@media screen and (max-width: 1024px) {
  .c-btn {
    font-size: 1.25rem;
  }
}
.c-btn.--yellow {
  background: var(--c-yellow);
  color: var(--c-red);
}
.c-btn__small {
  width: 230px;
  padding: 8px 15px 10px;
  border-radius: 500px;
  background: var(--c-red);
  color: var(--c-white);
  font-size: 1.1875rem;
  font-weight: var(--f-weight-semibold);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-btn__small {
    width: 135px;
    font-size: 0.875rem;
  }
}
.c-btn__head-btn {
  padding: 5px 20px;
  border-radius: 500px;
  background: var(--c-yellow);
  color: var(--c-red);
  font-size: 1.25rem;
  font-weight: var(--f-weight-semibold);
}
@media screen and (max-width: 768px) {
  .c-btn__head-btn {
    padding: 5px 10px;
    font-size: 1.0625rem;
  }
}

.c-comment {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}
.c-comment__inner {
  position: relative;
  font-size: 1.1875rem;
  font-weight: var(--f-weight-semibold);
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .c-comment__inner {
    font-size: 1rem;
  }
}
.c-comment__inner:before {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  left: -26px;
  bottom: 2px;
  background: url(../img/comment.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-comment__inner:before {
    width: 9px;
    height: 12px;
    bottom: 5px;
    left: -15px;
  }
}
.c-comment__inner:after {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  right: -26px;
  bottom: 2px;
  transform: scale(-1, 1);
  background: url(../img/comment.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-comment__inner:after {
    width: 9px;
    height: 12px;
    bottom: 5px;
    right: -15px;
  }
}
.c-comment__inner.--white {
  color: var(--c-white);
}
.c-comment__inner.--white:before, .c-comment__inner.--white:after {
  background: url(../img/comment_white.svg);
}

.c-ttl {
  font-size: 1.75rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-sub);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: 1.25rem;
    white-space: nowrap;
  }
}
.c-ttl__notice {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .c-ttl__notice {
    font-size: 0.8125rem;
  }
}
.c-ttl.--pink {
  padding: 3px 14px;
  display: inline;
  background: var(--c-main);
  color: var(--c-white);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-ttl.--pink {
    font-size: 1.4375rem;
  }
}

/* ladies-lp
------------------------------------------------------------*/
.p-index-mv {
  padding: 40px 0 50px;
}
.p-index-mv.-collabo {
  padding: 80px 0 50px;
}
@media screen and (max-width: 768px) {
  .p-index-mv {
    padding: 15px 0 40px;
  }
}
.p-index-mv__copy {
  padding: 5px;
  background: var(--c-main);
  color: var(--c-white);
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  text-align: center;
}
.p-index-mv__copy.--def {
  font-size: 1rem;
}
.p-index-mv__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-index-mv__inner {
    padding: 0 18px;
  }
}
@media screen and (max-width: 1024px) {
  .p-index-mv__inner {
    max-width: 828px;
  }
}
.p-index-mv__inner-box {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__inner-box {
    padding-top: 20px;
    display: block;
  }
}
.p-index-mv__content:first-child {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-index-mv__content-inner {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.p-index-mv__content-inner.--def {
  max-width: 530px;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__content-inner.--def {
    max-width: unset;
  }
}
@media screen and (max-width: 1024px) {
  .p-index-mv__content-inner {
    max-width: unset;
  }
}
.p-index-mv__ttl {
  font-size: 4.1875rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-sub);
  line-height: 1.15;
}
@media screen and (max-width: 768px) {
  .p-index-mv__ttl {
    font-size: 2.9375rem;
    white-space: nowrap;
  }
}
.p-index-mv__ttl.--def {
  font-size: 3.6875rem;
}
@media screen and (max-width: 768px) {
  .p-index-mv__ttl.--def {
    font-size: 2.5625rem;
    letter-spacing: -0.03em;
  }
}
.p-index-mv__ttl--small {
  font-size: 3.1875rem;
}
@media screen and (max-width: 768px) {
  .p-index-mv__ttl--small {
    font-size: 2.1875rem;
  }
}
.p-index-mv__ttl--small.--def {
  font-size: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-index-mv__ttl--small.--def {
    font-size: 1.9375rem;
  }
}
.p-index-mv__ttl--small.--gap {
  letter-spacing: -0.2em;
}
.p-index-mv__ttl-sub {
  margin: 0 0 7px 10px;
  font-size: 1.5rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-sub);
}
@media screen and (max-width: 1024px) {
  .p-index-mv__ttl-sub {
    margin: 0;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-index-mv__ttl-sub {
    font-size: 1.125rem;
  }
}
.p-index-mv__detail {
  width: 100%;
}
.p-index-mv__disease-ex-list {
  display: flex;
  gap: 10px;
}
.p-index-mv__disease-ex-list.--def {
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-index-mv__disease-ex-list.--def {
    max-width: 260px;
    margin: auto;
  }
  .p-index-mv__disease-ex-list.--def.is-tab {
    display: flex !important;
  }
}
.p-index-mv__disease-ex-item {
  padding: 3px 5px 6px;
  border-radius: 6px;
  flex: 1;
  background: var(--c-base);
  font-size: 1.3125rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  text-align: center;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-index-mv__disease-ex-item {
    font-size: 1rem;
  }
}
.p-index-mv__disease-ex-item.--def {
  flex: unset;
  font-size: 1rem;
}
.p-index-mv__achievement-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.p-index-mv__achievement-img {
  width: 100%;
}
.p-index-mv__notice {
  font-size: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__notice {
    margin-top: 43px;
  }
}
.p-index-mv__ladies-mv {
  width: 100%;
}
.p-index-mv__ladies-mv.--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__ladies-mv.--sp {
    display: block;
  }
}
.p-index-mv__appeal-box {
  padding-top: 40px;
  display: flex;
  justify-content: end;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__appeal-box {
    justify-content: center;
  }
}
.p-index-mv__appeal-box-inner {
  width: 95%;
  padding: 34px 30px 30px;
  border-radius: 10px;
  background: #FDF5F1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__appeal-box-inner {
    width: auto;
    padding: 12px 17px 18px;
  }
}
.p-index-mv__batch {
  padding: 16px 12px 12px;
  border-radius: 500px;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--c-base);
  color: var(--c-white);
  text-align: center;
  line-height: 1.25;
  font-size: 1rem;
  font-weight: var(--f-weight-semibold);
}
.p-index-mv__batch.--def {
  right: -30px;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__batch.--def {
    right: unset;
    left: -10px;
  }
}
@media screen and (max-width: 1024px) {
  .p-index-mv__batch {
    min-width: 78px;
    min-height: 78px;
    top: unset;
    right: unset;
    left: 15px;
    bottom: 0;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}
.p-index-mv__batch--big {
  font-size: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .p-index-mv__batch--big {
    font-size: 0.9375rem;
  }
}
.p-index-mv__btn-comment {
  margin-bottom: 17px;
  font-size: 1.3125rem;
  font-weight: var(--f-weight-semibold);
}
@media screen and (max-width: 1024px) {
  .p-index-mv__btn-comment {
    display: flex;
    justify-content: end;
    position: relative;
    font-size: 1rem;
    text-align: left;
  }
}

.p-index-consult {
  background: var(--c-beige);
  padding: 110px 0px 95px;
}
@media screen and (max-width: 768px) {
  .p-index-consult {
    padding: 50px 0;
  }
}
.p-index-consult__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-index-consult__inner {
    padding: 0 18px;
  }
}
.p-index-consult__content {
  margin: 54px 0 49px;
  display: flex;
  justify-content: center;
  gap: 84px;
}
@media screen and (max-width: 1200px) {
  .p-index-consult__content {
    gap: 6vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-index-consult__content {
    flex-direction: column;
    align-items: center;
  }
}
.p-index-consult__comment {
  max-width: 560px;
  padding: 67px 20px 79px 20px;
  border-radius: 170px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
  background: var(--c-white);
}
@media screen and (max-width: 1024px) {
  .p-index-consult__comment {
    width: 100%;
    padding: 52px 16px 37px;
    border-radius: 70px;
  }
}
.p-index-consult__comment:after {
  content: "";
  width: 130px;
  height: 105px;
  position: absolute;
  right: -78px;
  bottom: 35px;
  z-index: -1;
  background: url(../img/comment_tail.svg);
}
@media screen and (max-width: 1024px) {
  .p-index-consult__comment:after {
    right: 0;
  }
}
.p-index-consult__comment:last-child:after {
  content: "";
  width: 130px;
  height: 105px;
  position: absolute;
  top: 35px;
  left: -78px;
  bottom: initial;
  z-index: -1;
  transform: rotate(180deg);
  background: url(../img/comment_tail.svg);
}
@media screen and (max-width: 1024px) {
  .p-index-consult__comment:last-child:after {
    left: 0;
  }
}
.p-index-consult__people {
  width: 100%;
  padding: 0 30px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-index-consult__people {
    max-width: 410px;
  }
}
@media screen and (max-width: 480px) {
  .p-index-consult__people {
    padding: 0;
  }
}
.p-index-consult__people.--customer {
  padding: 0 30px;
  justify-content: end;
}
.p-index-consult__people.--customer .p-index-consult__people-img {
  width: 13.2vw;
  max-width: 185px;
  min-width: 145px;
  right: initial;
  left: 40px;
}
@media screen and (max-width: 480px) {
  .p-index-consult__people.--customer .p-index-consult__people-img {
    left: -40px;
  }
}
.p-index-consult__people-img {
  width: 16.8vw;
  max-width: 236px;
  min-width: 196px;
  position: absolute;
  right: 20px;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .p-index-consult__people-img {
    right: 0;
  }
}
.p-index-consult__people-comment {
  margin-bottom: 70px;
  font-size: 1.5rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-sub);
}
@media screen and (max-width: 768px) {
  .p-index-consult__people-comment {
    margin-bottom: 50px;
    font-size: 1.125rem;
  }
}
.p-index-consult__ex-list {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (max-width: 1024px) {
  .p-index-consult__ex-list {
    padding: 0;
  }
}
.p-index-consult__ex-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.1875rem;
  font-weight: var(--f-weight-medium);
}
@media screen and (max-width: 768px) {
  .p-index-consult__ex-item {
    gap: 10px;
    font-size: 1rem;
  }
}
.p-index-consult__check {
  width: 42px;
  height: 42px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-main);
}
@media screen and (max-width: 768px) {
  .p-index-consult__check {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}
.p-index-consult__check.--thin {
  background: var(--c-main-thin);
}
.p-index-consult__check.--deep {
  background: var(--c-main-deep);
}
.p-index-consult__appeal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-index-reason {
  padding: 100px 0 130px;
}
@media screen and (max-width: 768px) {
  .p-index-reason {
    padding: 50px 0;
  }
}
.p-index-reason__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-index-reason__inner {
    padding: 0 18px;
  }
}
.p-index-reason__inner-box {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 53px 30px;
  border-radius: 10px;
  background: var(--c-main);
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .p-index-reason__inner-box {
    padding: 30px 18px;
  }
}
.p-index-reason__solicit {
  white-space: nowrap;
  font-size: 1.4375rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-sub);
}
@media screen and (max-width: 768px) {
  .p-index-reason__solicit {
    font-size: 1.3125rem;
  }
}
.p-index-reason__content {
  max-width: 910px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-index-reason__content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-index-reason__ladies-fp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-index-reason__img {
  width: 100%;
  max-width: 315px;
}
@media screen and (max-width: 768px) {
  .p-index-reason__img {
    max-width: 230px;
  }
}
.p-index-reason__img.--def {
  margin-top: 20px;
}
.p-index-reason__txt-area {
  margin-top: 30px;
}
.p-index-reason__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .p-index-reason__list {
    gap: 10px;
  }
}
.p-index-reason__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-index-reason__item {
    font-size: 1.125rem;
    gap: 8px;
  }
}
@media screen and (max-width: 480px) {
  .p-index-reason__item {
    white-space: nowrap;
  }
}
.p-index-reason__item-number {
  width: 31px;
  height: 31px;
  min-width: 31px;
  min-height: 31px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-white);
  color: var(--c-main);
  font-family: var(--f-family-number);
  font-size: 1.1875rem;
  font-weight: var(--f-weight-medium);
  line-height: 1;
}
.p-index-reason__item-notice {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-index-reason__item-notice {
    font-size: 0.8125rem;
  }
}
.p-index-reason__notice {
  margin-top: 25px;
  font-size: 0.75rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-index-reason__notice.--pc {
    display: none;
  }
}
.p-index-reason__appeal {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-index-reason__appeal {
    white-space: nowrap;
  }
}

.p-index-expert {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-index-expert {
    padding-bottom: 50px;
  }
}
.p-index-expert__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-index-expert__inner {
    padding: 0 18px;
  }
}
.p-index-expert__kv {
  margin-right: calc((100vw - 100%) / 2 * -1);
  margin-bottom: 90px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .p-index-expert__kv {
    margin-right: 0;
    margin-bottom: 50px;
    flex-direction: column;
    align-items: start;
    gap: 36px;
  }
}
.p-index-expert__ttl-sub {
  margin-top: 24px;
  font-size: 1.375rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-sub);
  color: var(--c-main);
  line-height: 1.77;
}
@media screen and (max-width: 768px) {
  .p-index-expert__ttl-sub {
    font-size: 1.125rem;
  }
}
.p-index-expert__img {
  width: 47vw;
  max-width: 650px;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  .p-index-expert__img {
    width: 100%;
    position: relative;
    right: -40px;
  }
}
.p-index-expert__txt {
  font-size: 1.125rem;
  font-weight: var(--f-weight-medium);
  line-height: 1.94;
}
@media screen and (max-width: 768px) {
  .p-index-expert__txt {
    font-size: 1rem;
  }
}
.p-index-expert__ttl-box {
  white-space: nowrap;
}
.p-index-expert__ttl-box .is-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-index-expert__ttl-box .is-tab {
    display: inline !important;
  }
}
.p-index-expert__card {
  width: 100%;
  margin: 70px 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-index-expert__card {
    margin: 36px 0;
    flex-direction: column;
    gap: 36px;
  }
}
.p-index-expert__card-img {
  width: 40%;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  .p-index-expert__card-img {
    width: 100%;
    border-radius: 20px;
  }
}
.p-index-expert__card-txt-box {
  width: 60%;
  border-radius: 0 20px 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-beige);
}
@media screen and (max-width: 768px) {
  .p-index-expert__card-txt-box {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
  }
}
.p-index-expert__banner {
  margin: 70px 0;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-index-expert__banner {
    margin: 50px 0;
  }
}
.p-index-expert__appeal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-index-review {
  padding: 90px 0;
  background: var(--c-main);
  color: var(--c-white);
}
@media screen and (max-width: 768px) {
  .p-index-review {
    padding: 40px 0;
  }
}
.p-index-review__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-index-review__inner {
    padding: 0 18px;
  }
}
.p-index-review__comment-list {
  margin: 70px 0 34px;
  display: flex;
  gap: clamp(10px, (100vw - 375px) / 1065 * 30 + 10px, 40px);
  color: var(--c-base);
  font-weight: var(--f-weight-medium);
}
@media screen and (max-width: 768px) {
  .p-index-review__comment-list {
    display: block;
    margin: 23px 0 34px;
  }
}
.p-index-review__comment-list .slick-track {
  display: flex;
}
.p-index-review__comment-list .slick-list {
  margin: 0 -20px;
}
.p-index-review__comment-list .slick-slide {
  height: auto !important;
  margin: 0 20px;
}
.p-index-review__comment-dots {
  margin-top: 27px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.p-index-review__comment-dots li {
  width: 14px;
  height: 14px;
  border-radius: 500px;
  background: var(--c-white);
}
.p-index-review__comment-dots li.slick-active {
  background: var(--c-yellow);
}
.p-index-review__comment-dots button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.p-index-review__comment-item {
  padding: 45px 36px 41px;
  border-radius: 10px;
  flex: 1;
  background: var(--c-white);
}
@media screen and (max-width: 1024px) {
  .p-index-review__comment-item {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-index-review__comment-item {
    padding: 30px 28px;
  }
}
.p-index-review__comment-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-index-review__star.--star5:before {
  content: "★★★★★";
  font-size: 1.125rem;
  line-height: 1;
  background: #E8D472;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.p-index-review__headline {
  margin: 28px 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 480px) {
  .p-index-review__headline {
    font-size: 1rem;
    margin: 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .p-index-review__txt {
    font-size: 0.875rem;
  }
}
.p-index-review__notice {
  margin-bottom: 70px;
  font-size: 0.75rem;
  text-align: center;
}
.p-index-review__notice.is-tab {
  margin: 30px 0 0;
}
.p-index-review__appeal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-index-faq {
  padding: 110px 0 140px;
  background: var(--c-beige);
}
.p-index-faq__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-index-faq__inner {
    padding: 0 18px;
  }
}
.p-index-faq__list {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-index-faq__list {
    margin: 0;
  }
}
.p-index-faq__item {
  padding: 40px 22px;
  border-bottom: 1px solid var(--c-base);
}
@media screen and (max-width: 768px) {
  .p-index-faq__item {
    padding: 30px 0;
  }
}
.p-index-faq__question {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-index-faq__question-icon {
  width: 31px;
  height: 31px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--c-main);
  color: var(--c-white);
  font-size: 1.1875rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-number);
  line-height: 1;
}
.p-index-faq__answer {
  margin-top: 18px;
  line-height: 1.8;
}

.p-index-modal {
  width: 100%;
  padding: 27px;
  position: fixed;
  bottom: 0;
  z-index: 10;
  background: var(--c-white);
  color: var(--c-red);
  text-align: center;
  box-shadow: 6px 6px 6px 6px rgba(var(--c-base-rgb), 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
@media screen and (max-width: 768px) {
  .p-index-modal {
    padding: 0;
  }
}
.p-index-modal.-none {
  display: none;
}
.p-index-modal.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-index-modal__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  padding: 18px 15px 30px;
  border-radius: 20px;
  display: flex;
  background: var(--c-yellow);
}
@media screen and (max-width: 768px) {
  .p-index-modal__inner {
    padding: 0 18px;
  }
}
@media screen and (max-width: 768px) {
  .p-index-modal__inner {
    padding: 8px 12px 8px;
    border-radius: 0;
  }
}
.p-index-modal__batch-img {
  position: relative;
  top: -18px;
}
@media screen and (max-width: 768px) {
  .p-index-modal__batch-img {
    width: 50px;
  }
}
.p-index-modal__present {
  display: flex;
  align-items: center;
  gap: 23px;
}
@media screen and (max-width: 768px) {
  .p-index-modal__present {
    flex-direction: row-reverse;
    gap: 10px;
  }
}
.p-index-modal__present-list {
  display: flex;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index-modal__present-list {
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .p-index-modal__present-list {
    max-width: 146px;
  }
}
.p-index-modal__present-list .slick-list {
  margin: 0 -5px;
}
.p-index-modal__present-list .slick-slide {
  height: auto !important;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .p-index-modal__present-list .slick-slide {
    min-width: 95px;
  }
}
@media screen and (max-width: 480px) {
  .p-index-modal__present-list .slick-slide {
    min-width: 68px;
  }
}
.p-index-modal__slick-next {
  width: 0;
  height: 0;
  border-top: 12.5px solid transparent;
  border-bottom: 12.5px solid transparent;
  border-left: 17px solid var(--c-red);
  padding: 0;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.p-index-modal__present-item {
  max-width: 100px;
  background-color: var(--c-white);
  padding: 4px;
  border-radius: 4px;
}
.p-index-modal__present-img {
  width: 100%;
}
.p-index-modal__chance-inner {
  position: relative;
  font-size: 1.1875rem;
  font-weight: var(--f-weight-medium);
  font-family: var(--f-family-sub);
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-index-modal__chance-inner {
    font-size: 0.75rem;
  }
}
.p-index-modal__chance-inner:before {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  left: -26px;
  bottom: 2px;
  background: url(../img/comment_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-index-modal__chance-inner:before {
    width: 4px;
    height: 8px;
    left: -10px;
  }
}
.p-index-modal__chance-inner:after {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  right: -26px;
  bottom: 2px;
  transform: scale(-1, 1);
  background: url(../img/comment_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-index-modal__chance-inner:after {
    width: 4px;
    height: 8px;
    right: -10px;
  }
}
.p-index-modal__present-chance {
  margin: 7px 0 15px;
  font-size: 1.75rem;
  font-weight: var(--f-weight-bold);
  font-family: var(--f-family-sub);
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-index-modal__present-chance {
    font-size: 1rem;
  }
}
.p-index-modal__present-chance--small {
  font-size: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .p-index-modal__present-chance--small {
    font-size: 0.75rem;
  }
}

.p-present {
  background-color: var(--c-yellow);
  padding: 110px 0px 95px;
}
@media screen and (max-width: 768px) {
  .p-present {
    padding: 60px 0;
  }
}
.p-present__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-present__inner {
    padding: 0 18px;
  }
}
.p-present .c-ttl-block {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.p-present .c-ttl-block .-catch {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-family: var(--f-family-sub);
  font-weight: var(--f-weight-medium);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-present .c-ttl-block .-catch {
    font-size: 1.25rem;
  }
}
.p-present .c-ttl-block .-catch::before {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  left: -26px;
  bottom: 2px;
  background: url(../img/comment.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-present .c-ttl-block .-catch::after {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  right: -26px;
  bottom: 2px;
  transform: scale(-1, 1);
  background: url(../img/comment.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-present .c-ttl-block .c-ttl-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .p-present .c-ttl-block .c-ttl-wrap {
    margin-top: 24px;
  }
}
.p-present .c-ttl-block .-decoration {
  width: 140px;
  position: relative;
  top: -30px;
}
@media screen and (max-width: 768px) {
  .p-present .c-ttl-block .-decoration {
    width: 120px;
    top: 0;
  }
}
.p-present .c-ttl-block .c-ttl {
  font-size: 2.5rem;
  color: var(--c-red);
  margin-right: 140px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-present .c-ttl-block .c-ttl {
    font-size: 1.75rem;
    text-align: left;
    margin-right: 0;
  }
}
.p-present__list {
  display: flex;
  justify-content: space-around;
  gap: 18px 18px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-present__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 18px;
    margin-bottom: 48px;
  }
}
.p-present__item {
  width: 185px;
}
@media screen and (max-width: 768px) {
  .p-present__item {
    width: 42%;
  }
}
.p-present__item img {
  display: inline-block;
  background-color: var(--c-white);
  margin-bottom: 8px;
}
.p-present__name {
  font-size: 1rem;
  text-align: center;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .p-present__name {
    font-size: 0.75rem;
  }
}

.footer {
  background-color: var(--c-main);
}
.footer small {
  background-color: var(--c-main);
}

.form {
  background-color: #fdeeee !important;
}

.thanksPage__box {
  background-color: #fdeeee !important;
}

/* ここから
------------------------------------------------------------*//*# sourceMappingURL=style.css.map */