@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

body {
  color: #1E1E1E;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .u-mobile {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .test {
    content: "test";
  }
}

.scale-inner {
  width: 100%;
  max-width: 414px;
  margin-inline: auto;
}

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

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

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #1E1E1E;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button],
button {
  display: inline-block;
  margin: 0;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

input[type=radio] + span:hover::after,
input[type=checkbox] + span:hover::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ccc;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #3498db;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #3498db;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
/* focus */
input:focus,
textarea:focus,
button:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

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

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

/* Remove default margin */
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;
  margin: 0;
}
@media screen and (min-width: 600px) {
  body {
    margin: 0;
  }
}

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

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 600px) {
  a:hover {
    color: #ED828B;
  }
}

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

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

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

/* フォームリセット */
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;
}

.about__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  overflow-x: hidden;
}

.about__title {
  position: relative;
  color: #231815;
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: -140px;
  margin-bottom: -8.75rem;
  z-index: 100;
}

.about__title-iamge {
  position: relative;
}

.about__text-cotents {
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
  width: 100%;
  padding-inline: 9px;
  padding-inline: 0.5625rem;
  position: relative;
}

.about__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  margin-inline: auto;
  padding-inline: 15px;
  padding-inline: 0.9375rem;
  line-height: 1.2;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1E1E1E;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  letter-spacing: -0.03em;
}

.about__text:last-child {
  border-bottom: none;
}

.text__accent {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text__accent__letter {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.about__unyou-title {
  background-color: #FFD600;
  color: #FF006B;
  font-size: 48px;
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.about__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about__profile img {
  width: 188px;
  width: 11.75rem;
  aspect-ratio: 1/1;
  z-index: -2;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .15);
          box-shadow: 0 4px 4px rgba(0, 0, 0, .15);
}

.about__profile-body {
  margin-left: 23px;
  margin-left: 1.4375rem;
}

.about__profile-bg {
  position: relative;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
  margin-left: 8px;
}

.about__profile-bg::after {
  content: "";
  background-color: #FF0069;
  -webkit-clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
  width: 241px;
  width: 15.0625rem;
  height: 108px;
  height: 6.75rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.about__profile-text01 {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1rem;
}

.about__u-text-lg {
  font-size: 24px;
  font-size: 1.5rem;
}

.about__profile-text02 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.about__unyou-fukidashi {
  position: relative;
}

.about__unyou-fukidashi p {
  position: relative;
  display: block;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

.about__unyou-fukidashi::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("../images/about-fukidashi.svg") no-repeat center/contain;
  width: 335px;
  width: 20.9375rem;
  height: 102px;
  height: 6.375rem;
  z-index: -1;
}

.achievement__inner {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.achievement__inner::after {
  content: "";
  position: absolute;
  background-color: #F2F2F2;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}

.achievement__title {
  position: relative;
  margin-bottom: -18px;
}

.achievement__title::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/achievement__title-bg2.svg") no-repeat center/contain;
  width: 180px;
  width: 11.25rem;
  height: 219px;
  height: 13.6875rem;
  z-index: -1;
}

.achievement__lap {
  position: relative;
}

.form {
  padding-bottom: 111px;
  padding-bottom: 6.9375rem;
}

.form_inner {
  padding-top: 80px;
  padding-top: 5rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  position: relative;
  background: transparent;
  /* 背景は擬似要素に描く */
  isolation: isolate;
}

.form_inner::after {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
  background-color: #F2F2F2;
  inset: 0;
  z-index: -1;
  /* ← 背景は下へ */
  pointer-events: none;
  /* ← クリックを通す */
}

.wp-block-contact-form-7-contact-form-selector {
  position: relative;
  z-index: 10;
}

.bl_form_item {
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.bl_form_wrap {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.bl_form_wrap input {
  width: 100%;
  background-color: #fff;
  border: none;
  padding-top: 5px;
  padding-top: 0.3125rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.bl_form_text::-webkit-input-placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_text::-moz-placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_text::-ms-input-placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_text::placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_textarea::-webkit-input-placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_textarea::-moz-placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_textarea::-ms-input-placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_textarea::placeholder {
  color: #C4C4C4;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.bl_form_check label span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
}

.bl_form_item_label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  display: block;
}

.bl_form_item_label span {
  color: #FF0069;
  display: inline-block;
  margin-left: 7px;
  margin-left: 0.4375rem;
}

.bl_form_textarea {
  min-height: 240px;
  resize: vertical;
  background-color: #fff;
  line-height: 1.5;
  border: none;
  width: 100%;
  padding: 12px 16px;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

.bl_form_item--policy {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-bottom: 42px;
  margin-bottom: 2.625rem;
}

.bl_form_item--policy a {
  color: #1E1E1E;
  text-decoration: underline;
  position: relative;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
}

.bl_form_item--policy a::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  width: 14px;
  width: 0.875rem;
  height: 10px;
  height: 0.625rem;
  background-image: url("../images/policy-link-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.wpcf7-spinner {
  display: none !important;
}

.bl_con-form_buttonUnit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.bl_form_submit--prev {
  width: 320px;
  width: 20rem;
  background-color: #fff;
  color: #1c1c1c;
}

.bl_form_start {
  width: 320px;
  width: 20rem;
}

.bl_form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_form_postal {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  text-decoration: underline;
  cursor: pointer;
}

.bl_form_postalWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bl_form_buttonUnit {
  text-align: center;
  margin-top: 30px;
  width: 90%;
  position: relative;
  /* ← z-indexを効かせるため必須 */
  z-index: 10;
  margin-inline: auto;
}

.bl_form_buttonUnit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  background-image: url("../images/button-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.bl_form_buttonUnit .wpcf7-submit {
  background-color: #1e1e1e;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 22px 40px;
  padding: 1.375rem 40px;
  border: none;
  border-radius: 36px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  display: block;
  width: 100%;
  position: relative;
}

.bl_form_buttonUnit .wpcf7-submit:hover {
  background-color: #005fa3;
  /* ホバー時の色 */
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  /* 少し浮く */
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  font-size: 0.75rem;
  padding-top: 10px;
  padding-top: 0.625rem;
}

.c-title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.45;
}

.c-title--en {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #231815;
}

.c-title--en-white {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #FFF;
  text-align: left;
}

.c-title--stroke {
  color: #fff;
  /* 文字色（中身） */
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  font-weight: 900;
}

.case-intro {
  background: url("../images/case-intro-bg.webp") no-repeat center/cover;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
}

.case-intro__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.case-intro__title-en {
  font-size: 36px;
  font-size: 2.25rem;
}

.case-intro__text {
  font-size: 48px;
  font-size: 3rem;
  text-align: center;
  color: #FF0069;
  line-height: 1.1;
  font-weight: 700;
  margin-top: -33px;
}

.case-intro__num {
  font-size: 80px;
  font-size: 5rem;
}

.cta-button {
  background-color: #231F20;
  color: #fff;
}

.cta-button__inner {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  text-align: center;
  padding-bottom: 31px;
  padding-bottom: 1.9375rem;
}

.cta-button__text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
}

.cta-button__num {
  font-size: 48px;
  font-size: 3rem;
}

.cta-button__btn {
  display: inline-block;
  padding: 22px 59px 22px 101px;
  padding: 1.375rem 3.6875rem 1.375rem 6.3125rem;
  border-radius: 50px;
  background: linear-gradient(#FF006B, #FF006B) padding-box, linear-gradient(171deg, #FF006B, #00c6ff) border-box;
  /* 枠のグラデーション */
  border: 2px solid transparent;
  position: relative;
  width: 100%;
}

.cta-button__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 59px;
  left: 3.6875rem;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 30px;
  width: 1.875rem;
  height: 20px;
  height: 1.25rem;
  background-image: url("../images/mail-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-button__btn a {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
}

.cta-button--mv {
  color: #231F20;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.cta-button__inner--mv {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  text-align: center;
}

.cta-button__text--mv {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
}

.cta-button__num--mv {
  font-size: 56px;
  font-size: 3.5rem;
}

.cta-button__btn--mv {
  display: inline-block;
  padding: 22px 59px 22px 101px;
  padding: 1.375rem 3.6875rem 1.375rem 6.3125rem;
  border-radius: 50px;
  background: linear-gradient(#FF006B, #FF006B) padding-box, linear-gradient(171deg, #FF006B, #00c6ff) border-box;
  /* 枠のグラデーション */
  border: 2px solid transparent;
  position: relative;
  width: 100%;
}

.cta-button__btn--mv::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 59px;
  left: 3.6875rem;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 30px;
  width: 1.875rem;
  height: 20px;
  height: 1.25rem;
  background-image: url("../images/mail-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-button__btn--mv a {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
}

.faq {
  padding-block: 72px 77px;
  padding-block: 4.5rem 4.8125rem;
}

.faq__inner {
  padding-inline: 20px;
  padding-inline: 1.25rem;
}

.faq__title {
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
}

.faq__item:first-child {
  border-top: 1px solid #1E1E1E;
}

.faq__item {
  border-bottom: 1px solid #1E1E1E;
  padding-block: 20px 24px;
  padding-block: 1.25rem 1.5rem;
}

.faq__question,
.faq__answer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  /* Q, テキスト, トグル */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq__badge {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  margin-right: 12px;
  margin-right: 0.75rem;
}

.faq__badge--q {
  color: #FF0069;
}

.faq__qtext {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.faq__badge--a {
  color: #00DDFF;
}

.faq__atext {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.3;
}

.faq__toggle {
  width: 24px;
  height: 24px;
  background: url("../images/faq-open.svg") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__item--open .faq__toggle {
  background-image: url("../images/faq-close.svg");
}

.faq__item--open .faq__answer {
  max-height: 500px;
  opacity: 1;
}

.faq__item--open .faq__toggle::after {
  opacity: 0;
}

.footer {
  margin-bottom: 17px;
  margin-bottom: 1.0625rem;
  padding-inline: 40px;
  padding-inline: 2.5rem;
}

.footer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-head img {
  width: 20px;
  width: 1.25rem;
}

.footer-body {
  width: 200px;
  width: 12.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.footer-footer a {
  display: block;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.gnav {
  position: fixed;
  inset: 61px 0 0 0;
  z-index: 999;
  pointer-events: none;
}

.gnav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.gnav__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #1f1b1b;
  color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 20px;
}

.gnav.is-open {
  pointer-events: auto;
}

.gnav.is-open .gnav__overlay {
  opacity: 1;
}

.gnav.is-open .gnav__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.gnav__list {
  list-style: none;
  margin: 64px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 110px;
  width: 6.875rem;
  margin-inline: auto;
}

.gnav__list a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  display: block;
  padding: 6px 4px;
}

.gnav__cta {
  margin-top: 80px;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gnav__btn {
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 13px;
  padding-block: 0.8125rem;
  padding-left: 52px;
  padding-left: 3.25rem;
  padding-right: 13px;
  padding-right: 0.8125rem;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
          box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  min-width: 162px;
  min-width: 10.125rem;
}

.gnav__btn--doc {
  background: -webkit-gradient(linear, left top, left bottom, from(#00FFD1), to(#7638FA));
  background: linear-gradient(to bottom, #00FFD1, #7638FA);
}

.gnav__btn--quote {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF006B), to(#A901C5));
  background: linear-gradient(to bottom, #FF006B, #A901C5);
}

html.is-fixed,
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

.gnav__btn--doc,
.gnav__btn--quote {
  position: relative;
}

.gnav__btn--doc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/gnav-doc-icon.svg") no-repeat center/cover;
  width: 39px;
  width: 2.4375rem;
  height: 39px;
  height: 2.4375rem;
  z-index: 10;
  overflow: hidden;
}

.gnav__btn--quote::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/gnav-quote-icon.svg") no-repeat center/cover;
  width: 39px;
  width: 2.4375rem;
  height: 39px;
  height: 2.4375rem;
  z-index: 10;
  overflow: hidden;
}

.gnav:not(.is-open) {
  pointer-events: none;
  visibility: hidden;
}

.gnav:not(.is-open) .gnav__overlay {
  opacity: 0;
}

.gnav:not(.is-open) .gnav__panel {
  -webkit-transform: translateY(100%) !important;
          transform: translateY(100%) !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
}

.header__inner {
  padding-inline: 16px;
  padding-inline: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 146px;
  width: 9.125rem;
  display: block;
}

.header__burger {
  background-color: #211715;
  border-radius: 50%;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.header__burger-line {
  width: 14px;
  width: 0.875rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #fff;
  display: block;
  margin-inline: auto;
  position: relative;
}

.header__burger-line::after,
.header__burger-line::before {
  content: "";
  width: 14px;
  width: 0.875rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #fff;
  display: block;
}

.header__burger-line::before {
  position: absolute;
  top: -4px;
}

.header__burger-line::after {
  position: absolute;
  top: 4px;
}

/* バツ印化 */
.header__burger.is-active .header__burger-line {
  background: transparent;
}

.header__burger.is-active .header__burger-line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__burger.is-active .header__burger-line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mv {
  padding-top: 72px;
}

.mv__right {
  text-align: right;
  padding-right: 5px;
  padding-right: 0.3125rem;
  font-weight: bold;
  position: relative;
  padding-left: 45%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-inline: auto;
}

.mv__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/mv-main.webp") no-repeat center/cover;
  width: 221px;
  width: 13.8125rem;
  height: 379px;
  height: 23.6875rem;
  z-index: 10;
  overflow: hidden;
}

.mv__title {
  font-size: 24px;
  font-size: 1.5rem;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.mv-title--accent {
  font-size: 28px;
  font-size: 1.75rem;
}

.mv-title--large-accent {
  font-size: 40px;
  font-size: 2.5rem;
}

.mv-text__middle-accent {
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 700;
}

.mv__second-title {
  font-size: 24px;
  font-size: 1.5rem;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  letter-spacing: 0.05em;
}

.mv__sard-title {
  font-size: 24px;
  font-size: 1.5rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.mv-normal-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.mv__image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mv__image-box img {
  width: 150px;
  width: 9.375rem;
  aspect-ratio: 1/1;
}

.price {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

.price__inner {
  padding-top: 72px;
  padding-top: 4.5rem;
}

.price__title {
  position: relative;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.price__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  width: 5.375rem;
  height: 90px;
  height: 5.625rem;
  background-image: url("../images/price-title-icon.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

.price__tableWrap {
  padding-left: 20px;
  padding-left: 1.25rem;
  overflow-x: auto;
  width: auto;
  border-collapse: separate;
  border-spacing: 0;
}

.price__table {
  overflow-x: auto;
  table-layout: auto;
  width: 405px;
  border-collapse: collapse;
  position: relative;
}

.price__col {
  background-color: #F2F2F2;
  padding-block: 12px;
  padding-block: 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  border-right: 1px solid #BCBCBC;
}

.price__label {
  background-color: #231F20;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  width: 84px;
  width: 5.25rem;
  padding-block: 18px;
  padding-block: 1.125rem;
  text-align: left;
  padding-left: 12px;
  padding-left: 0.75rem;
  border-bottom: 1px solid #fff;
}

.price__label--blank {
  background: transparent;
}

.price__cell {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #BCBCBC;
  border-right: 1px solid #BCBCBC;
  width: 80px;
  width: 5rem;
}

.price__col--main {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  width: 30%;
}

.price__cell--main {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.price__cell--main small {
  font-size: 10px;
  font-size: 0.625rem;
}

.price__table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 97px;
  /* ラベル列の幅に合わせて調整 */
  width: 30%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#ff007a), color-stop(#7b4bca), to(#00c6ff)) border-box;
  background: linear-gradient(90deg, #ff007a, #7b4bca, #00c6ff) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  /* クリック操作を邪魔しない */
}

.reason {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.reason__inner {
  padding-top: 39px;
  padding-top: 2.4375rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  position: relative;
  overflow: hidden;
}

.reason__inner::after {
  content: "";
  position: absolute;
  top: 89px;
  right: 11px;
  background: url("../images/reason__title-bg.svg") no-repeat center/contain;
  width: 180px;
  width: 11.25rem;
  height: 180px;
  height: 11.25rem;
  overflow: hidden;
  z-index: -1;
}

.reason__title {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  line-height: 1.3;
  position: relative;
}

.reason__num {
  font-size: 64px;
  font-size: 4rem;
  line-height: 0.8;
}

.reason__title::before {
  content: "";
  position: absolute;
  top: 33%;
  left: -12px;
  background: url("../images/reef--left.svg") no-repeat center/contain;
  width: 60px;
  width: 3.75rem;
  height: 112px;
  height: 7rem;
}

.reason__title::after {
  content: "";
  position: absolute;
  top: 33%;
  right: 0;
  background: url("../images/reef--right.svg") no-repeat center/contain;
  width: 60px;
  width: 3.75rem;
  height: 112px;
  height: 7rem;
}

.reason__item {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.reason__num {
  position: relative;
}

.reason__num01::before {
  content: "";
  position: absolute;
  top: -99px;
  left: -25px;
  background: url("../images/reason-num01.svg") no-repeat center/contain;
  width: 101px;
  width: 6.3125rem;
  height: 96px;
  height: 6rem;
}

.reason__item-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.reason__num02::before {
  content: "";
  position: absolute;
  top: -96px;
  right: -20px;
  background: url("../images/reason-num02.svg") no-repeat center/contain;
  width: 117px;
  width: 7.3125rem;
  height: 96px;
  height: 6rem;
}

.reason__num03::before {
  content: "";
  position: absolute;
  top: -92px;
  left: -25px;
  background: url("../images/reason-num03.svg") no-repeat center/contain;
  width: 101px;
  width: 6.3125rem;
  height: 96px;
  height: 6rem;
}

.reason__num04::before {
  content: "";
  position: absolute;
  top: -97px;
  right: -20px;
  background: url("../images/reason-num04.svg") no-repeat center/contain;
  width: 120px;
  width: 7.5rem;
  height: 96px;
  height: 6rem;
}

.reason__thumb {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.reason__content-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}

.reason__content-title span {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.16;
}

.reason__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.service__inner {
  position: relative;
  color: #fff;
  padding-top: 36px;
  padding-top: 2.25rem;
  padding-bottom: 54px;
  padding-bottom: 3.375rem;
}

.service__inner::after {
  content: "";
  position: absolute;
  background-color: #211715;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.service__title {
  width: 64%;
  max-width: 240px;
  margin: 0 auto;
}

.service__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-inline: 20px;
  padding-inline: 1.25rem;
  gap: 24px 32px;
  gap: 1.5rem 2rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 70.4%;
  max-width: 264px;
}

.service__item {
  width: 128px;
  width: 8rem;
  border-bottom: 1px solid #Fff;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.service__icon01 {
  width: 56px;
  width: 3.5rem;
  height: 48px;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.service__icon02 {
  width: 64px;
  width: 4rem;
  height: 48px;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.service__icon03 {
  width: 43px;
  width: 2.6875rem;
  height: 52px;
  height: 3.25rem;
  margin-inline: auto;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.service__icon04 {
  width: 63px;
  width: 3.9375rem;
  height: 48px;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.service__icon05 {
  width: 31px;
  width: 1.9375rem;
  height: 48px;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.service__icon06 {
  width: 52px;
  width: 3.25rem;
  height: 44px;
  height: 2.75rem;
  margin-inline: auto;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.service__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.service__vertical-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 縦書き（右→左） */
  text-orientation: upright;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  white-space: nowrap;
  position: absolute;
  right: 20px;
  /* 位置はデザインに合わせて調整 */
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.trouble {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.trouble__title {
  text-align: left;
  line-height: 1.1;
}

.trouble__title .c-title--en {
  line-height: 2;
  margin-top: 8px;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.trouble__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  gap: 24px;
}

.trouble__header-image {
  width: 168px;
  width: 10.5rem;
  height: 186px;
  height: 11.625rem;
  z-index: 1;
}

.trouble__body {
  background-color: #525252;
  color: #fff;
  margin-top: -54px;
  margin-top: -3.375rem;
  padding-top: 139px;
  padding-top: 8.6875rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  position: relative;
  z-index: 0;
}

.trouble__body::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 20px;
  width: 167px;
  width: 10.4375rem;
  height: 97px;
  height: 6.0625rem;
  background-image: url("../images/trouble-fukidashi.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.trouble__items {
  padding-left: 20px;
  padding-left: 1.25rem;
}

.trouble__item {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  width: 100%;
  position: relative;
  padding-left: 46px;
  padding-left: 2.875rem;
  letter-spacing: -0.02em;
}

.trouble__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  width: 1.625rem;
  height: 17px;
  height: 1.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/check-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.trouble__gradation-bg {
  position: relative;
}

.trouble__read {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  color: #FF006B;
  text-align: center;
  position: relative;
  z-index: 10;
}

.trouble__read span {
  font-size: 40px;
  font-size: 2.5rem;
}

.trouble__gradation-bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  width: 16.25rem;
  height: 170px;
  height: 10.625rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../images/trouble-gradation-bg01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.voice {
  margin-top: 80px;
  margin-top: 5rem;
}

.voice__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 52px;
  padding-bottom: 3.25rem;
  position: relative;
  background: transparent;
  /* 背景は擬似要素に描く */
  isolation: isolate;
  overflow: hidden;
}

.voice__inner::after {
  content: "";
  position: absolute;
  background-color: #FFD600;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.voice__title {
  font-size: 40px;
  font-size: 2.5rem;
  text-align: left;
  margin-inline: auto;
  line-height: 1.1;
  width: 240px;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.voice__title--en {
  margin-top: 16px;
  font-size: 16px;
  font-size: 1rem;
}

.voice__list {
  position: relative;
  z-index: 10;
}

.voice-card {
  background-color: #fff;
  border-radius: 8px;
  width: 95.73%;
  padding-top: 32px;
  padding-inline: 20px;
  min-height: 360px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  overflow: hidden;
  z-index: 1;
  position: relative;
  margin-inline: auto;
  margin-bottom: 16px;
}

.voice-card__thumb {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  overflow: hidden;
  /* はみ出し防止（任意） */
}

.voice-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* 全体を表示 */
  display: block;
}

.voice-card__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.voice-card__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.voice__slider {
  overflow: visible;
}

.voice__slider .swiper-slide {
  width: 280px !important;
  max-width: 280px;
}
/*# sourceMappingURL=styles.css.map */


/* thanksページ */
.ly-thanks {
  padding-inline: 20px;
  padding-top: 72px;
}

.thanks_title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.thanks_text {
  line-height: 1.3;
  margin-bottom: 20px;
}
.thanks__btn-wrap {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.thanks__btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #1c1c1c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}