@charset "UTF-8";
/* 2, Contents */
/* 基本 */
.l-container {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container {
    width: 100%;
    padding: 0 20px;
  }
}

/* 小さい幅 */
.l-container-small {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container-small {
    width: 100%;
    padding: 0 20px;
  }
}

/* ヘッダー用 */
.l-container-header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* SP&paddingなし */
@media screen and (max-width: 767px) {
  .l-container-sp-padding {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/* 下層ページ */
.l-container-page {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1090px) {
  .l-container-page {
    width: 100%;
    padding: 0 20px;
  }
}

/* 投稿ページ */
.l-container-post {
  width: 768px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Header layout (site-header) */
/* SPヘッダーはPCでは非表示 */
.site-header-sp {
  display: none;
}

.front-page .site-header__bar {
  background-color: transparent;
}

.site-header__bar {
  display: flex;
  align-items: center;
  height: 96px;
  background-color: #faf7f5;
}
@media screen and (max-width: 767px) {
  .site-header__bar {
    height: 62px;
  }
}

.site-header__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Logo block */
.header-logo__link {
  display: block;
  width: 137px;
  height: 68px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Navigation block */
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-nav__item {
  position: relative;
}
@media (width >= 1024px) {
  .header-nav__item--has-dropdown.is-hover .header-nav__dropdown, .header-nav__item--has-dropdown.is-open .header-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-nav__item--has-dropdown.is-hover .header-nav__icon, .header-nav__item--has-dropdown.is-open .header-nav__icon {
    transform: rotate(180deg);
  }
}
@media (width <= 767px) {
  .header-nav__item--has-dropdown.is-open .header-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-nav__item--has-dropdown.is-open .header-nav__icon {
    transform: rotate(90deg);
  }
}

.header-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: #3f3f3f;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
  cursor: pointer;
}

.header-nav__label {
  color: #3f3f3f;
  font-family: var(--font-zen-maru-gothic, "Zen Maru Gothic", sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.25em;
  white-space: nowrap;
}

.header-nav__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.header-nav__icon img {
  display: block;
  width: 100%;
  height: 100%;
  rotate: 90deg;
}

.header-nav__separator {
  display: inline-block;
  width: 1px;
  height: 20px;
  margin: 0;
  background-color: #e5e5e5;
}
@media (width <= 767px) {
  .header-nav__separator {
    display: none;
  }
}

.header-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 240px;
  margin-top: 0.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
@media (width <= 767px) {
  .header-nav__dropdown {
    position: static;
    margin-top: 0.25rem;
    padding-left: 1rem;
    background-color: rgba(96, 162, 161, 0.05);
    border: none;
    border-left: 2px solid #60a2a1;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
}

.header-nav__dropdown-inner {
  padding: 0.5rem 0;
}
@media (width <= 767px) {
  .header-nav__dropdown-inner {
    padding: 0.25rem 0;
  }
}

.header-nav__dropdown-link {
  position: relative;
  display: block;
  padding: 0.5rem 1.25rem 0.5rem 2rem;
  color: #3f3f3f;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.header-nav__dropdown-link:hover {
  color: #60a2a1;
  background-color: rgba(96, 162, 161, 0.1);
}
@media (width <= 767px) {
  .header-nav__dropdown-link {
    padding: 0.5rem 1rem;
    font-size: 13px;
  }
}
.header-nav__dropdown-link::before {
  position: absolute;
  top: 7px;
  left: 16px;
  width: 0;
  height: 0;
  content: "-";
}

.header-nav__dropdown-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
@media (width <= 767px) {
  .header-nav__dropdown-label {
    font-size: 13px;
  }
}

@media (width <= 767px) {
  /* PCヘッダーはSPでは非表示 */
  .site-header {
    display: none;
  }
  .site-header__content {
    justify-content: space-between;
  }
  /* Mobile header (sp) */
  .site-header-sp {
    position: sticky;
    top: 0;
    z-index: 50;
    display: block;
    width: 100%;
  }
  .front-page .site-header-sp__bar {
    background-color: #fff;
  }
  .site-header-sp__bar {
    position: relative;
    z-index: 50;
    background-color: #faf7f5;
  }
  .site-header-sp__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
  }
  .site-header-sp__logo {
    display: block;
    width: 207px;
    height: 24px;
  }
  .site-header-sp__toggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .site-header-sp__toggle-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 4px;
    width: 22.5px;
    height: 15px;
  }
  .site-header-sp__toggle-line {
    width: 100%;
    height: 2px;
    background-color: #595959;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .site-header-sp__toggle-line:nth-child(1) {
    position: relative;
    top: 0;
    transform-origin: center;
  }
  .site-header-sp__toggle-line:nth-child(2) {
    transform-origin: center;
  }
  .site-header-sp__toggle-line:nth-child(3) {
    transform-origin: center;
  }
  /* ハンバーガーメニュー開閉時のアニメーション */
  .site-header-sp--open .site-header-sp__toggle-lines {
    row-gap: 0;
  }
  .site-header-sp--open .site-header-sp__toggle-line:nth-child(1) {
    top: 4px;
    transform: translateY(0) rotate(45deg);
  }
  .site-header-sp--open .site-header-sp__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .site-header-sp--open .site-header-sp__toggle-line:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }
  .site-header-sp__drawer {
    position: fixed;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    pointer-events: none;
    inset: 0;
  }
  .site-header-sp__drawer-backdrop {
    position: absolute;
    background-color: rgba(16, 16, 16, 0.25);
    inset: 0;
  }
  .site-header-sp__drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100svh;
    overflow: auto;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  /* open state (toggleでクラスを付ける想定) */
  .site-header-sp--open .site-header-sp__drawer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header-sp--open .site-header-sp__drawer-panel {
    transform: translateY(0);
  }
  /* Mobile navigation (header-nav-sp) */
  .header-nav-sp {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
  }
  .header-nav-sp__list {
    margin: 0;
    padding: 0 1rem;
    list-style: none;
  }
  .header-nav-sp__link {
    position: relative;
    display: block;
    padding: 20px 40px 20px 0;
    color: #3f3f3f;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: none;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s;
    cursor: pointer;
  }
  .header-nav-sp__link::before {
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    width: 24px;
    height: 24px;
    background-color: #EFF6F6;
    border-radius: 100px;
    content: "";
  }
  .header-nav-sp__link::after {
    position: absolute;
    top: calc(50% - 3px);
    right: 21px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #60a2a1;
    border-right: 2px solid #60a2a1;
    transform: rotate(135deg);
    transition: 0.2s;
    content: "";
  }
  .header-nav-sp__dropdown {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.1s ease-out, opacity 0.3s ease-out;
  }
  .header-nav-sp__dropdown-inner {
    padding: 8px 0;
  }
  .header-nav-sp__dropdown-link {
    position: relative;
    display: block;
    padding: 12px 18px 12px 26px;
    color: #595959;
    font-family: var(--font-zen-maru-gothic, "Zen Maru Gothic", sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
  }
  .header-nav-sp__dropdown-link::before {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 0;
    height: 0;
    color: #595959;
    content: "-";
  }
  .header-nav-sp__dropdown-label {
    display: block;
  }
  .header-nav-sp__item.is-open .header-nav-sp__link::after {
    transform: rotate(315deg);
  }
  .header-nav-sp__item.is-open .header-nav-sp__dropdown {
    max-height: 500px;
    opacity: 1;
  }
  /* WEB予約セクション */
  .header-nav-sp__booking-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 24px;
    padding: 32px 24px;
  }
  .header-nav-sp__booking-bg {
    position: absolute;
    z-index: 0;
    background-image: url("../img/wave-top.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    transform: scaleX(-1);
    transform-origin: center;
    inset: 0;
  }
  .header-nav-sp__booking-link {
    position: relative;
    z-index: 10;
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 12px 0;
    color: #fff;
    font-family: var(--font-roboto, "Roboto", sans-serif);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    background-color: #60a2a1;
    border-radius: 9999px;
    transition: background-color 0.3s;
  }
  .header-nav-sp__booking-link:hover {
    background-color: #5a9695;
  }
  /* 連絡先セクション */
  .header-nav-sp__contact-section {
    flex-grow: 1;
    padding: 0 32px 32px;
    background-color: #faf7f5;
  }
  .header-nav-sp__social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }
  .header-nav-sp__social-link {
    padding: 4px;
    background-color: #f3b7a3;
    border-radius: 8px;
    transition: opacity 0.3s;
  }
  .header-nav-sp__social-link:hover {
    opacity: 0.8;
  }
  .header-nav-sp__social-icon {
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .header-nav-sp__tel-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 16px;
  }
  .header-nav-sp__tel-label {
    margin-bottom: 8px;
    color: #232323;
    font-family: var(--font-lexend-zetta, "Lexend Zetta", sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: -2.04px;
  }
  .header-nav-sp__tel-number {
    color: #4b4c4c;
    font-family: var(--font-lexend-zetta, "Lexend Zetta", sans-serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: -2.04px;
  }
  .header-nav-sp__note {
    color: #787878;
    font-family: var(--font-zen-maru-gothic, "Zen Maru Gothic", sans-serif);
    font-size: 14px;
    line-height: normal;
    text-align: center;
  }
  .header-nav-sp__note p {
    margin: 0;
  }
  .header-nav-sp__note p:first-child {
    margin-bottom: 0;
  }
}
.scroll-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: none;
}
.scroll-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-header__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.scroll-header__container {
  position: relative;
  top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0 0.5rem;
}
@media (width >= 768px) {
  .scroll-header__container {
    gap: 1.75rem;
    padding: 0 1rem;
  }
}
.scroll-header__nav-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 0;
  padding: 1.5rem 3.25rem;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 0 5px 0 rgba(246, 169, 160, 0.3019607843);
}
.scroll-header__nav-list {
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-header__nav-item {
  position: relative;
}
@media (width >= 1024px) {
  .scroll-header__nav-item--has-dropdown.is-hover .scroll-header__nav-dropdown, .scroll-header__nav-item--has-dropdown.is-open .scroll-header__nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0deg);
  }
  .scroll-header__nav-item--has-dropdown.is-hover .scroll-header__nav-icon, .scroll-header__nav-item--has-dropdown.is-open .scroll-header__nav-icon {
    transform: rotate(180deg);
  }
}
@media (width <= 767px) {
  .scroll-header__nav-item--has-dropdown.is-open .scroll-header__nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .scroll-header__nav-item--has-dropdown.is-open .scroll-header__nav-icon {
    transform: rotate(180deg);
  }
}
.scroll-header__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: #3f3f3f;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
  cursor: pointer;
}
.scroll-header__nav-link:hover {
  background-color: rgba(96, 162, 161, 0.1);
}
.scroll-header__nav-label {
  color: #3f3f3f;
  font-family: var(--font-zen-maru-gothic, "Zen Maru Gothic", sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.25em;
  white-space: nowrap;
}
.scroll-header__nav-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.scroll-header__nav-icon img {
  display: block;
  width: 100%;
  height: 100%;
  rotate: 90deg;
}
.scroll-header__nav-separator {
  display: inline-block;
  width: 1px;
  height: 20px;
  margin: 0;
  background-color: #e5e5e5;
}
@media (width <= 767px) {
  .scroll-header__nav-separator {
    display: none;
  }
}
.scroll-header__nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 240px;
  margin-top: 0.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
@media (width <= 767px) {
  .scroll-header__nav-dropdown {
    position: static;
    margin-top: 0.25rem;
    padding-left: 1rem;
    background-color: rgba(96, 162, 161, 0.05);
    border: none;
    border-left: 2px solid #60a2a1;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
}
.scroll-header__nav-dropdown-inner {
  padding: 0.5rem 0;
}
@media (width <= 767px) {
  .scroll-header__nav-dropdown-inner {
    padding: 0.25rem 0;
  }
}
.scroll-header__nav-dropdown-link {
  position: relative;
  display: block;
  padding: 0.5rem 1.25rem 0.5rem 2rem;
  color: #3f3f3f;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.scroll-header__nav-dropdown-link:hover {
  color: #60a2a1;
  background-color: rgba(96, 162, 161, 0.1);
}
@media (width <= 767px) {
  .scroll-header__nav-dropdown-link {
    padding: 0.5rem 1rem;
    font-size: 13px;
  }
}
.scroll-header__nav-dropdown-link::before {
  position: absolute;
  top: 7px;
  left: 16px;
  width: 0;
  height: 0;
  content: "-";
}
.scroll-header__nav-dropdown-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
@media (width <= 767px) {
  .scroll-header__nav-dropdown-label {
    font-size: 13px;
  }
}
.scroll-header__booking {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4375rem;
  width: 6rem;
  padding: 1rem 0.75rem;
  text-decoration: none;
  background-color: #60a2a1;
  border-bottom-left-radius: 36px;
  box-shadow: -4px 4px 0 0 #a8d0d0;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.scroll-header__booking:hover {
  box-shadow: -4px 6px 0 0 #a8d0d0;
  transform: translateY(-2px);
}
@media (width >= 768px) {
  .scroll-header__booking {
    width: 10rem;
    padding: 1.5rem 1.1875rem;
  }
}
.scroll-header__booking-icon {
  width: 19.8px;
  height: 22px;
}
.scroll-header__booking-icon img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
}
.scroll-header__booking-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4375rem;
}
.scroll-header__booking-label {
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
@media (width >= 768px) {
  .scroll-header__booking-label {
    font-size: 16px;
    letter-spacing: 2.44px;
  }
}
.scroll-header__booking-note {
  width: 100%;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 1px;
  text-align: center;
}
@media (width >= 768px) {
  .scroll-header__booking-note {
    font-size: 12px;
    letter-spacing: 1.8px;
  }
}

/* --------------------------
ブログ 詳細ページ
--------------------------- */
.c-post-single {
  width: 100%;
  max-width: 660px;
  margin: auto;
  padding: 0.5rem 2.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-post-single {
    padding: 0.5rem 0.5em 2.5rem;
  }
}
.c-post-single__time {
  margin-bottom: 10px;
  color: #575757;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.c-post-single__title {
  margin-bottom: 3rem;
  color: #ffa587;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
}
.c-post-single__content {
  color: #364153;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.c-post-single__content p,
.c-post-single__content img,
.c-post-single__content ul,
.c-post-single__content ol {
  margin-bottom: 1.5rem;
  color: #364153;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.c-post-single__content h1,
.c-post-single__content h2,
.c-post-single__content h3,
.c-post-single__content h4,
.c-post-single__content h5,
.c-post-single__content h6 {
  font-size: 16px;
  font-weight: 500;
  font-weight: bold;
  line-height: 1.8;
}

.c-back-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
  height: 60px;
  margin-top: 3rem;
  padding: 0 1rem;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(96, 162, 161, 0.5);
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
.c-back-link:hover {
  background-color: rgba(96, 162, 161, 0.1);
}
.c-back-link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}
.c-back-link__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-back-link__text {
  color: #60a2a1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
@media (width <= 768px) {
  .c-back-link__text {
    font-size: 14px;
  }
}

.l-blog__post {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-blog__post {
    padding: 2rem 1rem 0;
  }
}

.c-pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem 0;
  padding: 0;
}
.c-pagination__prev, .c-pagination__next, .c-pagination__current {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-sizing: border-box;
  padding: 0.5rem;
  background-color: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.c-pagination__prev {
  width: 101px;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.c-pagination__prev:hover:not(.c-pagination__prev--disabled) {
  background-color: #f3f4f6;
}
.c-pagination__prev--disabled {
  cursor: not-allowed;
}
.c-pagination__prev--disabled .c-pagination__text {
  color: rgba(120, 120, 120, 0.4);
}
.c-pagination__next {
  width: 101px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.c-pagination__next:hover:not(.c-pagination__next--disabled) {
  background-color: #f3f4f6;
}
.c-pagination__next--disabled {
  cursor: not-allowed;
}
.c-pagination__next--disabled .c-pagination__text {
  color: rgba(120, 120, 120, 0.4);
}
.c-pagination__current {
  width: 8rem;
}
.c-pagination__text {
  margin: 0;
  color: #787878;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 1.6px;
  white-space: pre;
}

/* page */
/* 今回はブログ記事も同じ設定にする */
.p-footer-contact {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #faf7f5;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}
@media screen and (max-width: 767px) {
  .p-footer-contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-footer-contact__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.p-footer-contact__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 104px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__inner {
    gap: 2.5rem;
    padding: 2.5rem 1rem 0;
  }
}
.p-footer-contact__content {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 1240px;
  padding: 0;
}
.p-footer-contact__info-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__info-wrapper {
    flex-direction: column;
  }
}
.p-footer-contact__clinic-info {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 39px;
  box-sizing: border-box;
  width: 320px;
  padding: 0;
}
.p-footer-contact__logo {
  flex-shrink: 0;
  width: 275.676px;
  height: 138px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__logo {
    width: 160px;
    height: 80px;
    margin: auto;
  }
}
.p-footer-contact__address {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  color: #1d1d1d;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__address {
    text-align: center;
  }
}
.p-footer-contact__address p {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  margin: 0;
  line-height: 30px;
}
.p-footer-contact__card {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
  padding: 60px;
  background-color: #fff;
  border-radius: 60px;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__card {
    flex-direction: column;
    gap: 35px;
    width: 100%;
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 40px;
  }
}
.p-footer-contact__phone-section, .p-footer-contact__reservation-section {
  position: relative;
  flex-shrink: 0;
}
.p-footer-contact__section-header {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__section-header {
    justify-content: center;
  }
}
.p-footer-contact__icon {
  position: relative;
  flex-shrink: 0;
  width: 31px;
  height: 31px;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__icon {
    width: 18px;
    height: 18px;
  }
}
.p-footer-contact__icon img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
}
.p-footer-contact__section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  margin: 0;
  color: #1d1d1d;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  line-height: 0;
  line-height: 20px;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__section-title {
    font-size: 14px;
  }
}
.p-footer-contact__phone-number {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.p-footer-contact__phone-label {
  margin-bottom: 0.5rem;
  color: #232323;
  font-family: "Lexend Zetta", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 14px;
  letter-spacing: -2.04px;
}
.p-footer-contact__phone-digits {
  color: #4b4c4c;
  font-family: "Lexend Zetta", sans-serif;
  font-size: 34px;
  font-weight: normal;
  line-height: 34px;
  letter-spacing: -2.04px;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__phone-digits {
    font-size: 22px;
  }
}
.p-footer-contact__phone-note {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  width: 279px;
  color: #787878;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  line-height: normal;
  text-align: center;
}
.p-footer-contact__phone-note p {
  display: block;
  margin-bottom: 0;
}
.p-footer-contact__phone-note p:first-child {
  margin-bottom: 0;
}
.p-footer-contact__button {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 263px;
  height: 60px;
  padding: 1rem 2rem;
  overflow: visible;
  text-decoration: none;
  background-color: #60a2a1;
  border-radius: 100px;
  transition: background-color 0.3s;
  cursor: pointer;
}
.p-footer-contact__button:hover {
  background-color: #5a9695;
}
.p-footer-contact__button span {
  color: #fff;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  white-space: nowrap;
}
.p-footer-contact__payment-methods {
  flex-shrink: 0;
  width: 100%;
  max-width: 1100px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-footer-contact__payment-methods {
    width: 100%;
    height: auto;
  }
  .p-footer-contact__payment-methods img {
    margin: auto;
    text-align: center;
  }
}

.l-footer {
  padding: 60px 0;
  background-color: #f3ece6;
}
@media screen and (max-width: 767px) {
  .l-footer {
    display: none;
  }
}
.l-footer__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.l-footer__nav {
  display: flex;
  gap: 1.5rem;
}
.l-footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 247px;
}
.l-footer__nav-column:nth-child(2) {
  gap: 0.625rem;
}
.l-footer__nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
.l-footer__nav-item:hover {
  opacity: 0.8;
}
.l-footer__nav-item--sub .l-footer__nav-text {
  color: #686868;
  font-size: 13px;
  font-weight: bold;
}
.l-footer__nav-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.899px;
  height: 9.899px;
}
.l-footer__nav-icon::before {
  width: 7px;
  height: 7px;
  border: 2px solid #4b4c4c;
  border-top: 2px solid #4b4c4c;
  border-right: 2px solid #4b4c4c;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  content: "";
}
.l-footer__nav-line {
  width: 7px;
  height: 2px;
  border-top: 2px solid #cdcdcd;
}
.l-footer__nav-text {
  color: #3f3f3f;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}
.l-footer__nav-text--sub {
  color: #686868;
  font-size: 13px;
  font-weight: bold;
}
.l-footer__social {
  display: flex;
  gap: 1.5rem;
}
.l-footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
.l-footer__social-link:hover {
  opacity: 0.8;
}
.l-footer__social-icon {
  width: 24px;
  height: 24px;
}
.l-footer__social-icon img {
  width: 100%;
  height: 100%;
}
.l-footer__social-text {
  color: #3f3f3f;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.7px;
  font-weight: 500;
  line-height: 28.89px;
  letter-spacing: 1.2px;
}

/* スマホ時の固定バナー */
.fix-banner-sp {
  display: none;
}

@media screen and (max-width: 767px) {
.fix-banner-sp {
  display: block;
  /* display: none; */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 49;
  & a { 
    display: block;
    width: 100%;
    & img {
      width: 100%;
      height: auto;
    }
  }
}
}
