@charset "UTF-8";
html {
  font-size: 16px;
  overflow: auto;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #333333;
  overflow: hidden;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

a {
  text-decoration: none;
}

/* 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: 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=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* --------------------------------------------
 *  ヘッダー
 * -------------------------------------------- */
.header {
  width: 100%;
  height: 74px;
  position: fixed;
  z-index: 1000;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(51, 51, 51, 0.1);
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__title {
  height: inherit;
  margin-left: 20px;
  display: flex;
  align-items: center;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .header__title {
    flex-direction: column-reverse;
    align-items: start;
    margin-right: 0;
    margin-left: 15px;
    justify-content: center;
  }
}

.header__name {
  font-size: 30px;
  font-family: "Cormorant", "Noto Serif JP", serif;
  font-style: italic;
}

.header__text {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #5d5d5d;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .header__text {
    font-size: 12px;
    margin-left: 0;
    margin-bottom: -5px;
  }
}

.header__contactArea {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__tel {
  text-align: center;
  margin-right: 10px;
  justify-content: center;
}

.header__number {
  font-size: 30px;
  font-weight: 500;
}

.header__number::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 19px;
  background-image: url(../images/phone-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
}

.header__tel-text {
  font-size: 12px;
  color: #5d5d5d;
  letter-spacing: 0.05em;
  line-height: 1.23;
  margin-left: 5px;
  margin-top: -5px;
}

.header__Button {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 140px;
  height: inherit;
  background-color: #00b900;
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__Button {
    width: 130px;
    font-size: 14px;
  }
}

.header__Button.header__button--mail {
  background-color: #fe6999;
}
@media screen and (max-width: 1024px) {
  .header__Button.header__button--mail {
    width: 120px;
  }
}

.header__Button::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(../images/line-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.header__Button.header__button--mail::before {
  width: 22px;
  height: 17px;
  background-image: url(../images/mail-icon.png);
}

/* --------------------------------------------
 *  スマホ固定ボタン
 * -------------------------------------------- */
.cta {
  position: fixed;
  z-index: 5000;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
  height: 80px;
}

.cta__inner {
  display: flex;
  height: 100%;
}

.cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00b900;
  padding: 10px;
  width: 50%;
  text-align: center;
  height: 100%;
}

.cta__button-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__button--form {
  background-color: #fe6999;
}

.cta__button-icon {
  width: 26px;
  height: 26px;
  aspect-ratio: attr(width)/attr(height);
  margin-right: 10px;
}

.cta__button-text {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.cta.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* --------------------------------------------
 *  メインビュー
 * -------------------------------------------- */
.mv {
  width: 100%;
  background-image: url(../images/mv-bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    background-image: none;
  }
}

.mv__inner {
  width: 100%;
  max-width: 1540px;
  height: inherit;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1440px) {
  .mv__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .mv__inner {
    padding: 0;
  }
}

.mv__content {
  width: 100%;
  height: inherit;
}

.mv__bg picture,
.mv__bg img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__content picture,
.mv__content img {
  width: 46%;
  margin-left: 0;
  margin-right: auto;
  padding: 120px 0 40px;
}
@media screen and (max-width: 1440px) {
  .mv__content picture,
.mv__content img {
    width: 640px;
    left: 3%;
  }
}
@media screen and (max-width: 768px) {
  .mv__content picture,
.mv__content img {
    width: 100%;
    padding: 0;
    background-position: 50px 0;
  }
}

.mv__card {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 5%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 360px;
}
@media screen and (max-width: 1440px) {
  .mv__card {
    width: 300px;
    height: auto;
    right: 3%;
  }
}
@media screen and (max-width: 1024px) {
  .mv__card {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .mv__card {
    position: static;
    width: 100%;
    max-width: 500px;
    margin: 25px auto 0;
  }
}

/* --------------------------------------------
 *  画像エリア
 * -------------------------------------------- */
.imgList {
  padding: 10px 0;
  background-color: #effcff;
}
@media screen and (max-width: 768px) {
  .imgList {
    padding: 6px 0;
  }
}

/* --------------------------------------------
 *  ボタンエリア
 * -------------------------------------------- */
.buttonArea {
  width: 100%;
  background-color: #effcff;
}

.buttonArea__catchcopy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #35a7c9;
  padding: 40px 25px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .buttonArea__catchcopy {
    padding: 20px 15px;
  }
}

.buttonArea__catchcopy::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/buttonArea-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 42px;
  height: 30px;
}

.buttonArea__catchcopy-main {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .buttonArea__catchcopy-main {
    font-size: 23px;
  }
}
@media screen and (max-width: 375px) {
  .buttonArea__catchcopy-main {
    font-size: 20px;
  }
}

.buttonArea__catchcopy-main.buttonArea__catchcopy-main-boost {
  font-size: 30px;
  background-color: #fe6999;
  padding: 6px 10px;
}
@media screen and (max-width: 768px) {
  .buttonArea__catchcopy-main.buttonArea__catchcopy-main-boost {
    font-size: 20px;
  }
}

.buttonArea__catchcopy-sub {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .buttonArea__catchcopy-sub {
    font-size: 15px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.buttonArea__content {
  padding: 50px 25px 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .buttonArea__content {
    padding: 50px 15px 60px;
  }
}

.buttonArea__text-img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .buttonArea__text-img {
    max-width: 300px;
  }
}

.buttonArea__button {
  display: inline-block;
}

.buttonArea__button-img {
  width: 100%;
  max-width: 880px;
  margin: 5px auto 0;
}
@media screen and (max-width: 768px) {
  .buttonArea__button-img {
    max-width: 440px;
  }
}

/* --------------------------------------------
 *  悩みブレッド
 * -------------------------------------------- */
.worries__heading {
  background-color: #394041;
  width: 100%;
}

.worries__heading-img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 20px 0 30px;
}
@media screen and (max-width: 768px) {
  .worries__heading-img {
    width: 92%;
    max-width: 360px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 375px) {
  .worries__heading-img {
    max-width: 255px;
  }
}

.worries__content-wrapper {
  background-color: #f1f6f7;
  background-image: url(../images/worries-bg-img1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .worries__content-wrapper {
    background-position: 60% 0;
    padding: 40px 0;
  }
}
@media screen and (max-width: 375px) {
  .worries__content-wrapper {
    background-size: cover;
    background-position: 64% 20px;
  }
}

.worries__content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.worries__content-inner {
  width: 100%;
  max-width: 650px;
  margin-right: auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .worries__content-inner {
    padding: 0 15px;
  }
}

.worries__content-inner.worries__content-inner--training {
  margin-right: 0;
  margin-left: auto;
}

.worries__list {
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .worries__list {
    padding: 20px 0;
  }
}
@media screen and (max-width: 375px) {
  .worries__list {
    padding: 40px 15px;
  }
}

.worries__item {
  margin-bottom: 25px;
}

.worries__item:last-child {
  margin-bottom: 0;
}

.worries__item-text {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .worries__item-text {
    font-size: 18px;
  }
}

.worries__item-text:before {
  position: absolute;
  content: "";
  top: 0;
  left: -40px;
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/worries-check-img.svg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .worries__item-text:before {
    top: 0;
    transform: translateY(0);
  }
}

/* --------------------------------------------
 *  アンサー
 * -------------------------------------------- */
.answer {
  background-image: url(../images/answer-bg-img.jpg);
  background-position: center;
  background-size: cover;
  padding-bottom: 85px;
  position: relative;
  padding-top: 30px;
}

.answer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/answer-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 236px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .answer::before {
    width: 180px;
    height: 40px;
  }
}

.answer__heading-img {
  width: 100%;
  max-width: 515px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .answer__heading-img {
    max-width: 420px;
  }
}

.answer__heading-text {
  width: 86%;
  margin: 40px auto 0;
  line-height: 1.8;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .answer__heading-text {
    width: 100%;
    margin-top: 30px;
  }
}

.answer__content {
  background-color: #fff;
  border-radius: 10px;
  margin: 40px 0 0;
  padding: 56px 60px;
}
@media screen and (max-width: 768px) {
  .answer__content {
    padding: 35px 25px 50px;
  }
}
@media screen and (max-width: 375px) {
  .answer__content {
    margin-top: 30px;
    padding: 25px 15px 40px;
  }
}

.answer__body {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .answer__body {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .answer__body {
    gap: 30px;
  }
}

.answer__text-area {
  flex: 70%;
}

.answer__text {
  line-height: 1.8;
}
@media screen and (max-width: 375px) {
  .answer__text {
    font-size: 14px;
  }
}

.answer__text-emphasis {
  font-weight: 700;
}

.answer__text-emphasis.answer__text-emphasis--color {
  color: #fe6999;
}

.answer__img-area {
  flex: 30%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .answer__img-area {
    width: 100%;
    max-width: 600px;
  }
}

.answer__list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

ol.answer__list {
  list-style: disc;
  margin-left: 1em;
}

.answer__item-text {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-left: 30px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .answer__item-text {
    font-size: 16px;
    line-height: 1.4;
  }
}

.answer__text.answer__text--large {
  font-size: 18px;
  font-weight: bold;
}

.answer__item-text:before {
  position: absolute;
  content: "";
  top: 0;
  left: -25px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/answer-check-img.svg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .answer__item-text:before {
    top: 0;
    transform: translateY(0);
  }
}

.answer__copy {
  width: 100%;
  max-width: 760px;
  margin: 50px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .answer__copy {
    max-width: 420px;
  }
}

.answer__copy-text {
  display: inline;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  background: linear-gradient(transparent 65%, #fdff00 65%);
}
@media screen and (max-width: 768px) {
  .answer__copy-text {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* --------------------------------------------
 *  セミナーバナー
 * -------------------------------------------- */
/* --------------------------------------------
 *  特典リスト
 * -------------------------------------------- */
.benefit {
  width: 100%;
  padding-bottom: 100px;
  background-image: url(../images/benefit-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .benefit {
    padding-bottom: 60px;
  }
}

.benefit__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 3px 3px 6px rgba(86, 86, 86, 0.3);
}
@media screen and (max-width: 768px) {
  .benefit__inner {
    box-shadow: none;
  }
}

.benefit__normal {
  width: 100%;
  padding: 60px 25px;
  margin: 60px auto 0;
  background-image: url(../images/benefit-normal-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .benefit__normal {
    margin-top: 40px;
    padding: 40px 15px;
  }
}

.benefit__heading {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .benefit__heading {
    width: 100%;
  }
}

.benefit__heading-sub-text {
  display: inline-block;
  font-size: 26px;
  font-weight: 400;
  color: #90680f;
  padding: 12px 0px 12px 64px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .benefit__heading-sub-text {
    font-size: 20px;
    padding-left: 54px;
  }
}
@media screen and (max-width: 375px) {
  .benefit__heading-sub-text {
    font-size: 18px;
  }
}

.benefit__heading-main-text {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  color: #90680f;
  line-height: 1;
  margin-top: -20px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .benefit__heading-main-text {
    font-size: 28px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 375px) {
  .benefit__heading-main-text {
    font-size: 24px;
    margin-top: -5px;
  }
}

.benefit__heading-sub-text::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "さらに!";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background-color: #90680f;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .benefit__heading-sub-text::before {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }
}

.benefit__heading-emphasis {
  font-size: 90px;
  line-height: 1.2;
  margin-right: -10px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .benefit__heading-emphasis {
    font-size: 60px;
  }
}

.benefit__list {
  width: 100%;
  max-width: 750px;
  margin: 30px auto 0;
  margin-top: 14px;
}

.benefit__item {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .benefit__item {
    height: auto;
    padding: 5px 0;
  }
}

.benefit__container {
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(86, 86, 86, 0.6);
}

.benefit__container:not(first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .benefit__container:not(first-child) {
    margin-top: 14px;
  }
}

.benefit__number {
  width: 90px;
  height: 90px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .benefit__number {
    width: 12%;
    height: auto;
    margin-left: 0;
  }
}

.benefit__text {
  font-size: 26px;
  line-height: 1.462;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .benefit__text {
    font-size: 3.5vw;
  }
}

.benefit__text-emphasis {
  font-size: 30px;
  color: #fe6999;
}
@media screen and (max-width: 768px) {
  .benefit__text-emphasis {
    font-size: 4.2vw;
  }
}

.benefit__text-emphasis2 {
  font-size: 30px;
  color: #cd3634;
}
@media screen and (max-width: 768px) {
  .benefit__text-emphasis2 {
    font-size: 4.2vw;
  }
}

.benefit__text-small {
  font-size: 20px;
  color: #fe6999;
}
@media screen and (max-width: 768px) {
  .benefit__text-small {
    font-size: 14px;
  }
}

.benefit__text-color {
  color: #fe6999;
}

.benefit__text-wrapper {
  text-align: center;
}

.benefit__item2 {
  background-image: url(../images/benefit-special-item.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  outline: 1px solid #90680f;
  outline-offset: -6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .benefit__item2 {
    height: auto;
    padding: 7px 0;
  }
}

@media screen and (max-width: 768px) {
  .benefit__number.benefit__number2 {
    margin-left: 5px;
  }
}

.benefit__img {
  width: 120px;
  height: 120px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .benefit__img {
    width: 18%;
    height: auto;
    margin-right: 5px;
  }
}

@media screen and (max-width: 768px) {
  .benefit__img.benefit__img2 {
    width: 18%;
  }
}

.benefit__item-label {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #fe6999;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .benefit__item-label {
    font-size: 3vw;
    padding: 2px 10px;
  }
}

.benefit__special {
  width: 100%;
  padding: 40px 25px 60px;
  margin: 0 auto;
  background-image: url(../images/benefit-special-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .benefit__special {
    padding: 40px 15px;
  }
}

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

.benefit__plus {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.benefit__text-white {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .benefit__text-white {
    font-size: 16px;
  }
}

/* --------------------------------------------
 *  ボタンエリア（旧）
 * -------------------------------------------- */
/* --------------------------------------------
 *  メッセージ
 * -------------------------------------------- */
.message {
  width: 100%;
  background-image: url(../images/message-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .message {
    background-image: none;
  }
}

.message__inner {
  width: 100%;
}

.message__catch {
  text-align: center;
  margin-bottom: 40px;
}

.message__catch-text {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #50d5f1;
  display: inline;
  background: linear-gradient(transparent 60%, #fdff00 60%);
}
@media screen and (max-width: 768px) {
  .message__catch-text {
    font-size: 24px;
    line-height: 1.8;
  }
}

.message__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .message__text {
    font-size: 14px;
    text-align: left;
  }
}

.message__text-emphasis {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #fe6999;
}
@media screen and (max-width: 768px) {
  .message__text-emphasis {
    font-size: 18px;
  }
}

.message__text-bold {
  font-weight: 500;
}

.message__subCatch-wrapper {
  position: relative;
}

.message__subCatch-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background-color: #333333;
  z-index: 0;
  transform: translate(-50%, 0) rotate(45deg);
}

.message__subCatch-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background-color: #333333;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.message__subCatch {
  margin-top: 20px;
  text-align: center;
}

.message__subCatch:last-of-type {
  margin-top: 20px;
}

.message__subCatch-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  padding: 0 10px;
  display: inline-block;
  background: linear-gradient(45deg, #2dc2e7, #4fd5f1);
}
@media screen and (max-width: 768px) {
  .message__subCatch-text {
    font-size: 18px;
    line-height: 2;
  }
}

/* --------------------------------------------
 *  お客様の声
 * -------------------------------------------- */
.voice {
  width: 100%;
}

.voice__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background-color: #35a7c9;
  width: 100%;
}

.voice__heading-sub {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .voice__heading-sub {
    font-size: 24px;
  }
}

.voice__heading-main {
  font-size: 36px;
  font-weight: 700;
  color: #fdff00;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .voice__heading-main {
    font-size: 32px;
  }
}

.voice__container {
  padding: 60px 0;
  background-color: #f1f6f7;
}

.voice__container:nth-child(3) {
  background-color: #fff;
}

.voice__title-img {
  height: 59px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .voice__title-img {
    height: 49px;
  }
}

.voice__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 20px;
  text-align: center;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .voice__text {
    font-size: 16px;
    padding: 0 15px;
  }
}

.voice__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.voice__slider {
  margin: 30px auto 0;
  padding: 0 20px 20px;
}
@media screen and (max-width: 768px) {
  .voice__slider {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .voice__swiper-wrapper {
    right: 20px;
  }
}

.card {
  width: 100%;
  max-width: 380px;
  height: 500px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 10px rgba(86, 86, 86, 0.5);
}
@media screen and (max-width: 768px) {
  .card {
    margin: 0 20px;
  }
}

.card__img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 215px;
}

.card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: auto;
}

.card__label {
  font-size: 14px;
  font-weight: 400;
  padding-top: 10px;
  text-align: right;
  border-top: 1px solid currentColor;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #5d5d5d;
  transition: opacity 0.3s;
  cursor: pointer;
}
.swiper-button-prev :hover,
.swiper-button-next :hover {
  opacity: 0.7;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  position: absolute;
  top: 40%;
  left: 38%;
  width: 10px;
  height: 10px;
  content: "";
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.swiper-button-prev::after {
  top: 40%;
  left: 44%;
  transform: rotate(-135deg);
}

/* --------------------------------------------
 *  ビフォーアフター
 * -------------------------------------------- */
.result {
  background-image: url(../images/result-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .result {
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media screen and (max-width: 768px) {
  .result {
    padding: 60px 0;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.result__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.result__slider {
  margin: 60px auto 0;
  padding: 0 20px 0;
}
@media screen and (max-width: 768px) {
  .result__slider {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .result__swiper-wrapper {
    right: 20px;
  }
}

@media (min-width: 1025px) {
  .swiper-slide.result__swiper-slide {
    width: auto;
    flex-shrink: 0;
  }
}

.result-card {
  width: 100%;
  max-width: 380px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .result-card {
    max-width: 320px;
    margin: 0 20px;
  }
}
.result-card__img {
  width: 100%;
  height: auto;
  display: block;
}

.result__text-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
  padding-right: 20px;
}

.result__text {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .result__text {
    font-size: 10px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #5d5d5d;
  transition: opacity 0.3s;
  cursor: pointer;
}
.swiper-button-prev :hover,
.swiper-button-next :hover {
  opacity: 0.7;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  position: absolute;
  top: 40%;
  left: 38%;
  width: 10px;
  height: 10px;
  content: "";
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.swiper-button-prev::after {
  top: 40%;
  left: 44%;
  transform: rotate(-135deg);
}

/* --------------------------------------------
 *  選ばれる3つの理由
 * -------------------------------------------- */
.reason {
  background-color: #effcff;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 60px 0;
  }
}

.reason__inner {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .reason__inner {
    padding: 0;
  }
}

.reason__heading-small {
  font-size: 20px;
  font-weight: 400;
}

.reason__heading-emphasis {
  font-size: 60px;
  font-weight: 700;
  color: #12b2d9;
}

.reason__item {
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .reason__item {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
  }
}

.reason__label {
  position: absolute;
  z-index: 20;
  top: -40px;
  left: 10px;
  font-size: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #fe6999;
  line-height: 0.6;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .reason__label {
    font-size: 94px;
    top: -40px;
    left: 20px;
  }
}

.reason__label.reason__label--r {
  left: auto;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .reason__label.reason__label--r {
    right: 30px;
  }
}

.reason__content {
  position: absolute;
  z-index: 10;
  top: 40px;
  left: 85px;
  width: 580px;
  height: 560px;
  background-color: #fff;
  border-radius: 10px;
  padding: 45px 50px;
  box-shadow: 20px 20px 40px rgba(86, 86, 86, 0.06);
}
@media screen and (max-width: 1024px) {
  .reason__content {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .reason__content {
    position: static;
    width: 92%;
    height: auto;
    padding: 50px 20px;
    margin: 0 auto -20px;
  }
}

.reason__item:nth-child(2) .reason__content {
  height: 640px;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(2) .reason__content {
    height: auto;
  }
}

.reason__item:nth-child(3) .reason__content {
  height: 480px;
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(3) .reason__content {
    height: auto;
  }
}

.reason__content.reason__content--r {
  left: auto;
  right: 85px;
}
@media screen and (max-width: 1024px) {
  .reason__content.reason__content--r {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .reason__content.reason__content--r {
    left: auto;
    right: auto;
  }
}

.reason__title {
  font-size: 22px;
  font-weight: 700;
  color: #12b2d9;
  padding-bottom: 4px;
  margin-bottom: 14px;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 768px) {
  .reason__title {
    font-size: 18px;
  }
}

.reason__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .reason__text {
    font-size: 14px;
  }
}

.reason__img {
  background-image: url(../images/reason-img1@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 560px;
  height: 640px;
  border-radius: 10px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .reason__img {
    width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .reason__img {
    width: 100%;
    margin: -10px 0 0;
    border-radius: 0;
    background-image: url(../images/reason-img1-sp@2x.jpg);
    height: 540px;
  }
}

.reason__img.reason__img2 {
  background-image: url(../images/reason-img4.jpg);
  height: 740px;
}
@media screen and (max-width: 768px) {
  .reason__img.reason__img2 {
    background-image: url(../images/reason-img4-sp.jpg);
    background-position: right;
    height: 540px;
  }
}

.reason__img.reason__img3 {
  background-image: url(../images/reason-img3@2x.jpg);
  height: 560px;
}
@media screen and (max-width: 768px) {
  .reason__img.reason__img3 {
    background-image: url(../images/reason-img3-sp@2x.jpg);
  }
}

.reason__img.reason__img--r {
  margin-left: 0;
  margin-right: auto;
}

/* --------------------------------------------
 *  料金表
 * -------------------------------------------- */
.price {
  background-image: url(../images/price-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.price__img {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .price__img {
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
  }
}

/* --------------------------------------------
 *  後押しエリア
 * -------------------------------------------- */
.boost1 {
  width: 100%;
  background-image: url(../images/boost-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .boost1 {
    padding: 40px 0;
  }
}

.boost1__img {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .boost1__img {
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .boost1__img {
    max-width: 400px;
  }
}

.boost2 {
  width: 100%;
  background-color: #f1f6f7;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .boost2 {
    padding: 40px 0;
  }
}

.boost2__title {
  font-size: 30px;
  font-weight: 700;
  color: #35a7c9;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .boost2__title {
    font-size: 26px;
  }
}

.boost2__text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 24px;
  width: 100%;
  margin: 24px auto 0;
}
@media screen and (max-width: 768px) {
  .boost2__text {
    font-size: 16px;
    -moz-text-align-last: left;
         text-align-last: left;
    width: 100%;
    max-width: 600px;
  }
}

.boost2__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 820px;
  margin: 24px auto 0;
}
@media screen and (max-width: 768px) {
  .boost2__list {
    flex-direction: column;
    width: 100%;
    max-width: 500px;
  }
}

/* --------------------------------------------
 *  サポート
 * -------------------------------------------- */
.support {
  background-image: url(../images/support-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .support {
    background-position: 40% 0;
    background-color: #f1f6f7;
  }
}

.support__catch {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  color: #12b2d9;
  background-image: url(../images/support-catch-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 30px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .support__catch {
    font-size: 20px;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.support__content {
  margin-top: 30px;
}

.support__text {
  line-height: 1.75;
}

.support__imgArea {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .support__imgArea {
    flex-direction: column;
  }
}

.support__img {
  width: 48%;
  max-width: 385px;
}
@media screen and (max-width: 768px) {
  .support__img {
    width: 100%;
  }
}

.support__arrow {
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .support__arrow {
    width: 20px;
    transform: rotate(90deg);
    padding: 0;
    margin: -10px 0;
  }
}

.support__text:not(:first-child) {
  margin-top: 30px;
}

.support__container {
  display: flex;
  align-items: center;
  margin-top: 60px;
  padding: 20px 40px;
  background-color: #fff;
  border: 1px solid #fe6999;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .support__container {
    flex-direction: column;
    padding: 20px 30px;
  }
}

.support__check-img {
  width: 95px;
  padding: 20px 0 20px 20px;
}
@media screen and (max-width: 768px) {
  .support__check-img {
    padding: 10px;
  }
}

.support__check-text {
  color: #fe6999;
  line-height: 1.75;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .support__check-text {
    margin: 20px 0 0 0;
  }
}

/* --------------------------------------------
 *  トレーナー紹介
 * -------------------------------------------- */
.trainer {
  width: 100%;
  background-image: url(../images/trainer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .trainer {
    background-image: none;
    padding: 60px 0 0;
  }
}

.trainer__container {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .trainer__container {
    margin-top: 40px;
  }
}

.trainer__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .trainer__item {
    flex-direction: column;
  }
}

.trainer__item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .trainer__item:not(:first-child) {
    margin-top: 36px;
  }
}

.trainer__img {
  width: 218px;
}

.trainer__content {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .trainer__content {
    margin-left: 0;
  }
}

.trainer__title-sub {
  font-weight: 500;
}

.trainer__title {
  font-weight: 700;
  font-size: 22px;
}

.trainer__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .trainer__text {
    margin-top: 20px;
    font-size: 14px;
  }
}

.trainer__comment {
  position: relative;
  margin-top: 16px;
  padding: 20px 30px;
  border: 2px solid #50d5f1;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 30px;
}

.trainer__comment-img {
  position: absolute;
  z-index: 10;
  top: -20px;
  left: 24px;
  width: 139px;
}

.trainer__comment-text {
  line-height: 1.75;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .trainer__comment-text {
    font-size: 14px;
  }
}

/* --------------------------------------------
 *  お客様との5つの約束
 * -------------------------------------------- */
.promise {
  width: 100%;
  background-color: #effcff;
}

.promise__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  row-gap: 40px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .promise__list {
    margin-top: 40px;
  }
}

.promise__item {
  padding: 50px 24px 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 10px 10px 24 rgba(195, 212, 216, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .promise__item {
    margin-top: 20px;
  }
}

.promise__item::before {
  content: "";
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.promise__item:nth-child(1)::before {
  background-image: url(../images/promice-number1.png);
}

.promise__item:nth-child(2)::before {
  background-image: url(../images/promice-number2.png);
}

.promise__item:nth-child(3)::before {
  background-image: url(../images/promice-number3.png);
}

.promise__item:nth-child(4)::before {
  background-image: url(../images/promice-number4.png);
}

.promise__item:nth-child(5)::before {
  background-image: url(../images/promice-number5.png);
}

.promise__title {
  font-size: 15px;
  font-weight: 700;
  color: #12b2d9;
  text-align: center;
}

.promise__img {
  margin-top: 24px;
  width: auto;
  height: 90px;
}

.promise__text {
  font-size: 14px;
  line-height: 1.625;
  margin-top: 24px;
}

/* --------------------------------------------
 *  LINE予約バナー
 * -------------------------------------------- */
.lineBunner {
  width: 100%;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .lineBunner {
    padding: 40px 0;
  }
}

.lineBunner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .lineBunner__inner {
    padding: 0 4vw;
  }
}

.lineBunner__link {
  display: inline-block;
}

.lineBunner__img {
  width: 100%;
  max-width: 720px;
  box-shadow: 0px 3px 6px rgba(86, 86, 86, 0.3);
  transition: box-shadow 0.2s;
}
.lineBunner__img:hover {
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .lineBunner__img {
    max-width: 500px;
  }
}

/* --------------------------------------------
 *  診断シート
 * -------------------------------------------- */
.selfSheet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 0;
  margin: 0 auto;
  background-image: url(../images/buttonArea-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .selfSheet {
    padding: 80px 0 40px;
  }
}

.selfSheet__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .selfSheet__inner {
    padding: 0 15px;
  }
}

.selfSheet__content {
  width: 100%;
  max-width: 860px;
  padding: 26px 25px;
  background-color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .selfSheet__content {
    padding: 26px 15px;
  }
}

.selfSheet__heading {
  width: 90%;
  max-width: 450px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .selfSheet__heading {
    max-width: 380px;
  }
}

.selfSheet__copy {
  font-size: 28px;
  font-weight: 700;
  color: #35a7c9;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .selfSheet__copy {
    margin-top: 32px;
    font-size: 23px;
  }
}

.selfSheet__text {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .selfSheet__text {
    font-size: 15px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.selfSheet__img {
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0;
}

.selfSheet__link {
  margin-top: 20px;
  display: inline-block;
}

.selfSheet__button {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0px 3px 6px rgba(86, 86, 86, 0.3));
  transition: filter 0.2s;
}
.selfSheet__button:hover {
  filter: none;
}

/* --------------------------------------------
 *  カウンセリング
 * -------------------------------------------- */
/* --------------------------------------------
 *  他社との比較
 * -------------------------------------------- */
.comparison {
  padding: 60px 0;
  background-image: url(../images/catchcopy-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .comparison {
    padding: 30px 0;
  }
}

.comparison__img {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .comparison__img {
    max-width: 500px;
  }
}

.comparison__text {
  width: 100%;
  max-width: 720px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .comparison__text {
    font-size: 16px;
  }
}

.comparison__table-wrapper {
  overflow-x: auto;
}

.comparison__table {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .comparison__table {
    margin-top: 40px;
  }
}

.comparisonTable {
  width: 100%;
  border-spacing: 5px;
}

.comparisonTable th {
  height: 70px;
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .comparisonTable th {
    height: 80px;
  }
}

.comparisonTable th p {
  background-color: #50d5f1;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0 0 20px;
  padding: 0 10px;
}

.comparisonTable td {
  height: 70px;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .comparisonTable td {
    height: 80px;
  }
}

.comparisonTable-item {
  width: 232px;
}
@media screen and (max-width: 768px) {
  .comparisonTable-item {
    width: 160px;
  }
}

.comparisonTable-classic {
  width: 260px;
}

.comparisonTable-otherA {
  width: 260px;
}

.comparisonTable-otherB {
  width: 260px;
}

.comparisonTable__header {
  border-radius: 20px 20px 0 0;
}

.comparisonTable__header:nth-child(1) {
  background-color: #fe6999;
}

.comparisonTable__header:nth-child(2) {
  background-color: #fe6999;
  font-size: 20px;
  font-weight: 700;
}

.comparisonTable__header:nth-child(3),
.comparisonTable__header:nth-child(4) {
  background-color: #5d5d5d;
}

th.comparisonTable__header-small {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  th.comparisonTable__header-small {
    font-size: 12px;
  }
}

tbody tr > *:nth-child(1) {
  background-color: #50d5f1;
  border-radius: 20px 0 0 20px;
}

tbody td {
  background-color: #fff;
}

.comparisonTable__text-emphasis {
  font-size: 16px;
  font-weight: 500;
  color: #fe6999;
  line-height: 1;
}

.comparisonTable__text-small {
  font-size: 14px;
  line-height: 1;
}

.comparisonTable__annotation {
  font-size: 12px;
  color: #5d5d5d;
  text-align: right;
  margin-top: 3px;
}

.comparison__table-wrapper th.table__sticky {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
}

.comparison__table-wrapper th.table__sticky::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #f1f6f7;
  border-right: 5px solid #f1f6f7;
  z-index: -1;
  box-sizing: content-box;
}

/* --------------------------------------------
 *  キャンペーン
 * -------------------------------------------- */
.campaignBlock {
  background-image: url(../images/campaign-bg.jpg);
  background-size: contain;
}

.campaign__inner {
  margin-bottom: 60px;
}

.campaign__catch {
  font-size: 40px;
  font-weight: 500;
  color: #fe6999;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .campaign__catch {
    font-size: 24px;
  }
}

.campaign__catch-small {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: -20px;
}
@media screen and (max-width: 768px) {
  .campaign__catch-small {
    margin-bottom: -50px;
  }
}

.campaign__catch::before,
.campaign__catch::after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: #fe6999;
}
@media screen and (max-width: 768px) {
  .campaign__catch::before,
.campaign__catch::after {
    height: 50px;
  }
}

.campaign__catch::before {
  margin-right: 20px;
  transform: rotate(-35deg);
}
@media screen and (max-width: 768px) {
  .campaign__catch::before {
    margin-right: 30px;
  }
}

.campaign__catch::after {
  margin-left: 20px;
  transform: rotate(35deg);
}
@media screen and (max-width: 768px) {
  .campaign__catch::after {
    margin-left: 30px;
  }
}

.campaign__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid #e3e3e3;
  box-shadow: 10px 10px 16px rgba(195, 212, 216, 0.2);
}
@media screen and (max-width: 768px) {
  .campaign__list {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    max-width: 380px;
    margin: 0 auto;
  }
}

.campaign__item {
  background-color: #fff;
  padding: 30px 20px;
  text-align: center;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .campaign__item {
    height: 220px;
  }
}

.campaign__item:not(:first-child) {
  border-left: 1px solid #d0dadc;
}
@media screen and (max-width: 768px) {
  .campaign__item:not(:first-child) {
    border-left: none;
    border-top: 1px solid #d0dadc;
  }
}

.campaign__item-title {
  font-size: 22px;
  font-weight: 700;
  color: #fe6999;
  padding-bottom: 2px;
  position: relative;
}

.campaign__item-title::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #fe6999;
}

.campaign__item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100px;
  margin-top: 20px;
}

.campaign__item-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.campaign__item-text-emphasis {
  font-size: 18px;
  font-weight: 700;
}

.campaign__item-annotation {
  font-size: 12px;
  color: #5d5d5d;
  text-align: right;
  margin-top: 3px;
}

/* --------------------------------------------
 *  特典詳細
 * -------------------------------------------- */
.benefit__inner.detail {
  margin-top: 40px;
}

.benefit__normal.detail__normal {
  background-image: url(../images/benefit-detail-bg.jpg);
}

.benefit__content {
  padding: 0 20px 30px;
}

.benefit__content-text {
  font-size: 15px;
  line-height: 1.6;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .benefit__content-text {
    font-size: 14px;
  }
}

.benefit__content picture img {
  margin: 0 auto;
  margin-top: 5px;
}

.benefit__content-text:first-child {
  border-top: 1px solid #5d5d5d;
}

.benefit__content-caption {
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .benefit__content-caption {
    font-size: 15px;
  }
}

.benefit__content-img {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .benefit__content-img {
    width: 80vw;
  }
}

.content-special {
  background: linear-gradient(-45deg, #c8a353, #f2e1bd, #c8a353);
}

.benefit__content-text.border-none {
  border-top: none;
  font-weight: 500;
}

.content-special-emphasis {
  color: #fe6999;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .content-special-emphasis {
    font-size: 18px;
  }
}

/* --------------------------------------------
 *  よくある質問
 * -------------------------------------------- */
.faq__accordion {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .faq__accordion {
    margin-top: 40px;
  }
}

.accordion__item {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .accordion__item:not(:first-child) {
    margin-top: 8px;
  }
}

.accordion__title {
  position: relative;
  padding: 21px 50px 21px 20px;
  background-color: #50d5f1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .accordion__title {
    padding: 20px 35px 20px 10px;
  }
}

.accordion__title::before,
.accordion__title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .accordion__title::before,
.accordion__title::after {
    right: 12px;
    width: 16px;
  }
}

.accordion__title::before {
  transform: rotate(90deg);
}

.accordion__title.is-open::before {
  transform: rotate(180deg);
}

.accordion__title.is-open::after {
  opacity: 0;
}

.accordion__title-text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.857;
  color: #fff;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .accordion__title-text {
    font-size: 14px;
  }
}

.accordion__content {
  display: none;
  padding: 21px 20px;
}
@media screen and (max-width: 768px) {
  .accordion__content {
    padding: 16px 10px 24px;
  }
}

.accordion__content-text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.867;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .accordion__content-text {
    font-size: 14px;
    line-height: 1.857;
  }
}

/* --------------------------------------------
 *  アクセス&店舗情報
 * -------------------------------------------- */
.access {
  background-image: url(../images/access-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.access__container {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .access__container {
    margin-top: 40px;
    display: block;
  }
}

.access__table {
  width: 485px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 15px 15px 15px;
}
@media screen and (max-width: 768px) {
  .access__table {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    display: block;
  }
}

.access__tableHeader,
.access__tableData {
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 14px;
  padding: 18px;
}

.access__tableHeader {
  width: 22%;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .access__tableHeader {
    width: 100%;
    padding: 10px 18px;
    border-bottom: 1px solid #5d5d5d;
    text-align: center;
  }
}

.access__tableHeader:not(:first-child) {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .access__tableHeader:not(:first-child) {
    margin-top: 10px;
  }
}

.access__tableData {
  width: 76%;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .access__tableData {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}

.access__tableData:not(:nth-child(2)) {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .access__tableData:not(:nth-child(2)) {
    margin-top: 0;
  }
}

.access__map::before {
  content: "";
  display: block;
  width: 485px;
  height: 366px;
}
@media screen and (max-width: 768px) {
  .access__map::before {
    height: 500px;
  }
}

.access__map {
  margin: 0 15px 15px 15px;
  position: relative;
}
.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .access__map {
    margin: 20px 0 0 0;
  }
}

/* --------------------------------------------
 *  問い合わせ
 * -------------------------------------------- */
.contact {
  background-color: #effcff;
}

.contact__lineArea {
  margin-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact__lineArea {
    margin-top: 60px;
  }
}

.contact__text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.contact__form {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 0;
    margin-bottom: 40px;
    padding: 40px 15px;
  }
}

.contact__form-heading {
  font-size: 26px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__form-heading {
    font-size: 22px;
  }
}

.contact__form-body {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact__form-body {
    margin-top: 30px;
  }
}

.form__list {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form__item:not(:last-child) {
  margin-bottom: 20px;
}

.form__item:not(:first-child) {
  padding-top: 20px;
  border-top: 2px solid #f1f6f7;
}

.form__label-text {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .form__label-text {
    display: block;
    font-size: 15px;
  }
}

.form__label-text::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: -3.5em;
  transform: translateY(-50%);
  font-size: 10px;
  color: #fff;
  font-weight: 400;
  background-color: #cd3634;
  padding: 2px 5px;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .form__label-text::after {
    right: 0;
  }
}

.form__label-text.form__label-text--any::after {
  content: "任意";
  background-color: transparent;
  color: #023564;
  border: 1px solid #023564;
}

.form__label-text-small {
  font-size: 14px;
  font-weight: 400;
  margin-left: -0.7em;
}
@media screen and (max-width: 768px) {
  .form__label-text-small {
    font-size: 13px;
  }
}

.form__content {
  display: flex;
  align-items: center;
  justify-content: start;
}

.form__input-wrapper {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.form__input {
  width: 100%;
  max-width: 600px;
  height: 40px;
  display: flex;
  align-items: center;
  background-color: #f1f6f7;
  padding: 0 10px;
  border-radius: 4px;
}

.form__input.form__input--year {
  width: 70px;
}

.form__input.form__input--month {
  width: 50px;
}

.form__input.form__input--day {
  width: 50px;
}

.form__input-text {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__input-text {
    font-size: 15px;
  }
}

.form__input-text.form__input-text--right {
  text-align: right;
}

.form__birthday-text {
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .form__birthday-text {
    font-size: 15px;
  }
}

.form__input input::-moz-placeholder, .form__textarea textarea::-moz-placeholder {
  color: #a5a5a5;
}

.form__input input:-ms-input-placeholder, .form__textarea textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

.form__input input::placeholder,
.form__textarea textarea::placeholder {
  color: #a5a5a5;
}

.form__radio {
  margin-top: 15px;
}

.form__radio li:not(:first-child) {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .form__radio li:not(:first-child) {
    margin-top: 10px;
  }
}

.form__radio-text {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}

.form__radio-text::before,
.form__radio-text::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.form__radio-text::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  left: 5px;
}

.form__radio-text::after {
  background-color: #023564;
  border-radius: 50%;
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 8px;
}

input:checked + .form__radio-text::after {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.form__preferred {
  margin-top: 15px;
}

.form__preferred-content {
  display: flex;
  align-items: center;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .form__preferred-content {
    display: block;
  }
}

.form__preferred-text {
  display: inline-block;
}

.form__preferred-content {
  margin-top: 5px;
}

.form__select-week,
.form__select-time {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .form__select-time {
    margin-top: 10px;
  }
}

.form__select {
  width: 100%;
  height: 40px;
  text-align: center;
  background-color: #f1f6f7;
  border: 1px solid #023564;
  border-radius: 4px;
  padding-right: 20px;
  position: relative;
}

.form__select-wrapper {
  position: relative;
  width: 80px;
}

.form__select-wrapper::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  width: 22px;
  height: 40px;
  background-color: #023564;
  border-top: 1px solid #023564;
  border-right: 1px solid #023564;
  border-bottom: 1px solid #023564;
  border-radius: 0 4px 4px 0;
  pointer-events: none;
}

.form__select-wrapper::after {
  content: "";
  position: absolute;
  z-index: 20;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  pointer-events: none;
  transform: translateY(-50%) rotate(-135deg);
}

.form__preferred-text {
  margin: 0 5px;
}

.form__textarea-text {
  width: 100%;
  height: 200px;
  background-color: #f1f6f7;
  border-radius: 4px;
  margin-top: 5px;
  padding: 10px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .form__textarea-text {
    font-size: 15px;
  }
}

.form__policy {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}

.form__policy-link {
  color: #333333;
  border-bottom: 1px solid currentColor;
}

.form__policy-text {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form__policy-text {
    font-size: 15px;
  }
}

.form__policy-text::before,
.form__policy-text::after {
  content: "";
  display: block;
  position: absolute;
}

.form__policy-text::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #ddd;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}

.form__policy-text::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  height: 6px;
  width: 12px;
  transform: rotate(-45deg);
  top: 4px;
  left: 7px;
}

input:checked + .form__policy-text::before {
  background-color: #023564;
  border: 1px solid #023564;
}

input:checked + .form__policy-text::after {
  opacity: 1;
}

.form__button {
  margin: 0 auto;
  margin-top: 20px;
}

.form__link:hover {
  cursor: pointer;
}

/* --------------------------------------------
 *  フッター
 * -------------------------------------------- */
.footer {
  background-color: #50d5f1;
}

.footer__copyright {
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  padding: 10px 20px;
}

/* --------------------------------------------
 *  スタートアニメーション
 * -------------------------------------------- */
.start {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start__text {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  font-size: 50px;
  width: 100%;
  font-family: "Noto Serif JP";
  color: #50d5f1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .start__text {
    font-size: 32px;
  }
}

/* --------------------------------------------
 *  サンクスページ
 * -------------------------------------------- */
.thanks {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .thanks {
    padding: 60px 0;
  }
}

.thanks__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .thanks__inner {
    padding: 0 15px;
  }
}

.thanks__title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks__title {
    line-height: 1.8;
  }
}

.thanks__text {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .thanks__text {
    font-size: 15px;
    line-height: 1.8;
  }
}

.thanks__link {
  color: #f04946;
  border-bottom: 1px solid currentColor;
}

.thanks__button {
  margin-top: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------
 *  プライバシーポリシーページ
 * -------------------------------------------- */
.policy {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .policy {
    padding: 60px 0;
  }
}

.policy__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .policy__inner {
    padding: 0 15px;
  }
}

.policy__title {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .policy__title {
    font-size: 26px;
  }
}

.policy__heading {
  margin-top: 30px;
  color: #333333;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .policy__heading {
    font-size: 20px;
  }
}

.policy__content {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .policy__content {
    font-size: 15px;
    line-height: 1.8;
  }
}

.policy ol {
  list-style-type: decimal;
  margin-left: 2em;
}

.policy ul {
  margin-top: 20px;
}

.policy__text-right {
  text-align: right;
}

.policy__button {
  margin-top: 40px;
  text-align: center;
}

.policy__button-text {
  color: #f04946;
  border-bottom: 1px solid currentColor;
}

/* --------------------------------------------
 *  共通パーツ
 * -------------------------------------------- */
.inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.inner.inner--s {
  max-width: 850px;
}

.inner.inner--l {
  max-width: 1250px;
}

.heading {
  text-align: center;
}

.heading__sub {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fe6999;
  margin-bottom: -5px;
}

.heading__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .heading__title {
    font-size: 30px;
  }
}

.heading.heading--reverse h2 {
  color: #fff;
}

.heading.heading--small h2 {
  font-size: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .heading.heading--small h2 {
    font-size: 20px;
  }
}

.heading__title::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background-color: #333333;
}

.heading.heading--reverse h2::after {
  background-color: #fff;
}

.text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.725;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
  }
}

.button {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 384px;
  padding: 16px 30px;
  background-color: #00b900;
  box-shadow: 2px 2px 4px rgba(26, 143, 173, 0.7);
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s, letter-spacing 0.2s;
}
.button:hover {
  opacity: 1;
  box-shadow: none;
}
.button:hover::after {
  right: 15px;
}
@media screen and (max-width: 768px) {
  .button {
    padding: 24px 30px;
  }
}

.button::before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 35px;
  background-image: url(../images/line-icon.png);
  background-size: cover;
  transition: left 0.2s;
}

.button::after {
  content: "";
  position: absolute;
  z-index: 10;
  right: 20px;
  top: 42%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: right 0.2s;
}

.button.button--mail {
  background-color: #fe6999;
}

.button.button--mail::before {
  width: 34px;
  height: 25px;
  background-image: url(../images/mail-icon.png);
}

.button.button--form {
  background-color: #f04946;
}

.button.button--form::before {
  display: none;
}

.section-padding {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .lg-none {
    display: none;
  }
}

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

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

.balloon {
  width: 100%;
}

.balloon__list {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .balloon__list {
    flex-direction: column;
    align-items: center;
  }
}

.voiceBalloon {
  display: flex;
  width: 80%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .voiceBalloon {
    width: 100%;
    max-width: 600px;
  }
}

.voiceBalloon__icon {
  flex-shrink: 0;
  margin-right: -90px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .voiceBalloon__icon {
    width: 100px;
    height: 100px;
  }
}

.voiceBalloon__icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 4px #fff;
  border-radius: 50%;
  display: block;
}

.voiceBalloon__textArea {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
}

.voiceBalloon__label {
  text-align: right;
  margin-top: 6px;
}

.voiceBalloon__text::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #fff;
}

.voiceBalloon__text p {
  margin: 0;
  padding: 0;
}

.answer__balloon {
  padding: 30px 0 20px;
}

.message__balloon {
  background-color: #f1f6f7;
  padding: 30px 0;
}

.reason__balloon {
  padding: 30px 0;
}

.trainer__balloon {
  margin-top: 30px;
  background-color: #f1f6f7;
  padding: 30px 0;
}