@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Shippori Mincho", serif;
  color: #333;
}

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media (min-width: 1150px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 3px 9px 15px;
  padding: 0.4375rem 0.1875rem 0.5625rem 0.9375rem;
  border: 1px solid #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 82%;
  letter-spacing: 0.18em;
  font-weight: 500;
  -webkit-transition: all 0.3s, color 0.3s;
  transition: all 0.3s, color 0.3s;
  font-size: 13px;
  font-size: 0.8125rem;
  max-width: 300px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .button {
    width: 25rem;
    font-size: 1.125rem;
    letter-spacing: 0.18em;
    padding: 0.9375rem 0.3125rem 1rem 1rem;
    max-width: none;
  }
}
@media (any-hover: hover) {
  .button:hover {
    border-color: #199664;
    color: #199664;
  }
  .button:hover .btn__arrow svg path {
    fill: #199664;
  }
}

.button .btn__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .button .btn__arrow {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.button .btn__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

body.active {
  height: 100%;
  overflow: hidden;
}

.footer {
  margin-top: auto;
}

.footer__nav {
  padding: 40px 20px 0;
  padding: 2.5rem 20px 0;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    padding: 6.25rem 25px 0;
  }
}

.footer__nav-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .footer__nav-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  width: 224px;
  width: 14rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 18.75rem;
    margin-bottom: 1.125rem;
  }
}

.footer__logo img {
  height: auto;
}

.footer__nav-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-columns {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem 3.125rem;
    margin-left: 0;
  }
}
@media screen and (min-width: 1400px) {
  .footer__nav-columns {
    gap: 1.5rem 7.875rem;
  }
}

.footer__nav-col {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-col {
    margin-top: 0;
  }
  .footer__nav-col.right .footer__nav-heading {
    margin-bottom: 1.0625rem;
  }
}

.footer__nav-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #199664;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: block;
  padding: 11px 0;
  padding: 0.6875rem 0;
}
@media screen and (min-width: 768px) {
  .footer__nav-heading {
    padding: 0;
    border-top: none;
    line-height: 2;
  }
}
@media (any-hover: hover) {
  .footer__nav-heading:hover {
    opacity: 0.7;
  }
}

.footer__nav-heading.parent {
  padding-bottom: 0;
  padding-top: 8px;
  padding-top: 0.5rem;
}
.footer__nav-heading.parent:first-child {
  padding-top: 0;
}

.footer__nav-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.16em;
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__nav-link {
    padding: 0;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}

.footer__bottom {
  margin-top: 33px;
  margin-top: 2.0625rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 1.6875rem;
    padding: 1rem 0;
    text-align: right;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__info {
    width: 23.375rem;
    margin-left: auto;
    text-align: left;
  }
}

.footer__address {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .footer__address {
    font-size: 0.875rem;
  }
}

.footer__tel {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .footer__tel {
    font-size: 0.875rem;
    margin-top: 0;
  }
}

.footer__bottom-right {
  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;
  gap: 6px;
  gap: 0.375rem;
  margin-top: 16px;
  margin-top: 1rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom-right {
    gap: 0.5rem;
    margin-top: 3.3125rem;
  }
}

.footer__privacy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #333333;
  letter-spacing: 0.1em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .footer__privacy {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .footer__privacy:hover {
    opacity: 0.7;
  }
}

.footer__copy {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #333333;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
}

.footer__bar {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  padding: 35px 20px;
  padding: 2.1875rem 20px;
  background-color: #199664;
}
@media screen and (min-width: 768px) {
  .footer__bar {
    padding: 1.5rem 25px;
  }
}

.footer__bar-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  gap: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .footer__bar-inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__bar-text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.7;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__bar-text {
    text-align: left;
    font-size: 0.875rem;
    width: 38%;
  }
}

.footer__bar-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__bar-logos {
    gap: 2rem;
  }
}

.footer__bar-logo-label {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer__bar-logo-label {
    font-size: 0.875rem;
  }
}

.footer__bar-logo img {
  display: block;
  width: 65px;
  width: 4.0625rem;
  height: 65px;
  height: 4.0625rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__bar-logo img {
    width: 5.875rem;
    height: 5.875rem;
  }
}

.header {
  height: 65px;
  height: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5.75rem;
  }
}
.header.is-change {
  background-color: rgba(255, 255, 255, .8);
}

.header__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 2.4375rem;
  }
}

.header__logo {
  max-width: 147px;
  max-width: 9.1875rem;
  margin-right: 9px;
  margin-right: 0.5625rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 13rem;
    margin-right: 1.5625rem;
  }
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 15px;
  margin-left: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item a {
  padding: 0 15px;
  padding: 0 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
}

.header__nav-item.header__nav-item--contact a {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  position: relative;
  height: auto;
  height: initial;
  color: #fff;
  background-color: #de8430;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  margin-left: 10px;
  margin-left: 0.625rem;
  width: 11px;
  width: 0.6875rem;
  height: 12px;
  height: 0.75rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 54px;
  width: 3.375rem;
  height: inherit;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 15px;
  width: 0.9375rem;
  height: 1px;
  background-color: #199664;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .header__hamburger span {
    height: 2px;
  }
}

.header__hamburger-text {
  font-size: 10px;
  font-size: 0.625rem;
  top: 15px;
  top: 0.9375rem;
  position: relative;
  left: -14%;
  color: #199664;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger-text {
    font-size: 1rem;
    top: 1rem;
  }
}

.header__hamburger span:nth-of-type(1) {
  top: -7px;
  top: -0.4375rem;
  width: 13px;
  width: 0.8125rem;
  left: 51%;
}
@media screen and (min-width: 768px) {
  .header__hamburger span:nth-of-type(1) {
    width: 1.0625rem;
    top: -0.25rem;
  }
}

.header__hamburger span:nth-of-type(2) {
  top: 2px;
  top: 0.125rem;
  width: 22px;
  width: 1.375rem;
  left: 43%;
}
@media screen and (min-width: 768px) {
  .header__hamburger span:nth-of-type(2) {
    top: 0.25rem;
    width: 1.75rem;
  }
}

.header__hamburger span:nth-of-type(3) {
  top: 11px;
  top: 0.6875rem;
  width: 29px;
  width: 1.8125rem;
  left: 34%;
}
@media screen and (min-width: 768px) {
  .header__hamburger span:nth-of-type(3) {
    top: 0.75rem;
    width: 2.4375rem;
  }
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 6px;
  top: 0.375rem;
  width: 29px;
  width: 1.8125rem;
  left: 43%;
  background-color: #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .header__hamburger.is-open span:nth-of-type(1) {
    top: 0.9375rem;
    width: 1.8125rem;
    left: 50%;
  }
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: 5px;
  top: 0.3125rem;
  left: 42%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header__hamburger.is-open span:nth-of-type(3) {
    top: 0.6875rem;
    left: 49%;
    width: 1.8125rem;
  }
}

.header__hamburger.is-open .header__hamburger-text {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__drawer {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 51, 51, .95);
  overflow-y: auto;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .header__drawer {
    width: 32.5rem;
    left: auto;
  }
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  cursor: pointer;
}

.header__drawer-logo {
  position: relative;
  z-index: 1;
  pointer-events: none;
  max-width: 142px;
  max-width: 8.875rem;
  margin-left: auto;
  margin-right: 62px;
  margin-right: 3.875rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.header__drawer-logo a {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .header__drawer-logo {
    max-width: 12.5625rem;
    margin-right: 6.875rem;
    margin-top: 1.3125rem;
    position: fixed;
    right: -0.1875rem;
  }
}

.header__drawer-nav {
  position: relative;
  z-index: 1;
  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;
  min-height: 100%;
  padding: 0 20px 40px;
  padding: 0 1.25rem 2.5rem;
  pointer-events: none;
}
.header__drawer-nav a {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .header__drawer-nav {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding-top: 24.875rem;
    padding-bottom: 12.5rem;
  }
}

.header__drawer-item a {
  padding: 9px 0;
  padding: 0.5625rem 0;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header__drawer-item a {
    font-size: 1.5rem;
    padding: 0.8125rem 0;
  }
}

.header__drawer-item > a {
  width: 46%;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .header__drawer-item > a {
    width: 51%;
  }
}

.header__drawer-item--has-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  gap: 1.5625rem;
}

.header__drawer-parent {
  font-size: 18px;
  font-size: 1.125rem;
}

.header__drawer-item--has-sub .header__drawer-sub {
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0.8;
  width: 130px;
  width: 8.125rem;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .header__drawer-item--has-sub .header__drawer-sub {
    width: 8.875rem;
    font-size: 0.9375rem;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1150px;
  }
}

.treatment-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  .treatment-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1350px;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.layout-low {
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .layout-low {
    padding-top: 9.375rem;
  }
}

.layout-section {
  margin-top: 142px;
  margin-top: 8.875rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .layout-section {
    margin-top: 15.375rem;
  }
}

.layout-media {
  margin-top: 51px;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .layout-media {
    margin-top: 6.0625rem;
  }
}

.main {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .main {
    padding-bottom: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .home .main {
    padding-bottom: 13.0625rem;
  }
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.media + .media {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .media + .media {
    margin-top: 6.5rem;
  }
}

@media screen and (min-width: 768px) {
  .media--re {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.media__img {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .media__img {
    width: 50%;
    margin: 0;
    position: sticky;
    top: 0;
  }
}

.media__img img {
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .media__img img {
    max-width: none;
    margin-inline: 0;
  }
}

.media__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .media__content {
    margin-top: 0;
    width: 40%;
  }
}

.media__title {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .media__title {
    font-size: 2.0625rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.media__text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .media__text {
    font-size: 0.875rem;
    margin-top: 2.8125rem;
    line-height: 2;
  }
}

.mv {
  position: relative;
}

.mv__heading {
  padding-inline: 19px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv__heading {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 25px;
  }
}

.mv__sub-title {
  letter-spacing: 0.02em;
  color: #199664;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .mv__sub-title {
    font-size: 1.3125rem;
  }
}

.mv__title {
  background: -webkit-gradient(linear, left top, right top, from(#199664), color-stop(56%, #ffb900));
  background: linear-gradient(90deg, #199664 0%, #ffb900 56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 3px;
  margin-top: 0.1875rem;
  -webkit-animation: slide 1s ease-in-out;
          animation: slide 1s ease-in-out;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 3.75rem;
    background: -webkit-gradient(linear, left top, right top, from(#199664), color-stop(28%, #ffb900));
    background: linear-gradient(90deg, #199664 0%, #ffb900 28%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.mv__img {
  margin: 4.125rem calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .mv__img {
    margin: 3.8125rem calc(50% - 50vw) 0;
  }
}

.mv__text {
  line-height: 1.67;
  font-weight: 500;
  margin-top: 61px;
  margin-top: 3.8125rem;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mv__text {
    margin-top: 0;
    font-size: 2.5rem;
    width: 100%;
    margin-left: 0;
    position: absolute;
    left: 14.5%;
    top: 49%;
    line-height: 1.7;
    -webkit-transform: translateY(-26%);
            transform: translateY(-26%);
    letter-spacing: 0.03em;
  }
}

.page-nav-wrap {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .page-nav-wrap {
    margin-top: 0.1875rem;
  }
}

.about-page .page-nav-wrap {
  overflow-x: clip;
}

.page-nav {
  position: sticky;
  top: 60px;
  top: 3.75rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  gap: 1.375rem;
  row-gap: 9px;
  row-gap: 0.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: white;
}
@media screen and (min-width: 768px) {
  .page-nav {
    top: 5.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.1875rem;
    padding-block: 0.9375rem;
  }
}

.page-nav__link {
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  font-weight: 500;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 768px) {
  .page-nav__link {
    font-size: 1.125rem;
  }
}

.page-nav__link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  bottom: -0.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #199664;
  opacity: 0;
  -webkit-transition: bottom 0.3s, opacity 0.3s;
  transition: bottom 0.3s, opacity 0.3s;
}

@media (any-hover: hover) {
  .page-nav__link:hover::before {
    bottom: -0.25rem;
    opacity: 1;
  }
}
.salon-sec-title__ja {
  font-family: "Shippori Mincho", serif;
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 400;
  color: #199664;
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .salon-sec-title__ja {
    font-size: 3.0625rem;
  }
}
.salon-sec-title__ja::before {
  content: "";
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 20%, #ffb900 100%);
}
.salon-sec-title__en {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #199664;
  letter-spacing: 0.07em;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .salon-sec-title__en {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.sec-title__en {
  font-size: 39px;
  font-size: 2.4375rem;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  color: #199664;
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .sec-title__en {
    font-size: 4.1875rem;
  }
}
.sec-title__en::before {
  content: "";
  position: absolute;
  bottom: 7px;
  bottom: 0.4375rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 20%, #ffb900 100%);
}
@media screen and (min-width: 768px) {
  .sec-title__en::before {
    bottom: 0.75rem;
  }
}

.sec-title__sub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #199664;
  letter-spacing: 0.1em;
  margin-top: -1px;
  margin-top: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .sec-title__sub {
    font-size: 1.3125rem;
  }
}

.fv__img .swiper-slide.swiper-slide-active .swiper-img,
.fv__img .swiper-slide.swiper-slide-duplicate-active .swiper-img,
.fv__img .swiper-slide.swiper-slide-prev .swiper-img {
  -webkit-animation: scale 8s linear 0s normal both;
          animation: scale 8s linear 0s normal both;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.top-column__slider-wrap .swiper-button-next {
  top: -16px;
  top: -1rem;
  width: 74px;
  width: 4.625rem;
}

.test {
  font-size: 100px;
  font-size: 6.25rem;
  background-color: #111;
  color: #fff;
}

.title-message {
  background: linear-gradient(135deg, rgba(25, 150, 100, .8) 0%, rgba(25, 150, 100, .8) 49%, rgba(255, 180, 0, .8) 100%, rgba(255, 180, 0, .8) 100%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  padding-top: 15px;
  padding-bottom: 13px;
  padding-right: 11px;
  padding: 15px 11px 13px 15px;
  padding: 0.9375rem 0.6875rem 0.8125rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .title-message {
    font-size: 1.5625rem;
    letter-spacing: 0.14em;
    padding: 2.5625rem 2.0625rem 3rem 2rem;
    line-height: 1.9;
  }
}

.title-message span {
  display: block;
  margin-top: 57px;
  margin-top: 3.5625rem;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .title-message span {
    margin-top: 5.3125rem;
    letter-spacing: 0.1em;
  }
}

.treatment-sec-title__ja {
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  color: #199664;
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .treatment-sec-title__ja {
    font-size: 3.0625rem;
  }
}
.treatment-sec-title__ja::before {
  content: "";
  position: absolute;
  bottom: 2px;
  bottom: 0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 20%, #ffb900 100%);
}
@media screen and (min-width: 768px) {
  .treatment-sec-title__ja::before {
    bottom: 0.3125rem;
  }
}

.treatment-sec-title__en {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #199664;
  letter-spacing: 0.07em;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .treatment-sec-title__en {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.sec-title-bgLeft {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.sec-title-bgLeft::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: -10%;
  top: -125%;
  background-image: url(../images/common/bg_sec-title-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 493px;
  height: 30.8125rem;
  width: 100%;
  opacity: var(--deco-fade-opacity);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .sec-title-bgLeft::after {
    height: 48.9375rem;
    width: 110%;
    left: -5%;
    top: -313%;
    background-image: url(../images/osteopathic-introduction/bg_left.png);
  }
}

.sec-title-bgRight {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.sec-title-bgRight::after {
  z-index: -1;
  content: "";
  position: absolute;
  top: -125%;
  background-image: url(../images/common/bg_sec-title-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 336px;
  height: 21rem;
  width: 100%;
  left: clamp(123px, -256.783px + 101.2755102041vw, 520px);
  left: clamp(7.6875rem, -16.0489477041rem + 101.2755102041vw, 32.5rem);
  opacity: var(--deco-fade-opacity);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .sec-title-bgRight::after {
    right: -14%;
    left: auto;
    top: -485%;
    background-image: url(../images/osteopathic-introduction/bg_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: calc(var(--deco-fade-opacity) * 0.8);
    background-position: center;
    width: 100%;
    height: 74.5625rem;
  }
}

.about-page .mv__title {
  background: linear-gradient(145deg, #199664 0%, #ffb900 89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .about-page .mv__title {
    background: linear-gradient(145deg, #199664 0%, #ffb900 34%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.about-philosophy {
  margin-top: 39px;
  margin-top: 2.4375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-philosophy {
    margin-top: 11.4375rem;
    max-height: 2000px;
  }
}

@media screen and (min-width: 768px) {
  .about-philosophy__inner {
    max-width: 1246px;
    margin-inline: auto;
  }
}

.about-philosophy__bg {
  margin: 0 calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .about-philosophy__bg {
    position: sticky;
    top: 12%;
    height: 42.6875rem;
  }
}
@media screen and (min-width: 1441px) {
  .about-philosophy__bg {
    max-height: 700px;
    max-width: 1440px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .about-philosophy__bg:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0) 100%);
    height: 101%;
    width: 40%;
    z-index: 10;
  }
}

.about-philosophy__bg img {
  width: 100%;
  display: block;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about-philosophy__bg img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: none;
    margin-inline: 0;
  }
}

.about-philosophy__heading {
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about-philosophy__heading {
    margin-left: 0;
  }
}

.about-philosophy__content {
  position: relative;
  z-index: 2;
  padding: 40px 20px 13px;
  padding: 2.5rem 20px 0.8125rem;
}
@media screen and (min-width: 768px) {
  .about-philosophy__content {
    width: 38%;
    min-height: 100vh;
    padding: 5rem 0 6.25rem 25px;
  }
}

.about-philosophy__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about-philosophy__title {
    font-size: 2.125rem;
    margin-top: 5.25rem;
    line-height: 1.8;
  }
}

.about-philosophy__title span {
  margin-left: 56px;
  margin-left: 3.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .about-philosophy__title span {
    margin-left: 5.25rem;
  }
}

.about-philosophy__list {
  list-style: none;
  margin-top: 51px;
  margin-top: 3.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  gap: 1.375rem;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about-philosophy__list {
    gap: 2.1875rem;
    margin-top: 7.125rem;
    margin-left: 0;
  }
}

.about-philosophy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .about-philosophy__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 1.0625rem;
  }
}

.about-philosophy__number {
  width: 37px;
  width: 2.3125rem;
  color: #199664;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  font-style: italic;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-philosophy__number {
    font-size: 2.625rem;
    width: 3.8125rem;
  }
}

.about-philosophy__number::before {
  content: "";
  position: absolute;
  right: -11px;
  right: -0.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#199664), to(#ffb900));
  background: linear-gradient(180deg, #199664 0%, #ffb900 100%);
  height: 184%;
  width: 1px;
  right: -2px;
  right: -0.125rem;
}

.about-philosophy__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .about-philosophy__text {
    font-size: 1.375rem;
    line-height: 1.58;
    letter-spacing: 0.02em;
  }
}

.about-philosophy__text strong {
  font-weight: 700;
}

.about-philosophy__footer {
  margin-top: 41px;
  margin-top: 2.5625rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .about-philosophy__footer {
    font-size: 0.9375rem;
    margin-top: 5.3125rem;
    line-height: 2.1;
  }
}

.about-mission {
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-mission {
    margin-top: 8.25rem;
  }
}

.about-mission__bg {
  position: absolute;
  top: 24%;
  top: clamp(193px, -105.469px + 79.5918367347vw, 505px);
  top: clamp(12.0625rem, -6.5918367347rem + 79.5918367347vw, 31.5625rem);
  right: 0;
  z-index: -1;
  width: 268px;
  width: 16.75rem;
  height: 200px;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .about-mission__bg {
    top: -100%;
    right: 0;
    z-index: -1;
    width: 86rem;
    height: 37.5rem;
  }
}

.about-mission__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about-mission__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25%;
    gap: 17.9375rem;
    gap: clamp(0rem, -20.5rem + 42.7083333333vw, 17.9375rem);
    gap: 1.6875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1441px) {
  .about-mission__inner {
    gap: 12%;
  }
}

.about-mission__img {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .about-mission__img {
    width: 53%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1400px) {
  .about-mission__img {
    width: 61%;
  }
}
@media screen and (min-width: 1441px) {
  .about-mission__img {
    margin-left: 0;
    margin-right: 0;
    width: 50%;
  }
}

.about-mission__img img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about-mission__img img {
    max-width: none;
    margin-inline: 0;
  }
}

.about-mission__body {
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .about-mission__body {
    margin-top: 0;
    width: 38%;
  }
}
@media screen and (min-width: 1441px) {
  .about-mission__body {
    width: 40%;
  }
}

.about-mission__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .about-mission__heading {
    font-size: 2.125rem;
    margin-top: 3.4375rem;
    line-height: 1.8;
  }
}

.about-mission__heading span {
  display: block;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about-mission__heading span {
    margin-left: 2.375rem;
  }
}

.about-mission__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 22px;
  margin-top: 1.375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .about-mission__text {
    font-size: 1rem;
    letter-spacing: 0.01em;
    margin-top: 3.75rem;
  }
}

.about-vision {
  margin-top: 43px;
  margin-top: 2.6875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-vision {
    margin-top: 15rem;
  }
}

.about-vision__bg {
  position: absolute;
  top: clamp(205px, 200.216px + 1.2755102041vw, 210px);
  top: clamp(12.8125rem, 12.5135522959rem + 1.2755102041vw, 13.125rem);
  left: 0;
  z-index: -1;
  width: clamp(288px, 27.795px + 69.387755102vw, 560px);
  width: clamp(18rem, 1.737244898rem + 69.387755102vw, 35rem);
  height: 200px;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .about-vision__bg {
    width: 59rem;
    height: 37.5rem;
    top: -37%;
  }
}

.about-vision__inner {
  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;
}
@media screen and (min-width: 768px) {
  .about-vision__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(0rem, -17.3571428571rem + 36.1607142857vw, 15.1875rem);
    gap: 6%;
  }
}
@media screen and (min-width: 1441px) {
  .about-vision__inner {
    gap: 12%;
  }
}

.about-vision__img {
  margin: 1.875rem calc(50% - 50vw) 0;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about-vision__img {
    margin-top: 0;
    width: 59%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: calc(50% - 50vw);
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .about-vision__img {
    width: 62%;
  }
}
@media screen and (min-width: 1441px) {
  .about-vision__img {
    width: 52%;
    margin-right: 0;
    margin-left: 0;
  }
}

.about-vision__img img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about-vision__img img {
    max-width: none;
    margin-inline: 0;
  }
}

.about-vision__body {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .about-vision__body {
    width: 37%;
    margin-top: 0;
    margin-left: 2.5rem;
  }
}
.about-vision__en {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  color: #199664;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .about-vision__en {
    font-size: 2.5rem;
  }
}

.about-vision__sub {
  font-size: 12px;
  font-size: 0.75rem;
  color: #199664;
  letter-spacing: 0.1em;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.about-vision__heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .about-vision__heading {
    font-size: 2.125rem;
    margin-top: 4.0625rem;
    line-height: 1.8;
  }
}

.about-vision__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 22px;
  margin-top: 1.375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .about-vision__text {
    font-size: 1rem;
    letter-spacing: 0.01em;
    margin-top: 3.75rem;
  }
}

/*======================================
   Message
=======================================*/
.about-message {
  margin-top: 50px;
  margin-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-message {
    margin-top: 15rem;
  }
}

.about-message__img {
  margin: 0 calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .about-message__img {
    max-height: 600px;
  }
}
@media screen and (min-width: 1441px) {
  .about-message__img {
    max-width: 1440px;
    margin-inline: auto;
  }
}

.about-message__img img {
  width: 100%;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about-message__img img {
    max-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: none;
    margin-inline: 0;
  }
}

.about-message__inner {
  max-width: 1150px;
  max-width: 71.875rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .about-message__inner {
    padding-inline: 25px;
  }
}

.about-message__content {
  position: absolute;
  top: 13%;
  right: 18px;
  right: 1.125rem;
  right: clamp(18px, -104.448px + 32.6530612245vw, 146px);
  right: clamp(1.125rem, -6.5280612245rem + 32.6530612245vw, 9.125rem);
}
@media screen and (min-width: 768px) {
  .about-message__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: 3.5rem;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@media screen and (min-width: 1024px) {
  .about-message__content {
    left: 54%;
    -webkit-transform: translateX(-50%);
    transform: translateX(0%);
  }
}

@media screen and (min-width: 768px) {
  .about-message__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.about-message__text {
  margin-left: clamp(40px, -158.979px + 53.0612244898vw, 248px);
  margin-left: clamp(2.5rem, -9.9362244898rem + 53.0612244898vw, 15.5rem);
  margin-top: 46px;
  margin-top: 2.875rem;
  width: 291px;
  width: 18.1875rem;
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1.65;
}
@media screen and (min-width: 768px) {
  .about-message__text {
    font-size: 1.875rem;
    margin-left: 3.8125rem;
    margin-top: 1rem;
    line-height: 1.8;
    width: 86%;
  }
}
@media screen and (min-width: 1024px) {
  .about-message__text {
    margin-top: 2.125rem;
  }
}

.about-message__signature {
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-left: clamp(94px, -119.38px + 56.9014084507vw, 700px);
  margin-left: clamp(5.875rem, -7.4612676056rem + 56.9014084507vw, 43.75rem);
  width: 195px;
  width: 12.1875rem;
}
@media screen and (min-width: 768px) {
  .about-message__signature {
    margin-top: 2.5rem;
    margin-left: 9.6875rem;
    width: 41%;
  }
}
.about-message__signature span {
  font-size: 14px;
  font-size: 0.875rem;
}

.about-message__intro-content {
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .about-message__intro-content {
    width: 73%;
    margin-inline: auto;
    margin-top: 5.8125rem;
    margin-right: 8.5625rem;
  }
}

.about-message__intro {
  line-height: 1.7;
  font-size: 21px;
  font-size: 1.3125rem;
  color: #199664;
  width: 103%;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about-message__intro {
    font-size: 1.875rem;
    width: 100%;
  }
}
.about-message__intro::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  bottom: -1rem;
  background: -webkit-gradient(linear, left top, right top, from(#199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 0%, #ffb900 100%);
  height: 1px;
  width: 25px;
  width: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about-message__intro::before {
    width: 1.9375rem;
    bottom: -1.25rem;
  }
}

.about-message__intro-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 33px;
  margin-top: 2.0625rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .about-message__intro-text {
    margin-top: 4.0625rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.about-hero {
  margin-top: 69px;
  margin-top: 4.3125rem;
  overflow: hidden;
  height: 290px;
}
@media screen and (min-width: 768px) {
  .about-hero {
    margin-top: 5.6875rem;
    height: 28.125rem;
  }
}
@media screen and (min-width: 1441px) {
  .about-hero {
    max-width: 1440px;
    margin-inline: auto;
  }
}

.js-parallax img {
  height: calc(100% + 20px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .js-parallax img {
    height: calc(100% + 120px);
  }
}

.about-growth {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .about-growth {
    margin-top: 7.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .about-growth__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.625rem;
    max-width: 1183px;
  }
}
@media screen and (min-width: 1441px) {
  .about-growth__inner {
    max-width: 1440px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .about-growth__body {
    width: 55%;
    padding-top: 2.625rem;
  }
}

.about-growth__heading {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.8;
  color: #199664;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-growth__heading {
    font-size: 1.8125rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}
.about-growth__heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  bottom: -1rem;
  background: -webkit-gradient(linear, left top, right top, from(#199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 0%, #ffb900 100%);
  height: 1px;
  width: 25px;
  width: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about-growth__heading::before {
    width: 1.9375rem;
    bottom: -1.25rem;
  }
}

.about-growth__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 39px;
  margin-top: 2.4375rem;
  line-height: 1.7;
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .about-growth__text {
    font-size: 0.875rem;
    margin-top: 3.875rem;
    line-height: 1.95;
  }
}

.about-growth__img {
  margin-top: 71px;
  margin-top: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .about-growth__img {
    margin-right: calc(50% - 50vw);
    margin-left: auto;
    width: 47%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 1rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1441px) {
  .about-growth__img {
    margin-right: 0;
  }
}

.about-growth__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-work {
  margin-top: 63px;
  margin-top: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .about-work {
    margin-top: 7.5rem;
  }
}

@media screen and (min-width: 1441px) {
  .about-work__inner {
    max-width: 1440px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .about-work__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.75rem;
  }
}

.about-work__images {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-work__images {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: calc(50% - 50vw);
    width: 49%;
  }
}
@media screen and (min-width: 1441px) {
  .about-work__images {
    margin-left: 0;
  }
}

.about-work__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (min-width: 768px) {
  .about-work__body {
    padding-top: 0.625rem;
  }
}

.about-work__heading {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.8;
  color: #199664;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-work__heading {
    font-size: 1.8125rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}
.about-work__heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  bottom: -0.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 0%, #ffb900 100%);
  height: 1px;
  width: 25px;
  width: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about-work__heading::before {
    width: 1.9375rem;
    bottom: -1.625rem;
  }
}

.about-work__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-top: 32px;
  margin-top: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .about-work__text {
    font-size: 0.875rem;
    margin-top: 3.9375rem;
    line-height: 2;
  }
}

.about-work__text + .about-work__text {
  margin-top: 16px;
  margin-top: 1rem;
}

.about-work__footer {
  margin-top: 97px;
  margin-top: 6.0625rem;
}
@media screen and (min-width: 768px) {
  .about-work__footer {
    margin-top: 9.5rem;
  }
}

.about-work__link {
  margin-inline: auto;
}

.column-page {
  position: relative;
}
.column-page:after {
  content: "";
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 2%;
  background-image: url(../images/osteopathic-introduction/bg_left-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 408px;
  height: 25.5rem;
  width: 252px;
  width: 15.75rem;
}
@media screen and (min-width: 768px) {
  .column-page:after {
    height: 37.5rem;
    width: 50rem;
    background-image: url(../images/osteopathic-introduction/bg_left.png);
    bottom: -20%;
  }
}

.column-list {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .column-list {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}
.column-list:after {
  content: "";
  z-index: -1;
  position: absolute;
  right: 0;
  top: 16%;
  background-image: url(../images/osteopathic-introduction/bg_right-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 408px;
  height: 25.5rem;
  width: 252px;
  width: 15.75rem;
}
@media screen and (min-width: 768px) {
  .column-list:after {
    height: 62.5rem;
    width: 79.75rem;
    background-image: url(../images/osteopathic-introduction/bg_right.png);
    top: 9%;
  }
}

.column-list__inner {
  max-width: 1150px;
}

.column-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  gap: 4rem;
  list-style: none;
  width: 90%;
  margin-inline: auto;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .column-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.75rem;
    width: 100%;
  }
}

.column-list__item {
  margin: 0;
}
.column-list__item--empty {
  grid-column: 1/-1;
  list-style: none;
}

.column-list__empty {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #666;
  margin: 0;
  padding: 24px 0;
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .column-list__empty {
    font-size: 1rem;
    padding: 2.5rem 0;
  }
}

.column-list__card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.column-list__card:hover .column-list__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.column-list__card:hover .column-list__title {
  color: #199664;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.column-list__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #cccccc;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
.column-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.column-list__img .column-list__no-img {
  width: 95%;
  margin-inline: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.column-list__date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #999999;
  letter-spacing: 0.03em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .column-list__date {
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}
.column-list__date:after {
  content: "";
  position: absolute;
  bottom: -10px;
  bottom: -0.625rem;
  left: 0;
  width: 64%;
  height: 2px;
  height: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 20%, #ffb900 100%);
}
@media screen and (min-width: 768px) {
  .column-list__date:after {
    bottom: -0.625rem;
    width: 69%;
  }
}

.column-list__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .column-list__title {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
  }
}

.column-list__pagination {
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .column-list__pagination {
    margin-top: 4rem;
  }
}

.column-list__pagination-prevnext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .column-list__pagination-prevnext {
    gap: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.column-list__pagination-prevnext-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 150px;
  max-width: 9.375rem;
}
@media screen and (min-width: 768px) {
  .column-list__pagination-prevnext-inner {
    max-width: 8.125rem;
  }
}
.column-list__pagination-prevnext-inner a,
.column-list__pagination-prevnext-inner .column-list__pagination-disabled {
  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;
  width: 100%;
  padding-block: 5px;
  padding-block: 0.3125rem;
  padding-inline: 5px 7px;
  padding-inline: 0.3125rem 0.4375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  -webkit-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}
@media screen and (min-width: 768px) {
  .column-list__pagination-prevnext-inner a,
  .column-list__pagination-prevnext-inner .column-list__pagination-disabled {
    font-size: 0.875rem;
  }
}
.column-list__pagination-prevnext-inner a:hover {
  opacity: 0.7;
}
.column-list__pagination-prevnext-inner .column-list__pagination-disabled {
  opacity: 0.5;
  cursor: default;
}

.column-list__pagination-prev {
  padding-inline: 7px 5px;
  padding-inline: 0.4375rem 0.3125rem;
}

.column-list__pagination-next {
  padding-inline: 5px 7px;
  padding-inline: 0.3125rem 0.4375rem;
}

.column-list__pagination .nav-links {
  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;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .column-list__pagination .nav-links {
    gap: 0.5rem;
  }
}

.column-list__pagination .page-numbers {
  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;
  min-width: 35px;
  min-width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  padding: 0 8px;
  padding: 0 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  -webkit-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}
@media screen and (min-width: 768px) {
  .column-list__pagination .page-numbers {
    min-width: 1.875rem;
    height: 1.875rem;
  }
}
.column-list__pagination .page-numbers:hover:not(.current) {
  opacity: 0.7;
}
.column-list__pagination .page-numbers.current {
  background: #999999;
  border-color: #999999;
  color: #fff;
}
.column-list__pagination .page-numbers.prev, .column-list__pagination .page-numbers.next {
  border: none;
  background: transparent;
  font-size: 18px;
  font-size: 1.125rem;
}
.column-list__pagination .page-numbers img {
  width: 10px;
  width: 0.625rem;
}
.column-list__pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.column-list__button {
  margin-top: 101px;
  margin-top: 6.3125rem;
}
@media screen and (min-width: 768px) {
  .column-list__button {
    margin-top: 8.125rem;
  }
}

.column-list__button-link {
  margin-inline: auto;
  background-color: #fff;
}

.column-single__inner {
  max-width: 850px;
}

.column-single__title {
  letter-spacing: 0.03em;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .column-single__title {
    margin-top: 0;
    font-size: 1.875rem;
  }
}
.column-single__title:after {
  content: "";
  position: absolute;
  bottom: -7px;
  bottom: -0.4375rem;
  left: 19px;
  left: 1.1875rem;
  width: 13%;
  height: 1px;
  height: 0.0625rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 20%, #ffb900 100%);
}
@media screen and (min-width: 768px) {
  .column-single__title:after {
    content: none;
  }
}

.column-single__thumbnail {
  margin-top: 20px;
  margin-top: 1.25rem;
  overflow: hidden;
}
.column-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .column-single__thumbnail {
    margin-top: 1.5rem;
  }
}

.column-single__date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #999999;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 14px;
  margin-top: 0.875rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .column-single__date {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .column-single__date:after {
    content: "";
    position: absolute;
    bottom: -0.625rem;
    left: 0;
    width: 64%;
    height: 0.125rem;
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, #199664), to(#ffb900));
    background: linear-gradient(90deg, #199664 20%, #ffb900 100%);
  }
}

.column-single__content {
  margin-top: 38px;
  margin-top: 2.375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .column-single__content {
    margin-top: 3.125rem;
  }
}

.column-single__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  gap: 1rem;
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .column-single__buttons {
    margin-top: 3.75rem;
    gap: 2.5rem;
  }
}
.column-single__buttons.u-desktop {
  display: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .column-single__buttons.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 470px;
    margin-inline: auto;
  }
}

.column-single__buttons-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
}
.column-single__buttons-col--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.column-single__buttons-col--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column-single__buttons-col--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.column-single__button:hover {
  color: #000;
  color: initial;
  border-color: currentColor;
  border-color: initial;
  opacity: 0.7;
}
.column-single__button:hover .btn__arrow svg path {
  fill: initial;
}

.column-single__buttons--sp {
  -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;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .column-single__buttons--sp {
    display: none;
  }
}
.column-single__buttons--sp .column-single__buttons-row--prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  gap: 1rem;
  width: 95%;
  max-width: 400px;
  max-width: 25rem;
}
.column-single__buttons--sp .column-single__buttons-row--prevnext .column-single__button--prev:only-child {
  grid-column: 1;
  justify-self: start;
}
.column-single__buttons--sp .column-single__buttons-row--prevnext .column-single__button--next:only-child {
  grid-column: 2;
  justify-self: end;
}
.column-single__buttons--sp .column-single__buttons-row--list {
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.column-single__button {
  background-color: #fff;
  width: auto;
  min-width: 140px;
  min-width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .column-single__button {
    min-width: 8.125rem;
    font-size: 0.875rem;
    padding: 0.375rem 0.3125rem 0.375rem 0.4375rem;
  }
}
.column-single__button--disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.column-single__content p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .column-single__content p {
    line-height: 1.7;
    font-size: 0.875rem;
    letter-spacing: 0.007em;
  }
}

.column-single__content strong {
  font-weight: 700;
}

.column-single__content .under-line span {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #c58e22));
  background-image: linear-gradient(transparent 60%, #c58e22 60%);
  text-decoration: none !important;
}

.column-single__content h2 {
  line-height: 1.7;
  position: relative;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: white;
  padding-inline: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(135deg, rgba(25, 150, 100, .8) 0%, rgba(25, 150, 100, .8) 49%, rgba(255, 180, 0, .8) 100%, rgba(255, 180, 0, .8) 100%);
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  margin-top: 34px;
  margin-top: 2.125rem;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .column-single__content h2 {
    margin-bottom: 0.625rem;
    margin-top: 2.5rem;
    letter-spacing: 0.12em;
    font-size: 1.625rem;
  }
}

.column-single__content h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  font-size: 19px;
  font-size: 1.1875rem;
  padding-left: 0.5em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .column-single__content h3 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 0.625rem;
  }
}

.column-single__content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(135deg, rgba(25, 150, 100, .8) 0%, rgba(25, 150, 100, .8) 49%, rgba(255, 180, 0, .8) 100%, rgba(255, 180, 0, .8) 100%);
}

.column-single__content h4 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  position: relative;
  margin-top: 32px;
  margin-top: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .column-single__content h4 {
    font-size: 1rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.625rem;
    margin-top: 2.625rem;
  }
}

.column-single__content h4::before {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(135deg, rgba(25, 150, 100, .8) 0%, rgba(25, 150, 100, .8) 49%, rgba(255, 180, 0, .8) 100%, rgba(255, 180, 0, .8) 100%);
}
@media screen and (min-width: 1400px) {
  .column-single__content .wp-block-image {
    margin-inline: auto;
  }
}

.column-single__content a {
  font-weight: 400;
  text-decoration: underline;
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  color: #004780;
}
@media screen and (min-width: 768px) {
  .column-single__content a {
    font-size: 1.1875rem;
  }
}

.column-single__content p a {
  margin-bottom: 0;
  color: #0739cd;
}

.column-single__content ul {
  background-color: #fff;
  border-radius: 0.5rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
  padding: 24px 16px 24px 20px;
  padding: 1.5rem 1rem 1.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .column-single__content ul {
    padding: 2.9375rem 1.25rem 2.8125rem;
  }
}

.column-single__content ul li {
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .column-single__content ul li {
    font-size: 0.875rem;
  }
}

.column-single__content ul li:not(:first-child) {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .column-single__content ul li:not(:first-child) {
    margin-top: 0.6875rem;
  }
}

.column-single__content ol {
  list-style-type: decimal;
  padding-left: 20px;
  padding-left: 1.25rem;
}
.column-single__content ol li {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .column-single__content ol li {
    font-size: 0.875rem;
  }
}

.column-single__content ol li:not(:first-child) {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .column-single__content ol li:not(:first-child) {
    margin-top: 0.6875rem;
  }
}

.wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.wp-block-table tbody {
  background-color: #fff;
}
.wp-block-table tr:first-child td {
  color: #fff;
  background-color: #696969;
}
.wp-block-table tr:not(:first-child) td:not(:first-child) {
  font-weight: 700;
}
.wp-block-table th {
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .wp-block-table th {
    font-size: 1rem;
  }
}
.wp-block-table td {
  border: solid 1px #f7f6f3;
  padding: 19px;
  padding: 1.1875rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .wp-block-table td {
    padding: 0.5rem 0.75rem;
  }
}
.wp-block-table thead {
  border-bottom: none;
}
.wp-block-table thead tr {
  color: white;
  text-align: left;
  background-color: #696969;
}
@media screen and (min-width: 768px) {
  .wp-block-table {
    margin-top: 2.9375rem;
  }
}

.column-single__content table {
  border-collapse: collapse;
  width: 100%;
}

.company-sec-title__ja {
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  color: #199664;
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .company-sec-title__ja {
    font-size: 3.0625rem;
  }
}
.company-sec-title__ja::before {
  content: "";
  position: absolute;
  bottom: 2px;
  bottom: 0.125rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 20%, #ffb900 100%);
}
@media screen and (min-width: 768px) {
  .company-sec-title__ja::before {
    bottom: 0.3125rem;
  }
}

.company-sec-title__en {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #199664;
  letter-spacing: 0.07em;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .company-sec-title__en {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.company-about {
  -webkit-margin-before: 78px;
          margin-block-start: 78px;
  -webkit-margin-before: 4.875rem;
          margin-block-start: 4.875rem;
  -webkit-padding-after: 78px;
          padding-block-end: 78px;
  -webkit-padding-after: 4.875rem;
          padding-block-end: 4.875rem;
}
@media screen and (min-width: 768px) {
  .company-about {
    -webkit-margin-before: 10.625rem;
            margin-block-start: 10.625rem;
    -webkit-padding-after: 10.625rem;
            padding-block-end: 10.625rem;
  }
}

.company-about__content {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  width: 100%;
  max-width: 900px;
  max-width: 56.25rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .company-about__list {
    display: grid;
    grid-template-columns: 13.56% 1fr;
    gap: 3.125rem 5.625rem;
  }
}

.company-about__list-title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}
.company-about__list-title:not(:first-of-type) {
  -webkit-margin-before: 26px;
          margin-block-start: 26px;
  -webkit-margin-before: 1.625rem;
          margin-block-start: 1.625rem;
}
@media screen and (min-width: 768px) {
  .company-about__list-title:not(:first-of-type) {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.company-about__list-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .company-about__list-text {
    font-size: 0.9375rem;
  }
}

.company-about__list-subtitle {
  display: block;
  font-weight: 700;
}
.company-about__list-subtitle:not(:first-of-type) {
  -webkit-margin-before: 26px;
          margin-block-start: 26px;
  -webkit-margin-before: 1.625rem;
          margin-block-start: 1.625rem;
}

.company-about__bottom {
  -webkit-margin-before: 100px;
          margin-block-start: 100px;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (min-width: 768px) {
  .company-about__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    -webkit-column-gap: 3.75rem;
       -moz-column-gap: 3.75rem;
            column-gap: 3.75rem;
    max-width: 56.25rem;
    margin-inline: auto;
  }
}

.company-about__map-area {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company-about__map-area {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    grid-column: 1/2;
    grid-row: 1/3;
    display: grid;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
}

.company-about__map iframe {
  width: 100%;
  aspect-ratio: 750/620;
}
@media screen and (min-width: 768px) {
  .company-about__map iframe {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media screen and (min-width: 768px) {
  .company-about__img-area {
    grid-column: 2/3;
    grid-row: 1/3;
    display: grid;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
}

.company-about__img {
  width: 100%;
}
.company-about__img img {
  width: 100%;
  height: auto;
  display: block;
}

.company-about__map-caption,
.company-about__img-caption {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-inline: 20px;
  margin-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-about__map-caption,
  .company-about__img-caption {
    margin-inline: 0;
    font-size: 0.875rem;
  }
}

.company-history {
  padding-block: 50px;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .company-history {
    padding-block: 9.375rem;
    background: #eefbeb;
  }
}

.company-history-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .company-history-title .company-sec-title__ja {
    color: #111;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }
  .company-history-title .company-sec-title__ja::before {
    content: none;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .company-history-title .company-sec-title__en {
    display: none;
  }
}

.company-history__content {
  -webkit-margin-before: 22px;
          margin-block-start: 22px;
  -webkit-margin-before: 1.375rem;
          margin-block-start: 1.375rem;
  width: 100%;
  padding-block: 16px 80px;
  padding-block: 1rem 5rem;
  background: #eefbeb;
}
@media screen and (min-width: 768px) {
  .company-history__content {
    padding-block: 0;
  }
}

@media screen and (min-width: 768px) {
  .company-history__inner {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
  }
  .company-history__inner:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #199664;
  }
}

.company-history__list {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .company-history__list {
    row-gap: 1.5rem;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    max-width: 28rem;
  }
}

.company-history__list-title {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .company-history__list-title {
    font-size: 0.9375rem;
  }
}

.company-history__list-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  -webkit-margin-before: -0.1em;
          margin-block-start: -0.1em;
}
@media screen and (min-width: 768px) {
  .company-history__list-text {
    font-size: 0.9375rem;
  }
}

.company-related__links {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (min-width: 768px) {
  .company-related__links {
    -webkit-margin-before: 10rem;
            margin-block-start: 10rem;
  }
}

.company-related__link-button {
  margin-inline: auto;
  width: 74%;
  padding-right: 5px;
  padding-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .company-related__link-button {
    width: 25rem;
  }
}
.company-related__link-button span {
  width: 9px;
  width: 0.5625rem;
}

.contact-mv .mv__img,
.contact-mv .mv__img img {
  height: 280px;
  height: 17.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .contact-mv .mv__img,
  .contact-mv .mv__img img {
    height: auto;
  }
}

.p-contact {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.p-contact__inner {
  max-width: 848px;
  max-width: 53rem;
}

.p-contact form {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-contact__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
  color: #333333;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__lead {
    font-size: 1rem;
    margin-bottom: 3.5rem;
  }
}

.p-contact__row {
  padding: 24px 0;
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact__row {
    padding: 1.25rem 0;
  }
}

.p-contact__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    width: 13.75rem;
    margin-bottom: 0;
    padding-top: 0.625rem;
  }
}

.p-contact__labelText {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #199664;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-contact__labelText {
    font-size: 0.875rem;
  }
}

.p-contact__required {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: #199664;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
  border-radius: 0.1875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.p-contact__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-contact__field input[type=text],
.p-contact__field input[type=email],
.p-contact__field input[type=tel],
.p-contact__field textarea {
  display: block;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #333333;
  background: #eefbeb;
  border: 1px solid #199664;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contact__field input[type=text],
  .p-contact__field input[type=email],
  .p-contact__field input[type=tel],
  .p-contact__field textarea {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    margin-top: 0.4375rem;
  }
}
.p-contact__field input[type=text]:focus,
.p-contact__field input[type=email]:focus,
.p-contact__field input[type=tel]:focus,
.p-contact__field textarea:focus {
  border-color: #199664;
}
.p-contact__field input[type=text]::-webkit-input-placeholder,
.p-contact__field input[type=email]::-webkit-input-placeholder,
.p-contact__field input[type=tel]::-webkit-input-placeholder,
.p-contact__field textarea::-webkit-input-placeholder {
  color: #bbb;
}
.p-contact__field input[type=text]::-moz-placeholder,
.p-contact__field input[type=email]::-moz-placeholder,
.p-contact__field input[type=tel]::-moz-placeholder,
.p-contact__field textarea::-moz-placeholder {
  color: #bbb;
}
.p-contact__field input[type=text]::-ms-input-placeholder,
.p-contact__field input[type=email]::-ms-input-placeholder,
.p-contact__field input[type=tel]::-ms-input-placeholder,
.p-contact__field textarea::-ms-input-placeholder {
  color: #bbb;
}
.p-contact__field input[type=text]::placeholder,
.p-contact__field input[type=email]::placeholder,
.p-contact__field input[type=tel]::placeholder,
.p-contact__field textarea::placeholder {
  color: #bbb;
}
.p-contact__field textarea {
  min-height: 180px;
  min-height: 11.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__field textarea {
    min-height: 12.5rem;
    max-height: 12.5rem;
  }
}

.p-contact__field--radio {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.p-contact__field--radio .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__field--radio .wpcf7-radio {
    gap: 0.625rem;
  }
}
.p-contact__field--radio .wpcf7-list-item {
  margin: 0;
}
.p-contact__field--radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact__field--radio .wpcf7-list-item label {
    font-size: 0.875rem;
  }
}
.p-contact__field--radio .wpcf7-list-item input[type=radio] {
  margin-left: 0;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-contact__field--radio .wpcf7-list-item input[type=radio]:checked {
  border-color: #199664;
}
.p-contact__field--radio .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: #199664;
  border-radius: 50%;
}

.p-contact__submit {
  position: relative;
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    margin-top: 2.5rem;
  }
}
.p-contact__submit:after {
  content: "";
  right: 7px;
  right: 0.4375rem;
  top: 26%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-image: url(../images/common/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 14px;
  height: 0.875rem;
  width: 11px;
  width: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__submit:after {
    top: 28%;
  }
}
.p-contact__submit input[type=submit] {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 0;
  padding: 7px 32px 9px 15px;
  padding: 0.4375rem 2rem 0.5625rem 0.9375rem;
  border: 1px solid #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 274px;
  letter-spacing: 0.18em;
  font-weight: 500;
  -webkit-transition: border-color 0.3s, color 0.3s, opacity 0.3s;
  transition: border-color 0.3s, color 0.3s, opacity 0.3s;
  font-size: 13px;
  font-size: 0.8125rem;
  max-width: 300px;
  text-align: left;
  margin-inline: auto;
  background-color: #fff;
  color: #333333;
  line-height: 1.5;
  min-height: 44px;
  min-height: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__submit input[type=submit] {
    width: 25rem;
    font-size: 1.125rem;
    letter-spacing: 0.18em;
    padding: 0.9375rem 2.5rem 1rem 1rem;
    max-width: none;
    min-height: 0;
  }
}
.p-contact__submit input[type=submit]:hover {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-contact__submit:hover input[type=submit] {
    border-color: #199664;
    color: #199664;
  }
}

.wpcf7-form .wpcf7-response-output {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  margin: 24px 0 0;
  margin: 1.5rem 0 0;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
}
.wpcf7-form .wpcf7-spinner {
  margin: 16px auto 0;
  margin: 1rem auto 0;
}

.wpcf7-not-valid-tip {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 6px;
  margin-top: 0.375rem;
  display: block;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid {
  border-color: #ddd;
}

.p-contact-tel {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-tel {
    padding-bottom: 7.5rem;
  }
}

.p-contact-tel__inner {
  max-width: 800px;
  max-width: 50rem;
  text-align: center;
}

.p-contact-tel__heading {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  border-bottom: 1px solid #199664;
  display: inline-block;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact-tel__heading {
    font-size: 1.3125rem;
    margin-bottom: 2.5rem;
  }
}

.p-contact-tel__company {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-contact-tel__company {
    font-size: 1.125rem;
  }
}

.p-contact-tel__number {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #199664;
  letter-spacing: 0.06em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-contact-tel__number {
    font-size: 3.25rem;
    pointer-events: none;
  }
}

.p-contact-tel__hours {
  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;
  gap: 12px;
  gap: 0.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact-tel__hours {
    margin-bottom: 0.875rem;
  }
}

.p-contact-tel__hours-badge {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #199664;
  letter-spacing: 0.04em;
  border: 1px solid #199664;
  padding: 2px 8px;
  padding: 0.125rem 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-contact-tel__hours-badge {
    font-size: 0.875rem;
  }
}

.p-contact-tel__hours-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-contact-tel__hours-text {
    font-size: 0.9375rem;
  }
}

.p-contact-tel__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-contact-tel__note {
    font-size: 0.875rem;
  }
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.contact-complete {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact-complete {
    font-size: 1.5rem;
    margin-top: 6.125rem;
  }
}

.contact-complete__footer {
  margin-top: 44px;
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .contact-complete__footer {
    margin-top: 5.5rem;
  }
}

.top-goal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .top-goal__grid {
    grid-template-columns: 33.625rem 1fr;
    grid-template-rows: 37.5rem 40.625rem;
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.top-goal__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.nursing-care-intro {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .nursing-care-intro {
    margin-top: 11.6875rem;
  }
}

.nursing-care-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 68px;
  gap: 4.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .nursing-care-intro__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .nursing-care-page .nursing-care-intro__inner {
    gap: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .nursing-care-page .nursing-care-intro__body {
    width: 49%;
    margin-right: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .nursing-care-page .nursing-care-intro__body {
    width: 41%;
    margin-right: 4.5rem;
  }
}

.nursing-care-intro__body {
  width: 93%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .nursing-care-intro__body {
    width: 35%;
    margin-right: 4.5rem;
  }
}

.nursing-care-intro__heading {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .nursing-care-intro__heading {
    font-size: 2.125rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
}

.nursing-care-intro__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 32px;
  margin-top: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .nursing-care-intro__text {
    font-size: 1rem;
    margin-top: 4.375rem;
    width: 95%;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .nursing-care-intro__img {
    width: 46%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.nursing-care-intro__img img {
  width: 100%;
  height: auto;
  display: block;
}

.nursing-service {
  position: relative;
}

.nursing-service .sec-title-bgRight:after {
  background-image: url(../images/osteopathic-introduction/bg_right-sp.png);
  left: clamp(-90px, -463.086px + 99.4897959184vw, 300px);
  left: clamp(-5.625rem, -28.9429209184rem + 99.4897959184vw, 18.75rem);
  top: -422%;
  width: 136%;
  height: 688px;
  height: 43rem;
}
@media screen and (min-width: 768px) {
  .nursing-service .sec-title-bgRight:after {
    left: auto;
    right: -7%;
    background-image: url(../images/osteopathic-introduction/bg_right.png);
    width: 100%;
    height: 85rem;
    top: -404%;
  }
}

.nursing-service__item {
  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: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .nursing-service__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 6.1875rem;
  }
}

.nursing-service__item + .nursing-service__item {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .nursing-service__item + .nursing-service__item {
    margin-top: 6.5rem;
  }
}

.nursing-service__item-img {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .nursing-service__item-img {
    width: 50%;
    margin: 0;
    position: sticky;
    top: 0;
  }
}

.nursing-service__item-content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .nursing-service__item-content {
    margin-top: 0;
    width: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .nursing-service__item-content {
    width: 41%;
  }
}

.nursing-service__item-title {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .nursing-service__item-title {
    font-size: 2.0625rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.nursing-service__item-text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .nursing-service__item-text {
    font-size: 0.875rem;
    margin-top: 2.8125rem;
    line-height: 2;
    letter-spacing: 0;
  }
}

.nursing-service__button {
  margin-top: 69px;
  margin-top: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .nursing-service__button {
    margin-top: 6.1875rem;
  }
}

.nursing-service__link {
  margin-inline: auto;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .nursing-service__link {
    font-size: 1.125rem;
  }
}

.child-support {
  position: relative;
}
.child-support::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0%;
  top: -7%;
  background-image: url(../images/common/bg_sec-left-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 464px;
  height: 29rem;
  width: 107%;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .child-support::before {
    background-image: url(../images/common/bg_sec-left.png);
    height: 50rem;
    width: 100%;
    top: -25%;
  }
}

.child-support__title {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .child-support__media .media__content {
    width: 58%;
  }
}
@media screen and (min-width: 1400px) {
  .child-support__media .media__content {
    width: 42%;
  }
}

.child-support__media .media__title {
  letter-spacing: 0.01em;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .child-support__media .media__title {
    font-size: 2.0625rem;
    letter-spacing: 0.08em;
  }
}

.child-support__button {
  margin-top: 137px;
  margin-top: 8.5625rem;
}
@media screen and (min-width: 768px) {
  .child-support__button {
    margin-top: 6.6875rem;
  }
}

.child-support__link {
  margin-inline: auto;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .child-support__link {
    font-size: 1.125rem;
  }
}

.page-nursing-introduction .mv__img {
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .page-nursing-introduction .mv__img {
    margin-top: 3rem;
  }
}

.page-nursing-introduction .mv__title {
  line-height: 1.3;
  background: linear-gradient(145deg, #199664 0%, #ffb900 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .page-nursing-introduction .mv__title {
    font-size: 3.375rem;
    letter-spacing: 0.15em;
    background: linear-gradient(145deg, #199664 0%, #ffb900 65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.child-support-list .salon-sec-title__ja {
  text-align: center;
}

.page-nursing-introduction .salon-list + .salon-list {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .page-nursing-introduction .salon-list + .salon-list {
    margin-top: 10.4375rem;
  }
}

.page-osteopathic-introduction {
  overflow-x: clip;
}

.osteopathic-introduction-mv .mv__img {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .osteopathic-introduction-mv .mv__img {
    margin-top: 2.6875rem;
  }
}

.osteopathic-introduction-mv .mv__title {
  line-height: 1.3;
  background: linear-gradient(145deg, #199664 0%, #ffb900 89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .osteopathic-introduction-mv .mv__title {
    background: linear-gradient(145deg, #199664 0%, #ffb900 61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.osteopathic-introduction__salon-list {
  overflow-x: clip;
}

.osteopathic-introduction__bg-section {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.osteopathic-introduction__bg-section::after {
  z-index: -1;
  content: "";
  position: absolute;
  right: 0;
  left: clamp(101px, -232.864px + 89.0306122449vw, 450px);
  left: clamp(6.3125rem, -14.5540497449rem + 89.0306122449vw, 28.125rem);
  top: 1%;
  background-image: url(../images/osteopathic-introduction/bg_right-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 496px;
  height: 31rem;
  width: 73%;
  opacity: calc(var(--deco-fade-opacity) * 0.8);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .osteopathic-introduction__bg-section::after {
    height: 69rem;
    width: 84%;
    background-image: url(../images/osteopathic-introduction/bg_right.png);
  }
}

.bg_3 {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.bg_3::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: -32%;
  top: 19%;
  background-image: url(../images/osteopathic-introduction/bg_left-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 493px;
  height: 30.8125rem;
  width: 100%;
  opacity: calc(var(--deco-fade-opacity) * 0.9);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .bg_3::before {
    height: 69rem;
    width: 114%;
    background-image: url(../images/osteopathic-introduction/bg_left.png);
  }
}

.bg_4 {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
@media screen and (min-width: 768px) {
  .bg_4::after {
    z-index: -1;
    content: "";
    position: absolute;
    right: -30%;
    top: -59%;
    background-image: url(../images/osteopathic-introduction/bg_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 69rem;
    width: 145%;
    opacity: calc(var(--deco-fade-opacity) * 0.8);
    -webkit-transform: translateY(var(--deco-fade-y));
            transform: translateY(var(--deco-fade-y));
  }
}

.bg_5 {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
@media screen and (min-width: 768px) {
  .bg_5::before {
    z-index: -1;
    content: "";
    position: absolute;
    left: -32%;
    top: -75%;
    background-image: url(../images/osteopathic-introduction/bg_left.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 50rem;
    width: 107%;
    opacity: calc(var(--deco-fade-opacity) * 0.8);
    -webkit-transform: translateY(var(--deco-fade-y));
            transform: translateY(var(--deco-fade-y));
  }
}

.bg_6 {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
@media screen and (min-width: 768px) {
  .bg_6::after {
    z-index: -1;
    content: "";
    position: absolute;
    right: -30%;
    top: -59%;
    background-image: url(../images/osteopathic-introduction/bg_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 69rem;
    width: 145%;
    opacity: calc(var(--deco-fade-opacity) * 0.8);
    -webkit-transform: translateY(var(--deco-fade-y));
            transform: translateY(var(--deco-fade-y));
  }
}

.bg_7 {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.bg_7::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: -32%;
  top: -72%;
  background-image: url(../images/osteopathic-introduction/bg_left-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 464px;
  height: 29rem;
  width: 107%;
  opacity: calc(var(--deco-fade-opacity) * 0.8);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .bg_7::before {
    background-image: url(../images/osteopathic-introduction/bg_left.png);
    height: 50rem;
    width: 107%;
  }
}

.bg_8 {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
@media screen and (min-width: 768px) {
  .bg_8::after {
    z-index: -1;
    content: "";
    position: absolute;
    right: -30%;
    top: -59%;
    background-image: url(../images/osteopathic-introduction/bg_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 69rem;
    width: 145%;
    opacity: calc(var(--deco-fade-opacity) * 0.8);
    -webkit-transform: translateY(var(--deco-fade-y));
            transform: translateY(var(--deco-fade-y));
  }
}

/*======================================
            spのみ
=======================================*/
.bg_3-sp {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.bg_3-sp::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: clamp(40px, -342.653px + 102.0408163265vw, 440px);
  left: clamp(2.5rem, -21.4158163265rem + 102.0408163265vw, 27.5rem);
  top: -59%;
  background-image: url(../images/osteopathic-introduction/bg_right-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 496px;
  height: 31rem;
  width: 94%;
  opacity: calc(var(--deco-fade-opacity) * 0.8);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .bg_3-sp::after {
    display: none;
  }
}

.bg_4-sp {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.bg_4-sp::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: -32%;
  top: -35%;
  background-image: url(../images/osteopathic-introduction/bg_left-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 448px;
  height: 28rem;
  width: 116%;
  opacity: calc(var(--deco-fade-opacity) * 0.8);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .bg_4-sp::before {
    display: none;
  }
}

.bg_5-sp {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.bg_5-sp::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: clamp(104px, -246.127px + 93.3673469388vw, 470px);
  left: clamp(6.5rem, -15.3829719388rem + 93.3673469388vw, 29.375rem);
  top: -39%;
  background-image: url(../images/osteopathic-introduction/bg_right-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 400px;
  height: 25rem;
  width: 94%;
  opacity: calc(var(--deco-fade-opacity) * 0.8);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .bg_5-sp::after {
    display: none;
  }
}

.bg_6-sp {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.bg_6-sp::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: clamp(104px, -246.127px + 93.3673469388vw, 470px);
  left: clamp(6.5rem, -15.3829719388rem + 93.3673469388vw, 29.375rem);
  top: -10%;
  background-image: url(../images/osteopathic-introduction/bg_right-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 400px;
  height: 25rem;
  width: 94%;
  opacity: calc(var(--deco-fade-opacity) * 0.8);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .bg_6-sp::after {
    display: none;
  }
}

.bg_7-sp {
  position: relative;
  --deco-fade-opacity: 0;
  --deco-fade-y: 30px;
}
.bg_7-sp::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: -32%;
  top: -12%;
  background-image: url(../images/osteopathic-introduction/bg_left-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 448px;
  height: 28rem;
  width: 116%;
  opacity: calc(var(--deco-fade-opacity) * 0.8);
  -webkit-transform: translateY(var(--deco-fade-y));
          transform: translateY(var(--deco-fade-y));
}
@media screen and (min-width: 768px) {
  .bg_7-sp::before {
    display: none;
  }
}

.page-nursing-office .salon-sec-title__ja {
  text-align: center;
}

.bg-section {
  position: relative;
}
@media screen and (min-width: 768px) {
  .bg-section::after {
    z-index: -1;
    content: "";
    position: absolute;
    right: 0;
    top: -17%;
    background-image: url(../images/nursing-office/bg-gradation.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 69rem;
    width: 84%;
  }
}

.privacy-mv .mv__title {
  font-size: 33px;
  font-size: 2.0625rem;
  background: -webkit-gradient(linear, left top, right top, from(#199664), color-stop(91%, #ffb900));
  background: linear-gradient(90deg, #199664 0%, #ffb900 91%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .privacy-mv .mv__title {
    font-size: 3.75rem;
    background: -webkit-gradient(linear, left top, right top, from(#199664), color-stop(53%, #ffb900));
    background: linear-gradient(90deg, #199664 0%, #ffb900 53%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.privacy {
  padding-top: 34px;
  padding-top: 2.125rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-top: 8.375rem;
    padding-bottom: 6.875rem;
  }
}

.privacy__inner {
  max-width: 1124px;
  max-width: 70.25rem;
}

.privacy__heading {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .privacy__heading {
    font-size: 1.8125rem;
    margin-bottom: 1.1875rem;
  }
}

.privacy__intro {
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .privacy__intro {
    margin-bottom: 5.375rem;
  }
}
.privacy__intro p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.05;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .privacy__intro p {
    font-size: 1rem;
  }
}

.privacy__section {
  margin-top: 34px;
  margin-top: 2.125rem;
}
.privacy__section:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .privacy__section {
    margin-top: 2.625rem;
  }
}

.privacy__section-heading {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .privacy__section-heading {
    font-size: 1.8125rem;
    margin-bottom: 0.75rem;
  }
}

.privacy__section-number {
  margin-right: 0.2em;
  color: #199664;
}

.privacy__section-body p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .privacy__section-body p {
    font-size: 0.875rem;
    line-height: 2.05;
  }
}
.privacy__section-body p + p {
  margin-top: 16px;
  margin-top: 1rem;
}

.privacy__list {
  list-style: none;
  counter-reset: privacy-list;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .privacy__list {
    margin-top: 1.875rem;
    margin-bottom: 1.8125rem;
  }
}
.privacy__list li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.01em;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
  counter-increment: privacy-list;
}
.privacy__list li + li {
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .privacy__list li {
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
  }
}
.privacy__list li::before {
  content: "(" counter(privacy-list) ")";
  position: absolute;
  left: 0;
  top: 0;
}

.privacy__footer {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .privacy__footer {
    margin-top: 9.25rem;
  }
}

@media screen and (min-width: 768px) {
  .salon-office-page .mv__title {
    font-size: 3.75rem;
    background: -webkit-gradient(linear, left top, right top, from(#199664), color-stop(31%, #ffb900));
    background: linear-gradient(90deg, #199664 0%, #ffb900 31%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .salon-office-page .nursing-care-intro__inner {
    gap: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .salon-office-page .nursing-care-intro__inner {
    gap: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .salon-office-page .media__content {
    width: 44%;
  }
}
@media screen and (min-width: 1400px) {
  .salon-office-page .media__content {
    width: 40%;
  }
}

.salon-office-page .media__title {
  font-size: 24px;
  font-size: 1.5rem;
  width: 101%;
}
@media screen and (min-width: 768px) {
  .salon-office-page .media__title {
    font-size: 2.0625rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .kids-space .media__content {
    width: 42%;
  }
}

@media screen and (min-width: 768px) {
  .stretch-specialty__media .stretch-specialty__title {
    width: 103%;
  }
}

@media screen and (min-width: 768px) {
  .women-specialty__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
  }
}

@media screen and (min-width: 768px) {
  .women-specialty__wrapper {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .women-specialty__item {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
}

@media screen and (min-width: 768px) {
  .women-specialty__item + .women-specialty__item {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .women-specialty__item.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.women-specialty__button {
  text-align: center;
  margin-top: 69px;
  margin-top: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .women-specialty__button {
    margin-top: 6.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .stretch-specialty__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    padding-top: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .stretch-specialty__wrapper {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .stretch-specialty__media {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
}

@media screen and (min-width: 768px) {
  .stretch-specialty__media + .stretch-specialty__media {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .stretch-specialty__media.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.stretch-specialty__button {
  text-align: center;
  margin-top: 69px;
  margin-top: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .stretch-specialty__button {
    margin-top: 6.0625rem;
  }
}

.salon-office-page .nursing-care-intro__body {
  width: 87%;
}
@media screen and (min-width: 768px) {
  .salon-office-page .nursing-care-intro__body {
    width: 42%;
  }
}
@media screen and (min-width: 1024px) {
  .salon-office-page .nursing-care-intro__body {
    width: 35%;
  }
}

@media screen and (min-width: 768px) {
  .stretch-specialty .media {
    gap: 6%;
  }
}

.salon-introduction-mv .mv__title {
  background: linear-gradient(145deg, #199664 0%, #ffb900 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .salon-introduction-mv .mv__title {
    background: linear-gradient(145deg, #199664 0%, #ffb900 64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.page-salon-introduction .mv__title {
  background: linear-gradient(145deg, #199664 0%, #ffb900 107%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .page-salon-introduction .mv__title {
    background: linear-gradient(145deg, #199664 0%, #ffb900 64%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.03em;
    font-size: 3.6875rem;
  }
}

.page-salon-introduction .mv__img {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-salon-introduction .mv__img {
    margin-top: 2.6875rem;
  }
}

.page-salon-introduction .mv__sub-title {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .page-salon-introduction .mv__sub-title {
    font-size: 1.25rem;
  }
}

.salon-list {
  margin-top: 70px;
  margin-top: 4.375rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .salon-list {
    margin-top: 10.5625rem;
  }
}
.salon-list + .salon-list {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .salon-list + .salon-list {
    margin-top: 10.75rem;
  }
}

.page-salon-introduction .salon-list + .salon-list, .page-nursing-office .salon-list + .salon-list {
  margin-top: 76px;
  margin-top: 4.75rem;
}
@media screen and (min-width: 768px) {
  .page-salon-introduction .salon-list + .salon-list, .page-nursing-office .salon-list + .salon-list {
    margin-top: 10.625rem;
  }
}

.salon-list__area {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .salon-list__area {
    margin-top: 4.25rem;
    width: 82%;
    margin-inline: auto;
  }
}
.salon-list__area + .salon-list__area {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .salon-list__area + .salon-list__area {
    margin-top: 0;
  }
}

.salon-list__area-label {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  width: 100%;
  background-color: #199664;
  color: #fff;
  text-align: center;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .salon-list__area-label {
    font-size: 1.1875rem;
    padding: 0.125rem 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.salon-list__item {
  border-bottom: 1px solid #199664;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .salon-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    padding-block: 0.875rem 1.5rem;
  }
}
.salon-list__item + .salon-list__item {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.salon-list__item:last-of-type {
  border-bottom: none;
}

.salon-list__name {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .salon-list__name {
    font-size: 1.8125rem;
    width: 24.25rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 1.5;
  }
}

.salon-list__info {
  margin-top: 4px;
  margin-top: 0.25rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .salon-list__info {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.salon-list__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
  gap: 0.25rem;
}
.salon-list__info-row + .salon-list__info-row {
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .salon-list__info-row {
    gap: 0.3125rem;
  }
  .salon-list__info-row + .salon-list__info-row {
    margin-top: 0.9375rem;
  }
}

.salon-list__info-icon {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
  margin-top: 0.125rem;
}
.salon-list__info-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .salon-list__info-icon {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.salon-list__info-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .salon-list__info-text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.salon-list__info-text a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .salon-list__info-text a[href^="tel:"]:hover {
    text-decoration: underline;
  }
}

.salon-list__footer {
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .salon-list__footer {
    margin-top: 6.125rem;
  }
}

.salon__list-footer-link {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .women-specialty__item .women-specialty__title {
    width: 103%;
  }
}

@media screen and (min-width: 768px) {
  .top-services__gradation {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 11.75rem;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }
}

.fv {
  position: relative;
}

.fv,
.fv__img,
.fv picture,
.fv img {
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .fv,
  .fv__img,
  .fv picture,
  .fv img {
    max-height: 800px;
  }
}

@-webkit-keyframes fvCharIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-0.05em);
            transform: translateX(-0.05em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fvCharIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-0.05em);
            transform: translateX(-0.05em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv__title {
  position: absolute;
  top: 51%;
  z-index: 10;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 26px;
  left: 1.625rem;
  font-size: 41px;
  font-size: 2.5625rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-shadow: 0 0 7px rgba(0, 0, 0, .6);
  text-shadow: 0 0 0.4375rem rgba(0, 0, 0, .6);
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 4.5625rem;
    top: 46%;
    letter-spacing: 0.05em;
    left: 7.8125rem;
  }
}

.fv__title-char {
  display: inline-block;
  opacity: 0;
  -webkit-animation: fvCharIn 1s ease forwards;
          animation: fvCharIn 1s ease forwards;
}

.fv img {
  -o-object-fit: cover;
     object-fit: cover;
}

.top-gallery {
  margin-top: 105px;
  margin-top: 6.5625rem;
}
@media screen and (min-width: 768px) {
  .top-gallery {
    margin-top: 8rem;
  }
}

@media screen and (min-width: 1441px) {
  .top-gallery__inner {
    max-width: 1440px;
    margin-inline: auto;
  }
}

.top_gallery-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_gallery-img-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.top_gallery-img {
  width: 311px;
  width: 19.4375rem;
}

.top_gallery-img1 {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top_gallery-img1 {
    margin-left: 0;
    width: 43%;
  }
}

.top_gallery-img2 {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .top_gallery-img2 {
    width: 46%;
    margin-top: 17rem;
  }
}

.top_gallery-img3 {
  margin-top: -52px;
  margin-top: -3.25rem;
  position: relative;
  z-index: -1;
}
.top_gallery-img3 img {
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top_gallery-img3 img {
    max-width: none;
  }
}

.top_gallery-img3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .7)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0) 100%);
  height: 100px;
  height: 6.25rem;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .top_gallery-img3:before {
    height: 13.6875rem;
  }
}

.top_gallery-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-top: 49px;
  margin-top: 3.0625rem;
  margin-left: auto;
  margin-right: 61px;
  margin-right: 3.8125rem;
  line-height: 2.1;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .top_gallery-text {
    font-size: 1.125rem;
    line-height: 2.3;
    margin-top: -4.9375rem;
    margin-right: 20.8125rem;
    margin-right: clamp(7.5rem, -7.7142857143rem + 31.6964285714vw, 20.8125rem);
  }
}

.top_gallery-text span {
  display: block;
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .top_gallery-text span {
    margin-top: 4.0625rem;
  }
}

.huge-bg-wrap {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .3)), color-stop(18%, rgba(255, 255, 255, .3)), color-stop(18%, rgba(0, 143, 66, .1)), to(rgba(255, 180, 0, .1)));
  background: linear-gradient(180deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .3) 18%, rgba(0, 143, 66, .1) 18%, rgba(255, 180, 0, .1) 100%);
}
@media screen and (min-width: 768px) {
  .huge-bg-wrap {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .3)), color-stop(26%, rgba(255, 255, 255, .3)), color-stop(26%, rgba(0, 143, 66, .1)), color-stop(120%, rgba(255, 180, 0, .1)));
    background: linear-gradient(180deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .3) 26%, rgba(0, 143, 66, .1) 26%, rgba(255, 180, 0, .1) 120%);
  }
}

.top-message {
  position: relative;
  z-index: 1;
  margin-top: 164px;
  margin-top: 10.25rem;
}
@media screen and (min-width: 768px) {
  .top-message {
    margin-top: 13.75rem;
  }
}

.top-message__img {
  margin: 0 calc(50% - 50vw);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-message__img {
    width: 91%;
    margin-inline: auto;
  }
}

.top-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  z-index: -10;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-message__img img {
    max-width: none;
  }
}

.top-message__title {
  position: absolute;
  top: -90px;
  top: -5.625rem;
  right: 33px;
  right: 2.0625rem;
  right: clamp(30px, -52.27px + 21.9387755102vw, 116px);
  right: clamp(1.875rem, -3.2669005102rem + 21.9387755102vw, 7.25rem);
  width: 50px;
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .top-message__title {
    top: -10%;
    right: 1.25rem;
    width: 5rem;
  }
}
.top-message__title.is-active {
  -webkit-animation: fadeIn 1s ease-out forwards;
          animation: fadeIn 1s ease-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top-message__catch {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
  letter-spacing: 0.08em;
  margin-top: 18px;
  margin-top: 1.125rem;
  line-height: 2.2;
  font-weight: 500;
  color: #333;
}
@media screen and (min-width: 768px) {
  .top-message__catch {
    width: 30%;
    letter-spacing: 0.13em;
    line-height: 2.5;
    margin-top: -2.5625rem;
    margin-left: 8.75rem;
    font-size: 1.0625rem;
  }
}

.top-concept {
  margin-top: 65px;
  margin-top: 4.0625rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-concept {
    margin-top: 10.625rem;
  }
}
.top-concept:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  height: 72px;
  height: 4.5rem;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .top-concept:after {
    height: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top-concept__inner {
    padding-bottom: 9.375rem;
    max-width: 1440px;
  }
}

.top-concept__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .top-concept__title-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 3%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top-concept__img-wrap {
  margin-top: -20px;
  margin-top: -1.25rem;
  position: relative;
  z-index: -10;
}
@media screen and (min-width: 768px) {
  .top-concept__img-wrap {
    width: 40%;
    margin-right: calc(50% - 50vw);
    z-index: -1;
  }
}
@media screen and (min-width: 1441px) {
  .top-concept__img-wrap {
    margin-right: 0;
  }
}
.top-concept__img-wrap img {
  aspect-ratio: 541/771;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-concept__title {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 0%, #ffb900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-left: 12px;
  margin-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-concept__title {
    margin-top: clamp(0.1875rem, -6.4200949367rem + 13.7658227848vw, 5.625rem);
    font-size: clamp(2.5rem, 1.7857142857rem + 1.4880952381vw, 3.125rem);
    margin-left: -1.125rem;
    font-size: 3.125rem;
    width: 95%;
  }
}

.top-concept__title span {
  display: block;
  margin-left: 52px;
  margin-left: 3.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-concept__title span {
    display: inline;
    margin-left: 0;
  }
}

/*======================================

=======================================*/
.top-concept__title-sp {
  width: 311px;
  width: 19.4375rem;
}
.top-concept__title-sp img {
  -o-object-fit: cover;
     object-fit: cover;
  height: clamp(85px, -2.272px + 27.2727272727vw, 100px);
  height: clamp(5.3125rem, -0.1420454545rem + 27.2727272727vw, 6.25rem);
}

/*======================================

=======================================*/
@media screen and (min-width: 768px) {
  .top-concept__text-wrap {
    width: 50%;
    margin-left: 0.4375rem;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept__text-wrap {
    width: 49%;
    margin-left: 4.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .top-concept__text-wrap {
    margin-left: 6.75rem;
  }
}
.top-concept__text {
  margin-top: 42px;
  margin-top: 2.625rem;
  letter-spacing: 0em;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 94%;
  line-height: 2.2;
  margin-inline: auto;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .top-concept__text {
    font-size: 0.9375rem;
    margin-top: 2.5rem;
    margin-inline: 0;
    line-height: 2.66;
    letter-spacing: 0.02em;
  }
}
@media screen and (min-width: 1024px) {
  .top-concept__text {
    margin-top: 4.125rem;
  }
}

.top-goal {
  padding-block: 92px 82px;
  padding-block: 5.75rem 5.125rem;
}
@media screen and (min-width: 768px) {
  .top-goal {
    padding-block: 4.75rem 5.125rem;
  }
}

@media screen and (min-width: 1400px) {
  .top-goal__inner {
    max-width: 1440px;
  }
}

.top-goal__title-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-goal__title-wrap {
    margin-inline: 0;
    margin-left: 10.75rem;
  }
}

.top-goal__title-en {
  position: absolute;
  right: -38px;
  right: -2.375rem;
  top: -17px;
  top: -1.0625rem;
  color: #5adc3b;
  opacity: 0.2;
  font-size: 46px;
  font-size: 2.875rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-weight: 700;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .top-goal__title-en {
    font-size: 4.875rem;
    margin-bottom: 3rem;
    right: -4.25rem;
    top: -2.0625rem;
  }
}

.top-goal__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background: linear-gradient(5deg, #ffb900 0%, #199664 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 33px;
  font-size: 2.0625rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-goal__title {
    font-size: 3.3125rem;
    background: linear-gradient(5deg, #ffb900 0%, #199664 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.top-goal__title span {
  display: block;
  margin-top: 40px;
  margin-top: 2.5rem;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .top-goal__title span {
    margin-top: 7.875rem;
    letter-spacing: 0.12em;
  }
}

.top-goal__img-wrap {
  margin-top: 73px;
  margin-top: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .top-goal__img-wrap {
    margin-top: -23.9375rem;
  }
}

.top-goal__image {
  position: relative;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .top-goal__image {
    max-width: none;
  }
}

.top-goal__image--right {
  width: 87%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-goal__image--right {
    width: 56%;
    margin-right: calc(50% - 47vw);
  }
}
@media screen and (min-width: 1441px) {
  .top-goal__image--right {
    margin-right: 0;
  }
}
.top-goal__image--right .top-goal__image-title {
  position: absolute;
  left: -46px;
  left: -2.875rem;
  bottom: -78px;
  bottom: -4.875rem;
  z-index: 1;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-goal__image--right .top-goal__image-title {
    bottom: 4.125rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.top-goal__image--left {
  margin-left: calc(50% - 50vw);
  margin-top: 106px;
  margin-top: 6.625rem;
  width: 74%;
}
@media screen and (min-width: 768px) {
  .top-goal__image--left {
    margin-top: 4.125rem;
    width: 47%;
  }
}
@media screen and (min-width: 1400px) {
  .top-goal__image--left {
    width: 40%;
  }
}
@media screen and (min-width: 1441px) {
  .top-goal__image--left {
    margin-left: 0;
  }
}
.top-goal__image--left .top-goal__image-title {
  position: absolute;
  right: -54px;
  right: -3.375rem;
  top: 61px;
  top: 3.8125rem;
  z-index: 1;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-goal__image--left .top-goal__image-title {
    right: -6rem;
    top: 12.3125rem;
  }
}
.top-goal__image--left .top-goal__image-title span {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.top-goal__image--bottom {
  margin-right: calc(50% - 50vw);
  margin-left: auto;
  width: 86%;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .top-goal__image--bottom {
    margin-top: -10.625rem;
    width: 45%;
  }
}
@media screen and (min-width: 1400px) {
  .top-goal__image--bottom {
    width: 44%;
    margin-top: -21.9375rem;
  }
}
@media screen and (min-width: 1441px) {
  .top-goal__image--bottom {
    width: 47%;
    margin-right: 0;
  }
}
.top-goal__image--bottom .top-goal__image-title {
  position: absolute;
  left: -70px;
  left: -4.375rem;
  bottom: -49px;
  bottom: -3.0625rem;
  z-index: 1;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-goal__image--bottom .top-goal__image-title {
    bottom: -6.625rem;
    left: -5.375rem;
  }
}
.top-goal__image--bottom .top-goal__image-title span {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.top-services {
  position: relative;
  overflow-x: clip;
  padding-block: 20px 100px;
  padding-block: 1.25rem 6.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 180, 0, .1)), to(rgba(25, 150, 100, .1)));
  background: linear-gradient(180deg, rgba(255, 180, 0, .1) 0%, rgba(25, 150, 100, .1) 100%);
}
@media screen and (min-width: 768px) {
  .top-services {
    padding-block: 14.75rem 12.25rem;
  }
}

.top-services__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-services__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2%;
    max-width: 1440px;
  }
}

.top-services__title-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-services__title-wrap {
    width: 17%;
    margin-inline: 0;
    margin-left: 5.4375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.top-services__title-en {
  position: absolute;
  top: 30px;
  top: 1.875rem;
  right: -25px;
  right: -1.5625rem;
  font-size: 44px;
  font-size: 2.75rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .top-services__title-en {
    font-size: 4.5625rem;
    margin-bottom: 2.5rem;
    left: 2.25rem;
    right: auto;
    top: -2.375rem;
  }
}

.top-services__title-en span {
  font-size: 43px;
  font-size: 2.6875rem;
  letter-spacing: 0.01em;
  display: block;
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .top-services__title-en span {
    margin-top: 1.625rem;
    letter-spacing: 0.01em;
    font-size: 4.375rem;
    display: inline;
  }
}

.top-services__title {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background: linear-gradient(5deg, #199664 0%, #ffb900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 33px;
  font-size: 2.0625rem;
  margin-top: 54px;
  margin-top: 3.375rem;
  letter-spacing: 0.15em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-services__title {
    font-size: 3.3125rem;
    margin-inline: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

.top-services__title span {
  display: block;
  margin-top: 53px;
  margin-top: 3.3125rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .top-services__title span {
    margin-top: 3.3125rem;
    letter-spacing: 0.14em;
    margin-top: 0;
    display: inline;
  }
}

.top-column__slider-wrap {
  position: relative;
  margin-top: 37px;
  margin-top: 2.3125rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .top-column__slider-wrap {
    margin-top: 2.5rem;
    margin-right: 0;
  }
}

.top-services__list {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .top-services__list {
    margin-right: calc(25% - 26vw);
    margin-top: 2.6875rem;
  }
}
@media screen and (min-width: 1441px) {
  .top-services__list {
    margin-right: 0;
  }
}

.top-services__item {
  position: relative;
}

.top-services__item + .top-services__item {
  margin-top: 83px;
  margin-top: 5.1875rem;
}
@media screen and (min-width: 768px) {
  .top-services__item + .top-services__item {
    margin-top: 7.125rem;
  }
}

.top-services__item-title {
  position: absolute;
  font-weight: 600;
  top: -36px;
  top: -2.25rem;
  left: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 180, 0, .8) 0%, rgba(255, 180, 0, .8) 3%, rgba(25, 150, 100, .8) 49%, rgba(25, 150, 100, .8) 100%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.2em;
  padding-top: 15px;
  padding-bottom: 13px;
  padding-right: 11px;
  padding: 11px 4px 6px 6px;
  padding: 0.6875rem 0.25rem 0.375rem 0.375rem;
}
@media screen and (min-width: 768px) {
  .top-services__item-title {
    font-size: 2.3125rem;
    letter-spacing: 0.14em;
    padding: 1.25rem 0.125rem 1.25rem 0.125rem;
    line-height: 1.9;
  }
}

.top-services__item-image {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .top-services__item-image {
    margin-right: 0;
    width: 97%;
    margin-left: auto;
  }
}
.top-services__item-image img {
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-services__item-image img {
    max-width: none;
    aspect-ratio: 1002/380;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .top-services__item-body {
    width: 97%;
    margin-left: auto;
  }
}

.top-services__item-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .top-services__item-text {
    margin-top: 0.875rem;
    letter-spacing: 0.08em;
    line-height: 2.1;
  }
}

.top-column {
  padding-top: 84px;
  padding-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .top-column {
    padding-top: 8.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top-column__inner {
    max-width: 1400px;
  }
}

.top-column__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #199664;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-column__title {
    font-size: 3.25rem;
  }
}

.top-column__empty {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .top-column__empty {
    font-size: 1rem;
    padding: 3.5rem 0;
  }
}

.top-column__footer {
  margin-top: 56px;
  margin-top: 3.5rem;
  text-align: right;
}

.top-column__link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.025em;
  border: 1px solid rgba(51, 51, 51, .2);
  padding: 5px 7px;
  padding: 0.3125rem 0.4375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 152px;
  width: 9.5rem;
  margin-left: auto;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .top-column__link {
    font-size: 0.9375rem;
    width: 8.125rem;
    padding: 0.3125rem 0.25rem;
  }
}
.top-column__link:hover {
  color: #199664;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .top-column__link:hover {
    opacity: 0.8;
  }
}

.top-column__link-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-column__link-icon {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}
.top-column__link-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.top-column__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 39px;
  margin-top: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .top-column__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.top-column__item {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .top-column__item {
    width: 100%;
  }
}

.top-column__card {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (any-hover: hover) {
  .top-column__card:hover {
    opacity: 0.9;
  }
  .top-column__card:hover .top-column__card-title {
    color: #199664;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .top-column__card:hover .top-column__card-image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}

.top-column__card-image {
  width: 100%;
  aspect-ratio: 320/240;
  background-color: #ccc;
  overflow: hidden;
}

.top-column__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.top-column__card-image .column-list__no-img {
  width: 95%;
  margin-inline: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-column__card-date {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #999999;
  letter-spacing: 0.025em;
  margin-top: 9px;
  margin-top: 0.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.top-column__card-title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78;
  margin-top: 3px;
  margin-top: 0.1875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.message {
  position: relative;
  max-height: 650px;
}
@media screen and (min-width: 768px) {
  .message {
    max-height: 1000px;
  }
}

.message__bg {
  position: relative;
}

.message__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 650px;
}
@media screen and (min-width: 768px) {
  .message__bg img {
    max-height: 1000px;
  }
}

.message__content {
  position: absolute;
  z-index: 1;
  top: 38px;
  top: 2.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
}
@media screen and (min-width: 768px) {
  .message__content {
    top: 5.25rem;
  }
}

.message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, .4);
}

.message__title {
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .message__title {
    font-size: 2.1875rem;
  }
}

.message__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 42px;
  gap: 2.625rem;
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .message__list {
    gap: 2.3125rem;
    margin-top: 5.375rem;
  }
}

.message__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-shadow: 0 0 6px rgba(0, 0, 0, .5);
  text-shadow: 0 0 0.375rem rgba(0, 0, 0, .5);
}

.message__item a {
  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;
  gap: 5px;
  gap: 0.3125rem;
  color: #fff;
  text-decoration: none;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="9" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.3)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, .3));
          filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, .3));
}
@media screen and (min-width: 768px) {
  .message__item a {
    gap: 0.625rem;
    padding: 0.3125rem 0.8125rem;
  }
}
.message__item a:hover .message__icon {
  -webkit-transform: translateY(0.3125rem);
          transform: translateY(0.3125rem);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.message__icon {
  width: 9px;
  width: 0.5625rem;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(190,46,46,0.4)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 20px rgba(190, 46, 46, .4));
          filter: drop-shadow(0 0 20px rgba(190, 46, 46, .4));
  -webkit-filter: drop-shadow(0 0 1.25rem rgba(190, 46, 46, .4));
          filter: drop-shadow(0 0 1.25rem rgba(190, 46, 46, .4));
}
@media screen and (min-width: 768px) {
  .message__icon {
    width: 1rem;
  }
}

.message__label {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.19em;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .message__label {
    font-size: 1.1875rem;
  }
}

.top-movie {
  margin-top: 84px;
  margin-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .top-movie {
    margin-top: 8.9375rem;
    padding-inline: 0;
  }
}

.top-movie__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #199664;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-movie__title {
    font-size: 3.25rem;
  }
}

.top-movie__inner {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-movie__inner {
    margin-top: 2.375rem;
  }
}

.top-movie__embed {
  max-width: 1440px;
  margin-inline: auto;
}

.top-movie__trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.top-movie__thumb {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-movie__thumb {
    aspect-ratio: 16/6;
  }
}

.top-movie__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(56px, 8vw, 96px);
  height: auto;
}

.movie-modal {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  padding: 1.25rem;
  z-index: 1000;
}

.movie-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.movie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8);
}

.movie-modal__dialog {
  position: relative;
  width: min(92vw, 1000px);
  width: min(92vw, 62.5rem);
  margin: 0;
}

.movie-modal__close {
  position: absolute;
  top: -40px;
  top: -2.5rem;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1;
  cursor: pointer;
}

.movie-modal__player {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.movie-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.is-modal-open {
  overflow: hidden;
}

.page-treatment section {
  overflow-x: clip;
}

.page-treatment .mv__title {
  background: -webkit-gradient(linear, left top, right top, from(#199664), color-stop(76%, #ffb900));
  background: linear-gradient(90deg, #199664 0%, #ffb900 76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 35px;
  font-size: 2.1875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .page-treatment .mv__title {
    font-size: 3.5rem;
    letter-spacing: 0.13em;
    background: -webkit-gradient(linear, left top, right top, from(#199664), color-stop(39%, #ffb900));
    background: linear-gradient(90deg, #199664 0%, #ffb900 39%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.treatment-intro {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .treatment-intro {
    margin-top: 11.6875rem;
  }
}

.treatment-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 46px;
  gap: 2.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .treatment-intro__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.75rem;
  }
}

.treatment-intro__body {
  width: 87%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .treatment-intro__body {
    width: 42%;
    margin-right: 3.125rem;
  }
}
@media screen and (min-width: 1400px) {
  .treatment-intro__body {
    width: 35%;
    margin-right: 4.5rem;
  }
}

.treatment-intro__heading {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .treatment-intro__heading {
    font-size: 2.125rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
}

.treatment-intro__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 32px;
  margin-top: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 768px) {
  .treatment-intro__text {
    font-size: 1rem;
    margin-top: 4.375rem;
    width: 95%;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .treatment-intro__img {
    width: 46%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.treatment-intro__img img {
  width: 100%;
  height: auto;
  display: block;
}

.approach {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .approach {
    margin-top: 15.375rem;
  }
}

.approach .sec-title-bgRight:after {
  background-image: url(../images/treatment/bg_upper-sp.png);
  top: -420%;
  height: 492px;
  height: 30.75rem;
  width: 110%;
  left: clamp(40px, -342.653px + 102.0408163265vw, 440px);
  left: clamp(2.5rem, -21.4158163265rem + 102.0408163265vw, 27.5rem);
}
@media screen and (min-width: 768px) {
  .approach .sec-title-bgRight:after {
    background-image: url(../images/treatment/bg_upper.png);
    top: -609%;
    width: 129%;
    height: 110.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .approach__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
    padding-top: 10rem;
  }
}

.approach__wrapper {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .approach__wrapper {
    margin-top: 2rem;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.approach__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .approach__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
}

@media screen and (min-width: 768px) {
  .approach__item.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.approach__item + .approach__item {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .approach__item + .approach__item {
    margin-top: 0;
  }
}

.approach__item-img {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .approach__item-img {
    width: 50%;
    margin: 0;
    position: sticky;
    top: 0;
  }
}

.approach__item-img img {
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .approach__item-img img {
    max-width: none;
    margin-inline: 0;
  }
}

.approach__item-content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .approach__item-content {
    margin-top: 0;
    width: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .approach__item-content {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .approach__item-content.health-content {
    width: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .approach__item-content.health-content {
    width: 42%;
  }
}

.approach__item-title {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .approach__item-title {
    font-size: 2.0625rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.approach__item-text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .approach__item-text {
    font-size: 0.875rem;
    margin-top: 2.8125rem;
    line-height: 2;
  }
}

.technic {
  margin-top: 142px;
  margin-top: 8.875rem;
}
@media screen and (min-width: 768px) {
  .technic {
    margin-top: 2.25rem;
  }
}

.technic .sec-title-bgLeft::after {
  background-image: url(../images/treatment/bg_middle-sp.png);
  top: -100%;
  height: 940px;
  height: 58.75rem;
  width: 117%;
  left: -13%;
}
@media screen and (min-width: 768px) {
  .technic .sec-title-bgLeft::after {
    width: 134%;
    left: -6%;
    height: 50.9375rem;
    top: -339%;
  }
}

@media screen and (min-width: 768px) {
  .technic__wrapper-heading {
    position: sticky;
    top: 6.25rem;
    width: 37%;
    margin-left: 3.0625rem;
    margin-top: 1.6875rem;
  }
}
@media screen and (min-width: 1400px) {
  .technic__wrapper-heading {
    width: 33%;
  }
}

.technic__wrapper {
  margin-top: 67px;
  margin-top: 4.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  gap: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .technic__wrapper {
    margin-top: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 13%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.technic__title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .technic__title {
    font-size: 2.125rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
}

.technic__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 26px;
  margin-top: 1.625rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .technic__text {
    margin-top: 2.9375rem;
    font-size: 0.875rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
  }
}

@media screen and (min-width: 768px) {
  .technic__list {
    width: 50%;
  }
}

.technic__item + .technic__item {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .technic__item + .technic__item {
    margin-top: 6.5rem;
  }
}

.technic__item-title {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: #199664;
  position: relative;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .technic__item-title {
    margin-top: 1.75rem;
    font-size: 1.875rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
}

.technic__item-title::before {
  content: "";
  position: absolute;
  bottom: 2px;
  bottom: 0.125rem;
  left: 0;
  width: 1em;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #199664), to(#ffb900));
  background: linear-gradient(90deg, #199664 40%, #ffb900 100%);
}
@media screen and (min-width: 768px) {
  .technic__item-title::before {
    bottom: 0;
  }
}

.technic__item-text {
  margin-top: 9px;
  margin-top: 0.5625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.67;
}
@media screen and (min-width: 768px) {
  .technic__item-text {
    font-size: 0.875rem;
    margin-top: 0.875rem;
    line-height: 1.9;
  }
}

.treatment-message {
  margin-top: 146px;
  margin-top: 9.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .treatment-message {
    margin-top: 15.1875rem;
  }
}

.treatment-message::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: -10%;
  top: -35%;
  background-image: url(../images/treatment/bg_lower-sp.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  height: 957px;
  height: 59.8125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .treatment-message::after {
    height: 64.9375rem;
    width: 110%;
    left: 0%;
    top: -94%;
    background-image: url(../images/osteopathic-introduction/bg_left.png);
  }
}

.treatment-message__heading {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .treatment-message__heading {
    font-size: 2.125rem;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }
}

.treatment-message__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  width: 86%;
  margin-inline: auto;
  margin-top: 33px;
  margin-top: 2.0625rem;
  line-height: 1.93;
}
@media screen and (min-width: 768px) {
  .treatment-message__text {
    font-size: 0.9375rem;
    line-height: 2.1;
    letter-spacing: 0.02em;
    margin-top: 1.4375rem;
    width: 51%;
  }
}

.treatment-message__button {
  margin-top: 69px;
  margin-top: 4.3125rem;
}
@media screen and (min-width: 768px) {
  .treatment-message__button {
    margin-top: 7.9375rem;
  }
}

.treatment-message__link {
  margin-inline: auto;
  width: 74%;
  padding-right: 5px;
  padding-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .treatment-message__link {
    width: 25rem;
  }
}
.treatment-message__link span {
  width: 9px;
  width: 0.5625rem;
}
/*# sourceMappingURL=styles.css.map */
