@charset "UTF-8";

/*-- globalフォルダの中の_index.scss --*/
.pc-hidden {
  display: none;
}

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

.sp-hidden {
  display: block;
}

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

/*-- baseフォルダの中の_index.scss --*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  scroll-padding-top: 75px;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

a {
  transition: opacity 0.3s ease;
}

a img {
  transition-property: opacity;
  transition-duration: 0.2s;
  /* backface-visibility: hidden; */
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }

  a:hover img {
    opacity: 0.8;
  }
}

img {
  max-width: 100%;
  height: auto;
}

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 1px;
}

small {
  font-size: inherit;
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  height: 100%;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/*-- componentフォルダの中の_index.scss --*/
.consultation-button {
  text-align: center;
}

.consultation-button .btn-copy {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
  color: #333333;
}

.consultation-button .btn-copy:before {
  color: #ff4d4d;
  margin-right: 0.5rem;
  font-weight: 700;
  content: "＼";
}

.consultation-button .btn-copy:after {
  color: #ff4d4d;
  margin-left: 0.5rem;
  content: "／";
}

.consultation-button .arrow-btn {
  color: #fff;
  background-color: #ff4d4d;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 15px 15px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.consultation-button .arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  transform: translateX(-25%) rotate(45deg);
  /* circle */
  margin-left: 10px;
  border: 10px solid #fff;
  background: #fff;
  border-radius: 50%;
  box-sizing: content-box;
}

.consultation-button .arrow-right::before,
.consultation-button .arrow-right::after {
  content: "";
  position: absolute;
  background: #ff4d4d;
  border-radius: 0.1em;
}

.consultation-button .arrow-right::before {
  top: 4px;
  left: 0;
  right: 4px;
  height: 0.2em;
}

.consultation-button .arrow-right::after {
  top: 4px;
  right: 4px;
  bottom: 0;
  width: 0.2em;
}

.pc-width {
  width: 100%;
  height: 100vh;
  position: relative;
}

.pc-width:before {
  position: absolute;
  content: "";
  background-image: url(../img/pc-wave-top.webp);
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: 44px;
  left: 0;
  top: 0;
}

.pc-width::after {
  position: absolute;
  content: "";
  background-image: url(../img/pc-wave-bottom.webp);
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 44px;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .pc-width:before,
  .pc-width::after {
    display: none;
  }
}

.bg-square {
  background-image:
    linear-gradient(0deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #f7f9fb calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #fff;
}

.pc-logo {
  z-index: 1;
  transition: 0.3s;
  width: 305px;
  height: 155.5px;
  /* left: 110px; */
  margin: 0 auto;
}

@media (max-width: 1299px) {
  .pc-left,
  .pc-right {
    display: none !important;
  }
}

.pc-left {
  width: calc(50% - 195px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* pcメニュー */
.pc-right {
  width: calc(50% - 195px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pc-menu-wrap {
  background-color: white;
  width: 375px;
}

.pc-menu-wrap__logo {
  width: 97.85px;
  padding: 10px;
}

.pc-menu__item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #4cb2e4;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

.pc-menu__item__icon {
  width: 24px;
}

.pageFlex-container {
  height: 86vh;
  position: absolute;
  width: 390px;
  margin: 0 auto;
  border: 2px solid #000;
  border-radius: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .pageFlex-container {
    height: 100%;
    position: relative;
    width: 100%;
    margin: 0 auto;
    border: transparent;
    border-radius: 0;
    top: auto;
    left: auto;
    overflow: visible;
    transform: translate(0, 0);
  }
}

.pageFlex-container__footer {
  margin-top: auto;
}

.tellink {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .tellink {
    pointer-events: auto;
  }
}

.m-title1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4230769231;
  letter-spacing: 0em;
  text-align: center;
  padding-bottom: 0.6em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .m-title1 {
    font-size: clamp(1.625rem, 6.93vw, 3.25rem);
  }
}

.m-title1::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 2px;
  background-color: #4cb2e4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .m-title1::before {
    width: clamp(4rem, 17.07vw, 8rem);
    height: clamp(0.125rem, 0.53vw, 0.25rem);
  }
}

.m-title1 .color {
  color: #333333;
}

.m-title1.m-title1--white {
  color: #fff;
}

.m-title1.m-title1--white::before {
  background-color: #fff;
}

.m-title2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4230769231;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #fff;
  background-color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .m-title2 {
    font-size: clamp(1.625rem, 6.93vw, 3.25rem);
    padding-top: clamp(1.563rem, 6.67vw, 3.125rem);
    padding-bottom: clamp(1.563rem, 6.67vw, 3.125rem);
  }
}

.m-title3 {
  text-align: center;
}

.m-title3 .m-title3__en {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .m-title3 .m-title3__en {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.m-title3 .m-title3__ja {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4545454545;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .m-title3 .m-title3__ja {
    font-size: clamp(1.375rem, 5.87vw, 2.75rem);
  }
}

.wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper {
  margin-right: 4.375%;
  margin-left: 4.375%;
}

@media screen and (max-width: 1000px) {
}

/*-- javascriptフォルダの中の_index.scss --*/

.js-step-slider .dots-class button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.js-step-slider .dots-class {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.js-step-slider .dots-class li {
  width: clamp(0.625rem, 2.67vw, 1.25rem);
  height: clamp(0.625rem, 2.67vw, 1.25rem);
  background-color: #e3eff1;
  border-radius: 50%;
  margin-right: clamp(0.813rem, 3.47vw, 1.625rem);
  cursor: pointer;
}

.js-step-slider .dots-class li.slick-active {
  background-color: #4cb2e4;
}

.js-step-slider .dots-class li:last-child {
  margin-right: 0;
}

.js-step-slider .dots-class li {
  width: 10px;
  height: 10px;
  background-color: #e3eff1;
  border-radius: 50%;
  margin-right: 13px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .js-step-slider .slick-list {
    overflow: visible;
  }

  .js-step-slider .dots-class button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
  }

  .js-step-slider .dots-class {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.125rem, 9.07vw, 4.25rem);
  }

  .js-step-slider .dots-class li {
    width: clamp(0.625rem, 2.67vw, 1.25rem);
    height: clamp(0.625rem, 2.67vw, 1.25rem);
    background-color: #e3eff1;
    border-radius: 50%;
    margin-right: clamp(0.813rem, 3.47vw, 1.625rem);
    cursor: pointer;
  }

  .js-step-slider .dots-class li.slick-active {
    background-color: #4cb2e4;
  }

  .js-step-slider .dots-class li:last-child {
    margin-right: 0;
  }
}

.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*-- layoutフォルダの中の_index.scss --*/
.l-footer {
  background-color: #f7f9fb;
}

@media screen and (max-width: 768px) {
  .l-footer {
    /* margin-bottom: clamp(4.688rem, 20vw, 9.375rem); */
  }
}

.l-footer .l-footer__container {
  padding-bottom: 140px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer__container {
    padding-bottom: clamp(8.75rem, 37.33vw, 17.5rem);
  }
}

.l-footer .l-footer__logo {
  width: min(100%, 132px);
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer__logo {
    width: 39%;
  }
}

.l-footer .l-footer-links {
  margin-top: 33px;
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer-links {
    margin-top: clamp(2.188rem, 9.33vw, 4.375rem);
  }
}

.l-footer .l-footer-links .link {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer-links .link {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
    margin-top: 0.2em;
  }
}

.l-footer .l-footer-links .link::first-child {
  margin-top: 0;
}

.l-footer .small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 3.2em;
}

@media screen and (max-width: 768px) {
  .l-footer .small {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

header.l-header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 101;
}

header.l-header .l-header__logo {
  margin-left: 5px;
}

.l-header .l-header__container {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-header .l-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    max-width: 1100px;
  }
}

.tab .l-header .l-header__container,
.sp .l-header .l-header__container {
  padding-left: 2%;
  padding-right: 2.5%;
  padding-top: clamp(0.25rem, 0.115rem + 10.18vw, 0.5rem);
  padding-bottom: clamp(0.25rem, 0.115rem + 10.18vw, 0.5rem);
}

@media screen and (max-width: 1000px) {
  .l-header .l-header__container {
    width: 98%;
    margin: 0 auto;
    letter-spacing: 0.5px;
  }
}

@media screen and (max-width: 768px) {
  .l-header .l-header__container {
    padding-top: 8px;
    padding-bottom: 8px;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .l-header .l-header__logo {
    width: min(100%, 76px);
    margin-right: auto;
  }
}

.tab .l-header .l-header__logo {
  margin-right: auto;
  justify-content: flex-end;
}

.l-header .l-header_innerlink {
  display: flex;
  justify-content: space-evenly;
  max-width: 750px;
  width: 100%;
  font-size: 14px;
  text-align: center;
}

.l-header .l-header_innerlink li {
  margin-left: 20px;
}

.l-header .l-header_innerlink li:first-child {
  color: #4cb2e4;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 700;
}

body.tab .l-header .l-header_innerlink,
body.sp .l-header .l-header_innerlink {
  display: none;
}

.l-header .l-header-consultation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 16px;
}

.l-header .l-header-consultation .text {
  display: block;
  font-size: 15px;
  font-weight: 600;
  padding: 0.45em 1.4em;
  border-radius: 20px;
  color: #fff;
  background-color: #ff3162;
  box-shadow: 0px 0px 8px 0px #4f4f4f52;
}

.header__btn {
  width: 160px;
  transform: translate(0, 3px);
}

@media screen and (max-width: 1000px) {
  .l-header .l-header-consultation {
    padding: 0.45em 0.5em;
    white-space: nowrap;
    margin-right: 7px;
    margin-left: 10px;
  }

  .l-header .l-header-consultation .text {
    font-size: 13px;
  }
}

body.pc .l-header .l-header-hamburger-btn {
  display: none;
}

.hamburger-m-wrap {
  position: relative;
  height: 100vh;
}

.l-header-hamburger-menu {
  position: fixed;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 71px;
  transition: 0.4s;
  pointer-events: none;
}

.ham_active .l-header-hamburger-menu {
  opacity: 1;
  transition: 0.4s;
  background-color: #fff;
  pointer-events: auto;
  transform: translate(0, -3px);
}

ul.l-header_innerlink-h-open {
  margin: auto;
}

ul.l-header_innerlink-h-open li {
}

ul.l-header_innerlink-h-open li {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
  padding: 7px 20px;
  color: #4cb2e4;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul.l-header_innerlink-h-open li span {
  display: inline-block;
}

ul.l-header_innerlink-h-open li span.icon {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #4cb2e4;
  border-radius: 50%;
}

ul.l-header_innerlink-h-open li span.icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 5px;
  background: white;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.l-header-hamburger-btn {
  position: relative;
  width: 24px;
  height: 16px;
  display: block;
  transition: 0.4s;
}

.l-header-hamburger-btn span:nth-child(1) {
  top: 0px;
}

.l-header-hamburger-btn span:nth-child(2) {
  top: 8px;
}

.l-header-hamburger-btn span:nth-child(3) {
  top: 16px;
}

.l-header-hamburger-btn span:hover {
  color: #fff;
}

.l-header-hamburger-btn span {
  width: 24px;
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0px;
  height: 3px;
  border-radius: 2px;
  background: #424242;
}

.ham_active .l-header-hamburger-btn {
  z-index: 100;
  transition: 0.4s;
}

.ham_active .l-header-hamburger-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-135deg);
}

.ham_active .l-header-hamburger-btn span:nth-child(2) {
  width: 0px;
}

.ham_active .l-header-hamburger-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(135deg);
}

.l-main {
  overflow: hidden;
}

.l-main .kv .kv-main .kv-main__inner {
  max-width: 1280px;
  margin-inline: auto;
}

.l-main .kv .kv-main .kv-main-box {
  top: 102px;
  left: 60px;
  position: absolute;
}

@media screen and (max-width: 1280px) {
  .l-main .kv .kv-main .kv-main-box {
    top: 16%;
    left: calc(50% - 34.375vw);
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-box {
    top: 5%;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
  }
}

.l-main .kv .kv-main .kv-main-box .kv-main-box__head {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4782608696;
  letter-spacing: 0em;
  color: #4cb2e4;
}

@media screen and (max-width: 1280px) {
  .l-main .kv .kv-main .kv-main-box .kv-main-box__head {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-box .kv-main-box__head {
    font-size: clamp(1rem, 4.27vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.l-main .kv .kv-main .kv-main-box .kv-main-box__head::before,
.l-main .kv .kv-main .kv-main-box .kv-main-box__head::after {
  content: "";
  background-color: #333333;
  height: 1px;
  width: 1.4em;
}

.l-main .kv .kv-main .kv-main-box .kv-main-box__head::before {
  margin-right: 5px;
  transform: rotate(55deg);
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-box .kv-main-box__head::before {
    margin-right: 0;
  }
}

.l-main .kv .kv-main .kv-main-box .kv-main-box__head::after {
  margin-left: 5px;
  transform: rotate(-55deg);
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-box .kv-main-box__head::after {
    margin-left: 0;
  }
}

.l-main .kv .kv-main .kv-main-box .kv-main-box__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0em;
  margin-top: 0.7em;
}

@media screen and (max-width: 1280px) {
  .l-main .kv .kv-main .kv-main-box .kv-main-box__title {
    font-size: 3.125vw;
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-box .kv-main-box__title {
    font-size: clamp(1.75rem, 7.47vw, 3.5rem);
    font-weight: 700;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    margin-top: 0.3em;
  }
}

.l-main .kv .kv-main .kv-main-box .kv-main-box__title .color-blue {
  color: #4cb2e4;
}

.l-main .kv .kv-main .kv-main-bottom {
  display: inline-block;
  text-align: center;
  padding: 15px 25px 14px 27px;
  top: 338px;
  left: 55px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.58);
  border-radius: 6px;
}

@media screen and (max-width: 1280px) {
  .l-main .kv .kv-main .kv-main-bottom {
    width: min(100%, 31.484vw);
    top: 53%;
    left: calc(50% - 34.765vw);
    padding: 1.171vw 1.9531vw 1.0937vw 2.1093vw;
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-bottom {
    width: 92%;
    text-align: center;
    top: 58%;
    left: 50%;
    transform: translateX(-50%);
    padding: clamp(0.625rem, 2.67vw, 1.25rem);
  }
}

.l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}

@media screen and (max-width: 1280px) {
  .l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead {
    font-size: 1.5625vw;
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead {
    font-size: clamp(1rem, 4.27vw, 2rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0em;
  }
}

.l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead .color-pink {
  color: #ff4d4d;
}

.l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead .big {
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 7px;
}

@media screen and (max-width: 1280px) {
  .l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead .big {
    width: min(100%, 27.421vw);
    margin-top: 1.0937vw;
    margin-bottom: 0.5468vw;
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead .big {
    width: 95%;
    margin-top: clamp(0.625rem, 2.67vw, 1.25rem);
    margin-bottom: clamp(0.438rem, 1.87vw, 0.875rem);
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .kv-main-bottom .kv-main-bottom__lead .big img {
    width: 100%;
  }
}

.left {
  opacity: 0;
  transition: all 0.5s ease;
  width: 351px;
}

.left.show {
  opacity: 1;
  transform: none;
}

.cv_vixed_btn {
}

.right {
  opacity: 0;
  transition: all 0.1s ease;
  z-index: 1000;
}

.right.show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 768px) {
  .right.show span {
    color: #414141;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 0 20px;
  }
}

.line-fixed-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0px;
  right: 10px;
  width: min(100%, 280px);
  padding: 10px;
  color: #fff;
  border-radius: 48px;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .line-fixed-button {
    width: min(92%, 345px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 48px;
  }
}

.line-fixed .icon {
  display: block;
  margin-right: 10px;
}

.line-fixed .text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0em;
  margin-left: 0.7em;
}

@media screen and (max-width: 768px) {
  .line-fixed .text {
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0em;
    margin-left: 0;
  }
}

.l-main .kv .kv-main .qrcode-fixed {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  right: 0px;
  color: #fff;
  border-radius: 4px;
  z-index: 99;
}

.l-main .kv .kv-main .qrcode-fixed .icon {
  display: block;
  margin-right: 10px;
}

.l-main .kv .kv-main .balloon {
  position: fixed;
  bottom: 73px;
  right: 35px;
  padding: 3px 10px;
  background-color: #fff;
  font-weight: 500;
  color: #ff3162;
  border: #ff3162 2px solid;
  border-radius: 20px;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-main .balloon {
    white-space: nowrap;
    bottom: 75px;
    padding: 3px 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.l-main .kv .kv-main .balloon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 33px;
  border-right: 10px solid transparent;
  border-top: 10px solid #ff3162;
  border-left: 10px solid transparent;
  z-index: 101;
}

.l-main .kv .kv-main .balloon::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 30px;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  z-index: 102;
}

/* ----------- キャンペーン用 ----------- */
.kv-campaign-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1000px;
  flex-wrap: wrap;
  width: 135%;
  transform: translate(-19%, 0);
}

@media screen and (max-width: 768px) {
  .kv-campaign-wrap {
    transform: translate(-22.5%, 0);
  }
}

.campaign-image {
  text-align: center;
  width: 80%;
  max-width: 100%;
  margin: 4px;
  padding: 0 5px;
}

.box {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 16px 0px;
  gap: 16px;
  font-size: 12px;
  width: 92%;
  flex: none;
  order: 1;
  flex-grow: 0;
  letter-spacing: 0px;
  margin: 0 auto;
  /* padding-left: 8%; */
}

.tab .l-main .kv-campaign .box,
.sp .l-main .kv-campaign .box {
  padding-left: 0%;
}

.box-right {
  display: inline-block;
  width: 80%;
  text-align: left;
}

.kv-campaign-content__attention {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  padding-left: 2em;
  position: relative;
  color: #4f4f4f;
}

@media screen and (max-width: 768px) {
  .kv-campaign-content__attention {
    font-size: clamp(0.5rem, 0.046rem + 2.77vw, 1rem);
  }
}

.kv-campaign-content__attention::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.kv-campaign-content__attention:first-child::before {
  content: "※1";
}

.kv-campaign-content__attention:nth-child(2)::before {
  content: "※2";
}

.kv-campaign-content__attention:nth-child(3)::before {
  content: "※3";
}

.coupon__wrap {
  width: 390px;
  position: relative;
}

.coupon__line__btn {
  position: absolute;
  bottom: 35px;
  width: 84%;
  left: 50%;
  transform: translate(-50%, 0);
}

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

  .coupon__line__btn {
    position: absolute;
    bottom: 6%;
    width: 84%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.box-left {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 20%;
  height: 80px;
  background: #e4f0f2;
  border-radius: 8px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  font-weight: bold;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .box {
    display: block;
    padding: 16px 16px;
    width: 100%;
    height: auto;
    border-top: 1px dashed #cccccc;
    /* text-align: center; */
  }

  .box-right {
    width: 100%;
  }

  .box-left {
    font-size: 18px;
    color: #4cb2e4;
    display: block;
    padding: 10px;
    width: 100%;
    height: auto;
    background: #f7f9fb;
    border-radius: 8px;
    font-weight: bold;
    padding: 10px;
  }
}

.l-main .kv .kv-campaign {
  padding-top: 2px;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-campaign {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: clamp(0.5rem, 1.67vw, 2rem);
  }

  .campaign-image {
    width: 100%;
    max-width: inherit;
  }

  .campaign-image img {
    width: 100%;
  }
}

/* ------------------------------------ */
.l-main .kv .kv-other {
  padding-top: 55px;
  padding-bottom: 55px;
  background-color: #f7f9fb;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-other {
    padding-top: clamp(2.5rem, 10.67vw, 5rem);
    padding-bottom: clamp(2.5rem, 10.67vw, 5rem);
  }
}

.l-main .kv .kv-other .kv-other-list {
  display: flex;
  align-items: center;
  padding-top: 26px;
  padding-left: 52px;
  padding-bottom: 25px;
  border-radius: 15px;
  background-color: #fff;
}

@media screen and (max-width: 1000px) {
  .l-main .kv .kv-other .kv-other-list {
    justify-content: space-between;
    padding-left: 1%;
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-other .kv-other-list {
    display: block;
    padding-top: clamp(1.625rem, -0.125rem + 7.47vw, 3.375rem);
    padding-bottom: clamp(1.563rem, 6.67vw, 3.125rem);
    padding-left: clamp(0.938rem, 4vw, 1.875rem);
  }
}

.l-main .kv .kv-other .item {
  width: 32%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-other .item {
    width: 100%;
    margin-top: clamp(0.625rem, 2.67vw, 1.25rem);
  }

  .l-main .kv .kv-other .item:first-child {
    margin-top: 0;
  }
}

.l-main .kv .kv-other .item .item__icon {
  flex-shrink: 0;
  width: min(100%, 80px);
  margin-right: 16px;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-other .item .item__icon {
    width: min(100%, clamp(5rem, 21.33vw, 10rem));
    margin-right: clamp(0.938rem, 4vw, 1.875rem);
  }
}

.l-main .kv .kv-other .item .item-content .item-content__head {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  color: #ff4d4d;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-other .item .item-content .item-content__head {
    font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  }
}

.l-main .kv .kv-other .item .item-content .item-content__detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  margin-top: 0.2em;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-other .item .item-content .item-content__detail {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-other__attention {
    font-size: clamp(0.5rem, 0.046rem + 2.77vw, 1rem);
    margin-top: 3em;
  }
}

.l-main .kv .kv-other__attention {
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  position: relative;
  color: #4f4f4f;
}

.l-main .kv .kv-about {
  padding-top: 72px;
  padding-bottom: 56px;
  background-color: #f5fcff;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-about {
    padding-top: clamp(4.625rem, 19.73vw, 9.25rem);
    padding-bottom: clamp(3.5rem, 14.93vw, 7rem);
  }
}

.l-main .kv .kv-about .kv-about__inner {
  display: flex;
  padding: 60px 12px 24px;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  flex-direction: column;
  width: 90%;
}

@media screen and (max-width: 1000px) {
  .l-main .kv .kv-about .kv-about__inner {
    padding: 60px 3% 40px;
  }
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-about .kv-about__inner {
    flex-direction: column;
    padding: clamp(3.313rem, 14.13vw, 6.625rem) 3.5% clamp(1.875rem, 8vw, 3.75rem);
  }
}

.l-main .kv .kv-about .kv-about__head {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0em;
  text-align: center;
  width: min(100%, 258px);
  padding: 0.3em 0.1em;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-color: #4cb2e4;
  border-radius: 50px;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-about .kv-about__head {
    font-size: clamp(1.25rem, 5.33vw, 2.5rem);
    top: -4%;
    width: 74%;
  }
}

.l-main .kv .kv-about .kv-about-content {
  width: 100%;
  margin-right: 47px;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-about .kv-about-content {
    width: 100%;
    display: contents;
  }
}

.l-main .kv .kv-about .kv-about-content .kv-about-content__detail {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-about .kv-about-content .kv-about-content__detail {
    font-size: clamp(1rem, 4.27vw, 2rem);
    text-align: center;
  }
}

.l-main .kv .kv-about .kv-about-content .kv-about-content__detail .color {
  color: #ff4d4d;
  font-weight: 700;
}

.l-main .kv .kv-about .kv-about-content .kv-about-content__attention {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-left: 1em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-about .kv-about-content .kv-about-content__attention {
    order: 2;
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .kv .kv-about .kv-about-content .kv-about-content__attention::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-main .kv .kv-about .kv-about-content__mark {
  width: 90%;
  margin-bottom: 0.8em;
  margin: 15px auto;
}

@media screen and (max-width: 768px) {
  .l-main .kv .kv-about .kv-about-content__mark {
    width: 93%;
    margin-inline: auto;
    margin-top: clamp(1.313rem, 5.6vw, 2.625rem);
    margin-bottom: 1.4em;
  }
}

.l-main .feature {
  background-color: #fcf6be;
}

.l-main .feature .feature__container {
  padding-top: 55px;
  padding-bottom: 1px;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__container {
    padding-top: clamp(3.688rem, 0.765rem + 12.47vw, 6.75rem);
    padding-bottom: clamp(1.688rem, 0.765rem + 4.47vw, 4.75rem);
  }
}

.l-main .feature .feature__title {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__title {
    column-gap: clamp(0.25rem, 0.011rem + 1.02vw, 0.5rem);
  }
}

.l-main .feature .feature__title span {
  display: block;
}

.l-main .feature .feature__title .text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4230769231;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__title .text {
    font-size: clamp(1.375rem, 0.063rem + 5.6vw, 2.75rem);
  }
}

.l-main .feature .feature__title {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__title .star {
    width: clamp(1.563rem, 0.072rem + 6.36vw, 3.125rem);
  }
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__title .star img {
    width: 100%;
  }
}

.l-main .feature .feature__box {
  margin-top: 31px;
  position: relative;
  margin: 31px auto 0 auto;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__box {
    margin-top: clamp(1.563rem, 0.072rem + 6.36vw, 3.125rem);
    padding-bottom: clamp(0.625rem, 0.212rem + 1.83vw, 2.25rem);
  }
}

.l-main .feature .feature__box .feature-list .item {
  display: flex;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__box .feature-list .item {
    min-height: clamp(4.375rem, 0.2rem + 17.81vw, 8.75rem);
    margin-top: clamp(0.688rem, 0.031rem + 2.8vw, 1.375rem);
  }
}

.l-main .feature .feature__box .feature-list .item:first-child {
  margin-top: 0;
}

.l-main .feature .feature__box .feature-list .item .item__check {
  width: min(100%, 63px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4cb2e4;
  border-radius: 8px 0 0 8px;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__box .feature-list .item .item__check {
    width: min(100%, clamp(2.813rem, 0.129rem + 11.45vw, 5.625rem));
  }
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__box .feature-list .item .item__check img {
    width: 43%;
  }
}

.l-main .feature .feature__box .feature-list .item .item__detail {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  padding: 0.9em 1em;
  background-color: #fff;
  border-radius: 0 8px 8px 0;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__box .feature-list .item .item__detail {
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    padding: 0.6em 0.7em;
    border-radius: clamp(0.5rem, 0.023rem + 2.04vw, 1rem);
  }
}

.l-main .feature .feature__box .feature-list .item .item__detail .color {
  color: #ff4d4d;
}

.l-main .feature .feature__box .feature__attention {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature__box .feature__attention {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    margin-top: 1.7em;
  }
}

.l-main .feature .feature-consultation {
  margin-top: 34px;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation {
    margin-top: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  }
}

.l-main .feature .feature-consultation .feature-consult-case-wrapper {
  display: flex;
  margin-bottom: 7px;
  flex-wrap: wrap;
  justify-content: center;
}

.l-main .feature .feature-consult-case-wrapper .item_wrapper {
  width: 49%;
  max-width: 400px;
  min-width: 320px;
}

.l-main .feature .feature-consult-case-wrapper .item_wrapper:first-child {
  margin-right: 1%;
}

.l-main .feature .feature-consult-case-wrapper .item_wrapper:last-child {
  margin-left: 1%;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consult-case-wrapper .item_wrapper {
    width: 100%;
  }

  .l-main .feature .feature-consult-case-wrapper .item_wrapper:first-child {
    margin-bottom: 0.7rem;
    margin-right: 0;
  }

  .l-main .feature .feature-consult-case-wrapper .item_wrapper:last-child {
    margin-left: 0;
  }
}

.l-main .feature .feature-consult-case-wrapper .item_wrapper .item {
  box-shadow: 0px 4px 16px 0px #41414129;
  border-radius: 8px;
  padding-top: 18px;
  margin-top: 0px;
  max-width: initial;
  min-width: initial;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consult-case-wrapper .item_wrapper .item {
    padding-top: 7px;
  }
}

.l-main .feature .feature-consultation .acne {
  text-align: center;
}

.l-main .feature .feature-consultation .acne .acne-risk {
  font-size: 12px;
  position: relative;
  letter-spacing: 0.2px;
}

.l-main .feature .feature-consultation .acne .acne-risk::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 32px solid transparent;
  border-left: 32px solid transparent;
  border-top: 32px solid #4cb2e4;
  border-bottom: 0;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation .acne .acne-risk {
    text-align: left;
  }

  .l-main .feature .feature-consultation .acne .acne-risk::after {
    border-right-width: clamp(0.938rem, 0.194rem + 9.7vw, 2.113rem);
    border-left-width: clamp(1.538rem, 0.194rem + 11.7vw, 2.113rem);
    border-top-width: clamp(1.863rem, 0.094rem + 6.4vw, 2.925rem);
  }
}

.l-main .feature .feature-consultation .acne .acne-risk span {
  font-size: 10px;
  padding-bottom: 3rem;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation .acne .acne-risk span.sp-hidden {
    display: none;
  }
}

.l-main .feature .feature-consultation .acne .acne-risk span.sp-hidden {
  padding-bottom: 0;
}

.l-main .feature .feature-consultation .acne h3 {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation .acne h3 {
    line-height: 1.5;
  }
}

.l-main .feature .feature-consultation .acne h3 .acne-better {
  color: #4cb2e4;
  font-size: 32px;
  font-weight: 700;
}

.l-main .feature .feature-consultation .acne h3 .acne-better-portion {
  font-size: 80px;
  font-weight: 700;
  color: #ff4d4d;
  line-height: 1;
}

.l-main .acne .other-issue {
  margin: 0 auto;
  margin-bottom: 2rem;
}

.l-main .acne .other-issue a {
  display: inline-block;
  color: #4cb2e4;
  font-size: 16px;
  padding: 0 clamp(0.938rem, 0.194rem + 14.7vw, 6.113rem) 0 clamp(0.938rem, 0.194rem + 7.7vw, 3.113rem);
  font-weight: 700;
  border-radius: 20px;
  border: 2px solid #4cb2e4;
  background-color: #fff;
  margin-top: 1.2rem;
  line-height: 2.5;
  position: relative;
}

.l-main .acne .other-issue a::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 12%;
  transform: translate(-35%, -50%);
  width: 12px;
  height: 5px;
  background: #4cb2e4;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

@media screen and (max-width: 768px) {
  .l-main .acne .other-issue {
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  .l-main .acne .other-issue a {
    display: inline-block;
    color: #4cb2e4;
    font-size: 16px;
    padding: 0 clamp(0.938rem, 0.194rem + 14.7vw, 6.113rem) 0 clamp(0.938rem, 0.194rem + 7.7vw, 3.113rem);
    font-weight: 700;
    border-radius: 20px;
    border: 2px solid #4cb2e4;
    background-color: #fff;
    margin-top: 1.2rem;
    line-height: 2.5;
    position: relative;
  }

  .l-main .acne .other-issue a::after {
    content: "";
    position: absolute;
    top: 55%;
    right: 12%;
    transform: translate(-35%, -50%);
    width: 12px;
    height: 5px;
    background: #4cb2e4;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  }
}

.l-main .feature .feature-consultation .feature-consultation__subtitle {
  text-align: center;
}

.l-main .feature .feature-consultation .feature-consultation__subtitle .text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4230769231;
  letter-spacing: 0em;
  display: inline;
  background: linear-gradient(transparent 65%, rgba(246, 132, 125, 0.49) 65%);
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation .feature-consultation__subtitle .text {
    font-size: clamp(1.375rem, 0.063rem + 5.6vw, 2.75rem);
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation .feature-consultation__subtitle .text .small {
    font-size: clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
    margin-top: 0.5em;
  }
}

.l-main .feature .feature-consultation .feature-consultation__subtitle::before {
  content: none;
}

.l-main .feature .feature-consultation .feature-consultation__img {
  text-align: center;
  margin-top: 37px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation .feature-consultation__img {
    margin-top: clamp(1.063rem, 0.049rem + 4.33vw, 2.125rem);
    margin-inline: -1.5%;
    margin-bottom: clamp(1.063rem, 0.049rem + 4.33vw, 2.125rem);
  }
}

.l-main .feature .feature-consultation .feature-consultation__detail {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 1.8em;
  margin-bottom: 1.7rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .l-main .feature .feature-consultation .feature-consultation__detail {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    line-height: 1.4;
    text-align: left;
    margin-top: 2em;
    line-height: 1.25;
  }
}

.l-main .feature .feature-consultation .feature-consultation__detail .color {
  color: #ff4d4d;
  font-weight: 700;
}

.l-main section.innerlink {
  max-width: 1000px;
  margin: auto;
  width: 100%;
}

.l-main section.innerlink ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.l-main section.innerlink ul li {
  position: relative;
  padding: 0px 10px 10px;
  margin: 14px 0 20px;
  color: #4cb2e4;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 15px;
  text-align: center;
  width: 33.3%;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .l-main section.innerlink ul {
    flex-wrap: wrap;
    margin-bottom: clamp(0.6rem, 0.046rem + 4.07vw, 1.5rem);
  }

  .l-main section.innerlink ul li {
    width: 33.3%;
    font-size: clamp(0.6rem, 0.046rem + 4.07vw, 1.5rem);
    border: none;
    line-height: 1.5;
    padding-top: clamp(0.6rem, 0.046rem + 4.07vw, 1.5rem);
    padding-bottom: clamp(0.6rem, 0.046rem + 4.07vw, 1.5rem);
    margin: auto 0;
    padding-left: 4px;
    padding-right: 4px;
  }
}

.l-main section.innerlink ul li:first-child {
  border: none;
}

.l-main section.innerlink ul li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top: 6px solid #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main section.innerlink ul li::after {
    border-width: clamp(0.2rem, 0.16rem + 10.07vw, 0.6rem);
    border-top-width: clamp(0.3rem, 0.046rem + 9.07vw, 0.6rem);
  }
}

/* スマホ */
.sp .l-main section.innerlink ul li {
}

.l-main .problem {
  background-color: #f7f9fb;
}

.l-main .problem .problem__container {
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

@media screen and (max-width: 800px) {
  .l-main .problem .problem__container {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem__container {
    padding-top: clamp(3.5rem, 14.93vw, 7rem);
    padding-bottom: clamp(3.625rem, 15.47vw, 7.25rem);
  }
}

.l-main .problem .problem-list {
  max-width: 635px;
  margin-inline: auto;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-list {
    padding-right: 0;
    margin-top: clamp(2.5rem, 10.67vw, 5rem);
    max-width: none;
  }
}

.l-main .problem .problem-list .problem-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  width: 100%;
  padding: 0.9em 1.5em;
  background-color: #fff;
  border-radius: 0.9em;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-list .problem-list__item {
    font-size: clamp(1rem, 4.27vw, 2rem);
    padding: 0.9em 1em;
    margin-top: clamp(1.438rem, 6.13vw, 2.875rem);
  }
}

.l-main .problem .problem-list .problem-list__item:first-child {
  margin-top: 0;
}

.l-main .problem .problem-list .problem-list__item:nth-child(2n) {
  margin-left: auto;
}

.l-main .problem .problem-list .problem-list__item01 {
  width: 78%;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-list .problem-list__item01 {
    width: 78%;
  }
}

.l-main .problem .problem-list .problem-list__item02 {
  width: 93%;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-list .problem-list__item02 {
    width: 93%;
  }
}

.l-main .problem .problem-list .problem-list__item03 {
  width: 69%;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-list .problem-list__item03 {
    width: 69%;
  }
}

.l-main .problem .problem-list .problem-list__item04 {
  width: 93%;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-list .problem-list__item04 {
    width: 93%;
  }
}

.l-main .problem .problem-lead {
  display: block;
  align-items: center;
  justify-content: center;
  padding-top: 64px;
  margin-top: 24px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-lead {
    display: block;
    text-align: center;
    padding-top: clamp(4.313rem, 18.4vw, 8.625rem);
    margin-top: clamp(1.5rem, 6.4vw, 3rem);
  }
}

.l-main .problem .problem-lead::before {
  content: "";
  display: inline-block;
  background-image: url("../img/problem/arrow01.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 68px;
  padding-top: 39px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-lead::before {
    width: clamp(4.25rem, 18.13vw, 8.5rem);
    padding-top: clamp(2.438rem, 10.4vw, 4.875rem);
  }
}

.l-main .problem .problem-lead .problem-lead__text01 {
  display: block;
}

.l-main .problem .problem-lead .problem-lead__text01 .big {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-lead .problem-lead__text01 .big {
    font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  }
}

.l-main .problem .problem-lead .problem-lead__text01 .small {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-lead .problem-lead__text01 .small {
    font-size: clamp(1rem, 4.27vw, 2rem);
    margin-top: 0.4em;
  }
}

.l-main .problem .problem-lead .problem-lead__text02 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0em;
  text-align: center;
  margin-left: 0.5em;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-lead .problem-lead__text02 {
    font-size: clamp(2rem, 8.53vw, 4rem);
    margin-top: 0.4em;
    margin-left: 0;
  }
}

.l-main .problem .problem-lead .problem-lead__text02 .color {
  color: #222222;
}

.l-main .problem .problem-effect {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  padding: 45px 125px 40px 100px;
  margin-top: 25px;
  background-color: #fff;
  border-radius: 15px;
}

.l-main .problem .problem-effect {
  padding: 30px 20px;
}

@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-effect {
    display: block;
    padding: clamp(2.063rem, 8.8vw, 4.125rem) clamp(0.875rem, 3.73vw, 1.75rem) clamp(2rem, 8.53vw, 4rem);
    margin-top: clamp(2rem, 8.53vw, 4rem);
    border-radius: clamp(0.938rem, 4vw, 1.875rem);
  }
}

.l-main .problem .problem-effect .num {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-effect .num {
    width: 100%;
    text-align: center;
  }
}

.l-main .problem .problem-effect .num .num__head {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-effect .num .num__head {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

.l-main .problem .problem-effect .num .num__head .color {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-effect .num .num__head .color {
    font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  }
}

.l-main .problem .problem-effect .num .num__big {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin-top: 0.2em;
  color: #ff4d4d;
  background: linear-gradient(transparent 80%, #fff064 80%);
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-effect .num .num__big {
    display: inline-block;
    font-size: clamp(5rem, 21.33vw, 10rem);
    margin-top: 0.25em;
  }
}

.l-main .problem .problem-effect .attention {
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-effect .attention {
    width: 100%;
    margin-top: clamp(1.5rem, 6.4vw, 3rem);
  }
}

.l-main .problem .problem-effect .attention .attention__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .problem .problem-effect .attention .attention__text {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .problem .problem-effect .attention .attention__text .link {
  color: #818181;
  border-bottom: 1px solid #818181;
}

.l-main .about {
  background-color: #f5fcff;
}

.l-main .about .about__container {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media screen and (max-width: 768px) {
  .l-main .about .about__container {
    padding-top: clamp(3rem, 12.8vw, 6rem);
    padding-bottom: clamp(3.5rem, 14.93vw, 7rem);
  }
}

.l-main .about .about__head {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5454545455;
  letter-spacing: 0em;
  text-align: center;
  color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main .about .about__head {
    font-size: clamp(1.375rem, 5.87vw, 2.75rem);
  }
}

.l-main .about .about-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  max-width: 689px;
  margin-top: 2.3em;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-lead {
    font-size: clamp(1rem, 4.27vw, 2rem);
    margin-top: 1.1em;
    max-width: none;
  }
}

.l-main .about .about-lead .about-lead__text {
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-lead .about-lead__text {
    margin-top: 0;
  }
}

.l-main .about .about-lead .about-lead__text:first-child {
  margin-top: 0;
}

.l-main .about .about-lead .about-lead-list {
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-lead .about-lead-list {
    display: block;
    margin-top: 0;
  }
}

.l-main .about .about-lead .about-lead-list .about-lead-list__item {
  font-weight: 700;
  color: #ff4d4d;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-lead .about-lead-list .about-lead-list__item {
    margin-left: 0;
  }
}

.l-main .about .about-lead .about-lead-list .about-lead-list__item:first-child {
  margin-left: 0;
}

.l-main .about .about-area {
  display: block;
  justify-content: space-between;
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-area {
    display: block;
    margin-top: clamp(2.375rem, 10.13vw, 4.75rem);
    margin-inline: 4.375%;
  }
}

.l-main .about .about-area .about-area__item {
  width: 100%;
  padding: 24px 20px 25px;
  background-color: #fff;
  border-radius: 15px;
  margin: 20px 0;
}

@media screen and (max-width: 1000px) {
  .l-main .about .about-area .about-area__item {
    padding: 24px 10px 25px;
  }
}

@media screen and (max-width: 768px) {
  .l-main .about .about-area .about-area__item {
    width: 100%;
    padding: clamp(1.5rem, 6.4vw, 3rem) clamp(1.125rem, 4.8vw, 2.25rem) clamp(1.563rem, 6.67vw, 3.125rem);
    margin-top: clamp(1.25rem, 5.33vw, 2.5rem);
    border-radius: clamp(0.938rem, 4vw, 1.875rem);
  }
}

.l-main .about .about-area .about-area__item:first-child {
  margin-top: 0;
}

.l-main .about .about-area .about-area__item .about-area__icon {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-area .about-area__item .about-area__icon {
    width: min(100%, clamp(7.188rem, 30.67vw, 14.375rem));
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .l-main .about .about-area .about-area__item .about-area__icon img {
    width: 100%;
  }
}

.l-main .about .about-area .about-area__item .about-area__subhead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 0.7em;
  color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-area .about-area__item .about-area__subhead {
    font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  }
}

.l-main .about .about-area .about-area__item .about-area__detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: 0em;
  padding-left: 1em;
  margin-top: 0.7em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-area .about-area__item .about-area__detail {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.l-main .about .about-area .about-area__item .about-area__detail::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -4px;
}

.l-main .about .about-attention {
  margin-top: 41px;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-attention {
    margin-top: clamp(1.375rem, 5.87vw, 2.75rem);
  }
}

.l-main .about .about-attention .about-attention__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-left: 1.2em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .about .about-attention .about-attention__text {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .about .about-attention .about-attention__text::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
}

.l-main .effect {
  background-color: #f7f9fb;
}

.l-main .effect .effect__container {
  padding-top: 58px;
  padding-bottom: 55px;
  max-width: 725px;
  margin-left: auto;
  margin-right: auto;
}

.l-main .effect .effect__container {
  margin-right: 4.375%;
  margin-left: 4.375%;
}

@media screen and (max-width: 725px) {
}

@media screen and (max-width: 768px) {
  .l-main .effect .effect__container {
    padding-top: clamp(3.625rem, 15.47vw, 7.25rem);
    padding-bottom: clamp(3.563rem, 15.2vw, 7.125rem);
    max-width: none;
    margin-inline: 4.375%;
  }
}

.l-main .effect .effect-list {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .l-main .effect .effect-list {
    margin-top: clamp(2.938rem, 12.53vw, 5.875rem);
  }
}

.l-main .effect .effect-list .item {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .l-main .effect .effect-list .item {
    margin-top: clamp(1.5rem, 6.4vw, 3rem);
  }
}

.l-main .effect .effect-list .item:first-child {
  margin-top: 0;
}

.l-main .effect .effect-list .item .item-num {
  width: min(100%, 71px);
  padding-top: 12px;
  padding-bottom: 8px;
  margin-right: 24px;
  flex-shrink: 0;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #fff;
  background-color: #ff4d4d;
  border-radius: 14px;
}

@media screen and (max-width: 768px) {
  .l-main .effect .effect-list .item .item-num {
    width: min(100%, clamp(4.438rem, 18.93vw, 8.875rem));
    padding-top: clamp(0.75rem, 3.2vw, 1.5rem);
    padding-bottom: clamp(0.5rem, 2.13vw, 1rem);
    margin-right: clamp(0.938rem, 4vw, 1.875rem);
    border-radius: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.l-main .effect .effect-list .item .item-num .item-num__head {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .effect .effect-list .item .item-num .item-num__head {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .effect .effect-list .item .item-num .item-num__big {
  display: block;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .effect .effect-list .item .item-num .item-num__big {
    font-size: clamp(2.188rem, 9.33vw, 4.375rem);
  }
}

.l-main .effect .effect-list .item .item__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .effect .effect-list .item .item__subtitle {
    font-size: clamp(1rem, 4.27vw, 2rem);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
}

.l-main .intro {
  background-color: #4cb2e4;
}

.l-main .intro .intro__container {
  padding-top: 55px;
  padding-bottom: 55px;
  max-width: initial;
}

@media screen and (max-width: 768px) {
  .l-main .intro .intro__container {
    padding-top: clamp(3.438rem, 0.157rem + 13.99vw, 6.875rem);
    padding-bottom: clamp(3.438rem, 0.157rem + 13.99vw, 6.875rem);
  }
}

.l-main .intro .intro__title {
  padding-bottom: 0.4em;
}

.l-main .intro .intro-box {
  padding-bottom: 0;
  margin-top: 35px;
  border-radius: 15px;
  width: 100%;
  margin-bottom: 60px;
}

.l-main .intro .case_txt_containner {
  max-width: 1000px;
  margin: 0 auto;
  width: 92%;
  color: #fff;
  letter-spacing: 0.2px;
}

.l-main .intro .case_txt_containner h4 {
  margin-bottom: 9px;
  font-weight: 350;
}

.l-main .intro .case_txt_containner p {
  position: relative;
  padding-left: 1em;
  font-size: 10px;
  line-height: 1.6;
}

.l-main .intro .case_txt_containner a {
  text-decoration: underline;
}

.l-main .intro .case_txt_containner p::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .l-main .intro .case_txt_containner h4 {
    font-size: clamp(0.85rem, 3.2vw, 1.75rem);
    line-height: 1.5;
  }

  .l-main .intro .case_txt_containner p {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
    line-height: 1.6;
  }
}

.l-main .intro .slick-slide {
  /* padding: 20px 40px; */
  box-sizing: border-box;
  margin: 0 5px;
  height: auto !important;
}

/* featuresでも流用 */
.item_wrapper .item {
  width: 100%;
  padding: 29px 16px 2px;
  box-sizing: border-box;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 60px;
  position: relative;
  border-radius: 8px;
  min-width: 320px;
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .l-main .intro .intro-box .item_wrapper .item {
    margin-top: 0;
    padding-top: 7px;
    height: 100%;
  }
}

.l-main .intro .intro-box .slick-dots {
  left: 0;
  right: 0;
}

.l-main .intro .intro-box .slick-dots li button:before {
  font-size: 12px;
  /* ドットのサイズを変更（必要に応じて調整） */
  color: white;
  /* ドットの色を白に設定 */
  opacity: 0.8;
}

.l-main .intro .intro-box .slick-dots li.slick-active button:before {
  color: #414141;
}

.l-main .intro .intro-box {
  width: 100%;
}

.intro__container.wrapper {
  margin: 0;
}

@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 768px) {
  .l-main .intro .intro-box {
    padding: clamp(1.5rem, 0.069rem + 6.11vw, 3rem) 3%;
    margin-top: clamp(0.625rem, 0.12rem + 10.69vw, 2.25rem);
    border-radius: clamp(0.938rem, 0.043rem + 3.82vw, 1.875rem);
  }
}

.l-main .intro .intro-box .item .item-head {
  display: flex;
  align-items: center;
}

.l-main .intro .intro-box .item .item-head .item-head__icon {
  display: block;
  width: min(100%, 68px);
  margin-right: 24px;
}

@media screen and (max-width: 768px) {
  .l-main .intro .intro-box .item .item-head .item-head__icon {
    width: min(100%, clamp(4.25rem, 0.195rem + 17.3vw, 8.5rem));
    margin-right: clamp(0.875rem, 0.04rem + 3.56vw, 1.75rem);
  }
}

.l-main .intro .intro-box .item .item-head .item-head__icon img {
  width: 100%;
}

.item .item-head .item-head__text {
  flex: 1;
  text-align: center;
  line-height: 1.4;
}

.item .item-head .casenum_pc {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -39px;
  background-color: #fff;
  padding: 8px 29px 2px 29px;
  border-radius: 40px 40px 0 0;
  color: #4cb2e4;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.item .item-head .casenum_pc .case_txt {
  font-size: 10px;
}

.item .item-head .casenum_pc.orange {
  color: #ff4d4d;
}

.item .item-head .item-head__text .big {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  color: #414141;
}

.item .item-head .item-head__text .item_case_disc {
  font-size: 14px;
  height: 40px;
  display: inline-block;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.item .item-head .item-head__text .item_case.orange {
  color: #ff4d4d;
  border: 1px solid #ff4d4d;
}

@media screen and (max-width: 390px) {
  .item .item-head .item-head__text .item_case_disc {
    letter-spacing: 0px;
    font-size: 13px;
  }
}

.intro .slick-track {
  display: flex;
}

.intro .slick-slide {
  height: auto !important;
}

@media screen and (max-width: 768px) {
  .item .item-head .item-head__text .big {
    font-size: clamp(0.7rem, 0.046rem + 3.97vw, 1.5rem);
    margin-bottom: 3px;
  }
}

.item .item-head .item-head__text .small {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .item .item-head .item-head__text .small {
    font-size: clamp(0.875rem, 0.04rem + 3.56vw, 1.75rem);
    margin-top: 0.2em;
  }
}

.item .item__img {
  display: flex;
  margin-top: 18px;
  margin-bottom: 3px;
}

@media screen and (max-width: 768px) {
  .item .item__img {
    margin-top: clamp(0.3rem, 0.072rem + 6.36vw, 0.8rem);
  }
}

/* featuresでも流用 */
.item .item__img .item_img_container {
  width: 50%;
  position: relative;
}

/* featuresでも流用 */
.item .item__img .item_img_container p {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background-color: #4cb2e4;
  padding: 0 15px 2px;
  border-radius: 10px;
  line-height: 1.4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -13px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* featuresでも流用 */
.item .item__img .item_img_container.img_after p {
  background-color: #ff4d4d;
}

/* featuresでも流用 */
.item .item__img img {
  width: 100%;
}

.item .item__img {
}

/* featuresでも流用 */
.item .item-detail {
  padding: 4px 0px;
  border-radius: 4px;
  font-size: 12px;
  width: max-content;
  margin: auto;
  letter-spacing: 0.2px;
}

/* featuresでも流用 */
@media screen and (max-width: 768px) {
  .item .item-detail {
    padding: clamp(0.125rem, 0.029rem + 2.54vw, 0.25rem) clamp(0.5rem, 0.023rem + 2.04vw, 1rem)
      clamp(0.063rem, 0.149rem + 0.53vw, 1.125rem);
    margin-top: clamp(0.13rem, 0.037rem + 3.31vw, 0.25rem);
  }
}

/* featuresでも流用 */
.item .item-detail .item-detail__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}

/* featuresでも流用 */
@media screen and (max-width: 768px) {
  .item .item-detail .item-detail__text {
    font-size: clamp(0.875rem, 0.04rem + 3.56vw, 1.75rem);
  }
}

/* featuresでも流用 */
.item .item-detail .item-detail_price {
  color: #ff4d4d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* featuresでも流用 */
.item .item-detail .item-detail-tax {
  font-size: 14px;
}

/* featuresでも流用 */
.item .item-detail table {
  margin-top: 0;
}

/* featuresでも流用 */
.item .item-detail tr {
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .item .item-detail tr {
    letter-spacing: 0px;
  }
}

/* featuresでも流用 */
.item .item-detail th {
  padding: 0;
  background-color: inherit;
  border: none;
  font-weight: 400;
  vertical-align: middle;
}

/* featuresでも流用 */
.item .item-detail td {
  padding: 0;
  border: none;
  padding-left: 0.5em;
}

.l-main .plan .plan__container {
  padding-top: 58px;
  padding-bottom: 55px;
}

.plan__container.wrapper .consultation-button {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .item_case {
    display: inline-block;
    font-size: clamp(0.5rem, 0.046rem + 3.37vw, 1rem);
    color: #4cb2e4;
    border: 1px solid #4cb2e4;
    border-radius: 10px;
    padding: 2px 8px;
    line-height: 1.1;
    margin-right: 9px;
  }

  .l-main .plan__container.wrapper {
    width: 90%;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan__container {
    padding-top: clamp(3.625rem, 15.47vw, 7.25rem);
    padding-bottom: clamp(3.563rem, 15.2vw, 7.125rem);
  }
}

.l-main .plan .plan-campaign {
  padding: 40px 0 0 0;
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-campaign {
    width: 95%;
  }
}

.l-main .plan .plan-box {
  margin-top: 44px;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box {
    margin-top: clamp(2.5rem, 0.115rem + 10.18vw, 5rem);
  }
}

.l-main .plan .plan-box .plan-box__head {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1818181818;
  letter-spacing: 0em;
  padding: 0.45em 1.6em;
  background-color: #4cb2e4;
  position: relative;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box .plan-box__head {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0em;
    padding: 0.7em 1.3em 0.6em;
  }
}

.l-main .plan .plan-box .plan-box__head::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  position: absolute;
  width: 3px;
  height: 1.3em;
  top: 50%;
  left: 0.7em;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box .plan-box__head::before {
    width: clamp(0.188rem, 0.009rem + 0.76vw, 0.375rem);
    height: 1.5em;
    left: 0.6em;
  }
}

.l-main .plan .plan-box table {
  table-layout: fixed;
  margin-top: 31px;
  margin: 20px 0 15px 0;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box table {
    margin-top: clamp(1.5rem, 0.069rem + 6.11vw, 3rem);
  }
}

.l-main .plan .plan-box table tbody {
  display: block;
}

.l-main .plan .plan-box table th,
.l-main .plan .plan-box table td {
  padding: 0;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d9d9d9;
}

.l-main .plan .plan-box table td {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box table td {
    display: table-cell;
  }
}

.l-main .plan .plan-box-table01--pc {
  display: none;
}

@media screen and (max-width: 768px) {
}

.l-main .plan .plan-box-table01--pc th {
  width: 190px;
  height: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  background: #f5f5f5;
}

@media screen and (max-width: 1000px) {
  .l-main .plan .plan-box-table01--pc th {
    font-size: 16px;
  }
}

.l-main .plan .plan-box-table01--pc th.theme-first {
  width: 250px;
}

@media screen and (max-width: 1000px) {
  .l-main .plan .plan-box-table01--pc th.theme-first {
    width: 220px;
  }
}

.l-main .plan .plan-box-table01--pc th.theme-blue {
  color: #fff;
  background-color: #4cb2e4;
}

.l-main .plan .plan-box-table01--pc th.theme-blueText {
  color: #4cb2e4;
}

.l-main .plan .plan-box-table01--pc th.theme-red {
  color: #fff;
  background-color: #ff4d4d;
  border-bottom: none;
  border-right: 2px solid #ff4d4d;
  border-left: 2px solid #ff4d4d;
}

.l-main .plan .plan-box-table01--pc td {
  height: 122px;
}

.l-main .plan .plan-box-table01--pc td.head {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
}

@media screen and (max-width: 1000px) {
  .l-main .plan .plan-box-table01--pc td.head {
    font-size: 18px;
  }
}

.l-main .plan .plan-box-table01--pc td.border-red {
  border: 2px solid #ff4d4d;
}

.l-main .plan .plan-box-table01--pc td .head-bg {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0em;
  background-color: #fcf6be;
  padding-inline: 2em;
}

@media screen and (max-width: 1000px) {
  .l-main .plan .plan-box-table01--pc td .head-bg {
    padding-inline: 1em;
  }
}

.l-main .plan .plan-box-table01--pc td .head-bg .bold {
  font-weight: 700;
}

.l-main .plan .plan-box-table01--pc td .head-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}

.l-main .plan .plan-box-table01--pc td .price-big {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2727272727;
  letter-spacing: 0em;
}

.l-main .plan .plan-box-table01--pc td .price-big.price-big--red {
  color: #ff4d4d;
}

.l-main .plan .plan-box-table01--pc td .price-small {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0em;
}

.l-main .plan .plan-box-sp {
  margin-top: 10px;
}

.l-main .plan .plan-box-sp .plan-box-sp-box {
  margin-top: 35px;
  margin: 5px;
}

.l-main .plan .plan-box-sp .plan-box-sp-box:first-child {
  margin-top: 0;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .subhead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  padding-left: 1.8em;
  position: relative;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .subhead::before {
  content: "";
  display: inline-block;
  background-color: #4cb2e4;
  position: absolute;
  width: 0.75em;
  height: 0.75em;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
  border-radius: 100%;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content {
  margin-top: 10px;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table {
  margin-top: clamp(0.375rem, 0.017rem + 1.53vw, 0.75rem);
  border-radius: clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) 0 0;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table:first-child {
  margin-top: 0;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue {
  border: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #4cb2e4;
  background-color: #4cb2e4;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue td {
  height: 120px;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue .border-01 {
  border-right: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
  border-bottom: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue .border-02 {
  border-top: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
  border-left: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-red {
  border: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #ff4d4d;
  background-color: #ff4d4d;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-red td {
  height: 120px;
  padding: 2%;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-red td .head-bg {
  padding-inline: 5em;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-gray {
  border: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
  background-color: #c0cfd2;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-gray td {
  height: 66px;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content th {
  width: clamp(21.813rem, 0.999rem + 88.8vw, 43.625rem);
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  border-radius: clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) 0 0;
  border: none;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-blue {
  color: #fff;
  background-color: #4cb2e4;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-blueText {
  font-size: 12px;
  font-weight: 700;
  line-height: 2.3333333333;
  letter-spacing: 0em;
  height: 32px;
  color: #4cb2e4;
  background-color: #f5f5f5;
  border-radius: 0;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-red {
  color: #fff;
  background-color: #ff4d4d;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-gray {
  background-color: #f5f5f5;
  border-bottom: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
  border-radius: 4px;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content td {
  border: none;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content td .head-bg {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0em;
  background-color: #fcf6be;
  padding-inline: 1em;
  padding-block: 0.2em;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content td .head-bg .bold {
  font-weight: 700;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content td .head-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content td .price-big {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content td .price-big.price-big--red {
  color: #ff4d4d;
}

.l-main .plan .plan-box-sp .plan-box-sp-box .content td .price-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2857142857;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-sp {
    margin-top: clamp(1.938rem, 0.089rem + 7.89vw, 3.875rem);
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box {
    /* margin-top: clamp(2.5rem, 0.115rem + 10.18vw, 5rem); */
    margin-top: 10px;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box:first-child {
    margin-top: 0;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .subhead {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    padding-left: 1.8em;
    position: relative;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .subhead::before {
    content: "";
    display: inline-block;
    background-color: #4cb2e4;
    position: absolute;
    width: 0.75em;
    height: 0.75em;
    top: 50%;
    left: 0.5em;
    transform: translateY(-50%);
    border-radius: 100%;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content {
    margin-top: clamp(1.438rem, 0.066rem + 5.85vw, 2.875rem);
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table {
    margin-top: clamp(0.375rem, 0.017rem + 1.53vw, 0.75rem);
    border-radius: clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) 0 0;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table:first-child {
    margin-top: 0;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue {
    border: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #4cb2e4;
    background-color: #4cb2e4;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue td {
    height: clamp(7rem, 0.321rem + 28.5vw, 14rem);
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue .border-01 {
    border-right: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
    border-bottom: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-blue .border-02 {
    border-top: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
    border-left: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-red {
    border: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #ff4d4d;
    background-color: #ff4d4d;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-red td {
    height: clamp(7rem, 0.321rem + 28.5vw, 14rem);
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-red td .head-bg {
    padding-inline: 5em;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-gray {
    border: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
    background-color: #c0cfd2;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content table.table-gray td {
    height: clamp(4.063rem, 0.186rem + 16.54vw, 8.125rem);
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content th {
    width: clamp(21.813rem, 0.999rem + 88.8vw, 43.625rem);
    height: clamp(2.5rem, 0.115rem + 10.18vw, 5rem);
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
    border-radius: clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) clamp(0.313rem, 0.014rem + 1.27vw, 0.625rem) 0 0;
    border: none;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-blue {
    color: #fff;
    background-color: #4cb2e4;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-blueText {
    font-size: clamp(0.75rem, 0.034rem + 3.05vw, 1.5rem);
    font-weight: 700;
    line-height: 2.3333333333;
    letter-spacing: 0em;
    height: clamp(1.875rem, 0.086rem + 7.63vw, 3.75rem);
    color: #4cb2e4;
    background-color: #f5f5f5;
    border-radius: 0;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-red {
    color: #fff;
    background-color: #ff4d4d;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content th.theme-gray {
    background-color: #f5f5f5;
    border-bottom: clamp(0.063rem, 0.003rem + 0.25vw, 0.125rem) solid #c0cfd2;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content td {
    border: none;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content td .head-bg {
    font-size: clamp(0.75rem, 0.034rem + 3.05vw, 1.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0em;
    background-color: #fcf6be;
    padding-inline: 1em;
    padding-block: 0.2em;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content td .head-bg .bold {
    font-weight: 700;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content td .head-small {
    font-size: clamp(0.75rem, 0.034rem + 3.05vw, 1.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content td .price-big {
    font-size: clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0em;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content td .price-big.price-big--red {
    color: #ff4d4d;
  }

  .l-main .plan .plan-box-sp .plan-box-sp-box .content td .price-small {
    font-size: clamp(0.875rem, 0.04rem + 3.56vw, 1.75rem);
    font-weight: 400;
    line-height: 1.2857142857;
    letter-spacing: 0em;
  }
}

.l-main .plan .plan-boxFlex {
  display: flex;
  flex-direction: column;

  justify-content: space-between;
  margin-top: 48px;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-boxFlex {
    flex-direction: column;
    row-gap: clamp(2.5rem, 0.115rem + 10.18vw, 5rem);
    margin-top: clamp(2.75rem, 0.126rem + 11.2vw, 5.5rem);
  }
}

.l-main .plan .plan-boxFlex .plan-box {
  width: 100%;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-boxFlex .plan-box {
    width: 100%;
  }
}

.l-main .plan .plan-box-table02 td {
  height: 79px;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-table02 td {
    height: clamp(4.938rem, 0.226rem + 20.1vw, 9.875rem);
  }
}

.l-main .plan .plan-box-table02 th {
  width: 210px;
  height: 39px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-table02 th {
    width: clamp(9.5rem, 0.435rem + 38.68vw, 19rem);
    height: clamp(2.438rem, 0.112rem + 9.92vw, 4.875rem);
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
}

.l-main .plan .plan-box-table02 th:first-child {
  width: 270px;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-table02 th:first-child {
    width: clamp(12.313rem, 0.504rem + 50.38vw, 24.688rem);
  }
}

.l-main .plan .plan-box-table02 .head {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-table02 .head {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  }
}

.l-main .plan .plan-box-table02 .head .small {
  display: block;
  font-size: 14px;
  margin-top: 0.3em;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-table02 .head .small {
    font-size: clamp(0.875rem, 0.04rem + 3.56vw, 1.75rem);
  }
}

.l-main .plan .plan-box-table02 .price {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-table02 .price {
    font-size: clamp(1.125rem, 0.052rem + 4.58vw, 2.25rem);
  }
}

.l-main .plan .plan-box-table02 .price .small {
  display: block;
  font-size: 14px;
  margin-top: 0.75em;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-box-table02 .price .small {
    font-size: clamp(0.875rem, 0.04rem + 3.56vw, 1.75rem);
  }
}

.l-main .plan .plan-box-table02 .price .small--regular {
  font-weight: 400;
}

.l-main .plan .plan-detail {
  padding: 23px;
  margin-top: 106px;
  background-color: #f5f5f5;
  border-radius: 4px;
  display: none;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-detail {
    border-radius: clamp(0.25rem, 0.011rem + 1.02vw, 0.5rem);
    margin-top: clamp(2.875rem, 0.132rem + 11.7vw, 5.75rem);
    padding: clamp(0.938rem, 0.043rem + 3.82vw, 1.875rem);
  }
}

.l-main .plan .plan-detail .plan-detail__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  padding-left: 1em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .plan .plan-detail .plan-detail__text {
    font-size: clamp(0.75rem, 0.034rem + 3.05vw, 1.5rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0em;
    border-radius: clamp(0.25rem, 0.011rem + 1.02vw, 0.5rem);
  }
}

.l-main .plan .plan-detail .plan-detail__text::before {
  content: "・";
  display: inline-block;
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  top: 0;
}

.l-main .step {
  background-color: #f7f9fb;
  overflow: hidden;
}

.l-main .step .step__container {
  padding-top: 55px;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .l-main .step .step__container {
    padding-top: clamp(3.25rem, 13.87vw, 6.5rem);
    padding-bottom: 0;
  }
}

.l-main .step .step__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4230769231;
  letter-spacing: 0em;
  text-align: center;
  padding: 0.5em 0.1em;
  background-color: #fff5bf;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .l-main .step .step__title {
    font-size: clamp(1.625rem, 6.93vw, 3.25rem);
    border-radius: clamp(0.625rem, 2.67vw, 1.25rem);
  }
}

.l-main .step .step__title .color {
  color: #050a30;
}

.l-main .step .step-list {
  display: block;
  justify-content: space-between;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list {
    display: block;
    margin-top: clamp(2.625rem, 11.2vw, 5.25rem);
  }
}

.l-main .step .step-list__item {
  width: 31.5%;
  padding: 54px 10px 20px;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list__item {
    width: 100%;
    padding: clamp(3.375rem, 14.4vw, 6.75rem) clamp(0.625rem, 2.67vw, 1.25rem) clamp(1.25rem, 5.33vw, 2.5rem);
    margin-inline: clamp(0.625rem, 2.67vw, 1.25rem);
    border-radius: clamp(0.938rem, 4vw, 1.875rem);
  }
}

.l-main .step .step-list__item .num {
  top: 18px;
  left: 16px;
  position: absolute;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list__item .num {
    top: 5%;
    left: 6%;
  }
}

.l-main .step .step-list__item .num .num__small {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list__item .num .num__small {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

.l-main .step .step-list__item .num .num__big {
  display: block;
  font-size: 49px;
  font-weight: 700;
  line-height: 1.1632653061;
  letter-spacing: 0em;
}

@media screen and (max-width: 1000px) {
  .l-main .step .step-list__item .num .num__big {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list__item .num .num__big {
    font-size: clamp(3.063rem, 13.07vw, 6.125rem);
  }
}

.l-main .step .step-list__item .step-list__img {
  width: min(100%, 175px);
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list__item .step-list__img {
    width: min(100%, clamp(10.938rem, 46.67vw, 21.875rem));
  }
}

.l-main .step .step-list__item .step-list__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 1.3em;
  color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list__item .step-list__subtitle {
    font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  }
}

.l-main .step .step-list__item .step-list__detail {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 0.9em;
}

@media screen and (max-width: 1000px) {
  .l-main .step .step-list__item .step-list__detail {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .l-main .step .step-list__item .step-list__detail {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

.step__caution {
  padding-top: 31px;
  padding-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4230769231;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #fff;
  background-color: #ff5b5b;
  margin: 0 0 100px;
}

.l-main .step .consultation-button {
  margin-bottom: 60px;
}

.l-main .consultation-button .btn-copy {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .l-main .consultation-button .btn-copy {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }

  .l-main .consultation-button img {
    width: 100%;
  }
}

.l-header .consultation-button {
  margin-top: 29px;
}

.l-main .consultation-button a {
  display: inline-block;
  margin-top: -15px;
}

.l-header .consultation-button a {
  display: inline-block;
  margin-top: -15px;
}

.l-main .method .method__title {
  padding-top: 31px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method__title {
    padding-top: clamp(0.813rem, 3.47vw, 1.625rem);
    padding-bottom: clamp(0.625rem, 2.67vw, 1.25rem);
  }
}

.l-main .method .method__container {
  padding-top: 58px;
  padding-bottom: 57px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method__container {
    padding-top: clamp(3.625rem, 15.47vw, 7.25rem);
    padding-bottom: clamp(3.563rem, 15.2vw, 7.125rem);
  }
}

.l-main .method .method-box {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box {
    margin-top: clamp(1.25rem, 5.33vw, 2.5rem);
  }
}

.l-main .method .method-box:first-child {
  margin-top: 0;
}

.l-main .method .method-box:last-child {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box:last-child {
    margin-top: clamp(1.25rem, 5.33vw, 2.5rem);
  }
}

.l-main .method .method-box .method-box__head {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  padding-left: 1em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .method-box__head {
    font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  }
}

.l-main .method .method-box .method-box__head::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .method-box__head::before {
    width: clamp(0.188rem, 0.8vw, 0.375rem);
  }
}

.l-main .method .method-box .method-box__big {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  color: #4cb2e4;
  margin-top: 1.3em;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .method-box__big {
    font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  }
}

.l-main .method .method-box .method-box__attention {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-left: 1.3em;
  margin-top: 1.2em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .method-box__attention {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .method .method-box .method-box__attention::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-main .method .method-box .method-box-list {
  margin-top: 18px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .method-box-list {
    margin-top: clamp(1.125rem, 4.8vw, 2.25rem);
  }
}

.l-main .method .method-box .method-box-list .text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-left: 1.3em;
  margin-top: 0.25em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .method-box-list .text {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .method .method-box .method-box-list .text::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-main .method .method-box .method-box-list .text__attention {
  display: block;
  padding-left: 1.3em;
  margin-top: 0.3em;
  position: relative;
}

.l-main .method .method-box .method-box-list .text__attention::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-main .method .method-box .redArea {
  color: #f0392e;
  padding: 14px 15px 12px;
  margin-top: 26px;
  border: 1px solid #f0392e;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .redArea {
    margin-top: clamp(1.625rem, 6.93vw, 3.25rem);
    padding: clamp(0.875rem, 3.73vw, 1.75rem) clamp(0.938rem, 4vw, 1.875rem) clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .method .method-box .redArea .redArea__theme {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .redArea .redArea__theme {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.l-main .method .method-box .redArea .redArea__detail {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 0.7em;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .redArea .redArea__detail {
    font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  }
}

.l-main .method .method-box .other {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .other {
    margin-top: clamp(1.188rem, 5.07vw, 2.375rem);
  }
}

.l-main .method .method-box .other .other__head {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .other .other__head {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

.l-main .method .method-box .other .other-list {
  margin-top: 11px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .other .other-list {
    margin-top: clamp(0.688rem, 2.93vw, 1.375rem);
  }
}

.l-main .method .method-box .other .other-list .other-list__item {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  padding-left: 1em;
  margin-top: 0.2em;
  position: relative;
}

.l-main .method .method-box .other p {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .other p {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

@media screen and (max-width: 768px) {
  .l-main .method .method-box .other .other-list .other-list__item {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.l-main .method .method-box .other .other-list .other-list__item::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-main .method .method-box .other .other-list .other-list__item .text__attention {
  display: block;
  padding-left: 1.3em;
  margin-top: 0.3em;
  position: relative;
}

.l-main .method .method-box .other .other-list .other-list__item .text__attention::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-main .message {
  background-color: #f7f9fb;
}

.l-main .message .message__container {
  max-width: 763px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 55px;
  padding-bottom: 55px;
}

.l-main .message .message__container {
  margin-right: 4.375%;
  margin-left: 4.375%;
}

@media screen and (max-width: 763px) {
}

@media screen and (max-width: 768px) {
  .l-main .message .message__container {
    padding-top: clamp(3.438rem, 14.67vw, 6.875rem);
    padding-bottom: clamp(3.438rem, 14.67vw, 6.875rem);
    margin-inline: 4.375%;
  }
}

.l-main .message .message-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .l-main .message .message-box {
    display: block;
    margin-top: clamp(1.875rem, 8vw, 3.75rem);
  }
}

.l-main .message .message-box .message-box-person {
  width: min(100%, 182px);
  flex-shrink: 0;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .l-main .message .message-box .message-box-person {
    width: 100%;
    margin-right: 0;
  }
}

.l-main .message .message-box .message-box-person .img {
  width: 89%;
  margin-inline: auto;
}

.l-main .message .message-box .message-box-person .img img {
  border-radius: 14px;
}

@media screen and (max-width: 768px) {
  .l-main .message .message-box .message-box-person .img {
    width: 48%;
  }
}

.l-main .message .message-box .message-box-person .name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 1.4em;
}

@media screen and (max-width: 768px) {
  .l-main .message .message-box .message-box-person .name {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
    margin-top: 1.7em;
  }
}

.l-main .message .message-box .message-box-content {
  margin-top: 10px;
  margin-bottom: 23px;
}

@media screen and (max-width: 768px) {
  .l-main .message .message-box .message-box-content {
    margin-top: clamp(0.938rem, 4vw, 1.875rem);
    margin-bottom: 0;
  }
}

.l-main .message .message-box .message-box-content .detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .message .message-box .message-box-content .detail {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.l-main .flex-area {
  display: block;
}

@media screen and (max-width: 768px) {
  .l-main .flex-area {
    display: block;
  }
}

.l-main .career {
  flex: 1;
  background-color: #f5fcff;
}

.l-main .career .career__container {
  max-width: 346px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56px;
  padding-bottom: 59px;
}

@media screen and (max-width: 346px) {
  .l-main .career .career__container {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}

@media screen and (max-width: 768px) {
  .l-main .career .career__container {
    max-width: none;
    margin-inline: 4.375%;
    padding-top: clamp(3.5rem, 14.93vw, 7rem);
    padding-bottom: clamp(3.5rem, 14.93vw, 7rem);
  }
}

.l-main .career .career-box {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .l-main .career .career-box {
    margin-top: clamp(1.625rem, 6.93vw, 3.25rem);
  }
}

.l-main .career .career-box:first-of-type {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .l-main .career .career-box:first-of-type {
    margin-top: clamp(2.063rem, 8.8vw, 4.125rem);
  }
}

.l-main .career .career-box__head {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-left: 0.8em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .l-main .career .career-box__head {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

.l-main .career .career-box__head::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #4cb2e4;
}

@media screen and (max-width: 768px) {
  .l-main .career .career-box__head::before {
    width: clamp(0.125rem, 0.53vw, 0.25rem);
  }
}

.l-main .career .career-box__content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  margin-top: 0.55em;
}

@media screen and (max-width: 768px) {
  .l-main .career .career-box__content {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.l-main .career .career-box__content:first-of-type {
  margin-top: 1.2em;
}

@media screen and (max-width: 768px) {
  .l-main .career .career-box__content:first-of-type {
    margin-top: 0.6em;
  }
}

.l-main .clinic {
  flex: 1;
}

.l-main .clinic .clinic__container {
  padding-top: 55px;
  padding-bottom: 40px;
  max-width: 431px;
  margin-left: auto;
  margin-right: auto;
}

.l-main .clinic .clinic__container {
  margin-right: 4.375%;
  margin-left: 4.375%;
}

@media screen and (max-width: 431px) {
}

@media screen and (max-width: 1000px) {
  .l-main .clinic .clinic__container {
    max-width: 346px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1000px) and (max-width: 346px) {
  .l-main .clinic .clinic__container {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}

@media screen and (max-width: 768px) {
  .l-main .clinic .clinic__container {
    max-width: none;
    margin-inline: 4.375%;
    padding-top: clamp(3.438rem, 14.67vw, 6.875rem);
    padding-bottom: clamp(3.75rem, 16vw, 7.5rem);
  }
}

.l-main .clinic .clinic-box {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .l-main .clinic .clinic-box {
    margin-top: clamp(1.813rem, 7.73vw, 3.625rem);
  }
}

.l-main .clinic .clinic-box .clinic-box__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .clinic .clinic-box .clinic-box__name {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

.l-main .clinic .clinic-box .clinic-box__detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  margin-top: 0.52em;
}

@media screen and (max-width: 768px) {
  .l-main .clinic .clinic-box .clinic-box__detail {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
}

.l-main .clinic .clinic-box .clinic-box__img {
  margin-top: 42px;
}

.l-main .clinic .clinic-box .clinic-box__img img {
  border-radius: 14px;
}

@media screen and (max-width: 768px) {
  .l-main .clinic .clinic-box .clinic-box__img {
    margin-top: clamp(2.625rem, 11.2vw, 5.25rem);
  }
}

.l-main .voice .voice__area {
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f5fcff;
}

@media screen and (max-width: 768px) {
  .l-main .voice .voice__area {
    padding-top: clamp(2.5rem, 0.115rem + 10.18vw, 5rem);
    padding-bottom: clamp(3.5rem, 0.16rem + 14.25vw, 7rem);
  }
}

.l-main .voice .list {
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
}

/* @media screen and (max-width: 1000px) {
  .l-main .voice .list {
    padding: 58px 50px 55px;
  }
} */

@media screen and (max-width: 768px) {
  .l-main .voice .list {
    padding: clamp(1.5rem, 0.069rem + 6.11vw, 3rem) 6% clamp(1.563rem, 0.072rem + 6.36vw, 3.125rem);
    border-radius: clamp(0.938rem, 0.043rem + 3.82vw, 1.875rem);
  }
}

.l-main .voice .list .list-item {
  padding-bottom: 40px;
  margin-top: 40px;
  border-bottom: 1px solid #c0cfd2;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item {
    padding-bottom: clamp(1.938rem, 0.089rem + 7.89vw, 3.875rem);
    margin-top: clamp(2rem, 0.092rem + 8.14vw, 4rem);
  }
}

.l-main .voice .list .list-item:first-child {
  margin-top: 0;
}

.l-main .voice .list .list-item .list-item-head .person {
  display: flex;
  align-items: center;
}

.l-main .voice .list .list-item .list-item-head .person .person__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item-head .person .person__icon {
    width: min(100%, clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem));
    margin-right: clamp(0.5rem, 0.023rem + 2.04vw, 1rem);
  }

  .l-main .voice .list .list-item .list-item-head .person .person__icon img {
    width: 100%;
  }
}

.l-main .voice .list .list-item .list-item-head .person .person__age {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item-head .person .person__age {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  }
}

.l-main .voice .list .list-item .list-item-head .review {
  display: flex;
  align-items: center;
  margin-top: 9px;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item-head .review {
    margin-top: clamp(1.188rem, 0.054rem + 4.83vw, 2.375rem);
  }
}

.l-main .voice .list .list-item .list-item-head .review .review__head {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0em;
  margin-right: 0.5em;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item-head .review .review__head {
    font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  }
}

.l-main .voice .list .list-item .list-item-head .review .review__star {
  display: flex;
  column-gap: 2px;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item-head .review .review__star {
    column-gap: clamp(0.125rem, 0.006rem + 0.51vw, 0.25rem);
  }
}

.l-main .voice .list .list-item .list-item-head .review .review__star img {
  display: block;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item-head .review .review__star img {
    width: clamp(1.438rem, 0.066rem + 5.85vw, 2.875rem);
  }
}

.l-main .voice .list .list-item .list-item-head .text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item-head .text {
    font-size: clamp(0.875rem, 0.04rem + 3.56vw, 1.75rem);
    margin-top: 1.2em;
  }
}

.l-main .voice .list .list-item .list-item__img {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .l-main .voice .list .list-item .list-item__img {
    max-width: 99%;
    margin-inline: auto;
    margin-top: clamp(2.5rem, 0.115rem + 10.18vw, 5rem);
  }

  .l-main .voice .list .list-item .list-item__img img {
    width: 100%;
  }
}

.l-main .voice .voice-cta {
  padding-top: 51px;
  padding-bottom: 43px;
  background-color: #f5fcff;
}

@media screen and (max-width: 768px) {
  .l-main .voice .voice-cta {
    padding-top: clamp(3.188rem, 0.146rem + 12.98vw, 6.375rem);
    padding-bottom: clamp(1.938rem, 0.089rem + 7.89vw, 3.875rem);
  }
}

.l-main .question {
  background-color: #f7f9fb;
}

.l-main .question .question__container {
  padding-top: 57px;
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .l-main .question .question__container {
    padding-top: clamp(3.563rem, 15.2vw, 7.125rem);
    padding-bottom: clamp(4.375rem, 18.67vw, 8.75rem);
  }
}

.l-main .question .question-box {
  margin-top: 40px;
  padding: 15px;
  /* background-color: #fff; */
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .l-main .question .question-box {
    margin-top: clamp(2.813rem, 12vw, 5.625rem);
    padding: clamp(1.438rem, 6.13vw, 2.875rem) clamp(0.813rem, 3.47vw, 1.625rem) clamp(1.375rem, 5.87vw, 2.75rem);
    border-radius: clamp(0.938rem, 4vw, 1.875rem);
  }
}

.l-main .question .question-box .question-box-list {
  margin-top: 15px;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
}

.l-main .question .question-box .question-box-list.accordion-header:hover {
  background-color: #ddd;
}

@media screen and (max-width: 768px) {
  .l-main .question .question-box .question-box-list {
    margin-top: clamp(1.563rem, 6.67vw, 3.125rem);
  }
}

.l-main .question .question-box .question-box-list:first-child {
  margin-top: 0;
}

.l-main .question .question-box .question-box-list .theme {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
  letter-spacing: 0em;
  padding-left: 2.1em;
  position: relative;
  cursor: pointer;
  padding-right: 1.4em;
}

.l-main .question .question-box .question-box-list .theme.accordion-header:hover {
  background-color: #ddd;
}

@media screen and (max-width: 768px) {
  .l-main .question .question-box .question-box-list .theme {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

.l-main .question .question-box .question-box-list .theme::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "Q";
  color: #fff;
  background-color: #4cb2e4;
  width: 25px;
  height: 25px;
  padding-bottom: 4px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* .l-main .question .question-box .question-box-list .theme::after{
  content:"+";
  transition: transform 0.3s ease;
}
.l-main .question .question-box .question-box-list .theme.active::after{
  content:"-";
  transform: rotate(45deg);
} */
.l-main .question .l-accordion-header .icon {
  font-size: 20px;
  position: relative;
  display: inline-block;
  width: 16px;
  height: 24px;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 768px) {
  .l-main .question .l-accordion-header .icon {
    width: clamp(19px, 4.27vw, 29px);
    top: 0%;
  }
}

.l-main .question .l-accordion-header .icon::before,
.l-main .question .l-accordion-header .icon::after {
  content: "";
  position: absolute;
  background-color: #17859f;
  width: 14px;
  height: 2px;
  transition: transform 0.3s ease;
}

.l-main .question .l-accordion-header .icon::before {
  top: 50%;
  width: 2px;
  height: 14px;
  left: 44%;
  /* transform: translateX(10px); */
  transform: translate(-50%, -50%);
}

.l-main .question .l-accordion-header .icon::after {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}

.l-main .question .l-accordion-header.active .icon::before {
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 768px) {
  .l-main .question .l-accordion-header .icon::before {
    width: 3px;
    height: clamp(15px, 4.27vw, 25px);
  }
}

.l-main .question .l-accordion-header.active .icon::after {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 768px) {
  .l-main .question .l-accordion-header .icon::after {
    width: clamp(15px, 4.27vw, 25px);
    height: 3px;
  }
}

@media screen and (max-width: 768px) {
  .l-main .question .question-box .question-box-list .theme::before {
    width: clamp(1.563rem, 6.67vw, 3.125rem);
    height: clamp(1.563rem, 6.67vw, 3.125rem);
    padding-bottom: clamp(0.25rem, 1.07vw, 0.5rem);
  }
}

.l-main .question .question-box .question-box-list .des {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  border-radius: 8px;
  padding-left: 2.4em;
  padding-right: 0.9em;
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
  position: relative;
}

.l-main .question .question-box .question-box-list .des::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "A";
  color: #fff;
  background-color: #fff5bf;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto 0;
  text-shadow:
    1px 1px 0 #41414166,
    /* 黒い文字のシャドウ（1pxのオフセット） */ -1px -1px 0 #41414166,
    /* 黒い文字のシャドウ（-1pxのオフセット） */ 1px -1px 0 #41414166,
    /* 黒い文字のシャドウ（1pxと-1pxのオフセット） */ -1px 1px 0 #41414166;
  /* 黒い文字のシャドウ（-1pxと1pxのオフセット） */
  font-weight: 700;
  overflow: hidden;
}

.l-main .question .question-box .question-box-list .des.active {
  max-height: fit-content;
  padding-top: 1.1em;
  padding-bottom: 0.8em;
  margin-top: 1.4em;
  border-top: 1px dashed #d9d9d9;
}

.l-main .question .question-box .question-box-list .des a {
  text-decoration: underline;
}

.l-main .question .question-box .question-box-list .des.active::before {
  /* max-height: 25px; */
}

@media screen and (max-width: 768px) {
  .l-main .question .question-box .question-box-list .des {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
}

@media screen and (max-width: 768px) {
  .l-main .question .question-box .question-box-list .des::before {
    width: clamp(1.563rem, 6.67vw, 3.125rem);
    height: clamp(1.563rem, 6.67vw, 3.125rem);
    padding-bottom: clamp(0.25rem, 1.07vw, 0.5rem);
    top: 22px;
  }
}

/* s1 */

.kv-main__inner__wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 10px auto;
}

.kv-main__inner__bottom {
  position: absolute;
  bottom: 0;
}

/* auto-slider */
.auto-slider {
  position: absolute;
  top: 29.7%;
  max-width: 1280px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

.scroll-infinity__list--right {
  animation: infinity-scroll-right 120s infinite linear 0s both;
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 120s infinite linear 0s both;
}

.scroll-infinity__item {
  width: calc(390px / 1.9);
  margin: 0.1%;
}

.scroll-infinity__item > img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  /* auto-slider */
  .auto-slider {
    position: absolute;
    top: 29.7%;
    max-width: 1280px;
  }

  .scroll-infinity__item {
    width: calc(100vw / 1.9);
    max-width: calc(100vw / 1.9);
    margin: 0.1%;
  }
}

/* end */

.plan__campain {
  margin: 40px auto;
  max-width: 90%;
}

@media screen and (max-width: 768px) {
  .plan__campain {
    margin: 40px auto;
    max-width: 85%;
  }
}

.feature__item__list--comment {
  width: 95%;
  margin: -10px auto 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .feature__item__list--comment {
    width: 95%;
    margin: -25px auto 80px;
  }
}

.feature__item__list--comment--inner {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  margin: 5px 0 0 0;
}

@media screen and (max-width: 768px) {
  .feature__item__list--comment--inner {
    margin: 2% 0 0 0;
  }
}

.comment__inner__item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.comment__inner01,
.comment__inner02 {
  width: 43%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .comment__inner01,
  .comment__inner02 {
    width: 42%;

    margin: 0 5px;
  }
}

.comment__inner01__img,
.comment__inner02__img {
  width: 70%;
  margin: 0 auto -10px auto;
}

@media screen and (max-width: 768px) {
  .comment__inner01__img,
  .comment__inner02__img {
    width: 75%;
    margin: 0 auto -10px auto;
  }
}

.comment__inner01 p,
.comment__inner02 p {
  /* font-size: clamp(0.6rem, 2vw, 1rem); */
  width: 100%;
  background-color: #ff6464;
  color: white;
  padding: 6px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  height: 44px;
}

@media screen and (max-width: 768px) {
  .comment__inner01 p,
  .comment__inner02 p {
    font-size: clamp(0.813rem, 0.687rem + 0.63vw, 1rem);
    width: 100%;
    background-color: #ff6464;
    color: white;
    padding: 6px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(2.75rem, 1.796rem + 4.07vw, 3.75rem);
    line-height: 1.2;
  }
}

.feature__item__list--comment--inner .comment__inner__plus {
  font-size: 35px;
  font-weight: 500;
}

.comment__inner__text {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin: 2% 0 0 0;
}

@media screen and (max-width: 768px) {
  .feature__item__list--comment--inner .comment__inner__plus {
    font-size: 30px;
    font-weight: 500;
  }

  .comment__inner__text {
    font-size: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
    font-weight: 800;
    text-align: center;
    margin: 3% 0 0 0;
  }
}

/* 症例slick */

.slide__comment {
  width: 50%;
  max-width: 384px;
  margin: 0 auto 0% auto;
  z-index: 99;
  position: relative;
  transform: translate(0, 60%);
}

@media screen and (max-width: 768px) {
  .slide__comment {
    width: 50%;
    max-width: 384px;
    margin: -50px auto 0% auto;
    z-index: 99;
    position: relative;
    transform: translate(0, 94%);
  }
}

.slide__pc {
  display: block !important;
}

.slide__sp {
  display: none !important;
}

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

  .slide__sp {
    display: block !important;
  }
}

.case__slide {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.case__slide__list {
  width: 50%;
  padding: 0.4%;
}

@media screen and (max-width: 768px) {
  .case__slide {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .case__slide__list {
    width: 50%;
    padding: 0.4%;
  }
}

.case__slide__list img {
  cursor: pointer;
}

.l-main .intro .intro-box .slick-prev {
  left: 10px;
  z-index: 100;
}

.l-main .intro .intro-box .slick-prev {
  left: calc(50% - 140px);
  top: auto;
  bottom: -58px;
  z-index: 100;
  background-image: url(../img/intro/slide_prev.webp);
  background-size: cover;
  width: 44px;
  height: 44px;
  transform-origin: top;
}

.l-main .intro .intro-box .slick-prev::before,
.l-main .intro .intro-box .slick-next::before {
  display: none;
}

.l-main .intro .intro-box .slick-next {
  right: calc(50% - 140px);
  top: auto;
  bottom: -58px;
  z-index: 100;
  background-image: url(../img/intro/slide_next.webp);
  background-size: cover;
  width: 44px;
  height: 44px;
  transform-origin: top;
}

.l-main .intro .intro-box .slick-prev {
  left: 2.5%;
  top: 50%;
  bottom: auto;
  z-index: 100;
  background-image: url(../img/intro/slide_prev.webp);
  background-size: cover;
  width: 44px;
  height: 44px;
  transform-origin: top;
}

.l-main .intro .intro-box .slick-next {
  right: 2.5%;
  top: 50%;
  bottom: auto;
  z-index: 100;
  background-image: url(../img/intro/slide_next.webp);
  background-size: cover;
  width: 44px;
  height: 44px;
  transform-origin: top;
}

@media screen and (max-width: 768px) {
}

.l-main .intro .intro-box .slick-dots {
  margin: 0 0 -10px 0;
}

@media screen and (max-width: 768px) {
  .l-main .intro .intro-box .slick-dots {
    margin: 0 0 10px 0;
  }
}

.l-main .intro .intro-box .slick-dots li {
  width: 40px;
  height: 40px;
}

.l-main .intro .intro-box .slick-dots li button::before {
  opacity: 0;
}

.l-main .intro .intro-box .slick-dots li:nth-child(1) {
  background-image: url(../img/intro/slide_num01.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(2) {
  background-image: url(../img/intro/slide_num02.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(1).slick-active {
  background-image: url(../img/intro/slide_num01_active.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li.slick-active {
  background-image: url(../img/intro/slide_num02_active.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li {
  width: 20px;
  height: 20px;
}

.l-main .intro .intro-box .slick-dots li:nth-child(1) {
  background-image: url(../img/intro/slide_num01_sp.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(2) {
  background-image: url(../img/intro/slide_num02_sp.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(3) {
  background-image: url(../img/intro/slide_num03_sp.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(4) {
  background-image: url(../img/intro/slide_num04_sp.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(1).slick-active {
  background-image: url(../img/intro/slide_num01_active_sp.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(2).slick-active {
  background-image: url(../img/intro/slide_num02_active_sp.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(3).slick-active {
  background-image: url(../img/intro/slide_num03_active_sp.webp);
  background-size: cover;
}

.l-main .intro .intro-box .slick-dots li:nth-child(4).slick-active {
  background-image: url(../img/intro/slide_num04_active_sp.webp);
  background-size: cover;
}

@media screen and (max-width: 768px) {
}

/* modal */

/* オーバーレイのスタイル */
.modal__overlay {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 86vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1500;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  border-radius: 16px;
}

/* 表示時のスタイル */
.modal__item__wrap.show-modal,
.modal__overlay.show-overlay {
  display: block;
}

.modal__item__wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  margin: 0;
  margin-top: 0;
  display: none;
}

.modal__close_btn {
  position: absolute;
  right: -22px;
  top: -22px;
  z-index: 10;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.item_wrapper .item {
  width: 100%;
  padding: 29px 16px 2px;
  box-sizing: border-box;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 60px;
  position: relative;
  border-radius: 8px;
  padding: 16px;
}

.item .item-head .item-head__text .big {
  font-size: 20px;
}

.item .item-head .item-head__text .item_case_disc {
  margin: 5px 0;
}

.item .item-detail {
  font-size: 14px;
  margin: 14px auto;
}

.modal__item__wrap .item {
  margin: 0 !important;
  border: 1px solid #222222;
  border-radius: 16px !important;
  width: 370px !important;
}

.modal__case__img {
  width: 70%;
  margin: 0 auto;
}

@keyframes button-press {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.2;
  }

  100% {
    scale: 1;
  }
}

.modal__close_btn img {
  animation-duration: 0.3s;
  animation-timing-function: ease;
}

.modal__close_btn img.button-animate {
  animation-name: button-press;
}

.slick-next {
  transition: transform 0.3s ease;
}

.animate-click {
  animation: button-press 0.3s ease;
}

@media screen and (max-width: 768px) {
  /* オーバーレイのスタイル */
  .modal__overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    border-radius: 0;
  }

  /* 表示時のスタイル */
  .modal__item__wrap.show-modal,
  .modal__overlay.show-overlay {
    display: block;
  }

  .modal__item__wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    margin: 0;
    margin-top: 0;
    display: none;
  }

  .modal__close_btn {
    position: absolute;
    right: -16px;
    top: -16px;
    z-index: 10;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }

  .item_wrapper .item {
    width: 100%;
    padding: 29px 16px 2px;
    box-sizing: border-box;
    background-color: #fff;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
    border-radius: 8px;
    min-width: 320px;
    max-width: 320px;
    padding: 13px;
  }

  .item .item-head .item-head__text .big {
    font-size: 18px;
  }

  .item .item-head .item-head__text .item_case_disc {
    margin: 5px 0;
  }

  .item .item-detail {
    font-size: 12px;
    margin: 12px auto;
  }

  .modal__item__wrap .item {
    margin: 0 !important;
    border: 1px solid #222222;
    border-radius: 16px !important;
    width: 480px !important;
  }

  .modal__case__img {
    width: 100%;
    margin: 0 auto;
  }

  @keyframes button-press {
    0% {
      scale: 1;
    }

    50% {
      scale: 1.2;
    }

    100% {
      scale: 1;
    }
  }

  .modal__close_btn img {
    animation-duration: 0.3s;
    animation-timing-function: ease;
  }

  .modal__close_btn img.button-animate {
    animation-name: button-press;
  }

  .slick-next {
    transition: transform 0.3s ease;
  }

  .animate-click {
    animation: button-press 0.3s ease;
  }
}

.line-btn__caption {
  font-weight: 700;
  margin: 10px auto;
  font-size: 20px;
}

.line-btn__caption span {
  background: linear-gradient(transparent 70%, #fff064 70%);
}

.diploma {
  width: 390px;
  background-color: #f7f9fb;
  padding: 30px 0;
}

.cdiploma__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.diploma__img {
  width: 84px;
}

.diploma__text {
  font-size: 16px;
  font-weight: 700;
  width: 240px;
}

.diploma__caption {
  font-size: 12px;
  width: 90%;
  margin: 10px auto;
}

@media screen and (max-width: 768px) {
  .diploma {
    width: 100%;
    background-color: #f7f9fb;
    padding: 30px 0;
  }

  .cdiploma__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }

  .diploma__img {
    width: 84px;
  }

  .diploma__text {
    font-size: 16px;
    font-weight: 700;
    width: 240px;
    margin: 0 0 0 10px;
  }

  .diploma__caption {
    font-size: 12px;
    width: 90%;
    margin: 10px auto;
  }
}

#header {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  position: fixed;
}

#header.visible {
  opacity: 1;
  pointer-events: auto;
}

.plan-box-sp .slick-prev,
.plan-box-sp .slick-next {
  display: none;
}

.plan-box-sp-box__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-box-sp .plan-box-next {
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin: 0 30px 0 0;
}

.plan-box-sp .slick-next::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .plan-box-sp .plan-box-next {
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin: 0 3% 0 0;
  }
}

.table__caption {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0em;
  position: relative;
  color: #4f4f4f;
  width: fit-content;
  margin: 1px auto;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .table__caption {
    font-size: clamp(0.5rem, 0.046rem + 2.77vw, 1rem);
  }
}

.price-center {
  width: fit-content;
  transform: translate(0, 14px);
  display: inline-block;
}
