@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================================
  切り替え用
===============================================*/
html {
  font-size: clamp(8px, 2.2222222222vw, 10px);
}

.sp-none {
  display: none !important;
}

.com-table:not(.com-table--noblock) table,
.com-table:not(.com-table--noblock) table tbody,
.com-table:not(.com-table--noblock) table th,
.com-table:not(.com-table--noblock) table tr,
.com-table:not(.com-table--noblock) table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
/*===============================================
  詳細ページ前後
===============================================*/
/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  height: 8rem;
}
#header .header__logo img {
  height: 5rem;
}

/*===============================================
  footer
===============================================*/
#footer::before {
  height: 6rem;
  background-size: 2.4rem;
}
#footer .footer__logo {
  margin-bottom: 3rem;
}
#footer .footer__logo img {
  height: 16rem;
  aspect-ratio: 12/16;
  -o-object-fit: contain;
     object-fit: contain;
  background: var(--color-white);
  border-radius: 0 0 1rem 1rem;
}
#footer .footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1.5rem;
}
#footer .footer__schedule {
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .footer__schedule dd {
  margin-right: 2rem;
}
#footer .footer__schedule dd:last-of-type {
  margin-right: 0;
}
#footer .footer__tel {
  margin-top: 1rem;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  padding-top: 5rem;
}
.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding-block: 1px;
  background: var(--color-sky);
}
.footer-nav__item {
  background: var(--color-blue);
}
.footer-nav__item:first-of-type:nth-last-of-type(2n + 1) {
  grid-column: span 2;
}
.footer-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  padding: 2rem 1em;
}
.footer-nav__link::after {
  content: "";
  display: block;
  width: 0.6rem;
  aspect-ratio: 3/5;
  background: url(../img/common/arrow.svg) no-repeat center/contain;
}

/*コピーライト
-----------------------------*/
.copy {
  padding-block: 2rem;
}
/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  right: 1rem;
  bottom: 1rem;
}

/*サイドボタン
-----------------------------*/
#side {
  left: 1rem;
  bottom: 1rem;
}

/*===============================================
  visual
===============================================*/
/*共通
-----------------------------*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  justify-content: center;
  height: 52rem;
}
.visual__main::before {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: url(../img/visual/mv_bg01.jpg) no-repeat center bottom/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.visual__main::after {
  content: "";
  width: 100%;
  height: 55%;
  -webkit-mask: linear-gradient(to top, #fff 85%, transparent 100%);
          mask: linear-gradient(to top, #fff 85%, transparent 100%);
  background: url(../img/visual/mv_bg02.jpg) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.visual__catch--main {
  width: 90%;
  max-width: 50rem;
  background: rgba(255, 255, 255, 0.9);
  gap: 1.2rem 0.8rem;
  padding: 3rem 2rem;
  border-radius: 100vh;
}
.visual__catch--main img {
  height: 2.4rem;
}
.visual__catch--main .main {
  width: 100%;
  text-align: center;
}
.visual__catch--main .main img {
  height: 3.6rem;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: 24rem;
}
.visual__catch--sub {
  font-size: min(var(--font-size-h2), 7.1112vw);
  padding: 1.5rem;
  border-radius: 1rem;
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-block: 1.5rem;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb + .section {
  padding-top: 10rem;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: 8rem 0;
}
.section--bg {
  background-size: 2.4rem;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel__num {
  font-size: 4rem;
}
.com-tel__num::before {
  width: 3rem;
}
/*ボタン
-----------------------------*/
.com-btn {
  width: 32rem;
  height: 7rem;
  font-size: 1.6rem;
  margin-inline: auto;
}
.com-btn::after {
  width: 2rem;
}

/*テーブル
-----------------------------*/
.com-table tr th,
.com-table tr td {
  padding: 1.5em;
  padding: 1em;
}
.com-table--noblock {
  border-block: solid 1px var(--color-blue);
}
.com-table--noblock tr th {
  width: 8em;
  border-bottom: solid 1px var(--color-white);
}
.com-table--noblock tr td {
  border-bottom: solid 1px var(--color-blue);
}
.com-table--noblock tr:last-of-type th,
.com-table--noblock tr:last-of-type td {
  border-bottom: none;
}
.com-table:not(.com-table--noblock) tr td {
  border-inline: solid 1px var(--color-light-blue);
}
.com-table:not(.com-table--noblock) tr:last-of-type td {
  border-bottom: solid 1px var(--color-light-blue);
}

/*テキストボックス
-----------------------------*/
.com-text br:not(.pc-none) {
  display: none;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  row-gap: 1.5rem;
}
.com-title01 > span {
  word-break: keep-all;
}
.com-title01--top {
  font-size: 4.5rem;
  row-gap: 1.8rem;
}
.com-title01--top::before {
  width: calc(100% + 10rem);
  max-width: 98vw;
  height: 6.4rem;
}

/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*ご挨拶
-----------------------------*/
.top-greeting:has(+ .top-about) {
  padding-bottom: 2rem;
}
.top-greeting__title {
  margin-bottom: 5rem;
}
.top-greeting__heading {
  font-size: min(2.8rem, 6.2223vw);
  margin-bottom: 3rem;
}
.top-greeting__heading > span {
  line-height: 1.75;
}
.top-greeting__heading::after {
  width: 12rem;
  aspect-ratio: 240/207;
  bottom: -4rem;
  right: -1rem;
}
.top-greeting__body {
  padding-block: 3rem;
}
.top-greeting__body::before {
  width: 100vw;
  right: -5vw;
  background-size: 2.4rem;
}
.top-greeting__images {
  width: 96vw;
  padding-top: 3rem;
  margin-inline: -3vw;
}
.top-greeting__image {
  width: 64%;
}
.top-greeting__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-greeting__image--lt img {
  outline: solid 0.3rem var(--color-white);
  outline-offset: -0.3rem;
}
.top-greeting__image--rb {
  margin-top: -4rem;
  margin-left: auto;
}
.top-greeting__image img {
  border-radius: 2rem;
}

/*当院について
-----------------------------*/
.top-about {
  padding-bottom: 0;
}
.top-about__btn {
  margin-top: 4rem;
}
.top-about__image {
  margin-top: 6.4rem;
  overflow: hidden;
}
.top-about__image img {
  aspect-ratio: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about__image::after {
  content: "";
  height: 28vw;
  aspect-ratio: 325/272;
  background: url(../img/common/deco03.png) no-repeat right bottom/contain;
  position: absolute;
  right: 2.5%;
  bottom: -1vw;
  z-index: 1;
  transform: scale(-1, 1);
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr {
  padding-block: 6rem;
}
.top-bnr__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 4rem;
}
.top-bnr__inner > * {
  width: 100%;
}
.top-bnr__link {
  display: grid;
  grid-template-columns: 10rem 1fr;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  background: var(--color-white);
  padding: 1rem;
  border-radius: 100vh;
  box-shadow: 0.4rem 0.4rem rgba(159, 214, 247, 0.7);
  margin-bottom: 2rem;
  position: relative;
  z-index: 0;
}
.top-bnr__link:last-of-type {
  margin-bottom: 0;
}
.top-bnr__link::after {
  content: "";
  width: 3.2rem;
  aspect-ratio: 1;
  background: url(../img/common/arrow_circle.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  z-index: -1;
}
.top-bnr__balloon {
  font-size: var(--font-size-h4);
  order: 1;
}
.top-bnr__image {
  order: 0;
}
.top-bnr__box {
  border-radius: 2rem;
  overflow: hidden;
  padding-bottom: max(4rem, 21.5rem - 25vw);
  background-size: auto 12rem;
  background-position: right 1rem bottom;
}
.top-bnr__box::before {
  font-size: 7rem;
  left: 1rem;
  bottom: -0.05em;
}
.top-bnr__heading {
  font-size: var(--font-size-h4);
  padding: 1.25em 0;
  margin-bottom: 3rem;
}
.top-bnr__heading > span::before {
  content: "";
  width: calc(100% + 6rem);
  height: 2.4rem;
  background: url(../img/index/deco_contact-ttl-l.png) no-repeat left bottom/contain, url(../img/index/deco_contact-ttl-r.png) no-repeat right bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc((1lh - 1em) / 2);
  z-index: -2;
}
.top-bnr__body {
  line-height: 3;
  padding-inline: 0.5rem;
  margin-inline: 2rem;
  margin-bottom: 2.4rem;
  background: linear-gradient(to right, transparent 2px, var(--color-white) 2px, var(--color-white) 3px) repeat-x left bottom/3px, linear-gradient(to top, var(--color-sky) 1px, var(--color-white) 1px, var(--color-white) 4.5rem) repeat-y left bottom/auto 4.5rem;
}
.top-bnr__body strong {
  font-size: var(--font-size-h6);
  line-height: 2.5;
}
.top-bnr__memo {
  font-size: var(--font-size-sm);
}
.top-bnr__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
  padding: 3rem 2rem;
}
/*===============================================
  当院の特徴
===============================================*/
/*整体院ルルドについて
-----------------------------*/
.feature-about__image {
  margin-top: 6rem;
}
.feature-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-about__image img {
  border-radius: 1.2rem;
}
.feature-about__image::before {
  width: 20rem;
  background-size: 1.6rem;
  top: -3rem;
  left: -4rem;
}

/*施術方法とアプローチ
-----------------------------*/
.feature-approach__image {
  margin-top: 6rem;
}
.feature-approach__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-approach__image img {
  border-radius: 1.2rem;
}
.feature-approach__image::before {
  width: 20rem;
  top: -3rem;
  right: -4rem;
}

/*あなたの健康を共にサポート
-----------------------------*/
.feature-support__image {
  margin-top: 6rem;
}
.feature-support__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-support__image img {
  border-radius: 1.2rem;
}
.feature-support__image::before {
  width: 20rem;
  background-size: 1.6rem;
  top: -3rem;
  left: -4rem;
}

/*===============================================
  メニュー
===============================================*/
/*メニュー
-----------------------------*/
.menu-about__box {
  padding-top: 4rem;
}
.menu-about__heading {
  border-radius: 2rem;
  padding: 1.7rem 4rem;
  margin-bottom: 3rem;
}
.menu-about__heading::after {
  aspect-ratio: 1;
  width: 1.2rem;
}
.menu-about__list {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  padding: 0 2.4rem 3rem;
}
.menu-about__list::before {
  height: calc(100% + 5.6rem);
  border-radius: 2rem;
}
.menu-about__list::after {
  width: calc(100% + 3rem);
  height: 12rem;
  bottom: -8rem;
  z-index: 1;
}
.menu-about__label {
  border-radius: 1.2rem 1.2rem 0 0;
  padding-block: 1.7rem;
}
.menu-about__label::after {
  aspect-ratio: 1;
  width: 1.2rem;
}
.menu-about__body {
  border-radius: 0 0 1.2rem 1.2rem;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}
.menu-about__body:last-of-type {
  margin-bottom: 0;
}
.menu-about__fee {
  font-size: var(--font-size-h4);
}
.menu-about__fee .num {
  font-size: 2em;
  padding-bottom: 0.1em;
  margin: -1rem 0 calc(-0.1em - 0.3rem);
}

/*よくあるご質問
-----------------------------*/
.menu-faq__item {
  padding: 3rem 2.4rem;
  border-radius: 1.2rem;
}
.menu-faq__heading {
  font-size: var(--font-size-h5);
}
.menu-faq__heading, .menu-faq__body {
  grid-template-columns: 4rem 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

/*===============================================
  患者様の声
===============================================*/
/*患者様の声
-----------------------------*/
.voice-list__items::after {
  width: calc(100% - 2.4rem);
  height: 8.8rem;
  bottom: 100%;
  z-index: 1;
}
.voice-list__item {
  padding: 3rem 2.4rem;
  border-radius: 1.2rem;
}
.voice-list__heading .label {
  line-height: 1.94445;
  border-radius: 1rem;
}

/*===============================================
  アクセス
===============================================*/
/*院概要
-----------------------------*/
.access-info__map {
  height: 32rem;
  margin-top: 4rem;
}

/*===============================================
  お問い合わせ
===============================================*/
.contact-form .contact-submits-wrap > * {
  margin: 0 auto 2rem;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
.contact-complete__text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  padding: 3rem 2.4rem;
  border-radius: 1.2rem;
}

/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__item {
  margin-bottom: 1.2rem;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}

/*===============================================
  404エラー
===============================================*/