@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-desc-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[ttl] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

btn,
input,
optgroup,
select,
descarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

btn,
[type=btn],
[type=reset],
[type=submit] {
  cursor: pointer;
}

btn:disabled,
[type=btn]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

descarea {
  overflow: auto;
  resize: none;
}

[type=num]::-webkit-inner-spin-btn,
[type=num]::-webkit-outer-spin-btn {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-btn {
  -webkit-appearance: btn;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

dt {
  font-weight: bold;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  font-size: 16px;
}

.btn--color,
a.btn--color {
  font-size: 1.2em;
  color: #e9dbb7; /* テキストカラーをオレンジに */
  background-color: transparent; /* 背景色を透明に */
  border: 2px solid #e9dbb7; /* オレンジの枠線を追加 */
  padding: 8px 16px; /* 適切な余白を追加 */
  display: inline-block; /* インライン要素の幅を調整 */
  text-align: center; /* テキストを中央揃え */
  text-decoration: none; /* リンクの下線を削除 */
}

.btn--color:hover,
a.btn--color:hover {
  font-size: 1.2em;
  color: #4d5156; /* ホバー時のテキストカラーを変更 */
  background: #e9dbb7; /* 背景は透明のまま */
  border-color: #e9dbb7; /* ホバー時の枠線カラー変更 */
}


@media screen and (max-width: 1279px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0px;
  color: #525354;
  background-color: #fff;
}

a {
  word-break: break-all;
  transition: all 0.2s linear;
}
a:hover {
  opacity: 0.7 !important;
}

html[lang=en] body,
html[lang=zh-CN] body {
  letter-spacing: 0;
}

.l-container {
  max-width: 1210px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
.l-container--lg {
  max-width: 1250px;
}
.l-container--sm {
  max-width: 1050px;
}
.l-container--xs {
  max-width: 850px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 70px;
  background-color: #fff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 100%;
  height: 100%;
  padding-left: 20px;
}
.l-header__logo {
  display: inline-block;
  width: 260px;
  margin-right: auto;
}
.l-header__logo > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__nav {
  display: none;
}
.l-header__menu {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  -moz-column-gap: 20px;
       column-gap: 20px;
  height: 100%;
}
.l-header__menu > li.menu-item-has-children {
  position: relative;
}
.l-header__menu > li.menu-item-has-children > ul {
  display: none;
  background-color: #f7f8f8;
}
.l-header__menu > li.menu-item-has-children > ul li {
  white-space: nowrap;
}
.l-header__menu li {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
}
.l-header__menu li > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.l-header__menu li.menu-item-mega-col > a:hover {
  opacity: 1;
}
.l-header__reserve {
  display: none;
}
.l-header__lang {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 14px;
  margin: 5px auto 15px;
  width: calc(100% - 3em);
}
.l-header__lang .gtranslate_wrapper {
  position: relative;
  display: block;
  width: 120px;
  height: 40px;
  border: 1px solid #e2e3e3;
}
.l-header__lang .gtranslate_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__lang .gtranslate_wrapper > select {
  width: 100%;
  height: 100%;
  white-space: nowrap;
  padding: 10px;
}
.l-header__toggle {
  display: none;
  position: relative;
  z-index: 1000;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.l-header__toggle > span {
  position: absolute;
  left: 32%;
  display: inline-block;
  width: 37%;
  height: 1px;
  background-color: #9b8c6e;
  transition: all 0.3s;
}
.l-header__toggle > span:nth-of-type(1) {
  top: 40%;
}
.l-header__toggle > span:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
.l-header__toggle > span:nth-of-type(3) {
  bottom: 40%;
}
.l-header__toggle.is-active span:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__toggle.is-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__toggle.is-active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media screen and (min-width: 1280px) {
  .l-header__inner {
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding-right: 20px;
  }
  .l-header__nav {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: 100%;
  }
  .l-header__menu {
    flex-direction: row;
  }
  .l-header__menu > li {
    height: 100%;
  }
  .l-header__menu > li:hover > ul {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    background-color: #fff;
    box-shadow: 5px 5px 8px 4px rgba(0, 0, 0, 0.05);
  }
  .l-header__menu > li > a {
    height: 100%;
  }
  .l-header__menu li {
    width: auto;
  }
  .l-header__menu li.menu-item-dropdown:hover > ul {
    display: block;
  }
  .l-header__menu li.menu-item-dropdown > ul > li:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  .l-header__menu li.menu-item-dropdown > ul > li > a {
    padding: 1em 2em;
  }
  .l-header__menu li.menu-item-mega:hover > ul {
    display: flex;
    justify-content: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    padding: 25px 100px;
  }
  .l-header__menu li.menu-item-mega-col > a {
    justify-content: left;
    height: auto;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .l-header__menu li.menu-item-mega-col > ul {
    padding-left: 30px;
    border-left: 1px solid #9b8c6e;
  }
  .l-header__menu li.menu-item-mega-col > ul > li > a {
    height: auto;
    justify-content: left;
    padding: 0.5em 0;
  }
  .l-header__menu li > a {
    justify-content: center;
  }
  .l-header__reserve {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    border: 1px solid #9b8c6e;
    background-color: #9b8c6e;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 0.5em 2em 0.5em 1.5em;
  }
  .l-header__reserve::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 1px solid #fff;
  }
  .l-header__reserve::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    width: 7px;
    aspect-ratio: 1/1;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header__lang {
    font-size: 13px;
    margin: 0;
  }
  .l-header__lang-title {
    display: none;
  }
  .l-header__lang .gtranslate_wrapper {
    width: 60px;
    height: 30px;
  }
  .l-header__lang .gtranslate_wrapper > select {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1366px) {
  .l-header__menu li {
    font-size: 13px;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__nav.is-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background-color: #fff;
    width: 100%;
    max-height: calc(100% - 70px);
    max-width: 375px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    box-shadow: 5px 5px 8px 4px rgba(0, 0, 0, 0.05);
  }
  .l-header__menu > li > a {
    color: #9b8c6e;
    font-weight: 700;
  }
  .l-header__menu li {
    width: 100%;
  }
  .l-header__menu li:not(:last-child) {
    border-bottom: 1px solid #9b8c6e;
  }
  .l-header__menu li > a {
    position: relative;
    padding: 1em 2em 1em 1.5em;
  }
  .l-header__menu li > a::after {
    position: absolute;
    top: 50%;
    display: inline-block;
  }
  .l-header__menu li.menu-item-has-children > a:hover {
    opacity: 1;
  }
  .l-header__menu li.menu-item-has-children > a::after {
    content: "＋";
    right: 10px;
    font-weight: 400;
    transform: translateY(-50%);
  }
  .l-header__menu li.menu-item-has-children > a.is-open::after {
    content: "－";
  }
  .l-header__menu li.menu-item-has-children > ul {
    border-top: 1px solid #9b8c6e;
  }
  .l-header__menu li:not(.menu-item-has-children) > a::after {
    content: "";
    right: 17px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #525354;
    border-right: 1px solid #525354;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header__menu li.menu-item-mega > ul {
    display: none;
  }
  .l-header__menu li.menu-item-mega-col {
    background-color: #fff;
  }
  .l-header__menu li.menu-item-mega-col > a {
    display: none;
  }
  .l-header__menu li.menu-item-mega-col > ul {
    background-color: #fff;
    border-top: none;
  }
  .l-header__menu li.menu-item-mega-col > ul > li > a {
    padding-left: 2em;
  }
  .l-header__menu li.menu-item-dropdown > ul {
    display: none;
    background-color: #fff;
  }
  .l-header__menu li.menu-item-dropdown > ul > li > a {
    padding-left: 2em;
  }
  .l-header__toggle {
    display: block;
  }
  .l-header__reserve {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-left: 20px;
  }
  .l-header__logo {
    width: 200px;
  }
}

html[lang=en] .l-header__menu li.menu-item-309, html[lang=en] .l-header__menu li.menu-item-232,
html[lang=zh-CN] .l-header__menu li.menu-item-309,
html[lang=zh-CN] .l-header__menu li.menu-item-232 {
  display: none;
}

.l-main-content {
  position: relative;
/*   margin-top: 70px; */
  overflow: hidden;
  padding-bottom: 40px;
  border-bottom: 1px solid #9b8c6e;
}
@media screen and (max-width: 767px) {
  .l-main-content {
/*     margin-top: 70px; */
    padding-bottom: 0;
    border-bottom: none;
  }
}

.l-page-content {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .l-page-content {
    padding-top: 40px;
    padding-bottom: 0;
  }
}

.l-footer {
  position: relative;
}
.l-footer__main {
  border-bottom: 1px solid #9b8c6e;
  padding-bottom: 50px;
}
.l-footer__main-body {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.l-footer__logo {
  min-width: 250px;
  width: 22vw;
  margin: 40px 0;
}
.l-footer__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.l-footer__menu {
  display: inline-block;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-width: 200px;
       column-width: 200px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.l-footer__menu > li {
  color: #9b8c6e;
  font-weight: 700;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.l-footer__menu > li:not(:last-child) {
  margin-bottom: 1rem;
}
.l-footer__menu > li > ul {
  color: #525354;
  font-size: 0.8em;
}
.l-footer__menu > li > ul > li {
  font-weight: 700;
}
.l-footer__menu > li ul {
  margin-top: 10px;
  margin-left: 20px;
}
.l-footer__menu > li ul > li {
  font-weight: 400;
}
.l-footer__menu > li ul > li:not(:last-child) {
  margin-bottom: 10px;
}
.l-footer__menu > li ul > li.is-inactive {
  font-weight: 600;
}
.l-footer__menu li.is-inactive > a {
  pointer-events: none;
}
.l-footer__sub {
  padding-top: 20px;
  padding-bottom: 15px;
}
.l-footer__copyright {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  text-align: center;
}
.l-footer-sns {
  margin-bottom: 15px;
}
.l-footer-sns__ttl {
  font-size: 0.6875rem;
  text-align: center;
  margin-bottom: 1em;
}
.l-footer-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.l-footer-sns__item {
  width: 60px;
  aspect-ratio: 1/1;
}
.l-footer-sns__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__sp-menu {
  display: none;
}
@media screen and (min-width: 1280px) {
  .l-footer__main-body {
    -moz-column-gap: 130px;
         column-gap: 130px;
  }
  .l-footer__menu {
    justify-content: center;
    -moz-column-width: 250px;
         column-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-bottom: 50px;
  }
  .l-footer__main {
    padding-bottom: 20px;
  }
  .l-footer__main-body {
    display: none;
  }
  .l-footer__logo {
    min-width: 180px;
    margin: 0 auto;
  }
  .l-footer__sub {
    padding-bottom: 10px;
  }
  .l-footer__copyright {
    font-size: 0.8181818182rem;
  }
  .l-footer-sns__ttl {
    font-size: 0.8181818182rem;
  }
  .l-footer-sns__item {
    width: 50px;
  }
  .l-footer__sp-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em 1em;
    font-size: 0.8181818182rem;
    margin-top: 15px;
  }
}

.l-floating-area {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
  bottom: 25px;
  right: 25px;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: all 0.2s linear;
}
.l-floating-area.is-active {
  opacity: 1;
  visibility: visible;
}
.l-floating-area__btn {
  flex-shrink: 0;
  width: 250px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  color: #fff;
  font-size: 24px;
}
.l-floating-area__btn::before {
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 1/1;
}
.l-floating-area__btn--line {
  background-color: #35b257;
}
.l-floating-area__btn--line::before {
  background: url(../img/cmn/line_ico_wh.png) no-repeat center center/contain;
}
.l-floating-area__btn--reserve {
  background-color: #DCB76E;
}
.l-floating-area__btn--reserve::before {
  background: url(../img/cmn/calendar_ico_wh.png) no-repeat center center/contain;
}
.l-floating-area__btn--tel {
  display: none;
}
@media screen and (max-width: 1279px) {
  .l-floating-area__btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-floating-area {
    bottom: 0;
    right: 0;
    display: flex;
    -moz-column-gap: 0;
         column-gap: 0;
    width: 100%;
  }
  .l-floating-area__btn {
    width: 33.3333333333%;
    height: 50px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    font-size: 14px;
  }
  .l-floating-area__btn::before {
    width: 20px;
  }
  .l-floating-area__btn--tel {
    display: inline-flex;
    background-color: #9b8c6e;
  }
  .l-floating-area__btn--tel::before {
    background: url(../img/cmn/phone_ico_wh.png) no-repeat center center/contain;
  }
}

.c-btn__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-btn__wrap {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

.c-chevron-btn {
  position: relative;
  text-align: center;
  font-size: 1.25rem;
  border: 1px solid #9b8c6e;
  background-color: #fff;
  padding: 0.8em 2em;
  cursor: pointer;
}
.c-chevron-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #9b8c6e;
}
.c-chevron-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-top: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: translateY(-50%) rotate(45deg);
}
.c-chevron-btn--gd {
  color: #fff;
  background-color: #9b8c6e;
}
.c-chevron-btn--gd::before {
  border-color: #fff;
}
.c-chevron-btn--gd::after {
  border-color: #fff;
}
.c-chevron-btn--gr {
  border-color: #525354;
}
.c-chevron-btn--gr::after {
  border-color: #525354;
}

.c-border-btn {
  position: relative;
  display: inline-block;
  color: #9b8c6e;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  border: 1px solid #9b8c6e;
  background-color: #fff;
  padding: 0.8em 2em;
}
.c-border-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #9b8c6e;
}
.c-border-btn--gd {
  color: #fff;
  background-color: #9b8c6e;
}
.c-border-btn--gd::before {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-border-btn {
    border-width: 0.5px;
  }
  .c-border-btn::before {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-width: 0.5px;
  }
}

.c-arrow-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  color: #9b8c6e;
  font-size: 1.5rem;
  font-weight: 400;
  border: 1px solid #9b8c6e;
  padding: 0.7em 1.5em;
  background-color: #fff;
}
.c-arrow-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #9b8c6e;
}
.c-arrow-btn::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 4px;
  border-bottom: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: translateY(-50%) skew(45deg);
}
.c-arrow-btn--gd {
  color: #fff;
  background-color: #9b8c6e;
}
.c-arrow-btn--gd::before {
  border-color: #fff;
}
.c-arrow-btn--gd::after {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .c-arrow-btn {
    width: 100%;
    font-size: 1.1428571429rem;
    border-width: 0.5px;
    padding: 1em;
  }
  .c-arrow-btn::before {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-width: 0.5px;
  }
  .c-arrow-btn::after {
    width: 20px;
  }
}

.c-circle-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  color: #fff;
  font-size: 1.375rem;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.3;
  background-color: #9b8c6e;
  border-radius: 50%;
}
.c-circle-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #fff;
  border-radius: 50%;
}
.c-circle-btn__main-ttl {
  font-size: 1em;
}
.c-circle-btn__sub-ttl {
  font-size: 0.8em;
}
@media screen and (min-width: 1280px) {
  .c-circle-btn {
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .c-circle-btn {
    row-gap: 5px;
    width: 120px;
    height: 120px;
    font-size: 1.0909090909rem;
  }
  .c-circle-btn::before {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }
}

.c-square-heading {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  padding-left: 1.25em;
}
.c-square-heading::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  display: block;
  width: 0.8em;
  aspect-ratio: 1/1;
  background-color: #9b8c6e;
}
@media screen and (max-width: 767px) {
  .c-square-heading {
    font-size: 1.4285714286rem;
  }
}

.c-bg-heading {
  margin-bottom: 40px;
}
.c-bg-heading > span {
  display: inline-block;
  min-width: 450px;
  color: #fff;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  background: linear-gradient(89.99deg, #9b8c6e 0.01%, rgba(155, 140, 110, 0.75) 82.63%, #9b8c6e 102.42%);
  padding: 23px 40px;
}
@media screen and (max-width: 767px) {
  .c-bg-heading > span {
    min-width: initial;
    font-size: 1.2727272727rem;
    padding: 15px 40px;
  }
}

.c-border-heading > span {
  position: relative;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 30px;
}
.c-border-heading > span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 8px;
  height: 100%;
  background-color: #9b8c6e;
}
.c-border-heading--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-border-heading > span {
    font-size: 1.1428571429rem;
  }
}

.c-border-btm-heading {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 0.75em;
}
.c-border-btm-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 60px;
  height: 3px;
  background-color: #9b8c6e;
}
@media screen and (max-width: 767px) {
  .c-border-btm-heading {
    font-size: 1.2727272727rem;
  }
  .c-border-btm-heading::after {
    width: 30px;
  }
}

.c-border-lt-heading {
  font-size: 2rem;
  font-weight: 400;
  padding-left: 1em;
  border-left: solid 4px #9b8c6e;
}
@media screen and (max-width: 767px) {
  .c-border-lt-heading {
    font-size: 1.4285714286rem;
  }
}

.c-underline-heading {
  font-size: 1.625rem;
  font-weight: 500;
}
.c-underline-heading > span {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .c-underline-heading {
    font-size: 1.1428571429rem;
  }
}

.c-en-heading {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  font-size: 1.125rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(82, 83, 84, 0.5019607843);
  padding-bottom: 5px;
}
.c-en-heading__num {
  flex-shrink: 0;
  color: #9b8c6e;
  font-size: 1.7em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-en-heading__num {
    font-size: 1.5em;
  }
}

.c-heading {
  font-weight: 500;
  line-height: 1.3;
}
.c-heading--xl {
  font-size: 2.5rem;
}
.c-heading--xl:has(+ .c-two-tone-sec) {
  padding-bottom: 30px;
}
.c-heading--lg {
  font-size: 2.25rem;
}
.c-heading--lg:has(+ .c-two-tone-sec) {
  padding-bottom: 20px;
}
.c-heading--md {
  font-size: 1.75rem;
}
.c-heading--md:has(+ .c-two-tone-sec) {
  padding-bottom: 20px;
}
.c-heading--sm {
  font-size: 1.25rem;
}
.c-heading--sm:has(+ .c-two-tone-sec) {
  padding-bottom: 20px;
}
.c-heading--xs {
  font-size: 1.125rem;
}
@media screen and (min-width: 1280px) {
  .c-heading--xl:has(+ .c-two-tone-sec) {
    padding-bottom: 80px;
  }
  .c-heading--lg:has(+ .c-two-tone-sec) {
    padding-bottom: 40px;
  }
  .c-heading--md:has(+ .c-two-tone-sec) {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading--xl {
    font-size: 1.5714285714rem;
  }
  .c-heading--lg {
    font-size: 1.4285714286rem;
  }
  .c-heading--md {
    font-size: 1.2857142857rem;
  }
  .c-heading--sm {
    font-size: 1.0714285714rem;
  }
  .c-heading--xs {
    font-size: 1rem;
  }
}

.c-sub-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 16px;
}
.c-sub-menu__item {
  position: relative;
  width: auto;
  min-width: 260px;
  font-size: 1.375rem;
  border: 1px solid #9b8c6e;
}
.c-sub-menu__item > a {
  display: block;
  line-height: 1.2;
  padding: 16px 24px 16px 16px;
}
.c-sub-menu__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  border-top: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: translateY(-50%) rotate(45deg);
}
.c-sub-menu__item--sm {
  font-size: 0.88em;
}
@media screen and (min-width: 1280px) {
  .c-sub-menu__item > a {
    padding: 1rem 32px 1rem 20px;
  }
}
@media screen and (max-width: 767px) {
  ul.c-recruit-cta__menu > li {
    margin-bottom: 10px;
  }
  .c-sub-menu {
    row-gap: 0;
  }
  .c-sub-menu__item {
    width: 100%;
    min-width: initial;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 1.2727272727rem;
  }
  .c-sub-menu__item::after {
    right: 12px;
  }
}

.c-cat {
  display: inline-block;
  color: #9b8c6e;
  font-size: 0.857rem;
  border: 1px solid #9b8c6e;
  border-radius: 5px;
  padding: 0.4em 1em;
  box-sizing: border-box;
  vertical-align: middle;
  max-width: 100%;
  -webkit-font-smoothing: antialiased; /* iOS表示改善 */
}

.c-cat__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
}
@media screen and (min-width: 1280px) {
  .c-cat {
    font-size: 0.75rem;
  }
}

.c-news-list__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.c-news-list__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-top: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: translateY(-50%) rotate(45deg);
}

.c-news-list__date {
  min-width: 140px;
}

.c-news-list__ttl {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .c-news-list__item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    padding: 15px 0;
  }
  .c-news-list__date {
    font-size: 0.8333333333rem;
  }
  .c-news-list__ttl {
    font-size: 1rem;
    max-width: calc(100% - 2.5em);
  }
}
.c-post-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 100px 5%;
}
.c-post-list__item {
  display: flex;
  flex-wrap: wrap;
  width: 30%;
  gap: 18px 35px;
}
.c-post-list__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-post-list__thumb > a {
  display: block;
  width: 100%;
  height: 100%;
}
.c-post-list__thumb > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post-list__desc {
  width: 100%;
}
.c-post-list__ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.c-post-list__ttl > a {
  text-decoration: underline;
}
.c-post-list__cats {
  margin-bottom: 16px;
}
.c-post-list__desc {
  font-size: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: none;
}
.c-post-list--vertical {
  row-gap: 30px;
}
.c-post-list--vertical .c-post-list__item {
  width: 100%;
}
.c-post-list--vertical .c-post-list__thumb {
  width: 200px;
}
.c-post-list--vertical .c-post-list__desc {
  width: auto;
  flex: 1;
}
@media screen and (max-width: 1279px) {
  .c-post-list__desc {
    font-size: 1.0909090909rem;
  }
}

.c-result-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.5rem 2.5rem;
}
.c-result-list__item {
  width: calc(50% - 1.25rem);
  border: 1px solid rgba(82, 83, 84, 0.5);
  background-color: #fff;
  padding: 2.5rem;
}
.c-result-list__ttl {
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-left: 1em;
  border-left: solid 5px #9b8c6e;
}
.c-result-list__thumb {
  display: flex;
  margin: 0.625rem 0;
}
.c-result-list__img {
  width: 50%;
}
.c-result-list__img > figcaption {
  width: 100%;
  text-align: center;
  font-weight: 500;
  background-color: #eee;
  padding: 0.5em;
}
.c-result-list__img > img {
  width: 100%;
  aspect-ratio: 225/170;
}
.c-result-list__img--before > figcaption {
  position: relative;
}
.c-result-list__img--before > figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background-color: #eee;
}
.c-result-list__img--after > figcaption {
  background-color: #faf3e7;
}
.c-result-list__comment {
  font-size: 0.75rem;
  margin-bottom: 1.25rem;

  text-align: right; /* 右揃え */
}

.c-result-list__btnWrap {
  margin-top: 1.25rem;
}
.c-result-list__btn {
  font-size: 1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-result-list {
    row-gap: 30px;
  }
  .c-result-list__item {
    width: 100%;
    padding: 20px;
  }
  .c-result-list__img > figcaption {
    font-size: 0.8571428571rem;
  }
  .c-result-list__thumb {
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-post-list {
    row-gap: 20px;
  }
  .c-post-list__item {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 20px;
    margin: 10px 0;
  }
  .c-post-list__ttl {
    font-size: 1.2727272727rem;
  }
  .c-post-list__desc {
    font-size: 0.8em;
  }
  .c-post-list--vertical .c-post-list__thumb {
    width: 100%;
  }
  .c-result-list__comment {
    font-size: 0.6rem;
  }
}
.c-breadcrumb {
  width: 100%;
  height: 80px;
  padding: 0 25px;
  background-color: #fff;
}
.c-breadcrumb__list {
  max-width: 1290px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.c-breadcrumb__list > li:not(:last-child) {
  position: relative;
  padding-right: 45px;
}
.c-breadcrumb__list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #525354;
  margin: 0 10px;
}
@media screen and (max-width: 1279px) {
  .c-breadcrumb__list {
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}

.c-two-tone-sec {
  position: relative;
  border-top: 1px solid #525354;
  padding: 40px 30px 0 30px;
}
.c-two-tone-sec::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #9b8c6e;
}
.c-two-tone-sec--tight {
  padding-left: 0;
  padding-right: 0;
}
.c-two-tone-sec--loose {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .c-two-tone-sec {
    padding: 40px 0 0;
  }
  .c-two-tone-sec::before {
    width: 25px;
  }
  .c-two-tone-sec--loose {
    padding-top: 30px;
  }
}

.c-fullwidth-sec {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.c-frame-figure {
  position: relative;
  display: inline-block;
  margin: 0 12px 12px 0;
}
.c-frame-figure > img {
  position: relative;
  z-index: 2;
}
.c-frame-figure::before {
  content: "";
  z-index: 1;
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #9b8c6e;
}
.c-frame-figure--reverse {
  margin: 0 0 12px 12px;
}
.c-frame-figure--reverse::before {
  right: initial;
  left: -12px;
}
@media screen and (min-width: 1280px) {
  .c-frame-figure {
    margin: 0 18px 18px 0;
  }
  .c-frame-figure::before {
    right: -18px;
    bottom: -18px;
  }
  .c-frame-figure--reverse {
    margin: 0 0 18px 18px;
  }
  .c-frame-figure--reverse::before {
    right: initial;
    left: -18px;
  }
}

.c-box__ttl {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-box__ttl {
    font-size: 1.4285714286rem;
  }
}

.c-bg-box {
  background-color: #f5f5f5;
  padding: 40px;
}
.c-bg-box > *:not(:last-child) {
  margin-bottom: 40px;
}
.c-bg-box--pgd {
  background-color: #faf3e7;
}
.c-bg-box--round {
  padding: 60px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .c-bg-box {
    padding: 30px 15px;
  }
  .c-bg-box > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .c-bg-box--round {
    padding: 40px 15px;
  }
}

.c-border-box {
  border: 1px solid #9b8c6e;
  padding: 40px;
}
.c-border-box > *:not(:last-child) {
  margin-bottom: 20px;
}
.c-border-box--tight {
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .c-border-box {
    padding: 40px 15px;
  }
  .c-border-box--tight {
    padding: 20px 15px;
  }
}

.c-dot-list > li {
  position: relative;
  padding-left: 1.5em;
}
.c-dot-list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1.5em;
  text-align: center;
}
.c-dot-list > li:not(:last-child) {
  margin-bottom: 5px;
}

.c-num-list {
  counter-reset: num;
}
.c-num-list > li {
  position: relative;
  padding-left: 1.5em;
}
.c-num-list > li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1.5em;
  text-align: center;
}
.c-num-list > li:not(:last-child) {
  margin-bottom: 5px;
}
.c-num-list--rome > li {
  padding-left: 2em;
}
.c-num-list--rome > li::before {
  content: counter(num, upper-roman) ".";
  width: 2em;
  letter-spacing: 0;
}
.c-num-list--alpha > li::before {
  content: counter(num, lower-alpha) ".";
  letter-spacing: 0;
}

.c-check-list > li {
  position: relative;
  font-weight: 500;
  padding-left: 50px;
}
.c-check-list > li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  width: 30px;
  aspect-ratio: 30/18;
  border-left: 5px solid #9b8c6e;
  border-bottom: 5px solid #9b8c6e;
  transform: rotate(-45deg);
}
.c-check-list > li:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .c-check-list > li {
    font-size: 1rem;
    padding-left: 35px;
  }
  .c-check-list > li::before {
    width: 20px;
    top: 0.5em;
  }
  .c-check-list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.c-lgnum-list {
  counter-reset: num;
}
.c-lgnum-list > li {
  position: relative;
  font-weight: 500;
  padding-left: 50px;
}
.c-lgnum-list > li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: -0.3em;
  left: 0;
  display: inline-block;
  color: #9b8c6e;
  font-size: 2em;
  font-weight: 700;
}
.c-lgnum-list > li:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .c-lgnum-list > li {
    font-size: 1rem;
    padding-left: 35px;
  }
  .c-lgnum-list > li::before {
    top: -0.2em;
  }
  .c-lgnum-list > li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.c-qanda {
  border-top: 1px solid #eee;
}
.c-qanda__item {
  cursor: pointer;
}
.c-qanda__item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.c-qanda__q, .c-qanda__a {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  font-weight: 500;
  line-height: 2;
}
.c-qanda__q::before, .c-qanda__a::before {
  align-self: flex-start;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}
.c-qanda__q {
  padding: 30px 40px;
}
.c-qanda__q::before {
  content: "Q.";
  color: #9b8c6e;
}
.c-qanda__q::after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(45deg);
  margin-left: auto;
}
.c-qanda__q.is-open::after {
  border-bottom: none;
  border-right: none;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}
.c-qanda__a {
  background-color: #f7f8f8;
  padding: 30px 100px 30px 40px;
}
.c-qanda__a::before {
  content: "A.";
}
@media screen and (max-width: 767px) {
  .c-qanda__q, .c-qanda__a {
    -moz-column-gap: 10px;
         column-gap: 10px;
    font-size: 1rem;
  }
  .c-qanda__q::before, .c-qanda__a::before {
    font-size: 1.6363636364rem;
  }
  .c-qanda__q {
    padding: 20px 5px 20px 5px;
  }
  .c-qanda__a {
    padding: 20px 25px 20px 5px;
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
  border-spacing: 0;  
}
.c-table th,
.c-table td{
  box-sizing: border-box;
}
.c-table thead th {
  text-align: center;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  border: 1px solid #525354;
  padding: 10px 20px;
}
.c-table th {
  white-space: nowrap;
  font-weight: 500;
  background-color: #f5f5f5;
}
.c-table th.c-table__item--accent {
  background-color: #9b8c6e;
}
.c-table td.c-table__item--accent {
  background-color: #faf3e7;
}
.c-table--gr th {
  color: #fff;
  background-color: rgba(82, 83, 84, 0.6980392157);
  text-align: center;
}
/* .c-table--gr thead th:not(:last-child) {
  border-right: 1px solid #fff;
} */

/* .c-table--gr tbody th {
  border-right: 1px solid #fff;
} */

.c-table--gr tbody tr:not(:last-child) th {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 1280px) {
  .c-table th {
    padding: 10px 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-table__wrapper {
    max-width: 100%;
    overflow-x: auto;
  }
  
  .c-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
  }
  
  table input,
  table select,
  table textarea {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 8px;
  } 
  .c-table th,
  .c-table td {
    padding: 10px 8px;
    display: block;
    width: 100%;
  }
  .p-recruit-form__checkboxes label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .p-recruit-form__checkboxes input[type="checkbox"] {
    width: 20px; /* 好みに応じ調整 */
    height: 20px;
  }
  
}

.c-border-table {
  width: 100%;
  table-layout: fixed;
}
.c-border-table tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.c-border-table th {
  width: 290px;
  font-weight: 600;
  padding: 36px 28px;
}
.c-border-table td {
  padding: 36px 0;
}
.c-border-table td > p + p {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .c-table th{ white-space: normal; }
  .c-border-table th {
    width: auto;
    white-space: nowrap;
    padding: 20px 15px;
  }
  .c-border-table td {
    padding: 20px 15px;
  }
}

.c-price-table__desc {
  font-size: 1.12em;
}
.c-price-table__desc:has(+ .c-price-table__body) {
  margin-bottom: 1em;
}
.c-price-table__sub-ttl {
  width: 130px;
}
.c-price-table__note {
  width: 25%;
}
.c-price-table__body {
  table-layout: fixed;
  width: 100%;
}
.c-price-table__body + .c-price-table__desc {
  margin-top: 1em;
}
.c-price-table__price {
  text-align: right;
}
.c-price-table__price--free {
  color: #9b8c6e;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-price-table {
    font-size: 0.8571428571rem;
  }
  .c-price-table__sub-ttl {
    width: 80px;
  }
  .c-price-table__note {
    width: 100px;
  }
}

.c-anchor-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.c-anchor-menu__item {
  width: calc((100% - 20px) / 2);
  font-size: 1.375rem;
  border: 1px solid #9b8c6e;
}
.c-anchor-menu__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 15px;
}
.c-anchor-menu__item > a::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 9px;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: rotate(45deg);
}
@media screen and (min-width: 1280px) {
  .c-anchor-menu {
    gap: 12px 12px;
  }
  .c-anchor-menu__item {
    min-width: calc((100% - 36px) / 4);
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-anchor-menu__item {
    font-size: 1rem;
  }
  .c-anchor-menu__item > a {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding: 6px 15px;
  }
  .c-anchor-menu__item > a::before {
    width: 6px;
  }
}
.c-author {
  text-align: left; /* 内部テキストを左寄せ */
  margin-left: auto; /* 親要素内で右寄せ */
  margin-top: 1em;
  padding: 2em; /* 内部余白を設定 */
  width: fit-content; /* 内容に合わせた幅 */
  height: 170px; /* 署名欄の高さを固定 */
  position: relative; /* 背景画像配置の基点とする */
  background-image: url("../img/clinic/sign_uchida.jpg");
  background-repeat: no-repeat; /* 繰り返しを防ぐ */
  background-position: right bottom; /* 背景画像を右下に配置 */
  background-size: 200px auto; /* 画像のサイズを調整 */
}

.c-author__name {
  z-index: 1; /* テキストを背景画像の上に表示 */
  position: relative; /* 背景画像の影響を受けないように設定 */
  margin: 0;
}
.c-clinic-intro p {
  margin-bottom: 1em; /* 各段落の下に余白を設定 */
}


.c-clinic-info {
  display: grid;
  grid-template-areas: "cnt img" "map map";
  grid-template-columns: 1fr 40%;
  align-content: start;
  gap: 40px 30px;
}
.c-clinic-info__cnt {
  grid-area: cnt;
}
.c-clinic-info__table {
  width: 100%;
}
.c-clinic-info__table th,
.c-clinic-info__table td {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 1em 0;
}
.c-clinic-info__table th {
  white-space: nowrap;
  padding-right: 20px;
}
.c-clinic-info__table td > p + p {
  margin-top: 5px;
}
.c-clinic-info__table td small {
  display: inline-block;
}
.c-clinic-info__img {
  grid-area: img;
}
.c-clinic-info__map {
  grid-area: map;
  align-self: start;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.c-clinic-info__map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .c-clinic-info__table th,
  .c-clinic-info__table td {
    font-size: 1.125rem;
  }
  .c-clinic-info__table th {
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-clinic-info {
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    margin: 0 auto;
  }
  .c-clinic-info__table th,
  .c-clinic-info__table td {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .c-clinic-info__map {
    aspect-ratio: 3/2;
  }
}

html[lang=en] .c-clinic-info__table th,
html[lang=en] .c-clinic-info__table td {
  letter-spacing: 0;
}

/*--- CTA ---*/
/*デフォルト*/
.c-cta {
  max-width: 1330px;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-cta {
    max-width: 700px;
    padding-top: 40px;
  }
}
.c-cta-top {
  position: relative;
  width: 100%;
  aspect-ratio: 1280/445;
}
.c-cta-top__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-cta-top__ttl--sp {
  display: none;
}
.c-cta-top__btn {
  position: absolute;
  bottom: 14%;
  right: 5.8%;
  display: inline-block;
  width: 28%;
  aspect-ratio: 360/78;
}
@media screen and (max-width: 767px) {
  .c-cta-top {
    aspect-ratio: 325/340;
  }
  .c-cta-top__ttl--sp {
    display: block;
  }
  .c-cta-top__ttl--pc {
    display: none;
  }
  .c-cta-top__btn {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8.8%;
    width: 75%;
    aspect-ratio: 192/38;
  }
}
.c-cta-bottom {
  margin-top: 15px;
}
.c-cta-bottom__ttl {
  color: #9b8c6e;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.c-cta-bottom__cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.c-cta-bottom__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px 20px;
  color: #9b8c6e;
}
.c-cta-bottom__tel-num {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  padding-left: 1.1em;
}
.c-cta-bottom__tel-num::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.1em;
  aspect-ratio: 1/1;
  background: url(../img/cmn/phone_ico.svg) no-repeat center center/contain;
}
.c-cta-bottom__tel-note {
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.4;
}
.c-cta-bottom__btn {
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .c-cta-bottom__tel {
    flex-direction: row;
  }
  .c-cta-bottom__tel-note {
    text-align: left;
  }
}
@media screen and (max-width: 1279px) {
  .c-cta-bottom__btn > span {
    position: relative;
    padding-left: 2.2em;
  }
  .c-cta-bottom__btn > span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: inline-block;
    width: 1.2em;
    aspect-ratio: 1/1;
    background: url(../img/cmn/calendar_ico.svg) no-repeat center center/contain;
  }
}
@media screen and (max-width: 767px) {
  .c-cta-bottom {
    display: none;
  }
}

.c-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background-color: #fff;
  padding: 10px 15px 15px;
}
.c-sticky-cta__ttl {
  color: #9b8c6e;
  font-weight: 700;
  text-align: center;
  font-size: 10px;
  margin-bottom: 5px;
}
.c-sticky-cta__cnt {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.c-sticky-cta__tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  letter-spacing: 0;
  color: #9b8c6e;
}
.c-sticky-cta__tel-num {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  padding-left: 1em;
  font-weight: 700;
  white-space: nowrap;
}
.c-sticky-cta__tel-num::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.9em;
  aspect-ratio: 1/1;
  background: url(../img/cmn/phone_ico.svg) no-repeat center center/contain;
}
.c-sticky-cta__tel-note {
  font-size: 6px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.c-sticky-cta__btn {
  flex-shrink: 0;
  font-size: 13px;
  padding: 1em;
}
.c-sticky-cta__btn > span {
  position: relative;
  padding-left: 2em;
}
.c-sticky-cta__btn > span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 1.2em;
  aspect-ratio: 1/1;
  background: url(../img/cmn/calendar_ico.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-sticky-cta {
    display: block;
  }
}

/*採用情報用*/
.c-recruit-cta {
  background-color: #9b8c6e;
  padding-top: 80px;
  padding-bottom: 80px;
}
.c-recruit-cta__ttl {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.c-recruit-cta__menu {
  justify-content: center;
  margin-bottom: 60px;
}
.c-recruit-cta__menu-item {
  background-color: #fff;
}
.c-recruit-cta__menu-item > a {
  color: #9b8c6e;
}
.c-recruit-cta__desc {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 400;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-recruit-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .c-recruit-cta__ttl {
    margin-bottom: 30px;
  }
  .c-recruit-cta__menu {
    margin-bottom: 40px;
  }
  .c-recruit-cta__menu-item {
    width: calc(50% - 10px);
    font-size: 0.9em;
  }
  .c-recruit-cta__menu-item > a {
    padding: 10px 25px 10px 20px;
  }
  .c-recruit-cta__desc {
    font-size: 1.1428571429rem;
  }
}

/*メニューページCTA*/
.c-menu-cta {
  position: relative;
  height: 200px;
}
.c-menu-cta::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(242, 241, 238, 0.4);
}
.c-menu-cta__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-menu-cta {
    height: 100px;
  }
}

/*なおるんCTA*/
.c-naorun-cta__list {
  margin-top: 30px;
}
.c-naorun-cta__list .slick-track {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.c-naorun-cta__list .slick-dots {
  bottom: -30px;
}
.c-naorun-cta__list .slick-dots li {
  margin: 0;
}
.c-naorun-cta__item {
  height: 315px;
}
@media screen and (max-width: 767px) {
  .c-naorun-cta__item {
    width: 80vw;
    height: auto;
  }
}

/*オンラインカウンセリングCTA*/
.c-counseling-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 30px;
  background-color: #353d47;
  padding: 60px 25px;
}
.c-counseling-cta__ttl {
  color: #fff;
  font-size: 1.5625rem;
  line-height: 1.7;
  text-align: center;
}
.c-counseling-cta__btn {
  background-color: #fff;
  border-color: #353d47;
}
.c-counseling-cta__btn > span {
  font-size: 1.5rem;
  font-weight: 700;
}
.c-counseling-cta__btn::before {
  border-color: #353d47;
}
.c-counseling-cta__btn::after {
  border-top: 1px solid #353d47;
  border-right: 1px solid #353d47;
}
@media screen and (max-width: 767px) {
  .c-counseling-cta {
    row-gap: 20px;
    padding: 40px 10px;
  }
  .c-counseling-cta__ttl {
    font-size: 1.1428571429rem;
  }
  .c-counseling-cta__btn > span {
    font-size: 1.1428571429rem;
  }
}

.c-media-object {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px 40px;
}
.c-media-object__media {
  width: 40%;
  flex-shrink: 0;
  text-align: center;
}
.c-media-object__media > img {
  width: 100%;
  height: 100%;
}
.c-media-object__gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-media-object__gallery-img {
  width: 100%;
}
.c-media-object__cnt {
  flex: 1;
}
.c-media-object__cnt > *:not(:last-child) {
  margin-bottom: 40px;
}
.c-media-object--reverse {
  flex-direction: row-reverse;
}
.c-media-object--horizontal {
  flex-direction: column;
}
.c-media-object--horizontal .c-media-object__gallery {
  width: 100%;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-media-object--horizontal .c-media-object__gallery-img {
  flex: 1;
}
.c-media-object + .c-media-object {
  margin-top: 80px;
}
@media screen and (min-width: 1280px) {
  .c-media-object {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-media-object {
    flex-direction: column-reverse;
    align-items: center;
  }
  .c-media-object__cnt {
    width: 100%;
  }
  .c-media-object__cnt > *:not(:last-child) {
    margin-bottom: 15px;
  }
  .c-media-object__media {
    width: 100%;
    max-width: 400px;
  }
  .c-media-object--reverse {
    flex-direction: column-reverse;
  }
  .c-media-object--sp-reverse {
    flex-direction: column;
  }
  .c-media-object--horizontal .c-media-object__gallery {
    flex-direction: column;
  }
  .c-media-object + .c-media-object {
    margin-top: 50px;
  }
}

.c-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px 40px;
  padding: 40px 20px 10px 30px;
  background-color: #fff;
  border: 1px solid #9b8c6e;
  display: flex;
  align-items: center;
}
.c-card__head {
  position: absolute;
  top: 0;
  left: 0;
}
.c-card__num {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 220px;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  background-color: #9b8c6e;
  padding: 0.875rem;
}
.c-card__num > span {
  font-size: 1.8em;
  padding-bottom: 0.2em;
}
.c-card__num::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  display: inline-block;
  width: 40px;
  height: 100%;
  background-color: #9b8c6e;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
.c-card__ttl {
  position: absolute;
  top: 20px;
  left: 270px;
  width: calc(100% - 270px - 20px);
  font-size: 1.75rem;
  font-weight: 600;
}
.c-card__cnt {
  flex: 1;
}
.c-card__cnt > *:not(:last-child) {
  margin-bottom: 50px;
}
.c-card__desc {
  line-height: 2;
}
.c-card__img {
  width: 40%;
}
.c-card__img > img {
  width: 100%;
  height: 100%;
}
.c-card + .c-card {
  margin-top: 60px;
}
@media screen and (min-width: 1280px) {
  .c-card {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
  .c-card__num {
    width: 300px;
  }
  .c-card__ttl {
    width: calc(100% - 370px - 40px);
    left: 370px;
  }
}
@media screen and (max-width: 1279px) {
  .c-card {
    padding-top: 80px;
  }
  .c-card__num {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .c-card {
    padding: 60px 20px 20px;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
  .c-card__num {
    -moz-column-gap: 10px;
         column-gap: 10px;
    width: 160px;
    font-size: 1.4285714286rem;
  }
  .c-card__ttl {
    position: inherit;
    top: initial;
    left: initial;
    width: 100%;
    order: 1;
    font-size: 1.4285714286rem;
    text-align: center;
  }
  .c-card__cnt {
    order: 2;
  }
  .c-card__cnt > *:not(:last-child) {
    margin-bottom: 15px;
  }
  .c-card__img {
    max-width: 475px;
    width: 100%;
    order: 0;
  }
  .c-card + .c-card {
    margin-top: 30px;
  }
}

.c-sentence {
  line-height: 2;
}
.c-sentence--sm {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-sentence--sm {
    font-size: 1rem;
  }
}

.c-underline-link {
  display: inline;
  text-decoration: underline;
}

.c-feature__list {
  counter-reset: num;
}
.c-feature__item:not(:last-child) {
  margin-bottom: 40px;
}
.c-feature__ttl {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.c-feature__ttl::before {
  counter-increment: num;
  content: counter(num);
  color: #fff;
  font-size: 36px;
  line-height: 65px;
  text-align: center;
  width: 65px;
  aspect-ratio: 1/1;
  background-color: #9b8c6e;
  border-radius: 50%;
}
.c-feature__desc {
  line-height: 2;
  padding-left: 85px;
}
.c-feature__gallery {
  display: flex;
  flex-direction: column;
}
.c-feature__gallery-img {
  width: 100%;
  aspect-ratio: 414/273;
}
.c-feature__gallery-img > img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .c-feature__body {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  .c-feature__gallery {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .c-feature__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .c-feature__ttl {
    font-size: 1.4285714286rem;
  }
  .c-feature__ttl::before {
    width: 40px;
    font-size: 22px;
    line-height: 40px;
  }
  .c-feature__desc {
    font-weight: 400;
    padding-left: 0;
  }
  .c-feature__gallery {
    max-width: 475px;
    width: 100%;
  }
  .c-feature__gallery-img:not(:first-child) {
    display: none;
  }
}

.gtranslate_wrapper {
  position: relative;
  width: 70px;
  display: flex;
  align-items: center;
  border: 1px solid #e2e3e3;
  font-size: 13px;
}
.gtranslate_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: translateY(-50%) rotate(45deg);
}
.gtranslate_wrapper > select {
  width: 100%;
  height: 100%;
  white-space: nowrap;
  padding: 5px 10px;
}

.c-caption-box {
  position: relative;
  margin-top: 40px;
}
.c-caption-box__ttl {
  position: absolute;
  top: 0;
  left: 15px;
  transform: translateY(-50%);
  display: inline-block;
  max-width: calc(100% - 30px);
  color: #fff;
  background-color: #9b8c6e;
  white-space: nowrap;
  overflow: hidden;
  padding: 5px 10px;
}
.c-caption-box__cnt {
  background-color: #faf3e7;
  border: 1px solid #9b8c6e;
  padding: 30px 25px 20px;
}
@media screen and (max-width: 767px) {
  .c-caption-box__ttl {
    left: 10px;
    max-width: calc(100% - 20px);
  }
  .c-caption-box__cnt {
    padding: 30px 20px 20px;
  }
}

/*---トップページ---*/
/*セクション*/
.p-top-sec {
  padding-top: 40px;
}
.p-top-sec__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
}
.p-top-sec__heading::before {
  content: attr(data-en);
  color: rgba(155, 140, 110, 0.2);
  font-size: 80px;
  font-weight: 600;
  margin-bottom: -0.2em;
}
.p-top-sec__heading > span {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  -moz-column-gap: 40px;
       column-gap: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  padding: 0 7.3vw 30px 7.3vw;
}
.p-top-sec__heading > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 7.3vw;
  width: 120px;
  height: 4px;
  background-color: #9b8c6e;
}
.p-top-sec__heading > span::before {
  content: attr(data-en);
  font-size: 0.65em;
  color: #9b8c6e;
}
@media screen and (min-width: 1280px) {
  .p-top-sec__heading::before {
    font-size: 110px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec {
    padding-top: 30px;
  }
  .p-top-sec__heading {
    margin-bottom: 30px;
  }
  .p-top-sec__heading::before {
    content: none;
  }
  .p-top-sec__heading > span {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    font-size: 1.8571428571rem;
    padding: 0 25px;
  }
  .p-top-sec__heading > span::after {
    position: inherit;
    left: initial;
    width: 40px;
    margin-top: 10px;
  }
}

/*クリニック概要*/
.p-top-about {
  padding-bottom: 80px;
}
.p-top-about__heading {
  align-items: center;
}
.p-top-about__heading > span::before {
  content: none;
}
.p-top-about__heading > span::after {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding-bottom: 50px;
    padding-top: 65px;
  }
}

/*3つの特徴*/
.p-top-feature {
  position: relative;
  background-image: url(../img/top/feature_bg.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 80px;
}
.p-top-feature__heading {
  color: #fff;
}
.p-top-feature__heading::before {
  color: #DCB76E;
}
.p-top-feature__heading > span::before {
  opacity: 0.8;
  color: #fff;
}
.p-top-feature__heading > span::after {
  background-color: #fff;
}
.p-top-feature__list {
  counter-reset: num;
}
.p-top-feature__item:not(:first-of-type) {
  padding-top: 30px;
}
.p-top-feature__item:not(:last-of-type) {
  padding-bottom: 30px;
  border-bottom: 2px solid #fff;
}
.p-top-feature__ttl {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  color: #DCB76E;
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.p-top-feature__ttl::before {
  counter-increment: num;
  content: counter(num);
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 75px;
  text-align: center;
  width: 75px;
  aspect-ratio: 1/1;
  background-color: #DCB76E;
  border-radius: 50%;
}
.p-top-feature__desc {
  color: #fff;
  padding-left: 115px;
}
@media screen and (min-width: 1280px) {
  .p-top-feature__heading > span {
    line-height: 1.2;
    padding-left: 20px;
    padding-bottom: 40px;
  }
  .p-top-feature__heading > span::after {
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-feature {
    background-image: url(../img/top/feature_bg_sp.webp);
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p-top-feature__heading > span::before {
    opacity: 1;
    color: #DCB76E;
  }
  .p-top-feature__list {
    row-gap: 60px;
  }
  .p-top-feature__item:not(:first-of-type) {
    padding-top: 20px;
  }
  .p-top-feature__item:not(:last-of-type) {
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
  .p-top-feature__ttl {
    -moz-column-gap: 20px;
         column-gap: 20px;
    font-size: 1.4285714286rem;
  }
  .p-top-feature__ttl::before {
    width: 40px;
    font-size: 22px;
    line-height: 40px;
  }
  .p-top-feature__desc {
    padding-left: 0;
  }
}

/*アルモ式植毛技術*/
.p-top-tech {
  padding-bottom: 100px;
}
.p-top-tech__list {
  display: flex;
  align-items: center;
  gap: 20px 40px;
}
.p-top-tech__banner {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .p-top-tech {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p-top-tech__list {
    flex-direction: column;
    margin-left: -1%;
  }
  .p-top-tech__banner {
    max-width: 400px;
    width: 100%;
  }
}

/*自毛植毛費用例*/
.p-top-ex {
  padding-bottom: 80px;
}
.p-top-ex__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-ex {
    padding-top: 50px;
  }
  .p-top-ex__heading {
    margin-bottom: 40px;
  }
}

/*症例紹介*/
.p-top-result__title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-result-list__ttl {
  min-height: 80px;  /* h2の最低限の高さを指定 */
  flex-grow: 1;  /* h2を可変にする */
  display: flex;
  align-items: center;  /* 縦方向は中央揃えのまま */
  justify-content: flex-start; /* 横方向に左寄せに変更 */
}

.c-result-list__subttl {
  flex-shrink: 0; /* h3の高さは固定 */
}

.p-top-result {
  padding-bottom: 80px;
  background: url(../img/cmn/geometric_bg.jpg) no-repeat center center/cover;
}
.p-top-result__list {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 60px calc(50% - 50vw);
  padding-left: 25px;
  display: flex;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-top-result__list.slick-initialized {
  display: block;
  opacity: 1;
}
.p-top-result__list:not(.slick-slider) {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.p-top-result__list .slick-track {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.p-top-result__item {
  width: 440px;
}
.p-top-result__arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  aspect-ratio: 1/1;
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
.p-top-result__arrow::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
}
.p-top-result__arrow--prev {
  left: 10px;
}
.p-top-result__arrow--prev::before {
  border-left: 1px solid #9b8c6e;
  border-bottom: 1px solid #9b8c6e;
  transform: rotate(45deg);
  margin-left: 5px;
}
.p-top-result__arrow--next {
  right: 10px;
}
.p-top-result__arrow--next::before {
  border-top: 1px solid #9b8c6e;
  border-right: 1px solid #9b8c6e;
  transform: rotate(45deg);
  margin-right: 5px;
}
@media screen and (max-width: 1279px) {
  .p-top-result__item {
    width: 345px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-result {
    padding-top: 50px;
  }
  .p-top-result__item {
    max-width: 325px;
    width: 100%;
  }
  .p-top-result__list {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .p-top-result__list .slick-track {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .p-top-result__arrow {
    width: 40px;
  }
}

/*クリニック情報*/
.p-top-info {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-info {
    padding-top: 50px;
  }
}

/*お知らせ*/
.p-top-news {
  background: url(../img/cmn/geometric_bg.jpg) no-repeat center center/cover;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-bottom: 50px;
  }
}

/*コラム*/
.p-top-column {
  padding-bottom: 80px;
}
.p-top-column__list {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-column {
    padding-bottom: 50px;
  }
  .p-top-column__list {
    margin-bottom: 30px;
  }
}

/*メディア*/
.p-top-media {
  background: url(../img/cmn/geometric_bg.jpg) no-repeat center center/cover;
  padding-top: 40px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-media {
    padding-bottom: 40px;
  }
}

/*SNS*/
.p-top-sns {
  position: fixed;
  top: 120px;
  right: 35px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 35px;
}
.p-top-sns__item {
  width: 30px;
  aspect-ratio: 1/1;
}
.p-top-sns__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1280px) {
  .p-top-sns {
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sns {
    display: none;
  }
}

/*---下層ページ共通---*/
/*セクション*/
.p-page-sec__cnt > *:not(:last-child) {
  margin-bottom: 40px;
}
.p-page-sec + .p-page-sec {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-page-sec__cnt > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .p-page-sec + .p-page-sec {
    margin-top: 50px;
  }
}

/*---コラム一覧ページ---*/
.p-archive__wrap {
  display: flex;
  flex-wrap: wrap;
}
.p-archive__head {
  width: 100%;
  padding: 4% 0 100px 240px;
}
.p-archive__side {
  max-width: 240px;
  min-width: 170px;
  width: 20%;
  border-top: 1px solid #9b8c6e;
}
.p-archive__main {
  flex: 1;
}
.p-archive__foot {
  padding: 80px 0;
}
.p-archive__pager {
  display: none;
}
.p-archive__moreBtn {
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-archive__wrap {
    justify-content: center;
  }
  .p-archive__head {
    padding: 20px 0;
  }
  .p-archive__side {
    max-width: initial;
    width: 90%;
    margin-bottom: 30px;
  }
  .p-archive__main {
    flex: initial;
    width: 100%;
  }
  .p-archive__foot {
    text-align: center;
    padding: 50px 0;
  }
  .p-archive__moreBtn {
    width: 100%;
  }
}

/*メインビジュアル*/
.p-archive-visual {
  background: url(../img/column/page-visual_bg.jpg) no-repeat center center/cover;
}

/*サイドバーウィジット*/
.p-archive-widget__header {
  padding: 30px 20px 20px;
}
.p-archive-widget__menu {
  row-gap: 0;
}
.p-archive-widget__menu .c-sub-menu__item {
  width: 100%;
  min-width: initial;
  border: none;
  border-bottom: 1px solid #eee;
}
.p-archive-widget__menu .c-sub-menu__item > a {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-archive-widget__header {
    text-align: center;
  }
}

/*記事一覧*/
.p-archive-posts {
  padding-left: 32px;
  border-left: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .p-archive-posts {
    padding-left: 0;
    border-left: none;
  }
}

/*---コラム詳細ページ---*/
.p-single__main {
  max-width: 820px !important;
}
.p-single__cats {
  margin-bottom: 30px;
}
.p-single__ttl {
  margin-bottom: 120px;
}
.p-single__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 70px;
}
.p-single__thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single__cnt p {
  line-height: 2;
}
.p-single__cnt p + p {
  margin-top: 2em;
}
.p-single__cnt p > a {
  color: #9b8c6e;
  text-decoration: underline;
}
.p-single__cnt h2 {
  font-size: 1.75rem;
  font-weight: 500;
  margin: 2em 0;
  padding: 0.5em;
  background-color: #faf3e7;
  border-left: solid 5px #9b8c6e;
}
.p-single__cnt h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin: 1em 0;
  padding: 0 0.5em;
  border-left: solid 5px #9b8c6e;
}
.p-single__cnt h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1em 0;
}
.p-single__cnt h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 1em 0;
}
.p-single__cnt h6 {
  font-size: 1rem;
  font-weight: 500;
  margin: 1em 0;
}
.p-single__cnt .wp-block-image {
  width: 100%;
  margin: 60px 0;
}
.p-single__cnt .wp-block-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-single__cnt .wp-block-image figcaption {
  font-size: 0.9em;
  text-align: center;
}
.p-single__cnt .wp-block-embed {
  margin: 60px 0;
}
.p-single__cnt .wp-embed {
  font-family: "Noto Serif JP", serif;
}
.p-single__cnt .wp-block-table {
  margin: 60px 0;
}
.p-single__cnt .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.p-single__cnt .wp-block-table table thead th {
  text-align: center;
}
.p-single__cnt .wp-block-table table td {
  vertical-align: middle;
  border: 1px solid #525354;
  padding: 10px;
}
.p-single__cnt .wp-block-table table td:nth-child(1) {
  width: 30%;
  font-weight: 500;
  background-color: #f5f5f5;
}
.p-single__cnt .wp-embedded-content > a {
  color: #9b8c6e;
  text-decoration: underline;
}
.p-single__foot {
  padding-top: 140px;
  max-width: 960px !important;
}
@media screen and (max-width: 767px) {
  .p-single__cats {
    margin-bottom: 10px;
  }
  .p-single__ttl {
    margin-bottom: 30px;
  }
  .p-single__thumb {
    margin-bottom: 25px;
  }
  .p-single__cnt {
    font-size: 16px;
  }
  .p-single__cnt h2 {
    font-size: 1.4285714286rem;
    border-left: solid 3px #9b8c6e;
  }
  .p-single__cnt h3 {
    font-size: 1.2857142857rem;
    border-left: solid 3px #9b8c6e;
  }
  .p-single__cnt h4 {
    font-size: 1.1428571429rem;
  }
  .p-single__cnt h5 {
    font-size: 1rem;
  }
  .p-single__cnt .wp-block-image {
    margin: 30px 0;
  }
  .p-single__cnt .wp-block-table {
    overflow-x: auto;
    margin: 30px 0;
  }
  .p-single__cnt .wp-block-table table td {
    white-space: normal;
    word-break: break-all;
    overflow-wrap: break-word;
    font-size: 0.8rem;
  }
  .p-single__foot {
    padding-top: 60px;
  }
}

/*著者情報*/
.p-single-writer {
  border: 1px solid #9b8c6e;
  margin-top: 40px;
}
.p-single-writer__heading {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #9b8c6e;
  padding: 10px 20px;
}
.p-single-writer__heading::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  transform: translateX(100%);
  display: inline-block;
  width: 40px;
  height: 100%;
  background: linear-gradient(-60deg, transparent 0%, transparent 50%, #9b8c6e 50%, #9b8c6e 100%);
}
.p-single-writer__body {
  padding: 20px;
}
.p-single-writer__cnt > *:not(:last-child) {
  margin-bottom: 20px;
}
.p-single-writer__img {
  width: 150px;
}
.p-single-writer__ttl {
  font-weight: 600;
}
.p-single-writer__desc {
  font-size: 0.875rem;
}
.p-single-writer__link {
  font-size: 0.875rem;
}
@media screen and (min-width: 1280px) {
  .p-single-writer__body {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-single-writer__body {
    flex-direction: row-reverse;
    align-items: flex-start;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-single-writer__body {
    flex-direction: column-reverse;
    align-items: center;
  }
  .p-single-writer__ttl {
    display: block;
    text-align: center;
    padding-left: 0;
  }
  .p-single-writer__ttl::before {
    content: none;
  }
}

/*SNSシェアボタン*/
.p-single-share__heading {
  margin-bottom: 1em;
}
.p-single-share__list {
  display: flex;
  justify-content: center;
}
.p-single-share__item {
  width: 100px;
  height: 42px;
  display: block;
  color: #fff;
  padding: 0.4em 0;
  text-align: center;
}
.p-single-share__item > img {
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-single-share__item--twitter {
  background-color: rgb(15, 20, 25);
}
.p-single-share__item--line {
  background-color: #1dcd00;
}
.p-single-share__item--facebook {
  background-color: #3b5998;
}
.p-single-share__item--hatebu {
  background-color: #2089cb;
  padding: 0;
}

/*ページャー*/
.p-single-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
}
.p-single-pager__prev, .p-single-pager__next {
  min-width: 160px;
}
.p-single-pager__prev > a {
  position: relative;
  padding-left: 48px;
}
.p-single-pager__prev > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 0.5px;
  background-color: #525354;
}
.p-single-pager__home > a {
  position: relative;
}
.p-single-pager__home > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  background-color: #525354;
}
.p-single-pager__next > a {
  position: relative;
  padding-right: 48px;
}
.p-single-pager__next > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 28px;
  height: 0.5px;
  background-color: #525354;
}
@media screen and (max-width: 767px) {
  .p-single-pager {
    flex-wrap: wrap;
    row-gap: 10px;
    font-size: 1.0909090909rem;
    text-align: center;
    padding: 60px 0;
  }
  .p-single-pager__prev, .p-single-pager__next {
    width: 50%;
  }
  .p-single-pager__prev {
    order: 0;
  }
  .p-single-pager__prev > a {
    padding-left: 20px;
  }
  .p-single-pager__prev > a::before {
    width: 10px;
  }
  .p-single-pager__next {
    order: 1;
  }
  .p-single-pager__next > a {
    padding-right: 20px;
  }
  .p-single-pager__next > a::before {
    width: 10px;
  }
  .p-single-pager__home {
    order: 3;
    width: 100%;
  }
}

/*---症例ページ---*/
.p-result-search {
  max-width: 1150px;
  background-color: #faf3e7;
  padding: 1.875rem;
}
.p-result-search__heading {
  position: relative;
  color: #9b8c6e;
  text-align: center;
  font-weight: 600;
}
.p-result-search__heading::before {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  background: url(../img/result/search-heading_ico.svg) no-repeat center center/contain;
  margin-right: 0.5em;
}
.p-result-search__body {
  margin-top: 1.875rem;
}
.p-result-search__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3.75rem;
  margin-bottom: 1.875rem;
}
.p-result-search__item {
  width: calc(50% - 1.875rem);
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.p-result-search__item--full {
  width: 100%;
}
.p-result-search__label {
  width: 4em;
  white-space: nowrap;
  text-align: center;
}
.p-result-search__cnt {
  flex: 1;
}
.p-result-search__selectbox {
  position: relative;
  width: 100%;
  height: 35px;
  font-size: 0.875rem;
  border: 1px solid #999;
  border-radius: 5px;
  background-color: #fff;
}
.p-result-search__selectbox > select {
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
.p-result-search__selectbox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  width: 7px;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #525354;
  border-right: 1px solid #525354;
  transform: translateY(-50%) rotate(45deg);
}
.p-result-search__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.p-result-search__checkbox {
  cursor: pointer;
}
.p-result-search__checkbox > input {
  display: none;
}
.p-result-search__checkbox > input:checked + span {
  color: #fff;
  background-color: #999;
}
.p-result-search__checkbox > span {
  display: inline-block;
  font-size: 0.875rem;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 5px;
  padding: 0 1em;
  white-space: nowrap;
}
.p-result-search__btn {
  min-width: 185px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", serif;
  font-size: 1rem;
  text-align: left;
  padding: 0.5em 2em;
  transition: all 0.2s linear;
}
.p-result-search__btn:hover {
  opacity: 0.7 !important;
}
@media screen and (max-width: 767px) {
  .p-result-search {
    padding: 20px;
  }
  .p-result-search__heading {
    text-align: left;
  }
  .p-result-search__heading::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "＋";
    display: inline-block;
    width: 7px;
  }
  .p-result-search__heading.is-open::after {
    content: "－";
  }
  .p-result-search__body {
    margin-top: 20px;
  }
  .p-result-search__item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    row-gap: 5px;
  }
  .p-result-search__label {
    text-align: left;
  }
  .p-result-search__cnt {
    width: 100%;
  }
  .p-result-search__btn {
    min-width: initial;
  }
  .p-result-search__selectbox {
    font-size: 1rem;
  }
  .p-result-search__checkbox > span {
    font-size: 1rem;
  }
}

/*一覧ページ*/
.p-resultArch__parameters > span:not(:last-child)::after {
  content: ",";
}
.p-resultArch__parameters + .p-resultArch-posts {
  margin-top: 3.75rem;
}
.p-resultArch__pager {
  display: none;
}
.p-resultArch__moreBtn {
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-resultArch__parameters + .p-resultArch-posts {
    margin-top: 30px;
  }
  .p-resultArch__moreBtn {
    width: 100%;
  }
}

.p-resultArch-pager {
  margin-top: 40px;
  text-align: center;
}
.p-archive__pagination *::before,
.p-archive__pagination *::after {
  border: none !important;
  content: none !important;
}
.p-resultArch-pager .screen-reader-text {
  display: none;
}
.p-resultArch-pager .nav-links {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.p-resultArch-pager .page-numbers {
  display: inline-block;
  width: 36px;
  height: 36px;
  text-align: center;
  vertical-align: middle;   /* 隣要素とのベースラインを揃える */
  font-size: 20px;
  text-decoration: none;
  box-sizing: border-box;   /* ★ 枠線を含めて幅・高さを計算 */
  padding: 0;               /* 内側余白リセット */
  margin: 0;                /* 外側余白リセット */
}
.p-resultArch-pager .page-numbers.current {
  color: #fff;
  background-color: #9b8c6e;
  border-color: #9b8c6e;
}
.p-resultArch-pager .page-numbers.home {
  width: auto;
  padding: 0 1.2em;
}


/* 共通（PC・モバイル共通） */
.p-archive__pagination {
  display: inline-block;
}
.p-resultArch-pager ul.horizontal-pager li a.page-numbers,
.p-resultArch-pager ul.horizontal-pager li span.page-numbers {
  display: inline-block !important;
  width: 36px;
  height: 36px;
  text-align: center !important;
  font-size: 20px !important;
  border: 1px solid #eee !important;
  text-decoration: none !important;
  box-sizing: border-box;  /* 枠線込みでサイズを計算 */
}

.page-numbers.horizontal-pager {
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/*詳細ページ*/
.p-result-baa__body {
  display: flex;
}
.p-result-baa__img {
  width: 50%;
}
.p-result-baa__img > figcaption {
  width: 100%;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
  background-color: #eee;
  padding: 0.5em;
}
.p-result-baa__img > img {
  width: 100%;
  aspect-ratio: 225/170;
}
.p-result-baa__img--before > figcaption {
  position: relative;
}
.p-result-baa__img--before > figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1rem;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background-color: #eee;
}
.p-result-baa__img--after > figcaption {
  background-color: #faf3e7;
}
@media screen and (max-width: 767px) {
  .p-result-baa__img > figcaption {
    font-size: 1rem;
  }
}

.p-result-gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-result-gallery__group {
  position: relative;
  display: flex;
  gap: 0 1px;
  padding-bottom: 45px;
}
.p-result-gallery__group:not(:last-of-type) {
  margin-bottom: 35px;
}
.p-result-gallery__group:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  display: inline-block;
  border-style: solid;
  border-width: 13px 10px 0 10px;
  border-color: #9b8c6e transparent transparent transparent;
  transform: translateX(-50%);
}
.p-result-gallery__img {
  width: 366px;
  aspect-ratio: 340/255;
}
.p-result-gallery__img source {
  display: block;
  width: 100%;
  height: 100%;
}
.p-result-gallery__img img,
.p-result-gallery__img source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-result-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  background-color: #f5f5f5;
  padding: 0.4em;
}
@media screen and (max-width: 1210px) {
  .p-result-gallery__group {
    padding-bottom: 40px;
  }
  .p-result-gallery__img {
    width: calc((100vw - 110px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-result-gallery__group {
    padding-bottom: 28px;
  }
  .p-result-gallery__group:not(:last-of-type) {
    margin-bottom: 18px;
  }
  .p-result-gallery__group:not(:last-of-type)::after {
    bottom: -12px;
    border-width: 7px 5px 0 5px;
  }
  .p-result-gallery__img {
    width: calc((100vw - 50px) / 3);
  }
  .p-result-gallery__caption {
    font-size: 0.7rem;
  }
}

.p-result-video__youtube {
  position: relative;
  max-width: 980px;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.p-result-video__youtube > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-result-outline__table th {
  text-align: center;
  color: #525354;
}


/*--- 採用情報 ---*/
.recruit .l-main-content,
.fulltime-nurse .l-main-content,
.parttime-nurse .l-main-content {
  padding-bottom: 0;
  border-bottom: none;
}
/* 共通背景付きビジュアル */
.page-id-11 .p-recruit-visual {
  background: url(../img/recruit/page-visual_bg.jpg) no-repeat center center / cover;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.page-id-303 .p-recruit-visual {
  background: url(../img/top/fv_slide02.webp) no-repeat center center / cover;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .p-recruit-visual {
    max-width: 1200px;
    margin: 0 auto;
  }

  .p-recruit-visual .p-page-visual__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
}


@media screen and (max-width: 767px) {
  .p-recruit-sticky-cta {
    display: block;
  }
}

/*応募職種ヘッダー*/
.p-recruit-header__ttl {
  margin-bottom: 45px;
}
.p-recruit-header__menu {
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .p-recruit-header {
    width: 70%;
    text-align: center;
    margin: 0 auto;
  }
  .p-recruit-header__ttl {
    padding-bottom: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #9b8c6e;
  }
  .p-recruit-header__menu {
    padding-left: 0;
  }
}

/*メッセージ*/
.p-recruit-message__body {
  flex-wrap: wrap;
}
.p-recruit-message__ttl {
  width: 100%;
  color: #9b8c6e;
}
@media screen and (min-width: 1280px) {
  .p-recruit-message__body {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-message__ttl {
    order: 1;
  }
  .p-recruit-message__desc {
    order: 2;
  }
  .p-recruit-message__img {
    order: 0;
  }
}

.p-recruit-box {
  position: relative;
  border-radius: 30px;
  background-color: #f7f8f8;
  padding: 75px 60px 60px 60px;
  margin-top: 40px;
}
.p-recruit-box__ttl {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  white-space: nowrap;
}
@media screen and (min-width: 1280px) {
  .p-recruit-box {
    width: calc(100% + 48px);
    margin-left: calc(50% - (50% + 24px));
    margin-right: calc(50% - (50% + 24px));
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-box {
    padding: 65px 15px 40px 15px;
  }
  .p-recruit-box__ttl {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*---採用情報子ページ---*/
/*募集要項*/
.p-recruit-guideline__heading {
  margin-bottom: 0;
}
@media screen and (min-width: 1280px) {
  .p-recruit-guideline {
    width: calc(100% + 48px);
    margin-left: calc(50% - (50% + 24px));
    margin-right: calc(50% - (50% + 24px));
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-guideline__heading {
    margin-bottom: 40px;
  }
  .p-recruit-guideline__box {
    padding: 0;
  }
  .p-recruit-guideline__table {
    table-layout: fixed;
  }
  .p-recruit-guideline__table th {
    width: 100px;
  }
}

.p-recruit-form {
  width: 100%;
}
.p-recruit-form__heading {
  margin-bottom: 0;
}
.p-recruit-form__table th {
  width: 330px;
  padding: 20px 0 20px 65px;
}
.p-recruit-form__table th.required::after {
  content: "*";
  display: inline-block;
  color: #ee0000;
  margin-left: 6px;
}
.p-recruit-form__table td {
  padding: 15px 42px;
}
.p-recruit-form__date {
  display: flex;
  align-items: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
}
.p-recruit-form__date > span {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.p-recruit-form__textbox {
  width: 100%;
  max-width: 420px;
  height: 35px;
  font-size: 0.6875rem;
  border: 1px solid #999;
  border-radius: 5px;
  background-color: #eee;
  padding: 0 9px;
}
.p-recruit-form__textbox--md {
  max-width: 90px;
}
.p-recruit-form__textbox--sm {
  max-width: 60px;
}
@media screen and (max-width: 767px) {
  .p-recruit-form__textbox--md {
    max-width: 75px;
  }
  .p-recruit-form__textbox--sm {
    max-width: 50px;
  }
}
.p-recruit-form__textarea {
  width: 100%;
  height: 190px;
  font-size: 0.6875rem;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #999;
  border-radius: 5px;
  background-color: #eee;
  padding: 9px;
}
.p-recruit-form__checkboxes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 40px;
}
.p-recruit-form__checkboxes .mwform-checkbox-field {
  margin: 0 !important;
}
.p-recruit-form__control {
  text-align: center;
  margin-top: 100px;
}
.p-recruit-form__agree {
}
.p-recruit-form__agree .mwform-checkbox-field::after {
  content: "必須";
  display: inline-block;
  color: #fff;
  font-size: 0.5rem;
  background-color: #e76363;
  padding: 2px 10px;
}
.p-recruit-form__agree .mwform-checkbox-field input {
  margin-right: 0;
}
.p-recruit-form__agree .mwform-checkbox-field-text > a {
  text-decoration: underline;
}
.p-recruit-form__note {
  margin-bottom: 40px;
}
.p-recruit-form__btn {
  font-size: 1.75rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-recruit-form__heading {
    text-align: center;
  }
  .p-recruit-form__table {
    border-top: 1px solid #9b8c6e;
  }
  .p-recruit-form__table thead,
  .p-recruit-form__table tbody,
  .p-recruit-form__table tr {
    display: block;
    width: 100%;
  }
  .p-recruit-form__table th,
  .p-recruit-form__table td {
    display: block;
    width: 100%;
    font-size: 1rem;
  }
  .p-recruit-form__table th {
    border-top: none;
    border-bottom: 1px solid rgba(155, 140, 110, 0.3);
    padding: 20px 25px;
  }
  .p-recruit-form__table td {
    border-top: none;
    padding: 1rem 25px;
  }
  .p-recruit-form__checkboxes {
    justify-content: center;
  }
  .p-recruit-form__control {
    margin-top: 60px;
  }
}

/*---よくあるご質問---*/
/*メインビジュアル*/
.p-faq-visual {
  background: url(../img/faq/page-visual_bg.jpg) no-repeat center center/cover;
}

/*セクション*/
.p-faq-sec__heading {
  margin-bottom: 30px;
}
@media screen and (min-width: 1280px) {
  .p-faq-sec__heading {
    margin-bottom: 60px;
  }
}

/*カテゴリヘッダー*/
.p-faq-header {
  padding-bottom: 105px;
}
.p-faq-header__head {
  margin-bottom: 40px;
}
.p-faq-header__head-ttl {
  font-size: 1.625rem;
}
.p-faq-header__menu {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-faq-header {
    padding-bottom: 50px;
  }
  .p-faq-header__head {
    padding: 0;
    margin-bottom: 20px;
  }
  .p-faq-header__head-ttl {
    font-size: 1.2727272727rem;
  }
  .p-faq-header__menu {
    padding: 0;
  }
}

/*---クリニック紹介---*/
/*メインビジュアル*/
.p-clinic-visual {
  background: url(../img/clinic/page-visual_bg.jpg) no-repeat center center/cover;
}

/*アルモの理念*/
.p-clinic-philo {
  background: url(../img/clinic/philo_bg.jpg) no-repeat center bottom/cover;
  padding: 100px 0 80px;
  margin-top: -100px;
}
.p-clinic-philo__wrap {
  position: relative;
  width: calc(100% - 50px);
  background-color: #fff;
  padding: 60px 40px;
}
.p-clinic-philo__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.p-clinic-philo__cnt {
  font-size: 1.125rem;
}
@media screen and (min-width: 1280px) {
  .p-clinic-philo__wrap {
    padding: 120px 85px 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-clinic-philo {
    background: #fff;
    padding-bottom: 0;
    padding-top: 40px;
    margin-top: 0;
  }
  .p-clinic-philo__wrap {
    width: 100%;
    padding-bottom: 0;
  }
  .p-clinic-philo__body {
    flex-direction: column !important;
  }
  .p-clinic-philo__cnt {
    width: auto;
    font-size: 1rem;
  }
  .p-clinic-philo__img {
    width: 74%;
  }
}

/*アルモが選ばれる理由*/
.p-clinic-reason {
  padding-top: 40px;
}
.p-clinic-reason__heading {
  margin-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .p-clinic-reason__block {
    width: 93%;
    -moz-column-gap: 80px;
         column-gap: 80px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-clinic-reason__heading {
    margin-bottom: 40px;
  }
  .p-clinic-reason__block {
    width: 100%;
    flex-direction: column-reverse !important;
    align-items: center;
  }
}

/*クリニック内装*/
.p-clinic-interior {
  padding-top: 40px;
}
.p-clinic-interior__heading {
  margin-bottom: 80px;
}
.p-clinic-interior__block {
  align-items: center;
}
.p-clinic-interior__img {
  width: 50%;
}
@media screen and (min-width: 1280px) {
  .p-clinic-interior__block {
    width: 93%;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-clinic-interior__heading {
    margin-bottom: 40px;
  }
  .p-clinic-interior__block {
    width: 100%;
    flex-direction: column-reverse !important;
    align-items: center;
  }
  .p-clinic-interior__img {
    width: 100%;
  }
}

/*クリニック情報*/
.p-clinic-info {
  padding: 40px 0 0;
}
.p-clinic-info__heading {
  margin-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .p-clinic-info__heading {
    margin-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-clinic-info__heading {
    text-align: center;
    margin-bottom: 40px;
  }
}

/*---医師・スタッフ紹介---*/
/*メインビジュアル*/
.p-staff-visual {
  background: url(../img/staff/page-visual_bg.jpg) no-repeat center center/cover;
}

/*メッセージ*/
.p-staff-message__img {
  margin-bottom: 45px;
}
.p-staff-message__name {
  margin-bottom: 0;
}
.p-staff-message__name > span {
  width: 100%;
  min-width: initial;
}
.p-staff-message__cnt {
  padding: 40px 25px;
}
@media screen and (min-width: 1280px) {
  .p-staff-message {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  .p-staff-message__cnt {
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-staff-message {
    flex-direction: column;
  }
  .p-staff-message__name > span {
    padding: 15px;
  }
  .p-staff-message__cnt {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

/*医師紹介*/
.p-staff-doctor__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  margin-top: 80px;
}
.p-staff-doctor__btn {
  min-width: 505px;
}
@media screen and (max-width: 767px) {
  .p-staff-doctor__foot {
    row-gap: 15px;
    margin-top: 30px;
  }
  .p-staff-doctor__btn {
    min-width: initial;
  }
}

/*スタッフから一言*/
.p-staff-comments__list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 28px;
}
.p-staff-comments__item {
  width: calc((100% - 56px) / 3);
  padding: 30px;
}
.p-staff-comments__item > *:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-staff-comments__item {
    width: 100%;
    padding: 22px;
  }
}

/*--- 内田医師の略歴 ---*/
/*セクション*/
.p-bio-sec {
  padding-left: 40px;
  padding-right: 40px;
}
.p-bio-sec__heading {
  margin-bottom: 1.5em !important;
}
.p-bio-sec__table th,
.p-bio-sec__table td {
  line-height: 2;
  padding: 0.5rem 0;
}
.p-bio-sec__table th {
  width: 9rem;
}
.p-bio-sec__item + .p-bio-sec__item {
  margin-top: 1rem;
}
@media screen and (min-width: 1280px) {
  .p-bio-sec {
    padding-left: 65px;
    padding-right: 65px;
  }
}
@media screen and (max-width: 767px) {
  .p-bio-sec {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .p-bio-sec__heading {
    font-size: 1.2857142857rem;
  }
  .p-bio-sec__table th,
  .p-bio-sec__table td {
    padding: 0.2rem 0;
  }
  .p-bio-sec__table th {
    width: 5rem;
  }
}

/*メッセージ*/
@media screen and (max-width: 767px) {
  .p-bio-message__img {
    width: 68%;
  }
  .p-bio-message__cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-bio-message__ttl {
    font-size: 1.2857142857rem;
  }
}

/*経歴*/
@media screen and (max-width: 767px) {
  .p-bio-carrer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 25px;
    padding-right: 25px;
  }
}

/*--- 自毛植毛とは ---*/
/*メインビジュアル*/
.p-transplant-visual {
  background: url(../img/transplant/page-visual_bg.jpg) no-repeat center center/cover;
}

/*自毛植毛の術式比較*/
@media screen and (max-width: 767px) {
  .p-transplant-compare__table-wrapper {
    overflow-x: auto;
  }
  .p-transplant-compare__table {
    min-width: auto;      /* 固定幅を解除し画面内に収める */
    width: 100%;          /* フル幅で可変 */
  }
}

/*自毛植毛手術の流れ*/
.p-transplant-flow__foot {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-transplant-flow__foot {
    margin-top: 30px;
  }
}

/*当院の自毛植毛*/
.p-transplant-almo {
  background: url(../img/transplant/almo_bg.jpg) no-repeat center center/cover;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-transplant-almo {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px;
  }
}

.p-transplant-cta {
  margin-top: 0 !important;
}

/*--- メニュー ---*/
.cs-menu .c-price-table + .c-border-btm-heading {
  padding-top: 20px;
}
.cs-menu .c-border-btm-heading {
  margin-bottom: 20px !important;
}
.cs-menu .c-sticky-cta__btn {
  padding: 1em 7px;
}
@media screen and (max-width: 767px) {
  .cs-menu .c-price-table + .c-border-btm-heading {
    padding-top: 0;
  }
}

/*ナビゲーション*/
.p-menu-header__menu > li {
  min-width: 220px;
  font-size: 1.125rem;
  text-align: center;
}

/*メッセージ*/
@media screen and (min-width: 1280px) {
  .p-menu-message {
    -moz-column-gap: 55px;
         column-gap: 55px;
  }
  .p-menu-message__img {
    width: 26%;
  }
}

/*--- 植毛手術をご検討の方へ ---*/
/*メインビジュアル*/
.p-guide-visual .p-page-visual__ttl {
  font-size: 2.5rem;
}
.p-guide-visual .p-page-visual__ttl::before {
  content: none;
}
@media screen and (min-width: 1280px) {
  .p-guide-visual .p-page-visual__ttl {
    font-size: 3.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-guide-visual .p-page-visual__ttl {
    font-size: 1.7142857143rem;
  }
}

/*セクション*/
.p-guide-sec__block + .p-guide-sec__block {
  margin-top: 50px;
}
.p-guide-sec__cnt {
  margin-bottom: 0 !important;
}
.p-guide-sec__cnt > *:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-guide-sec__block {
    flex-direction: column;
    padding: 20px;
  }
  .p-guide-sec__block + .p-guide-sec__block {
    margin-top: 30px;
  }
  .p-guide-sec__cnt > *:not(:last-child) {
    margin-bottom: 10px;
  }
}

/*--- カウンセリング・診療の流れ ---*/
/*施術翌日*/
.p-flow-next__heading {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-flow-next__heading {
    width: 100%;
  }
}

/*--- 術後経過について ---*/
/*副作用・ショックロスに関して*/
.p-after-effect__heading {
  color: #9b8c6e;
  font-size: 1.875rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(82, 83, 84, 0.5019607843);
  padding-bottom: 5px;
}

/*安心保障制度*/
.p-after-hoshou {
  position: relative;
  background: url(../img/guide/after-hoshou_bg.jpg) no-repeat center center/cover;
  padding-top: 100px;
  padding-bottom: 60px;
}
.p-after-hoshou::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(40, 38, 45, 0.4);
}
.p-after-hoshou__inner {
  z-index: 2;
  position: relative;
  width: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 90px 40px 65px 40px;
  box-shadow: 20px 20px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.p-after-hoshou__main-ttl {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  color: #fff;
  background-color: #9b8c6e;
  white-space: nowrap;
  padding: 20px 130px;
}
.p-after-hoshou__desc {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
}
.p-after-hoshou__desc > span {
  color: #ee0000;
  font-size: 1.5em;
}
.p-after-hoshou__note {
  max-width: 800px;
}
@media screen and (min-width: 1280px) {
  .p-after-hoshou {
    padding-top: 240px;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-after-hoshou__inner {
    padding: 40px 25px 25px;
  }
  .p-after-hoshou__main-ttl {
    top: -30px;
    padding: 10px 40px;
  }
  .p-after-hoshou__desc {
    font-size: 1.8181818182rem;
  }
}

/*--- 費用について ---*/
/*基本料金*/
.p-price-basic {
  margin-top: 60px;
}

/*お支払い方法*/
.p-price-payment__item {
  display: flex;
  align-items: flex-start;
  gap: 10px 75px;
}
.p-price-payment__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.p-price-payment__ttl {
  flex-shrink: 0;
  min-width: 10em;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-price-payment__item {
    flex-direction: column;
  }
}

.p-price-credit__list {
  display: flex;
  align-items: center;
  gap: 5px 10px;
}
.p-price-credit__item {
  flex: 1;
  max-width: 60px;
  aspect-ratio: 1/1;
}
.p-price-credit__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*--- 自毛植毛メニュー ---*/
/*費用例*/
.p-price-ex__block {
  display: flex;
  align-items: center;
  gap: 20px 20px;
}
.p-price-ex__img {
  flex-shrink: 0;
  width: 250px;
  aspect-ratio: 4/3;
}
.p-price-ex__cnt {
  position: relative;
  flex: 1;
  display: flex;
  padding-bottom: 25px;
}
.p-price-ex__note {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  text-align: right;
  font-size: 14px;
}
.p-price-ex__table th {
  padding: 10px 20px;
}
.p-price-ex__table td {
  text-align: right;
}
.p-price-ex__table th,
.p-price-ex__table td {
  white-space: nowrap;
}
.p-price-ex__table th:not(:first-child) {
  background-color: #9b8c6e;
}
.p-price-ex__table tbody th:first-child {
  width: auto;

}
.p-price-ex__table tbody td {
  background-color: #faf3e7;
}
@media screen and (min-width: 769px) {
  .p-price-ex__img {
    width: 350px;
    margin-left: -80px;
  }
  .p-price-ex__table--histandard {
    width: 60%;
  }
  .p-price-ex__table--unshaven {
    width: 40%;
  }
  .p-price-ex__table--unshaven th:first-child {
    display: none;
  }
  .p-price-ex__table--unshaven th,
  .p-price-ex__table--unshaven td {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .p-price-ex__block {
    flex-direction: column;
    margin-bottom: 30px !important;
  }
  .p-price-ex__img {
    max-width: 400px;
    width: 100%;
  }
  .p-price-ex__cnt {
    flex: initial;
    width: 100%;
    flex-direction: column;
    row-gap: 5px;
  }
  .p-price-ex__table {
    font-size: 0.8571428571rem;
  }
}

/*--- 自毛植毛メニュー ---*/
.p-tmenu-visual {
  background: url(../img/tmenu/page-visual_bg.jpg) no-repeat center center/cover;
}
.p-tmenu-visual .p-page-visual__ttl::before {
  content: none;
}

.p-tmenu-about__img {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-tmenu-about__ttl {
    text-align: center;
  }
}

.p-tmenu-method .c-media-object + .c-media-object {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-tmenu-method .c-media-object {
    padding: 20px;
  }
  .p-tmenu-method .c-media-object + .c-media-object {
    margin-top: 30px;
  }
}

.p-tmenu-case__gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 40px;
}
.p-tmenu-case__ttl {
  width: 100%;
}
.p-tmenu-case__item {
  width: calc(50% - 20px);
}
.p-tmenu-case__item > figcaption {
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-tmenu-case__gallery {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .p-tmenu-case__item {
    width: calc(50% - 5px);
  }
}

/*--- その他メニュー ---*/
.p-omenu-visual {
  background: url(../img/omenu/page-visual_bg.jpg) no-repeat bottom -300px center/cover;
}
.p-omenu-visual .p-page-visual__ttl::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-omenu-visual {
    background-position: center center;
  }
}

/*--- AGA治療 ---*/
.p-aga-about {
  margin-bottom: 60px;
}

.p-aga-sec {
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.05);
}
.p-aga-sec__heading {
  position: relative;
  width: 50%;
  color: #fff;
  background-color: #9b8c6e;
  padding: 15px 40px;
}
.p-aga-sec__heading::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  transform: translateX(100%);
  display: inline-block;
  width: 40px;
  height: 100%;
  background: linear-gradient(-60deg, transparent 0%, transparent 50%, #9b8c6e 50%, #9b8c6e 100%);
}
.p-aga-sec__intro {
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 40px;
}
.p-aga-sec__img {
  width: 45%;
}
.p-aga-sec__item {
  border-top: 1px solid rgba(155, 140, 110, 0.5);
  padding: 30px 40px;
}
.p-aga-sec__ttl {
  font-weight: 500;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-aga-sec {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
  }
  .p-aga-sec__heading {
    width: 80%;
    padding: 10px 20px;
  }
  .p-aga-sec__img {
    width: 100%;
  }
  .p-aga-sec__intro {
    padding: 30px 20px;
  }
  .p-aga-sec__item {
    padding: 20px;
  }
}

/*--- アクセス ---*/
.p-access-visual::before {
  background-color: rgba(66, 60, 49, 0.4);
}

.p-access-sec {
  max-width: 1100px;
}
.p-access-sec__img {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-access-intro {
  max-width: 1100px;
}
.p-access-intro__table th {
  width: 15%;
}
.p-access-intro__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.p-access-intro__img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .p-access-intro__img {
    display: none;
  }
}

.p-access-menu__ttl {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  padding-left: 1.25rem;
  margin-bottom: 5px;
}
.p-access-menu__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  background-color: #9b8c6e;
  border-radius: 50%;
}
.p-access-menu__desc {
  padding-left: 1.25rem;
}
.p-access-menu__desc + .p-access-menu__ttl {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-access-menu__ttl {
    font-size: 1.0714285714rem;
  }
  .p-access-menu__desc + .p-access-menu__ttl {
    margin-top: 15px;
  }
}

.p-access-guide {
  padding: 80px 25px;
  background: url(../img/cmn/geometric_bg.jpg) no-repeat center center/cover;
}
.p-access-guide__block {
  max-width: 1140px;
  background-color: #fff;
  padding: 40px;
}
.p-access-guide__body {
  padding-left: 0;
  padding-right: 0;
}
.p-access-guide__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  counter-reset: num;
}
.p-access-guide__item {
  width: calc((100% - 60px) / 3);
}
.p-access-guide__img {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 10px;
}
.p-access-guide__desc {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.p-access-guide__desc::before {
  counter-increment: num;
  content: counter(num);
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #9b8c6e;
  border-radius: 50%;
}
@media screen and (max-width: 980px) {
  .p-access-guide__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .p-access-guide {
    padding: 50px 15px;
  }
  .p-access-guide__block {
    padding: 20px;
  }
  .p-access-guide__item {
    width: 100%;
  }
}

.p-access-autro__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.p-access-autro__map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---交通費の補助--*/
.p-subsidy-visual::before {
  background-color: rgba(66, 60, 49, 0.4);
}

/*対象の方*/
.p-subsidy-target {
  background: url(../img/clinic/philo_bg.jpg) no-repeat center bottom/cover;
  padding: 100px 0 80px;
  margin-top: -100px;
}
.p-subsidy-target__wrap {
  position: relative;
  width: calc(100% - 50px);
  background-color: #fff;
  padding: 60px 40px;
}
.p-subsidy-target__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.p-subsidy-target__list {
  max-width: 400px;
  font-size: 1.125rem;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .p-subsidy-target__wrap {
    padding: 120px 85px 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-subsidy-target__wrap {
    width: 100%;
    padding-bottom: 0;
  }
  .p-subsidy-target__body {
    flex-direction: column !important;
  }
}

/*--- ルール系共通 ---*/
@media screen and (min-width: 1280px) {
  .p-rule__cnt {
    font-size: 0.875rem;
    padding-left: 55px;
  }
}

.p-privacy-policy-visual::before,
.p-terms-of-service-visual::before,
.p-contents-policy-visual::before {
  background-color: rgba(66, 60, 49, 0.4);
}

/*--- 運営者情報 ---*/
.p-administrator-visual::before {
  background-color: rgba(66, 60, 49, 0.4);
}

/*--- 404 ---*/
.p-404-visual::before {
  background-color: rgba(66, 60, 49, 0.4);
}

.error404 .c-cta {
  display: none;
}

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

.u-display--pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .u-display--pc {
    display: block;
  }
}
.u-display--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-display--sp {
    display: block;
  }
}
.u-display-ib--pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .u-display-ib--pc {
    display: inline-block;
  }
}

@media screen and (min-width: 1280px) {
  .u-hidden--pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden--sp {
    display: none;
  }
}

.u-border--bottom {
  border-bottom: 1px solid #9b8c6e;
}
.u-border--gr {
  border-color: rgba(82, 83, 84, 0.5019607843);
}

.u-fit--contain > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.u-anime--slidein {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transform: translateY(50px);
}
.u-anime--slidein.is-active {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
.u-anime--fadein {
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.u-anime--fadein.is-active {
  opacity: 1;
}/*# sourceMappingURL=common.css.map */


/* #cat16-1 専用のスタイル */
#cat16-1 .p-page-sec__cnt {
  display: flex;
  flex-wrap: nowrap; /* 横並びを保持 */
  gap: 20px; /* 要素間の余白 */
  padding: 10px;
  align-items: flex-start; /* 上揃え */

}

#cat16-1 .left-cell {
  width: 50%; /* 左カラムを50% */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* 画像やテキストを中央揃え */
}

#cat16-1 .right-cell {
  width: 50%; /* 右カラムを50% */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央揃え */
}

/* モバイル対応 */
@media (max-width: 768px) {
  #cat16-1 .p-page-sec__cnt {
    flex-wrap: wrap; /* 縦並びにする */
  }

  #cat16-1 .left-cell,
  #cat16-1 .right-cell {
    width: 100%; /* 横幅を100%に */
    text-align: center; /* テキストを中央揃え */
    box-sizing: border-box; /* パディングとボーダーを幅に含める */

  }

  #cat16-1 .right-cell2 {
    padding-left: 0; /* 余白をリセット */
    margin-top: 20px; /* 上部余白を追加 */
  }
}
/* 3カラム設定 */
#cat16-1 .three-column {
  display: flex;
  justify-content: space-between; /* 均等配置 */
  gap: 20px; /* 各カラムの間隔 */
  padding: 10px 0;
}

#cat16-1 .three-column .column {
  flex: 1; /* 各カラムの幅を均等に */
  max-width: 300px; /* 画像の最大幅を設定 */
  text-align: center; /* 画像を中央揃え */
}

/* モバイル対応: 1カラムに変更 */
@media (max-width: 768px) {
  #cat16-1 .three-column {
    flex-wrap: wrap; /* 縦並び */
  }

  #cat16-1 .three-column .column {
    flex: 1 1 100%; /* 幅を100%に */
    margin-bottom: 20px; /* 下に余白を追加 */
  }
}

/* リストの装飾　情報局とコラム */
body.single-media-center .p-single__main ul.wp-block-list,
body.single-post .p-single__cnt ul.wp-block-list {
  border: 2px solid #2c3e50; /* 濃いグレーの枠線 */
  padding: 15px; /* 内側の余白 */
  border-radius: 8px; /* 角を丸くする */
  background-color: #f9f9f9; /* 背景色を追加 */
  margin: 20px 0; /* 上下の余白 */
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1); /* 影を追加 */
  list-style-type: none; /* デフォルトのリストマークを削除 */
}

body.single-media-center .p-single__main ul.wp-block-list li,
body.single-post .p-single__cnt ul.wp-block-list li {
  padding: 8px 0; /* 各リストの間隔 */
  position: relative;
  padding-left: 25px; /* アイコン用のスペース */
}

body.single-media-center .p-single__main ul.wp-block-list li::before,
body.single-post .p-single__cnt ul.wp-block-list li::before {
  content: "✔"; /* カスタムアイコン（例: チェックマーク） */
  color: #2c3e50; /* アイコンの色 */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

body.single-media-center .p-single__main ol.wp-block-list,
body.single-post .p-single__cnt ol.wp-block-list {
  list-style-type: decimal;
  padding-left: 2em;
  background-color: #f9f9f9;
  margin: 20px 0;
}

body.single-media-center .p-single__main ol.wp-block-list li,
body.single-post .p-single__cnt ol.wp-block-list li {
  padding: 8px 0;
  position: relative;
}

body.single-media-center .p-single__main ol.wp-block-list li::before,
body.single-post .p-single__cnt ol.wp-block-list li::before {
  content: none;
}


.comment-box {
  display: flex;
  align-items: center; /* 画像と吹き出しを縦中央揃え */
  max-width: 600px;
  padding: 10px;
  flex-wrap: nowrap;
  font-size: 0.8em;
}

/* 画像エリア */
.comment-image {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 画像を吹き出しの高さに対して中央配置 */
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  text-align: center;
}

.comment-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-image figcaption {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}

/* 吹き出しエリア */
.comment-text {
  background-color: #bbdefb;
  padding: 12px 15px;
  border-radius: 10px;
  flex-grow: 1;
  word-break: break-word; /* 長い単語を折り返す */
  white-space: normal; /* カラム化を防ぐ */
  overflow-wrap: break-word; /* 単語がはみ出さないように */
  max-width: 100%; /* カラム化を防ぐ */
  position: relative;
  display: block; /* 修正: flexを解除 */
}

/* 吹き出しの左側に三角形を追加 */
.comment-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%); /* 縦中央揃え */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent #bbdefb transparent transparent;
}

/* スマホ対応 */
@media (max-width: 480px) {
  .comment-box {
      flex-direction: row; /* スマホでも横並び */
      align-items: center;
  }

  .comment-image {
      justify-content: center;
  }

  .comment-text {
      max-width: 100%;
      display: block; /* flexを解除してカラム化を防ぐ */
      word-break: break-word;
      white-space: normal;
      overflow-wrap: break-word;
  }

  .comment-text::before {
      top: 50%;
      transform: translateY(-50%);
  }
}
/* MAC対応 */
.p-top-fv__banner:focus-visible {
  outline: none;
}
/* SPカテゴリのドロップダウンリスト化 */
@media screen and (min-width: 768px) {
  .accordion-icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {

    .category-accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      position: relative;
      width: 100%;
    }
  
    .accordion-icon {
      /* Flexコンテナ内で右寄せするために margin-left: auto を指定 */
      margin-left: auto;
      font-weight: bold;
      font-size: 1.2em;
    }

  
  /* 状態によるアイコンの切り替え（疑似要素でアイコン表示している場合） */
  .category-accordion-header.open .accordion-icon::after {
    content: "－";
  }
  .category-accordion-header .accordion-icon::after {
    content: "＋";
  }

  .category-list-pc .p-archive-widget__menu {
    display: none;
  }
  .category-list-pc.open .p-archive-widget__menu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  aside.p-archive__side {
    display: none !important;
  }
}
/* 実際のフォーム構造に合わせて調整 */
@media screen and (max-width: 767px) {
  .p-recruit-form__table {
    width: 100%;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
  }
}
/* ======================
   関連記事 見出し・レイアウト
====================== */
h4.post-connection {
  text-align: left;
  border-bottom: 1px solid #9b8c6e;
  width: 100%;
  padding: 0 0 5px 0;
  margin: 40px 0 20px 0;
}

/* ======================
   記事ブロック全体
====================== */
.related-post article {
  width: 100%;
  padding: 0;
  display: flex;
  margin-bottom: 30px;
  align-items: center; 
}

/* ======================
   画像ブロック
====================== */
.related-post article .imgtxt {
  width: auto;
  margin: 0;
  flex-shrink: 0;
}

.related-post article .imgtxt a {
  display: block;
}

.related-post-img {
  display: block;
}

.related-post-img img {
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ======================
   タイトルブロック
====================== */
.related-post article .ttl {
  padding-left: 20px;
}

.related-post .title a {
  font-weight: bold;
  font-size: 15px;
  color: #333;
  text-decoration: none;
}

.related-post p {
  margin: 0;
}

/* ======================
   レスポンシブ調整
====================== */
@media screen and (max-width: 767px) {
  .related-post-img img {
    width: 100% !important;
    max-width: none !important;
    height: auto;
    display: block;
    margin: 0 auto; /* 中央寄せ */
  }
  .related-post .title a {
    font-size: 14px;
  }

  .related-post article {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-post article .imgtxt {
    width: 100%;
    margin-bottom: 10px;
  }

  .related-post article .ttl {
    padding-left: 0;
  }
}
/* ======================
   額眉毛LP（hair-line, eyebrow-transplant）
====================== */

/* 共通：親をflexにして横並び */
body.hair-line .c-media-object,
body.eyebrow-transplant .c-media-object {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* 画像エリア：左側 */
body.hair-line .c-media-object__media,
body.eyebrow-transplant .c-media-object__media {
  width: 50%;
  flex-shrink: 0;
}

/* リストエリア：右側 */
body.hair-line .c-check-list,
body.eyebrow-transplant .c-check-list {
  width: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  body.hair-line .c-media-object,
  body.eyebrow-transplant .c-media-object {
    flex-direction: column;
    align-items: flex-start;
  }

  body.hair-line .c-media-object__media,
  body.eyebrow-transplant .c-media-object__media,
  body.hair-line .c-check-list,
  body.eyebrow-transplant .c-check-list {
    width: 100%;
  }
}

/* ギャラリー画像の表示 */
body.hair-line .c-feature__gallery-img img,
body.eyebrow-transplant .c-feature__gallery-img img {
  max-height: 400px;
  height: auto;
  width: 100%;
  object-fit: contain;
}

/* 動画制御 */
.video-wrapper {
  display: block;
  clear: both;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 2rem auto;
  background: #000;
  position: relative;
  aspect-ratio: 16 / 9;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#playButton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
#playButton img {
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.p-top-fv__heading {
  width: 100%;
  text-align: center;
}

.l-header__tagline {
  display: block;
  margin: 0 auto;
}

/* H1を中央に配置するコンテナ */
.p-top-fv__heading_main {
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 10;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
/* スマホ画面向け：文字サイズを縮小 */
@media screen and (max-width: 767px) {
  .p-top-fv__heading_main {
    font-size: 1.8rem;
    top: 50%;
  }
}
/* CTA */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 12px 48px;
  background-color: #9b8c6e;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;
  border: 1px solid #fff;
  transition: opacity 0.3s ease;
}

/* 内側の白い線（2本目の枠） */
.cta-button::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid #fff;
  pointer-events: none;
}

/* 矢印 */
.cta-button::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5em;
  font-size: 90%;
  vertical-align: middle;
}

/* ホバー時 */
.cta-button:hover {
  opacity: 0.8;
}


.cta-block h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  color: #2c2c2c;
}

.acc {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  margin-top: 10px;
  overflow: hidden;
}

.acc{border:1px solid #e6e6e6;background:#fff;border-radius:8px;margin-top:10px;overflow:hidden}
.acc__summary{list-style:none;cursor:pointer;display:flex;flex-direction:column;gap:.5rem;padding:.75rem 1rem}
.acc__summary::-webkit-details-marker{display:none}

.acc__head{display:flex;align-items:center;justify-content:space-between;gap:.75rem}
.acc__title{font-weight:700;color:#333}
.acc__icon{width:20px;height:20px;border:1px solid #d9d9d9;border-radius:50%;position:relative;flex:0 0 auto}
.acc__icon::before,.acc__icon::after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:#555}
.acc__icon::before{width:10px;height:2px}
.acc__icon::after{width:2px;height:10px}
.acc[open] .acc__icon::after{display:none} /* 開：－ */

.acc__teaser{
  font-size:.75rem; line-height:1.5;
  white-space:normal; overflow-wrap:anywhere;
  max-height:3em;

  /* マスクで下端フェード（Safari/Chrome）*/
  -webkit-mask-image: linear-gradient(180deg,#000 75%, transparent);
  mask-image: linear-gradient(180deg,#000 75%, transparent);
}

.acc__teaser::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1.1em;
  background:linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}


.acc[open] .acc__teaser{display:none}

.acc__panel{padding:0 1rem 1rem}
.u-mt10{margin-top:10px}

.c-result-list__price,
.c-result-list__risk {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444; 
  margin-top: 0.4em;
}

.c-result-list__price strong,
.c-result-list__risk strong {
  display: inline-block;
  min-width: 3.5em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #222;
}

.c-result-list__price small,
.c-result-list__risk small {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 768px) {
  .c-result-list__price,
  .c-result-list__risk {
    font-size: 0.85rem;
  }
  .c-result-list__price small,
  .c-result-list__risk small {
    font-size: 0.75rem;
  }
}

/* =====================================================
   アコーディオン開閉：同じ中身で上半分だけプレビュー
   ===================================================== */

/* 通常（閉じている状態）→ 上半分だけ表示 */
.acc:not([open]) .acc__panel {
  max-height: 5.5em;           /* 約3〜4行分だけ表示（好みで調整） */
  overflow: hidden;
  position: relative;
}

/* 下端をフェードで隠す */
.acc:not([open]) .acc__panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 90%);
}

/* 開いたときに全表示 */
.acc[open] .acc__panel {
  max-height: none;
  overflow: visible;
}

.acc__panel p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #555;
  margin: 0.25em 0;
}

.c-related {
    line-height: 2;
    margin-top: 2em;
}
.c-related + .c-related {
    margin-top: 0;
}
.c-related a {
    color: #9b8c6e;
    text-decoration: underline;
    word-break: break-all;
    transition: all 0.2s linear;
}

.c-related a:hover {
    opacity: .7;
}

/*---------------------------------------
  移植ページ（transplant）専用
  比較テーブル横スクロール（SP）
---------------------------------------*/
@media screen and (max-width: 767px) {
  body.transplant .p-transplant-compare__table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    min-width: 650px;
    table-layout: fixed;
    border-collapse: collapse;
    position: relative;
  }

  body.transplant .p-transplant-compare__table::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.25);
    pointer-events: none;
    opacity: 0;
    animation: scroll-hint-fade 1.2s ease-out 0.4s forwards;
  }

  @keyframes scroll-hint-fade {
    0% { opacity: 0; }
    30% { opacity: 1; }
    100% { opacity: 0; }
  }

  body.transplant .p-transplant-compare__table th,
  body.transplant .p-transplant-compare__table td {
    white-space: nowrap;
    display: table-cell;
  }
}

/* 提携医院様ページ限定：h2 装飾（既存） */
.hospital-list p {
  padding-left: 0.8em;
  line-height: 1.4;
}
.hospital-list h2 {
  position: relative;
  padding-top: 12px;
  padding-left: 0.4em;
  font-size: 1.6rem;
  margin: 30px 0 20px;
  line-height: 1.4;
}
.hospital-list h2::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #9b8c6e;
}

/* 右方向に伸びる薄いグレー線 */
.hospital-list h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  right: 0;
  height: 1px;
  background-color: #ccc;
}

.hospital-list h2,
.hospital-list h2::before,
.hospital-list h2::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}


.hospital-list h3 {
  display: block;
  width: 100%;
  min-width: 300px;
  padding: 10px 20px;
  font-size: 1.1em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(
    89.99deg,
    #9b8c6e 0.01%,
    rgba(155, 140, 110, 0.75) 82.63%,
    #9b8c6e 102.42%
  );
}

.hospital-list h4 {
  font-size: 1.1rem;
  margin: 20px auto;
  position: relative;
  padding-left: 0.6em;
}

.hospital-list h4::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.8em;
  aspect-ratio: 1 / 1;
  background-color: #9b8c6e;
}
.hospital-list summary {
    padding-left: 1.2em;
}
.hospital-list details p {
  padding-left: 1.2em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hospital-list .p-page-visual__ttl{
  color: #525354;
}

/* =========================
   監修医師バナー
========================= */
/* フル幅背景 */
.author-banner {
  background-color: #9b8c6e;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 10px;
  margin-bottom: 10px;
}

.author-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ---------- テキスト ---------- */
.author-banner__text {
  flex: 1;
  color: #fff;
}

.author-banner__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 6px;
}

.author-banner__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.author-banner__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.author-banner__name span {
  font-size: 18px;
  font-weight: 700;
}

.author-banner__meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.author-banner__meta li {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- 画像 ---------- */
.author-banner__image {
  position: relative;
  align-self: flex-top;   /* ← 下に揃える */
}


.author-banner__image img {
  max-width: 240px;
  height: auto;
  display: block;
}

/* =========================
   スマートフォン最適化
========================= */
@media (max-width: 768px) {

  /* ===== バナー本体：画像を背景化 ===== */
  .author-banner {
    position: relative;
    background-image:
      linear-gradient(
        rgba(155,140,110,0.92),
        rgba(155,140,110,0.82)
      ),
      url('https://almoprs-clinic.jp/wp-content/themes/almo/img/column/writer_img.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
  }

  /* ===== img要素は消す ===== */
  .author-banner__image {
    display: none;
  }

  /* ===== テキストを前面に ===== */
  .author-banner__inner {
    position: relative;
    z-index: 1;

    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    padding: 32px 16px;
    gap: 12px;
  }

  .author-banner__text {
    color: #fff;
    max-width: 90%;
  }

  /* ===== 可読性対策 ===== */
  .author-banner__title,
  .author-banner__name,
  .author-banner__meta li {
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  }

  /* ===== メタ情報は左寄せ固定 ===== */
  .author-banner__meta {
    text-align: left;
  }

  .author-banner__meta li {
    font-size: 13px;
    line-height: 1.5;
  }
}
