@charset "UTF-8";
@import url(all.css);

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #000000;
  --color-white: #ffffff;
  --color-brown: #6d5954;
  --color-beige: #e5e1dc;
  --color-lightbeige: #f5f3f1;
  /*カレントカラー*/
  --color-current: #000000;
  /*テキストリンクカラー*/
  --color-textlink: #6d5954;
  /*必須ボタンカラー*/
  --color-required: #6d5954;
  /*任意ボタンカラー*/
  --color-optional: #6d5954;
  /*ラジオボタンカラー*/
  --color-radio: #6d5954;
  /*チェックボタンカラー*/
  --color-check: #6d5954;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Kaku Gothic New", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.06em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #000000;
  --color-white: #ffffff;
  --color-brown: #6d5954;
  --color-beige: #e5e1dc;
  --color-lightbeige: #f5f3f1;
  /*カレントカラー*/
  --color-current: #000000;
  /*テキストリンクカラー*/
  --color-textlink: #6d5954;
  /*必須ボタンカラー*/
  --color-required: #6d5954;
  /*任意ボタンカラー*/
  --color-optional: #6d5954;
  /*ラジオボタンカラー*/
  --color-radio: #6d5954;
  /*チェックボタンカラー*/
  --color-check: #6d5954;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Zen Kaku Gothic New", sans-serif;
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.8rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.06em;
}

/*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;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 5rem 0;
}

.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 0.25em;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-brown);
}

.breadcrumb__item {
  display: flex;
}

.breadcrumb__item::after {
  content: "＞";
  margin-left: 0.25em;
  pointer-events: none;
}

.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb__item:last-child::after {
  display: none;
}

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

.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb__item a {
  transition: all 0.3s;
}

.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}

.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*ページネーション*/
.paginated__link {
  transition: all 0.3s;
}

.paginated:hover {
  opacity: 0.5;
}

.pagenation a {
  transition: all 0.3s;
}

.pagenation a:hover {
  opacity: 0.5;
}

/*ヘッダーナビ*/
.gnav__item a {
  transition: all 0.3s;
}

.gnav__item a:hover {
  transition: opacity 0.3s;
}

.gnav__item a:hover:hover {
  opacity: 0.5;
}

/*共通ボタン*/
.com-btn {
  transition: all 0.3s;
}

.com-btn:hover {
  background-color: var(--color-white);
  color: var(--color-brown);
}

.line-btn,
.ig-btn {
  transition: all 0.3s;
}

.line-btn:hover,
.ig-btn:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
}

.official-btn {
  transition: all 0.3s;
}

.official-btn::before {
  transition: all 0.3s;
}

.official-btn:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
}

.official-btn:hover::before {
  background: url(../img/common/icon-link-w.png) top left/contain no-repeat;
}

.reserve-btn {
  transition: all 0.3s;
}

.reserve-btn::before {
  transition: all 0.3s;
}

.reserve-btn:hover {
  background-color: var(--color-white);
  color: var(--color-brown);
}

.reserve-btn:hover::before {
  background: url(../img/common/icon-carender-b.png) top left/contain no-repeat;
}

.top-link__item a {
  transition: all 0.3s;
}

.top-link__item a:hover {
  opacity: 0.5;
}

.top-news__btn {
  transition: all 0.3s;
}

.top-news__btn:hover {
  opacity: 0.5;
  gap: 2.5rem;
}

/*テキストリンク*/
.com-textlink {
  transition: all 0.3s;
}

.com-textlink:hover {
  transition: opacity 0.3s;
}

.com-textlink:hover:hover {
  opacity: 0.5;
}

/*お問い合わせ完了（トップへ戻る）*/
.complete__btn {
  transition: all 0.3s;
}

.complete__btn:hover {
  transition: opacity 0.3s;
}

.complete__btn:hover:hover {
  opacity: 0.5;
}

/*追従ボタン*/
.follow_btn a {
  transition: all 0.3s;
}

.follow_btn a::before {
  transition: all 0.3s;
}

.follow_btn .reserve:hover {
  background-color: var(--color-white);
  color: var(--color-brown);
}

.follow_btn .reserve:hover::before {
  background: url(../img/common/icon-carender-b.png) top left/contain no-repeat;
}

.follow_btn .pagetop:hover {
  background-color: var(--color-brown);
}

.follow_btn .pagetop:hover::before {
  background: url(../img/common/pagetop-arw-w.png) top left/contain no-repeat;
}

/*フッターナビ*/
.footer-nav__item a {
  transition: all 0.3s;
}

.footer-nav__item a:hover {
  opacity: 0.5;
}

.footer-sub__item a {
  transition: all 0.3s;
}

.footer-sub__item a:hover {
  opacity: 0.5;
}

.footer small a:hover {
  opacity: 0.5;
}

/*==============================
    ヘッダー
==============================*/
.header {
  padding: clamp(9px, 0.73vw, 14px) clamp(73px, 5.73vw, 110px) clamp(17px, 1.3vw, 25px) clamp(10px, 0.78vw, 15px);
}

.header .logo {
  height: clamp(173px, 13.54vw, 260px);
}

.header .sns__list {
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.header .sns__item:has(.tel-box) {
  margin-right: 1rem;
}

/*==============================
    メインビジュアル
==============================*/
.mv__wrap {
  gap: clamp(114px, 8.91vw, 171px);
}

.mv__title {
  padding-top: clamp(31px, 2.45vw, 47px);
  gap: clamp(33px, 2.6vw, 50px);
}

.mv__title .main {
  font-size: clamp(33px, 2.6vw, 50px);
}

.mv__title .sub {
  font-size: clamp(21px, 1.67vw, 32px);
}

.mv__title .en {
  font-size: clamp(13px, 1.04vw, 20px);
}

/*==============================
    サブビジュアル
==============================*/
.sv__wrap {
  gap: clamp(119px, 9.27vw, 178px);
}

.sv__title {
  padding-top: clamp(60px, 4.69vw, 90px);
  gap: clamp(33px, 2.6vw, 50px);
}

.sv__title .main {
  font-size: clamp(33px, 2.6vw, 50px);
}

.sv__title .sub {
  font-size: clamp(13px, 1.04vw, 20px);
}

/*==============================
    共通ボタン
==============================*/
.com-btn {
  width: 32rem;
  height: 6rem;
}

.line-btn {
  width: 24rem;
  height: 6rem;
}

.ig-btn {
  width: 24rem;
  height: 6rem;
}

.official-btn {
  width: 24rem;
  height: 6rem;
}

.reserve-btn {
  width: 46rem;
  height: 10rem;
}

/*==============================
    TOP
==============================*/
.top-worry {
  padding-block: 18rem 0;
}

.top-worry .com-title01 {
  margin-bottom: 3rem;
}

.top-worry__wrap {
  padding-block: 2.7rem 1.5rem;
}

.top-worry__wrap::before {
  max-width: 1720px;
  min-width: 1145px;
}

.top-worry__image {
  margin-right: -17rem;
}

.top-worry__list {
  padding-top: 4.5rem;
  grid-template-rows: repeat(4, 3.5rem);
}

.top-about {
  padding-block: 18rem;
}

.top-about .com-inbox {
  align-items: flex-start;
}

.top-about__image {
  flex-shrink: 0;
  width: 62rem;
  margin-left: -21rem;
}

.top-ginger {
  padding-block: 18rem;
}

.top-ginger::before {
  min-width: 1200px;
  max-width: 1720px;
}

.top-ginger::after {
  bottom: calc(100% - 5rem);
  right: calc(50% + 13rem);
}

.top-ginger__image {
  flex-shrink: 0;
  width: 62rem;
  margin-right: -17rem;
}

.top-link {
  padding-block: 18rem;
}

.top-link__list {
  align-items: flex-start;
  justify-content: center;
}

.top-link__item {
  width: 85rem;
}

.top-news {
  padding-block: 16rem 15rem;
}

.top-news .com-inbox {
  align-items: flex-start;
}

.top-news__box {
  padding-top: 6rem;
  flex-shrink: 0;
}

/*==============================
    癒し堂こまちについて
==============================*/
.about-section {
  padding-block: 18rem;
}

.about-section__image {
  flex-shrink: 0;
  align-items: flex-end;
}

.about-section__image img {
  width: 36rem;
  aspect-ratio: 1;
}

.about-section__image img:last-child {
  display: inline-block;
  margin-right: 5rem;
}

.about-reason {
  padding-block: 21rem 18rem;
}

.about-reason::before {
  max-width: 1880px;
  min-width: 1200px;
}

.about-reason__item {
  align-items: flex-start;
}

.about-reason__item:nth-child(odd) .about-reason__text {
  padding: 5.6rem 5rem 8rem 12rem;
}

.about-reason__item:nth-child(odd) .about-reason__image {
  margin-right: -7rem;
}

.about-reason__item:nth-child(even) {
  flex-direction: row-reverse;
}

.about-reason__item:nth-child(even) .about-reason__text {
  padding: 5.6rem 12rem 8rem 5rem;
}

.about-reason__item:nth-child(even) .about-reason__image {
  margin-left: -7rem;
}

.about-reason__text {
  margin-top: 6rem;
  width: 73rem;
}

.about-reason__image {
  flex-shrink: 0;
  width: 42rem;
  aspect-ratio: 420/360;
}

.about-info {
  padding-block: 18rem;
}

/*==============================
    しょうが灸
==============================*/
.ginger-worry {
  padding-block: 18rem;
}

.ginger-worry .com-inbox {
  background: url(../img/ginger_moxibustion/img-worry.png) top 17rem right/46.3% auto no-repeat;
}

.ginger-worry__item:nth-child(5) {
  margin-top: 1rem;
}

.ginger-worry__item:nth-child(5),
.ginger-worry__item:nth-child(6),
.ginger-worry__item:nth-child(7),
.ginger-worry__item:last-child {
  margin-left: 22rem;
}

.ginger-about {
  padding-block: 18rem;
}

.ginger-about::before {
  max-width: 1880px;
  min-width: 1200px;
}

.ginger-about__wrap {
  align-items: flex-start;
}

.ginger-about__wrap .ginger-about__text {
  padding-top: 3rem;
}

.ginger-about__text .ginger-about__wrap {
  flex-direction: row-reverse;
}

.ginger-about__text .ginger-about__image {
  margin-right: 0;
  width: 36rem;
}

.ginger-about__image {
  margin-right: -14rem;
  flex-shrink: 0;
  width: 62rem;
  aspect-ratio: 620/480;
}

.ginger-difference {
  padding-block: 18rem 15rem;
}

.ginger-difference__wrap {
  align-items: flex-start;
}

.ginger-difference__text {
  padding-top: 6rem;
}

.ginger-difference__image {
  width: 55.2rem;
  flex-shrink: 0;
}

.ginger-feature {
  padding-block: 18rem;
}

.ginger-feature__headline-illust {
  inset: 0 0 auto auto;
}

.ginger-feature__headline-text {
  text-align: center;
}

.ginger-feature__headline-list {
  padding: 4rem 20rem;
  font-size: 2.4rem;
  width: 88rem;
}

.ginger-feature__headline-image {
  position: absolute;
}

.headline__image--left {
  inset: 0 auto auto -16rem;
}

.headline__image--right {
  inset: auto -10rem 20rem auto;
}

.ginger-feature__item {
  width: 57rem;
}

.ginger-feature__item:nth-child(even) {
  margin-left: auto;
}

.ginger-feature__text {
  padding-top: 5rem;
}

.ginger-feature__text p {
  padding-inline: 4rem;
}

.ginger-feature__image {
  flex-shrink: 0;
  width: 36rem;
}

/*==============================
    メニュー
==============================*/
.menu-section {
  padding: 6rem 0 18rem;
}

.menu-section__wrap {
  align-items: flex-start;
}

.menu-section__wrap .menu-section__text {
  padding-top: 2rem;
}

.menu-section__wrap:has(.menu-section__image) .menu-section__image {
  flex-shrink: 0;
  width: 42rem;
}

.menu-section__image {
  aspect-ratio: 420/360;
}

/*==============================
    お客様の声
==============================*/
.voice-section {
  padding-block: 18rem;
}

/*==============================
    共通お問い合わせセクション
==============================*/
.com-contact {
  padding-bottom: 18rem;
}

.com-contact .line-btn {
  width: 28rem;
}

.com-contact .com-inbox::before {
  max-width: 1720px;
}

.top-contact {
  padding-top: 18rem;
}

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

/*お知らせ共通部分*/
.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: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-block: 10rem;
}

.contact .com-table {
  margin-bottom: 3rem;
  table-layout: fixed;
}

.contact .com-table th {
  width: 35%;
}

.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 {
  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 address {
  padding-top: 4.7rem;
}

.footer .logo {
  flex-shrink: 0;
  margin-right: 13.4rem;
}

.footer__inner {
  padding-block: 0 10rem;
  width: 1080px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
}

.footer .sns__list {
  align-items: flex-start;
}

.footer nav {
  margin-top: 4.7rem;
  padding-left: 4rem;
  padding-block: 1rem;
  border-left: 2px solid var(--color-white);
}

.footer__box:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .caption {
  margin-right: -2em;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav__link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-nav__link::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  aspect-ratio: 1;
  background-color: var(--color-brown);
}

.footer .nav-item--privacy,
.footer .nav-item--site {
  display: none;
}

.footer-sub__list {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 1.4rem;
  margin-top: 2rem;
  gap: 1.7rem;
}

.footer-sub__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-sub__link::before {
  content: "";
  width: 0.6rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  background-color: var(--color-brown);
}

.footer small {
  margin-top: 18rem;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}