@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #4a2b13;
  --color-white: #ffffff;
  --color-orange: #f4991a;
  --color-lightorange: #f7bc69;
  --color-gray: #f9f5f0;
  --color-beige: #f2ead3;
  --color-lightbeige: #f7f3ed;
  --color-blue: #699ef7;
  /*カレントカラー*/
  --color-current: #f4991a;
  /*テキストリンクカラー*/
  --color-textlink:#f4991a;
  /*必須ボタンカラー*/
  --color-required: #f4991a;
  /*任意ボタンカラー*/
  --color-optional: #f4991a;
  /*ラジオボタンカラー*/
  --color-radio: #f4991a;
  /*チェックボタンカラー*/
  --color-check: #f4991a;
  /*==============================
      フォントファミリー
  ==============================*/
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-kiwi: "Kiwi Maru", serif;
  --font-family-zen:"Zen Maru Gothic", sans-serif;
  --font-family-body: "Kiwi Maru", serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.04em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #4a2b13;
  --color-white: #ffffff;
  --color-orange: #f4991a;
  --color-lightorange: #f7bc69;
  --color-gray: #f9f5f0;
  --color-beige: #f2ead3;
  --color-lightbeige: #f7f3ed;
  --color-blue: #699ef7;
  /*カレントカラー*/
  --color-current: #f4991a;
  /*テキストリンクカラー*/
  --color-textlink:#f4991a;
  /*必須ボタンカラー*/
  --color-required: #f4991a;
  /*任意ボタンカラー*/
  --color-optional: #f4991a;
  /*ラジオボタンカラー*/
  --color-radio: #f4991a;
  /*チェックボタンカラー*/
  --color-check: #f4991a;
  /*==============================
      フォントファミリー
  ==============================*/
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-kiwi: "Kiwi Maru", serif;
  --font-family-zen:"Zen Maru Gothic", sans-serif;
  --font-family-body: "Kiwi Maru", serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.04em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*ロゴのホバー処理*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 1rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 1em;
  font-size: 1.7rem;
  line-height: 1;
}
.breadcrumb__item {
  display: flex;
}
.breadcrumb__item::after {
  content: ">";
  margin-left: 1em;
  pointer-events: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-orange);
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  padding-inline: 3rem;
  padding-block: 1.2rem 1.9rem;
}
.header .gnav__list {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}
.header .gnav__item {
  line-height: 1;
}
.header .gnav__item a {
  font-size: 1.7rem;
}
.header .util__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.header .util__item address {
  margin-right: 0.7rem;
}
.header .util__item address a {
  display: flex;
  gap: 0.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--color-font);
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
.header .util__item address a::before {
  content: "";
  display: block;
  aspect-ratio: 16/21;
  width: 1.6rem;
  background: url(../img/common/icon_map.png) top left/contain no-repeat;
}
.header .util__item .com-tel {
  margin-right: 0.3rem;
}

/*==============================
    各種ホバー処理
==============================*/
.header address a {
  transition: all 0.3s;
}
.header address a:hover {
  opacity: 0.5;
}
.header .gnav__item a {
  transition: all 0.3s;
}
.header .gnav__item a:hover {
  opacity: 0.5;
}
.header .util__item .ig,
.header .util__item .mail {
  transition: all 0.3s;
}
.header .util__item .ig:hover,
.header .util__item .mail:hover {
  opacity: 0.5;
}

.reserve-btn {
  transition: all 0.3s;
}
.reserve-btn::before {
  transition: all 0.3s;
}
.reserve-btn:hover {
  background-color: var(--color-white);
  color: var(--color-font);
}
.reserve-btn:hover::before {
  background: url(../img/common/icon_reserve_b.png) top left/contain no-repeat;
}

.com-btn {
  transition: all 0.3s;
}
.com-btn::after {
  transition: all 0.3s;
}
.com-btn:hover {
  background-color: var(--color-white);
  color: var(--color-font);
}
.com-btn:hover::after {
  background: url(../img/common/arw_btn_br.png) top left/contain no-repeat;
}

.follow_btn {
  transition: all 0.3s;
}
.follow_btn:hover {
  bottom: 7rem;
  opacity: 0.7;
}

.top-contact .mail,
.top-contact address a {
  transition: all 0.3s;
}
.top-contact .mail:hover,
.top-contact address a:hover {
  opacity: 0.5;
}

.about-equipment__item a {
  transition: all 0.3s;
}
.about-equipment__item a:hover {
  opacity: 0.5;
}

.paginated__link:hover {
  opacity: 0.5;
}

/*==============================
    メインビジュアル
==============================*/
.mv__title {
  top: clamp(163px, 12.76vw, 245px);
  right: calc(50% - clamp(9px, 0.73vw, 14px));
  padding: clamp(77px, 6.04vw, 116px) clamp(51px, 3.96vw, 76px) clamp(76px, 5.94vw, 114px) clamp(37px, 2.86vw, 55px);
}
.mv__title .main {
  font-size: clamp(31px, 2.4vw, 46px);
  padding-inline: clamp(13px, 1.04vw, 20px);
  line-height: clamp(40px, 3.13vw, 60px);
  padding-bottom: calc(clamp(16px, 1.25vw, 24px) - (1lh - 1em) / 2);
  margin-bottom: calc(clamp(13px, 1.04vw, 20px) - (clamp(23px, 1.77vw, 34px) - clamp(16px, 1.25vw, 24px)) / 2);
}
.mv__title .line::before {
  bottom: calc(100% + clamp(7px, 0.52vw, 10px));
  width: clamp(56px, 4.38vw, 84px);
}
.mv__title .line::after {
  height: clamp(11px, 0.83vw, 16px);
  bottom: clamp(5px, 0.36vw, 7px);
}
.mv__title .grad {
  font-size: clamp(33px, 2.6vw, 50px);
}
.mv__title .sub {
  font-size: clamp(16px, 1.25vw, 24px);
  padding-inline: clamp(20px, 1.56vw, 30px);
}

/*==============================
    サブビジュアル
==============================*/
.sv {
  height: clamp(360px, 28.13vw, 540px);
}
.sv__title {
  line-height: 1;
  font-size: clamp(31px, 2.4vw, 46px);
  padding: clamp(13px, 1.04vw, 20px) clamp(24px, 1.88vw, 36px);
  min-width: 30rem;
  text-align: center;
}
.sv__title::before {
  width: clamp(56px, 4.38vw, 84px);
  bottom: calc(100% + clamp(10px, 0.78vw, 15px));
}

/*==============================
    共通タイトル
==============================*/
/*==============================
    共通ボタン
==============================*/
.com-btn,
.contact .com-btn {
  width: 31rem;
  min-height: 5.4rem;
}

.reserve-btn {
  width: 20rem;
  min-height: 5rem;
}

/*==============================
    共通テーブル
==============================*/
/*==============================
    TOP
==============================*/
/*受付時間・営業時間*/
.top-info {
  padding-block: 7.8rem 10.5rem;
}
.top-info .reception-table {
  width: 52.2rem;
}

/*一人ひとりに合わせたオーダーメイド施術*/
.top-about {
  padding-block: 10rem 12.2rem;
}
.top-about__title {
  margin-bottom: 5.3rem;
}
.top-about__image {
  width: 51rem;
  flex-shrink: 0;
}
.top-about__image::before {
  width: 11.5rem;
}

/*こんな症状ございませんか？*/
.top-symptoms {
  padding-block: 8.6rem 10.8rem;
}
.top-symptoms .com-title01 {
  margin-bottom: 27.3rem;
}
.top-symptoms__image {
  width: 34.5rem;
}
.top-symptoms .etc {
  top: calc(100% + 2.5rem);
  left: calc(50% + 14.5rem);
}
.top-symptoms__item {
  position: absolute;
  line-height: 1;
}
.top-symptoms__item span {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.top-symptoms__item:first-child {
  top: 22rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/top/serif01.png) top left/100% 100% no-repeat;
}
.top-symptoms__item:first-child span {
  padding: 2.7rem 2.7rem 2.3rem 2.7rem;
}
.top-symptoms__item:first-child span::before {
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  aspect-ratio: 145/118;
  width: 14.5rem;
  background: url(../img/top/no1.png) top left/contain no-repeat;
}
.top-symptoms__item:nth-child(2) {
  top: 27rem;
  right: calc(50% + 17.5rem);
  background: url(../img/top/serif02.png) top left/100% 100% no-repeat;
}
.top-symptoms__item:nth-child(2) span {
  padding: 2.4rem 6.3rem 2.4rem 6.4rem;
}
.top-symptoms__item:nth-child(2) span::before {
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  aspect-ratio: 145/118;
  width: 14.5rem;
  background: url(../img/top/no2.png) top left/contain no-repeat;
}
.top-symptoms__item:nth-child(3) {
  background: url(../img/top/serif03.png) top left/100% 100% no-repeat;
  top: 27rem;
  left: calc(50% + 17.5rem);
}
.top-symptoms__item:nth-child(3) span {
  padding: 2.4rem 4.3rem 2.4rem 4.3rem;
}
.top-symptoms__item:nth-child(3) span::before {
  position: absolute;
  z-index: -1;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  aspect-ratio: 145/118;
  width: 14.5rem;
  background: url(../img/top/no3.png) top left/contain no-repeat;
}
.top-symptoms__item:nth-child(4) {
  background: url(../img/top/serif04.png) top left/100% 100% no-repeat;
  bottom: 10.5rem;
  left: 0;
}
.top-symptoms__item:nth-child(4) span {
  padding: 2.5rem 4.1rem 2.4rem 4.1rem;
}
.top-symptoms__item:nth-child(5) {
  background: url(../img/top/serif05.png) top left/100% 100% no-repeat;
  bottom: 10.5rem;
  right: 0;
}
.top-symptoms__item:nth-child(5) span {
  padding: 2.5rem 3.5rem 2.5rem 4.1rem;
}
.top-symptoms__item:nth-child(6) {
  background: url(../img/top/serif03.png) top left/100% 100% no-repeat;
  bottom: 0;
  left: 6.3rem;
}
.top-symptoms__item:nth-child(6) span {
  padding: 2.4rem 3.8rem 2.5rem 3.8rem;
}
.top-symptoms__item:last-of-type {
  background: url(../img/top/serif07.png) top left/100% 100% no-repeat;
  bottom: 0;
  right: 5rem;
}
.top-symptoms__item:last-of-type span {
  padding: 2.5rem 5.6rem 2.5rem 5.5rem;
}

/*そんな方はたまい鍼灸院へご相談ください*/
.top-consultation {
  padding-block: 14rem 8.2rem;
}
.top-consultation__title {
  margin-bottom: 7.5rem;
}
.top-consultation__title::before {
  width: 9rem;
  top: -4.5rem;
  left: -6.5rem;
}
.top-consultation__title::after {
  width: 15.8rem;
  right: -8.7rem;
  top: 0.7rem;
}
.top-consultation__text {
  width: 25.2rem;
  min-height: 9rem;
}
.top-consultation__image {
  width: 22rem;
  aspect-ratio: 1;
}

/*お気軽にご連絡ください*/
.top-contact {
  padding-block: 0 14rem;
}
.top-contact::after {
  width: 55.3rem;
  left: calc(50% + 30rem);
}
.top-contact .com-inbox {
  width: 86rem;
  padding: 6.1rem 8.6rem 9rem 9rem;
}
.top-contact .reserve-btn {
  width: 31rem;
  min-height: 5.4rem;
}
.top-contact__wrap {
  align-items: flex-end;
}
.top-contact__inner::before {
  width: 10.8rem;
  bottom: -10.9rem;
  right: calc(100% + 4rem);
}
.top-contact__inner::after {
  bottom: -11.7rem;
  right: -13.3rem;
  width: 16.9rem;
}
.top-contact__inner p {
  margin-right: -1.7em;
}

/*お知らせ・ブログ*/
.top-news {
  padding-block: 8.7rem 9.3rem;
}
.top-news .com-title01 {
  margin-bottom: 5rem;
}

/*map*/
.top-map {
  height: 42rem;
}

/*==============================
    当院について
==============================*/
/*店内図*/
.about-floor {
  padding-block: 7.2rem 12.6rem;
}
.about-floor__image {
  width: 92.2rem;
}

/*ギャラリー*/
.about-gallery {
  padding-block: 9rem 9.4rem;
}
.about-gallery .com-title01 {
  margin-bottom: 5.4rem;
}
.about-gallery__list {
  max-height: 56rem;
}

/*設備紹介*/
.about-equipment {
  padding-block: 12.4rem 10rem;
}
.about-equipment .com-title01 {
  margin-bottom: 4.2rem;
}

/*==============================
    設備詳細
==============================*/
.about-equipment-detail {
  padding-block: 10rem;
}
.about-equipment-detail__image {
  max-width: 600px;
  margin-inline: auto;
}
.about-equipment-detail__title {
  margin-top: 7rem;
}

/*==============================
    施術メニュー・料金
==============================*/
.menu-section {
  padding-block: 10rem 11rem;
}
.menu-section__inner {
  padding: 9rem 10rem 11.7rem 10rem;
}
.menu-section dl {
  gap: max(2rem, 20px);
  align-items: center;
}
.menu-section dl dd {
  white-space: nowrap;
  text-align: right;
}

/*==============================
    施術の流れ
==============================*/
.flow-section {
  padding-block: 10.4rem 10rem;
}
.flow-section::before {
  left: calc(50% + 31rem);
}
.flow-section__item {
  padding: 4rem 6.2rem 4rem 7rem;
  align-items: center;
}
.flow-section__image {
  width: 20rem;
  flex-shrink: 0;
}
.flow-section__text {
  width: calc(100% - 5rem - 20rem);
}
.flow-section .reserve-btn {
  width: 31rem;
}

/*==============================
    症状紹介
==============================*/
/*こんなお悩みございませんか？*/
.symptoms-worry {
  padding-block: 8rem 4.3rem;
}
.symptoms-worry .com-title01 {
  margin-bottom: 21.8rem;
}
.symptoms-worry .com-inbox {
  padding-bottom: 7.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.symptoms-worry .com-inbox::before {
  left: -3.7rem;
  bottom: 0;
  width: 113.6rem;
}
.symptoms-worry__item {
  text-align: center;
  position: absolute;
  background: url(../img/symptoms/worry_serif.png) top left/100% 100% no-repeat;
}
.symptoms-worry__item span:not(.inline-block) {
  margin-block: calc((1em - 1lh) / 2);
}
.symptoms-worry__item:first-child {
  padding: 4.1rem 3.2rem 5.6rem 3.2rem;
  top: 12.6rem;
  right: calc(50% + 2rem);
}
.symptoms-worry__item:nth-child(2) {
  padding: 4.1rem 4.9rem 5.6rem 4.8rem;
  bottom: 21.7rem;
  left: 0;
}
.symptoms-worry__item:nth-child(3) {
  padding: 4.1rem 6.1rem 4.9rem 5.7rem;
  bottom: 5rem;
  right: calc(50% + 14.7rem);
}
.symptoms-worry__item:nth-child(4) {
  padding: 4.1rem 3.9rem 5.6rem 3.7rem;
  top: 12.6rem;
  left: calc(50% + 2rem);
}
.symptoms-worry__item:nth-child(5) {
  padding: 4.1rem 8.3rem 5.6rem 8.3rem;
  bottom: 21.7rem;
  right: 0;
}
.symptoms-worry__item:last-child {
  padding: 4.1rem 6rem 5.6rem 6rem;
  bottom: 5rem;
  left: calc(50% + 14.7rem);
}

/*症例紹介*/
.symptoms-section {
  padding-block: 13rem 10rem;
}
.symptoms-section__customer {
  justify-content: space-between;
  align-items: center;
}
.symptoms-section__customer .symptoms-section__text::before {
  right: 100%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.symptoms-section__teacher {
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.symptoms-section__teacher .symptoms-section__text::before {
  left: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.symptoms-section__image {
  flex-shrink: 0;
}
.symptoms-section__text {
  padding: 5rem 5.5rem 5rem 6rem;
  width: 87rem;
  flex-shrink: 0;
}
.symptoms-section__text::before {
  top: 50%;
  transform: translateY(-50%);
}

/*==============================
    アクセス・店舗情報
==============================*/
/*ページ内リンク*/
.access-link {
  padding-block: 9rem;
}
.access-link .com-btn {
  width: 34rem;
}

/*店舗概要*/
.access-info {
  padding-block: 12.2rem 9rem;
}
.access-info .com-table {
  width: 52rem;
}
.access-info .com-table th {
  width: 17rem;
}
.access-info__image {
  width: 52rem;
}
.access-info .map {
  height: 36rem;
}

/*駐車場情報*/
.access-parking {
  padding-block: 12.2rem 9.2rem;
}
.access-parking::after {
  left: calc(50% + 30rem);
}
.access-parking__wrap {
  justify-content: center;
}
.access-parking__image {
  width: 52rem;
}

/*スタッフ紹介*/
.access-staff {
  padding-block: 14rem 10rem;
}
.access-staff__image {
  width: 52rem;
  flex-shrink: 0;
}
.access-staff__text {
  width: calc(100% - 52rem - 4rem);
}

/*==============================
    お知らせ一覧
==============================*/
.news {
  padding-block: 10rem;
}

/*お知らせ共通部分*/
.com-news__item a {
  transition: all 0.3s;
}
.com-news__item a:hover {
  transition: opacity 0.3s;
}
.com-news__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.news-detail {
  padding-block: 10rem;
}
.news-detail__box {
  padding: 8rem 7rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 10rem;
}
.contact .com-table {
  margin-bottom: 3rem;
}
.contact .com-table th {
  width: 35%;
  padding-inline: 3rem 2rem;
  vertical-align: middle;
}
.contact .com-btn {
  margin-inline: auto;
  margin-top: 5rem;
  width: 30rem;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.contact .contact-submits-wrap .com-btn {
  margin-inline: 0;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-block: 10rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 10rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 10rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.site__item a::after {
  width: 1rem;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 10rem;
}
/*==============================
    フッター
==============================*/
.footer {
  padding-block: 8rem 7.4rem;
}
.footer__inner {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
  gap: 2.3rem 8rem;
}
.footer-nav__item {
  line-height: 1;
  font-size: 1.5rem;
}
.footer-nav__item a {
  transition: all 0.3s;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer-nav__link.current {
  position: relative;
}
.footer-nav__link.current::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 0.9rem);
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.2rem;
  background-color: var(--color-orange);
}
.footer__box {
  height: 100%;
}
.footer small {
  margin-top: 9.7rem;
}