@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-v56-japanese-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-v56-japanese-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/noto-sans-jp-v56-japanese-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================
  Base
========================= */

:root {
  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --white: #fff;
  --black: #444444;
  --blue: #064984;
  --green: #138d03;
  --yellow: #ffff00;
  --red: #ff0509;
  --fz20: clamp(1rem, 0.936rem + 0.26vw, 1.25rem);
  --fz25: clamp(1.125rem, 1.013rem + 0.46vw, 1.563rem);
  --fz30: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
  --fz40: clamp(1.25rem, 0.947rem + 1.29vw, 2.5rem);
  --fz50: clamp(1.125rem, 0.64rem + 2.07vw, 3.125rem);
  --fz55: clamp(1.375rem, 0.849rem + 2.16vw, 3.438rem);
  --fz60: clamp(1.5rem, 0.954rem + 2.33vw, 3.75rem);
  --fz65: clamp(1.875rem, 1.317rem + 2.29vw, 4.063rem);
  --fz80: clamp(1.563rem, 0.686rem + 3.59vw, 5rem);
  --fz150: clamp(1.875rem, -0.037rem + 7.84vw, 9.375rem);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #f5f5f5;
  font-size: var(--fz50);
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  line-height: 1.4;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
}

li {
  list-style: none;
}

.inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}

.no-gap {
  margin-left: -0.5em;
}

/* SPのみ改行 */
.sp-only {
  display: none;
}

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

/* PCのみ改行 */
.pc-only {
  display: inline;
}

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

.common-btn__link {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(50%, 1000px);
  border-radius: 50px;
  background-color: #149500;
  font-size: var(--fz50);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  box-shadow:
    1px 2px 2px 0px rgba(0, 0, 0, 0.25),
    inset -2px -2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 16px 24px;
  transition: opacity 0.3s;
}

.common-btn__link:hover {
  opacity: 0.85;
}

@media only screen and (max-width: 1279px) {
  .common-btn__link {
    bottom: 0;
    padding: 8px 16px;
  }
}

@media only screen and (max-width: 767px) {
  .common-btn__link {
    bottom: 2%;
    padding: 1rem;
  }
}

@media only screen and (max-width: 499px) {
  .common-btn__link {
    bottom: 2.5%;
    width: min(60%, 250px);
    padding: 12px;
  }
}

/* =========================
 Header
========================= */
.site-header {
  display: flex;
  width: 100%;
  min-height: 200px;
}

.site-header__main {
  flex: 1;
  background-color: #6da1c0;
}

.site-header__inner {
  position: relative;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.site-header__logo-home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
}

.site-header__logo-text {
  font-size: var(--fz60);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.site-header__logo-image {
  max-width: 100px;
}

.site-header__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.site-header__link {
  display: inline-block;
  font-size: var(--fz30);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  transition: opacity 0.3s;
}

.site-header__link:hover {
  opacity: 0.7;
}

.site-header__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  transition: opacity 0.3s;
  margin-top: 8px;
}

.site-header__instagram:hover {
  opacity: 0.7;
}

.site-header__instagram-icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.site-header__cta {
  width: 18%;
  min-width: 220px;
  background-color: var(--green);
}

.site-header__cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: var(--fz40);
  font-weight: 700;
  transition: opacity 0.3s;
}

.site-header__cta-link:hover {
  opacity: 0.8;
}

/* PCでは非表示 */
.site-header__menu-button {
  display: none;
}

.site-header__nav-cta {
  display: none;
}

@media only screen and (max-width: 1279px) {
  .site-header__logo-image {
    max-width: 80px;
  }

  .site-header__list {
    gap: 20px;
  }

  .site-header__cta {
    width: 15%;
    min-width: 180px;
  }

  .site-header__instagram {
    width: 45px;
    height: 45px;
  }

  .site-header__logo-image {
    max-width: 64px;
  }
}

@media only screen and (max-width: 999px) {
  .site-header {
    min-height: 160px;
  }

  .site-header__inner {
    min-height: 160px;
    padding: 4px;
  }

  .site-header__list {
    gap: 4px 20px;
  }

  .site-header__nav {
    margin-top: 8px;
  }

  .site-header__logo-image {
    max-width: 50px;
  }

  .site-header__instagram {
    width: 36px;
    height: 36px;
    align-items: baseline;
    margin-top: 4px;
  }
}

@media screen and (max-width: 767px) {
  .site-header {
    min-height: 0;
  }

  .site-header__main {
    width: 100%;
  }

  .site-header__inner {
    min-height: 94px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  .site-header__logo {
    flex: 1;
    min-width: 0;
  }

  .site-header__logo-home {
    justify-content: flex-start;
    gap: 16px;
  }

  .site-header__logo-image {
    width: 58px;
    max-width: 58px;
  }

  .site-header__logo-text {
    font-size: 28px;
    white-space: nowrap;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 0;
    padding: 24px 20px 32px;
    background-color: #6da1c0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s,
      visibility 0.3s;
    z-index: 20;
  }

  .site-header.is-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-header__link {
    font-size: 24px;
  }

  .site-header__item--instagram {
    margin-top: 8px;
  }

  .site-header__instagram {
    width: 44px;
    height: 44px;
  }

  .site-header__nav-cta {
    display: block;
    margin-top: 24px;
  }

  .site-header__nav-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 12px 20px;
    border-radius: 9999px;
    background-color: var(--green);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
  }

  .site-header__menu-button {
    display: inline-flex;
    position: relative;
    z-index: 30;
    width: 56px;
    height: 56px;
    margin-left: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .site-header__menu-line {
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--white);
    transition:
      transform 0.3s,
      opacity 0.3s;
  }

  .site-header.is-open .site-header__menu-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .site-header.is-open .site-header__menu-line:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .site-header__menu-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media screen and (max-width: 499px) {
  .site-header__inner {
    min-height: 70px;
    padding: 0 12px;
  }

  .site-header__logo-home {
    gap: 30px;
  }

  .site-header__logo-image {
    width: 36px;
    max-width: 100%;
  }

  .site-header__logo-text {
    font-size: 24px;
  }

  .site-header__menu-button {
    width: 48px;
    height: 48px;
    gap: 8px;
  }

  .site-header__link {
    font-size: 20px;
  }

  .site-header__nav-cta-link {
    font-size: 20px;
    min-height: 54px;
  }

  .site-header.is-open .site-header__menu-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
}

@media only screen and (max-width: 399px) {
  .site-header__logo-home {
    gap: 25px;
  }
}

@media only screen and (max-width: 349px) {
  .site-header__logo-home {
    gap: 8px;
  }

  .site-header__logo-text {
    font-size: 22px;
  }
}

/* =========================
  Main-visual 
========================= */

.main-visual {
  position: relative;
  overflow: hidden;
  background-color: #f3f3f3;
}

.main-visual__pc {
  position: relative;
}

.main-visual__slider {
  position: relative;
}

.main-visual__slide img {
  width: 100%;
  height: auto;
}

.main-visual__slide {
  position: relative;
}

.main-visual__slide picture {
  display: block;
}

/* =========================
 News Section
========================= */
.news-section {
  padding-block: 120px;
}

.news-section__inner {
  max-width: 65%;
  margin: 0 auto;
}

.news-section__heading {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
}

.news-section__title {
  position: relative;
  z-index: 2;
  font-size: var(--fz65);
  font-weight: bold;
  line-height: 1.5;
  color: var(--blue);
}

.news-section__title-bar {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
  width: 35%;
  height: 25px;
  background-color: var(--yellow);
}

.news-section__subtitle {
  font-size: var(--fz30);
  font-weight: bold;
  color: var(--blue);
  line-height: 1.43;
}

.news-section__item {
  border-bottom: 3px solid var(--blue);
}

.news-section__item + .news-section__item {
  margin-top: 67px;
}

.news-section__item-link {
  display: block;
  padding-bottom: 16px;
  color: inherit;
  transition: opacity 0.3s;
}

.news-section__item-link:hover {
  opacity: 0.7;
}

.news-section__date {
  display: block;
  font-size: var(--fz30);
  font-weight: normal;
  line-height: 1;
  color: var(--black);
}

.news-section__text {
  font-size: var(--fz30);
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue);
  margin-top: 20px;
}

.news-section__button-wrap {
  text-align: center;
  margin-top: 120px;
}

.news-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  border-radius: 50px;
  background-color: var(--blue);
  font-size: var(--fz50);
  font-weight: 500;
  color: var(--white);
  padding: 8px 24px;
  transition: opacity 0.3s;
}

.news-section__button:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 1024px) {
  .news-section {
    padding-block: 90px;
  }

  .news-section__heading {
    margin-bottom: 50px;
  }

  .news-section__button-wrap {
    margin-top: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .news-section {
    padding-block: 50px;
  }

  .news-section__inner {
    max-width: 85%;
  }

  .news-section__title-bar {
    bottom: 30px;
    width: 75%;
    height: 13px;
  }

  .news-section__heading {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 499px) {
  .news-section__text {
    margin-top: 8px;
  }

  .news-section__item {
    border-bottom: 2px solid var(--blue);
  }

  .news-section__item + .news-section__item {
    margin-top: 30px;
  }

  .news-section__item-link {
    padding-bottom: 12px;
  }

  .news-section__button-wrap {
    margin-top: 50px;
  }
}

/* =========================
 Worry Section
========================= */

.worry-section__heading {
  background-color: var(--blue);
}

.worry-section__heading-inner {
  position: relative;
  padding: 24px;
  text-align: center;
}

.worry-section__heading-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -44px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-top: 44px solid var(--blue);
}

.worry-section__title {
  font-size: var(--fz80);
  color: var(--white);
  font-weight: bold;
}

.worry-section__inner {
  margin-top: 220px;
}

.worry-section__row {
  display: flex;
  align-items: center;
  gap: 155px;
}

.worry-section__row + .worry-section__row {
  margin-top: 200px;
}

.worry-section__card {
  width: 36%;
  display: flex;
  justify-content: center;
}

.worry-section__frame {
  background-color: var(--white);
  position: relative;
  width: 100%;
  max-width: 80%;
  min-height: 615px;
  padding: 36px;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.worry-section__frame::before {
  content: "";
  position: absolute;
  inset: 36px;
  border: 2px solid var(--blue);
}

.worry-section__text {
  position: relative;
  z-index: 1;
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
  color: var(--blue);
  text-align: center;
}

.worry-section__row--right-image {
  justify-content: end;
}

.worry-section__row--left-image {
  justify-content: start;
}

@media only screen and (max-width: 1499px) {
  .worry-section__inner {
    margin-top: 180px;
  }

  .worry-section__row {
    gap: 80px;
  }

  .worry-section__frame {
    max-width: 100%;
    min-height: 500px;
    padding: 24px;
  }

  .worry-section__frame::before {
    inset: 24px;
  }

  .worry-section__image--right,
  .worry-section__image--left {
    width: 50%;
  }
}

@media only screen and (max-width: 1279px) {
  .worry-section__inner {
    margin-top: 120px;
  }

  .worry-section__row + .worry-section__row {
    margin-top: 140px;
  }

  .worry-section__frame {
    max-width: 100%;
    min-height: 300px;
    padding: 20px;
  }

  .worry-section__frame::before {
    inset: 20px;
  }

  .worry-section__image--right,
  .worry-section__image--left {
    width: 40%;
  }
}

@media only screen and (max-width: 899px) {
  .worry-section__image--right,
  .worry-section__image--left {
    width: 50%;
  }

  .worry-section__row {
    gap: 64px;
  }

  .worry-section__frame {
    padding: 16px;
  }

  .worry-section__frame::before {
    inset: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .worry-section__row + .worry-section__row {
    margin-top: 100px;
  }

  .worry-section__frame {
    min-height: 270px;
  }
}

@media only screen and (max-width: 640px) {
  .worry-section__inner {
    margin-top: 75px;
  }

  .worry-section__heading-inner::after {
    bottom: -24px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 24px solid var(--blue);
  }

  .worry-section__row {
    gap: 16px;
  }

  .worry-section__row + .worry-section__row {
    margin-top: 50px;
  }

  .worry-section__card {
    width: 42%;
  }

  .worry-section__frame {
    min-height: 150px;
    border: 1px solid var(--blue);
    padding: 10px;
  }

  .worry-section__frame::before {
    inset: 10px;
    border: 1px solid var(--blue);
  }
}

@media only screen and (max-width: 399px) {
  .worry-section__card {
    width: 43%;
  }

  .worry-section__text {
    font-size: 16px;
  }

  .worry-section__frame {
    min-height: 135px;
    padding: 8px;
  }

  .worry-section__frame::before {
    inset: 8px;
  }
}

/* =========================
 Cause Section
========================= */
.cause-section {
  margin-top: 220px;
}

.cause-section__lead {
  position: relative;
  background-color: var(--blue);
}

.cause-section__lead-inner {
  position: relative;
  padding-block: 20px;
  text-align: center;
}

.cause-section__lead-inner::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 40px solid var(--blue);
}

.cause-section__lead-title {
  font-size: var(--fz65);
  font-weight: bold;
  line-height: 1.4;
  color: var(--white);
}

.cause-section__lead-highlight {
  display: inline-block;
  padding: 0 18px 4px;
  background-color: var(--yellow);
  color: var(--blue);
  line-height: 1.2;
}

.cause-section__content {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
}

.cause-section__inner {
  max-width: 46%;
  position: relative;
  z-index: 2;
}

.cause-section__text-wrap {
  color: var(--blue);
}

.cause-section__text {
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
}

.cause-section__list {
  margin-block: 80px;
}

.cause-section__list-item {
  position: relative;
  padding-left: 1em;
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cause-section__list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.cause-section__decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cause-section__decoration--left {
  top: 0;
  left: 0;
  max-width: 500px;
  height: auto;
}

.cause-section__decoration--right {
  right: 0;
  bottom: 0;
  max-width: 500px;
  height: auto;
}

.cause-section__bottom {
  padding-block: 150px;
}

.cause-section__bottom-inner {
  text-align: center;
}

.cause-section__bottom-text {
  font-size: var(--fz50);
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue);
}

.cause-section__bottom-box {
  max-width: 50%;
  margin: 36px auto 36px;
  padding: 20px 24px;
  border: 3px solid var(--red);
  font-size: var(--fz55);
  font-weight: bold;
  line-height: 1.6;
  color: var(--blue);
  text-align: center;
}

@media only screen and (max-width: 1499px) {
  .cause-section__inner {
    max-width: 50%;
  }
}

@media only screen and (max-width: 1024px) {
  .cause-section {
    margin-top: 150px;
  }

  .cause-section__inner {
    max-width: 50%;
  }

  .cause-section__list {
    margin-block: 60px;
  }

  .cause-section__content {
    padding-block: 90px;
  }

  .cause-section__decoration--left,
  .cause-section__decoration--right {
    max-width: 300px;
  }

  .cause-section__bottom {
    padding-block: 90px;
  }

  .cause-section__bottom-box {
    margin: 30px auto 30px;
    padding: 20px 24px;
  }
}

@media only screen and (max-width: 899px) {
  .cause-section {
    margin-top: 120px;
  }

  .cause-section__list {
    margin-block: 30px;
  }

  .cause-section__content {
    padding-block: 70px;
  }

  .cause-section__bottom {
    padding-block: 70px;
  }

  .cause-section__bottom-box {
    margin: 25px auto 25px;
    padding: 20px 24px;
  }
}

@media only screen and (max-width: 767px) {
  .cause-section__lead-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 640px) {
  .cause-section {
    margin-top: 32px;
  }

  .cause-section__inner {
    max-width: 80%;
  }

  .cause-section__lead-inner {
    padding-block: 24px;
  }

  .cause-section__decoration--left,
  .cause-section__decoration--right {
    max-width: 155px;
  }

  .cause-section__text-wrap {
    text-align: center;
  }

  .cause-section__list {
    margin: 8px 0 30px 0;
  }

  .cause-section__list-item {
    display: inline-block;
  }

  .cause-section__content {
    padding: 40px 0 60px;
  }
}

@media only screen and (max-width: 499px) {
  .cause-section__bottom {
    padding-block: 25px;
  }

  .cause-section__bottom-box {
    margin: 16px auto 16px;
    padding: 16px 24px;
  }

  .cause-section__bottom-box {
    max-width: 75%;
  }
}

/* =========================
 Approach Section
========================= */
.approach-section {
  position: relative;
  background: linear-gradient(180deg, #041d3c 0%, #05274f 100%);
  padding: 90px 0 120px;
}

.approach-section__lead {
  max-width: 60%;
  margin: 0 auto;
}

.approach-section__lead-top {
  font-size: var(--fz50);
  font-weight: bold;
  line-height: 1.4;
  color: var(--white);
}

.approach-section__lead-list {
  margin-block: 100px;
  text-align: left;
}

.approach-section__lead-item {
  font-size: var(--fz60);
  font-weight: bold;
  line-height: 1.33;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.approach-section__lead-bottom {
  font-size: var(--fz50);
  font-weight: bold;
  line-height: 1.4;
  color: var(--white);
}

.approach-section__chart {
  max-width: 55%;
  margin: 60px auto 70px;
}

.approach-section__cta {
  text-align: center;
}

.approach-section__cta-button {
  bottom: 3%;
}

.approach-section__lead-bottom-sp {
  display: none;
}

@media only screen and (max-width: 1499px) {
  .approach-section__lead {
    max-width: 65%;
  }
}

@media only screen and (max-width: 1279px) {
  .approach-section {
    padding: 80px 0 80px;
  }

  .approach-section__lead {
    max-width: 65%;
  }

  .approach-section__lead-list {
    margin-block: 75px;
  }

  .approach-section__chart {
    max-width: 55%;
    margin: 40px auto 60px;
  }
}

@media only screen and (max-width: 899px) {
  .approach-section__lead {
    max-width: 72%;
  }

  .approach-section__lead-list {
    margin-block: 60px;
  }
}

@media only screen and (max-width: 640px) {
  .approach-section {
    padding: 16px 0 80px;
  }

  .approach-section__lead-top {
    font-size: var(--fz60);
    text-align: center;
  }

  .approach-section__lead {
    max-width: 100%;
  }

  .approach-section__lead-list {
    margin-block: 8px;
    text-align: center;
  }

  .approach-section__lead-item {
    margin-bottom: 8px;
  }

  .approach-section__lead-bottom {
    font-size: var(--fz60);
    text-align: center;
  }

  .approach-section__chart {
    max-width: 100%;
    margin: 20px auto 12px;
  }

  .approach-section__lead-bottom-sp {
    display: block;
    font-size: var(--fz60);
    text-align: center;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 499px) {
  .approach-section__inner {
    max-width: 90%;
  }
}

@media only screen and (max-width: 399px) {
  .approach-section__lead-bottom-sp {
    margin-bottom: 40px;
  }

  .approach-section__chart {
    margin: 10px auto 8px;
  }
}

/* =========================
 Chiropractic Section
========================= */
.chiropractic-section {
  background: linear-gradient(180deg, #052954 0%, #073060 100%);
}

.chiropractic-section__hero {
  position: relative;
}

.chiropractic-section__hero img {
  width: 100%;
  height: auto;
}

.chiropractic-section__hero-title {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  font-size: var(--fz150);
  font-weight: bold;
  line-height: 1.07;
  letter-spacing: 1em;
  color: var(--white);
  white-space: nowrap;
}

.chiropractic-section__content {
  padding: 90px 0 20px;
  background-color: var(--blue);
}

.chiropractic-section__inner {
  max-width: 90%;
}

.chiropractic-section__lead {
  text-align: center;
}

.chiropractic-section__lead-text {
  font-size: var(--fz50);
  font-weight: bold;
  line-height: 1.3;
  color: var(--white);
}

.chiropractic-section__lead-text + .chiropractic-section__lead-text {
  margin-top: 48px;
}

.chiropractic-section__flow {
  max-width: 52%;
  margin: 120px auto 120px;
}

@media only screen and (max-width: 1024px) {
  .chiropractic-section__lead-text + .chiropractic-section__lead-text {
    margin-top: 36px;
  }

  .chiropractic-section__flow {
    max-width: 70%;
    margin: 60px auto 60px;
  }
}

@media only screen and (max-width: 899px) {
  .chiropractic-section__inner {
    max-width: 95%;
  }

  .chiropractic-section__flow {
    max-width: 75%;
    margin: 50px auto 50px;
  }

  .chiropractic-section__lead-text {
    line-height: 1.7;
  }
}

@media only screen and (max-width: 499px) {
  .chiropractic-section__content {
    padding: 16px 0 30px;
  }

  .chiropractic-section__lead-text + .chiropractic-section__lead-text {
    margin-top: 24px;
  }

  .chiropractic-section__flow {
    max-width: 75%;
    margin: 20px auto 0;
  }
}

/* =========================
 Treatment Feature
========================= */
.treatment-feature {
  background-color: var(--blue);
}

.treatment-feature__neuro-skeletal {
  background: linear-gradient(180deg, #094385 0%, #0a498e 100%);
}

.treatment-fascia-release {
  background: linear-gradient(180deg, #0a4f9c 0%, #0b54a5 100%);
}

.treatment-feature__inner {
  max-width: 83%;
}

.treatment-feature__image-area {
  position: relative;
}

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

.treatment-feature__label {
  position: absolute;
  top: 12.5%;
  left: 50%;
  transform: translateX(-50%);
  width: min(55%, 780px);
  background-color: #0b54a5;
  border: 3px solid #ffffff;
  border-radius: 20px;
  box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 8px 40px;
  text-align: center;
}

.treatment-feature-muscle-adjustment .treatment-feature__label {
  width: min(75%, 1000px);
}

.treatment-feature__label-text {
  font-size: var(--fz65);
  font-weight: bold;
  line-height: 1.3;
  color: var(--white);
}

.treatment-feature__body {
  background: linear-gradient(180deg, #07376e 0%, #083c77 100%);
  padding: 150px 0 200px;
}

.treatment-feature__body-gray {
  background: #f5f5f5;
}

.treatment-feature__box {
  max-width: 100%;
  margin: 0 auto;
  padding: 8% 5%;
  border: 3px solid var(--yellow);
  text-align: center;
}

.treatment-feature__box-blue {
  border: 3px solid #064984;
}

.treatment-feature__title {
  font-size: var(--fz65);
  color: var(--yellow);
  font-weight: bold;
  line-height: 1.4;
}

.treatment-feature__title-blue {
  color: var(--blue);
}

.treatment-feature__text {
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.7;
  color: var(--white);
  margin-top: 40px;
}

.treatment-feature__text-black {
  color: var(--black);
}

.treatment-feature-movement-correction {
  position: relative;
}

@media only screen and (max-width: 1499px) {
  .treatment-feature__box {
    padding: 8% 0;
  }
}

@media only screen and (max-width: 1024px) {
  .treatment-feature__body {
    padding: 90px 0px 120px;
  }

  .treatment-feature__body-correction {
    padding: 90px 0px 180px;
  }

  .treatment-feature__box-blue {
    padding: 6% 4%;
  }
}

@media only screen and (max-width: 899px) {
  .treatment-feature__inner {
    max-width: 90%;
  }

  .treatment-feature__label {
    width: min(75%, 780px);
    border-radius: 16px;
  }

  .treatment-feature__body {
    padding: 60px 0px 80px;
  }

  .treatment-feature__body-correction {
    padding: 60px 0px 100px;
  }

  .treatment-feature__box {
    padding: 6% 3%;
  }
}

@media only screen and (max-width: 640px) {
  .treatment-feature__label {
    width: min(100%, 250px);
    border: 1px solid var(--white);
    border-radius: 20px;
    padding: 4px 20px;
  }

  .treatment-feature__label-text {
    font-size: var(--fz50);
  }

  .treatment-feature__body {
    padding: 24px 0px 48px;
  }

  .treatment-feature__body-correction {
    padding: 24px 0px 100px;
  }

  .treatment-feature__title {
    font-size: var(--fz50);
    line-height: 1.5;
  }

  .treatment-feature__text {
    font-size: 18px;
    line-height: 1.56;
    margin-top: 20px;
  }

  .treatment-feature__box {
    max-width: 100%;
    padding: 4% 1%;
    border: 1px solid var(--yellow);
  }

  .treatment-feature__box-blue {
    border: 1px solid #064984;
  }
}

@media only screen and (max-width: 399px) {
  .treatment-feature__text {
    font-size: 16px;
  }
}

/* =========================
 Exercise regulation
========================= */
.exercise-regulation {
  background: linear-gradient(180deg, #052954 0%, #073060 100%);
}

.exercise-regulation__hero {
  position: relative;
}

.exercise-regulation__hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fz150);
  font-weight: bold;
  line-height: 1.33;
  color: var(--white);
  white-space: nowrap;
}

.exercise-regulation__content {
  background-color: #f5f5f5;
  padding: 90px 0 20px;
}

.exercise-regulation__inner {
  max-width: 90%;
}

.exercise-regulation__lead {
  text-align: center;
}

.exercise-regulation__lead-text {
  font-size: var(--fz50);
  font-weight: bold;
  line-height: 1.3;
  color: #031c3b;
}

.exercise-regulation__lead-text + .exercise-regulation__lead-text {
  margin-top: 48px;
}

.exercise-regulation__flow {
  max-width: 52%;
  margin: 120px auto 120px;
}

@media only screen and (max-width: 1024px) {
  .exercise-regulation__lead-text + .exercise-regulation__lead-text {
    margin-top: 36px;
  }

  .exercise-regulation__flow {
    max-width: 70%;
    margin: 60px auto 60px;
  }
}

@media only screen and (max-width: 899px) {
  .exercise-regulation__inner {
    max-width: 95%;
  }

  .exercise-regulation__flow {
    max-width: 75%;
    margin: 50px auto 50px;
  }

  .exercise-regulation__lead-text {
    line-height: 1.7;
  }
}

@media only screen and (max-width: 499px) {
  .exercise-regulation__content {
    padding: 16px 0 30px;
  }

  .exercise-regulation__lead-text + .exercise-regulation__lead-text {
    margin-top: 24px;
  }

  .exercise-regulation__flow {
    max-width: 75%;
    margin: 20px auto 0;
  }
}

/* =========================
 Closing Message
========================= */
.closing-message {
  background-image: url("../images/closing-message-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 150px;
  padding-block: 120px;
}

.closing-message__content {
  text-align: center;
}

.closing-message__lead {
  font-size: var(--fz50);
  font-weight: bold;
  line-height: 1.5;
  color: var(--white);
}

.closing-message__list {
  max-width: 80%;
  margin: 60px auto;
}

.closing-message__item {
  position: relative;
  font-size: var(--fz60);
  font-weight: bold;
  line-height: 1.5;
  color: var(--yellow);
}

.closing-message__item + .closing-message__item {
  margin-top: 60px;
}

.closing-message__text {
  font-size: var(--fz45);
  font-weight: bold;
  line-height: 1.6;
  color: var(--white);
}

.closing-message__text--middle {
  margin-top: 50px;
}

.closing-message__text--middle span {
  background: var(--white);
  color: #031c3b;
  padding: 0 6px;
}

.closing-message__text--highlight {
  margin-top: 50px;
}

.closing-message__text--highlight span {
  color: var(--yellow);
}

.closing-message__text--last {
  margin-top: 50px;
}

@media only screen and (max-width: 899px) {
  .closing-message {
    margin-top: 80px;
    padding-block: 90px;
  }

  .closing-message__list {
    max-width: 90%;
    margin: 50px auto;
  }

  .closing-message__item + .closing-message__item {
    margin-top: 30px;
  }

  .closing-message__text--middle {
    margin-top: 40px;
  }

  .closing-message__text--highlight {
    margin-top: 40px;
  }

  .closing-message__text--last {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 499px) {
  .inner {
    max-width: 100%;
  }

  .closing-message {
    margin-top: 25px;
    padding-block: 40px;
  }

  .closing-message__lead {
    font-size: 20px;
    line-height: 1.85;
  }

  .closing-message__item {
    font-size: 25px;
  }

  .closing-message__list {
    max-width: 100%;
    margin: 30px auto;
  }

  .closing-message__text {
    font-size: 20px;
    line-height: 1.85;
  }
}

/* =========================
 Feature Intro
========================= */
.feature-intro__image-wrap img {
  width: 100%;
  height: auto;
}

.feature-intro__body {
  padding-top: 200px;
}

.feature-intro__inner {
  max-width: 80%;
  text-align: center;
}

.feature-intro__title {
  font-size: var(--fz80);
  color: #031c3b;
  font-weight: bold;
  line-height: 1.25;
}

.feature-intro__text {
  font-size: var(--fz60);
  font-weight: bold;
  line-height: 1.33;
  color: #444444;
  margin-top: 60px;
}

.feature-intro__text--last {
  margin-top: 70px;
}

.feature-intro__line {
  width: 100%;
  margin-top: 140px;
  border-bottom: 4px solid #031c3b;
}

@media only screen and (max-width: 1499px) {
  .feature-intro__inner {
    max-width: 86%;
  }
}

@media only screen and (max-width: 1279px) {
  .feature-intro__body {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 899px) {
  .feature-intro__body {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 499px) {
  .feature-intro__body {
    padding-top: 36px;
  }

  .feature-intro__title {
    font-size: 30px;
    line-height: 1.67;
  }

  .feature-intro__text {
    font-size: 20px;
    line-height: 1.85;
    margin-top: 20px;
  }

  .feature-intro__text--last {
    margin-top: 40px;
  }

  .feature-intro__line {
    margin-top: 40px;
  }
}

/* =========================
 Trust Section
========================= */
.trust-section {
  padding-top: 200px;
}

.trust-section__title {
  font-size: var(--fz60);
  font-weight: bold;
  line-height: 1.33;
  color: #031c3b;
  text-align: center;
}

.trust-section__lead {
  margin-top: 90px;
  text-align: center;
}

.trust-section__text {
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
  color: #444444;
}

.trust-section__text--last {
  margin-top: 60px;
}

.trust-section__cards {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-top: 96px;
}

.trust-section__card {
  aspect-ratio: 700 / 571;
  width: 45%;
}

.trust-section__caption {
  font-size: var(--fz30);
  font-weight: 500;
  line-height: 1.67;
  color: #444444;
  text-align: center;
  margin-top: 25px;
}

@media only screen and (max-width: 1279px) {
  .trust-section {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 899px) {
  .trust-section {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 499px) {
  .trust-section {
    padding-top: 45px;
  }

  .trust-section__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .trust-section__lead {
    margin-top: 25px;
  }

  .trust-section__text {
    font-size: 18px;
    line-height: 1.56;
  }

  .trust-section__text--last {
    margin-top: 30px;
  }

  .trust-section__cards {
    flex-direction: column;
    gap: 50px;
    margin-top: 48px;
  }

  .trust-section__card {
    aspect-ratio: 32 / 29;
    width: 100%;
  }

  .trust-section__caption {
    font-size: 18px;
    line-height: 1.56;
    margin-top: 8px;
  }
}

/* =========================
 Approach Point
========================= */
.approach-point {
  padding-top: 180px;
}

.approach-point__title {
  font-size: var(--fz60);
  font-weight: bold;
  color: #031c3b;
  line-height: 1.33;
  text-align: center;
}

.approach-point__cards {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 120px;
}

.approach-point__card-image {
  flex: 1;
  margin: 0;
}

@media only screen and (max-width: 1279px) {
  .approach-point {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 899px) {
  .approach-point {
    padding-top: 100px;
  }

  .approach-point__cards {
    gap: 25px;
    margin-top: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .approach-point {
    padding-top: 40px;
  }

  .approach-point__cards {
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
  }

  .approach-point__title {
    font-size: 20px;
    line-height: 1.5;
  }
}

/* =========================
 Expertise Section
========================= */
.expertise-section {
  padding-top: 200px;
}

.expertise-section__title {
  font-size: var(--fz60);
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
  color: #031c3b;
}

.expertise-section__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
  margin-top: 120px;
}

.expertise-section__image-wrap {
  width: 46%;
  margin: 0;
}

.expertise-section__image {
  display: block;
  width: 100%;
  height: auto;
}

.expertise-section__body {
  width: 49%;
}

.expertise-section__text {
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
  color: #444444;
  margin-bottom: 50px;
}

.expertise-section__list {
  margin-top: 60px;
}

.expertise-section__list-item {
  position: relative;
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
  color: #444444;
  padding-left: 0.8em;
}

.expertise-section__list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.expertise-section__list-item:last-child::before {
  content: none;
}

.expertise-section__text--last {
  margin-top: 60px;
}

.expertise-section--reverse .expertise-section__content {
  flex-direction: row-reverse;
}

.expertise-section__bottom {
  margin-top: 70px;
  text-align: center;
}

.expertise-section__bottom-text {
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
  color: #444444;
}

@media only screen and (max-width: 1499px) {
  .expertise-section__image-wrap {
    width: 44%;
  }

  .expertise-section__body {
    width: 60%;
  }

  .expertise-section__content {
    gap: 50px;
    margin-top: 90px;
  }
}

@media only screen and (max-width: 1279px) {
  .expertise-section {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 899px) {
  .expertise-section {
    padding-top: 100px;
  }

  .expertise-section__list {
    margin-top: 40px;
  }

  .expertise-section__text--last {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .expertise-section {
    padding-top: 35px;
  }

  .expertise-section__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .expertise-section__content {
    flex-direction: column;
    gap: 48px;
    margin-top: 20px;
  }

  .expertise-section__content--reverse {
    flex-direction: column-reverse;
    gap: 4px;
  }

  .expertise-section__image-wrap {
    aspect-ratio: 32 / 29;
    width: 100%;
  }

  .expertise-section__body {
    width: 100%;
  }

  .expertise-section__list-item {
    font-size: 18px;
    line-height: 1.67;
    padding-left: 0;
    text-align: center;
  }

  .expertise-section__list-item::before {
    position: static;
  }

  .expertise-section__text {
    font-size: 18px;
    line-height: 1.67;
    text-align: center;
    margin-bottom: 30px;
  }

  .expertise-section__list {
    margin-top: 30px;
  }

  .expertise-section__text--last {
    margin-top: 30px;
  }

  .expertise-section--reverse .expertise-section__content {
    flex-direction: column-reverse;
    gap: 4px;
  }

  .expertise-section__bottom {
    margin-top: 40px;
  }

  .expertise-section__bottom-text {
    font-size: 18px;
    line-height: 1.67;
  }
  .expertise-section__text.expertise-section__text--last.sp-only {
    display: block;
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
}

/* =========================
 Gallery Section
========================= */
.gallery-section {
  position: relative;
  padding: 130px 0 150px;
}

.gallery-section__lead {
  text-align: center;
}

.gallery-section__lead-title {
  font-size: var(--fz60);
  font-weight: 700;
  line-height: 1.33;
  color: #031c3b;
}

.gallery-section__lead-text {
  font-size: var(--fz50);
  font-weight: 500;
  line-height: 1.4;
  color: #444444;
  margin-top: 120px;
}

.gallery-section__title {
  font-size: var(--fz50);
  font-weight: 700;
  color: #031c3b;
  text-align: center;
  margin-top: 300px;
}

.gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 160px 48px;
  margin-top: 120px;
}

.gallery-section__item {
  margin: 0;
  text-align: center;
}

.gallery-section__image {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-section__caption {
  font-size: var(--fz30);
  font-weight: 500;
  text-align: center;
  color: #444444;
  margin-top: 14px;
}

.gallery-section__cta-button {
  bottom: -30px;
}

@media only screen and (max-width: 1279px) {
  .gallery-section {
    padding: 90px 0 150px;
  }

  .gallery-section__lead-text {
    margin-top: 70px;
  }

  .gallery-section__title {
    margin-top: 120px;
  }

  .gallery-section__grid {
    gap: 60px 30px;
    margin-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-section {
    padding: 50px 0 140px;
  }

  .gallery-section__lead-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .gallery-section__lead-text {
    font-size: 18px;
    line-height: 1.67;
    margin-top: 20px;
  }

  .gallery-section__title {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 50px;
  }

  .gallery-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 30px;
  }

  .gallery-section__caption {
    font-size: 18px;
    line-height: 1.67;
    margin-top: 8px;
  }
}

@media only screen and (max-width: 499px) {
  .gallery-section {
    padding: 50px 0 60px;
  }
}

/* =========================
 Voice Section
========================= */
.voice-section {
  padding-block: 180px;
}

.voice-section__title {
  font-size: var(--fz60);
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
  color: #031c3b;
}

.voice-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 150px 130px;
  margin-top: 150px;
}

.voice-section__card {
  padding: 30px 40px;
  border-radius: 30px;
  background-color: var(--white);
}

.voice-section__card-title {
  font-size: var(--fz30);
  font-weight: 700;
  line-height: 1.67;
  letter-spacing: 0.01em;
  text-align: center;
  color: #444444;
}

.voice-section__image-wrap {
  margin-top: 28px;
  text-align: center;
}

.voice-section__image {
  display: inline-block;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.voice-section__meta {
  font-size: var(--fz20);
  font-weight: 400;
  line-height: 1.75;
  color: #444444;
  text-align: center;
  margin-top: 12px;
}

.voice-section__text {
  font-size: var(--fz25);
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  color: #444444;
  margin-top: 28px;
}

@media only screen and (max-width: 1499px) {
  .voice-section__grid {
    gap: 90px 60px;
    margin-top: 100px;
  }

  .voice-pc_only {
    display: none;
  }

  .voice-section {
    padding-block: 140px;
  }
}

@media only screen and (max-width: 1024px) {
  .voice-section__grid {
    gap: 60px 30px;
    margin-top: 80px;
  }

  .voice-section__image-wrap {
    margin-top: 16px;
  }

  .voice-section__image {
    width: 150px;
    height: 150px;
  }

  .voice-section__card {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 899px) {
  .voice-section__inner {
    max-width: 90%;
  }

  .voice-section__grid {
    gap: 40px 25px;
    margin-top: 60px;
  }

  .voice-section__image {
    width: 130px;
    height: 130px;
  }

  .voice-section__text {
    margin-top: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .voice-section {
    padding: 100px 0 70px;
  }

  .voice-section__card {
    padding: 25px;
  }

  .voice-section__title {
    font-size: 30px;
    line-height: 1.73;
    text-align: center;
    color: #031c3b;
  }

  .voice-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
  }

  .voice-section__card-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .voice-section__meta {
    margin-top: 8px;
  }

  .voicce-section__sp-flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .voice-section__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    margin-top: 15px;
  }
}

/* =========================
 Flow Section
========================= */
.flow-section {
  padding: 24px 0 100px;
}

.flow-section__title {
  padding: 50px;
  background-color: #f57b1d;
  font-size: var(--fz60);
  font-weight: 900;
  line-height: 0.87;
  color: var(--white);
  text-align: center;
}

.flow-section__list {
  max-width: 88%;
  margin: 0 auto;
  margin-top: 200px;
}

.flow-section__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.flow-section__image-wrap {
  width: 44%;
  margin: 0;
}

.flow-section__image {
  display: block;
  width: 100%;
  height: auto;
}

.flow-section__content {
  width: 52%;
}

.flow-section__step-title {
  color: #f57c1f;
  font-size: var(--fz50);
  font-weight: bold;
  line-height: 1.4;
}

.flow-section__text {
  font-size: var(--fz30);
  line-height: 1.67;
  text-align: justify;
  color: #444444;
  margin-top: 20px;
}

.flow-section__arrow {
  font-size: 4.5rem;
  line-height: 1;
  color: #555555;
  text-align: center;
  margin: 80px 0;
}

@media only screen and (max-width: 1279px) {
  .flow-section__title {
    padding: 20px;
  }

  .flow-section__list {
    max-width: 100%;
    margin-top: 100px;
  }

  .flow-section__text {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 899px) {
  .flow-section__list {
    margin-top: 60px;
  }

  .flow-section__arrow {
    font-size: 2.5rem;
    margin: 40px 0;
  }

  .flow-section__text {
    margin-top: 4px;
  }
}

@media only screen and (max-width: 768px) {
  .flow-section {
    padding: 0 0 50px;
  }

  .flow-section .pc-only {
    display: none;
  }

  .flow-section .sp-only {
    display: block;
  }

  .flow-section__title {
    font-size: 30px;
    padding: 1rem;
  }

  .flow-section__item {
    flex-direction: column;
  }

  .flow-section__image-wrap {
    width: 100%;
  }

  .flow-section__list {
    max-width: 80%;
    margin-top: 30px;
  }

  .flow-section__step-title.sp-only {
    width: 100%;
    font-size: 20px;
    line-height: 2.6;
    text-align: center;
  }

  .flow-section__content {
    width: 100%;
  }

  .flow-section__text {
    font-size: 18px;
    line-height: 1.56;
    text-align: center;
    margin-top: 16px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .flow-section__arrow {
    font-size: 2rem;
    margin: 20px 0;
  }
}

/* =========================
 Price Section
========================= */
.price-section {
  position: relative;
  background: var(--white);
  margin-top: 180px;
  padding-bottom: 330px;
}

.price-section__title {
  font-size: var(--fz50);
  font-weight: 700;
  line-height: 1.04;
  text-align: center;
  color: #444444;
  padding-top: 100px;
}

.price-_plan {
  margin-top: 40px;
}

.price-_plan__image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.price-section__cta-button {
  bottom: 90px;
}

@media only screen and (max-width: 1499px) {
  .price-section {
    padding-bottom: 240px;
  }
}

@media only screen and (max-width: 1024px) {
  .price-section {
    margin-top: 30px;
  }

  .price-section__title {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .price-section {
    padding-bottom: 200px;
  }

  .price-section__cta-button {
    bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .price-section__inner {
    max-width: 80%;
  }

  .price-section__title {
    font-size: 30px;
    line-height: 1.73;
    padding-top: 40px;
  }

  .price-_plan {
    margin-top: 25px;
  }

  .price-section {
    padding-bottom: 160px;
  }
}

/* =========================
 Instagram Section
========================= */
.instagram-section {
  background: linear-gradient(0deg, #f57b1d 0%, #fb6068 37%, #b631f4 75%, #4e31f4 94%);
  padding: 120px 0 180px;
}

.instagram-section__title {
  font-size: var(--fz60);
  font-weight: 700;
  line-height: 1.17;
  text-align: center;
  color: var(--white);
}

.instagram-section__card {
  background-color: var(--white);
  border-radius: 20px;
  margin-top: 145px;
  padding: 100px 70px;
}

.instagram-section__profile-body {
  flex: 1;
}

.instagram-section__account {
  font-size: var(--fz50);
  font-weight: 700;
  line-height: 0.4;
  text-align: left;
  color: #444444;
}

.instagram-section__account-text {
  font-size: var(--fz30);
  font-weight: 400;
  line-height: 1.67;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #444444;
  margin-top: 30px;
}

.instagram-section__posts {
  margin-top: 60px;
}

.instagram-section__content {
  margin-top: 64px;
  text-align: center;
}

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

.instagram-section__list-item {
  position: relative;
  font-size: var(--fz30);
  font-weight: 500;
  line-height: 1.67;
  text-align: left;
  padding-left: 1.2em;
  color: #444444;
}

.instagram-section__list-item::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
}

.instagram-section__button-wrap {
  margin-top: 30px;
}

.instagram-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
  padding: 36px 48px;
  border-radius: 100px;
  background: linear-gradient(-90deg, #b631f4 0%, #fb6068 28%, #efea56 61%, #f57b1d 88%, #ff0509 100%);
  font-size: var(--fz30);
  font-weight: 700;
  line-height: 0.57;
  color: var(--white);
  transition: opacity 0.3s;
}

.instagram-section__button:hover {
  opacity: 0.85;
}

.instagram-section__qr {
  margin-top: 40px;
}

.instagram-section__qr img {
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 200px;
  height: 200px;
  height: auto;
}

@media only screen and (max-width: 1024px) {
  .instagram-section {
    padding: 90px 0px 120px;
  }

  .instagram-section__inner {
    max-width: 85%;
  }

  .instagram-section__card {
    margin-top: 70px;
    padding: 60px 40px;
  }

  .instagram-section__content {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 899px) {
  .instagram-section__button {
    min-width: 75%;
    padding: 24px 36px;
  }
}

@media only screen and (max-width: 767px) {
  .instagram-section {
    background: linear-gradient(-90deg, #f57b1d 0%, #fb6068 37%, #b631f4 75%, #4e31f4 94%);
    padding: 60px 0 70px;
  }

  .instagram-section__title {
    font-size: 30px;
    line-height: 1.33;
  }

  .instagram-section__card {
    max-width: 75%;
    margin: 40px auto 0;
    padding: 16px 24px 32px;
  }

  .instagram-section__account {
    font-size: 20px;
    line-height: 1;
    text-align: center;
  }

  .instagram-section__account-text {
    font-size: 19px;
    line-height: 1.56;
    text-align: justify;
    margin-top: 16px;
  }

  .instagram-section__posts {
    margin-top: 12px;
  }

  .instagram-section__content {
    margin-top: 12px;
  }

  .instagram-section__list-item {
    font-size: 18px;
    line-height: 1.56;
    margin-bottom: 4px;
  }

  .instagram-section__button-wrap {
    margin-top: 16px;
  }

  .instagram-section__button {
    min-width: 210px;
    padding: 10px 20px;
    border-radius: 26px;
    background: linear-gradient(-90deg, #b631f4 0%, #fb6068 28%, #efea56 61%, #f57b1d 88%, #ff0509 100%);
    font-size: 16px;
    line-height: 1.06;
    color: var(--white);
  }

  .instagram-section__qr {
    margin-top: 16px;
  }

  .instagram-section__qr img {
    width: 98px;
    height: 98px;
  }
}
@media only screen and (max-width: 499px) {
  #sb_instagram .sb_instagram_header .sbi_header_text,
  .sb_instagram_header .sbi_header_text {
    flex-direction: column;
  }
}
/* =========================
 FAQ Section
========================= */
.faq-section {
  background: var(--white);
  padding: 180px 0 140px;
}

.faq-section__title {
  width: fit-content;
  margin: 0 auto;
  padding: 18px 120px;

  border: 2px solid #444444;
  color: #444444;
  font-size: var(--fz60);
  font-weight: 700;
  line-height: 0.87;
  text-align: center;
}

.faq-section__list {
  margin-top: 90px;
}

.faq-section__item {
  margin-top: 50px;
}

.faq-section__question {
  position: relative;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-section__question::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  margin-top: 12px;
  background-color: rgba(77, 208, 225, 0.6000000238418579);
}

.faq-section__question-text {
  display: block;
  font-size: var(--fz50);
  font-weight: 700;
  line-height: 0.52;
  text-align: left;
  color: #444444;
  padding-left: 0.5em;
}

.faq-section__toggle {
  position: absolute;
  top: -16px;
  right: 0;
  width: 45px;
  height: 45px;
  border: 2px solid #444444;
  color: #444444;
  font-size: var(--fz50);
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-section__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-section__answer-inner {
  font-size: var(--fz30);
  font-weight: 400;
  line-height: 1.83;
  text-align: justify;
  color: #444444;
  border-bottom: 1px solid rgba(68, 68, 68, 0.6000000238418579);
  padding: 20px 0 60px 60px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.faq-section__item.is-open .faq-section__answer-inner {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 1024px) {
  .faq-section {
    padding: 120px 0 120px;
  }
}

@media only screen and (max-width: 767px) {
  .faq-section {
    padding: 60px 0 60px;
  }

  .faq-section__title {
    font-size: 30px;
    line-height: 1.73;
    border: 1px solid #444444;
    color: #444444;
    min-width: 75%;
    padding: 10px 36px;
  }

  .faq-section__list {
    margin-top: 60px;
  }

  .faq-section__question-text {
    font-size: 18px;
    line-height: 1.44;
    padding-left: 0;
    padding-right: 1.2em;
  }

  .faq-section__toggle {
    top: -4px;
    right: 0;
    width: 25px;
    height: 25px;
  }

  .faq-section__question::after {
    height: 6px;
    margin-top: 0;
  }

  .faq-section__item {
    margin-top: 45px;
  }

  .faq-section__item.is-open .faq-section__answer-inner {
    padding-top: 34px;
    padding-bottom: 42px;
    opacity: 1;
    transform: translateY(0);
  }

  .faq-section__answer-inner {
    font-size: 18px;
    line-height: 1.56;
    text-align: justify;
    padding: 25px 0 40px 12px;
  }
}

@media only screen and (max-width: 399px) {
  .faq-section__question-text {
    font-size: 17px;
  }
}

/* =========================
 Access Section
========================= */
.access-section {
  padding: 120px 0 130px;
}

.access-section__title {
  font-size: var(--fz60);
  line-height: 0.57;
  text-align: center;
  color: #444444;
}

.access-section__map {
  display: block;
  width: 100%;
  height: 800px;
  overflow: hidden;
  margin-top: 60px;
}

.access-section__info {
  background: var(--white);
  padding: 40px;
  border: 1px solid #444444;
  margin-top: 80px;
}

.access-section__name {
  font-size: var(--fz50);
  font-weight: 700;
  line-height: 0.4;
  text-align: center;
  color: #444444;
}

.access-section__info-body {
  margin-top: 60px;
}

.access-section__text {
  font-size: var(--fz25);
  font-weight: 400;
  line-height: 1.83;
  text-align: left;
  color: #444444;
}

.access-section__text + .access-section__text {
  margin-top: 20px;
}

.empty-sp {
  display: none;
}

@media only screen and (max-width: 1490px) {
  .access-section__inner {
    max-width: 85%;
  }

  .access-section__map {
    height: 600px;
    margin-top: 40px;
  }

  .access-section__info {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .access-section {
    padding: 90px 0 90px;
  }

  .access-section__map {
    height: 400px;
  }

  .access-section__info {
    padding: 30px;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .access-section {
    padding: 50px 0 50px;
  }

  .access-section__title {
    font-size: 30px;
    line-height: 1.13;
  }

  .access-section__map {
    aspect-ratio: 133 / 80;
    height: 240px;
    margin-top: 40px;
  }

  .access-section__inner {
    max-width: 95%;
    margin-top: 40px;
  }

  .access-section__info {
    padding: 20px 24px;
    margin-top: 40px;
  }

  .access-section__name {
    font-size: 20px;
    line-height: 1;
  }

  .access-section__info-body {
    margin-top: 25px;
  }

  .access-section__text {
    font-size: 18px;
    line-height: 1.56;
    text-align: left;
  }

  .access-section__text + .access-section__text {
    margin-top: 30px;
  }

  .empty-sp {
    display: inline-block;
  }
}

/* =========================
 Footer
========================= */
.site-footer {
  padding: 90px 0 200px;
  background-color: #6da1c0;
}

.site-footer__logo-wrap {
  display: flex;
  justify-content: center;
}

.site-footer__logo {
  display: block;
  width: 100px;
  height: auto;
}

.site-footer__logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.site-footer__logo-link:hover {
  opacity: 0.8;
}

.site-footer__name {
  font-size: var(--fz50);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-top: 12px;
}

.site-footer__nav {
  margin-top: 70px;
}

.site-footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.site-footer__nav-link {
  font-size: var(--fz20);
  font-weight: 400;
  text-align: center;
  color: var(--white);
  transition: opacity 0.3s;
}

.site-footer__nav-link:hover {
  opacity: 0.7;
}

.site-footer__copyright {
  font-size: var(--fz20);
  font-weight: 400;
  text-align: center;
  color: var(--white);
  margin-top: 8px;
}

@media only screen and (max-width: 1024px) {
  .site-footer {
    padding: 60px 0 170px;
  }

  .site-footer__nav {
    margin-top: 40px;
  }

  .site-footer__logo {
    width: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .site-footer {
    padding: 32px 0 100px;
  }

  .site-footer__logo {
    width: 60px;
  }

  .site-footer__name {
    font-size: 24px;
    margin-top: 8px;
  }

  .site-footer__nav {
    margin-top: 30px;
  }

  .site-footer__nav-list {
    gap: 24px;
  }

  .site-footer__nav-link {
    font-size: 14px;
  }

  .site-footer__copyright {
    font-size: 14px;
    margin-top: 16px;
  }
}

/* =========================
 Fixed CTA
========================= */

.fixed-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.fixed-cta.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-cta-inner {
  padding-block: 12px;
  text-align: center;
}

.fixed-cta-text {
  font-size: var(--fz30);
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}

.fixed-cta-buttons {
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 12px;
}

.fixed-cta-button {
  width: 100%;
  max-width: 240px;
  min-height: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  border-radius: 10px;
  transition: opacity 0.3s;
}

.fixed-cta-button:hover {
  opacity: 0.85;
}

.fixed-cta-button--contact {
  background-color: var(--blue);
}

.fixed-cta-button--reserve {
  background-color: var(--green);
}

.fixed-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}

.fixed-cta-arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-cta-label {
  font-size: var(--fz30);
  font-weight: 500;
  line-height: 1.4;
}

/* 固定バナー分の余白 */
body.has-fixed-cta {
  padding-bottom: 100px;
}

@media only screen and (max-width: 1499px) {
  .fixed-cta-button {
    min-height: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .fixed-cta-button {
    padding: 6px 12px;
    gap: 16px;
  }

}

@media only screen and (max-width: 899px) {
  .fixed-cta-button {
    gap: 12px;
  }

  body.has-fixed-cta {
    padding-bottom: 70px;
  }
}

@media only screen and (max-width: 640px) {
  .fixed-cta-inner {
    max-width: 95%;
    padding-block: 14px;
  }

  .fixed-cta-button {
    flex-direction: row-reverse;
    gap: 20px;
  }

  .fixed-cta-arrow {
    width: 16px;
  }

  .fixed-cta-buttons {
    max-width: 100%;
    gap: 8px;
  }

  body.has-fixed-cta {
    padding-bottom: 50px;
  }
}

/* =========================
 Top Button
========================= */

.top-icon {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 1000;
  width: 70px;
  height: 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.top-icon.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* ホバー */
.top-icon:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 1499px) {
  .top-icon {
    bottom: 90px;
  }
}

@media only screen and (max-width: 899px) {
  .top-icon {
    bottom: 80px;
  }
}

@media only screen and (max-width: 640px) {
  .top-icon {
    right: 12px;
    bottom: 90px;
    width: 36px;
    height: 36px;
  }
}
