/* ===== スマホ画面はみ出し対策 ===== */
html,
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.header-wrap,
.header-main,
.nav__wrap,
.container,
.row {
  max-width: 100%;
  overflow-x: hidden;
}

/* ========================
  ヘッダーカスタムスタイル
======================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  h1 div {
    line-height: 1em;
  }
}

.header-head a {
  display: inline-block;
}

.header-copy img {
  max-height: 95px;
  width: auto;
}

@media (max-width: 767px) {
  .header-copy img {
    max-height: 50px;
  }
}

.header-info {
  display: block;
}

.address-text {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.4;
}

.header-tel .tel-text span {
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-color);
  /*font-family: "EB Garamond", serif;*/
}

.header-tel .address-text {
  font-size: 1rem;
  line-height: 1.4;
}

.tel-box {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.tel-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.tel-text {
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #f18200;
  margin: 0;
}

.header-btn {
  position: relative;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.header-btn span,
.header-btn::before,
.header-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #727171;
  transition: all 0.3s ease;
  display: block;
}

.header-btn span {
  top: 10px; /* 中央 */
}
.header-btn::before {
  top: 4px; /* 上段 */
}
.header-btn::after {
  top: 16px; /* 下段 */
}

.header-btn.is-active::before {
  transform: rotate(45deg);
  top: 10px;
}
.header-btn.is-active::after {
  transform: rotate(-45deg);
  top: 10px;
}
.header-btn.is-active span {
  opacity: 0;
}

.nav__bg {
  background-color: rgba(0, 0, 0, 0.5);
}

.nav.show,
.nav__bg.show {
  right: 0 !important;
}

@media (max-width: 767px) {
  h1 {
    font-size: 1em;
    margin: 0;
  }
}

.header_nav ul li.has_under {
  position: relative;
}

.header_nav ul li.has_under .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 0;
  display: none;
  z-index: 1000;
  width: 200px;
}

.header_nav ul li.has_under:hover .sub-menu {
  display: block;
}

.header_nav ul li.has_under .sub-menu li {
  display: block;
  text-align: left;
}

.header_nav ul li.has_under .sub-menu li a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}

.header_nav ul li.has_under .sub-menu li a:hover {
  background: var(--main-color);
  color: #fff;
}

.header_nav ul li.has_under > a {
  position: relative;
  display: inline-block;
  /* color: #312C28; */
  color: #727171;
}

.header_nav ul li.has_under > a::after {
  content: "";
  z-index: 2;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  /* background-image: url('/wp-content/uploads/arrow-down.svg'); */
  background-image: url("/wp-content/uploads/2025/09/arrow_250901.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  /* filter: brightness(0) saturate(100%) invert(17%) sepia(11%) saturate(466%) hue-rotate(8deg) brightness(98%) contrast(92%); */
}

.header_nav ul li.has_under:hover > a::after {
  transform: translateX(-50%) rotate(180deg);
  filter: brightness(0) saturate(100%) invert(89%) sepia(20%) saturate(854%)
    hue-rotate(321deg) brightness(104%) contrast(102%);
}

.header_nav ul li.has_under .sub-menu {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 20px 0 10px 0;
  display: none;
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header_nav ul li.has_under:hover .sub-menu {
  display: block;
}

.header_nav ul li.has_under:hover > a {
  color: #ffc489;
  transition: color 0.3s ease;
}

.header_nav ul li.has_under .sub-menu li {
  display: block;
  padding: 0;
}

.header_nav ul li.has_under .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  border-bottom: 1px dotted #ccc;
  position: relative;
  text-decoration: none;
}

.header_nav ul li.has_under .sub-menu li a::before {
  content: "›";
  margin-right: 10px;
  color: #312c28;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.header_nav ul li.has_under .sub-menu li a:hover {
  color: #ffc489;
}

.header_nav ul li.has_under .sub-menu li a:hover::before {
  color: #ffc489;
}

.header_nav ul li.has_under .sub-menu li:last-child a {
  border-bottom: none;
}

.header_nav ul li.has_under .sub-menu li a:hover {
  opacity: 0.8;
  background: #f7f7f7;
}

.header-btn {
  position: relative;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}
.header-btn::before,
.header-btn::after,
.header-btn span {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #727171;
  left: 0;
  transition: all 0.3s ease;
}
.header-btn span {
  top: 39%;
  transform: translateY(-50%);
}
.header-btn::before {
  top: 0;
}
.header-btn::after {
  bottom: 0;
}

.header-btn.is-active::before {
  transform: rotate(45deg);
  top: 10px;
}
.header-btn.is-active::after {
  transform: rotate(-45deg);
  bottom: 10px;
}
.header-btn.is-active span {
  opacity: 0;
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fde1b6;
  transition: right 0.3s ease;
  z-index: 9998;
  overflow-y: auto;
  margin-top: 0;
  padding-bottom: 0;
}

.nav.show {
  right: 0;
}
.nav__wrap {
  padding: 20px;
  height: 100%;
  overflow-y: auto;
}

.nav__items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__items li {
  background: #fff;
  margin-bottom: 5px;
  font-size: 16px;
  color: #312c28;
}

.nav__items li a {
  color: #1a1311;
  font-weight: 700;
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.nav__items li.has_under > a {
  position: relative;
  display: block;
}
.nav__items li.has_under > a::after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.nav__items li.has_under.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.nav__items li .sub-menu {
  display: none;
  background: #fff;
  border-top: 1px dotted #ccc;
}
.nav__items li.open .sub-menu {
  display: block;
}

.nav__items li .sub-menu li {
  padding: 0;
  font-size: 15px;
  border-bottom: none;
}

.nav__items li .sub-menu li a {
  display: block;
  color: #1a1311;
  border-bottom: 1px dotted #ccc;
  padding: 0;
}

.nav__items li.has_under.open > a {
  background: #f6f6f6;
  color: #ffc489 !important;
  font-weight: 700 !important;
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__items li.has_under > a::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/wp-content/uploads/arrow-down.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
  margin-left: 8px;
  content: "";
}

.nav__items li.has_under.open > a::after {
  transform: rotate(180deg);
  background-image: url("/wp-content/uploads/arrow-down.svg");
}

.nav__items li.has_under .sub-menu li a {
  display: block;
  padding: 18px 16px;
  border-bottom: 1px dotted #ccc;
  color: #1a1311;
}

/* ========================
  フッター
======================== */

.footer-top {
  padding: 40px 0;
  background-image: url("/wp-content/uploads/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .footer-top {
    background-image: url("/wp-content/uploads/sp-footer-bg.png");
  }
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-left {
  flex: 1 1 40%;
  text-align: center;
}

.footer-logo {
  max-width: 300px;
  margin: 0 auto 10px;
}

.footer-clinic-name {
  font-size: 24px;
  font-weight: bold;
  color: #6d6d6d;
  margin-bottom: 10px;
}

.footer-departments {
  margin-bottom: 15px;
}

.label {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 14px;
  margin-right: 5px;
}

.label.orange {
  background: #ff7900;
}

.label.light-orange {
  background: #ffa94d;
}

.footer-tel {
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-color);
  /*font-family: "EB Garamond", serif;*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  letter-spacing: 0.1em;
}

.tel-icon {
  width: 30px;
  height: auto;
  margin-right: 8px;
}

.footer-address {
  font-size: 1.1rem;
  line-height: 1.7;
}

.footer-right {
  flex: 1 1 50%;
}

.footer-schedule {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-schedule th {
  background: #ffa94d;
  font-weight: bold;
}

.footer-schedule td sup {
  font-size: 10px;
}

.footer-note {
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-note .off-label {
  background: #ff7900;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-right: 10px;
  width: 120px;
  text-align: center;
}

.footer-note .off-detail {
  color: #ff7900;
  font-weight: bold;
  font-size: 1rem;
}

.footer-note .note {
  display: inline-block;
  font-size: 1rem;
}

.footer-note .note span {
  color: #ffa347;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.footer-schedule table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.footer-schedule {
  border: 1px solid #ffc489;
  border-radius: 10px;
  overflow: hidden;
}

.footer-schedule th {
  background-color: #fdba74;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 12px;
}

.footer-schedule th:last-child {
  border-right: none;
}

.footer-schedule td:first-child {
  font-weight: bold;
  font-size: 18px;
  padding: 5px;
  white-space: nowrap;
}

.footer-schedule td {
  background-color: #fff;
  text-align: center;
  position: relative;
  padding: 5px;
  font-size: 18px;
}

.footer-schedule tr td:last-child {
  border-right: none;
}

.footer-schedule tr:not(:first-child):not(:last-child) td {
  border-bottom: 1px solid #ccc;
}

.footer-schedule .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #ffa347;
  border-radius: 50%;
}

.footer-schedule .cross {
  color: #ffa347;
  font-size: 24px;
  font-family: ui-monospace;
}

.footer-schedule .note {
  position: absolute;
  font-size: 12px;
  color: #ffa347;
  top: 12px;
  right: 12px;
  font-weight: normal;
  line-height: 1;
}

.footer-schedule th:nth-child(n + 2),
.footer-schedule td:nth-child(n + 2) {
  width: calc((100% - 160px) / 7);
}

.footer-schedule td:first-child,
.footer-schedule th:first-child {
  width: 160px;
}

.footer-links-block {
  text-align: center;
  margin: 24px;
  padding: 0 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  position: relative;
  font-size: 1.1rem;
  color: #312c28;
}

.footer-links li::after {
  content: "|";
  margin-left: 10px;
  color: #aaa;
}

.footer-links li:last-child::after {
  content: "";
  margin: 0;
}

.footer-links a {
  color: #312c28;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s, font-weight 0.2s;
}

.footer-links a:hover {
  color: #ffc489;
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer-links {
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .footer-links li {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-schedule {
    border-radius: 10px;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-schedule td:first-child,
  .footer-schedule th:first-child {
    width: 100px;
  }

  .footer-schedule th,
  .footer-schedule td {
    font-size: 0.9rem;
    padding: 6px;
  }

  .footer-schedule td:first-child {
    font-size: 0.9rem;
  }

  .footer-schedule .circle {
    width: 15px;
    height: 15px;
  }

  .footer-schedule .cross {
    font-size: 1rem;
  }

  .footer-schedule .note {
    font-size: 8px;
    top: 10px;
    right: 1px;
  }

  .footer-tel {
    font-size: 2rem;
    margin: 0;
  }

  .footer-top {
    padding: 40px 16px 0;
  }

  .footer-address {
    font-size: 1rem;
    text-align: left;
    margin: 0;
  }

  .footer-note {
    text-align: left;
  }

  .footer-note .off-label {
    font-size: 0.9rem;
    padding: 0;
    width: 55px;
    margin-right: 3px;
  }

  .footer-note .off-detail {
    font-size: 0.9rem;
    line-height: 1;
  }

  .footer-note .note {
    font-size: 0.9rem;
  }

  .footer__item {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .footer-map {
    margin: 0 -16px;
  }

  .footer-map iframe {
    width: 100vw;
    height: 200px;
    display: block;
  }
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

/* pagetop */
.pagetop {
  position: fixed;
  bottom: 22px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}

.pagetop a {
  display: block;
  width: 80px;
  height: 80px;
  background: url("/wp-content/uploads/pagetopicon.png") no-repeat center center /
    contain;
}

.pagetop a:hover {
  background-image: url("/wp-content/uploads/pagetopicon-hover.png");
}

@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 20px;
    right: 5px;
  }

  .pagetop a {
    width: 70px;
    height: 70px;
  }
}

/* ========================
  メインコンテンツ
======================== */

/* ==　メインビジュアル　== */

main {
  padding-top: 0;
}

.top-main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-visual {
  position: relative;
  aspect-ratio: 20 / 9;
}

/*.main-visual img {
  width: 100%;
  height: auto;
  display: block;
}*/

/* fader用追記 */
.main-visual {
  position: relative;
}

.main-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  height: auto;
  opacity: 0;
   transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.main-visual img.active {
  opacity: 1;
  z-index: 1;
}

.catchcopy {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  background: url("/wp-content/uploads/pc-catchcopy-bg.png") no-repeat center
    center / contain;
  padding: 90px 50px 70px 110px;
  /* color: #312C28; */
  color: #727171;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.8;
  z-index: 2;
  max-width: 530px;
  /*font-family: "Shippori Mincho", serif;*/
}

.catchcopy p {
  text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  /*.main-visual img {
    content: url('/wp-content/uploads/sp-main.jpg');
  }*/

  .catchcopy {
    position: static;
    transform: none;
    background: none;
    padding: 24px 16px;
    text-align: left;
    font-size: 1.3rem;
    max-width: none;
    border-top: 5px solid #ffd998;
    border-bottom: 5px solid #ffd998;
  }

  .catchcopy p {
    margin: 0;
  }
}

/* ==　NEWSお知らせ　== */
.top-notice {
  background: linear-gradient(to right, #fdf5e5 75%, transparent 30%);
  padding: 40px 0;
}

.notice-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.notice-left {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.heading-2 {
  position: relative;
  display: inline-block;
  font-weight: bold;
}

.heading-en {
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: "Beau Rivage", cursive;
  font-size: 4rem;
  color: #ffc489;
  transform: rotate(-10deg);
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.heading-ja {
  position: relative;
  font-size: 2.3rem;
  font-weight: bold;
  /*   color: #312C28; */
  color: #727171;
  z-index: 2;
  text-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .top-notice {
    background: linear-gradient(to right, #fdf5e5 20%, transparent 20%);
    padding: 40px 0;
  }

  .heading-en {
    top: -15px;
    left: 30px;
    font-size: 3rem;
  }
}

.news-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 15px 15px 0px rgb(239, 162, 78);
}

.news-item {
  background: #fff;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-items article {
  padding: 8px 0 0;
}

.news-item:hover {
  opacity: 0.9;
}

.news-item time {
  font-size: 1rem;
  font-weight: bold;
  padding: 0 16px;
}

.news-category {
  font-size: 12px;
  background: #ffe9d2;
  border-radius: 12px;
  padding: 2px 8px;
}

.news-item h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: #ffc489;
  font-size: 1.2rem;
  margin: 0;
  padding: 0 16px;
}

.news-item h3 img {
  width: 16px;
  height: auto;
}

.news-excerpt {
  font-size: 1.1rem;
  color: #312c28;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px dotted #ccc;
  padding: 0 16px 8px;
}

.news-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.top-notice .btn-1 {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 24px;
  font-size: 14px;
  text-align: center;
  color: #312c28;
  transition: all 0.3s ease;
}

.top-notice .btn-1:hover {
  border-color: #fd8a2b;
  color: #fd8a2b;
}

.notice-right {
  flex: 2;
  width: 100%;
  margin-bottom: 15px;
}

.news-item:hover article {
  background-color: #f3f3f3;
}

.news-item:hover .news-title-text {
  position: relative;
}

.news-item:hover .news-title-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background-color: #ffc489;
}

.news-item .news-arrow {
  transition: all 0.3s ease;
}
.news-item:hover .news-arrow {
  content: url("/wp-content/uploads/arrow-right-circle-hover.png");
}

.btn-1 {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 1px solid #939393;
  padding: 16px 24px;
  font-size: 1.4rem;
  color: #312c28;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-1::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid #939393;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.btn-1::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: #939393;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: background 0.3s ease;
}

.btn-1:hover {
  background: #fff5eb;
}

.btn-1:hover::before {
  border-color: #ffc489;
}

.btn-1:hover::after {
  background: #ffc489;
}

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

  .notice-left,
  .notice-right {
    max-width: 100%;
    width: 100%;
  }

  .top-notice .heading-2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .top-notice .btn-1 {
    margin: 20px auto 0;
  }

  .news-items {
    box-shadow: 8px 8px 0px rgb(239, 162, 78);
  }
}

.btn-section .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  flex-wrap: wrap;
}

.btn-section .container > a {
  flex: 1 1 calc(50% - 15px);
  display: flex;
}

.big-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  word-break: break-word;
  width: 100%;
  /* color: #312c28; */
  color: #727171;
}

.big-btn h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 4px solid;
  min-height: 4.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-btn p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
  word-break: break-word;
}

/* 緑スタイル */
.big-btn.green {
  border: 16px solid #a4d2c4;
}
.big-btn.green h3 {
  border-color: #42927a;
}
.big-btn.green .mini-btn {
/*   background: #42927a; */
	 background: #ffa64c;
  color: #fff;
}
.big-btn.green .mini-btn::after {
  background-image: url("/wp-content/uploads/btn-area-arrow.png");
}
.big-btn.green:hover {
  border-color: #42927a;
  background: #42927a;
  color: #fff;
}
.big-btn.green:hover h3,
.big-btn.green:hover p {
  color: #fff;
  border-color: #fff;
}

/* 赤スタイル */
.big-btn.red {
  border: 16px solid #fea2a2;
}
.big-btn.red h3 {
  border-color: #d86464;
}
.big-btn.red .mini-btn {
  background: #d86464;
  color: #fff;
}
.big-btn.red .mini-btn::after {
  background-image: url("/wp-content/uploads/btn-area-arrow.png");
}
.big-btn.red:hover {
  border-color: #d86464;
  background: #d86464;
  color: #fff;
}
.big-btn.red:hover h3,
.big-btn.red:hover p {
  color: #fff;
  border-color: #fff;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  font-weight: bold;
  padding: 10px 30px;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  align-self: flex-end;
  width: fit-content;
}

.mini-btn::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .btn-section .container {
    flex-direction: column;
  }
  .btn-section .container > a {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
  .big-btn {
    width: 100%;
  }
  .btn-section .container {
    gap: 0;
  }

  .big-btn {
    padding: 8px 16px;
  }

  .big-btn h3 {
    font-size: 1.4rem;
    min-height: 0;
  }

  .big-btn p {
    font-size: 1rem;
  }

  .mini-btn {
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
  }
}

/* == 3つの柱 == */
.top-medical {
  position: relative;
  text-align: center;
  padding: 0;
}

.top-medical .l-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.top-medical .l-wrapper > img {
  width: 100%;
  height: auto;
}

.top-medical .top-internal,
.top-medical .top-nursing-care,
.top-medical .top-acupuncture {
  position: absolute;
  width: 20%;
  font-size: 1.6rem;
  line-height: 1;
}

.top-medical h3 {
  font-size: 2vw;
  font-weight: bold;
  margin-bottom: 8px;
  color: #312c28;
  line-height: 1.3;
}

.top-medical a :hover {
  color: #f49d3b;
  text-decoration: underline;
}

.top-medical p {
  font-size: 1.3vw;
  margin: 0;
}

.top-medical .inner-btn {
  display: inline-block;
  background: #ffa64c;
  color: #fff;
  padding: 2px 15px;
  font-size: 1vw;
  margin-top: 8px;
  border-radius: 50px 0 0 50px;
  text-decoration: none;
  font-weight: 500;
}

.top-medical .inner-btn:hover {
  background: #fff;
  color: #ffa64c;
  border: 1px solid #ffa64c;
}
/* === 位置指定（PC表示） === */
@media screen and (min-width: 769px) {
  .top-medical .top-internal {
    top: 21%;
    left: 40%;
  }

  .top-medical .top-nursing-care {
    top: 53%;
    left: 20.5%;
  }

  .top-medical .top-acupuncture {
    top: 54%;
    right: 20.5%;
  }
}

@media screen and (max-width: 768px) {
  .top-medical .top-internal,
  .top-medical .top-nursing-care,
  .top-medical .top-acupuncture {
    position: absolute;
    width: 80%;
    left: 10%;
    font-size: 1.4vw;
    text-align: center;
  }

  .top-medical .top-internal {
    /* top: 20%; */
    /* top: 34%; */
    top: 32%;
  }

  .top-medical .top-nursing-care {
    /* top: 43%; */
    /* top: 53%; */
    top: 82%;
  }

  .top-medical .top-acupuncture {
    /* top: 68%; */
     /* top: 73%; */
    top: 57%;
  }

  .top-medical h3 {
    font-size: 6vw;
  }

  .top-medical p {
    font-size: 4vw;
  }

  .top-medical .inner-btn {
    font-size: 3.8vw;
    display: block;
    margin: 4px auto 0;
    width: fit-content;
  }
}

/* === ごあいさつセクション === */
#top_greetings {
  padding: 40px 0;
  background: url("/wp-content/uploads/greeting-bg.png") no-repeat top left;
  background-size: contain;
}

#top_greetings .heading-2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 0;
  color: #312c28;
  font-weight: bold;
}

.greeting-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
  flex-wrap: wrap;
}

.greeting-box .pht {
  flex: 0 0 30%;
  text-align: center;
}

.greeting-box .pht img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 0;
}

.greeting-box .txt {
  flex: 0 0 65%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.3),
    #fff 30%,
    #fff 100%
  );
  padding: 40px 40px 30px;
  font-size: 1.1rem;
  line-height: 2.2;
  color: #312c28;
  box-sizing: border-box;
  position: relative;
  box-shadow: 15px 15px 0px rgb(239, 162, 78);
}

.greeting-box .txt span {
  display: block;
  font-family: "Beau Rivage", cursive;
  font-size: 4rem;
  color: #ffc489;
  margin-bottom: 16px;
  position: absolute;
  letter-spacing: 0.2em;
  top: -90px;
  right: 0;
}

.greeting-box .txt p {
  margin-bottom: 0.5em;
}

.greeting-box .txt p:last-child {
  text-align: right;
  margin-top: 20px;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.txt-mini {
  position: unset !important;
  font-size: 1rem !important;
  color: #312c28 !important;
  font-family: "Zen Maru Gothic", serif !important;
  display: unset !important;
  margin-right: 10px;
}

/* === SP表示 === */
@media screen and (max-width: 768px) {
  #top_greetings {
    background: none;
    padding: 40px 16px 0;
  }

  .greeting-box {
    flex-direction: column;
    text-align: center;
  }

  .greeting-box .pht,
  .greeting-box .txt {
    flex: 1 1 100%;
    margin: 0 auto;
  }

  .greeting-box .pht img {
    max-width: 345px;
    width: 100%;
    margin: 0 auto;
  }

  .greeting-box .txt {
    background: none;
    border-left: none;
    font-size: 1rem;
    line-height: 2;
    padding: 8px 16px;
    text-align: left;
  }

  .greeting-box .txt span {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .greeting-box .txt p:last-child {
    margin-top: 20px;
    font-size: 1.4rem;
  }

  #top_greetings .heading-en {
    top: -39px;
    left: -64px;
  }

  .greeting-box .txt {
    box-shadow: 8px 8px 0px rgb(239, 162, 78);
  }
}

/* ========================
  投稿機能まわり
======================== */
.article_detail {
  max-width: 1200px;
  background-color: #fff6ec;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
}

.article_date {
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
}

@media (max-width: 767px) {
  .article_detail {
    padding: 16px;
  }

  .article_date p {
    margin: 0;
    padding: 0;
  }

  .article_detail .span_12 {
    padding: 0;
    font-size: 1rem;
  }
}

.article_list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 16px 40px;
  box-sizing: border-box;
}

p.more > .btn-1 {
  padding: 8px;
  margin: 16px;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

p.more > .btn-1:hover {
  color: #ff8200;
  border: 1px solid #ff8200;
}

@media (max-width: 767px) {
  .article_list {
    padding: 0;
  }

  p.more > .btn-1 {
    margin: 0;
    font-size: 1rem;
  }
}

/* ページャー */
.pager {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

/* ========================
  下層　ページタイトル
======================== */

#pagetitle {
  position: relative;
  background: url("/wp-content/uploads/titlebg.png") no-repeat center center /
    cover;
  padding: 80px 0;
  margin: 0 auto 40px;
  text-align: center;
}

#pagetitle span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 40px;
  font-size: 3rem;
  font-weight: bold;
  /* color: #4b4b4b; */
  color: #727171;
  line-height: 1.6;
  border-radius: 4px;
}

@media (max-width: 767px) {
  #pagetitle {
    padding: 50px 0;
    margin-bottom: 0;
  }

  #pagetitle span {
    font-size: 1.8rem;
    padding: 10px 25px;
  }
}

/* ========================
  ぱんくず
======================== */
.bread_wrap > .container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .bread_wrap > .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.bread_wrap {
  margin: 20px 0;
}

.bread {
  display: flex;
  justify-content: flex-end;
}

.bread ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  justify-content: flex-end;
}

.bread ul li {
  position: relative;
  padding-right: 16px;
  margin-right: 16px;
  display: inline-block;
}

.bread ul li:after {
  content: ">";
  position: absolute;
  right: -12px;
  top: 0;
  line-height: 1.8;
  color: #999;
  font-size: 16px;
}

.bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  margin-left: 20px;
}

.bread ul li:last-child:after {
  content: none;
}

.bread ul li a {
  color: #1b1b1b;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.bread ul li a:hover {
  color: #ff7900;
}

.bread ul li a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ff7900;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .bread {
    justify-content: flex-start;
  }

  .bread ul {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ========================
  下層コンテンツ部分
======================== */

/* === 共通パーツ === */
.under-contents .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .under-contents .container {
    padding: 0 16px;
  }
}

/* h3-1 */
.title3-1 {
  text-align: center;
  font-size: 2.5rem;
  margin: 0 auto 40px;
  position: relative;
  color: #727171;
}

.title3-1 a {
  color: #312c28;
}

.title3-1 a:hover {
  text-decoration: underline;
}

.title3-1::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
/*   background: url("/wp-content/uploads/title-icon.png") no-repeat center / */
	background: url("/wp-content/uploads/2025/09/titile_icon_250916.png") no-repeat center /
    contain;
}

.title3-1 .dotset {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.title3-1 .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.title3-1 .dot.left,
.title3-1 .dot.right {
  background-color: #ffa347;
}

.title3-1 .dot.center {
  background-color: #fb8000;
}

@media (max-width: 767px) {
  .title3-1 {
    font-size: 1.5rem;
    margin: 16px auto;
  }

  .title3-1::before {
    width: 70px;
    height: 70px;
  }
}

/* h3-2 */
.title3-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 40px;
  width: 100%;
  text-align: center;
  gap: 1em;
  position: relative;
}

.title3-2::before,
.title3-2::after {
  content: "";
  flex: 1 1 0;
  height: 2px;
  max-width: 300px;
}

.title3-2::before {
  background: linear-gradient(to left, #fb8000, transparent);
}

.title3-2::after {
  background: linear-gradient(to right, #fb8000, transparent);
}

@media (max-width: 767px) {
  .title3-2 {
    font-size: 1.5rem;
    margin: 16px auto 40px;
  }
}

/* h4-1 */
.title4-1 {
  position: relative;
  margin: 20px 0;
  padding-left: 30px;
  display: inline-block;
}

.title4-1 span {
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}

.title4-1::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: url("/wp-content/uploads/h4-bgicon.png") no-repeat center /
    contain;
  z-index: 0;
}

@media (max-width: 767px) {
  .title4-1 span {
    font-size: 1.2rem;
  }

  .title4-1 {
    padding-left: 14px;
  }

  .title4-1::before {
    width: 30px;
    height: 30px;
  }
}

/* h4-2 */
.title4-2 {
  font-size: 1.6rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.title4-2::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: #fb8000;
}

@media (max-width: 767px) {
  .title4-2 {
    font-size: 1.2rem;
  }
}

/* リスト　*/
.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 1em 0;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.5em;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 18px;
  height: 18px;
  background: url("/wp-content/uploads/leaf-icon.png") no-repeat center /
    contain;
}

/* 画像 */
section.under-contents img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  padding: 5px;
  border: 1px solid #ddd;
}

/* 準備中 */
.in-preparation {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}

/* === クリニック紹介 === */
p.cap {
  color: #ffa347;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 0;
}

.t-bold.mt10 {
  font-weight: bold;
  line-height: 0;
  padding-top: 16px;
}

/* === 料金表 === */
.price-table {
  width: 100%;
  border-collapse: separate;
  /*border-spacing: 0 10px;*/
  font-size: 1rem;
  margin-bottom: 10px;
}

.price-table tr {
  border: 1px solid #ffc489;
  border-radius: 4px;
  overflow: hidden;
  /* display: flex;*/
  flex-wrap: nowrap;
  margin-bottom: 8px;
}

.price-table th {
  background-color: #ffc489;
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
  padding: 16px;
  width: 50%;
  border-right: 1px solid #ffc489;
}

.price-table td {
  background-color: #fff;
  text-align: right;
  padding: 16px;
  border: 1px solid #ffc489;
  border-left: none;
  border-bottom: none;
}

/* 最後の行のセルだけ border-bottom を復活させる */
.price-table tr:last-child td {
  border-bottom: 1px solid #ffc489;
}

/* 健康診断テーブル全体の横スクロール防止 */
.price-table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

/* 各列の幅指定（1列目と7列目は自由、それ以外は等幅） */
.wide-table th,
.wide-table td {
  word-break: break-word;
  padding: 12px;
  text-align: center;
  border: 1px solid #ffc489;
}

/* 特定の列に等幅（例えば5列等分） */
.wide-table thead tr th:nth-child(2),
.wide-table thead tr th:nth-child(3),
.wide-table thead tr th:nth-child(4),
.wide-table thead tr th:nth-child(5),
.wide-table thead tr th:nth-child(6),
.wide-table tbody tr td:nth-child(2),
.wide-table tbody tr td:nth-child(3),
.widee-table tbody tr td:nth-child(4),
.wide-table tbody tr td:nth-child(5),
.wide-table tbody tr td:nth-child(6) {
  width: 12%;
}

/* 1列目（コース名）と最終列（料金）は残りスペースに合わせる */
.wide-table thead tr th:first-child,
.wide-table thead tr th:last-child,
.wide-table tbody tr td:first-child,
.wide-table tbody tr td:last-child {
  width: auto;
}

/*@media (max-width: 767px) {
  .price-table,
  .price-table tbody {
    display: block;
  }

  .price-table tr {
    display: block;
    border: 1px solid #FFC489;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .price-table th {
    display: block;
    border-right: none;
    border-bottom: 1px solid #FFC489;
    border-radius: 4px 4px 0 0;
    width: 100%;
  }

  .price-table td {
    display: block;
    border-radius: 0 0 4px 4px;
    width: 100%;
  }
}*/

.price-box {
  border: 1px solid #ffc489;
  /*border-radius: 8px;*/
  margin-bottom: 16px;
  padding: 12px;
  background-color: #fff;
}

.price-heading {
  background-color: #ffc489;
  padding: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  /*border-radius: 6px 6px 0 0;*/
  margin: -12px -12px 12px -12px;
}

.price-item {
  padding: 8px 0;
  font-size: 1rem;
}

.price-note {
  font-size: 0.9rem;
  color: #555;
  padding: 8px 0 0;
}

/* PCでもSPでも横スクロールできるように */
.price-table.wide-table {
  min-width: 800px;
  border-collapse: collapse;
}

.price-table.wide-table th,
.price-table.wide-table td {
  padding: 10px;
  border: 1px solid #ffc489;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .price-table.wide-table {
    /*     width: max-content; */
    width: 100%;
    min-width: 300px;
  }
}

/* === 採用情報 === */
.recruit-table {
  width: 100%;
  font-size: 1rem;
  border-collapse: separate;
  border-spacing: 0;
}

.recruit-table tr {
  border: 1px solid #ffc489;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 8px;
}

/* 左列（ラベル） */
.recruit-table th {
  background-color: #ffc489;
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
  padding: 16px;
  width: 30%;
  border-right: 1px solid #ffc489;
}

/* 右列（内容） */
.recruit-table td {
  background-color: #fff;
  text-align: left;
  padding: 16px;
  flex: 1;
}

/* 手当などリストの装飾 */
.recruit-table td ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.recruit-table td ul li {
  background-color: #fb8000;
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.9rem;
  line-height: 1.4;
  display: inline-block;
  white-space: nowrap;
}

/* スマホ対応：縦積み */
@media (max-width: 767px) {
  .recruit-table,
  .recruit-table tbody {
    display: block;
  }

  .recruit-table tr {
    display: block;
    border: 1px solid #ffc489;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .recruit-table th {
    display: block;
    border-right: none;
    border-bottom: 1px solid #ffc489;
    border-radius: 4px 4px 0 0;
    width: 100%;
  }

  .recruit-table td {
    display: block;
    border-radius: 0 0 4px 4px;
    width: 100%;
  }
}

/* 医師紹介 */
img.doc-img {
  aspect-ratio: 8 / 9 !important;
}

/* 下層内コンテンツ装飾 */
.pick-txt {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.pick-title {
  background: #ffa347;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 6px 20px;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  min-width: 160px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 16px;
}

.pick-text {
  font-weight: normal;
  font-size: 1.2rem;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .pick-txt {
    display: block;
    font-size: 1rem;
  }

  .pick-title {
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 0;
    width: 100%;
    font-size: 1rem;
    padding: 4px;
  }

  .pick-text {
    display: block;
    margin-left: 5%;
    font-size: 1rem;
  }
}

span.mini-txt {
  font-size: 1rem;
  font-weight: normal;
  margin-left: 8px;
}

span.green-title {
  font-weight: bold;
  color: #bcd400;
}

span.red-title {
  font-weight: bold;
  color: #f096a9;
}

/* ナンバリング-流れ */
.custom-number-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
  margin: 40px 0 0;
}

.custom-number-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 50px;
  margin-bottom: 48px;
  font-size: 1.2rem;
}

.custom-number-list li::before {
  content: counter(step-counter);
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #ffa347;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.custom-number-list li::after {
  content: "▼";
  position: absolute;
  left: 20px;
  transform: translateX(-50%);
  top: 40px;
  color: #ffa347;
  font-size: 12px;
}

.custom-number-list li:last-child::after {
  content: none;
}

@media screen and (max-width: 768px) {
  .custom-number-list li {
    font-size: 1rem;
  }

  .custom-number-list li::before {
    font-size: 16px;
  }

  .custom-number-list li::after {
    font-size: 12px;
  }
}

.title4-3 {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.title4-3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fb8000;
}

.title4-3::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fb8000;
}

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

h5 {
  font-size: 1.2rem;
  color: #fb8000;
  margin: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  h5 {
    font-size: 1rem;
  }
}

div.plan-box {
  margin: 40px 0;
}

div.plan-box p {
  line-height: 1em;
}

.under-btn {
  display: inline-block;
  background: #ffa64c;
  color: #fff;
  padding: 2px 15px;
  font-size: 1vw;
  margin-top: 8px;
  border-radius: 50px 0 0 50px;
  text-decoration: none;
  font-weight: 500;
}

.under-btn:hover {
  background: #fff;
  color: #ffa64c;
  border: 1px solid #ffa64c;
}

@media screen and (max-width: 768px) {
  .under-btn {
    font-size: 3.8vw;
    display: block;
    margin: 4px auto 0;
    width: fit-content;
  }
}

/* ========================
  表示消しているもの
======================== */
.nav__btn {
  display: none;
}

#reservation {
  display: none;
}

/* 250804追加 */
.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex_img {
  max-width: 450px;
}

@media (max-width: 767px) {
  .flex {
    display: block;
  }
  .flex_img {
    max-width: 100%;
  }
}

/* 250829 */
.price-table .price td {
  background-color: rgba(255, 196, 137, 0.5);
}

