@charset "UTF-8";
:root {
  --rem: 100rem;
  --first-view-height: 100vh;
  --pcBaseWidth: 160;
  --scrollbar-gutter: -15px;
  --color-primary: #52AD43;
  --color-accent: #52AD43;
  --color-dummy: #d9d9d9;
  --ease-none: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-power1-in: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-power1-in-out: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-power1-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-power2-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-power2-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-power2-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-power3-in: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-power3-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-power3-out: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-power4-in: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-power4-in-out: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-power4-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-expo-in: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-expo-in-out: cubic-bezier(1, 0, 0, 1);
  --ease-expo-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-circ-in: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-circ-in-out: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-circ-out: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-back-in: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-back-in-out: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-back-out: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #F0F0F0;
  position: relative;
}

html {
  font-size: 1vw !important;
}
@media (min-width: 600px) {
  html {
    font-size: 6px !important;
  }
}

body {
  font-family: AvenirLTPro-Heavy, FP-KoburinaGoStdN-W6, Hiragino Kaku Gothic ProN, Yu Gothic, yugothic, メイリオ, meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.lp__wrapper {
  background: #F0F0F0 !important;
}

.page {
  z-index: 1;
}

sub,
sup {
  font-size: 80%;
  line-height: 1;
}

picture {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.forPC {
  display: inherit !important;
}

.forSP {
  display: none !important;
}

.forPC2 {
  display: inline !important;
}

.forSP2 {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
}

.js-inView,
.js-inViewStatement {
  -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 0.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.js-inView.is-inView,
.js-inViewStatement.is-inView {
  opacity: 1;
}

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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 8rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open])) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
          box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.brandHeader {
  position: relative;
  padding: 344rem 0 0;
  background-color: #faf8f2;
}

.buttonMore {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 256rem;
  padding: 28.8rem 0 22.4rem 0.12em;
  border-radius: 38.4rem;
  color: #fff;
  font-size: 25.6rem;
  text-align: center;
  letter-spacing: 0.12em;
  text-decoration: none;
  background-color: #FB7F03;
  -webkit-transition: background-color 150ms var(--ease-none);
  transition: background-color 150ms var(--ease-none);
}

.-type02 .buttonMore {
  background-color: #FB7F03;
}

.c-page-ttl-speech {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  text-align: center;
  padding-bottom: 60.8rem;
}

.c-page-ttl-speech-obj {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
}

.c-page-ttl-speech-obj::before,
.c-page-ttl-speech-obj::after {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: calc(50% - 19.2rem);
  border-top: 3.2rem solid #52AD43;
}

.slider02 .c-page-ttl-speech-obj::before,
.slider02 .c-page-ttl-speech-obj::after {
  width: calc(50% - 9.6rem);
}

.modalPrice .c-page-ttl-speech-obj::before,
.modalPrice .c-page-ttl-speech-obj::after {
  width: calc(50% - 12.8rem);
}

.c-page-ttl-speech-obj::before {
  left: 9.6rem;
}

.slider02 .c-page-ttl-speech-obj::before {
  left: 0;
}

.modalPrice .c-page-ttl-speech-obj::before {
  left: 3.2rem;
}

.c-page-ttl-speech-obj::after {
  right: 9.6rem;
}

.slider02 .c-page-ttl-speech-obj::after {
  right: 0;
}

.modalPrice .c-page-ttl-speech-obj::after {
  right: 3.2rem;
}

.c-page-ttl-speech-obj-arrow {
  position: relative;
  display: block;
  margin: 0 auto;
  top: 0;
  width: 22.4rem;
  height: 17.6rem;
  background: url(../images/common/ico_speech.svg) no-repeat 0 0/contain;
}

.c-page-ttl-speech.c-page-ttl-speech-orange .c-page-ttl-speech-obj::before,
.c-page-ttl-speech.c-page-ttl-speech-orange .c-page-ttl-speech-obj::after {
  border-top-color: #FB7F03;
}

.c-page-ttl-speech.c-page-ttl-speech-orange .c-page-ttl-speech-obj-arrow {
  background-image: url(../images/common/ico_speech.svg);
}

.pageHeader {
  position: relative;
  padding: 89.6rem 0 227.2rem;
  background-color: #fff;
}

.pageHeader .pageHeading {
  margin-top: 171.2rem;
}

.pageHeader .pageHeading__ja {
  margin-top: 27.2rem;
}

.headerLogo {
  width: 124.8rem;
  margin: 0 auto;
}

.reserve {
  position: fixed;
  bottom: 57.6rem;
  right: 57.6rem;
  width: 393.6rem;
  z-index: 8;
  opacity: 0;
  pointer-events: inherit !important;
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.4s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.4s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.4s, transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0.4s, transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

.is-image-loaded .reserve {
  pointer-events: inherit;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

.reserve__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 102.4rem;
  padding: 0 41.6rem 0 96rem;
  border-radius: 96rem;
  color: #fff;
  background-color: #FB7F03;
  text-align: center;
  line-height: 1.2;
  -webkit-transition: background-color 150ms var(--ease-none);
  transition: background-color 150ms var(--ease-none);
}

.reserve__icon {
  position: absolute;
  top: 12.8rem;
  left: 12.8rem;
  width: 76.8rem;
}

.reserve__text1 {
  display: inline-block;
  padding-top: 4.8rem;
  font-size: 22.4rem;
  letter-spacing: 0.12em;
  vertical-align: baseline;
}

.reserve__text2 {
  display: inline-block;
  padding-top: 6.4rem;
  font-size: 28.8rem;
  letter-spacing: 0.12em;
}

.section {
  background: #fff;
}

.section.-type02 {
  background: url(../images/top/bg02_pc.jpg) repeat 0 0rem 320rem;
}

.section.-type02 .sectionHeading__en {
  color: #fff;
}

.section.-type02 .sectionHeading__ja {
  color: #fff;
}

.section.-type02 .section__lead {
  margin-top: 132.8rem;
  color: #fff;
}

.section.-type03 {
  background-color: #fafaf7;
}

.section__lead {
  margin-top: 134.4rem;
  padding-left: 0.2em;
  font-size: 44.8rem;
  line-height: 1.7;
  letter-spacing: 0.2em;
  text-align: center;
}

.section__leadStrong {
  color: #FB7F03;
}

.sectionHeading,
.pageHeading {
  text-align: center;
}

.sectionHeading__en,
.pageHeading__en {
  font-family: AvenirLTPro-Black, serif;
  padding-left: 0.12em;
  font-size: 76.8rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sectionHeading__ja,
.pageHeading__ja {
  margin-top: 25.6rem;
  padding-left: 0.2em;
  color: var(--color-accent);
  font-size: 35.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.sectionHeading__ja::before,
.sectionHeading__ja::after,
.pageHeading__ja::before,
.pageHeading__ja::after {
  display: inline;
  content: "-";
  font-family: FP-KoburinaGoStdN-W6, Hiragino Kaku Gothic ProN, Yu Gothic, yugothic, メイリオ, meiryo, sans-serif;
}

.sectionHeading2 {
  margin-left: 281.6rem;
}

.sectionHeading2__en {
  font-family: AvenirLTPro-Black, serif;
  padding-left: 0;
  font-size: 64rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sectionHeading2__ja {
  margin-top: 19.2rem;
  padding-left: 0;
  color: var(--color-accent);
  font-size: 28.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.slider01 {
  overflow: hidden;
  width: 100%;
  margin-top: 145.6rem;
}

.slider01__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.slider01__item {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 1484.8rem;
  min-height: 681.6rem;
  margin: 0 51.2rem;
  padding: 91.2rem 0 22.4rem;
  border-radius: 25.6rem;
  background-color: #fff;
}

.slider01__itemInner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  padding: 0 102.4rem;
}

.slider01__heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8rem;
  color: var(--color-accent);
  font-size: 41.6rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.slider01__heading span {
  display: block;
  margin: 6.4rem 0 16rem;
  font-size: 25.6rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.slider01__heading::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: calc(100% - 0.2em);
  height: 3.2rem;
  background-color: currentColor;
}

.slider01__lead {
  margin-top: 54.4rem;
  font-size: 32rem;
  line-height: 2;
  letter-spacing: 0.2em;
}

.slider01__leadStrong {
  color: var(--color-accent);
}

.slider01__description {
  width: calc(100% + 0.12em);
  margin-top: 24rem;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: justify;
}

.slider01__figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.slider01Pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 158.4rem;
}

.slider01Pager__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: opacity 200ms var(--ease-none), -webkit-transform 200ms var(--ease-none);
  transition: opacity 200ms var(--ease-none), -webkit-transform 200ms var(--ease-none);
  transition: opacity 200ms var(--ease-none), transform 200ms var(--ease-none);
  transition: opacity 200ms var(--ease-none), transform 200ms var(--ease-none), -webkit-transform 200ms var(--ease-none);
}

.slider01Pager__button.is-disabled {
  pointer-events: none;
  opacity: 0;
}

.slider01Pager__buttonIcon {
  width: 89.6rem;
  height: 12.8rem;
  margin-top: 1.6rem;
}

.slider01Pager__buttonIcon svg {
  width: 89.6rem;
  height: 12.8rem;
  fill: #52AD43;
}

.section.-type02 .slider01Pager__buttonIcon svg {
  fill: #fff;
}

.slider01Pager__buttonIcon.-next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.slider01Pager__buttonText {
  display: none;
}

.slider01Pager__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 43.2rem;
}

.slider01Pager__navItem {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin: 0 28.8rem;
}

.slider01Pager__navButton {
  padding-left: 0.12em;
  font-size: 25.6rem;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #b9bdb9;
  -webkit-transition: color 200ms var(--ease-none);
  transition: color 200ms var(--ease-none);
}

.section.-type02 .slider01Pager__navButton {
  color: hsla(0, 0%, 100%, 0.5);
}

.slider01Pager__navButton.is-active {
  color: var(--color-accent);
}

.section.-type02 .slider01Pager__navButton.is-active {
  color: #fff;
}

.slider02 {
  overflow: hidden;
  width: 100%;
}

.slider02__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.slider02__pagination {
  margin-top: 48rem;
}

.slider02__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1356.8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 116.8rem auto -14.4rem;
}

.slider02__navItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16rem;
  -webkit-transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.slider02__navItem.is-disabled {
  opacity: 0;
}

.slider02__prev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.slider02__navText {
  display: block;
  text-transform: uppercase;
  color: #52AD43;
  font-size: 28.8rem;
  letter-spacing: 0.12em;
}

.slider02__navIcon {
  display: inline-block;
  width: 89.6rem;
  height: 12.8rem;
  margin-top: 4.8rem;
}

.slider02__navIcon svg {
  width: 89.6rem;
  height: 12.8rem;
  fill: #52AD43;
}

.slider02__navIcon.-prev {
  margin-right: 76.8rem;
}

.slider02__navIcon.-next {
  margin-left: 73.6rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.slider03__pager {
  position: absolute;
  top: -153.6rem;
  right: -12.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider03__pagerItem {
  width: 76.8rem;
  padding: 12.8rem;
  cursor: pointer;
}

.slider03__pagerItem path {
  fill: #b9bdb9;
}

.slider03__pagerItem.is-disabled {
  cursor: default;
}

.slider03__pagerItem.is-disabled path {
  fill: #edede8;
}

.slider03__button {
  display: none;
}

.slider04__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider04__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  width: 1017.6rem;
  border-radius: 25.6rem;
  background-color: #fff;
}

.slider04__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 36.8rem 0 27.2rem 0.2em;
  background-color: var(--color-primary);
  vertical-align: top;
}

.slider04__header::after {
  position: absolute;
  left: 50%;
  bottom: -16rem;
  display: block;
  content: "";
  width: 25.6rem;
  height: 19.2rem;
  background: url(../images/common/ico_triangle02.svg) no-repeat 0 0/contain;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.slider04__heading {
  position: relative;
  color: #fff;
  font-size: 38.4rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.slider04__headingIcon {
  display: inline-block;
  width: 38.4rem;
  height: 38.4rem;
  margin: -4.8rem 3.2rem 0 -11.2rem;
  padding: 9.6rem 0 0 0;
  border-radius: 50%;
  color: var(--color-accent);
  font-family: AvenirLTPro-Heavy, serif;
  font-size: 20.8rem;
  background-color: #fff;
  vertical-align: top;
  text-align: center;
  letter-spacing: 0;
}

.slider04__body {
  padding: 76.8rem 0 60.8rem;
}

.slider04__bodyList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider04__bodyItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 464rem;
  text-align: center;
}

.slider04__image {
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 400rem;
  height: 267.2rem;
  margin: 0 auto;
  border-radius: 19.2rem;
}

.slider04__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.slider04__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider04__name {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 27.2rem;
  padding-left: 0.2em;
  color: var(--color-accent);
  font-size: 32rem;
  line-height: 2;
  letter-spacing: 0.2em;
}

.slider04__name .generic {
  font-size: 0.7em;
}

.slider04__description {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 4.8rem;
  padding-left: 0.12em;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.slider04Pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1484.8rem;
  margin: 60.8rem auto 0;
}

.slider04Pager__button {
  width: 89.6rem;
  height: 12.8rem;
  padding: 19.2rem 0;
}

.slider04Pager__button svg {
  width: 89.6rem;
  height: 12.8rem;
  fill: #b9bdb9;
}

.slider04Pager__button.-next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.slider04Pager__button.is-disabled {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.sliderPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sliderPagination .swiper-pagination-bullet {
  position: relative;
  width: 51.2rem;
  height: 51.2rem;
  margin: 0 3.2rem;
}

.sliderPagination .swiper-pagination-bullet::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), height 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: width 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75), height 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.sliderPagination .swiper-pagination-bullet::before {
  background-color: #52AD43;
  width: 19.2rem;
  height: 19.2rem;
  border: rgba(0, 0, 0, 0) 4.8rem solid;
  border-radius: 50%;
}

.-type02 .sliderPagination .swiper-pagination-bullet::before {
  background-color: #fff;
}

.l-ourDoctors .sliderPagination .swiper-pagination-bullet::before,
.-type03 .sliderPagination .swiper-pagination-bullet::before {
  background-color: #52AD43;
}

.sliderPagination .swiper-pagination-bullet.is-active::before {
  background-color: rgba(0, 0, 0, 0);
  border-color: #52AD43;
  width: 28.8rem;
  height: 28.8rem;
}

.-type02 .sliderPagination .swiper-pagination-bullet.is-active::before {
  background-color: rgba(0, 0, 0, 0);
  border-color: #fff;
}

.l-ourDoctors .sliderPagination .swiper-pagination-bullet.is-active::before,
.-type03 .sliderPagination .swiper-pagination-bullet.is-active::before {
  background-color: rgba(0, 0, 0, 0);
  border-color: #52AD43;
}

.sliderPagination .swiper-pagination-bullet-active::before {
  width: 28.8rem;
  height: 28.8rem;
}

.sliderPagination .swiper-pagination-bullet-active::after {
  width: 19.2rem;
  height: 19.2rem;
}

.l-aboutStress {
  padding: 260.8rem 0 251.2rem;
}

.l-aboutStress .sectionHeading__ja {
  margin-top: 27.2rem;
}

.l-approach {
  padding: 260.8rem 0 251.2rem;
}

.l-approach .sectionHeading__ja {
  margin-top: 27.2rem;
}

.l-approach .slider01 {
  margin-top: 145.6rem;
}

.cv {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 768rem;
  z-index: 0;
  color: #fff;
  background-color: #f6f7f7;
}

.cv.-top {
  background-color: #fff;
}

.cv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.cv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cv__contents {
  width: 633.6rem;
  margin-top: -12.8rem;
  margin-right: auto;
  margin-left: auto;
}

.cv__logo {
  width: 296rem;
  margin-left: 169.6rem;
}

.cv__description {
  margin-top: 81.6rem;
  padding-left: 0.2em;
  font-size: 32rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}

.cv__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 59.2rem;
  padding: 12.8rem;
  border-radius: 64rem;
  color: #fff;
  font-size: 35.2rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  background-color: #FB7F03;
  -webkit-transition: background-color 150ms var(--ease-none);
  transition: background-color 150ms var(--ease-none);
}

.cv__buttonIcon {
  width: 89.6rem;
  margin-right: 22.4rem;
}

.cv__buttonText {
  padding-top: 3.2rem;
  padding-top: 0.2rem;
}

.faq__item {
  background-color: #edede8;
}

.faq__item + .faq__item {
  margin-top: 12.8rem;
}

.faq__q {
  position: relative;
  cursor: pointer;
  padding: 44.8rem 102.4rem 38.4rem 113.6rem;
  font-size: 32rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #fafaf7;
  -webkit-transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.faq__q::before {
  position: absolute;
  display: block;
  content: "Q.";
  top: 40rem;
  left: 51.2rem;
  font-size: 38.4rem;
  letter-spacing: 0;
}

.faq__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  right: 51.2rem;
  width: 25.6rem;
  height: 25.6rem;
}

.faq__icon::before,
.faq__icon::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 3.2rem;
  content: "";
  background-color: currentcolor;
  -webkit-transition: -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq__icon::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.is-show .faq__icon::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.faq__a {
  height: 0;
  overflow: hidden;
  font-size: 28.8rem;
  line-height: 2;
  letter-spacing: 0.12em;
  -webkit-transition: height 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: height 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.faq__aInner {
  position: relative;
  padding: 54.4rem 124.8rem 60.8rem 113.6rem;
}

.faq__aInner::before {
  position: absolute;
  display: block;
  content: "A.";
  top: 44.8rem;
  left: 51.2rem;
  font-size: 38.4rem;
  letter-spacing: 0.2em;
}

.faq__aInner::before a {
  text-decoration: underline;
}

.faq__aInner .faq__textSmall {
  font-size: 22.4rem;
}

.faq__aInner p {
  text-align: justify;
  word-break: break-all;
}

.faq__aInner p + p,
.faq__aInner p + ul,
.faq__aInner p + ol {
  margin-top: 1em;
}

.faq__aInner ul li,
.faq__aInner ol li {
  position: relative;
  margin-left: 1.2em;
  text-align: justify;
  text-indent: -1.2em;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  letter-spacing: 0.1em;
}

.faq__aInner--02 li {
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.faq__aInner ul li + li,
.faq__aInner ol li + li {
  margin-top: 8rem;
}

.faq__aInner ul.note li,
.faq__aInner ol.note li {
  margin-left: 1em;
  color: #9d9d9d;
  text-indent: -1em;
  font-size: 22.4rem;
}

.faq__aInner ul + p,
.faq__aInner ul + ul,
.faq__aInner ul + ol,
.faq__aInner ol + p,
.faq__aInner ol + ul,
.faq__aInner ol + ol {
  margin-top: 1em;
}

.faq__aInner ul.mt0,
.faq__aInner ol.mt0 {
  margin-top: 0;
}

.faq__aInner ul.mt0 li,
.faq__aInner ol.mt0 li {
  margin-top: 0;
}

.faq__aInner ul.noIndent li,
.faq__aInner ol.noIndent li {
  margin-left: 0;
  text-indent: 0;
}

.faq__aInner ul.noIndent li + li,
.faq__aInner ol.noIndent li + li {
  margin-top: 1em;
}

.faq__aInner ul.tal li,
.faq__aInner ol.tal li {
  text-align: left;
}

.faq__aInner dl {
  margin-top: 1em;
}

.faq__aInner dl dt {
  font-size: 32rem;
}

.faq__aInner dl dt small {
  padding-left: 1em;
  color: #9d9d9d;
  vertical-align: middle;
  font-size: 22.4rem;
}

.faq__aInner dl dd {
  margin-left: 0.6em;
  text-indent: -0.6em;
}

.faq__aInner dl + p {
  margin-top: 1em;
}

.faq__aInner a {
  text-decoration: underline;
}

.l-faq {
  padding-top: 256rem;
  padding-bottom: 256rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-faq__header {
  width: 691.2rem;
  padding: 4.8rem 0 0 0;
}

.l-faq .sectionHeading {
  text-align: left;
}

.l-faq .sectionHeading__en {
  padding-left: 0;
  font-size: 64rem;
}

.l-faq .sectionHeading__ja {
  margin-top: 20.8rem;
  padding-left: 0;
  font-size: 28.8rem;
}

.l-faq__contents {
  width: 1305.6rem;
}

.l-faq__button {
  margin: 102.4rem auto 0;
}

.menu {
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: url(../images/top/bg02_pc.jpg) repeat 0 0rem 320rem;
  z-index: 10;
  clip-path: inset(100% 0 0 0);
  -webkit-transition: clip-path 1000ms var(--ease-expo-out), visibility 0ms 1000ms var(--ease-none);
  transition: clip-path 1000ms var(--ease-expo-out), visibility 0ms 1000ms var(--ease-none);
}

.menu.is-open {
  clip-path: inset(0% 0 0 0);
  pointer-events: auto;
  visibility: visible;
  -webkit-transition-delay: 100ms, 0ms;
          transition-delay: 100ms, 0ms;
}

.menu__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  margin: auto;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 80rem 0;
}

.menu__nav {
  padding-top: 6.4rem;
}

.menu__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 112rem;
  opacity: 0;
  -webkit-transition: opacity 0ms 1000ms var(--ease-none);
  transition: opacity 0ms 1000ms var(--ease-none);
}

.is-open .menu__sns {
  opacity: 1;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

.menu__snsItem {
  width: 32rem;
}

.menu__snsItem + .menu__snsItem {
  margin-left: 48rem;
}

.menu__snsIcon {
  width: 32rem;
  height: 32rem;
  fill: #fff;
  -webkit-transition: fill 150ms var(--ease-none);
  transition: fill 150ms var(--ease-none);
}

.menu__subNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 513.6rem;
  margin-top: 84.8rem;
  opacity: 0;
  -webkit-transition: opacity 0ms 1000ms var(--ease-none);
  transition: opacity 0ms 1000ms var(--ease-none);
}

.is-open .menu__subNav {
  opacity: 1;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

.menu__subNavItem {
  margin-top: 44.8rem;
  margin-right: 51.2rem;
  font-size: 22.4rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.menu__subNavItem:nth-last-child(1) {
  margin-right: -1em;
}

.menu__subNavLink {
  color: #fff;
  -webkit-transition: color 150ms var(--ease-none);
  transition: color 150ms var(--ease-none);
}

.menu__conversion {
  overflow: hidden;
  position: relative;
  height: 100%;
  background-color: var(--color-dummy);
  z-index: 0;
}

.menu__conversion .menu__content {
  opacity: 0;
  -webkit-transition: opacity 0ms 1000ms var(--ease-none);
  transition: opacity 0ms 1000ms var(--ease-none);
}

.is-open .menu__conversion .menu__content {
  opacity: 1;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}

.menu__slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transition: -webkit-transform 0ms 1000ms var(--ease-expo-out);
  transition: -webkit-transform 0ms 1000ms var(--ease-expo-out);
  transition: transform 0ms 1000ms var(--ease-expo-out);
  transition: transform 0ms 1000ms var(--ease-expo-out), -webkit-transform 0ms 1000ms var(--ease-expo-out);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.is-open .menu__slides {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
  -webkit-transition-duration: 7000ms;
          transition-duration: 7000ms;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.menu__slide {
  width: 100%;
  height: 100%;
}

.menu__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.menu__slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.menu__logo {
  width: 598.4rem;
  height: 307.2rem;
  margin: 0 auto;
}

.menu__cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 572.8rem;
  margin: 104rem auto 0;
  padding: 12.8rem;
  border-radius: 64rem;
  color: #fff;
  font-size: 32rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  background-color: #FB7F03;
  -webkit-transition: background-color 150ms var(--ease-none);
  transition: background-color 150ms var(--ease-none);
}

.menu__cvIcon {
  width: 76.8rem;
  margin-right: 22.4rem;
}

.menu__cvText {
  padding-top: 3.2rem;
}

.menuNav__item {
  font-size: 57.6rem;
  line-height: 1;
  opacity: 0;
  -webkit-transition: opacity 0ms 1000ms var(--ease-none), -webkit-transform 0ms 1000ms var(--ease-expo-out);
  transition: opacity 0ms 1000ms var(--ease-none), -webkit-transform 0ms 1000ms var(--ease-expo-out);
  transition: opacity 0ms 1000ms var(--ease-none), transform 0ms 1000ms var(--ease-expo-out);
  transition: opacity 0ms 1000ms var(--ease-none), transform 0ms 1000ms var(--ease-expo-out), -webkit-transform 0ms 1000ms var(--ease-expo-out);
  letter-spacing: 0.12em;
}

.is-open .menuNav__item {
  opacity: 1;
  -webkit-transition-duration: 400ms, 1200ms;
          transition-duration: 400ms, 1200ms;
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}

.menuNav__item + .menuNav__item {
  margin-top: 64rem;
}

.menuNav__link {
  color: #fff;
  -webkit-transition: color 150ms var(--ease-none);
  transition: color 150ms var(--ease-none);
}

.menuButton {
  position: fixed;
  top: 57.6rem;
  left: 57.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32rem;
  z-index: 11;
  color: #fff;
  -webkit-transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.pageHeader .menuButton {
  color: #000;
}

.menuButton.is-invert {
  color: #000;
}

.menuButton__icon {
  position: relative;
  display: block;
  width: 51.2rem;
  height: 28.8rem;
}

.menuButton__iconLine {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: currentcolor;
  -webkit-transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.menuButton__icon::before,
.menuButton__icon::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  -webkit-transition: top 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), transform 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), transform 600ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menuButton__icon::before {
  top: -25.6rem;
}

.menuButton__icon::after {
  bottom: -25.6rem;
}

.menuButton__text {
  display: block;
  padding-top: 3.2rem;
  padding-left: 32rem;
  font-size: 22.4rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menuButton__menu {
  display: block;
}

.menuButton__close {
  display: none;
}

.menuButton.is-open .menuButton__icon::before,
.menuButton.is-open .menuButton__icon::after {
  -webkit-transition: top 600ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 600ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 600ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms cubic-bezier(0.19, 1, 0.22, 1), transform 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 600ms cubic-bezier(0.19, 1, 0.22, 1), bottom 600ms cubic-bezier(0.19, 1, 0.22, 1), transform 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 600ms 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.menuButton.is-open .menuButton__icon::before {
  top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.menuButton.is-open .menuButton__icon::after {
  bottom: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.menuButton.is-open .menuButton__iconLine {
  opacity: 0;
  -webkit-transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.menuButton.is-open .menuButton__menu {
  display: none;
}

.menuButton.is-open .menuButton__close {
  display: block;
}

.concept {
  position: relative;
  background-color: #fff;
}

.concept-item-img {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.concept-item-img picture {
  position: relative;
  width: 100%;
  height: 100%;
}

.concept-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept-item-lead {
  line-height: 1;
  color: var(--color-primary);
}

.concept-item-lead svg {
  display: inline-block;
  vertical-align: top;
  fill: currentColor;
}

.concept-item-txt {
  letter-spacing: 0.2em;
}

.concept-item-note li {
  margin-left: 1.2em;
  text-indent: -1.2em;
}

.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2096rem;
  margin: 126.4rem auto 0;
  counter-reset: count;
}

.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 640rem;
}

.features__item + .features__item {
  margin-left: 88rem;
}

.features__texts {
  position: relative;
  margin: -30.4rem 16rem 0 35.2rem;
  z-index: 2;
}

.features__texts::before {
  position: relative;
  left: -3.2rem;
  display: inline;
  counter-increment: count;
  content: counter(count, decimal-leading-zero) " ";
  font-size: 76.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.features__heading {
  margin-top: 43.2rem;
  font-size: 41.6rem;
  line-height: 1.7;
  letter-spacing: 0.16em;
}

.features__headingStrong {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(68%, transparent), color-stop(68%, #52AD43), color-stop(98%, #52AD43), to(transparent));
  background-image: linear-gradient(transparent 68%, #52AD43 68%, #52AD43 98%, transparent 100%);
  background-size: 98% 100%;
  background-repeat: no-repeat;
}

.features__description {
  margin-top: 28.8rem;
  font-size: 28.8rem;
  line-height: 2;
  letter-spacing: 0.2em;
}

.features__descriptionStrong {
  color: #FB7F03;
}

.features__image {
  overflow: hidden;
  border-radius: 25.6rem;
}

.l-features {
  padding: 260.8rem 0 252.8rem;
  background: #fff;
}

.forYou__item {
  position: absolute;
}

.forYou__item.forYouItem01 {
  top: 540.8rem;
  left: 912rem;
  width: 771.2rem;
}

.forYou__item.forYouItem02 {
  top: 307.2rem;
  left: 232rem;
  width: 563.2rem;
}

.forYou__item.forYouItem03 {
  top: 345.6rem;
  left: 1825.6rem;
  width: 484.8rem;
}

.forYou__item.forYouItem04 {
  top: 1366.4rem;
  left: 1097.6rem;
  width: 585.6rem;
}

.forYou__item.forYouItem05 {
  top: 918.4rem;
  left: 152rem;
  width: 785.6rem;
}

.forYou__item.forYouItem06 {
  top: 884.8rem;
  left: 1747.2rem;
  width: 710.4rem;
}

.forYou__text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  color: var(--color-accent);
  line-height: 1;
  z-index: 2;
}

.forYou__text.-large {
  font-size: 32rem;
}

.forYou__text.-small {
  font-size: 25.6rem;
}

.forYou__text.-largeSmall {
  font-size: 32rem;
}

.forYouItem01 .forYou__text {
  top: 390.4rem;
  left: -51.2rem;
}

.forYouItem02 .forYou__text {
  top: 307.2rem;
  left: -38.4rem;
}

.forYouItem03 .forYou__text {
  top: 275.2rem;
  left: -38.4rem;
}

.forYouItem04 .forYou__text {
  top: 267.2rem;
  left: -38.4rem;
}

.forYouItem05 .forYou__text {
  top: 507.2rem;
  left: -27.2rem;
}

.forYouItem05 .forYou__text .forYou__line.-item5 {
  display: none;
}

.forYouItem06 .forYou__text {
  top: 336rem;
  left: -38.4rem;
}

.forYou__line {
  overflow: hidden;
  position: relative;
  border-radius: 6.4rem;
  background-color: #fff;
  white-space: nowrap;
  letter-spacing: 0.2em;
}

.-large .forYou__line {
  margin-bottom: 9.6rem;
  padding: 24rem calc(22.4rem - 0.2em) 16rem 22.4rem;
}

.-small .forYou__line {
  margin-bottom: 6.4rem;
  padding: 19.2rem calc(19.2rem - 0.2em) 14.4rem 19.2rem;
}

.-largeSmall .forYou__line {
  margin-bottom: 9.6rem;
  padding: 24rem calc(22.4rem - 0.2em) 16rem 22.4rem;
}

.l-forYou {
  overflow: hidden;
  position: relative;
  padding: 262.4rem 0 256rem;
  height: 2091.2rem;
}

.howToUse {
  width: 2112rem;
  margin: 124.8rem auto 0;
}

.howToUse__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.howToUse__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 528rem;
  text-align: center;
}

.howToUse__item + .howToUse__item::before {
  position: absolute;
  top: 190.4rem;
  left: -40rem;
  display: block;
  content: "";
  width: 81.6rem;
  height: 28.8rem;
  background: url(../images/top/howToUse/ico_arrow_pc.svg) no-repeat 0 0/contain;
}

.howToUse__heading {
  margin-top: 62.4rem;
  padding-left: 0.2em;
  color: var(--color-accent);
  font-size: 32rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.howToUse__description {
  margin-top: 38.4rem;
  padding-left: 0.2em;
  font-size: 24rem;
  line-height: 2;
  letter-spacing: 0.2em;
}

.howToUse__description a {
  color: var(--color-accent);
  padding-right: 3.2rem;
  border-bottom: currentColor solid 1.6rem;
}

.howToUse__description a::after {
  position: relative;
  top: 3.2rem;
  display: inline-block;
  content: "";
  width: 25.6rem;
  height: 25.6rem;
  background: url(../images/top/howToUse/ico_link.svg) no-repeat 0 0/contain;
}

.howToUse__description sup {
  font-size: 60%;
}

.howToUse__image {
  overflow: hidden;
  width: 409.6rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 25.6rem;
}

.howToUse__footnote {
  margin-top: 124.8rem;
  color: #9d9d99;
  font-size: 22.4rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.howToUse__footnoteItem {
  margin-top: 19.2rem;
}

.howToUse__footnoteItem::before {
  display: inline;
  content: "※ ";
}

.l-howToUse {
  padding: 260.8rem 0 256rem;
  background-color: #fff;
}

.l-howToUse .sectionHeading__ja {
  margin-top: 27.2rem;
}

.kv {
  -webkit-box-sizing: initial;
          box-sizing: initial;
  position: relative;
  width: 100%;
  height: 100svh;
  z-index: 0;
  background: var(--color-primary);
}

.kv video {
  max-inline-size: inherit !important;
}

.kv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 963.2rem;
  height: 494.4rem;
  z-index: 10;
  -webkit-transform: translate(-50%, calc(-50% - 9.6rem));
          transform: translate(-50%, calc(-50% - 9.6rem));
}

.kv__bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  will-change: opacity;
}

.kv__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.kv__cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.kv__bgVideo {
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.magazine {
  position: relative;
  width: 1996.8rem;
  margin: 126.4rem auto 0;
}

.magazine__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.magazine__item {
  min-width: 608rem;
  margin-right: 86.4rem;
}

.magazine__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-decoration: none;
}

.magazine__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 44.8rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.magazine__name {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 22.4rem;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.magazine__date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  color: #b9bdb9;
  font-family: AvenirLTPro-Heavy, serif;
  font-weight: 800;
  font-size: 22.4rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
}

.magazine__description {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: calc(100% + 0.12em);
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: justify;
}

.magazine__image {
  overflow: hidden;
  border-radius: 25.6rem;
}

.magazine .slider03__pager {
  display: none;
}

.l-magazine {
  overflow: hidden;
  padding: 260.8rem 0 252.8rem;
  background-color: #fff;
}

.medicine__selectors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 2099.2rem;
  margin: 139.2rem auto 0;
}

.medicine__selectorsItem {
  margin: 9.6rem;
  padding: 22.4rem 26.88rem 16rem 28.8rem;
  border-radius: 32rem;
  background-color: #fff;
  font-size: 25.6rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
}

.medicine__selectorsItem.is-active,
.medicine__selectorsItem:hover {
  color: #fff;
  background-color: #FB7F03;
}

.medicine__items {
  overflow: hidden;
  position: relative;
  margin-top: 118.4rem;
  -webkit-transition: height 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: height 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.medicine__item {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  -webkit-transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  z-index: 0;
}

.medicine__item.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

.medicine__wrapper {
  overflow: hidden;
  height: 1152rem;
}

.medicine__list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64rem 1fr 64rem 1fr 64rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 64rem;
  grid-row-gap: 64rem;
  width: 2099.2rem;
  margin: 0 auto;
}

.medicine__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.medicine__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.medicine__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.medicine__list > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.medicine__listItem {
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 476.8rem;
  min-height: 454.4rem;
  height: 100%;
  border-radius: 25.6rem;
  background-color: #fff;
  cursor: pointer;
}

.medicine__listItem:nth-child(-n+4) {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.medicine__listItem.is-show {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.medicine__listTexts {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  min-height: 134.4rem;
  padding: 3.2rem 104rem 0 38.4rem;
}

.medicine__listTexts:has(.generic) {
  padding-top: 9.6rem;
}

.medicine__listTexts.-nameLong {
  padding-top: 35.2rem;
}

.medicine__listName {
  display: block;
  color: var(--color-accent);
  font-size: 32rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  overflow-wrap: break-word;
}

.medicine__listName.-nameLong {
  font-size: 27.2rem;
  line-height: 1.64;
}

.medicine__listName:has(.generic) {
  line-height: 1;
}

.medicine__listName .generic {
  display: inline-block;
  margin-top: 3.2rem;
  font-size: 19.2rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.medicine__listIcon {
  display: block;
  position: absolute;
  top: 50%;
  right: 38.4rem;
  width: 57.6rem;
  height: 57.6rem;
  background-color: #f7f7f5;
  border-radius: 50%;
  -webkit-transform: translateY(calc(-50% - 3.2rem));
          transform: translateY(calc(-50% - 3.2rem));
  -webkit-transition: background-color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: background-color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.medicine__listIcon::before,
.medicine__listIcon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 19.2rem;
  height: 3.2rem;
  background-color: var(--color-primary);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: background-color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: background-color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.medicine__listIcon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.medicine__listImage {
  display: block;
  height: 320rem;
}

.medicine__listImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.medicine__slider {
  width: 2099.2rem;
  margin: 0 auto;
  padding-bottom: 153.6rem;
  visibility: visible;
}

.l-medicine {
  padding: 16% 0 256rem;
  background-color: #f6f7f7;
}

.l-medicine .section__lead {
  margin-top: 129.6rem;
}

.l-medicine .sectionHeading__ja {
  margin-top: 27.2rem;
}

.l-medicine .buttonMore {
  margin: 128rem auto 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(100% 0 0 0);
  pointer-events: none;
  visibility: hidden;
  z-index: 100;
  -webkit-transition: clip-path 1000ms cubic-bezier(0.19, 1, 0.22, 1), visibility 0ms 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: clip-path 1000ms cubic-bezier(0.19, 1, 0.22, 1), visibility 0ms 1000ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.modal.is-open {
  clip-path: inset(0% 0 0 0);
  pointer-events: auto;
  visibility: visible;
  -webkit-transition-delay: 100ms, 0ms;
          transition-delay: 100ms, 0ms;
}

.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/bg02_pc.jpg) repeat 0 0rem 320rem;
  z-index: -1;
}

.modal__contents {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  opacity: 0;
  -webkit-transition: opacity 0ms 500ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0ms 500ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0ms 500ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 0ms 500ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0ms 500ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0ms 500ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0ms 500ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 0ms 500ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0ms 500ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 10vh, 0);
          transform: translate3d(0, 10vh, 0);
}

.is-open .modal__contents {
  opacity: 1;
  -webkit-transition-delay: 500ms, 500ms;
          transition-delay: 500ms, 500ms;
  -webkit-transition-duration: 200ms, 1000ms;
          transition-duration: 200ms, 1000ms;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.modal__body {
  display: none;
  overflow: hidden;
  width: 1996.8rem;
  margin: 246.4rem auto;
  border-radius: 38.4rem;
  background-color: #fff;
}

.modal__closeButton {
  position: absolute;
  top: 64rem;
  right: 64rem;
  width: 44.8rem;
  height: 27.2rem;
  padding: 32rem;
  color: #fff;
  -webkit-transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.modal__closeButton::before,
.modal__closeButton::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 46.4rem;
  height: 3.2rem;
  content: "";
  background-color: currentColor;
}

.modal__closeButton::before {
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
          transform: translate(-50%, -50%) rotate(30deg);
}

.modal__closeButton::after {
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
          transform: translate(-50%, -50%) rotate(-30deg);
}

.modalMedicine .modal__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 96rem;
  padding-bottom: 96rem;
}

.modalMedicine__body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: auto;
}

.modalMedicine__body.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modalMedicine__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  padding: 64rem 140.8rem;
}

.modalMedicine__textsInner {
  width: 100%;
  padding-top: 1.6rem;
}

.modalMedicine__name {
  color: var(--color-accent);
  font-size: 51.2rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.modalMedicine__name span {
  display: inline-block;
  margin-left: 3.2rem;
  font-size: 28.8rem;
  letter-spacing: 0.12em;
}

.modalMedicine__name br {
  display: none;
}

.modalMedicine__otherProduct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4.8rem;
  color: var(--color-accent);
  font-size: 22.4rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.modalMedicine__otherProduct + .modalMedicine__description {
  margin-top: 40rem;
}

.modalMedicine__description {
  width: calc(100% + 0.12em);
  margin-top: 33.6rem;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: justify;
}

.modalMedicine__description + .modalMedicine__description {
  margin-top: 25.6rem;
}

.modalMedicine__footnote {
  margin-top: 24rem;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 22.4rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.modalMedicine__footnote + .modalMedicine__prices {
  margin-top: 60.8rem;
}

.modalMedicine__prices {
  margin-top: 59.2rem;
}

.modalMedicine__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 22.4rem;
}

.modalMedicine__priceLabel {
  margin-right: 19.2rem;
  padding: 17.6rem calc(24rem - 0.12em) 11.2rem 24rem;
  border: #edede8 solid 1px;
  border-radius: 160rem;
  font-size: 20.8rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.modalMedicine__priceLabel.-number {
  padding: 16rem calc(24rem - 0.12em) 12.8rem 24rem;
}

.modalMedicine__priceContents {
  padding-top: 9.6rem;
  color: #FB7F03;
  font-size: 25.6rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.modalMedicine__priceContentsStrong {
  font-size: 41.6rem;
  letter-spacing: 0.12em;
}

.modalMedicine__priceContentsStrongSpan {
  letter-spacing: 0.01em;
}

.modalMedicine__pricesFootnote {
  margin-top: 28.8rem;
  margin-bottom: -1.6rem;
  margin-left: 1em;
  text-indent: -1em;
  color: #b9bdb9;
  font-size: 19.2rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.modalMedicine__image {
  width: 50%;
  background-color: var(--color-dummy);
}

.modalMedicine__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.modalMedicine__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modalPrice__body {
  display: block;
  margin: 204.8rem 281.6rem;
  padding: 172.8rem 166.4rem 204.8rem;
}

.modalPrice__header {
  position: relative;
  text-align: center;
  padding-bottom: 115.2rem;
}

.modalPrice__header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1.6rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#b9bdb9), color-stop(25%, #b9bdb9), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(75%, #b9bdb9), to(#b9bdb9));
  background-image: linear-gradient(90deg, #b9bdb9, #b9bdb9 25%, transparent 25%, transparent 75%, #b9bdb9 75%, #b9bdb9 100%);
  background-repeat: repeat-x;
  background-size: 6.4rem 1.6rem;
}

.modalPrice__title {
  color: var(--color-accent);
  padding-left: 0.2em;
  font-size: 51.2rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.modalPrice__lead {
  margin-top: 46.4rem;
  padding-left: 0.12em;
  font-size: 28.8rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.modalPrice__leadStrong {
  color: #FB7F03;
}

.modalPrice__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 128rem;
}

.modalPrice__section + .modalPrice__section {
  position: relative;
  margin-top: 142.4rem;
}

.modalPrice__heading {
  padding-bottom: 32rem;
  padding-left: 0.12em;
  color: var(--color-accent);
  font-size: 38.4rem;
  letter-spacing: 0.12em;
}

.modalPrice__description {
  margin-top: 51.2rem;
  padding-left: 0.12em;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: center;
}

.modalPrice__table {
  width: 864rem;
  margin: 60.8rem auto 0;
}

.ourDoctors {
  margin-top: 126.4rem;
}
.ourDoctors--case {
  width: 89.3333333333%;
  margin: 0 auto;
  overflow: hidden;
}
.ourDoctors--case .ourDoctors__item {
  width: 100%;
}

.ourDoctors__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.ourDoctors__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 1484.8rem;
  margin: 0 51.2rem;
  border-radius: 25.6rem;
  overflow: visible;
  background-color: #EDF1F6;
  padding: 102.4rem 102.4rem 112rem;
}

.ourDoctors__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ourDoctors__profileText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 3.2rem;
}

.ourDoctors__name {
  color: #52AD43;
  font-size: 41.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.ourDoctors__experience {
  display: inline-block;
  margin-top: 20.8rem;
  padding: 16rem 0 12.8rem;
  border-radius: 160rem;
  font-size: 20.8rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.ourDoctors__image {
  overflow: hidden;
  width: 18.333rem;
  height: 18.333rem;
  border-radius: 16rem;
  margin-right: 64rem;
}

.ourDoctors__qAndAs {
  width: 1280rem;
  margin: 97.6rem auto 0;
}

.ourDoctors__qAndA {
  position: relative;
}

.ourDoctors__qAndA + .ourDoctors__qAndA {
  margin-top: 54.4rem;
  padding-top: 78.4rem;
}

.ourDoctors__qAndA + .ourDoctors__qAndA::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1.6rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#e6e6e4), color-stop(25%, #e6e6e4), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(75%, #e6e6e4), to(#e6e6e4));
  background-image: linear-gradient(90deg, #e6e6e4, #e6e6e4 25%, transparent 25%, transparent 75%, #e6e6e4 75%, #e6e6e4 100%);
  background-repeat: repeat-x;
  background-size: 6.4rem 1.6rem;
}

.ourDoctors__q {
  position: relative;
  width: calc(100% + 0.35em);
  padding-left: 65.6rem;
  color: #52AD43;
  font-size: 32rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.ourDoctors__q::before {
  position: absolute;
  top: -3.2rem;
  left: 0;
  display: inline-block;
  content: "Q.";
  font-size: 38.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.ourDoctors__a {
  position: relative;
  width: calc(100% + 0.09em);
  margin-top: 36.8rem;
  padding-left: 65.6rem;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.09em;
  text-align: justify;
}

.ourDoctors__a::before {
  position: absolute;
  top: 6.4rem;
  left: 0;
  display: inline-block;
  content: "A.";
  color: #FB7F03;
  font-size: 38.4rem;
  line-height: 1;
  letter-spacing: 0.2em;
  opacity: 0;
}

.ourDoctors__aJa {
  font-family: FP-KoburinaGoStdN-W6, sans-serif;
}

.l-ourDoctors {
  overflow: hidden;
  padding: 260.8rem 0 252.8rem;
}

.l-ourDoctors .sectionHeading__ja {
  margin-top: 25.6rem;
}

.question {
  margin-top: 118.4rem;
  padding-top: 44.8rem;
  padding-bottom: 38.4rem;
}

.question__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.question__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 1484.8rem;
  margin: 0 51.2rem;
  border-radius: 25.6rem;
  overflow: visible;
  background-color: #fff;
  padding: 108.8rem 128rem 112rem;
}

.question__item__note {
  margin-top: 38.4rem;
  font-size: 22.4rem;
}

.question__shape {
  position: absolute;
  z-index: 10;
  width: 156.8rem;
  height: 121.6rem;
}

.question__shape svg {
  width: 156.8rem;
  height: 121.6rem;
  fill: #EDEDE8;
}

.question__shape.-shape1 {
  top: -38.4rem;
  left: 64rem;
}

.question__shape.-shape2 {
  right: 64rem;
  bottom: -38.4rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.question__q {
  padding-left: 0.2em;
  padding-bottom: 48rem;
  color: var(--color-accent);
  font-size: 48rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.question__a {
  position: relative;
  line-height: 1.5;
  padding-left: 240rem;
  margin-top: 73.6rem;
  word-break: break-all;
}

.question__title {
  padding-top: 4.8rem;
  font-size: 41.6rem;
  line-height: 1.7;
  letter-spacing: 0.2em;
}

.question__titleStrong {
  color: #FB7F03;
}

.question__image {
  overflow: hidden;
  width: 176rem;
  height: 176rem;
  border-radius: 19.2rem;
}

.question__description {
  width: calc(100% + 0.12em);
  text-align: justify;
  margin-top: 49.6rem;
  font-size: 28.8rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.question__summary {
  margin-top: 2rem;
  font-size: 2.6rem;
  line-height: 2;
}

.question__description + .question__description {
  margin-top: 25.6rem;
}

.question__descriptionUnderline {
  text-decoration: underline;
}

.question__footnote {
  margin-top: 40rem;
  font-size: 19.2rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.question__footnote + .question__footnote {
  margin-top: 1em;
}

.question__footnote a {
  text-decoration: underline;
}

.question__footnote a:hover {
  text-decoration: none;
}

.l-question {
  overflow: hidden;
  padding: 260.8rem 0 252.8rem;
}

.l-question .sectionHeading__ja {
  margin-top: 27.2rem;
}

.service {
  position: relative;
  width: 2099.2rem;
  margin: 148.8rem auto 0;
}

.service__content {
  display: none;
  padding: 128rem 128rem 126.4rem;
  border-radius: 0 0 38.4rem 38.4rem;
  background-color: #F0F0F0;
  -webkit-transition: visibility 150ms var(--ease-none), opacity 150ms var(--ease-none);
  transition: visibility 150ms var(--ease-none), opacity 150ms var(--ease-none);
}

.service__content.is-show {
  display: block;
}

.serviceTab {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-bottom: 4.8rem solid #63bc4a;
  background-color: #fff;
  z-index: 2;
}

.serviceTab__item {
  overflow: hidden;
  border-radius: 38.4rem 38.4rem 0 0;
}
.serviceTab__item.is-active a {
  color: #fff;
  background: #63bc4a;
}

.serviceTab__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1043.2rem;
  padding: 52.8rem 0 43.2rem 0.2em;
  font-size: 32rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  background-color: #E8E8E2;
  -webkit-transition: visibility 120ms var(--ease-none), background-color 120ms var(--ease-none), background-color 120ms var(--ease-none), color 120ms var(--ease-none);
  transition: visibility 120ms var(--ease-none), background-color 120ms var(--ease-none), background-color 120ms var(--ease-none), color 120ms var(--ease-none);
}

.serviceFlow {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 19.2rem;
  counter-reset: flow 0;
}

.serviceFlow__item {
  position: relative;
}

.serviceFlow__item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 1.6rem;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e4), color-stop(25%, #e6e6e4), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(75%, #e6e6e4), to(#e6e6e4));
  background-image: linear-gradient(#e6e6e4, #e6e6e4 25%, transparent 25%, transparent 75%, #e6e6e4 75%, #e6e6e4 100%);
  background-repeat: repeat-y;
  background-size: 1.6rem 6.4rem;
}

.serviceFlow__item:nth-child(1) {
  width: 614.4rem;
}

.-flowContain2 .serviceFlow__item:nth-child(1) {
  width: 50%;
}

.serviceFlow__item:nth-child(1)::before {
  display: none;
}

.serviceFlow__item:nth-child(1) .serviceFlow__header::after {
  display: none;
}

.serviceFlow__item:nth-child(2) {
  width: 614.4rem;
}

.-flowContain2 .serviceFlow__item:nth-child(2) {
  width: 50%;
}

.serviceFlow__item:nth-child(3) {
  width: 614.4rem;
}

.serviceFlow__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35.2rem 0 28.8rem;
  color: #fff;
  font-size: 28.8rem;
  letter-spacing: 0.12em;
  background-color: #7fd14f;
  counter-increment: flow 1;
}

.serviceFlow__header::before {
  display: inline-block;
  content: counter(flow);
  width: 41.6rem;
  height: 41.6rem;
  margin-top: -3.2rem;
  margin-right: 14.4rem;
  padding-top: 12.8rem;
  border-radius: 50%;
  color: #7fd14f;
  font-family: AvenirLTPro-Heavy, serif;
  font-size: 20.8rem;
  background-color: #fff;
  text-align: center;
  letter-spacing: 0;
  -webkit-transform: translateY(-1.6rem);
          transform: translateY(-1.6rem);
}

.serviceFlow__header::after {
  position: absolute;
  top: 0;
  left: 0rem;
  display: block;
  content: "";
  width: 24rem;
  height: 102.4rem;
  background: url(../images/common/bg_arrow.png) no-repeat 0 0/contain;
}

.serviceFlow__headerTime {
  position: relative;
  top: -1.6rem;
  margin-left: 9.6rem;
  font-size: 22.4rem;
  letter-spacing: 0.12em;
}

.serviceFlow__headerTime::before,
.serviceFlow__headerTime::after {
  display: inline;
  content: "-";
}

.serviceFlow__body {
  padding: 76.8rem 0 73.6rem;
}

.serviceFlow__image {
  overflow: hidden;
  width: 441.6rem;
  margin: 0 auto;
  border-radius: 12.8rem;
}

.serviceFlow__texts {
  margin-top: 56rem;
  text-align: center;
}

.serviceFlow__text {
  position: relative;
}

.serviceFlow__text + .serviceFlow__text {
  margin-top: 52.8rem;
}

.serviceFlow__text + .serviceFlow__text::before {
  position: absolute;
  top: -36.8rem;
  left: 50%;
  display: block;
  content: "";
  width: 17.6rem;
  height: 12.8rem;
  background: url(../images/common/ico_triangle.svg) no-repeat 0 0/contain;
  -webkit-transform: translateX(-46%);
          transform: translateX(-46%);
}

.serviceFlow__lead {
  padding-left: 0.2em;
  color: #4fad34;
  font-size: 32rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.serviceFlow__description {
  margin-top: 11.2rem;
  padding-left: 0.2em;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.serviceFlow__footnote {
  margin: 16rem 0 0 14.4rem;
  color: #b9bdb9;
  font-size: 19.2rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.servicePrices {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1843.2rem;
  margin: 88rem auto 0;
  padding-top: 65.6rem;
}

.servicePrices::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1.6rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#e6e6e4), color-stop(25%, #e6e6e4), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(75%, #e6e6e4), to(#e6e6e4));
  background-image: linear-gradient(90deg, #e6e6e4, #e6e6e4 25%, transparent 25%, transparent 75%, #e6e6e4 75%, #e6e6e4 100%);
  background-repeat: repeat-x;
  background-size: 6.4rem 1.6rem;
}

.servicePrices__illust {
  width: 90%;
  margin: 5rem auto 0;
}

.servicePrices__speech {
  padding-left: 0.2em;
  padding-bottom: 56rem;
  color: #FB7F03;
  font-size: 41.6rem;
  letter-spacing: 0.2em;
}

.servicePrices__lead {
  margin-top: 52.8rem;
  padding-left: 0.2em;
  font-size: 32rem;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.2em;
}

.servicePrices__small {
  display: inline-block;
  margin-top: 8rem;
  font-size: 19.2rem;
  line-height: 1;
  letter-spacing: 0.12em;
  vertical-align: top;
}

.servicePrices__small a {
  text-decoration: underline;
}

.servicePrices__strong {
  color: #FB7F03;
  letter-spacing: 0.12em;
}

.servicePrices__strong--blue {
  color: #52AD43;
}

.servicePrices__strongStrong {
  font-size: 51.2rem;
  letter-spacing: 0.12em;
}

.-contents02 .servicePrices__strongStrong {
  font-size: 32rem;
}

.servicePrices__strongSmall {
  display: inline-block;
  margin-bottom: 11.2rem;
  font-size: 22.4rem;
  letter-spacing: 0.12em;
}

.servicePrices__number01 {
  font-size: 32rem;
  letter-spacing: 0.12em;
}

.servicePrices__number02 {
  letter-spacing: 0;
}

.-contents02 .servicePrices__number02 {
  letter-spacing: 0.12em;
}

.servicePrices__number03 {
  position: relative;
  display: inline-block;
  top: -1.6rem;
}

.servicePrices__plus {
  position: relative;
  display: inline-block;
  width: 22.4rem;
  height: 22.4rem;
  margin-right: 9.6rem;
  margin-bottom: 1.6rem;
}

.-contents02 .servicePrices__plus {
  width: 19.2rem;
  height: 19.2rem;
}

.servicePrices__plus::before,
.servicePrices__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  background-color: #FB7F03;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.servicePrices__plus::before {
  width: 100%;
  height: 4.8rem;
}

.-contents02 .servicePrices__plus::before {
  height: 3.2rem;
}

.servicePrices__plus::after {
  width: 4.8rem;
  height: 100%;
}

.-contents02 .servicePrices__plus::after {
  width: 3.2rem;
}

.servicePricesFootnote {
  margin-top: 54.4rem;
  padding-left: 0.12em;
  color: #b9bdb9;
  font-size: 22.4rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: center;
}

.servicePricesFootnoteList {
  display: inline-block;
  text-align: left;
}

.servicePricesFootnote__item {
  text-indent: -1em;
  margin-left: 1em;
}

.servicePricesFootnote__item + .servicePricesFootnote__item {
  margin-top: 6.4rem;
}

.servicePrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 908.8rem;
  margin-top: 25.6rem;
  border-radius: 19.2rem;
  background-color: #fafaf7;
}

.servicePrice01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 94.4rem 0 84.8rem;
}

.servicePrice02 {
  padding: 44.8rem 48rem 44.8rem 60.8rem;
}

.servicePrice02 .servicePrice__content:nth-child(2) {
  margin-top: 12.8rem;
  margin-left: 12.8rem;
}

.servicePrice02 .servicePrice__content:nth-child(3) {
  padding-top: 6.4rem;
  margin-left: 20.8rem;
}

.servicePrice03 {
  padding: 0rem 32rem 0 54.4rem;
}

.servicePrice03 .servicePrice__content:nth-child(2) {
  margin-top: 12.8rem;
  margin-left: 19.2rem;
}

.servicePrice03 .servicePrice__content:nth-child(3) {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 35.2rem;
  padding-top: 38.4rem;
}

.servicePrice04 {
  padding: 44.8rem 48rem 41.6rem 124.8rem;
}

.servicePrice04 .servicePrice__content:nth-child(1) {
  letter-spacing: 0.12em;
}

.servicePrice04 .servicePrice__content:nth-child(2) {
  margin-left: 24rem;
}

.servicePrice04 .servicePrices__number03 {
  display: inline;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.servicePrice05 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 36.8rem 32rem 0 94.4rem;
}

.servicePrice05 .servicePrice__content:nth-child(1) {
  margin-top: 1.6rem;
  letter-spacing: 0.12em;
}

.servicePrice05 .servicePrice__content:nth-child(2) {
  margin-left: 35.2rem;
  line-height: 1;
}

.servicePrice05 .servicePrices__small {
  margin-top: 16rem;
}

.servicePrice05 .servicePrices__strongSmall {
  margin-bottom: 14.4rem;
}

.servicePrice05 .servicePrices__number03 {
  display: inline;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.servicePrice__content {
  font-size: 25.6rem;
}

.servicePrice__content a {
  cursor: pointer;
}

.servicePrice__content:nth-child(2) {
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.servicePrice__icon {
  width: 64rem;
  height: 64rem;
}

.servicePricesPlans01 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 65.6rem;
}

.servicePricesPlans01::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 1.6rem;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e4), color-stop(25%, #e6e6e4), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(75%, #e6e6e4), to(#e6e6e4));
  background-image: linear-gradient(#e6e6e4, #e6e6e4 25%, transparent 25%, transparent 75%, #e6e6e4 75%, #e6e6e4 100%);
  background-repeat: repeat-y;
  background-size: 1.6rem 6.4rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.servicePricesPlans01__header {
  width: 50%;
  padding: 0 0 0 185.6rem;
}

.servicePricesPlans01__lead {
  font-size: 32rem;
  line-height: 2;
  letter-spacing: 0.2em;
}

.servicePricesPlans01__body {
  width: 50%;
  padding-top: 28.8rem;
  padding-left: 0.3em;
  text-align: center;
}

.servicePricesPlans01__text {
  font-size: 32rem;
  letter-spacing: 0.12em;
}

.servicePricesPlans01__number01 {
  font-size: 41.6rem;
  letter-spacing: 0.12em;
}

.servicePricesPlans01__number02 {
  letter-spacing: 0;
}

.servicePricesPlans01__strong {
  margin-left: -0.1em;
}

.servicePricesPlans01__strongStrong {
  font-size: 70.4rem;
  letter-spacing: 0.12em;
}

.servicePricesPlans01__footnote {
  margin-top: 14.4rem;
  font-size: 22.4rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.servicePricesPlans02 {
  margin-top: 59.2rem;
  margin-bottom: 4.8rem;
}

.servicePricesPlans02__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1638.4rem;
}

.servicePricesPlans02__item {
  overflow: hidden;
  width: 499.2rem;
  padding-bottom: 30.4rem;
  border-radius: 12.8rem;
  background-color: #F0F0F0;
}

.servicePricesPlans02__breath {
  position: relative;
  -ms-grid-column-align: center;
      justify-self: center;
  margin-top: 25.6rem;
  min-width: 136rem;
  min-width: 0;
  width: 100%;
  padding: 11.2rem 12.8rem 6.4rem calc(12.8rem + 0.12em);
  border: currentColor solid 1.6rem;
  border-radius: 20.8rem;
  color: #FB7F03;
  font-size: 19.2rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
}

.servicePricesPlans02__breath + .servicePricesPlans02__text .servicePricesPlans02__description {
  margin-top: 19.2rem;
}

.servicePricesPlans02__breath + .servicePricesPlans02__text .servicePricesPlans02__description + .servicePricesPlans02__expense {
  margin-top: 9.6rem;
}

.servicePricesPlans02__time {
  padding: 14.4rem 0 11.2rem 0.12em;
  color: #fff;
  font-size: 25.6rem;
  line-height: 1;
  background-color: #fc7628;
  text-align: center;
  letter-spacing: 0.12em;
}

.servicePricesPlans02__description {
  margin-top: 54.4rem;
  padding-left: 0.12em;
  font-size: 22.4rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.12em;
}

.servicePricesPlans02__expense {
  margin-top: 40rem;
  color: #FB7F03;
  font-size: 25.6rem;
  text-align: center;
  letter-spacing: 0.12em;
}

.servicePricesPlans02__strong {
  display: inline-block;
  padding-left: 0.1em;
  font-weight: 800;
  font-size: 44.8rem;
  letter-spacing: 0.12em;
  -webkit-transform: translateY(1.6rem);
          transform: translateY(1.6rem);
}

.servicePricesPlans02__number01 {
  font-weight: 800;
  font-size: 32rem;
  letter-spacing: 0.12em;
}

.servicePricesPlans02__number02 {
  letter-spacing: 0.01em;
}

.servicePricesPlans02__footnote {
  margin-top: 51.2rem;
  margin-bottom: -3.2rem;
  padding-left: 0.2em;
  font-size: 22.4rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: center;
}

.l-service {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 260.8rem 0 256rem;
}

.l-service .sectionHeading__ja {
  margin-top: 27.2rem;
}

.sns {
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  padding: 0 0 307.2rem;
}

.sns__lane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
}

.is-inView .sns__lane {
  -webkit-animation: lane01pc 120s linear infinite;
          animation: lane01pc 120s linear infinite;
}

.sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.sns__item {
  overflow: hidden;
  margin-right: 51.2rem;
  border-radius: 38.4rem;
  height: 600rem;
}

.sns__item:nth-child(1) {
  width: 900.8rem;
}

.sns__item:nth-child(2) {
  width: 600rem;
}

.sns__item:nth-child(3) {
  width: 900.8rem;
}

.sns__item:nth-child(4) {
  width: 900.8rem;
}

.sns__item:nth-child(5) {
  width: 600rem;
}

.sns__item:nth-child(6) {
  width: 900.8rem;
}

.sns__item:nth-child(7) {
  width: 600rem;
}

.sns__item:nth-child(8) {
  width: 900.8rem;
}

@-webkit-keyframes lane01pc {
  100% {
    -webkit-transform: translate3d(-6713.6rem, 0, 0);
            transform: translate3d(-6713.6rem, 0, 0);
  }
}

@keyframes lane01pc {
  100% {
    -webkit-transform: translate3d(-6713.6rem, 0, 0);
            transform: translate3d(-6713.6rem, 0, 0);
  }
}
@-webkit-keyframes lane01sp {
  100% {
    -webkit-transform: translate3d(-559.4666666667rem, 0, 0);
            transform: translate3d(-559.4666666667rem, 0, 0);
  }
}
@keyframes lane01sp {
  100% {
    -webkit-transform: translate3d(-559.4666666667rem, 0, 0);
            transform: translate3d(-559.4666666667rem, 0, 0);
  }
}
.statement {
  position: relative;
  padding: 347.2rem 0 361.6rem;
  background-color: #F0F0F0;
}

.statement__images {
  position: absolute;
  top: 320rem;
  left: 230.4rem;
  width: 800rem;
}

.statement__image {
  overflow: hidden;
  width: 800rem;
  height: 1131.2rem;
  border-radius: 38.4rem;
}

.statement__image.-i02 {
  position: absolute;
  right: -156.8rem;
  bottom: -320rem;
  width: 470.4rem;
  height: 470.4rem;
}

.statement__texts {
  margin-left: 1387.2rem;
}

.statement__lead {
  width: 764.8rem;
  margin-left: 6.4rem;
}

.statement__description {
  margin-top: 131.2rem;
  font-size: 32rem;
  line-height: 2.6;
  letter-spacing: 0.28em;
}

.statement__description + .statement__description {
  margin-top: 38.4rem;
}

.statement__description.-alphabet {
  margin-top: 35.2rem;
  margin-bottom: 40rem;
}

.statement__description.-strong {
  margin-top: 57.6rem;
  font-size: 38.4rem;
}

.statement__conclusion {
  width: 1219.2rem;
  margin: 177.6rem 0 0 668.8rem;
}

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 2099.2rem;
  margin: 147.2rem auto 0;
}

.steps__contents {
  overflow: hidden;
  position: relative;
  width: 1475.2rem;
  border-radius: 25.6rem;
  background-color: #fff;
}

.steps__contentsList {
  position: relative;
  width: 100%;
  height: 100%;
}

.steps__contentsItem {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  padding: 0 0 6.4rem 102.4rem;
}

.steps__contentsItem.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.steps__contentsItem.-titleLine2 {
  padding: 3.2rem 0 0 102.4rem;
}

.steps__contentsItem.-titleLine2 .step__title {
  margin-top: 24rem;
  line-height: 1.6;
}

.steps__contentsItem.-titleLine2 .step__title::before {
  bottom: -14.4rem;
}

.steps__contentsItem.-titleLine2 .step__description {
  margin-top: 67.2rem;
}

.steps__contents .step__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.steps__contents .step__tagline2 {
  display: inline-block;
  padding: 8rem 6.4rem 4.8rem 11.2rem;
  border-radius: 6.4rem;
  color: #fff;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 20.8rem;
  text-transform: uppercase;
  background-color: var(--color-primary);
  letter-spacing: 0.12em;
}

.steps__contents .step__title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 14.4rem;
  color: var(--color-accent);
  font-size: 41.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.steps__contents .step__title::before {
  position: absolute;
  bottom: -8rem;
  left: 0;
  display: block;
  content: "";
  width: calc(100% - 0.1em);
  height: 3.2rem;
  background-color: currentColor;
}

.steps__contents .step__description {
  margin-top: 60.8rem;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.step {
  position: relative;
  width: 576rem;
}

.step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  z-index: 2;
}

.step:nth-child(1)::before {
  display: none;
}

.step:nth-child(1) .step__header {
  border-radius: 25.6rem 25.6rem 0 0;
}

.step:nth-last-child(1) .step__header {
  border-radius: 0 0 25.6rem 25.6rem;
}

.step__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38.4rem 44.8rem;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 150ms var(--ease-none);
  transition: background-color 150ms var(--ease-none);
}

.step__header::after {
  opacity: 0;
  position: absolute;
  top: 50%;
  right: -16rem;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9.6rem 0 9.6rem 19.2rem;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--color-primary);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 150ms var(--ease-none);
  transition: opacity 150ms var(--ease-none);
}

.steps__item.is-active .step__header {
  background-color: #63BD4A;
}
.steps__item.is-active .step__tagline {
  color: #63BD4A;
  background-color: #fff;
}
.steps__item.is-active .step__heading {
  color: #fff;
}
.steps__item.is-active .step__icon::before,
.steps__item.is-active .step__icon::after {
  background-color: #fff;
}
.steps__item.is-active .step__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.is-active .step__header::after {
  opacity: 1;
}

.step__tagline {
  display: block;
  width: 38.4rem;
  height: 38.4rem;
  margin-right: 16rem;
  padding-top: 11.2rem;
  border-radius: 50%;
  color: #fff;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 20.8rem;
  background-color: #63BD4A;
  text-align: center;
  -webkit-transition: color 150ms var(--ease-none), background-color 150ms var(--ease-none);
  transition: color 150ms var(--ease-none), background-color 150ms var(--ease-none);
}

.step__taglineWrap {
  display: none;
}

.step__heading {
  margin: 6.4rem 0 -1.6rem;
  font-size: 25.6rem;
  letter-spacing: 0.12em;
  -webkit-transition: color 150ms var(--ease-none);
  transition: color 150ms var(--ease-none);
}

.step__contents {
  visibility: hidden;
  height: 0;
}

.l-steps {
  padding: 260.8rem 0 307.2rem;
}

.l-steps .sectionHeading__ja {
  margin-top: 27.2rem;
}

.l-steps .section__lead {
  margin-top: 132.8rem;
}

.support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2099.2rem;
  margin: 124.8rem auto 0;
  padding: 134.4rem 0 150.4rem;
  border-radius: 38.4rem;
  background-color: #fff;
}

.support__lead {
  padding-left: 0.2em;
  color: var(--color-accent);
  font-size: 44.8rem;
  text-align: center;
  letter-spacing: 0.2em;
}

.support__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 99.2rem;
}

.support__item {
  width: 640rem;
}

.support__image {
  overflow: hidden;
  width: 563.2rem;
  height: 348.8rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 25.6rem;
}

.support__heading {
  margin-top: 51.2rem;
  padding-left: 0.2em;
  color: var(--color-accent);
  font-family: FP-KoburinaGoStdN-W6, sans-serif;
  font-size: 38.4rem;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.2em;
}

.support__description {
  width: calc(563.2rem + 0.21em);
  margin-top: 28.8rem;
  margin-left: 38.4rem;
  font-size: 25.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: justify;
}

.l-support {
  padding: 260.8rem 0 256rem;
}

.l-support .sectionHeading__ja {
  margin-top: 27.2rem;
}

.voice {
  position: relative;
  width: 1996.8rem;
  margin: 126.4rem auto 0;
  color: #fff;
}

.voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.voice__item {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 947.2rem;
  margin-right: 102.4rem;
  border-radius: 25.6rem;
}

.l-voice {
  overflow: hidden;
  padding: 260.8rem 0 0;
  background-color: #fff;
}

.faqPage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1996.8rem;
  margin: 0 auto;
  padding: 256rem 0;
}

.faqPage__nav {
  position: sticky;
  top: 320rem;
  left: 0;
  width: 409.6rem;
}

.faqPage__navItem {
  font-size: 25.6rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.faqPage__navItem + .faqPage__navItem {
  margin-top: 44.8rem;
}

.faqPage__navLink {
  color: #000;
  -webkit-transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: color 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.faqPage__main {
  width: 1305.6rem;
  margin-top: 4.8rem;
}

.faqPage__section + .faqPage__section {
  margin-top: 196.8rem;
}

.faqPage__child {
  margin-top: 84.8rem;
  padding-top: 59.2rem;
}

.faqPage__child + .faqPage__child {
  margin-top: 99.2rem;
  padding-top: 59.2rem;
}

.faqPage__category {
  display: inline-block;
  padding-bottom: 17.6rem;
  border-bottom: currentColor solid 3.2rem;
  color: var(--color-primary);
  font-size: 48rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.faqPage__kind {
  color: #b9bdb9;
  font-size: 38.4rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.faqPage .faq {
  margin-top: 59.2rem;
}

.faqPage .faq__q {
  background-color: #fff;
}

.faqPage .faq__a {
  background-color: #edede8;
}

.faqNav {
  border-top: #e6e6e4 solid 1.6rem;
}

.faqNav__category {
  position: relative;
  border-bottom: #e6e6e4 solid 1.6rem;
}

.faqNav__header {
  padding: 54.4rem 0 46.4rem;
  color: var(--color-accent);
  font-size: 32rem;
  line-height: 1;
  letter-spacing: 0.12em;
  cursor: pointer;
  -webkit-transition: color 150ms var(--ease-none);
  transition: color 150ms var(--ease-none);
}

.faqNav__icon {
  position: absolute;
  top: 56rem;
  right: 0;
  width: 19.2rem;
  height: 19.2rem;
}

.faqNav__icon::before,
.faqNav__icon::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
}

.faqNav__icon::before {
  width: 19.2rem;
  height: 3.2rem;
}

.faqNav__icon::after {
  width: 3.2rem;
  height: 19.2rem;
  -webkit-transition: -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-show .faqNav__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.faqNav__body {
  overflow: hidden;
  height: 0;
}

.faqNav__list {
  padding-bottom: 48rem;
}

.faqNav__item {
  font-size: 25.6rem;
  letter-spacing: 0.12em;
}

.faqNav__item + .faqNav__item {
  margin-top: 19.2rem;
}

.faqNav__link {
  line-height: 1.25;
  -webkit-transition: color 150ms var(--ease-none);
  transition: color 150ms var(--ease-none);
}

.faqFixed {
  display: none;
}

.faqFixed__button {
  display: block;
  width: 100%;
  padding: 2.6666666667rem 0 2.1333333333rem;
  font-size: 4rem;
  line-height: 2;
  color: #fff;
  text-align: center;
  background-color: var(--color-primary);
  border-radius: 9999px;
}

.faqFixed__select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

@media only screen and (min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media not all and (min-width: 9999px) {
  /*sp*/
  .forPC {
    display: none !important;
  }
  .forSP {
    display: inherit !important;
  }
  .forPC2 {
    display: none !important;
  }
  .forSP2 {
    display: inline !important;
  }
  .brandHeader {
    padding-top: 19.8666666667rem;
  }
  .buttonMore {
    width: 42.6666666667rem;
    padding: 4.8rem 0 3.7333333333rem 0.12em;
    border-radius: 6.4rem;
    font-size: 4.2666666667rem;
  }
  .c-page-ttl-speech {
    padding-bottom: 4rem;
    font-size: 5.3333333333rem;
  }
  .c-page-ttl-speech-obj::before,
  .c-page-ttl-speech-obj::after {
    height: 0.4rem;
    border: none;
    width: calc(50% - 0.8rem);
    background-color: var(--color-accent);
  }
  .slider02 .c-page-ttl-speech-obj::before,
  .slider02 .c-page-ttl-speech-obj::after {
    width: calc(50% - 0.8rem);
  }
  .modalPrice .c-page-ttl-speech-obj::before,
  .modalPrice .c-page-ttl-speech-obj::after {
    width: calc(50% - 0.5333333333rem);
  }
  .c-page-ttl-speech-obj::before {
    left: 0;
  }
  .slider02 .c-page-ttl-speech-obj::before {
    left: 0;
  }
  .modalPrice .c-page-ttl-speech-obj::before {
    left: 0;
  }
  .c-page-ttl-speech-obj::after {
    right: 0;
  }
  .slider02 .c-page-ttl-speech-obj::after {
    right: 0;
  }
  .modalPrice .c-page-ttl-speech-obj::after {
    right: 0;
  }
  .c-page-ttl-speech-obj-arrow {
    width: 2.4rem;
    height: 1.7333333333rem;
    background-image: url(../images/common/ico_speech.svg);
  }
  .c-page-ttl-speech.c-page-ttl-speech-orange .c-page-ttl-speech-obj::before,
  .c-page-ttl-speech.c-page-ttl-speech-orange .c-page-ttl-speech-obj::after {
    background-color: #FB7F03;
  }
  .c-page-ttl-speech.c-page-ttl-speech-orange .c-page-ttl-speech-obj-arrow {
    background-image: url(../images/common/ico_speech-orange.svg);
  }
  .pageHeader {
    padding: 22.4rem 0 15.7333333333rem;
  }
  .pageHeader .pageHeading {
    margin-top: 0;
  }
  .pageHeader .pageHeading__en {
    padding-right: 0.12em;
    font-size: 7.4666666667rem;
  }
  .pageHeader .pageHeading__ja {
    margin-top: 3.7333333333rem;
    font-size: 3.7333333333rem;
  }
  .headerLogo {
    position: absolute;
    top: 6.9333333333rem;
    left: 5.8666666667rem;
    width: 15.4666666667rem;
  }
  .reserve {
    bottom: 4.2666666667rem;
    right: 4.2666666667rem;
    width: 50rem;
  }
  .reserve__button {
    height: 13.8666666667rem;
    padding: 0 6.6666666667rem 0 14.9333333333rem;
    border-radius: 13.8666666667rem;
    -webkit-font-smoothing: antialiased;
  }
  .reserve__icon {
    top: 1.6rem;
    left: 1.6rem;
    width: 10.6666666667rem;
  }
  .reserve__text1 {
    padding-top: 0.8rem;
    padding-left: 0;
    font-size: 2.6666666667rem;
    letter-spacing: 0.16em;
  }
  .reserve__text2 {
    padding-top: 1.3333333333rem;
    padding-left: 0;
    font-size: 4.2666666667rem;
  }
  .section.-type02 {
    background: url(../images/top/bg02_sp.jpg) repeat 0 0/26.6666666667rem 26.6666666667rem;
  }
  .section.-type02 .section__lead {
    margin-top: 8.2666666667%;
  }
  .section__lead {
    margin-top: 10.6666666667rem;
    font-size: 4.8rem;
  }
  .sectionHeading__en,
  .pageHeading__en {
    font-size: 8.5333333333rem;
  }
  .sectionHeading__ja,
  .pageHeading__ja {
    margin-top: 2.4rem;
    font-size: 4.2666666667rem;
  }
  .sectionHeading2 {
    margin-left: 0;
    text-align: center;
  }
  .sectionHeading2__en {
    padding-left: 0.12em;
    font-size: 8.5333333333rem;
  }
  .sectionHeading2__ja {
    margin-top: 2.4rem;
    padding-left: 0.2em;
    font-size: 4.2666666667rem;
  }
  .sectionHeading2__ja::before,
  .sectionHeading2__ja::after {
    display: inline;
    content: "-";
    font-family: FP-KoburinaGoStdN-W6, Hiragino Kaku Gothic ProN, Yu Gothic, yugothic, メイリオ, meiryo, sans-serif;
  }
  .slider01 {
    margin-top: 12.2666666667rem;
  }
  .slider01__list {
    will-change: transform;
  }
  .slider01__item {
    width: 85.3333333333rem;
    min-height: auto;
    margin: 0 2.1333333333rem;
    padding: 0;
    border-radius: 3.2rem;
  }
  .slider01__itemInner {
    width: 100%;
    padding: 6.6666666667rem 8.5333333333rem 9.0666666667rem;
  }
  .slider01__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 14.9333333333rem;
    padding-bottom: 2.1333333333rem;
    padding-left: 0.2em;
    font-size: 5.3333333333rem;
    text-align: center;
  }
  .slider01__heading span {
    margin: 0;
    font-size: 3.4666666667rem;
    line-height: 1.5;
    text-align: center;
  }
  .slider01__heading::after {
    width: 100%;
    height: 0.4rem;
  }
  .slider01__lead {
    margin-top: 6.9333333333rem;
    padding-left: 0.2em;
    font-size: 4.2666666667rem;
    line-height: 1.7;
    text-align: center;
  }
  .slider01__description {
    width: 68.8rem;
    margin-top: 4.8rem;
    font-size: 3.4666666667rem;
  }
  .slider01__figure {
    position: static;
    width: 68.2666666667rem;
    height: 68.2666666667rem;
    margin: 5.6rem auto 0;
    border-radius: 2.1333333333rem;
  }
  .slider01__figure img {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
  }
  .slider01__itemInner:has(.slider01__description) .slider01__figure {
    height: 45.4666666667rem;
  }
  .slider01Pagination {
    margin-top: 7.4666666667rem;
  }
  .slider01Pager {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 85.3333333333rem;
    margin: 5.666667% auto 0;
    padding-top: 0;
  }
  .slider01Pager__button {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 10.6666666667rem;
  }
  .slider01Pager__buttonIcon {
    width: 5.3333333333rem;
    height: 2.1333333333rem;
    margin-top: 0;
    vertical-align: top;
  }
  .slider01Pager__buttonIcon svg {
    width: 5.3333333333rem;
    height: 2.1333333333rem;
  }
  .slider01Pager__buttonIcon.-prev {
    margin-right: 3.2rem;
  }
  .slider01Pager__buttonIcon.-next {
    margin-left: 1.6rem;
  }
  .slider01Pager__buttonText {
    display: block;
    padding-top: 1.3333333333rem;
    color: #52AD43;
    font-size: 3.4666666667rem;
    line-height: 1.3;
    letter-spacing: 0.12em;
  }
  .-type02 .slider01Pager__buttonText {
    color: #fff;
  }
  .slider01Pager__nav {
    display: none;
  }
  .slider02 {
    overflow: visible;
  }
  .slider02__pagination {
    margin-top: 6.6666666667rem;
  }
  .slider02__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 90.6666666667rem;
    margin-top: 4.6666666667rem;
    margin-bottom: -2.6666666667rem;
  }
  .slider02__navItem {
    padding: 2.6666666667rem;
  }
  .slider02__navText {
    font-size: 3.4666666667rem;
  }
  .slider02__navIcon {
    width: 5.3333333333rem;
    height: 2.1333333333rem;
    margin-top: 0;
  }
  .slider02__navIcon svg {
    width: 5.3333333333rem;
    height: 2.1333333333rem;
  }
  .slider02__navIcon.-prev {
    margin-right: 3.2rem;
  }
  .slider02__navIcon.-next {
    margin-left: 1.6rem;
  }
  .slider03__pager {
    display: none;
  }
  .slider03__button {
    display: block;
    margin: 10.1333333333rem auto 0;
  }
  .slider03__button.is-hide {
    display: none;
  }
  .slider04__list {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .slider04__item {
    width: 85.3333333333rem;
    margin: 0 2.1333333333rem;
    border-radius: 2.1333333333rem;
  }
  .slider04__header {
    display: block;
    padding: 3.2rem 0 1.8666666667rem;
    text-align: center;
  }
  .slider04__header::after {
    bottom: -2rem;
    width: 2.9333333333rem;
    height: 2.1333333333rem;
    background: url(../images/common/ico_triangle02_sp.svg) no-repeat 0 0/contain;
  }
  .slider04__heading {
    padding-left: 0.12em;
    font-size: 4.2666666667rem;
    line-height: 1.7;
    letter-spacing: 0.12em;
  }
  .slider04__headingIcon {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 4.8rem;
    height: 4.8rem;
    margin: 0.6666666667rem 0.2666666667rem 0 -0.8rem;
    padding: 0.4rem;
    font-size: 2.6666666667rem;
  }
  .slider04__body {
    padding: 8.5333333333rem 5.8666666667rem 8rem;
  }
  .slider04__bodyList {
    display: block grid;
    grid-auto-columns: auto;
    -ms-grid-columns: (1fr)[100];
    grid-template-columns: repeat(100, 1fr);
  }
  .slider04__bodyItem {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    display: block grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 3;
    grid-row: span 3;
    width: 36.8rem;
  }
  .slider04__image {
    width: 31.4666666667rem;
    height: 23.6rem;
    margin: 0 auto;
    border-radius: 2.1333333333rem;
  }
  .slider04__name {
    place-content: center;
    place-items: center;
    margin-top: 4.2666666667rem;
    padding-left: 0.2em;
    font-size: 3.7333333333rem;
    line-height: 1.6;
  }
  .slider04__name .generic {
    display: inline-block;
    vertical-align: top;
  }
  .slider04__description {
    margin-top: 2.1333333333rem;
    place-items: flex-start;
    padding-left: 0.12em;
    font-size: 2.9333333333rem;
    line-height: 1.7;
  }
  .slider04Pager {
    width: 85.3333333333rem;
    margin-top: 7.2rem;
  }
  .slider04Pager__button {
    width: 5.3333333333rem;
    height: 2.1333333333rem;
    margin-top: 0.5333333333rem;
    padding: 0;
  }
  .sliderPagination .swiper-pagination-bullet {
    width: 4.2666666667rem;
    height: 4.2666666667rem;
    margin: 0 0.8rem;
  }
  .sliderPagination .swiper-pagination-bullet::before {
    width: 1.6rem;
    height: 1.6rem;
    border-width: 0.8rem;
  }
  .sliderPagination .swiper-pagination-bullet.is-active::before {
    width: 3.2rem;
    height: 3.2rem;
    border-width: 0.5333333333rem;
  }
  .sliderPagination .swiper-pagination-bullet-active::before {
    width: 3.2rem;
    height: 3.2rem;
  }
  .sliderPagination .swiper-pagination-bullet-active::after {
    width: 2.1333333333rem;
    height: 2.1333333333rem;
  }
  .l-aboutStress {
    padding: 14.9333333333% 0;
    background-color: #F0F0F0;
  }
  .l-aboutStress .sectionHeading__ja {
    margin-top: 2.4rem;
  }
  .l-approach {
    padding: 16% 0;
  }
  .l-approach .sectionHeading__ja {
    margin-top: 2.1333333333rem;
  }
  .l-approach .slider01 {
    margin-top: 8%;
  }
  .l-approach .slider01__itemInner {
    padding-top: 4.5333333333rem;
    padding-bottom: 8.5333333333rem;
  }
  .l-approach .slider01__heading {
    height: 25.0666666667rem;
    padding-bottom: 0;
    white-space: nowrap;
  }
  .l-approach .slider01__heading span {
    margin-bottom: 1.3333333333rem;
    padding-top: 3.2rem;
    margin-left: -0.2em;
  }
  .cv {
    height: 118.9333333333rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .cv--point {
    height: 105.5rem;
  }
  .cv__contents {
    width: 79.4666666667rem;
    margin-top: 33.6rem;
  }
  .cv__contents--point {
    width: 89.3333333333%;
    margin-top: 16.6rem;
  }
  .cv__logo {
    width: 31.2rem;
    margin: 0 auto;
  }
  .cv__point {
    margin-top: 7.933333rem;
  }
  .cv__description {
    margin-top: 6.9333333333rem;
    margin-left: 1.3333333333rem;
    font-size: 3.7333333333rem;
  }
  .cv__description--point {
    margin-top: 7.933333rem;
  }
  .cv__button {
    margin-top: 5.8666666667rem;
    padding: 1.6rem;
    border-radius: 8.5333333333rem;
    font-size: 4.2666666667rem;
    background-color: #FB7F03;
  }
  .cv__button--point {
    padding: 0;
    margin-top: 2.866667rem;
  }
  .cv__buttonIcon {
    width: 11.7333333333rem;
    margin-right: 3.4666666667rem;
  }
  .faq {
    width: 85.3333333333rem;
    margin-right: auto;
    margin-left: auto;
  }
  .faq__item + .faq__item {
    margin-top: 3.2rem;
  }
  .faq__q {
    padding: 4rem 10.6666666667rem 3.2rem 10.9333333333rem;
    font-size: 3.7333333333rem;
    line-height: 1.7142857143;
  }
  .faq__q::before {
    top: 5.0666666667rem;
    left: 4.2666666667rem;
    font-size: 4.2666666667rem;
    line-height: 1;
  }
  .faq__icon {
    top: 50%;
    right: 4.8rem;
    width: 3.7333333333rem;
    height: 3.7333333333rem;
    margin: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .faq__icon::before,
  .faq__icon::after {
    height: 0.5333333333rem;
  }
  .faq__a {
    font-size: 3.7333333333rem;
    line-height: 1.7142857143;
  }
  .faq__aInner {
    padding: 5.6rem 4.5333333333rem 4.8rem 10.9333333333rem;
  }
  .faq__aInner::before {
    top: 6.6666666667rem;
    left: 4.2666666667rem;
    font-size: 4.2666666667rem;
    line-height: 1;
  }
  .faq__aInner .faq__textSmall {
    font-size: 3.2rem;
  }
  .faq__aInner ul li + li,
  .faq__aInner ol li + li {
    margin-top: 1.3333333333rem;
  }
  .faq__aInner ul.note li,
  .faq__aInner ol.note li {
    font-size: 3.2rem;
    margin-left: 1.1em;
    text-indent: -1.1em;
  }
  .faq__aInner dl dt {
    font-size: 3.7333333333rem;
  }
  .faq__aInner dl dt small {
    font-size: 3.2rem;
  }
  .l-faq {
    display: block;
    padding: 14.9333333333% 0 10.6666666667%;
  }
  .l-faq__header {
    width: 100%;
    padding: 0;
  }
  .l-faq .sectionHeading {
    text-align: center;
  }
  .l-faq .sectionHeading__en {
    padding-left: 0.12em;
    font-size: 8.5333333333rem;
  }
  .l-faq .sectionHeading__ja {
    margin-top: 2.6666666667rem;
    padding-left: 0.2em;
    font-size: 4.2666666667rem;
  }
  .l-faq__contents {
    width: 100%;
    margin-top: 12rem;
  }
  .l-faq__button {
    margin-top: 8.5333333333rem;
  }
  .menu {
    overflow: scroll;
    padding: 0;
    background: url(../images/top/bg02_sp.jpg) repeat 0 0/26.6666666667rem 26.6666666667rem;
  }
  .menu__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu__item {
    height: auto;
    padding: 0;
  }
  .menu__links {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 18.6666666667rem 9.6rem;
    min-height: 92rem;
  }
  .menu__links .menu__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1.8666666667rem 100%;
    grid-template-rows: auto 100%;
    -ms-grid-columns: auto 13.3333333333rem auto;
    grid-template-columns: auto auto;
    row-gap: 1.8666666667rem;
    -webkit-column-gap: 13.3333333333rem;
       -moz-column-gap: 13.3333333333rem;
            column-gap: 13.3333333333rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .menu__links .menu__content > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .menu__links .menu__content > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .menu__links .menu__content > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .menu__links .menu__content > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .menu__nav {
    padding-top: 0;
  }
  .is-open .menu__sns {
    -webkit-transition-delay: 1100ms;
            transition-delay: 1100ms;
  }
  .menu__sns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (4.2666666667rem)[2];
    grid-template-columns: repeat(2, 4.2666666667rem);
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    margin-top: 0;
  }
  .menu__snsItem {
    width: 4.2666666667rem;
  }
  .menu__snsItem + .menu__snsItem {
    margin-left: 6.4rem;
  }
  .menu__snsIcon {
    width: 4.2666666667rem;
    height: 4.2666666667rem;
  }
  .is-open .menu__subNav {
    -webkit-transition-delay: 950ms;
            transition-delay: 950ms;
  }
  .menu__subNav {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: auto;
    margin: 2px 0 0 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    row-gap: 6.4rem;
  }
  .menu__subNavItem {
    margin: 0;
    font-size: 2.6666666667rem;
  }
  .menu__subNavItem:nth-last-child(1) {
    margin-right: 0;
  }
  .menu__conversion {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    height: 100%;
    min-height: 77.3333333333rem;
    margin-top: auto;
  }
  .is-open .menu__conversion .menu__content {
    -webkit-transition-delay: 1250ms;
            transition-delay: 1250ms;
  }
  .menu__logo {
    display: none;
  }
  .menu__cv {
    width: 85.3333333333rem;
    margin-top: 0;
    margin-bottom: 2.1333333333rem;
    padding: 1.6rem;
    border-radius: 8.5333333333rem;
    font-size: 4.2666666667rem;
  }
  .menu__cvIcon {
    width: 11.7333333333rem;
    margin-right: 6.1333333333rem;
  }
  .menu__cvText {
    padding-top: 0.2666666667rem;
  }
  .menuNav__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    row-gap: 9.0666666667rem;
  }
  .menuNav__item {
    -webkit-transform: translate3d(25%, 0, 0);
            transform: translate3d(25%, 0, 0);
  }
  .menuNav__item {
    font-size: 5.3333333333rem;
  }
  .is-open .menuNav__item:nth-of-type(1) {
    -webkit-transition-delay: 500ms;
            transition-delay: 500ms;
  }
  .is-open .menuNav__item:nth-of-type(2) {
    -webkit-transition-delay: 600ms;
            transition-delay: 600ms;
  }
  .is-open .menuNav__item:nth-of-type(3) {
    -webkit-transition-delay: 700ms;
            transition-delay: 700ms;
  }
  .is-open .menuNav__item:nth-of-type(4) {
    -webkit-transition-delay: 800ms;
            transition-delay: 800ms;
  }
  .menuNav__item + .menuNav__item {
    margin: 0;
  }
  .menuButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    top: 4.5333333333rem;
    left: inherit;
    right: 6.1333333333rem;
    width: 6.4rem;
    padding: 0;
  }
  .menuButton__icon {
    width: 6.4rem;
    height: 6.4rem;
  }
  .menuButton__iconLine {
    height: 0.4rem;
  }
  .menuButton__icon::before,
  .menuButton__icon::after {
    height: 0.4rem;
  }
  .menuButton__icon::before {
    top: -3.2rem;
  }
  .menuButton__icon::after {
    bottom: -3.2rem;
  }
  .menuButton__text {
    position: relative;
    padding: 0.6666666667rem 0 0 0;
    font-size: 3.7333333333rem;
    letter-spacing: 0.01em;
  }
  .menuButton__menu,
  .menuButton__close {
    margin-top: 0.2em;
    font-size: 2.1333333333rem;
  }
  .concept {
    padding: 25.8666666667rem 0 25.0666666667rem;
  }
  .concept-item {
    padding: 0 9.3333333333rem;
    overflow: hidden;
  }
  .concept-item + .concept-item {
    padding-top: 18.4rem;
  }
  .concept-item:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .concept-item:nth-of-type(even) .concept-item-img {
    border-radius: 3.2rem 0 0 3.2rem;
  }
  .concept-item:nth-of-type(odd) .concept-item-img {
    margin-right: 0;
    margin-left: -9.3333333333rem;
    border-radius: 0 3.2rem 3.2rem 0;
  }
  .concept-item-img {
    width: 90.6666666667rem;
    height: 56.6666666667rem;
    margin-right: -9.3333333333rem;
  }
  .concept-item-inner {
    padding-top: 12.8rem;
  }
  .concept-item-lead svg {
    width: 32.1333333333rem;
    height: 7.4666666667rem;
  }
  .concept-item-lead strong {
    font-size: 7.7333333333rem;
  }
  .concept-item-lead span {
    font-size: 3.8666666667rem;
  }
  .concept-item-txt {
    padding-top: 5.0666666667rem;
    font-size: 5.3333333333rem;
    line-height: 2;
  }
  .concept-item-note {
    padding-top: 3.0666666667rem;
  }
  .concept-item-note li {
    font-size: 3.2rem;
  }
  .features {
    display: block;
    width: 85.3333333333rem;
    margin-top: 0;
  }
  .features__item {
    width: 100%;
  }
  .features__item + .features__item {
    margin-top: 21.0666666667rem;
    margin-left: 0;
  }
  .features__texts {
    margin: -4.8rem 0 0 3.7333333333rem;
  }
  .features__texts::before {
    font-size: 10.6666666667rem;
  }
  .features__heading {
    margin-top: 5.6rem;
    font-size: 6.4rem;
  }
  .features__description {
    width: calc(100% + 0.2em);
    margin-top: 4.2666666667rem;
    font-size: 4.2666666667rem;
  }
  .features__image {
    border-radius: 3.2rem;
  }
  .l-features {
    padding: 0;
  }
  .l-features .sectionHeading__ja {
    margin-top: 2.1333333333rem;
  }
  .forYou__item.forYouItem01 {
    top: 52rem;
    left: 17.8666666667rem;
    width: 64.2666666667rem;
  }
  .forYou__item.forYouItem02 {
    top: 117.0666666667rem;
    left: -2.1333333333rem;
    width: 46.9333333333rem;
  }
  .forYou__item.forYouItem03 {
    top: 112.2666666667rem;
    left: 60rem;
    width: 42.9333333333rem;
  }
  .forYou__item.forYouItem04 {
    top: 218.9333333333rem;
    left: -3.2rem;
    width: 48.8rem;
  }
  .forYou__item.forYouItem05 {
    top: 165.8666666667rem;
    left: 14.6666666667rem;
    width: 66.1333333333rem;
  }
  .forYou__item.forYouItem06 {
    top: 219.4666666667rem;
    left: 55.2rem;
    width: 46.9333333333rem;
  }
  .forYou__text.-large {
    font-size: 3.4666666667rem;
  }
  .forYou__text.-small {
    font-size: 2.6666666667rem;
  }
  .forYou__text.-largeSmall {
    font-size: 2.6666666667rem;
  }
  .forYouItem01 .forYou__text {
    top: 33.3333333333rem;
    left: -4.2666666667rem;
  }
  .forYouItem02 .forYou__text {
    top: 4.2666666667rem;
    left: 26.6666666667rem;
  }
  .forYouItem03 .forYou__text {
    top: 31.7333333333rem;
    left: -8.2666666667rem;
  }
  .forYouItem04 .forYou__text {
    top: 2.1333333333rem;
    left: 22.4rem;
  }
  .forYouItem05 .forYou__text {
    top: 0;
    left: 0;
  }
  .forYouItem05 .forYou__text .forYou__line {
    position: absolute;
  }
  .forYouItem05 .forYou__text .forYou__line {
    display: none;
  }
  .forYouItem05 .forYou__text .forYou__line.-item5 {
    display: block;
  }
  .forYouItem05 .forYou__text .forYou__line.-item5-1 {
    top: 3.4666666667rem;
    left: -3.3333333333rem;
    padding: 1.6rem calc(1.6rem - 0.2em) 1.0666666667rem 1.6rem;
    font-size: 2.6666666667rem;
  }
  .forYouItem05 .forYou__text .forYou__line.-item5-2 {
    top: 9.6rem;
    left: -3.3333333333rem;
    padding: 1.6rem calc(1.6rem - 0.2em) 1.0666666667rem 1.6rem;
    font-size: 2.6666666667rem;
  }
  .forYouItem05 .forYou__text .forYou__line.-item5-3 {
    top: 32.2666666667rem;
    left: 27.4666666667rem;
  }
  .forYouItem06 .forYou__text {
    top: 25.8666666667rem;
    left: -5.3333333333rem;
  }
  .forYou__line {
    border-radius: 0.5333333333rem;
  }
  .-large .forYou__line {
    margin-bottom: 0.8rem;
    padding: 1.8666666667rem calc(1.8666666667rem - 0.2em) 1.3333333333rem 1.8666666667rem;
  }
  .-small .forYou__line {
    margin-bottom: 0.6666666667rem;
    padding: 1.6rem calc(1.6rem - 0.2em) 1.0666666667rem 1.6rem;
  }
  .-largeSmall .forYou__line {
    margin-bottom: 0.6666666667rem;
    padding: 1.6rem calc(1.6rem - 0.2em) 1.0666666667rem 1.6rem;
  }
  .l-forYou {
    overflow: hidden;
    height: 287.4666666667rem;
    padding: 26.1333333333rem 0 0;
  }
  .howToUse {
    width: 85.3333333333rem;
    margin-top: 13.6rem;
  }
  .howToUse__list {
    display: block;
  }
  .howToUse__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100%;
    text-align: left;
  }
  .howToUse__item + .howToUse__item {
    margin-top: 12.8rem;
  }
  .howToUse__item + .howToUse__item::before {
    top: -10.9333333333rem;
    left: 0;
    width: 21.3333333333rem;
    height: 8.2666666667rem;
    background: url(../images/top/howToUse/ico_arrow_sp.svg) no-repeat 0 0/contain;
  }
  .howToUse__item:nth-child(2) .howToUse__texts {
    padding-top: 0.5333333333rem;
    margin-bottom: -0.5333333333rem;
  }
  .howToUse__texts {
    width: 58.9333333333rem;
    margin-left: 5.0666666667rem;
    padding-top: 0;
  }
  .howToUse__heading {
    margin-top: 0;
    padding-top: 0.2666666667rem;
    padding-left: 0;
    font-size: 4.8rem;
    white-space: nowrap;
  }
  .howToUse__description {
    margin-top: 3.2rem;
    padding-left: 0;
    font-size: 3.4666666667rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .howToUse__description a {
    padding-right: 0.2666666667rem;
    border-bottom-width: 0.1333333333rem;
  }
  .howToUse__description a::after {
    top: 0.2666666667rem;
    width: 3.7333333333rem;
    height: 3.7333333333rem;
  }
  .howToUse__image {
    width: 21.3333333333rem;
    border-radius: 3.2rem;
  }
  .howToUse__footnote {
    margin-top: 13.8666666667rem;
    font-size: 2.6666666667rem;
  }
  .howToUse__footnoteItem {
    margin-top: 3.2rem;
  }
  .l-howToUse {
    padding: 16% 0 16%;
  }
  .l-howToUse .sectionHeading__ja {
    margin-top: 2.4rem;
  }
  .kv__logo {
    width: 82.8rem;
    height: 47.2rem;
    -webkit-transform: translate(-50%, calc(-50% - 1.2rem));
            transform: translate(-50%, calc(-50% - 1.2rem));
  }
  .magazine {
    width: 85.3333333333rem;
    margin-top: 12.2666666667rem;
  }
  .magazine__list {
    overflow: hidden;
    display: block;
  }
  .magazine__item {
    display: none;
    min-width: auto;
    width: 100%;
    margin-right: 0;
  }
  .magazine__item:nth-child(-n+3) {
    display: block;
  }
  .is-all-show .magazine__item {
    display: block;
  }
  .magazine__item + .magazine__item {
    margin-top: 10.1333333333rem;
  }
  .magazine__texts {
    margin-top: 6.6666666667rem;
  }
  .magazine__name {
    margin-top: 3.7333333333rem;
    font-size: 3.7333333333rem;
    line-height: 1.7;
  }
  .magazine__date {
    border-radius: 4rem;
    font-size: 3.4666666667rem;
  }
  .magazine__description {
    font-size: 3.7333333333rem;
    line-height: 1.7;
  }
  .magazine__image {
    border-radius: 3.2rem;
  }
  .l-magazine {
    padding: 25.0666666667rem 0 25.6rem;
  }
  .medicine__selectors {
    width: 97.3333333333rem;
    margin-top: 10.6666666667%;
  }
  .medicine__selectorsItem {
    margin: 1.0666666667rem;
    padding: 2.6666666667rem 2.9333333333rem 1.6rem calc(2.9333333333rem + 0.12em);
    font-size: 2.9333333333rem;
  }
  .medicine__items {
    margin-top: 10.6666666667%;
  }
  .medicine__wrapper {
    height: 161.8666666667rem;
  }
  .medicine__list {
    -ms-grid-columns: 1fr 5.3333333333rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5.3333333333rem;
    grid-row-gap: 5.3333333333rem;
    width: 85.3333333333rem;
  }
  .medicine__listItem {
    width: 40rem;
    min-height: auto;
    border-radius: 2.1333333333rem;
  }
  .medicine__listTexts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: auto;
    padding: 4.2666666667rem 0 3.2rem;
  }
  .medicine__listTexts:has(.generic) {
    padding-top: 5.0666666667rem;
    padding-bottom: 4.2666666667rem;
  }
  .medicine__listTexts.-nameLong {
    padding-top: 4.5333333333rem;
  }
  .medicine__listName {
    margin-left: 0.12em;
    font-size: 3.4666666667rem;
    line-height: 1.6;
    text-align: center;
  }
  .medicine__listName.-nameLong {
    font-size: 2.9333333333rem;
  }
  .medicine__listName .generic {
    margin-top: 1.3333333333rem;
    font-size: 2.6666666667rem;
  }
  .medicine__listIcon {
    display: none;
  }
  .medicine__listImage {
    overflow: hidden;
    height: 26.6666666667rem;
  }
  .medicine__slider {
    width: 100%;
    padding-bottom: 11.7333333333rem;
  }
  .l-medicine {
    padding: 16% 0 13.6rem;
  }
  .l-medicine .section__lead {
    margin-top: 8.2666666667%;
  }
  .l-medicine .sectionHeading__ja {
    margin-top: 2.4rem;
  }
  .l-medicine .buttonMore {
    margin-top: 8.5333333333%;
  }
  .modal__bg {
    background: url(../images/top/bg02_sp.jpg) repeat 0 0/26.6666666667rem 26.6666666667rem;
  }
  .modal__body {
    width: 85.3333333333rem;
    margin: 14.6666666667rem auto;
    border-radius: 3.2rem;
  }
  .modal__closeButton {
    top: 3.0666666667rem;
    right: 4.6666666667rem;
    width: 5.8666666667rem;
    height: 3.6rem;
    padding: 2.6666666667rem;
  }
  .modal__closeButton::before,
  .modal__closeButton::after {
    width: 6.4rem;
    height: 0.4rem;
  }
  .modalMedicine .modal__contents {
    padding-top: 14.6666666667rem;
    padding-bottom: 14.6666666667rem;
  }
  .modalMedicine__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: auto;
  }
  .modalMedicine__texts {
    width: 100%;
    padding: 10.1333333333rem 8.5333333333rem 10.6666666667rem;
  }
  .modalMedicine__textsInner {
    padding-top: 0;
  }
  .modalMedicine__name {
    font-size: 5.3333333333rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  .modalMedicine__name span {
    margin-left: 0.5333333333rem;
    font-size: 3.4666666667rem;
    letter-spacing: 0.2em;
  }
  .modalMedicine__otherProduct {
    margin-top: 0;
    font-size: 2.9333333333rem;
    line-height: 2;
    letter-spacing: 0.2em;
  }
  .modalMedicine__otherProduct + .modalMedicine__description {
    margin-top: 2.9333333333rem;
  }
  .modalMedicine__description {
    margin-top: 2.9333333333rem;
    font-size: 3.2rem;
  }
  .modalMedicine__description + .modalMedicine__description {
    margin-top: 2.1333333333rem;
  }
  .modalMedicine__footnote {
    margin-top: 2.4rem;
    font-size: 2.9333333333rem;
  }
  .modalMedicine__footnote + .modalMedicine__prices {
    margin-top: 4.8rem;
  }
  .modalMedicine__prices {
    margin-top: 5.0666666667rem;
  }
  .modalMedicine__price {
    margin-top: 2.1333333333rem;
  }
  .modalMedicine__priceLabel {
    margin-right: 2.1333333333rem;
    padding: 2rem calc(2.6666666667rem - 0.12em) 1.2rem 2.6666666667rem;
    border-width: 0.2666666667rem;
    font-size: 2.6666666667rem;
  }
  .modalMedicine__priceLabel.-number {
    padding: 1.8666666667rem calc(2.6666666667rem - 0.12em) 1.3333333333rem 2.6666666667rem;
  }
  .modalMedicine__priceContents {
    padding-top: 1.0666666667rem;
    font-size: 2.6666666667rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .-long .modalMedicine__priceContents {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    padding-top: 2.6666666667rem;
  }
  .modalMedicine__priceContentsStrong {
    font-size: 4.8rem;
  }
  .modalMedicine__priceContentsStrongSpSmall {
    font-size: 2.6666666667rem;
    letter-spacing: 0.12em;
  }
  .modalMedicine__pricesFootnote {
    margin-top: 5.3333333333rem;
    margin-bottom: -0.2666666667rem;
    font-size: 2.6666666667rem;
    line-height: 2;
  }
  .modalMedicine__image {
    width: 100%;
    height: 56.9333333333rem;
  }
  .modalPrice__body {
    margin: 14.6666666667rem auto;
    padding: 13.6rem 8.5333333333rem 14.9333333333rem;
  }
  .modalPrice__header {
    padding-bottom: 8.2666666667rem;
  }
  .modalPrice__header::before {
    height: 0.2666666667rem;
    background-size: 1.0666666667rem 0.2666666667rem;
  }
  .modalPrice__title {
    font-size: 5.3333333333rem;
  }
  .modalPrice__lead {
    margin-top: 4.8rem;
    font-size: 3.4666666667rem;
  }
  .modalPrice__section {
    width: 68.5333333333rem;
    margin-top: 10.4rem;
  }
  .modalPrice__section + .modalPrice__section {
    margin-top: 11.4666666667rem;
  }
  .modalPrice__heading {
    padding-bottom: 2.9333333333rem;
    font-size: 4.2666666667rem;
    text-wrap: nowrap;
    letter-spacing: 0.2em;
  }
  .modalPrice__description {
    margin-top: 5.3333333333rem;
    font-size: 3.2rem;
  }
  .modalPrice__table {
    width: 68.2666666667rem;
    margin-top: 6.1333333333rem;
  }
  .ourDoctors {
    margin-top: 15.4666666667rem;
    padding-top: 0;
    margin-top: 0;
  }
  .ourDoctors__item {
    height: inherit;
    padding: 0;
    width: 78.333333rem;
    margin: 0 2.133333rem 0 2.3rem;
    border-radius: 1.5rem;
  }
  .ourDoctors__profileText {
    padding-top: 0.5333333333rem;
  }
  .ourDoctors__name {
    font-size: 4.6666666667rem;
  }
  .ourDoctors__experience {
    margin-top: 1rem;
    padding: 1.5533333333rem 0 1.3333333333rem;
    font-size: 2.4666666667rem;
    border-width: 0.2666666667rem;
    white-space: nowrap;
  }
  .ourDoctors__experience ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.3rem;
  }
  .ourDoctors__experience ul li {
    color: #1E1E1E;
    letter-spacing: 0.05em;
    border: 1px solid #1E1E1E;
    padding: 1.2rem 2rem 1rem;
    border-radius: 15px;
  }
  .ourDoctors__image {
    width: 18.333rem;
    height: 18.333rem;
    margin-right: 3.3333333333rem;
    border-radius: 0;
  }
  .ourDoctors__qAndAs {
    width: 100%;
    margin-top: 3.5rem;
  }
  .ourDoctors__qAndA + .ourDoctors__qAndA {
    margin-top: 3rem;
    padding-top: 0;
  }
  .ourDoctors__qAndA + .ourDoctors__qAndA::before {
    height: 0.2666666667rem;
    background-image: -webkit-gradient(linear, left top, right top, from(#e6e6e4), color-stop(25%, #e6e6e4), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(75%, #e6e6e4), to(#e6e6e4));
    background-image: linear-gradient(90deg, #e6e6e4, #e6e6e4 25%, transparent 25%, transparent 75%, #e6e6e4 75%, #e6e6e4 100%);
    background-repeat: repeat-x;
    background-size: 1.0666666667rem 0.2666666667rem;
    opacity: 0;
  }
  .ourDoctors__q {
    padding-left: 5.933333rem;
    font-size: 3.913333rem;
    line-height: 1.7;
  }
  .ourDoctors__q::before {
    top: 1.0666666667rem;
    font-size: 4.3666666667rem;
  }
  .ourDoctors__a {
    width: calc(100% + 0.12em);
    margin-top: 0.933333rem;
    font-size: 3.9rem;
    letter-spacing: 0.05em;
    background: #fff;
    border-radius: 10px;
    padding: 3.5rem 3rem;
    line-height: 1.8;
  }
  .ourDoctors__a::before {
    top: 1.0666666667rem;
    font-size: 4.2666666667rem;
  }
  .ourDoctorsPagination {
    margin-top: 3.466667rem;
  }
  .ourDoctorsPagination--symptoms {
    opacity: 0;
    pointer-events: none;
  }
  .l-ourDoctors {
    padding: 26.1333333333rem 0 25.3333333333rem;
  }
  .l-ourDoctors .sectionHeading__ja {
    margin-top: 2.1333333333rem;
  }
  .question {
    margin-top: 9.6%;
    padding-top: 0;
    padding-bottom: 2.1333333333rem;
  }
  .question__item {
    height: inherit;
    padding: 7.4666666667rem 8.5333333333rem 11.4666666667rem;
    width: 85.3333333333rem;
    margin: 0 2.1333333333rem;
    border-radius: 3.2rem;
  }
  .question__item__note {
    margin-top: 5.3333333333rem;
    font-size: 2.1333333333rem;
  }
  .question__item__note span {
    margin-top: 1.6rem;
  }
  .question__shape {
    width: 13.0666666667rem;
    height: 10.1333333333rem;
  }
  .question__shape svg {
    width: 13.0666666667rem;
    height: 10.1333333333rem;
  }
  .question__shape {
    width: 13.0666666667rem;
    height: 10.1333333333rem;
  }
  .question__shape.-shape1 {
    top: -1.8666666667rem;
    left: 5.3333333333rem;
  }
  .question__shape.-shape2 {
    right: 5.3333333333rem;
    bottom: -1.8666666667rem;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .question__q {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 35.2rem;
    padding-left: 0.6em;
    padding-bottom: 0;
    font-size: 5.3333333333rem;
    line-height: 1.7;
  }
  .question__q .c-page-ttl-speech-obj {
    bottom: -1.0666666667rem;
  }
  .question__a {
    margin-top: 9.3333333333rem;
    padding-left: 0;
  }
  .question__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .question__title {
    padding-top: 0.8rem;
    padding-bottom: 1.3333333333rem;
    padding-left: 6.4rem;
    font-size: 4.2666666667rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .question__profile {
    width: 14.6666666667rem;
  }
  .question__image {
    width: 14.6666666667rem;
    height: 14.6666666667rem;
    border-radius: 1.6rem;
  }
  .question__description {
    margin-top: 3.7333333333rem;
    font-size: 3.4666666667rem;
  }
  .question__description + .question__description {
    margin-top: 2.6666666667rem;
  }
  .question__footnote {
    margin-top: 4.2666666667rem;
    font-size: 2.6666666667rem;
    line-height: 1.5;
  }
  .l-question {
    padding: 16% 0;
  }
  .l-question .sectionHeading__ja {
    margin-top: 2.4rem;
  }
  .service {
    width: 100%;
    margin-top: 10.6666666667%;
  }
  .service__content {
    padding: 10.6666666667rem 0 8.066667rem;
    background-color: #fff;
  }
  .serviceTab {
    border-bottom-width: 0.5333333333rem;
  }
  .serviceTab__item {
    border-radius: 3.2rem 3.2rem 0 0;
  }
  .serviceTab__text {
    width: 49.4666666667rem;
    padding: 5.0666666667rem 0 4.5333333333rem 0.2em;
    font-size: 3.2rem;
  }
  .is-active .serviceTab__text {
    padding: 5.0666666667rem 0 4.5333333333rem 0.2em;
  }
  .serviceFlow {
    display: block;
    width: 85.3333333333rem;
    margin: 0 auto;
    border-radius: 0;
  }
  .serviceFlow__item {
    overflow: inherit;
    border-radius: 2.1333333333rem;
    background-color: #fafaf7;
  }
  .serviceFlow__item::before {
    display: none;
  }
  .serviceFlow__item + .serviceFlow__item {
    margin-top: 5.3333333333rem;
  }
  .serviceFlow__item:nth-child(1) {
    width: 100%;
  }
  .-flowContain2 .serviceFlow__item:nth-child(1) {
    width: 100%;
  }
  .serviceFlow__item:nth-child(2) {
    width: 100%;
  }
  .-flowContain2 .serviceFlow__item:nth-child(2) {
    width: 100%;
  }
  .serviceFlow__item:nth-child(3) {
    width: 100%;
  }
  .serviceFlow__header {
    padding: 4.2666666667rem 0 3.2rem;
    font-size: 3.7333333333rem;
  }
  .serviceFlow__header::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 5.3333333333rem;
    height: 5.3333333333rem;
    margin-top: -1.0666666667rem;
    margin-right: 2.1333333333rem;
    padding-top: 0.6666666667rem;
    font-size: 2.6666666667rem;
    line-height: 2;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .serviceFlow__header::after {
    display: none;
  }
  .serviceFlow__headerTime {
    top: 0;
    margin-left: 1.8666666667rem;
    font-size: 2.6666666667rem;
    line-height: 1;
  }
  .serviceFlow__headerTime::before,
  .serviceFlow__headerTime::after {
    position: relative;
    top: -0.2666666667rem;
  }
  .serviceFlow__body {
    padding: 8.5333333333rem 0 8.2666666667rem;
  }
  .serviceFlow__image {
    width: 68.2666666667rem;
    margin-right: auto;
    margin-left: auto;
    border-radius: 1.6rem;
  }
  .serviceFlow__texts {
    margin-top: 5.8666666667rem;
  }
  .serviceFlow__text + .serviceFlow__text {
    margin-top: 7.7333333333rem;
  }
  .serviceFlow__text + .serviceFlow__text::before {
    top: -5.0666666667rem;
    width: 2.5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .serviceFlow__lead {
    font-size: 4.2666666667rem;
    line-height: 2;
  }
  .serviceFlow__description {
    margin-top: 2.1333333333rem;
    padding-left: 0.12em;
    font-size: 3.2rem;
  }
  .serviceFlow__footnote {
    margin: 2.1333333333rem 0 0 0.12em;
    font-size: 2.6666666667rem;
  }
  .servicePrices {
    width: 85.3333333333rem;
    margin-top: 5.5rem;
    padding-top: 5.5rem;
  }
  .servicePrices--margin {
    margin-top: -48px;
  }
  .servicePrices--mt {
    padding-top: 3.4rem;
    margin-top: 3.4rem;
  }
  .servicePrices::before {
    height: 0.2666666667rem;
    background-image: -webkit-gradient(linear, left top, right top, from(#e6e6e4), color-stop(25%, #e6e6e4), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(75%, #e6e6e4), to(#e6e6e4));
    background-image: linear-gradient(90deg, #e6e6e4, #e6e6e4 25%, transparent 25%, transparent 75%, #e6e6e4 75%, #e6e6e4 100%);
    background-repeat: repeat-x;
    background-size: 1.0666666667rem 0.2666666667rem;
  }
  .servicePrices__item + .servicePrices__item {
    margin-top: 3.2rem;
  }
  .servicePrices__speech {
    width: 68.2666666667rem;
    padding-bottom: 5.6rem;
    font-size: 4.2666666667rem;
  }
  .-contents02 .servicePrices__speech {
    padding-bottom: 5.8666666667rem;
  }
  .servicePrices__lead {
    margin-top: 5.0666666667rem;
    padding-left: 0.6em;
    font-size: 3.7333333333rem;
  }
  .-contents02 .servicePrices__lead {
    margin-top: 5.3333333333rem;
  }
  .servicePrices__small {
    margin-top: 0.8rem;
    font-size: 2.4rem;
  }
  .servicePrices__strongStrong {
    font-size: 5.6rem;
  }
  .-contents02 .servicePrices__strongStrong {
    font-size: 3.7333333333rem;
  }
  .servicePrices__strongSmall {
    padding-top: 1.0666666667rem;
    margin-bottom: 1.6rem;
    font-size: 2.6666666667rem;
  }
  .servicePrices__number02 {
    letter-spacing: 0.01em;
  }
  .-contents02 .servicePrices__number02 {
    letter-spacing: 0.01em;
  }
  .servicePrices__number03 {
    top: -0.2666666667rem;
    margin: 0 0 0 3.2rem;
    font-size: 2.6666666667rem;
  }
  .servicePrices__number03 .servicePrices__number01 {
    font-size: 2.6666666667rem;
  }
  .servicePrices__plus {
    top: -0.5333333333rem;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 1.3333333333rem 0 0;
  }
  .-contents02 .servicePrices__plus {
    top: 0;
    width: 2.1333333333rem;
    height: 2.1333333333rem;
  }
  .servicePrices__plus::before {
    height: 0.5333333333rem;
  }
  .-contents02 .servicePrices__plus::before {
    height: 0.4rem;
  }
  .servicePrices__plus::after {
    width: 0.5333333333rem;
  }
  .-contents02 .servicePrices__plus::after {
    width: 0.4rem;
  }
  .servicePricesFootnote {
    margin-top: 5.3333333333rem;
    font-size: 3.1rem;
    color: #7A7A7A;
    letter-spacing: 0.05em;
  }
  .servicePricesFootnote__item + .servicePricesFootnote__item {
    margin-top: 0.5333333333rem;
  }
  .servicePrice {
    margin-top: 0;
    border-radius: 2.1333333333rem;
    background-color: #fafaf7;
  }
  .servicePrice01 {
    padding: 8rem 0 4rem;
  }
  .-contents02 .servicePrice01 {
    padding: 9.0666666667rem 0 7.4666666667rem;
  }
  .servicePrice02 {
    padding: 3.2rem 0 3.2rem 9.8666666667rem;
  }
  .servicePrice02 .servicePrice__content:nth-child(2) {
    margin-top: 1.0666666667rem;
    margin-left: 2.6666666667rem;
  }
  .servicePrice02 .servicePrice__content:nth-child(3) {
    padding-top: 1.3333333333rem;
    margin-left: 10.4rem;
  }
  .servicePrice03 {
    padding: 3.4666666667rem 0 5.0666666667rem 9.8666666667rem;
  }
  .servicePrice03 .servicePrice__content:nth-child(1) {
    padding-top: 0.8rem;
  }
  .servicePrice03 .servicePrice__content:nth-child(2) {
    margin: 2.4rem 0 0 2.6666666667rem;
  }
  .servicePrice03 .servicePrice__content:nth-child(3) {
    margin: 0 0 -1.3333333333rem 5.0666666667rem;
    padding-top: 0;
  }
  .servicePrice04 {
    padding: 3.7333333333rem 0 3.4666666667rem 8.5333333333rem;
  }
  .servicePrice04 .servicePrice__content:nth-child(1) {
    font-size: 2.6666666667rem;
    line-height: 1;
  }
  .servicePrice04 .servicePrice__content:nth-child(2) {
    margin-left: 5.8666666667rem;
  }
  .servicePrice04 .servicePrices__number03 {
    top: 0;
    margin-left: 0;
  }
  .servicePrice04 .servicePrices__plus {
    margin-right: 1.0666666667rem;
  }
  .servicePrice05 {
    padding: 4rem 0 3.7333333333rem 8.5333333333rem;
  }
  .servicePrice05 .servicePrice__content:nth-child(1) {
    margin: 0 0 0 0;
    font-size: 2.6666666667rem;
    line-height: 1;
  }
  .servicePrice05 .servicePrice__content:nth-child(2) {
    margin: 0 0 0 3.7333333333rem;
    padding-top: 0;
  }
  .servicePrice05 .servicePrices__small {
    margin-top: 1.8666666667rem;
  }
  .servicePrice05 .servicePrices__strongSmall {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 1.3333333333rem;
    letter-spacing: 0;
  }
  .servicePrice05 .servicePrices__number01 {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
  .servicePrice05 .servicePrices__number03 {
    margin-left: 0;
  }
  .servicePrice__content {
    font-size: 4rem;
  }
  .servicePrice__content:nth-child(2) {
    font-size: 2.6666666667rem;
  }
  .servicePrice__icon {
    width: 8rem;
    height: 8rem;
  }
  .servicePricesPlans01 {
    display: block;
    margin-top: 5.3333333333rem;
  }
  .servicePricesPlans01::before {
    display: none;
  }
  .servicePricesPlans01__header {
    width: 100%;
    padding: 0;
  }
  .servicePricesPlans01__lead {
    padding-left: 2.1333333333rem;
    font-size: 3.7333333333rem;
    text-align: center;
  }
  .servicePricesPlans01__body {
    width: 100%;
    margin-top: 4.2666666667rem;
    padding-top: 0;
    padding-left: 0;
  }
  .servicePricesPlans01__text {
    padding-left: 0.12em;
    font-size: 2.6666666667rem;
  }
  .servicePricesPlans01__number01 {
    font-size: 2.6666666667rem;
  }
  .servicePricesPlans01__number03 {
    margin-right: 1.0666666667rem;
    font-size: 3.2rem;
  }
  .servicePricesPlans01__number03 .servicePricesPlans01__number01 {
    font-size: 3.2rem;
  }
  .servicePricesPlans01__strong {
    margin-left: 0;
  }
  .servicePricesPlans01__strongStrong {
    font-size: 8rem;
  }
  .servicePricesPlans01__footnote {
    margin-top: 2.1333333333rem;
    font-size: 2.6666666667rem;
  }
  .servicePricesPlans02 {
    margin-top: 3.7333333333rem;
  }
  .servicePricesPlans02__list {
    display: block;
    width: 68.2666666667rem;
    margin: 0 auto;
  }
  .servicePricesPlans02__item {
    width: 100%;
    padding-bottom: 2.1333333333rem;
    border-radius: 1.0666666667rem;
    background-color: #fff;
  }
  .servicePricesPlans02__item + .servicePricesPlans02__item {
    margin-top: 2.1333333333rem;
  }
  .servicePricesPlans02__breath {
    width: 61.3333333333rem;
    margin: 2.6666666667rem auto 0;
    padding: 1.6rem 0 0.5333333333rem 0.12em;
    border-width: 0.2666666667rem;
    font-size: 2.4rem;
    line-height: 1;
  }
  .servicePricesPlans02__breath + .servicePricesPlans02__text {
    padding-bottom: 0.2666666667rem;
  }
  .servicePricesPlans02__breath + .servicePricesPlans02__text .servicePricesPlans02__description {
    margin-top: 1.8666666667rem;
  }
  .servicePricesPlans02__breath + .servicePricesPlans02__text .servicePricesPlans02__description + .servicePricesPlans02__expense {
    margin-top: 1.3333333333rem;
  }
  .servicePricesPlans02__time {
    padding: 2.1333333333rem 0 1.3333333333rem 0.12em;
    font-size: 2.4rem;
  }
  .servicePricesPlans02__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .servicePricesPlans02__description {
    margin-top: 3.2rem;
    font-size: 2.6666666667rem;
    text-align: left;
  }
  .servicePricesPlans02__expense {
    margin-top: 2.1333333333rem;
    line-height: 1.5;
    font-size: 2.4rem;
  }
  .servicePricesPlans02__strong {
    font-size: 3.7333333333rem;
    letter-spacing: 0.1em;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .servicePricesPlans02__number01 {
    font-size: 2.4rem;
  }
  .servicePricesPlans02__footnote {
    margin-top: 3.4666666667rem;
    margin-bottom: -0.9333333333rem;
    font-size: 2.6666666667rem;
  }
  .l-service {
    padding: 16% 0 0;
    background-color: #fafaf7;
  }
  .l-service .sectionHeading__ja {
    margin-top: 2.4rem;
  }
  .l-service .section__lead {
    margin-top: 8.2666666667%;
  }
  .sns {
    padding: 0 0 25.6rem;
  }
  .is-inView .sns__lane {
    -webkit-animation: lane01sp 110s linear infinite;
            animation: lane01sp 110s linear infinite;
  }
  .sns__item {
    margin-right: 4.2666666667rem;
    border-radius: 3.2rem;
    height: 50rem;
  }
  .sns__item:nth-child(1) {
    width: 75.0666666667rem;
  }
  .sns__item:nth-child(2) {
    width: 50rem;
  }
  .sns__item:nth-child(3) {
    width: 75.0666666667rem;
  }
  .sns__item:nth-child(4) {
    width: 75.0666666667rem;
  }
  .sns__item:nth-child(5) {
    width: 50rem;
  }
  .sns__item:nth-child(6) {
    width: 75.0666666667rem;
  }
  .sns__item:nth-child(7) {
    width: 50rem;
  }
  .sns__item:nth-child(8) {
    width: 75.0666666667rem;
  }
  .statement {
    display: block;
    padding: 28.1333333333rem 0 25.6rem;
  }
  .statement__images {
    display: none;
  }
  .statement__texts {
    margin-left: 11.3333333333rem;
  }
  .statement__lead {
    width: 74.4rem;
    margin-left: 0.5333333333rem;
  }
  .statement__description {
    margin-top: 13.6rem;
    font-size: 3.7333333333rem;
    line-height: 2.4;
    letter-spacing: 0.28em;
  }
  .statement__description + .statement__description {
    margin-top: 6.2666666667rem;
  }
  .statement__description.-alphabet {
    margin-top: 6rem;
    margin-bottom: 0;
  }
  .statement__description.-strong {
    margin-top: 5.8666666667rem;
    font-size: 4.5333333333rem;
    line-height: 2.21;
  }
  .statement__conclusion {
    width: 68.4rem;
    margin-top: 11.2rem;
    margin-left: 11.3333333333rem;
  }
  .steps {
    width: 85.3333333333rem;
    margin: 10.6666666667% auto 0;
  }
  .steps__list {
    width: 100%;
  }
  .steps__item {
    overflow: hidden;
    width: 100%;
    border-radius: 3.2rem;
  }
  .steps__item + .steps__item {
    margin-top: 3.2rem;
  }
  .steps__contents {
    width: 100%;
    border-radius: 0;
  }
  .step {
    width: 100%;
  }
  .step::before {
    display: none;
  }
  .step:nth-child(1) .step__header {
    border-radius: 0;
  }
  .step:nth-last-child(1) .step__header {
    border-radius: 0;
  }
  .step__header {
    position: relative;
    padding: 5.0666666667rem 4.8rem 4.5333333333rem;
  }
  .step__header::after {
    display: none;
  }
  .step__tagline {
    width: auto;
    height: auto;
    margin-top: -0.5333333333rem;
    margin-right: 2.6666666667rem;
    padding: 2rem 1.2rem 1.8rem 1.6rem;
    border-radius: 0.8rem;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
  }
  .step__taglineWrap {
    display: inline-block;
  }
  .step__heading {
    margin-top: 0;
    font-size: 3.7333333333rem;
    line-height: 1;
  }
  .step__icon {
    position: absolute;
    top: 50%;
    right: 4.8rem;
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .step__icon::before,
  .step__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    background-color: #000;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: background-color 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: background-color 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .step__icon::before {
    width: 100%;
    height: 0.5333333333rem;
  }
  .step__icon::after {
    height: 100%;
    width: 0.5333333333rem;
    -webkit-transition: -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .step__contents {
    visibility: visible;
    background-color: #fff;
  }
  .step__contents .step__image {
    overflow: hidden;
    width: 68.2666666667rem;
    height: 42.1333333333rem;
    border-radius: 2.1333333333rem;
  }
  .step__contents .step__tagline2 {
    display: none;
  }
  .step__contents .step__title {
    display: none;
  }
  .step__contents .step__description {
    padding-left: 0.12em;
    margin-top: 6.1333333333rem;
    font-size: 3.4666666667rem;
    line-height: 2;
    letter-spacing: 0.12em;
    text-align: center;
  }
  .step__inner {
    padding: 8.5333333333rem 8.5333333333rem 7.7333333333rem;
  }
  .l-steps {
    padding: 16% 0 10.6666666667%;
  }
  .l-steps .sectionHeading__ja {
    margin-top: 2.1333333333rem;
  }
  .l-steps .section__lead {
    margin-top: 8.2666666667%;
  }
  .support {
    width: 85.3333333333rem;
    margin-top: 12.5333333333rem;
    padding-top: 9.6rem;
    padding-bottom: 11.2rem;
    border-radius: 3.2rem;
  }
  .support__lead {
    padding-bottom: 5.3333333333rem;
    font-size: 4.8rem;
    line-height: 1.7;
  }
  .support__list {
    display: block;
    margin-top: 9.0666666667rem;
  }
  .support__item {
    width: 68.2666666667rem;
    margin: 0 auto;
  }
  .support__item + .support__item {
    margin-top: 10.1333333333rem;
  }
  .support__image {
    width: 68.2666666667rem;
    height: 42.1333333333rem;
    border-radius: 2.1333333333rem;
  }
  .support__heading {
    margin-top: 5.0666666667rem;
    font-size: 4.2666666667rem;
  }
  .support__description {
    width: calc(100% + 0.15em);
    margin-top: 3.2rem;
    margin-left: 0;
    font-size: 3.4666666667rem;
  }
  .l-support {
    padding: 6.1333333333rem 0 25.6rem;
  }
  .l-support .sectionHeading__ja {
    margin-top: 2.1333333333rem;
  }
  .voice {
    width: 100%;
    margin-top: 12.2666666667rem;
  }
  .voice__item {
    min-width: auto;
    width: 85.3333333333rem;
    margin: 0 2.1333333333rem;
    border-radius: 2.1333333333rem;
  }
  .voicePagination {
    margin-top: 6.4rem;
  }
  .l-voice {
    padding-top: 26.1333333333rem;
  }
  .faqPage {
    display: block;
    width: 100%;
    padding: 11.4666666667rem 0 0;
  }
  .faqPage__nav {
    position: static;
    width: 85.3333333333rem;
    margin: 0 auto;
  }
  .faqPage__navItem {
    width: 40.5333333333rem;
    font-size: 3.4666666667rem;
    line-height: 1;
  }
  .faqPage__navItem + .faqPage__navItem {
    margin: 0;
  }
  .faqPage__navLink {
    display: block;
    padding: 4.5333333333rem 0 3.7333333333rem 0.12em;
    border-radius: 5.8666666667rem;
    text-align: center;
    background-color: #fff;
  }
  .faqPage__main {
    width: 85.3333333333rem;
    margin: 15.7333333333rem auto 0;
    padding-bottom: 21.3333333333rem;
  }
  .faqPage__section + .faqPage__section {
    margin-top: 18rem;
  }
  .faqPage__child {
    margin-top: 8.5333333333rem;
    padding-top: 4rem;
  }
  .faqPage__child + .faqPage__child {
    margin-top: 13.4666666667rem;
    padding-top: 4rem;
  }
  .faqPage__category {
    padding-bottom: 0.8rem;
    border-bottom-width: 0.5333333333rem;
    font-size: 5.3333333333rem;
    line-height: 1.7;
    letter-spacing: 0.28em;
  }
  .faqPage__kind {
    font-size: 4.8rem;
  }
  .faqPage .faq {
    margin-top: 7.2rem;
  }
  .faqNav {
    border: none;
  }
  .faqNav__category {
    padding: 0 0 7.2rem;
    border-bottom-width: 0.2666666667rem;
  }
  .faqNav__category + .faqNav__category {
    margin-top: 6.1333333333rem;
  }
  .faqNav__header {
    padding: 0;
    font-size: 4.2666666667rem;
    line-height: 1.7;
    text-align: center;
  }
  .faqNav__icon {
    display: none;
  }
  .faqNav__body {
    overflow: visible;
    height: auto;
  }
  .faqNav__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4.2666666667rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.1333333333rem;
    -webkit-column-gap: 4.2666666667rem;
       -moz-column-gap: 4.2666666667rem;
            column-gap: 4.2666666667rem;
    margin-top: 3.8666666667rem;
    padding-bottom: 0;
  }
  .faqNav__item {
    width: 40.5333333333rem;
    font-size: 3.4666666667rem;
    text-align: center;
  }
  .faqNav__item + .faqNav__item {
    margin: 0;
  }
  .faqNav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 11.7333333333rem;
    border-radius: 5.8666666667rem;
    font-family: FP-KoburinaGoStdN-W6, Hiragino Kaku Gothic ProN, Yu Gothic, yugothic, メイリオ, meiryo, sans-serif;
    line-height: 1.2;
    background-color: #fff;
  }
  .faqNav__link.item1-1 {
    font-size: 2.9333333333rem;
  }
  .faqFixed {
    position: fixed;
    right: 0;
    bottom: 8.5333333333rem;
    left: 0;
    width: 48rem;
    margin: auto;
    display: block;
    -webkit-transition: -webkit-transform 600ms var(--ease-expo-out);
    transition: -webkit-transform 600ms var(--ease-expo-out);
    transition: transform 600ms var(--ease-expo-out);
    transition: transform 600ms var(--ease-expo-out), -webkit-transform 600ms var(--ease-expo-out);
    -webkit-transform: translate3d(0, calc(100% + 12.8rem), 0);
            transform: translate3d(0, calc(100% + 12.8rem), 0);
    z-index: 9;
  }
  .faqFixed.is-show {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
#_zafscript_null {
  height: 0;
}

#_zafscript_16a02a6443c09c5402ef0cf11ffc6c9c {
  height: 0;
}

.questionPagination .swiper-pagination-bullet::before {
  background-color: #B9BDB9 !important;
}
.questionPagination .swiper-pagination-bullet.is-active::before {
  background-color: rgba(0, 0, 0, 0) !important;
  border-color: #B9BDB9 !important;
}

/*
@media (hover: hover) {
  .buttonMore:hover {
    background-color: #FB7F03;
  }
  .-type02 .buttonMore:hover {
    background-color: var(--color-primary);
  }
  .reserve__button:hover {
    background-color: var(--color-primary);
  }
  .slider01Pager__button.-prev:hover {
    transform: translateX(-0.5 * 16rem);
  }
  .slider01Pager__button.-next:hover {
    transform: translateX(0.5 * 16rem);
  }
  .slider01Pager__navButton:hover {
    color: var(--color-accent);
  }
  .section.-type02 .slider01Pager__navButton:hover {
    color: #fff;
  }
  .slider02__prev:hover {
    transform: translateX(-0.5 * 16rem);
  }
  .slider02__next:hover {
    transform: translateX(0.5 * 16rem);
  }
  .cv__button:hover {
    background-color: #52AD43;
  }
  .faq__q:hover {
    color: var(--color-primary);
  }
  .faq__aInner::before a:hover {
    text-decoration: underline;
  }
  .faq__aInner a:hover {
    text-decoration: none;
  }
  .menu__snsIcon:hover {
    fill: var(--color-accent);
  }
  .menu__subNavLink:hover {
    color: var(--color-accent);
  }
  .menu__cv:hover {
    background-color: #52AD43;
  }
  .menuNav__link:hover {
    color: var(--color-accent);
  }
  .menuButton:hover {
    color: #000;
  }
  .menuButton.is-invert:hover {
    color: var(--color-accent) !important;
  }
  .menuButton.is-open:hover {
    color: #000;
  }
  .medicine__listItem:hover .medicine__listIcon {
    background-color: var(--color-primary);
  }
  .medicine__listItem:hover .medicine__listIcon::before,
  .medicine__listItem:hover .medicine__listIcon::after {
    background-color: #fff;
  }
  .modal__closeButton:hover {
    color: #000;
  }
  .servicePrice__content a:hover {
    text-decoration: none;
  }
  .step:hover .step__header {
    background-color: var(--color-primary);
  }
  .step:hover .step__tagline {
    color: var(--color-accent);
    background-color: #fff;
  }
  .step:hover .step__heading {
    color: #fff;
  }
  .faqPage__navLink:hover {
    color: var(--color-primary);
  }
  .faqNav__header:hover {
    color: #000;
  }
  .faqNav__link:hover {
    color: var(--color-primary);
  }
} 
@media print and (hover: hover),
  screen and (hover: hover) and (min-width: 9999px) {
  .step:hover::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    z-index: 1;
  }
}
*/