@charset "UTF-8";

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
:root {
  --primary-color: #333333;
  --secondary-color: #9A3600;
  --white: #fff;
  --orange: #D94800;

  --border-color: #151515;

  --font-primary: "Noto Sans JP", "serif";
  --font-secondary: "Inter", "serif";
  --font-en: "Inter", "serif";
  --font-ja: "Noto Sans JP", "serif";
}


html {
  font-size: 62.5%;
}

html.is-text-large {
  font-size: 75%;
}

body {
  font-family: var(--font-primary);
  color: var(--primary-color);
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.5rem;
  background-color: #FCFAF2;
}



/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 110px 0 0 0;
}

@media (max-width: 1180px) {
  .contents {
    padding: 70px 0 0 0;
  }
}

@media (max-width: 600px) {
  .contents {
    padding: 80px 0 0 0;
  }
}

/* ========================================
    モジュール
    ======================================== */
/* グラデーションボーダーボタン */
.m-btn-grad-border {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 64px;
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #FF665A 0%, #FFBD59 100%) border-box;
  border: 2px solid transparent;
  border-radius: 32px;
  transition: 0.3s;
}

.m-btn-grad-border:hover {
  color: #fff;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%) border-box;
}

.m-btn-grad-border span {
  position: relative;
  width: 100%;
  display: inline-block;
  padding-right: 30px;
  text-align: center;
}

.m-btn-grad-border span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-150%, -50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/arrow-icon-2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}

/* 診療時間タイトル共通 */
.m-hours-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.m-hours-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.m-hours-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #D94800, #FFCC00);
}

.m-hours-title--center {
  justify-content: center;
}

.m-btn-grad-border:hover span::after {
  background-image: url(../img/icon/arrow-icon.webp);
  transform: translate(-125%, -50%);
}

/* テキスト + 右側グラデーション円アイコンボタン */
.m-btn-grad-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  margin-left: auto;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s;
}



.m-btn-grad-circle__text {
  width: fit-content;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;
}

.m-btn-grad-circle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%);
  border-radius: 50%;
  transition: 0.3s;
}

.m-btn-grad-circle__icon::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/icon/arrow-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.m-btn-grad-circle:hover .m-btn-grad-circle__icon {
  transform: scale(1.2);
}

.m-btn-grad-circle:hover .m-btn-grad-circle__text {
  border-bottom: 2px solid var(--secondary-color);
}

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1080px + 32px);
}

.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

/* ========================================
    共通
    ======================================== */
.section-ttl {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: clamp(2.0rem, 2.5vw, 3.2rem);
}

.section-ttl span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 15px;
  gap: 4px;
  font-family: var(--font-secondary);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.8px;

  /* ▼ 画像の指定通りに反映 ▼ */
  background: linear-gradient(to right,
      #F54747 0%,
      #FF9354 73%,
      #FFAB2E 92%,
      #FFC546 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-ttl span::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #FF8E4F;
  border-radius: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .section-ttl span {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
}

/* ========================================
    パンくず
    ======================================== */
.breadcrumbs-wrapper {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 6vw;
}

@media screen and (max-width: 1080px) {
  .breadcrumbs-wrapper {
    padding: 10px 6vw;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumbs-wrapper {
    padding: 8px 6vw;
  }
}

@media screen and (max-width: 600px) {
  .breadcrumbs-wrapper {
    padding: 8px 4vw;
  }
}

.breadcrumbs {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #666;
}

@media screen and (max-width: 1080px) {
  .breadcrumbs {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 600px) {
  .breadcrumbs {
    font-size: 1.1rem;
  }
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
  margin: 0 6px;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.current-item {
  margin-left: 6px;
}



/* ========================================
    ヘッダー
    ======================================== */
.header {
  width: 100%;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  padding: 0 30px;
}

@media screen and (max-width: 1180px) {
  .header__inner {
    height: 70px;
    padding: 0 20px;
  }
}

.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
}

.header__logo-img {
  width: clamp(150px, 16vw, 254px);
  height: auto;
}




.header__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

@media screen and (max-width: 1180px) {
  .header__nav-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    padding: 100px 20px 40px;
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .header__utility-list {
    flex-direction: column;
    gap: 20px;
  }

  .header__nav-main {
    flex-direction: column;
    gap: 30px;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .header__nav-actions {
    flex-direction: column;
    gap: 20px;
  }
}

/* ユーティリティ */
.header__utility-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__utility-item {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.header__utility-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}

.header__utility-icon-link {
  width: 14px;
  height: auto;
}

.header__utility-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-secondary);
  line-height: 1;
}

.header__utility-icon {
  width: 15px;
  height: auto;
}

.header__utility-label {
  margin-right: 12px;
}

.header__text-size-btns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.m-btn-text-size {
  padding: 2px 14px;
  border: 1px solid var(--orange);
  border-radius: 20px;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 1.3rem;
  transition: 0.3s;
  line-height: 1.5;
}

.m-btn-text-size.is-active {
  background: var(--white);
  border-color: var(--orange);
}

.m-btn-text-size:not(.is-active) {
  border-color: transparent;
}

.header__search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 500;
}

/* メインナビ */
.header__nav-main {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 40px;
  margin-bottom: -40px;
  transition: color 0.3s;
}

.header__nav-item:hover>a {
  color: var(--orange);
}

.header__nav-item.has-dropdown {
  position: static;
}

.header__nav-item.has-dropdown a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -4px;
  transition: transform 0.3s ease;
}

.header__nav-item.has-dropdown:hover>a::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* メガメニュー */
.header__megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border-top: 1px solid #EBE6D8;
}

@media screen and (max-width: 1180px) {
  .header__megamenu {
    display: none;
  }
}

.header__nav-item:hover .header__megamenu {
  opacity: 1;
  visibility: visible;
}

.header__megamenu-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  align-items: stretch;
}

.header__megamenu-left {
  padding-right: 80px;
  border-right: 1px solid #CCCCCC;
  margin-right: 80px;
  display: flex;
  align-items: center;
}

.header__nav-item .header__megamenu-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  line-height: 1;
  height: auto;
}

.header__megamenu-title-icon {
  width: 18px;
  height: auto;
  transition: transform 0.3s ease;
}

.header__nav-item .header__megamenu-title:hover .header__megamenu-title-icon {
  transform: translateX(6px);
}

.header__megamenu-sub-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 100px;
  padding: 10px 0;
}

.header__nav-item .header__megamenu-sub-item a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  line-height: 1.4;
  height: auto;
}

.header__nav-item .header__megamenu-sub-item a::before {
  content: "";
  display: block;
  width: 10px;
  height: 3px;
  background-color: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.header__nav-item .header__megamenu-sub-item a:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header__nav-item .header__megamenu-sub-item a:hover::before {
  transform: rotate(90deg);
}


.header__nav-item.has-dropdown .header__megamenu-sub-item a::after,
.header__nav-item.has-dropdown .header__megamenu-left a::after {
  display: none;
}

.header__nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__insta {
  display: block;
  width: 20px;
  transition: 0.3s;
}

.header__insta:hover {
  opacity: 0.7;
}

.m-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5EDE0;
  color: #8B4513;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.6rem;
  transition: 0.3s;
}

.m-btn-contact:hover {
  background: linear-gradient(to right, #FF5C5C, #FFAA47);
  color: #fff;
}

/* ハンバーガーメニュー */
.header__hamburger {
  display: none;
  width: 70px;
  height: 50px;
  position: relative;
  background: #F5EDE0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1001;
}

@media screen and (max-width: 1180px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger span {
  display: block;
  width: 40px;
  height: 1.5px;
  background: #9A3600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.header__hamburger span:nth-child(1) {
  top: 16px;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__hamburger span:nth-child(3) {
  bottom: 16px;
}

.header__hamburger.is-active {
  background: #F5EDE0;
}

.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
}

body.is-fixed {
  overflow: hidden;
}



/* ========================================
    モーダルナビゲーション
    ======================================== */
.m-nav-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FCFAF2;
  z-index: 900;
  overflow-y: auto;
  padding-top: 70px;
}

@media screen and (max-width: 1080px) {
  .m-nav-modal {
    padding-top: 70px;
  }
}

@media screen and (max-width: 1180px) {

  /* モーダル表示時は元々のナビゲーションを隠す */
  .header__nav-wrap {
    display: none !important;
  }
}

.m-nav-modal__inner {
  padding: 20px 20px 60px;
  max-width: 600px;
  margin: 0 auto;
}

/* ロゴと閉じるボタンは削除されたため不要 */
.m-nav-modal__header {
  display: none;
}

.m-nav-modal__utility {
  margin-bottom: 30px;
}

.m-nav-modal__search {
  margin-bottom: 20px;
}

.m-nav-modal__search-form {
  position: relative;
  width: 100%;
}

.m-nav-modal__search-input {
  width: 100%;
  height: 54px;
  padding: 0 38px 0 25px;
  border: 1px solid #E0D8C3;
  border-radius: 30px;
  background: #fff;
  font-size: 1.6rem;
  appearance: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.m-nav-modal__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
  background-size: contain;
  cursor: pointer;
  margin-right: 15px;
  position: relative;
  z-index: 2;
}

.m-nav-modal__search-submit {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-nav-modal__search-submit img {
  width: 16px;
  height: auto;
}

.m-nav-modal__text-size {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.m-nav-modal__text-size-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.m-nav-modal__text-size-btns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.m-nav-modal__hours {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.m-nav-modal__hours-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 15px;
}

.m-nav-modal__hours-label {
  background: #D94800;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 4px 15px;
  border-radius: 20px;
  line-height: 1;
}

.m-nav-modal__hours-label--pm {
  background: #D94800;
}

.m-nav-modal__hours-time {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.m-nav-modal__hours-note {
  font-size: 1.3rem;
  color: #666;
  margin: 0;
  line-height: 1.2;
}

.m-nav-modal__hours-closed {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9A3600;
  margin: 15px 0;
}

.m-nav-modal__hours-desc {
  font-size: 1.3rem;
  color: #666;
  text-align: left;
  line-height: 1.6;
}

.m-nav-modal__hours-btn {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.m-btn-outline-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  padding: 15px 40px;
  border-radius: 50px;
  position: relative;
  background: #fff;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.m-btn-outline-gradient::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(to right, #D94800, #FFCC00);
  border-radius: 50px;
  z-index: -1;
}

.m-btn-outline-gradient .icon {
  width: 16px;
  height: auto;
}

/* ナビゲーションリスト */
.m-nav-modal__nav {
  margin-bottom: 40px;
}

.m-nav-modal__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.m-nav-modal .m-accordion {
  gap: 0;
}

.m-nav-modal__item {
  border-bottom: 1px solid #E0D8C3;
}

.m-nav-modal__link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #9A3600;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.m-nav-modal__link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #D94800, #FFCC00);
  display: none;
}

.m-nav-modal__item.is-active .m-nav-modal__link::after {
  display: block;
}

.m-nav-modal .m-accordion__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: relative;
}

@media screen and (max-width: 600px) {
  .m-nav-modal .m-accordion__head {
    padding: 0 20px;
  }
}

.m-nav-modal .m-nav-modal__link {
  flex: 1;
  padding: 20px 0;
  display: block;
  position: static;
}

.m-nav-modal .m-accordion__icon {
  margin-left: 20px;
  cursor: pointer;
}

.m-nav-modal__item.is-active .m-accordion__head {
  background-color: rgba(245, 237, 217, 0.3);
}

.m-nav-modal .m-accordion__icon {
  background-color: #F5EDD9;
}

.m-accordion__icon {
  width: 16px;
  height: 16px;
  position: relative;
}

.m-accordion__icon::before,
.m-accordion__icon::after {
  content: "";
  position: absolute;
  background: #333;
  transition: 0.3s;
}

.m-accordion__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.m-accordion__icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.m-nav-modal__item.is-active .m-accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.m-nav-modal .m-nav-modal__sub-list {
  display: grid !important;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  visibility: hidden;
  overflow: hidden;
}

.m-nav-modal__item.is-active .m-nav-modal__sub-list {
  grid-template-rows: 1fr;
  visibility: visible;
}

.m-nav-modal .m-accordion__body {
  background: transparent;
  padding: 0 20px;
}

.m-nav-modal__sub-list-inner {
  min-height: 0;
}

.m-nav-modal__sub-item:first-child {
  padding-top: 10px;
}

.m-nav-modal__sub-item:last-child {
  padding-bottom: 10px;
}

/* .m-nav-modal__item.is-active .m-nav-modal__sub-list {
  display: block;
} */

.m-nav-modal__sub-item a {
  display: block;
  padding: 12px 0;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  position: relative;
  padding-left: 15px;
}

.m-nav-modal__sub-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 3px;
  background: #D94800;
  border-radius: 2px;
}

/* ダイレクトリンク */
.m-nav-modal__direct-list {
  margin-top: 30px;
}

.m-nav-modal__direct-item {
  border-bottom: 1px solid #E0D8C3;
}

.m-nav-modal__direct-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #9A3600;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .m-nav-modal__direct-link {
    padding: 15px 20px;
  }
}

.m-nav-modal__direct-link img {
  width: 16px;
  height: auto;
}

/* フッター情報 */
.m-nav-modal__footer {
  margin-top: 60px;
  text-align: center;
}

.m-nav-modal__footer-logo {
  margin-bottom: 30px;
}

.m-nav-modal__footer-logo img {
  height: 40px;
  width: auto;
}

.m-nav-modal__address {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.m-nav-modal__map-link {
  display: inline-block;
  color: #333;
  text-decoration: underline;
  margin-top: 5px;
}

.m-nav-modal__contact-info {
  margin-bottom: 40px;
}

.m-nav-modal__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: #9A3600;
}

.m-nav-modal__contact-item .label {
  font-size: 1.6rem;
}

.m-nav-modal__contact-item .value {
  font-size: 2.4rem;
  color: #D94800;
  text-decoration: none;
}

.m-nav-modal__contact-item .insta-link img {
  width: 20px;
  transform: translateY(-1px);
  height: auto;
}

.m-btn-contact-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(to right, #FF5C5C, #FFAA47);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  padding: 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255, 92, 92, 0.3);
}

.m-btn-contact-orange img {
  width: 18px;
  height: auto;
  filter: brightness(0) invert(1);
}

.m-nav-modal__copyright {
  margin-top: 50px;
  font-size: 1.2rem;
  color: #9A3600;
}

@media screen and (max-width: 600px) {
  .m-nav-modal__hours-time {
    font-size: 2.4rem;
  }
}

.footer {
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 40px;
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}

.footer__inner {
  width: 85%;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .footer__inner {
    width: 100%;
    padding: 0 20px;
  }
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1080px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.footer__info {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .footer__info {
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .footer__info {
    flex-direction: column;
    gap: 20px;
  }
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo-img {
  width: 250px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .footer__logo-img {
    width: 200px;
  }
}

.footer__address-wrap {
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer__address {
  margin-bottom: 8px;
  color: #666;
}

.footer__map-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 100%;
}

@media screen and (max-width: 1200px) {
  .footer__contact {
    gap: 30px;
  }
}

@media screen and (max-width: 1080px) {
  .footer__contact {
    width: 100%;
    justify-content: flex-start;
    gap: 60px;
  }
}

@media screen and (max-width: 768px) {
  .footer__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.footer__contact-nums {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.footer__contact-btn {
  flex-shrink: 0;
  min-width: 350px;
}

@media screen and (max-width: 600px) {
  .footer__contact-btn {
    min-width: 100%;
  }
}


.footer__contact-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  white-space: nowrap;
}

.footer__contact-label {
  font-family: var(--font-en);
  font-size: 1.4rem;
  min-width: 3.5em;
  width: fit-content;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 15px;
}

.footer__contact-label::after {
  content: "";
  display: block;
  width: 1.5px;
  height: 20px;
  margin-left: 15px;
  background-color: var(--orange);
}

@media screen and (max-width: 600px) {


  .footer__contact-label::after {
    height: 18px;
  }
}

.footer__contact-link {
  font-family: var(--font-en);
  font-size: 2.4rem;
  color: var(--orange);
  text-decoration: none;
  line-height: 1;
}

@media screen and (max-width: 1080px) {
  .footer__contact-link {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__contact-link {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 600px) {
  .footer__contact-link {
    font-size: 2.0rem;
  }
}

.footer__contact-item--sns {
  margin-top: 5px;
}

.footer__insta-link {
  display: inline-block;
  width: 20px;
  height: auto;
  transform: translateY(-2px);
}

.footer__insta-icon {
  width: 100%;
  height: auto;
}

.m-btn-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 80px;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
  transition: 0.3s;
}

.m-btn-gradient span {
  position: relative;
  width: 100%;
  display: inline-block;
  padding-right: 30px;
  text-align: center;
  white-space: nowrap;
}

.m-btn-gradient span::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  background-image: url(../img/icon/arrow-icon.webp);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.m-btn-gradient:hover span::after {
  right: 34px;
  background-color: var(--white);
  background-image: url(../img/icon/arrow-icon-2.webp);
}

@media screen and (max-width: 1080px) {
  .m-btn-gradient {
    width: 100%;
    max-width: 320px;
    height: 64px;
    font-size: 1.6rem;
  }

  .m-btn-gradient span::after {
    right: 20px;
    width: 44px;
    height: 44px;
    background-size: 16px;
  }

  .m-btn-gradient:hover span::after {
    right: 14px;
  }
}

@media screen and (max-width: 768px) {
  .m-btn-gradient {
    width: 100%;
    max-width: 400px;
  }
}

.footer__nav {
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  .footer__nav {
    margin-bottom: 20px;
  }
}

.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

@media screen and (max-width: 1080px) {
  .footer__nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .footer__nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
}

.footer__nav-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, #FF665A 0%, #FFBD59 100%) 1;
  margin-bottom: 20px;
  position: relative;
  color: #8B4513;
}

@media screen and (max-width: 600px) {
  .footer__nav-ttl {
    font-size: 1.6rem;
  }
}

.footer__nav-ttl a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__nav-ttl a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/arrow-icon-2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 4px;
  transition: transform 0.3s ease;
}

.footer__nav-ttl a:hover::after {
  transform: translateX(4px);
}

.footer__nav-list {
  list-style: none;
}

.footer__nav-item {
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .footer__nav-item {
    margin-bottom: 10px;
  }
}

.footer__nav-item a {
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: all 0.3s ease;
}

@media screen and (max-width: 600px) {
  .footer__nav-item a {
    font-size: 1.2rem;
  }
}

.footer__nav-item a::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background-color: var(--orange);
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer__nav-item a:hover {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}

.footer__nav-item a:hover::before {
  transform: rotate(90deg);
}

.footer__nav-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1080px) {
  .footer__nav-bottom {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  .footer__nav-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 20px;
  }
}

.footer__nav-bottom .footer__nav-ttl {
  border-bottom: 2px solid var(--orange);
}

.footer__copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #EEE;
  font-size: 1.2rem;
  color: var(--orange);
  font-family: var(--font-en);
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    padding-top: 30px;
  }
}


/* ========================================
    メインビジュアル
    ======================================== */
.mainV {
  position: relative;
  width: 100%;
  margin-top: 110px;
  /* ヘッダーの高さ分下げる */
  background: transparent;
}

@media screen and (max-width: 1080px) {
  .mainV {
    margin-top: 70px;
    /* SP/TBヘッダーの高さ */
  }
}

.mainV__inner {
  position: relative;
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 1080px) {
  .mainV__inner {
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  .mainV__inner {
    height: auto;
    min-height: 400px;
  }
}

.mainV__swiper {
  width: 80vw;
  height: 100%;
  margin-right: 0;
  margin-left: auto;
  /* 右端にピッタリくっつける */
  position: relative;
  z-index: 2;
  /* アクセント画像より上に配置 */
}

@media screen and (max-width: 480px) {
  .mainV__swiper {
    width: 94%;
    height: 55vh;
  }
}

.mainV__slide {
  width: 100%;
  height: 100%;
}

.mainV__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 160px;
}

@media screen and (max-width: 768px) {
  .mainV__slide img {
    border-radius: 0 0 0 80px;
  }
}

/* キャッチコピー（画像） */
.mainV__content {
  position: absolute;
  top: 50%;
  left: 6vw;
  transform: translateY(-50%);
  z-index: 10;
  width: auto;
}

@media screen and (max-width: 600px) {
  .mainV__content {
    left: 75%;
    transform: translate(-50%, -60%);
  }
}

.mainV__copy {
  width: clamp(72px, 6.5vw, 96px);
}

.mainV__copy img {
  width: 100%;
  height: auto;
}

/* 左下アクセント画像 */
.mainV__accent {
  position: absolute;
  bottom: 0;
  /* 下側にはみ出させる */
  left: 0;
  width: 50%;
  z-index: 1;
  transform: translateY(50%);
  /* スライドより下に配置 */
  pointer-events: none;
}

.mainV__accent img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1080px) {
  .mainV__accent {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .mainV__accent {
    width: 70%;
  }
}

@media screen and (max-width: 1080px) {
  .mainV__copy {
    width: 90px;
  }
}

@media screen and (max-width: 600px) {
  .mainV__copy {
    width: 70px;
  }
}

/* スワイパーページネーション */
.mainV__pagination.swiper-pagination-bullets {
  left: auto !important;
  right: 30px !important;
  bottom: 5% !important;
  transform: translateY(-50%);
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 20;
}

@media screen and (max-width: 600px) {
  .mainV__pagination.swiper-pagination-bullets {
    right: 13px !important;
  }
}

.mainV__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2.5px solid var(--orange);
  opacity: 1;
  margin: 0 !important;
}

.mainV__pagination .swiper-pagination-bullet-active {
  background: var(--white);
  border-color: var(--orange);
}

/* お知らせ・ナビゲーションセクション */
.top-nav {
  margin-top: 60px;
  position: relative;
  z-index: 20;
  padding-bottom: 0;
}

@media screen and (max-width: 1080px) {
  .top-nav {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .top-nav {
    margin-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  .top-nav {
    margin-top: 20px;
    padding-bottom: 0;
  }
}

.top-news {
  background: var(--orange);
  border-radius: 20px;
  color: var(--white);
  padding: 30px 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(217, 72, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 20px;
  }
}

.top-news__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .top-news__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.top-news__head {
  flex-shrink: 0;
}



.top-news__ttl {
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 600px) {
  .top-news__head {
    width: 100%;
  }

  .top-news__ttl {
    width: fit-content;
    font-size: 1.8rem;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}

.top-news__icon {
  width: 16px;
  height: 16px;
  border: 2.5px solid var(--white);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transform: translateY(1px);
}



.top-news__body {
  flex-grow: 1;
  width: 100%;
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-news__item {
  border-top: .5px solid var(--white);
  padding-top: 15px;
}

.top-news__item:first-child {
  border-top: none;
  padding-top: 0;
}

.top-news__link {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
  transition: 0.3s;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-news__link {
    font-size: 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.top-news__link:hover {
  opacity: 0.8;
}

.top-news__item:hover .top-news__link::after {
  transform: translate(5px, -50%);
}

.top-news__link::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/arrow-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.top-news__date {
  font-family: var(--font-secondary);
  margin-right: 30px;
  transform: translateY(2px);
}

/* ナビカード */
.top-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

@media screen and (max-width: 1080px) {
  .top-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .top-cards {
    gap: 10px;
  }
}

@media screen and (max-width: 600px) {
  .top-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 10px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .top-card {
    padding: 20px 10px 30px;
  }
}

.top-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.top-card:hover::before {
  opacity: 1;
}

.top-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  background-color: var(--orange);
  border-radius: 2px 2px 0 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.top-card:hover::after {
  background-color: var(--white);
}

.top-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .top-card__icon {
    width: 60px;
    height: 60px;
  }
}

.top-card:hover .top-card__icon {
  border-color: var(--orange);
  background-color: var(--white);
}

.top-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-card__label {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .top-card__label {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .top-card__label {
    font-size: 1.4rem;
  }
}

.top-card:hover .top-card__label {
  color: var(--white);
}

/* ========================================
    診療時間・外来案内
    ======================================== */



.top-info {
  padding: 80px 0;
  padding-bottom: 0 !important;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1080px) {
  .top-info {
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .top-info {
    padding: 40px 0;
  }
}

.top-info__inner {
  background-color: #F5EDD9;
  border-radius: 60px;
  padding: 60px;
}

@media screen and (max-width: 1080px) {
  .top-info__inner {
    padding: 40px;
    border-radius: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-info__inner {
    padding: 30px 20px;
    border-radius: 30px;
  }
}

.top-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media screen and (max-width: 1080px) {
  .top-info__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.top-info__card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
  .top-info__card {
    padding: 30px 20px;
  }
}

.top-info__card--outpatient {
  position: relative;
  padding-top: 24px;
  padding-bottom: 24px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #FF665A 0%, #FFBD59 100%) border-box;
  border: solid 10px transparent;
}

@media screen and (max-width: 600px) {
  .top-info__card--outpatient {
    border: solid 6px transparent;
  }
}

.top-info__card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.top-info__hours-body {
  flex-grow: 1;
}

.top-info__time-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.top-info__badge {
  background-color: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 15px;
  flex-shrink: 0;
}

.top-info__time {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  line-height: 1;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .top-info__time {
    font-size: 2.4rem;
  }
}

.top-info__sub {
  font-size: 1.3rem;
  color: #666;
}

.top-info__holiday {
  color: var(--orange);
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.top-info__note {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.top-info__btn-wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.top-info__outpatient-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.top-info__outpatient-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FF5F5F 0%, #FFB04E 100%);
}

.top-info__outpatient-en {
  color: var(--orange);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.top-info__outpatient-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  .top-info__outpatient-ttl {
    font-size: 2.8rem;
  }
}

.top-info__outpatient-ttl span {
  font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
  .top-info__outpatient-ttl span {
    font-size: 1.8rem;
  }
}

.top-info__outpatient-icon {
  width: 60px;
}

.top-info__outpatient-body {
  flex-grow: 1;
}

.top-info__outpatient-text {
  line-height: 1.8;
  margin-bottom: 30px;
}

.top-info__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 1080px) {
  .top-info__right {
    gap: 20px;
  }
}

.top-info__dept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.top-info__card--dept {
  padding: 24px 20px;
}

.top-info__card--dept .top-info__card-inner {
  gap: 16px;
}

.top-info__card--dept .m-btn-grad-circle {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top-info__card--dept .m-btn-grad-circle__text {
    display: none;
  }
}

.top-info__dept-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .top-info__dept-ttl {
    font-size: 1.8rem;
  }
}

/* ========================================
    ナビゲーションドロワー
    ======================================== */



/* ========================================
    投稿一覧ページ
    ======================================== */

/* ========================================
    投稿詳細ページ
    ======================================== */
.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.m-post-main p {
  margin-bottom: 20px;
  line-height: 2;
}

@media (max-width: 600px) {
  .m-post-main p {
    font-size: 1.4rem;
  }
}

.m-post-main a {
  display: inline-block;
  margin-bottom: 20px;
  color: #00AFED;
  text-decoration: underline;
}

.m-post-main h1 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 2.8rem;
  }
}

.m-post-main h2 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 2.2rem;
  }
}

.m-post-main h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 1.8rem;
  }
}




/* ========================================
    トップページ
    ======================================== 
*/




/* ========================================
    下層ページ
    ======================================== */
.l-2column {
  display: flex;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 120px;
}

@media screen and (max-width: 1080px) {
  .l-2column {
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .l-2column {
    flex-direction: column-reverse;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.l-2column__side {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 130px;
  align-self: flex-start;
}

@media screen and (max-width: 1080px) {
  .l-2column__side {
    width: 240px;
    top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .l-2column__side {
    width: 100%;
    position: static;
  }
}

.l-2column__main {
  flex-grow: 1;
  min-width: 0;
}

.l-2column__main-inner {
  position: relative;
  padding-top: 40px;
}

.l-2column__main-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FF5F5F 0%, #FFB04E 100%);
}

@media screen and (max-width: 768px) {
  .l-2column__main-inner {
    padding-top: 30px;
  }
}

/* サイドバーコンポーネント */
.m-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.m-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  text-decoration: none;
  color: #8B4513;
  font-weight: 500;
  font-size: 1.6rem;
  transition: 0.3s;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .m-sidebar__link {
    padding: 10px 16px;
    font-size: 1.5rem;
  }
}

.m-sidebar__link--current .m-sidebar__arrow {
  transform: translateX(35%);
}

.m-sidebar__link:not(.m-sidebar__link--current):hover {
  background-color: rgba(245, 237, 224, 0.5);
}

.m-sidebar__item:first-child .m-sidebar__link,
.m-sidebar__item:first-child .m-sidebar__link:hover {
  background-color: #F5EDD9;
  font-size: 2.1rem;
}

@media screen and (max-width: 768px) {

  .m-sidebar__item:first-child .m-sidebar__link,
  .m-sidebar__item:first-child .m-sidebar__link:hover {
    font-size: 2.0rem;
  }
}

.m-sidebar__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--orange);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: 0.3s;
}

.m-sidebar__item:first-child .m-sidebar__arrow {
  width: 36px;
  height: 36px;
}

.m-sidebar__item:hover .m-sidebar__arrow {
  transform: translateX(5px);
}

.m-sidebar__item:has(.m-sidebar__link--current):hover .m-sidebar__arrow {
  transform: translateX(35%);
}

.m-sidebar__arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/arrow-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.m-sidebar__link:not(.m-sidebar__link--current) .m-sidebar__arrow {
  background-color: #F5EDD9;
}

.m-sidebar__link:not(.m-sidebar__link--current) .m-sidebar__arrow::after {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/arrow-icon-2.webp);
  filter: brightness(0);
}

.m-sidebar__list .m-sidebar__item:first-child .m-sidebar__arrow {
  background-color: #fff;
}

.m-page-header {
  position: relative;
  padding: 100px 0 100px 6vw;
  margin-top: 110px;
  overflow: hidden;
  background-color: #FCFAF2;
}

@media screen and (max-width: 1080px) {
  .m-page-header {
    padding: 80px 0 80px 6vw;
  }
}

@media screen and (max-width: 768px) {
  .m-page-header {
    padding: 60px 0 60px 6vw;
  }
}

@media screen and (max-width: 600px) {
  .m-page-header {
    padding: 50px 0 50px 6vw;
  }
}

.m-page-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 1100px;
  padding-right: 20px;
}

.m-page-header__accent img {
  width: 100%;
  height: auto;
  display: block;
}

.m-page-header__title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #8B4513;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.m-page-header__title-main {
  font-size: 4.8rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .m-page-header__title-main {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 600px) {
  .m-page-header__title-main {
    font-size: 2.8rem;
  }
}

.m-page-header__title-sub {
  font-size: 2.0rem;
  font-weight: 500;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .m-page-header__title-sub {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .m-page-header__title-sub {
    font-size: 1.4rem;
  }
}

.m-page-header__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .m-page-header__text {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .m-page-header__text {
    font-size: 1.4rem;
  }
}

.m-page-header__bg-text {
  position: absolute;
  top: 50%;
  left: 6vw;
  transform: translateY(-50%);
  font-family: var(--font-secondary);
  font-size: clamp(5.0rem, 7vw, 11.0rem);
  font-weight: 700;
  color: #F6F2E6;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
}

@media screen and (max-width: 600px) {
  .m-page-header__bg-text {
    line-height: 1;
  }
}

.m-page-header__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .m-page-header__accent {
    width: 300px;
  }
}

@media screen and (max-width: 600px) {
  .m-page-header__accent {
    width: 200px;
  }
}





/* ========================================
    外来ナビゲーション
    ======================================== */
.m-page-nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 118px;
  background-color: #F5EDD9;
  padding: 100px 60px;
  position: relative;
  margin-bottom: 120px;
}

@media screen and (max-width: 1080px) {
  .m-page-nav {
    padding: 80px 40px;
    margin-bottom: 100px;
    margin-top: 90px;
  }
}

@media screen and (max-width: 768px) {
  .m-page-nav {
    padding: 60px 20px;
    margin-bottom: 80px;
    margin-top: 70px;
  }
}

@media screen and (max-width: 600px) {
  .m-page-nav {
    padding: 60px 15px;
    margin-bottom: 60px;
    margin-top: 50px;
  }
}


.m-page-nav::before,
.m-page-nav::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%);
}

.m-page-nav::before {
  top: 0;
}

.m-page-nav::after {
  bottom: 0;
}


.m-page-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1080px) {
  .m-page-nav__list {
    column-gap: 40px;
    row-gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  .m-page-nav__list {
    column-gap: 30px;
    row-gap: 40px;
  }
}

@media screen and (max-width: 600px) {
  .m-page-nav__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.m-page-nav__item {
  position: relative;
  padding-bottom: 30px;
}

.m-page-nav__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%);
}

.m-page-nav__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.m-page-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .m-page-nav__header {
    margin-bottom: 15px;
  }
}

.m-page-nav__title {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--orange);
  margin: 0;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .m-page-nav__title {
    font-size: 2.0rem;
  }
}

.m-page-nav__btn {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.m-page-nav__btn img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 600px) {
  .m-page-nav__btn {
    width: 40px;
    height: 40px;
  }
}

.m-page-nav__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary-color);
  margin: 0;
}

@media screen and (max-width: 600px) {
  .m-page-nav__text {
    font-size: 1.4rem;
  }
}

/* ホバーアクション */
.m-page-nav__link:hover .m-page-nav__btn {
  transform: scale(1.15);
}

.m-page-nav__link:hover .m-page-nav__title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%);
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy__title {
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}

.policy__content .wp-block-heading {
  font-size: 2.0rem;
  margin-top: 30px;
}

.policy__content .wp-block-spacer {
  height: 40px !important;
}

.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}

.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
}



/* ========================================
    お問い合わせ
    ======================================== */
.cf7-char-counter {
  text-align: right;
  font-size: 0.85em;
  color: #666;
  margin-top: 4px;
}

.contact {
  background-color: #FEFBF3;
  padding: 100px 0;
}

@media screen and (max-width: 600px) {
  .contact {
    padding: 60px 0;
  }
}

.contact__info {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 600px) {
  .contact__info {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-align: left;
  }
}

.contact__form {
  max-width: 800px;
  margin: 64px auto 0;
}

@media screen and (max-width: 600px) {
  .contact__form {
    margin-top: 40px;
  }
}

.contact__thanks {
  text-align: center;
}

.contact__thanks-text {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
  .contact__thanks-text {
    font-size: 1.6rem;
    margin-bottom: 40px;
    text-align: left;
  }
}

.contact__thanks-btn {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

.contact__thanks-btn::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpath d='M1 1l6 6-6 6' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  .contact__thanks-btn::after {
    right: 20px;
    width: 6px;
    height: 10px;
  }
}

.form-unit {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .form-unit {
    margin-bottom: 30px;
  }
}

.form-unit__head {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

@media screen and (max-width: 600px) {
  .form-unit__head {
    font-size: 1.6rem;
  }
}

.form-unit__head::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #F26649;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

.m-required::after {
  content: " (必須)";
  color: #F26649;
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 4px;
}

@media screen and (max-width: 600px) {
  .m-required::after {
    font-size: 1.2rem;
  }
}

.form-unit__input,
.form-unit__textarea,
.wpcf7-select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #E5E5E5;
  background: #fff;
  border-radius: 0;
  font-size: 1.6rem;
  box-sizing: border-box;
  font-family: inherit;
}

.form-unit__input:focus,
.form-unit__textarea:focus,
.wpcf7-select:focus {
  outline: none;
  border-color: #F26649;
}

.form-unit__textarea {
  height: 240px;
}

@media screen and (max-width: 600px) {
  .form-unit__textarea {
    height: 180px;
  }
}

/* Select custom arrow */
.wpcf7-form-control-wrap {
  display: block;
}

select.wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}

.wpcf7-radio,
.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 8px 0;
}

@media screen and (max-width: 600px) {

  .wpcf7-radio,
  .wpcf7-checkbox {
    gap: 12px 24px;
  }
}

.wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.wpcf7-list-item input[type="radio"],
.wpcf7-list-item input[type="checkbox"] {
  -webkit-appearance: auto;
  appearance: auto;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: #F26649;
  cursor: pointer;
  flex-shrink: 0;
}

.wpcf7-list-item-label {
  font-size: 1.6rem;
  color: var(--primary-color);
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}

.form-unit__note {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #666;
}

@media screen and (max-width: 600px) {
  .form-unit__note {
    font-size: 1.2rem;
  }
}

.form-consent {
  margin: 80px 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .form-consent {
    margin: 60px 0;
    text-align: left;
  }
}

.form-consent__text {
  font-size: 1.4rem;
  line-height: 2;
  color: var(--primary-color);
}

@media screen and (max-width: 600px) {
  .form-consent__text {
    font-size: 1.3rem;
  }
}

.form-unit__policy-link {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s;
}

.form-unit__policy-link:hover {
  opacity: 0.7;
}

.form-submit-wrap {
  text-align: center;
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  background: linear-gradient(90deg, #FF665A 0%, #FFBD59 100%);
  color: #fff;
  border: none;
  border-radius: 36px;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.form-submit:hover {
  opacity: 0.8;
}

.form-submit-wrap::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 30%;
  width: 8px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpath d='M1 1l6 6-6 6' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  .form-submit {
    height: 60px;
    font-size: 1.6rem;
  }

  .form-submit-wrap::after {
    right: 20px;
    width: 6px;
    height: 10px;
  }
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 10px !important;
  border: 1px solid #F26649 !important;
  border-radius: 4px;
  text-align: center;
}

.wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #F26649;
  margin-top: 5px;
}

/* .wpcf7-spinner {
  display: none;
} */

.wpcf7-previous {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  text-align: center;
}

/* ========================================
    お知らせセクション (top-topics)
    ======================================== */
.top-topics-wrap {
  background: #fff;
  padding-top: 100px;
  margin-top: -100px;
}

.top-topics {
  padding: 100px 0;
}

@media screen and (max-width: 1080px) {
  .top-topics {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .top-topics {
    padding: 60px 0;
  }
}

@media screen and (max-width: 600px) {
  .top-topics {
    padding: 40px 0;
  }
}

.top-topics .section-ttl {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .top-topics .section-ttl {
    margin-bottom: 40px;
  }
}

.top-topics__tabs {
  margin-bottom: 40px;
  border-bottom: 1px solid #E0E0E0;
}

@media screen and (max-width: 1080px) {
  .top-topics__tabs {
    border-bottom: none;
    margin-bottom: 30px;
  }
}

.top-topics__tab-list {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

@media screen and (max-width: 1080px) {
  .top-topics__tab-list {
    gap: 15px 10px;
  }
}

.top-topics__tab-item {
  width: 140px;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .top-topics__tab-item {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .top-topics__tab-item {
    width: 33.33%;
  }
}

@media screen and (max-width: 600px) {
  .top-topics__tab-item {
    width: calc(50% - 5px);
  }
}

.top-topics__tab-item span {
  display: block;
  padding: 15px 0;
  font-weight: 600;
  color: var(--orange);
  cursor: pointer;
  transition: 0.3s;
  border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 1080px) {
  .top-topics__tab-item span {
    padding: 10px 0;
    border-radius: 30px;
    background-color: #F9F7F2;
    border: 1px solid var(--orange);
    font-size: 1.4rem;
  }
}

.top-topics__tab-item.is-active span {
  background-color: #D94800;
  color: var(--white);
}

@media screen and (max-width: 1080px) {
  .top-topics__tab-item.is-active span {
    border-color: #D94800;
  }
}

.top-topics__list {
  margin-bottom: 60px;
}

.top-topics__link {
  display: flex;
  align-items: center;
  padding: 25px;
  text-decoration: none;
  color: var(--primary-color);
  transition: 0.3s;
  border-bottom: 1px solid #CCCCCC;
}

@media screen and (max-width: 768px) {
  .top-topics__link {
    flex-wrap: wrap;
    padding: 20px 0;
  }
}

.top-topics__link:hover {
  background-color: rgba(245, 237, 217, 0.3);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, #FF665A 0%, #FFBD59 100%) 1;
}

.top-topics__item-info {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 300px;
  flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
  .top-topics__item-info {
    width: 250px;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-topics__item-info {
    width: 100%;
    margin-bottom: 10px;
    gap: 15px;
  }
}

.top-topics__date {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  color: #666;
}

@media screen and (max-width: 600px) {
  .top-topics__date {
    font-size: 1.4rem;
  }
}

.top-topics__category {
  background-color: #F5EDD9;
  color: #666666;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  min-width: 110px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .top-topics__category {
    min-width: 80px;
    padding: 5px 10px;
    font-size: 1.2rem;
    background-color: #F6EFD8;
  }
}

.top-topics__title {
  font-size: 1.8rem;
  font-weight: 400;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .top-topics__title {
    width: calc(100% - 30px);
  }
}

@media screen and (max-width: 600px) {
  .top-topics__title {
    font-size: 1.5rem;
  }
}

.top-topics__arrow {
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .top-topics__arrow {
    margin-left: auto;
  }
}

.top-topics__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/icon/arrow-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) saturate(100%) invert(88%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(94%) contrast(91%);
  transition: all 0.3s ease;
}

.top-topics__link:hover .top-topics__arrow {
  transform: translateX(10px);
}

.top-topics__link:hover .top-topics__arrow::after {
  background-image: url(../img/icon/arrow-icon-2.webp);
  filter: none;
}

.top-topics__btn-wrap {
  text-align: center;
}

/* 一覧を見るボタン（グラデーション） */
.m-btn-grad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 80px;
  margin: 0 auto;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #FF665A 0%, #FFBD59 100%);
  border-radius: 40px;
  transition: 0.3s;
  position: relative;
}

@media screen and (max-width: 600px) {
  .m-btn-grad {
    height: 64px;
    max-width: 320px;
    font-size: 1.6rem;
  }
}

.m-btn-grad span {
  position: relative;
  padding-right: 30px;
  width: 100%;
  text-align: center;
}

.m-btn-grad span::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/icon/arrow-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}

.m-btn-grad span::after {
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  background-image: url(../img/icon/arrow-icon.webp);
  background-size: 20px;
}

.m-btn-grad:hover span::after {
  right: 34px;
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  background-image: url(../img/icon/arrow-icon-2.webp);
  background-size: 20px;
}

@media screen and (max-width: 600px) {
  .m-btn-grad:hover span::after {
    width: 44px;
    height: 44px;
    background-size: 16px;
  }
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.mtb-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-center {
  text-align: center;
}

.u-border-top-none.p-time-table__inner table:first-child,
.u-border-top-none.p-time-table__inner tbody th:first-child,
.u-border-top-none.p-time-table__inner td {
  border-top: none !important;
}

/* .p-time-table__inner td {
  border: none !important;
} */

@media screen and (max-width: 430px) {
  .fz-20 {
    font-size: 16px !important;
  }
}

.top-guide__bg {
  background: #fff;
}

/* ========================================
    ガイドセクション (top-guide)
    ======================================== */
.top-guide {
  padding: 100px 0 160px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .top-guide {
    padding: 60px 0 100px;
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .top-guide {
    padding: 40px 0 80px;
    padding-top: 0;
  }
}

.top-guide__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1080px) {
  .top-guide__inner {
    gap: 60px;
  }
}

@media screen and (max-width: 768px) {
  .top-guide__inner {
    gap: 40px;
  }
}

.top-guide__item {
  display: flex;
  width: 85vw;
  background-color: #F5EDD9;
  align-items: center;
  position: relative;
  border-bottom: 6px solid #FF5F5F;
}

.top-guide__item:nth-child(odd) {
  margin-left: auto;
}

.top-guide__item:nth-child(even) {
  margin-right: auto;
}

.top-guide__item--hospital {
  border-top-left-radius: 50px;
}

.top-guide__item--nursing {
  border-top-right-radius: 50px;
}

.top-guide__item--about {
  border-top-left-radius: 50px;
}

@media screen and (max-width: 1080px) {
  .top-guide__item {
    width: 95vw;
  }

  .top-guide__item--hospital {
    border-top-left-radius: 40px;
  }

  .top-guide__item--nursing {
    border-top-right-radius: 40px;
  }

  .top-guide__item--about {
    border-top-left-radius: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-guide__item {
    width: 100%;
    flex-direction: column;
  }

  .top-guide__item--hospital {
    border-top-left-radius: 30px;
  }

  .top-guide__item--nursing {
    border-top-right-radius: 30px;
  }

  .top-guide__item--about {
    border-top-left-radius: 30px;
  }
}

.top-guide__content {
  padding: 60px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1080px) {
  .top-guide__content {
    padding: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-guide__content {
    padding: 30px 20px;
    order: 2;
  }
}

.top-guide__head {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.top-guide__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FF5F5F 0%, #FFB04E 100%);
}

.top-guide__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-guide__en {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;

  /* ▼ グラデーション反映 ▼ */
  background: linear-gradient(to right,
      #F54747 0%,
      #FF9354 73%,
      #FFAB2E 92%,
      #FFC546 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.top-guide__en::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid #FF8E4F;
  border-radius: 50%;
}

.top-guide__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.01em;
}

@media screen and (max-width: 1080px) {
  .top-guide__ttl {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .top-guide__ttl {
    font-size: 2.4rem;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.top-guide__ttl span {
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 10px;
}

.top-guide__icon {
  width: 50px;
}

.top-guide__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .top-guide__icon {
    width: 40px;
  }
}

.top-guide__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #444;
}

@media screen and (max-width: 768px) {
  .top-guide__text {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.top-guide__btn {
  margin-top: auto;
}

.top-guide__img {
  flex: 0 0 50vw;
  min-height: 480px;
}

@media screen and (max-width: 1080px) {
  .top-guide__img {
    min-height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .top-guide__img {
    flex: 0 0 auto;
    width: 100%;
    min-height: 250px;
    order: 1;
  }
}

.top-guide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-guide__accent {
  position: absolute;
  width: 50vw;
  z-index: -1;
  pointer-events: none;
}

.top-guide__accent--01 {
  bottom: 0;
  right: 0;
  transform: translateY(50%);
}

.top-guide__accent--02 {
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}

.top-guide__accent--03 {
  top: 0;
  right: 0;
  transform: translateY(25%);
}

.top-guide__accent--04 {
  top: 0;
  left: 0;
  transform: translateY(25%);
}

@media screen and (max-width: 480px) {
  .top-guide__accent--recruit {
    bottom: 0%;
    left: 0;
    transform: translateY(100%);
  }

}

@media screen and (max-width: 480px) {
  .top-guide__accent--access-01 {
    top: 40%;
    right: 0;
  }
}

@media screen and (max-width: 480px) {
  .top-guide__accent--access-02 {
    top: 0;
    left: 0;
    transform: translateY(100%);
  }
}

/* ========================================
    採用セクション (top-recruit)
    ======================================== */
.top-recruit {
  padding-bottom: 160px;
}

@media screen and (max-width: 1080px) {
  .top-recruit {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .top-recruit {
    padding-bottom: 80px;
  }
}

.top-recruit__inner {
  position: relative;
  z-index: 1;
}

.top-recruit__item {
  display: flex;
  width: 100%;
  margin-right: auto;
  background-color: transparent;
  overflow: visible;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .top-recruit__item {
    width: 95vw;
  }
}

@media screen and (max-width: 768px) {
  .top-recruit__item {
    width: 100%;
    flex-direction: column;
  }
}

.top-recruit__img {
  flex: 0 0 46vw;
  min-height: 520px;
}

@media screen and (max-width: 1080px) {
  .top-recruit__img {
    min-height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .top-recruit__img {
    flex: 0 0 auto;
    width: 100%;
    min-height: 300px;
  }
}

.top-recruit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .top-recruit__img img {
    aspect-ratio: 1/1;
  }

}

.top-recruit__content {
  width: fit-content;
  padding: 40px 0 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .top-recruit__content {
    padding: 30px 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-recruit__content {
    padding: 30px 20px;
  }
}

.top-recruit__message {
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .top-recruit__message {
    max-width: 320px;
    margin-bottom: 30px;

  }
}

@media screen and (max-width: 600px) {
  .top-recruit__message {
    margin-top: -50px;
  }
}

.top-recruit__message img {
  width: 100%;
  height: auto;
}

.top-recruit__body {
  max-width: 480px;
}

@media screen and (max-width: 768px) {
  .top-recruit__body {
    max-width: 100%;
  }
}

.top-recruit__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #444;
}

@media screen and (max-width: 768px) {
  .top-recruit__text {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.top-recruit__btn {
  margin-top: auto;
}

/* ========================================
    アクセスセクション (top-access)
    ======================================== */
.top-access {
  padding: 100px 0 160px;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .top-access {
    padding: 80px 0 100px;
  }
}

@media screen and (max-width: 768px) {
  .top-access {
    padding: 60px 0 80px;
  }
}

.top-access__head {
  text-align: center;
  margin-bottom: 60px;
}

.top-access .section-ttl {
  text-align: center;
}

.top-access__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.top-access__content {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 500px;
}

@media screen and (max-width: 1080px) {
  .top-access__content {
    min-height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .top-access__content {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
}

.top-access__info {
  background-color: var(--white);
  border-radius: 40px;
  padding: 60px;
  width: 45%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 2;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .top-access__info {
    width: 55%;
    padding: 40px;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .top-access__info {
    position: static;
    width: 100%;
    transform: none;
    margin-bottom: -40px;
    border-radius: 30px;
    padding: 40px 30px;
  }
}

@media screen and (max-width: 600px) {
  .top-access__info {
    padding: 30px 20px;
  }
}

.top-access__hospital-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .top-access__hospital-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 600px) {
  .top-access__hospital-name {
    font-size: 1.6rem;
  }
}

.top-access__address,
.top-access__access-info {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {

  .top-access__address,
  .top-access__access-info {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

.top-access__access-info {
  font-weight: 400;
}

.top-access__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-access__map-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 20px;
  width: fit-content;
  padding-bottom: 4px;
  transition: opacity 0.3s;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #FF5F5F 0%, #FFB04E 100%) 1;
}

@media screen and (max-width: 768px) {
  .top-access__map-link {
    margin-top: 10px;
    font-size: 1.5rem;
  }
}

.top-access__map-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}

.top-access__map-link:hover {
  opacity: 0.7;
}

.top-access__btn {
  margin-top: 10px;
}

.top-access__img {
  width: 65%;
  margin-left: auto;
  overflow: hidden;
  height: 500px;
}

@media screen and (max-width: 1080px) {
  .top-access__img {
    width: 60%;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .top-access__img {
    width: 100%;
    height: 300px;
    margin-left: 0;
  }
}

@media screen and (max-width: 600px) {
  .top-access__img {
    height: 250px;
  }
}

.top-access__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
    お問い合わせセクション (top-cta)
    ======================================== */
.top-cta {
  padding: 100px 0 160px;
  background-color: #F5EDD9;
}

@media screen and (max-width: 1080px) {
  .top-cta {
    padding: 80px 0 100px;
  }
}

@media screen and (max-width: 768px) {
  .top-cta {
    padding: 60px 0 80px;
  }
}

@media screen and (max-width: 600px) {
  .top-cta {
    padding: 40px 0 60px;
  }
}

.top-cta .section-ttl {
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary-color);
}

@media screen and (max-width: 600px) {
  .top-cta .section-ttl {
    margin-bottom: 30px;
  }
}

.top-cta__box {
  background-color: var(--white);
  border-radius: 50px;
  padding: 100px 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .top-cta__box {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__box {
    border-radius: 30px;
    padding: 50px 30px;
  }
}

@media screen and (max-width: 600px) {
  .top-cta__box {
    padding: 40px 20px;
    border-radius: 20px;
  }
}

.top-cta__text {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 60px;
  color: #333;
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .top-cta__text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

.top-cta__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}

@media screen and (max-width: 1080px) {
  .top-cta__content {
    gap: 80px;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__content {
    flex-direction: column;
    gap: 50px;
  }
}

@media screen and (max-width: 600px) {
  .top-cta__content {
    gap: 30px;
  }
}

.top-cta__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 600px) {
  .top-cta__info {
    gap: 40px;
  }
}

.top-cta__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .top-cta__row {
    justify-content: center;
  }
}

.top-cta__info-content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .top-cta__info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.top-cta__label-wrap {
  margin-bottom: 0;
  border-right: 1.5px solid var(--secondary-color);
  padding-right: 15px;
  height: 20px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .top-cta__label-wrap {
    margin-bottom: 10px;
    border-right: none;
    padding-right: 0;
    height: auto;
  }
}

.top-cta__label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #8B4513;
  display: inline-block;
  position: relative;
  font-family: var(--font-secondary);
}

@media screen and (max-width: 768px) {
  .top-cta__label {
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
}

.top-cta__label::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .top-cta__label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #8B4513;
  }
}

.top-cta__number-row {
  display: flex;
  align-items: center;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  .top-cta__number-row {
    padding-left: 0;
    justify-content: center;
  }
}

.top-cta__number {
  font-size: 4rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  line-height: 1;
  font-family: var(--font-secondary);
}

@media screen and (max-width: 1080px) {
  .top-cta__number {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__number {
    font-size: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .top-cta__number {
    font-size: 2.8rem;
  }
}

.top-cta__time {
  grid-column: 2;
  font-size: 1.4rem;
  color: #333;
  margin-top: 5px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .top-cta__time {
    font-size: 1.4rem;
    text-align: center;
    padding-left: 0;
    margin-top: 10px;
  }
}

@media screen and (max-width: 600px) {
  .top-cta__time {
    font-size: 1.3rem;
  }
}

.top-cta__btn-wrap {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .top-cta__btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.top-cta__btn-wrap .m-btn-grad-border {
  width: 480px;
  height: 90px;
  border-radius: 50px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1080px) {
  .top-cta__btn-wrap .m-btn-grad-border {
    width: 400px;
    height: 80px;
    border-radius: 40px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__btn-wrap .m-btn-grad-border {
    width: 300px;
    height: 70px;
    border-radius: 35px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 600px) {
  .top-cta__btn-wrap .m-btn-grad-border {
    width: 100%;
    max-width: 280px;
    height: 60px;
    font-size: 1.6rem;
  }
}

.top-cta__btn-wrap .m-btn-grad-border span {
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .top-cta__btn-wrap .m-btn-grad-border span {
    padding-right: 30px;
  }
}

@media screen and (max-width: 600px) {
  .top-cta__btn-wrap .m-btn-grad-border span {
    padding-right: 25px;
  }
}

.top-cta__btn-wrap .m-btn-grad-border span::after {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .top-cta__btn-wrap .m-btn-grad-border span::after {
    width: 16px;
    height: 16px;
  }
}

.top-btm {
  width: 100%;
  height: 33vh;
}

.top-btm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ========================================
    ブロックエディタ
    ======================================== */
.wp-block-image img {
  aspect-ratio: 1/.7;
  object-fit: contain;
}

@media screen and (max-width: 600px) {
  body .is-layout-flex {
    flex-direction: column-reverse;
  }
}



@media screen and (max-width: 600px) {
  .wp-block-columns.m-doctor-intro__grid.m-doctor-intro__grid-reverse.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
    flex-direction: column;
  }

}

/* ========================================
    お知らせ一覧 (p-news)
    ======================================== */
.p-news {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .p-news {
    padding: 50px 0;
  }
}

/* カテゴリーフィルター */
.p-news__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .p-news__category-list {
    gap: 10px;
    margin-bottom: 40px;
  }
}

.p-news__category-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 8px 20px;
  border: 1px solid var(--orange);
  border-radius: 30px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  background-color: var(--white);
}

@media screen and (max-width: 600px) {
  .p-news__category-item a {
    min-width: 80px;
    padding: 6px 15px;
    font-size: 1.3rem;
  }
}

.p-news__category-item.is-active a,
.p-news__category-item a:hover {
  background-color: var(--orange);
  color: var(--white);
}

/* 記事リスト */
.p-news__list {
  display: flex;
  flex-direction: column;
}

.p-news__item {
  border-bottom: 1px solid transparent;
  position: relative;
}

.p-news__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #D94800, #FFCC00);
}

.p-news__link {
  display: flex;
  padding: 40px 20px;
  text-decoration: none;
  color: inherit;
  gap: 40px;
  transition: background-color 0.3s;
}

.p-news__link:hover {
  background-color: rgba(245, 237, 217, 0.3);
}

@media screen and (max-width: 768px) {
  .p-news__link {
    gap: 20px;
    padding: 30px 15px;
  }
}

@media screen and (max-width: 600px) {
  .p-news__link {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
}

.p-news__img {
  width: 240px;
  flex-shrink: 0;
  aspect-ratio: 1.5;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
  .p-news__img {
    width: 180px;
  }
}

@media screen and (max-width: 600px) {
  .p-news__img {
    width: 100%;
  }
}

.p-news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news__content {
  flex-grow: 1;
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 600px) {
  .p-news__meta {
    gap: 10px;
    margin-bottom: 8px;
  }
}

.p-news__date {
  font-size: 1.4rem;
  color: #888;
  font-family: var(--font-secondary);
}

.p-news__category-label {
  background-color: #F5EDD9;
  color: #666666;
  font-size: 1.2rem;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.p-news__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #D94800;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .p-news__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.p-news__excerpt {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ページネーション */
.p-news__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.p-news__pagination .page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 10px;
  align-items: center;
}

.p-news__pagination .page-numbers li {
  display: flex;
}

.p-news__pagination .page-numbers a,
.p-news__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
  background-color: #F5EBDD;
  color: #8B4513;
}

.p-news__pagination .page-numbers span.current {
  background-color: var(--secondary-color);
  color: var(--white);
}

.p-news__pagination .page-numbers a:hover {
  background-color: var(--orange);
  color: var(--white);
}

.p-news__pagination .page-numbers .dots {
  background-color: transparent;
  width: auto;
}

/* ========================================
    投稿詳細 (p-entry)
    ======================================== */
.p-entry {
  padding: 80px 0;
}

@media screen and (max-width: 1080px) {
  .p-entry {
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  .p-entry {
    padding: 40px 0;
  }
}

.p-entry__header {
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .p-entry__header {
    margin-bottom: 30px;
  }
}

.p-entry__title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.p-entry__title::before {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  background-color: var(--orange);
  border-radius: 10px;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .p-entry__title {
    gap: 10px;
  }

  .p-entry__title::before {
    width: 16px;
    height: 6px;
  }
}

.p-entry__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  color: #666;
}

@media screen and (max-width: 600px) {
  .p-entry__meta {
    gap: 15px;
    font-size: 1.4rem;
  }
}

.p-entry__category {
  display: inline-block;
  padding: 4px 16px;
  background-color: #F5EDD9;
  color: #8B4513;
  border-radius: 4px;
  font-weight: 500;
}

.p-entry__thumbnail {
  margin-bottom: 60px;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .p-entry__thumbnail {
    margin-bottom: 40px;
  }
}

.p-entry__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.p-entry__content {
  line-height: 2;
  font-size: 1.6rem;
  color: var(--primary-color);
}

@media screen and (max-width: 600px) {
  .p-entry__content {
    font-size: 1.5rem;
  }
}

/* 記事内要素のスタイリング */
.p-entry__content h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(2.2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #8B4513;
  margin: 60px 0 30px;
}

.p-entry__content h2::before {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  background-color: var(--orange);
  border-radius: 10px;
  flex-shrink: 0;
}

.p-entry__content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #8B4513;
  margin: 40px 0 20px;
}

.p-entry__content h3::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .p-entry__content h2 {
    margin: 40px 0 20px;
    gap: 10px;
  }

  .p-entry__content h2::before {
    width: 16px;
    height: 6px;
  }

  .p-entry__content h3 {
    margin: 30px 0 15px;
    gap: 8px;
  }

  .p-entry__content h3::before {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
}

.p-entry__content p {
  margin-bottom: 2em;
}

.p-entry__content a {
  color: var(--orange);
  text-decoration: underline;
  transition: opacity 0.3s;
}

.p-entry__content a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.p-entry__content ul,
.p-entry__content ol {
  margin: 0 0 2em 1.5em;
}

.p-entry__content li {
  margin-bottom: 0.5em;
}

.p-entry__content ul li {
  list-style-type: disc;
}

.p-entry__content ol li {
  list-style-type: decimal;
}

.p-entry__content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2em;
  border-radius: 4px;
}

.p-entry__content blockquote {
  margin: 0 0 2em;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid var(--orange);
  font-style: italic;
}

.access-map {
  padding: 100px 0;
}

@media screen and (max-width: 600px) {
  .access-map {
    padding: 40px 0;
  }
}


/*  */
.u-css {
  position: relative;
}

.u-css::before {
  content: "画像差し替え予定";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  width: 100%;
  color: #D94800;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(217, 72, 0, .2);
}


.wp-block-group .gmap {
  aspect-ratio: 16/9;
  width: 100%;
  height: 45vh;
}

@media screen and (max-width: 600px) {
  .wp-block-group .gmap {
    aspect-ratio: 16/9;
    width: 100%;
    height: 35vh;
  }
}