@charset "UTF-8";

/* 変数定義 */
/*--------------------------
font-size
---------------------------*/

/* ----------------------------------------
リセットcss
---------------------------------------- */
:root {
  --font-mincho: serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-round: "Zen Maru Gothic", sans-serif;
  --font-number: "Josefin Sans", sans-serif;
  --font-english: "Josefin Sans", sans-serif;
  --font-en-cursive: "La Belle Aurore", cursive, sans-serif;
  --body-text-color: #4B4B4B;
  --body-title-color: #7D6E48;
  --body-color-pink: #D2646D;
  --body-color-yellow: #DAA531;
  --body-font-size: min(1.14vw, 16px);
  --body-font-size-sp: 3.73vw;
  --body-line-height: 1.5;
  --body-letter-spacing: 0.1em;
  --body-background-color: #ffffff;
  --page-lr-space: min(120px, 8.3vw);
  --page-lr-space-sp: 3vw;
  --section-inner-width: 1440px;
  --border-radius-full: calc(infinity * 1px);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

section {
  width: 100%;
  padding: 0;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  display: block;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--body-background-color);
  color: var(--body-text-color);
  font-family: var(--font-gothic);
  letter-spacing: var(--body-letter-spacing);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

@media screen and (max-width: 767px) {
  body {
    font-weight: normal;
    font-size: var(--body-font-size-sp);
    line-height: 1.5;
  }
}

.section-inner {
  width: 100%;
  max-width: var(--section-inner-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-lr-space);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .section-inner {
    padding: 0 var(--page-lr-space-sp);
  }
}

.link-none {
  pointer-events: none;
}

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

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}




/* ----------------------------------------
header
---------------------------------------- */
/* ----------------------------------------
top-header 
---------------------------------------- */
#top-header {
  height: 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  #top-header {
    display: none;
  }
}

#top-header .top-header__left,
#top-header .top-header__right {
  padding: 24px 24px 0;
  position: absolute;
  top: 0;
}

#top-header .top-header__left {
  left: 0;
}

#top-header .top-header__right {
  right: 0;
}

#top-header .top-header__left>h1 {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #38506B;
}

#top-header .top-header__left img {
  width: 300px;
  margin-top: 10px;
}

#top-header .top-header__right>p {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: right;
}

#top-header .top-header__btns {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

/* ----------------------------------------
sp-header
---------------------------------------- */
#sp-header {
  height: 46px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(244, 249, 255, 0.9);
}

@media screen and (max-width: 767px) {
  #sp-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp-header__left {
  padding-left: 5px;
  margin-right: auto;
  display: flex;
}

.sp-header__left .sp-header-logo,
.sp-header__left .sp-header-logo img {
  width: 60px;
  height: 46px;
}

.sp-header__left .sp-header__read {
  font-size: 10px;
  font-size: 0.625rem;
  -webkit-transform: scale(0.8) translateX(-12%);
  transform: scale(0.8) translateX(-12%);
  white-space: nowrap;
  align-content: center;
  padding-left: 10px;
  color: #fff;
}

.sp-header__left>img,
.sp-header__left>a img {
  margin: 0;
  height: 100%;
  object-fit: contain;
  width: auto;
}

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

  .sp-header__left>img,
  .sp-header__left>a img {
    height: 80%;
  }

  .sp-header__left>a {
    align-content: center;
  }
}

.sp-header__right {
  cursor: pointer;
  width: 46px;
  aspect-ratio: 1/1;
  height: auto;
  /* background-color: #224371; */
  position: relative;
}

.sp-header__right span {
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  height: 2px;
  width: 24px;
  border-radius: 100px;
  background-color: var(--body-title-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.sp-header__right .sp-header__right-title {
  color: var(--body-title-color);
  font-size: 9px;
  text-align: center;
  transform: translateX(-50%);
  position: absolute;
  bottom: 4px;
  left: 52%;
}

.sp-header__right span:nth-child(1) {
  top: 13px;
}

.sp-header__right span:nth-child(2) {
  top: 22px;
}

.sp-header__right span:nth-child(3) {
  bottom: 13px;
}

.sp-header__right.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: translateX(-50%) rotate(30deg);
  transform: translateX(-50%) rotate(30deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-header__right.open span:nth-child(2) {
  top: 18px;
  -webkit-transform: translateX(-50%) rotate(-30deg);
  transform: translateX(-50%) rotate(-30deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-header__right.open span:nth-child(3) {
  opacity: 0;
}

/* ----------------------------------------
scroll header
---------------------------------------- */
#follow-header {
  position: fixed;
  transform: translateX(-50%);
  top: 5px;
  left: 50%;
  width: 98%;
  background: rgba(244, 249, 255, 0.8);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 min(20px, 1.4vw);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--body-text-color);
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  #follow-header {
    display: none;
  }
}

#follow-header.is-top {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#follow-header.is-top.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.follow-header__logo {
  display: flex;
}

.follow-header__logo a {
  align-content: center;
  padding: 5px 0;
}

.follow-header__logo .header-logo-image {
  display: block;
  height: 50px;
  object-fit: contain;
}

#follow-header .header-info {
  padding: 10px;
  align-content: center;
  letter-spacing: 0.05em;
}

#follow-header .header-cta-tel {
  display: block;
  text-align: left;
  font-size: min(30px, 2vw);
  font-family: var(--font-english);
  padding: 0 0 0 min(40px, 2.8vw);
  position: relative;
  align-content: center;
  margin: min(5px, 0.35vw) 0;
}

#follow-header .header-cta-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.6vw;
  max-width: 38px;
  height: 2.6vw;
  max-height: 38px;
  background-image: url(../img/tp-cta-icon-tel-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#follow-header .header-title,
#follow-header .header-clinic-address {
  font-size: min(8px, 0.55vw);
}

.header-info-clinic-name {
  font-size: min(24px, 1.6vw);
  font-family: var(--font-round);
  font-weight: bold;
  color: var(--body-title-color);
  align-content: center;
}

@media screen and (max-width: 767px) {
  .header-info-clinic-name {
    font-size: 4vw;
    letter-spacing: 0.01em;
    padding-left: 5px;
  }
}

#follow-header .follow-header__nav {
  padding: 5px 0;
  align-content: center;
  width: 64%;
}

#follow-header .follow-header__nav .global__nav,
#follow-header .follow-header__nav .global__nav .gnavi__lists {
  height: 100%;
}

#follow-header .follow-header__nav .global__nav ul.gnavi__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  font-size: min(1.1vw, 15px);
  font-weight: normal;
  line-height: 1;
  color: var(--body-text-color);
}

#follow-header .gnavi__list {
  position: relative;
  transition: all .3s;
}

#follow-header .follow-header__nav .global__nav .gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--body-text-color);
  font-size: min(14px, 0.95vw);
  letter-spacing: 0.05em;
  transition: all .3s;
  text-align: center;
  line-height: 1.4;
  font-family: var(--font-round);
  font-weight: 500;
  padding: 0 10px;
}

#follow-header .follow-header__nav .global__nav .gnavi__list a:hover {
  animation: rotate 0.7s ease-in-out both;
  opacity: 1;
}

.dropdown__list a:hover::before {
  pointer-events: none;
  opacity: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

/* ドロップダウンメニュー */
.dropdown__lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 16vw;
  max-width: 230px;
  position: absolute;
  top: 50px;
  transform: translateX(-50%);
  left: 50%;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.dropdown__lists li:nth-child(2n) {
  background: #FCF3E1;
}

.dropdown__list {
  background-color: #fff;
  height: 4.2vw;
  max-height: 60px;
  transition: all .3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #F1F1F1;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
}

#follow-header .follow-header__nav .global__nav .gnavi__list .dropdown__lists .dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--body-text-color);
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: '';
  display: block;
  width: 0.42vw;
  max-width: 6px;
  height: 0.42vw;
  max-height: 6px;
  border-top: 1px solid var(--body-text-color);
  border-left: 1px solid var(--body-text-color);
  transform: rotate(135deg);
  position: absolute;
  right: min(16px, 1.1vw);
  top: 50%;
}

/* ----------------------------------------
sp-menu bg
---------------------------------------- */
.sp-menu__bg {
  background-color: rgba(56, 80, 107, .75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 120svh;
  z-index: 8;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1240px) {
  .sp-menu__bg {
    display: block;
  }
}

/* ----------------------------------------
sp-menu
---------------------------------------- */
.sp-menu {
  max-width: 390px;
  width: 80%;
  position: fixed;
  z-index: 9;
  right: 0;
  top: 0;
  height: fit-content;
  padding-top: 46px;
  background-color: #fff;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1240px) {
  .sp-menu {
    display: block;
  }
}

.sp-menu__bg.open,
.sp-menu.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-menu__wrap {
  overflow-y: scroll;
  height: 100svh;
}

/* ----------------------------------------
sp-menu sitemap
---------------------------------------- */
.sp-menu__sitemap {
  position: relative;
}

.sp-menu__obj {
  position: absolute;
  font-size: 45px;
  font-size: 2.8125rem;
  color: #fff;
  top: 14px;
  left: 10px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.035em;
  font-weight: bold;
}

.sp-menu__sitemap .global__nav {
  z-index: 1;
}

.sp-menu__sitemap .global__nav ul {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.035em;
  font-weight: 500;
  /*   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; */
  font-size: 12px;
  font-size: 0.75rem;
  padding: 44px 10px 35px;
}

.sp-menu__sitemap .global__nav ul li {
  padding: 10px 0;
  border-bottom: 2px solid #F9D5D9;
}

.sp-menu__sitemap .global__nav ul li a {
  position: relative;
  display: block;
  border-block-end-width: 100%;
  font-family: var(--font-gothic);
  color: #666666;
  padding: 5vw 3vw;
  font-size: 4vw;
  text-align: center;
}

.sp-menu__sitemap .global__nav ul li a::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #38506B;
  border-right: 1px solid #38506B;
}

/* ----------------------------------------
sp-menu cta
---------------------------------------- */
.sp-menu .cta__container {
  background-image: url(../img/cta-bg-bottom-sp.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.sp-menu .cta__wrap {
  width: 100%;
  max-width: 314px;
  margin: -1px auto 0;
  padding: 36px 0;
}

.sp-menu .cta__title {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  -webkit-column-rule: #fff;
  -moz-column-rule: #fff;
  column-rule: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}

.sp-menu .cta__title span {
  font-size: 23px;
  font-size: 1.4375rem;
}

.sp-menu .cta__read {
  margin-top: 1em;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.sp-menu .cta__text {
  color: #fff;
  margin: 2em auto 0;
  width: 90%;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.sp-menu .cta__btns {
  margin: 24px auto 0;
  width: 100%;
  max-width: 478px;
  padding-bottom: 48px;
}

.sp-menu .cta__btns .btn {
  width: 100%;
  padding: 20px 0 0 50px;
  gap: 12px;
  height: 68px;
}

.sp-menu .cta__btns .btn.tel-btn {
  padding: 14px 0 0 55px;
}

.sp-menu .cta__btns .btn.phone-btn {
  padding: 15px 0 0 24px;
}

.sp-menu .cta__btns .btn.line-btn {
  padding: 15px 0 0 36px;
}

.sp-menu .cta__btns .btn:nth-child(n+2) {
  margin-top: 14px;
}

.sp-menu .cta__btns .btn .icon-wrap img {
  height: 32px;
}

.sp-menu .cta__btns .phone-btn .main-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.sp-menu .cta__btns .phone-btn .main-text .btn__point-box {
  display: block;
}

.sp-menu .cta__btns .btn .text-wrap .top-text {
  font-size: 13px;
  font-size: 0.8125rem;
}

.sp-menu .cta__btns .btn .text-wrap .main-text {
  font-size: 18px;
  font-size: 1.125rem;
}

.sp-menu .cta__btns .btn .text-wrap .main-text span {
  font-size: 20px;
  font-size: 1.25rem;
}

.sp-menu .cta__btns .btn.phone-btn .text-wrap .main-text {
  margin-top: 0;
}

.sp-menu .cta__btns .btn.phone-btn .text-wrap .main-text span {
  margin-left: 4px;
}

.sp-menu .cta__btns .btn.phone-btn .text-wrap .main-text span.btn__point-box {
  display: block;
  text-align: center;
  width: 30px;
  background-color: #fff;
  color: #38506B;
  margin-right: 4px;
  margin-left: 0;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 4px 0;
}

.sp-menu .cta__btns .btn.tel-btn .text-wrap .main-text span {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 0.8;
}





/* ----------------------------------------
top-footer
---------------------------------------- */
#top-footer {
  background: #8C7E72;
  color: #fff;
  padding: min(5vw, 70px) 0 min(2.9vw, 30px);
  line-height: 2;
  font-weight: normal;
}

#top-footer img {
  margin: 0;
}

#top-footer .footer-upper,
#top-footer .footer-lower {
  padding-bottom: min(40px, 2.9vw);
  border-bottom: 1px solid #fff;
  margin-bottom: min(40px, 2.9vw);
}

#top-footer .footer-clinic-name{
  display: block;
  font-size: min(32px, 2.2vw);
  font-family: var(--font-round);
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #top-footer .footer-clinic-name {
    font-size: 5vw;
    margin-bottom: 5vw;
  }
}

#top-footer .policy-btn-list {
  margin-bottom: min(2.9vw, 30px);
}

#top-footer .footer-lower .footer-clinic-info a {
  text-decoration: underline;
}

#top-footer .policy-btn-list {
  margin: min(14px, 1vw) 0 min(2.9vw, 30px);
}

#top-footer .footer-policy,
#top-footer .footer-policy .policy-text {
  line-height: 2;
}

#top-footer .policy-btn-list {
  text-decoration: underline;
}

#top-footer .footer-copyright {
  text-align: center;
}

#top-footer .footer-yotsuba-top-btn img {
  box-shadow: 0px 8px 20px rgba(0, 13, 50, 0.2);
}

.link-none {
  pointer-events: none;
/*   opacity: 0.9; */
}

@media screen and (min-width: 767px) {

  #top-footer .footer-upper,
  #top-footer .footer-lower,
  #top-footer .policy-btn-list {
    display: flex;
    justify-content: space-between;
    align-content: center;
  }

  #top-footer .policy-btn-list {
    justify-content: flex-start;
    gap: 30px;
  }

  #top-footer .footer-lower .footer-clinic-info {
    align-content: center;
  }

  #top-footer .footer-lower .footer-clinic-info p,
  #top-footer .footer-lower .footer-clinic-info a {
    font-size: min(12px, 0.86vw);
  }

  #top-footer .footer-clinic-message {
    width: 32vw;
    max-width: 450px;
    object-fit: cover;
    margin-bottom: min(40px, 2.9vw);
  }

  #top-footer .footer-clinic-logo {
    width: 27vw;
    /* 		height: 5.4vw; */
    max-width: 375px;
    /* 		max-height: 75px; */
    object-fit: contain;
  }

  #top-footer .footer-yotsuba-top-btn img {
    width: 20vw;
    /* 		height: 7.1vw; */
    max-width: 280px;
    /* 		max-height: 100px; */
    object-fit: cover;
  }

  #top-footer .footer-policy,
  #top-footer .footer-policy .policy-text {
    font-size: min(12px, 0.86vw);
  }

  #top-footer .footer-policy .policy-title {
    font-size: min(16px, 1.14vw);
  }
}

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

  #top-footer p,
  #top-footer a {
    font-size: 3.2vw;
  }

  #top-footer .section-inner {
    padding: 10vw;
  }

  #top-footer .footer-clinic-message,
  #top-footer .footer-clinic-logo {
    margin-bottom: 10vw;
  }

  #top-footer .footer-yotsuba-top-btn {
    display: block;
    margin: 10vw 0;
  }

  #top-footer .footer-policy .policy-title {
    font-size: 4.3vw;
    margin-bottom: 3vw;
  }

  #top-footer .footer-policy .policy-text {
    line-height: 1.8;
  }

  #top-footer .policy-btn-list {
    margin: 10vw 0;
  }

  #top-footer .policy-btn-list a {
    display: block;
    line-height: 1.5;
    margin-bottom: 3vw;
  }
}




/* footer追記 */
@media screen and (min-width: 767px) {
  footer .footer-upper {
    display: flex;
    justify-content: space-between;
  }

  footer .footer-upper .footer-clinic-info,
  footer .footer-biz-hour-box {
    width: 50%;
  }
}

/* footerの診療時間 */

footer .footer-biz-hour {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: min(30px, 2.1vw);
}

footer .footer-biz-hour tr th,
footer .footer-biz-hour tr td {
  text-align: center;
  align-content: center;
  width: 10%;
  font-weight: 500;
}

footer .footer-biz-hour tr th {
  padding: min(10px, 0.7vw);
  letter-spacing: 0.01em;
  font-size: min(16px, 1.2vw);
  white-space: nowrap;
  color: #fff;
}

footer .footer-biz-hour tr td {
  padding: min(20px, 1.5vw) min(10px, 0.7vw);
}

footer .footer-biz-hour tr th:nth-child(n+2),
footer .footer-biz-hour tr td:nth-child(n+2) {
  border-left: 2px solid #fff;
}

footer .footer-biz-hour tr:nth-child(n+2) {
  border-top: 2px solid #fff;
}

footer .footer-biz-hour tr th:first-child,
footer .footer-biz-hour tr td:first-child {
  width: 25%;
}

footer .footer-biz-hour tr td:last-child {
  font-weight: normal;
}

footer .footer-biz-hour-annotation {
  font-size: min(14px, 1.0vw);
  font-weight: normal;
  letter-spacing: 0.01em;
  font-weight: 500;
}

/* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
@media screen and (max-width: 767px) {
  footer .footer-biz-hour {
    margin-bottom: 3vw;
  }

  footer .footer-biz-hour tr th,
  footer .footer-biz-hour tr td {
    font-size: 3vw;
    padding: 3vw 1vw;
  }

  footer .footer-biz-hour-annotation {
    font-size: 2.8vw;
  }
}

footer .footer-biz-hour th {
  font-weight: normal;
}

footer .footer-cta-btn-list {
  margin: 20px 0px;
}


@media screen and (min-width: 767px) {
  footer .footer-lower {
    display: flex;
    justify-content: space-between;
  }

  footer .footer-sitemap {
    width: 100%;
  }

  footer .footer-cta-btn-list {
    width: 50%;
  }

  /* footer .footer-sitemap-list {
    display: flex;
  }

  footer .footer-sitemap-list li {
    width: 20%;
  }

  footer .footer-sitemap-list li.footer-sitemap-sub-list-menu {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
  }

  footer .footer-sitemap-list li.footer-sitemap-sub-list-small {
    width: 15%;
  }

  footer .footer-sitemap-sub-list-menu a {
    display: block;
    width: 100%;
  }

  footer .footer-sitemap-sub-list-menu ul:first-child {
    width: 70%;
  }

  footer .footer-sitemap-sub-list-menu ul:last-child {
    width: 30%;
  }

  footer .footer-sitemap-sub-list li {
    width: 100%;
  } */
}

footer .footer-sitemap-sub-list {
  padding-left: 2rem;
}

footer .footer-cta-btn-list a {
  display: block;
  width: 100%;
  margin-bottom: min(10px, 0.7vw);
}

footer .footer-cta-btn-list a.footer-cta-btn-instagram{
  width: 16%;
  margin-top: 20px;
}

footer .footer-cta-btn-list img {
  width: 100%;
}

footer .footer-sitemap a {
  font-size: min(14px, 1.0vw);
  white-space: nowrap;
}

footer .footer-sitemap-bold {
  font-weight: bold;
}

footer .footer-sitemap li {
  margin-bottom: min(5px, 0.4vw);
}

@media screen and (min-width: 767px){
  footer .footer-sitemap .footer-sitemap-list{
    display: flex;
    flex-wrap: wrap;
  }

  footer .footer-sitemap .footer-sitemap-list li.footer-sitemap-sub-list-menu{
    width: 35%;
  }

  footer .footer-sitemap .footer-sitemap-list > li:nth-child(2){
    width: 30% !important;
  }

  footer .footer-sitemap .footer-sitemap-list li.footer-sitemap-sub-list-small{
    width: 100%;
  }
}

/* ----------------------------------------
フローティングcta
---------------------------------------- */


/* ----------------------------------------
scroll pc
---------------------------------------- */
#scroll-pc {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 7;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  #scroll-pc {
    display: none;
  }
}

#scroll-pc.is-top {
  opacity: 0;
  visibility: hidden;
}

#scroll-pc.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.scroll-pc__wrap {
  display: flex;
  gap: 5px;
  margin-right: 5px;
}

.scroll-pc__wrap li {
  display: block;
  align-content: flex-end;
}

.scroll-pc__wrap li a {
  display: block;
  height: inherit;
  position: relative;
  /*   height: 125px; */
  /*   width: 110px; */
  /*   border-radius: 10px 0 0 10px; */
  /*   font-weight: bold; */
}

.scroll-pc__wrap li a img {
  height: 60px;
  width: auto;
}

@media screen and (min-width: 767px) {
  .scroll-pc__wrap li a.to-top img,
  .scroll-pc__wrap li a.is-tel img {
    height: 50px;
    margin-bottom: 2px;
  }
}

.scroll-pc__con {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.scroll-pc__con img {
  height: 37px;
  width: auto;
  margin: 0 auto;
}

.scroll-pc__con span {
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem;
  margin-top: 8px;
  display: block;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}

/* ----------------------------------------
scroll sp
---------------------------------------- */
#scroll-sp {
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 7;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

@media screen and (max-width: 767px) {
  #scroll-sp {
    display: block;
    /* background-color: #fff; */
  }
}

#scroll-sp.is-top {
  opacity: 1;
  visibility: visible;
}

#scroll-sp.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.scroll-sp__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 5px;
  width: 100%;
}

.scroll-sp__wrap li {
  display: block;
}

/* .scroll-sp__wrap li.is-tel {
  width: 34%;
}

.scroll-sp__wrap li.is-phone {
  width: 34%;
}

.scroll-sp__wrap li.is-line {
  width: 16%;
}

.scroll-sp__wrap li.to-top {
  width: 16%;
} */

.scroll-sp__wrap li a {
  display: block;
  width: 100%;
  height: inherit;
}

.scroll-sp__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: 100%;
  height: auto;
  margin: 0 auto;
  /*   gap: 3px;
  padding: 22px 0; */
  justify-content: center;
}

.scroll-sp__con img {
  /* width: 100%;
  height: auto; */
  height: 60px;
  width: auto;
}

.to-top .scroll-sp__con img,
.is-tel .scroll-sp__con img{
  height: 50px;
}

.scroll-sp__con p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.035em;
}

.scroll-sp__con p span {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
}

/* ----------------------------------------
to-top
---------------------------------------- */
#to-top-sp,
#to-top-pc {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 7;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: visible;
  display: block;
}

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

  #to-top-sp,
  #to-top-pc {
    width: 48px;
    right: 12px;
    bottom: 64px;
  }
}

#to-top-pc.is-top,
#to-top-sp.is-top {
  opacity: 0;
  visibility: hidden;
}

#to-top-pc.active,
#to-top-sp.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------
btn
---------------------------------------- */
.btn {
  width: 251px;
  height: 94px;
  padding: 28px 0 0 20px;
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.tel-btn {
  border: 2px solid rgba(56, 80, 107, .9);
  background-color: rgba(255, 255, 255, .9);
}

.phone-btn {
  background-color: rgba(56, 80, 107, .9);
}

.line-btn {
  background-color: rgba(24, 189, 24, .9);
}

.btn .icon-wrap {
  padding-top: 2px;
}

.btn .icon-wrap img {
  height: 35px;
  width: auto;
}

.btn .text-wrap {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.btn .text-wrap .top-text {
  font-size: 12px;
  font-size: 0.75rem;
}

.btn .text-wrap .main-text {
  font-size: 15px;
  font-size: 0.9375rem;
}

.btn .text-wrap .main-text span {
  font-size: 24px;
  font-size: 1.5rem;
}

.tel-btn .text-wrap {
  color: #38506B;
}

.phone-btn .text-wrap,
.line-btn .text-wrap {
  color: #fff;
}

.btn__point-box {
  display: none;
}

/* ----------------------------------------
box btn
---------------------------------------- */
.box-btn {
  border: 1px solid #38506B;
  display: block;
  width: 290px;
}

.box-btn span {
  color: #38506B;
  padding: 24px 0;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  display: block;
  width: 100%;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 975px) {
  .box-btn span {
    padding: 20px 0;
    font-size: 0.9375rem;
  }
}

.box-btn span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #38506B;
  right: -16px;
  bottom: 16px;
}

@media screen and (max-width: 975px) {
  .box-btn span::after {
    right: -14px;
    bottom: 14px;
  }
}

.box-btn span::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background-color: #38506B;
  right: -16px;
  bottom: 16px;
  -webkit-transform: rotate(30deg) translateY(-3px);
  transform: rotate(30deg) translateY(-3px);
}

@media screen and (max-width: 975px) {
  .box-btn span::before {
    right: -14px;
    bottom: 14px;
  }
}

/* ----------------------------------------
more btn
---------------------------------------- */
.more-btn,
#page-content .elementor-post__read-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  color: var(--body-text-color);
  font-size: 18px;
  line-height: 0.8;
}

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

  .more-btn,
  #page-content .elementor-post__read-more {
    line-height: 0.7;
    font-size: 16px;
    gap: 6px;
  }
}

#page-content .elementor-post__read-more {
  font-size: 14px;
  margin-top: auto;
  position: relative;
  line-height: 1;
}

.more-btn::after,
#page-content .elementor-post__read-more::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

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

  .more-btn::after,
  #page-content .elementor-post__read-more::after {
    width: 12px;
    height: 12px;
  }
}

#page-content .elementor-post__read-more::after {
  width: 14px;
  height: 14px;
}

/* ----------------------------------------
case
---------------------------------------- */
/* #case {
  background-image: url(../img/case-bg.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  padding-bottom: 120px;
}

@media screen and (max-width: 975px) {
  #case {
    background-image: url(../img/case-bg-sp.png.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-bottom: 32px;
  }
}

.case__title {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 975px) {
  .case__title {
    padding-top: 1em;
  }
}

.case__obj {
  position: absolute;
  white-space: nowrap;
  font-size: 110px;
  font-size: 6.875rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #E6F3F9;
  left: 24px;
  bottom: 64px;
}

@media screen and (max-width: 975px) {
  .case__obj {
    font-size: 2.8125rem;
    left: 8px;
    top: 0;
    bottom: unset;
  }
}

.case__wrap {
  width: 100%;
  background-image: url(../img/case-img.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  padding-top: 34px;
  margin-top: 34px;
}

@media screen and (max-width: 975px) {
  .case__wrap {
    background-image: unset;
    width: 100%;
    margin: 0 auto;
    padding-top: 16px;
  }
}

@media screen and (max-width: 975px) {
  .case__wrap img {
    width: 86.1538461538%;
    margin: 0 auto;
  }
}

.case__content {
  position: relative;
  z-index: 1;
} */

/* ----------------------------------------
case pickup
---------------------------------------- */
/* .case__pickup {
  background-color: rgba(255, 255, 255, .7);
  padding: 34px 88px 48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

@media screen and (max-width: 975px) {
  .case__pickup {
    padding: 26px 44px;
    margin-top: 16px;
  }
}

.case__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 54px;
}

@media screen and (max-width: 975px) {
  .case__photo {
    gap: 6px;
    margin-bottom: 32px;
  }
}

.case__img img {
  width: 292px;
  aspect-ratio: 440.28/308.55;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 975px) {
  .case__img img {
    width: 100%;
  }
}

.case__img p {
  margin-top: 0.5em;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  color: #38506B;
}

@media screen and (max-width: 975px) {
  .case__img p {
    margin-top: 2px;
    font-size: 0.75rem;
  }
}

.case__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 975px) {
  .case__dl {
    margin-top: 12px;
    font-size: 0.8125rem;
  }
}

.case__dl dt {
  width: 145px;
  font-weight: 300;
}

@media screen and (max-width: 975px) {
  .case__dl dt {
    width: 40%;
  }
}

.case__dl dd {
  width: calc(100% - 145px);
}

@media screen and (max-width: 975px) {
  .case__dl dd {
    width: 60%;
  }
} */

/* ----------------------------------------
case search
---------------------------------------- */
/* .case__search {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px 60px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 34px;
  -moz-column-gap: 34px;
  column-gap: 34px;
  margin-left: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  width: 526px;
}

@media screen and (max-width: 975px) {
  .case__search {
    display: none;
    width: 86.1538461538%;
    margin: 20px auto 0;
    row-gap: 12px;
  }
}

.case__search-con {
  width: 246px;
}

@media screen and (max-width: 975px) {
  .case__search-con {
    width: 100%;
  }
}

.case__search-con h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #38506B;
  letter-spacing: 0.035em;
  margin-bottom: 18px;
}

@media screen and (max-width: 975px) {
  .case__search-con h3 {
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 975px) {
  .case__search-con ul {
    width: 80%;
  }
}

.case__search-con ul li {
  display: block;
  width: 100%;
}

.case__search-con ul li:nth-child(n+2) {
  margin-top: 16px;
}

@media screen and (max-width: 975px) {
  .case__search-con ul li:nth-child(n+2) {
    margin-top: 8px;
  }
}

.case__search-con ul li a {
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  width: 100%;
}

.case__search-con ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  display: none;
}

@media screen and (max-width: 975px) {
  #case .more-btn {
    margin-top: 8px;
    display: block;
  }
} */

/*============================
#campaign
============================*/
/* #campaign {
  padding: 50px 0px 30px;
}

@media screen and (max-width: 975px) {
  #campaign {
    padding: 30px 0px;
  }
}

.campaign__wrap .campaign__obj {
  color: #E6F3F9;
  font-size: 110px;
  font-size: 6.875rem;
  line-height: 1.1;
  letter-spacing: 0.035em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding: 0 30px;
}

@media screen and (max-width: 975px) {
  .campaign__wrap .campaign__obj {
    font-size: 11.5svw;
    padding: 0 12px;
  }
}

.campaign__wrap h2.campaign__title {
  margin-top: -72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 42px;
}

@media screen and (max-width: 975px) {
  .campaign__wrap h2.campaign__title {
    margin-top: -62px;
    margin-bottom: 24px;
  }
}

.campaign__wrap h2.campaign__title::after,
.campaign__wrap h2.campaign__title::before {
  border-top: 1px solid;
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 16px;
  margin-left: 1rem;
}

.campaign__wrap h2.campaign__title:before {
  margin-right: 16px;
  margin-right: 1rem;
  border-color: rgba(255, 255, 255, 0);
}

.campaign__wrap h2.campaign__title:after {
  margin-left: 16px;
  margin-left: 1rem;
}

.campaign__slider {
  max-width: 1085px;
  width: 100%;
  margin-left: auto;
  position: relative;
  margin-right: 30px;
}

@media screen and (max-width: 975px) {
  .campaign__slider {
    width: 94.9333333333%;
    margin: 0 auto;
  }
}

.swiper {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 975px) {
  .swiper {
    max-width: 950px;
    width: 79.4666666667%;
  }
}

.swiper .swiper-wrapper .swiper-slide img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 36px;
  height: 36px;
}

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

  .swiper-button-prev,
  .swiper-button-next,
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 20px;
    height: 20px;
    top: 58%;
  }
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev::after {
  background-image: url(../img/icon-prev.svg);
}

.swiper-button-next::after {
  background-image: url(../img/icon-next.svg);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}

.campaign__more {
  margin-top: -80px;
  height: 160px;
  width: 65.6661786237%;
  margin-left: auto;
  background: rgb(202, 209, 228);
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgb(202, 209, 228)), color-stop(80%, rgb(150, 169, 201)));
  background: linear-gradient(90deg, rgb(202, 209, 228) 20%, rgb(150, 169, 201) 80%);
  padding-top: 110px;
}

@media screen and (max-width: 975px) {
  .campaign__more {
    height: 82px;
    margin-top: -34px;
    padding-top: 52px;
    width: 92%;
  }
}

.campaign__more .more-btn {
  margin-right: 30px;
  color: #fff;
}

.campaign__more .more-btn::after {
  background-image: url(../img/icon-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 7;
} */


/* ----------------------------------------
last
---------------------------------------- */
.sp-flex,
.sp-block {
  display: none !important;
}

@media screen and (max-width: 975px) {
  .sp-hide {
    display: none !important;
  }

  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sp-block {
    display: block !important;
  }
}

/* ----------------------------------------
以下下層モジュール（初期からあったcss）
---------------------------------------- */
/* ----------------------------------------
page mv
---------------------------------------- */
#top #page-mv {
  background-image: url(../img/tp-mv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
  padding: 60px 0 0 0 !important;
}

@media screen and (min-width: 975px) {
  #page-mv {
    overflow-x: hidden;
  }

  #page-mv .section-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 900px;
    padding: 0;
  }

  #page-mv .page-title {
    width: 50%;
  }

  #page-mv .page-title-wide {
    width: 100%;
  }

  #page-mv .page-mv-image {
    width: 50%;
  }
}

#page-mv .page-title,
#page-mv .page-title-wide {
  max-width: 900px;
  color: var(--body-text-color);
  font-size: 32px;
  font-family: var(--font-round);
  font-weight: 500;
  align-content: center;
}

#page-mv .page-title {
  padding: 20px 10px;
}

#page-mv .page-title-wide {
  padding: 50px 10px 30px;
}

@media screen and (min-width: 975px) {
  #page-mv .page-title {
    text-align: left;
  }

  #page-mv .page-title-wide {
    text-align: center;
  }
}

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

  #page-mv .page-title,
  #page-mv .page-title-wide {
    font-size: 2rem;
    padding: 20px 0px 10px;
  }
}

#page-mv .page-mv-image {
  align-content: center;
  aspect-ratio: 16 / 9;
  margin: 40px auto 0px;
  box-shadow: 3px 4px 16.9px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

#page-mv .page-mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

#page-content {
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 975px) {
  #top #page-mv {
    padding: 40px 0 10px !important;
  }

  #page-content {
    font-size: 0.875rem;
  }

  #page-mv .page-mv-image {
    margin: 10px 0;
  }
}

/* ----------------------------------------
  page content
  ---------------------------------------- */
/* ----------------------------------------
  見出し
  ---------------------------------------- */
/* ----------------------------------------
  マーカー
  ---------------------------------------- */

#page-content h2.elementor-heading-title,
#page-content h3.elementor-heading-title,
#page-content h4.elementor-heading-title,
#page-content h5.elementor-heading-title {
  padding: 0.8em 1.2em;
  font-family: var(--font-round);
  position: relative;
  font-weight: 500;
  align-content: center;
  letter-spacing: 0.1em;
}

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

  #page-content h2.elementor-heading-title,
  #page-content h3.elementor-heading-title,
  #page-content h4.elementor-heading-title,
  #page-content h5.elementor-heading-title {
    padding: 0.8em 0.8em;
  }
}

#page-content h2.elementor-heading-title {
  color: var(--body-text-color);
  font-size: 32px;
  padding: 2em 1em 1em 1em;
  text-align: center;
  font-weight: bold;
}

#page-content h2.elementor-heading-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: url(../img/tp-heading-line.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  bottom: 0;
  left: 0;
}

#page-content h3.elementor-heading-title {
  font-size: 28px;
  padding-left: 1em;
  color: var(--body-text-color);
}

@media screen and (max-width: 975px) {
  #page-content h2.elementor-heading-title {
    padding: 1em 0;
    font-size: 24px;
  }

  #page-content h3.elementor-heading-title {
    font-size: 20px;
  }
}

#page-content h5.elementor-heading-title {
  color: var(--body-title-color);
}

#page-content h4.elementor-heading-title {
  margin-left: 1.2em;
}

#page-content h4.elementor-heading-title {
  font-size: 24px;
  font-size: 1.5rem;
  padding: 1em 0.4em 1em 1em;
  color: var(--body-title-color);
  margin-left: 0.2em;
}

@media screen and (max-width: 975px) {
  #page-content h4.elementor-heading-title {
    font-size: 18px;
  }

  #page-content h4.elementor-heading-title {
    padding-left: 1em;
    margin-left: 0;
  }
}

#page-content .elementor-button {
  position: relative;
  padding: 16px 54px 16px 24px;
  min-width: 284px;
  width: auto;
  background: #fff;
  border-radius: 0;
}

.elementor-button-text {
  position: relative;
}

#page-content .elementor-button .elementor-button-text::before {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: var(--body-color-pink);
  bottom: -10px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

#page-content .elementor-button:hover .elementor-button-text::before {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

#page-content .elementor-button-warning .elementor-button.elementor-button-link:hover .elementor-button-text::before,
#page-content .elementor-button-danger .elementor-button.elementor-button-link:hover .elementor-button-text::before,
#page-content .elementor-button-info .elementor-button.elementor-button-link:hover .elementor-button-text::before {
  transform: scale(0, 1);
  /*動かないよう設定*/
}

#page-content .elementor-button::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 14px;
  background-image: url(../img/tp-btn-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

#page-content .elementor-button span {
  font-family: var(--font-gothic);
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--body-color-pink);
  text-align: center;
  width: 100%;
}

#page-content .elementor-button:hover span {
  opacity: 1;
}

#page-content .elementor-button:hover::after {
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  border-radius: var(--border-radius-full);
  opacity: 1;
}


#page-content .elementor-button-info .elementor-button.elementor-button-link {
  background: #fff;
  border: 1px solid var(--body-color-pink);
  border-radius: var(--border-radius-full);
}

#page-content .elementor-button-info .elementor-button.elementor-button-link span {
  color: var(--body-color-pink);
}

#page-content .elementor-button-info .elementor-button.elementor-button-link:hover {
  background: var(--body-color-pink);
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  opacity: 1;
}

#page-content .elementor-button-info .elementor-button.elementor-button-link:hover span {
  color: #fff;
}

#page-content .elementor-button-success .elementor-button.elementor-button-link {
  background: url(../img/btn-bg.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

#page-content .elementor-button-success .elementor-button.elementor-button-link::before {
  content: "";
  position: absolute;
  -webkit-transform: unset;
  transform: unset;
  top: 4px;
  left: 4px;
  width: calc(100% - 10px);
  height: calc(100% - 8px);
  border: 1px solid #fff;
}

#page-content .elementor-button-warning .elementor-button.elementor-button-link,
#page-content .elementor-button-danger .elementor-button.elementor-button-link {
  border-radius: 100px;
}

#page-content .elementor-button-warning .elementor-button.elementor-button-link {
  background-color: var(--body-color-pink);
}

#page-content .elementor-button-warning .elementor-button.elementor-button-link span {
  color: #fff;
}

#page-content .elementor-button-warning .elementor-button.elementor-button-link:hover::after {
  box-shadow: none;
}

#page-content .elementor-button-warning .elementor-button.elementor-button-link:hover,
#page-content .elementor-button-danger .elementor-button.elementor-button-link:hover {
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  opacity: 1;
}

#page-content .elementor-button-danger .elementor-button.elementor-button-link {
  background: #fff;
  border: 1px solid #1568CC;
}

#page-content .elementor-button-danger .elementor-button.elementor-button-link span {
  color: #1568CC;
}

#page-content .elementor-button-danger .elementor-button.elementor-button-link::after {
  background-image: url(../img/tp-btn-arrow-4.png);
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  top: 50%;
  right: 12px;
}

#page-content .elementor-button-danger .elementor-button.elementor-button-link:hover::after {
  box-shadow: none;
}

#page-content .elementor-widget-text-editor {
  line-height: 1.7;
}

#page-content span.marker1 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #CDECFD));
  background: linear-gradient(transparent 60%, #CDECFD 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content span.marker2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FDF8B6));
  background: linear-gradient(transparent 60%, #FDF8B6 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content span.marker3 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(0%, #CDECFD));
  background: linear-gradient(transparent 94%, #CDECFD 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content span.marker4 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(94%, transparent), color-stop(0%, #80D9CF));
  background: linear-gradient(transparent 94%, #80D9CF 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content {
  /* ----------------------------------------
  s-post
  ---------------------------------------- */
}

#page-content .s-post__obj {
  background-color: #8B9FBB;
  border-radius: 10px 10px 0 0;
  padding: 14px 12px 13px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 235px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__obj {
    font-size: 0.875rem;
    min-width: unset;
    padding: 14px 18px 13px;
  }
}

#page-content .s-post__box {
  border: 1px solid #8B9FBB;
  padding: 24px 36px;
  border-radius: 0 10px 10px 10px;
  display: block;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__box {
    padding: 12px 12px;
  }
}

#page-content .s-post__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
}

#page-content .s-post__img {
  width: 334px;
  height: auto;
  aspect-ratio: 334/225;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__img {
    width: 100%;
  }
}

#page-content .s-post__content {
  width: calc(100% - 384px);
}

@media screen and (max-width: 975px) {
  #page-content .s-post__content {
    width: 100%;
  }
}

#page-content .s-post__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #38506B;
  line-height: 1.2;
  margin-top: 1em;
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__title {
    font-size: 1.125rem;
    margin-bottom: 0.4em;
  }
}

#page-content .s-post__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__text {
    font-size: 0.875rem;
  }
}

#page-content {
  /* ----------------------------------------
  md
  ---------------------------------------- */
}

#page-content .s-md__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 975px) {
  #page-content .s-md__wrap {
    display: block;
  }
}

#page-content .s--md__merit.merit01 {
  background: rgb(255, 255, 255);
  background: linear-gradient(140deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(250, 253, 254) 50%, rgb(250, 253, 254) 100%);
}

#page-content .s--md__merit.merit02 {
  background-image: url(../img/merit-bg.jpg);
}

#page-content .s--md__demerit.demerit01 {
  background: rgb(237, 238, 241);
  background-image: linear-gradient(140deg, rgb(237, 238, 241) 0%, rgb(237, 238, 241) 50%, rgb(243, 243, 245) 50%, rgb(243, 243, 245) 100%);
}

#page-content .s--md__demerit.demerit02 {
  background: url(../img/demerit-bg.jpg);
}

#page-content .s--md__merit,
#page-content .s--md__demerit {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 50%;
  position: relative;
  padding: 76px 36px 32px;
}

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

  #page-content .s--md__merit,
  #page-content .s--md__demerit {
    width: 100%;
    padding: 48px 12px 24px;
  }
}

#page-content .s--md__merit::after,
#page-content .s--md__demerit::after {
  position: absolute;
  left: 16px;
  top: 32px;
  font-size: 60px;
  font-size: 3.75rem;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}

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

  #page-content .s--md__merit::after,
  #page-content .s--md__demerit::after {
    left: 8px;
    top: 12px;
    font-size: 16svw;
  }
}

#page-content .s--md__merit::after {
  content: "MERIT";
}

#page-content .s--md__demerit::after {
  content: "DEMERIT";
}

#page-content .s-md__title {
  position: relative;
  z-index: 1;
  color: #38506B;
  border-bottom: 1px solid #38506B;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.035em;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 0.8em;
}

#page-content .s-md__wrap .s-check__list,
#page-content .s-md__wrap .s-dot__list {
  margin-top: 24px;
}

#page-content .s-check__list,
#page-content .s-dot__list {
  position: relative;
  z-index: 1;
  color: var(--body-text-color);
  font-size: 16px;
  line-height: 1.4;
}

#page-content .s-check__list li,
#page-content .s-dot__list li,
#page-content .s-dot__list p,
#page-content .s-check__list p {
  padding-left: 24px;
  position: relative;
}

#page-content .s-check__list li,
#page-content .s-dot__list li {
  font-family: var(--font-round);
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 18px;
}

#page-content .s-dot__list p,
#page-content .s-check__list p {
  font-family: var(--font-gothic);
  color: var(--body-text-color);
  font-size: 16px;
}

#page-content .s-check__list li:nth-child(n+2),
#page-content .s-dot__list li:nth-child(n+2) {
  margin-top: 0.8em;
}

#page-content .s-dot__list li::after {
  width: 10px;
  height: 10px;
  position: absolute;
  transform: translateY(-50%);
  left: 4px;
  top: calc(18px * 1.4 / 2);
  content: "";
  border-radius: 50%;
}

#page-content .s-dot__list-brown li {
  color: var(--body-title-color);
}

#page-content .s-dot__list-brown li::after {
  background-color: var(--body-title-color);
}

#page-content .s-dot__list-pink li {
  color: var(--body-color-pink);
}

#page-content .s-dot__list-pink li::after {
  background-color: var(--body-color-pink);
}

#page-content .s-check__list li::after {
  width: 17px;
  height: auto;
  aspect-ratio: 1/1;
  border: 2px solid #38506B;
  position: absolute;
  left: 4px;
  top: 4px;
  content: "";
}

#page-content .s-check__list li::before {
  content: "";
  position: absolute;
  border-bottom: 2px solid #38506B;
  border-left: 2px solid #38506B;
  height: 8px;
  width: 14px;
  -webkit-transform: rotate(-42deg);
  transform: rotate(-42deg);
  top: 5px;
  left: 8px;
}

#page-content .s--md__merit.merit01::after {
  color: #E5F3F9;
}

#page-content .s--md__demerit.demerit02::after {
  color: #B0BFD0;
}

#page-content .s--md__demerit.demerit02 .s-md__title {
  color: #fff;
  border-bottom: 1px solid #fff;
}

#page-content .s--md__demerit.demerit02 .s-check__list {
  color: #fff;
}

#page-content .s--md__demerit.demerit02 .s-check__list li::after {
  border: 2px solid #fff;
}

#page-content .s--md__demerit.demerit02 .s-check__list li::before {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}


#page-content {
  /* ----------------------------------------
  person
  ---------------------------------------- */
  /* ----------------------------------------
  p-adv
  ---------------------------------------- */
}

#page-content .p-person,
#page-content .p-adv {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  background: #FFF9F9;
  border-bottom: 1px solid var(--body-color-pink);
  position: relative;
}

#page-content .p-person {
  padding: 20px 40px;
}

#page-content .p-adv {
  padding: 50px 40px 20px;
}

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

  #page-content .p-person,
  #page-content .p-adv {
    padding: 12px 12px;
  }
}

#page-content .p-person__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__head {
    gap: 8px;
  }
}

#page-content .p-person__head::after {
  position: absolute;
  content: "+";
  font-size: 40px;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  color: var(--body-color-pink);
}

#page-content .p-person__head.open::after {
  content: "−";
}

#page-content .p-person__img {
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__head::after {
    font-size: 24px;
  }

  #page-content .p-person__img {
    width: 80px;
  }
}

#page-content .p-person__title .p-person__clinic {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 0.4em;
  font-weight: bold;
  color: var(--body-title-color);
}

@media screen and (max-width: 975px) {
  #page-content .p-person__title .p-person__clinic {
    font-size: 0.75rem;
  }
}

#page-content .p-person__title .p-person__name {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__title .p-person__name {
    font-size: 18px;
    letter-spacing: 0.01em;
  }
}

#page-content .p-person__body {
  margin-top: 12px;
  margin-left: 162px;
  display: none;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__body {
    margin-left: 0;
    padding-bottom: 12px;
  }
}

#page-content .p-person__body p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__body p {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 975px) {
  #page-content .p-adv {
    padding: 30px 12px 20px;
  }
}

#page-content .p-adv__title {
  font-size: 12px;
  font-family: var(--font-gothic);
  background-color: #F1F1F1;
  color: #363737;
  padding: 3px 10px;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__title {
    text-align: center;
  }
}

#page-content .p-adv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  position: relative;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap {
    display: block;
  }
}

#page-content .p-adv__wrap .p-adv__img {
  width: 160px;
  height: 160px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-adv__img {
    margin: 8px auto 0;
  }
}

#page-content .p-adv__wrap .p-person__content .p-person__clinic {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0.2em;
  font-weight: bold;
  font-family: var(--font-round);
  color: var(--body-title-color);
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-person__content .p-person__clinic {
    font-size: 0.875rem;
    margin-top: 1em;
    text-align: center;
  }
}

#page-content .p-adv__wrap .p-person__content .p-person__name {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-weight: bold;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-person__content .p-person__name {
    font-size: 1.25rem;
    text-align: center;
  }
}

#page-content .p-adv__wrap .p-person__content .p-person__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-bottom: 3em;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-person__content .p-person__text {
    font-size: 0.875rem;
  }
}

#page-content .p-adv__wrap .p-person__content .more-btn,
#page-content .p-more-btn__wrap {
  position: absolute;
  right: 0;
  bottom: 0;
}

#page-content .p-adv__wrap .p-person__content .more-btn:hover,
#page-content .p-more-btn__wrap:hover {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#page-content .p-more-btn {
  position: relative;
  padding: 14px 54px 14px 24px;
  width: 232px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #38506B;
  display: block;
}

#page-content .p-more-btn:hover {
  background: #38506B;
}

#page-content .p-more-btn:hover span {
  color: #fff;
}

#page-content .p-more-btn:hover::after {
  background-image: url(../img/icon-btn-obj01.svg);
}

@media screen and (max-width: 975px) {
  #page-content .p-more-btn {
    position: relative;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

#page-content .p-more-btn::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 14.28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 54%;
  right: 24px;
  background-image: url(../img/icon-btn-obj04.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

#page-content .p-more-btn span {
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  color: #38506B;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 975px) {
  #page-content .p-more-btn__wrap {
    position: relative;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}






/* ----------------------------------------
p-case：おそらく症例のcss
---------------------------------------- */

/* #page-content .p-case {
  margin: 0 auto;
  max-width: 910px;
  width: 100%;
}

#page-content .p-case__num {
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding-left: 0.4em;
  color: #C5D8E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 0.1em;
}

@media screen and (max-width: 975px) {
  #page-content .p-case__num {
    font-size: 4rem;
  }
}

#page-content .p-case__num::before {
  position: absolute;
  content: "Case";
  font-family: "Pinyon Script", serif;
  color: #507F98;
  left: 0;
  bottom: 0;
  font-size: 35px;
  font-size: 2.1875rem;
}

@media screen and (max-width: 975px) {
  #page-content .p-case__num::before {
    ont-size: 1rem;
  }
}

#page-content .p-case__num:after {
  border-bottom: 1px solid #38506B;
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 40px;
}

#page-content .p-case__num:after {
  margin-left: 16px;
  margin-left: 1rem;
}

#page-content .case__pickup {
  padding: 0;
  width: 100%;
}

#page-content .case__photo {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media screen and (max-width: 975px) {
  #page-content .case__photo {
    margin-bottom: 12px;
  }
}

#page-content .case__img img {
  max-width: 440px;
  width: 100%;
} */






#page-content {
  /* ----------------------------------------
  post
  ---------------------------------------- */
}

#page-content .elementor-post .elementor-post__title {
  color: #38506B;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.02em;
  font-weight: bold;
}

#page-content .elementor-post .elementor-post__excerpt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  margin-top: 0.4em;
  color: #121212;
}

/* #search__head {
  padding: 0 20px;
}

#earch__head .container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

form.search-form {
  border: 1px solid #38506B;
  border-radius: 10px;
  padding: 20px;
  background-color: #EEF8FB;
}

form.search-form .search-form__group:nth-child(n+2) {
  margin-top: 24px;
}

.search-form__title {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 1.5em;
  position: relative;
  font-family: "Noto Serif JP", serif;
  color: #121212;
  font-weight: bold;
  margin-bottom: 16px;
}

@media screen and (max-width: 975px) {
  .search-form__title {
    font-size: 0.875rem;
  }
}

.search-form__title::after {
  content: "";
  position: absolute;
  background: #121212;
  border-radius: 50%;
  height: 60%;
  width: auto;
  aspect-ratio: 1/1;
  left: 0.3em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.search-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 12px;
  background-color: #fff;
  border-radius: 10px;
}

.search-form__label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: block;
  white-space: nowrap;
}

@media screen and (max-width: 975px) {
  .search-form__label {
    font-size: 0.75rem;
  }
}

.search-form__label input.search-form__checkbox {
  display: none;
}

.search-form__label span.search-form__term {
  color: #38506B;
  padding: 4px 12px;
  border: #38506B solid 1px;
  border-radius: 100px;
  background: #fff;
  display: block;
}

.search-form__label input.search-form__checkbox:checked+span.search-form__term {
  background-color: #38506B;
  color: #fff;
}

form.search-form .search-form__group input.search-form__submit {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  padding: 12px 24px;
  border-radius: 100px;
  margin: 24px auto 0;
  width: 100%;
  max-width: 180px;
  font-weight: 500;
  color: #fff;
  background-color: #38506B;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

@media screen and (max-width: 975px) {
  form.search-form .search-form__group input.search-form__submit {
    font-size: 0.875rem;
  }
}

form.search-form .search-form__group input.search-form__submit:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

#case__container {
  padding: 100px 0 120px;
  margin-top: 80px;
  background-color: #EEF8FB;
}

@media screen and (max-width: 975px) {
  #case__container {
    margin-top: 48px;
    padding: 40px 20px 80px;
  }
}

.case-list__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 24px;
}

@media screen and (max-width: 975px) {
  .case-list__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.case-list__wrap .case-list__con {
  padding: 24px 24px 60px;
  margin: 0;
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, .4);
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, .4);
  border-radius: 10px;
  position: relative;
  background-color: #fff;
}

.case-list__wrap .case-list__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #38506B;
  display: block;
  margin-bottom: 8px;
}

.case-list__wrap .case__pickup {
  padding: 0;
}

.case-list__wrap .case__photo {
  margin-bottom: 12px;
}

.case-list__wrap .case__img img {
  width: 100%;
}

.case-list__wrap .more-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.case__terms h3 {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  color: #38506B;
}

.case__terms ul {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}

.case__terms ul li {
  display: block;
  padding: 4px 12px;
  border-radius: 100px;
  text-align: center;
  color: #38506B;
  border: 1px solid #38506B;
  font-size: 12px;
  font-size: 0.75rem;
}

.case-list__desc {
  padding: 14px;
  background-color: #EEF8FB;
  margin-top: 14px;
}

.case-list__desc .case__dl:nth-child(1) {
  margin: 0;
}

.pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}

.pagination {
  white-space: nowrap;
}

.pagination nav.navigation.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pagination nav.navigation.pagination .nav-links a.page-numbers,
.pagination nav.navigation.pagination .nav-links span.page-numbers.current {
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  padding-top: 0.4em;
  font-weight: bold;
  border-radius: 50%;
}

.pagination nav.navigation.pagination .nav-links a.page-numbers {
  background: #fff;
  color: #38506B;
}

.pagination nav.navigation.pagination .nav-links span.page-numbers.current {
  background: #38506B;
  color: #fff;
}

.pagination nav.navigation.pagination .nav-links a.next.page-numbers {
  background-color: unset;
  width: auto;
}

.pagination nav.navigation.pagination .nav-links a.prev.page-numbers {
  background-color: unset;
  width: auto;
} */




/* ----------------------------------------
以下下層モジュール（新しく追加したcss）
---------------------------------------- */

#page-content {
  max-width: 900px;
  padding: 20px 5px 200px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-gothic);
  color: var(--body-text-color);
}

@media screen and (max-width: 767px) {
  #page-content {
    overflow-x: hidden;
  }
}

/* パンくずリスト */
.tp-breadcrumb {
  color: #224371;
  font-weight: bold;
}

.tp-breadcrumb a {
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: underline !important;
  font-weight: 500;
}

@media screen and (max-width: 975px) {
  .tp-breadcrumb {
    font-size: 0.875rem;
  }
}

#breadcrumbs {
  color: var(--body-text-color);
  padding: 10px;
  font-size: 14px;
  font-family: var(--font-round);
  font-weight: 500;
}

.breadcrumb {
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 975px) {
  #breadcrumbs {
    padding: 5px;
    font-size: 12px;
  }

  .breadcrumb {
    margin-bottom: 0;
  }
}

/* hタグタイトル */
#page-content .elementor-menu-anchor,
#page-content .elementor-widget-heading {
  display: block;
  /* padding-top: 100px; */
  /* 調整したい高さ（固定ヘッダーの高さ） */
  /* margin-top: -100px; */
  /* heightと同じ分のネガティブマージン */
}

#page-content h3.elementor-heading-title::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 40px;
  background: linear-gradient(180deg, #F9D5D9 0%, #F9D5D9 50%, #D9CFC7 50%, #D9CFC7 100%);
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

#page-content h4.elementor-heading-title::after {
  height: 10px;
  width: 10px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  top: 52%;
  background: #F9D5D9;
  border-radius: var(--border-radius-full);
}

/* マーカー線 */
#page-content .elementor-widget-text-editor {
  font-size: 16px;
  font-family: var(--font-gothic);
}

.tp-marker-yellow {
  background: linear-gradient(transparent 50%, #ffff66 80%);
  padding-bottom: 0.1rem;
}

.tp-marker-pink {
  background: linear-gradient(transparent 50%, rgba(253, 233, 239, 1) 80%);
  padding-bottom: 0.1rem;
}

.tp-marker-blue {
  background: linear-gradient(transparent 50%, rgba(177, 213, 233, 1) 80%);
  padding-bottom: 0.1rem;
}


/* テーブル */
.tp-table,
.tp-table th,
.tp-table td,
.tp-table__column-header th:first-child::before {
  border-collapse: collapse;
}

.tp-table th {
  font-weight: normal;
}

.tp-table {
  font-family: sans-serif;
  font-size: 0.9em;
  letter-spacing: 1px;
  background-color: #F1F1F1;
  width: 100%;
}

.tp-table .row-colored th {
  font-weight: 500;
  background-color: var(--body-title-color);
  color: #fff;
}

.tp-table th,
.tp-table td {
  padding: 8px 10px;
  min-width: 100px;
}

.tp-table__column-header th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  border: none;
}

.tp-table__column-header th:first-child::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
}

.tp-table th,
.tp-table td {
  border: 1px solid #fff;
}

.tp-table tbody tr .column-colored {
  font-weight: 500;
  background-color: #E6E0D3;
}

.tp-table tbody tr .column-colored-light {
  font-weight: 500;
  background-color: #E6E0D3;
}

@media screen and (max-width: 767px) {
  .tp-table-scroll {
    overflow-x: auto;
  }

  .tp-table th,
  .tp-table td {
    min-width: 200px;
  }

  .tp-table__column-header tr th:first-child {
    min-width: 100px;
  }
}

/* テーブルのスクロールテキスト */
.tp-table-scroll-text-box {
  position: relative;
  height: 20px;
}

.tp-table-scroll-text {
  position: absolute;
  top: 0;
  right: 1%;
  animation: arrowmove 1.5s ease-in-out infinite;
  font-size: 14px;
  font-family: var(--font-round);
  font-weight: 500;
  color: var(--body-text-color);
  letter-spacing: 0.01em;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    right: 1%;
  }

  50% {
    right: 3%;
  }

  100% {
    right: 1%;
  }
}

/* 料金表のテーブル用 */
.tp-price-table td{
  text-align: right;
}

.tp-price-table th,
.tp-price-table td {
  align-content: center;
}


/* メリット・デメリット */
.tp-compare {
  width: 100%;
}

.tp-compare .tp-compare__block {
  padding: 1rem 2rem;
  margin: 2rem 0;
  position: relative;
}

.tp-compare__merit {
  background-color: #FFF0F0;
}

.tp-compare__demerit {
  background-color: #E7F6FF;
}

.tp-compare__title {
  position: relative;
  font-size: 18px;
  font-weight: bold;
}

.tp-compare__merit .tp-compare__title {
  color: var(--body-text-color);
}

.tp-compare__demerit .tp-compare__title {
  color: var(--body-text-color);
}

.tp-compare__merit::before {
  content: "merit";
  display: inline-block;
  font-family: var(--font-en-cursive);
  font-size: 32px;
  line-height: 1;
  color: var(--body-color-pink);
  position: absolute;
  transform: translate(0%, -50%);
  top: 0;
  left: 10px;
}

.tp-compare__demerit::before {
  content: "demerit";
  display: inline-block;
  font-family: var(--font-en-cursive);
  font-size: 32px;
  line-height: 1;
  color: var(--body-text-color);
  position: absolute;
  transform: translate(0%, -50%);
  top: 0;
  left: 10px;
}

.tp-compare .tp-compare__list {
  list-style: none;
  padding-left: 0;
}

.tp-compare .tp-compare__item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
}

.tp-compare .tp-compare__text {
  margin: 20px 0;
}

.tp-compare .tp-compare__item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
  border-radius: var(--border-radius-full);
}

.tp-compare .tp-compare__merit .tp-compare__item::before {
  background: var(--body-color-pink);
}

.tp-compare .tp-compare__demerit .tp-compare__item::before {
  background: #88CAED;
}

@media screen and (min-width: 767px) {
  .tp-compare {
    display: flex;
    justify-content: space-around;
  }

  .tp-compare .tp-compare__block {
    width: 46%;
  }

  .tp-compare .tp-compare__block-long {
    width: 90%;
  }
}




/* コンバージョンブロック（CTA） */
.tp-cta {
  padding: 1rem 1rem 2rem;
  background: #224371;
  text-align: center;
  margin: 1rem 0;
  color: #fff;
}

.tp-cta .tp-cta__title {
  width: 80%;
  margin: 0 auto;
  font-size: 40px;
  padding: 50px 0;
}

.tp-cta .tp-cta__text {
  width: 80%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

.tp-cta .tp-cta__caution {
  width: 80%;
  margin: 0 auto;
  font-size: 12px;
  padding: 30px 0;
  text-align: left;
}

.tp-cta .tp-cta__btn {
  display: block;
  padding: 1rem;
  text-decoration: none;
  align-content: center;
  margin: 1rem 0;
  font-size: 24px;
  line-height: 1;
  outline-offset: -8px;
}

.tp-cta .tp-cta__web {
  background: #fff;
  color: var(--body-title-color);
  outline: solid 1px var(--body-title-color);
  box-shadow: 5px 6px 0 #1D837B;
}

.tp-cta .tp-cta__tel {
  font-family: var(--font-english);
  font-size: 28px;
  background: #fff;
  color: #224371;
  outline: solid 1px #84B6F2;
  box-shadow: 5px 6px 0 #84B6F2;
}

.tp-cta .tp-cta__line {
  background: #fff;
  color: #00C300;
  outline: solid 1px #00C300;
  box-shadow: 5px 6px 0 #00C300;
}

.tp-cta .tp-cta__btn-text-small {
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.tp-cta .tp-cta__btn-text {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tp-cta .tp-cta__btn-text::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

.tp-cta .tp-cta__web .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-web.png);
}

.tp-cta .tp-cta__tel .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-tel.png);
}

.tp-cta .tp-cta__line .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-line.png);
}

.tp-cta .tp-cta__line .tp-cta__btn-text-small {
  font-size: 12px;
}

.tp-cta .tp-cta__line .tp-cta__btn-text-middle {
  font-size: 16px;
}

@media screen and (min-width: 767px) {
  .tp-cta__btn-list {
    display: flex;
    justify-content: space-evenly;
  }

  .tp-cta .tp-cta__btn {
    width: 250px;
  }
}

/* コンバージョンボタン単体 */

.tp-cta__single-btn-list .tp-cta__single-btn {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  position: relative;
  outline-offset: -5px;
  line-height: 1;
  align-content: center;
  font-size: 24px;
  width: 300px;
  height: 90px;
}

.tp-cta__single-btn-list .tp-cta__single-web {
  background: #fff;
  color: var(--body-title-color);
  outline: solid 1px var(--body-title-color);
  box-shadow: 5px 6px 0 #1D837B;
}

.tp-cta__single-btn-list .tp-cta__single-tel {
  font-family: var(--font-english);
  font-size: 30px;
  background: #fff;
  color: #224371;
  outline: solid 1px #84B6F2;
  box-shadow: 5px 6px 0 #84B6F2;
}

.tp-cta__single-btn-list .tp-cta__single-line {
  background: #fff;
  color: #00C300;
  outline: solid 1px #00C300;
  box-shadow: 5px 6px 0 #00C300;
  padding-bottom: 1rem;
}

.tp-cta__single-btn-list .tp-cta__btn-text {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tp-cta__single-btn-list .tp-cta__btn-text::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

.tp-cta__single-btn-list .tp-cta__single-web .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-web.png);
}

.tp-cta__single-btn-list .tp-cta__single-tel .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-tel.png);
}

.tp-cta__single-btn-list .tp-cta__single-line .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-line.png);
}

.tp-cta__single-btn-list .tp-cta__single-btn-text-small {
  font-size: 14px;
}

.tp-cta__single-btn-list .tp-cta__single-line .tp-cta__single-btn-text-small {
  line-height: 2;
}



@media screen and (min-width: 767px) {
  .tp-cta__single-btn-list {
    display: flex;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .tp-cta__single-btn-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ステップ/流れ */
.tp-step {
  position: relative;
}

.tp-step::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 110%;
  border-radius: 10px;
  background: #FFF9F9;
  transform: translateY(-50%);
  top: 50%;
  left: -25%;
  z-index: -1;
}

@media screen and (min-width: 767px) {
  .tp-step .tp-step-box {
    display: flex;
    justify-content: space-between;
  }

  .tp-step .tp-step-title-box {
    width: 32%;
  }

  .tp-step .tp-step-text-box {
    width: 62%;
  }
}

.tp-step .tp-step-box {
  padding: 30px 0;
  border-bottom: 2px solid #E3E3E3;
}

.tp-step .tp-step-title-box,
.tp-step .tp-step-text-box {
  align-content: center;
}

.tp-step .tp-step-num {
  width: fit-content;
  padding: 0.4rem 1rem;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: var(--body-color-pink);
  border-radius: var(--border-radius-full) var(--border-radius-full) var(--border-radius-full) 0;
  margin-bottom: 0.5rem;
}

.tp-step .tp-step-title {
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .tp-step .tp-step-title-box {
    margin-bottom: 30px;
  }

  .tp-step .tp-step-title {
    font-size: 20px;
  }
}

/* フローチャート */
.tp-flow-chart .tp-flow-chart-content-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 3rem;
  position: relative;
}

.tp-flow-chart .tp-flow-chart-content-box::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--body-color-pink);
  position: absolute;
  left: 32px;
  top: 1px;
}

.tp-flow-chart .tp-flow-chart-content {
  width: 90%;
}

.tp-flow-chart .tp-flow-chart-image {
  object-fit: cover;
  border-radius: 10px;
  height: fit-content;
  aspect-ratio: 4 / 3;
}

@media screen and (min-width: 767px) {
  .tp-flow-chart .tp-flow-chart-content-upper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
	
	.tp-flow-chart .tp-flow-chart-text-box{
		width: 55%;
	}

  .tp-flow-chart .tp-flow-chart-image {
    width: 40%;
  }
}

.tp-flow-chart .tp-flow-chart-num {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  font-size: 26px;
  line-height: 64px;
  color: #fff;
  /* font-style: italic; */
  background-color: var(--body-color-pink);
  align-content: center;
  text-align: center;
  border-radius: 50%;
  z-index: 5;
  font-family: var(--font-number);
  padding-top: 3px;
}

@media screen and (max-width: 767px) {
  .tp-flow-chart .tp-flow-chart-num {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 20px;
    padding-top: 2px;
  }

  .tp-flow-chart .tp-flow-chart-content-box::before {
    left: 24px;
  }
}

.tp-flow-chart .tp-flow-chart-title {
  font-size: 26px;
  font-family: var(--font-round);
  font-weight: 500;
  color: var(--body-color-pink);
  margin-bottom: 1rem;
}

.tp-flow-chart .tp-flow-chart-text a{
  color: var(--body-color-pink);
  text-decoration: underline;
}

.tp-flow-chart .tp-flow-chart-list-box {
  display: flex;
  justify-content: space-between;
  background-color: #F4F8FC;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.tp-flow-chart .tp-flow-chart-list-title {
  align-content: center;
  text-align: center;
  color: #E1F7F5;
  border-right: 1px solid #DCE3F5;
  width: 30%;
}

.tp-flow-chart .tp-flow-chart-list {
  width: 67%;
}

.tp-flow-chart .tp-flow-chart-list li {
  padding-left: 20px;
  position: relative;
}

.tp-flow-chart .tp-flow-chart-list li::before {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 4px;
  top: 50%;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #E1F7F5;
}

/* ----------------------------------------
  流れブロック
  ---------------------------------------- */
.tp-flow .tp-flow-item {
  background: #FFF9F9;
  padding: 30px;
  border-left: 2px solid var(--body-color-pink);
}

.tp-flow .tp-flow-item-title {
  font-family: var(--font-round);
  font-weight: bold;
  color: var(--body-title-color);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-left: 36px;
  position: relative;
}

.tp-flow .tp-flow-num {
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  padding-left: 1px;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  align-content: center;
  background: linear-gradient(135deg, var(--body-color-pink) 0%, var(--body-color-pink) 50%, #e5a6ab 50%, #e5a6ab 100%);
  position: absolute;
  top: 0;
  left: 0;

}

.tp-flow .tp-flow-arrow {
  width: 100%;
  height: 40px;
  position: relative;
}

.tp-flow .tp-flow-arrow::before {
  content: "";
  width: 30px;
  height: 10px;
  background: var(--body-color-pink);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 767px) {
  .tp-flow .tp-flow-item {
    padding: 20px;
  }
}

/* リスト */
#page-content .s-dot__list-checkmark li {
  padding-left: 35px;
}

#page-content .s-dot__list-checkmark li::after {
  content: none;
}

#page-content .s-dot__list-checkmark li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url('../img/tp-checkmark-icon.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

/* まとめ */
.tp-conclusion {
  background-color: #FFF9F9;
  padding: 2rem;
  margin: 2rem auto;
  position: relative;
  border: 1px solid var(--body-color-pink);
  border-radius: 10px;
}

.tp-conclusion .tp-conclusion-title {
  font-size: 16px;
  position: absolute;
  font-weight: bold;
  transform: translateY(-100%);
  top: 1px;
  left: 20px;
  background: var(--body-color-pink);
  color: #fff;
  width: fit-content;
  padding: 0.5em 1rem;
  border-radius: 20px 20px 0 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .tp-conclusion {
    padding: 1rem;
  }
}

/* ポイントブロック */
.tp-point-block {
  background-color: #FFF9F9;
  border: 1px solid var(--body-color-pink);
  padding: 2.5rem 2rem 1rem;
  margin: 2rem auto;
  position: relative;
  border-radius: 10px;
}

.tp-point-block .tp-point-block-title {
  color: #fff;
  font-size: 16px;
  padding: 10px 20px 10px 44px;
  background-color: var(--body-color-pink);
  border-radius: var(--border-radius-full) var(--border-radius-full) var(--border-radius-full) 0;
  width: fit-content;
  position: absolute;
  transform: translateY(-50%);
  top: 1px;
  left: 20px;
}

.tp-point-block .tp-point-block-title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../img/tp-point-icon.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-55%);
  top: 50%;
  left: 20px;
}

.tp-point-block .tp-point-block-text {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .tp-point-block {
    padding: 2rem 1rem 1rem;
  }
}

.tp-point-block-yellow {
  background-color: #FFF8EA;
  border: 1px solid #E3BE6E;
}

.tp-point-block-yellow .tp-point-block-title {
  background-color: #E3BE6E;
}

/* 背景ありブロック */
.tp-bg-block {
  padding: 1rem 2rem;
  margin: 5px auto;
}

.tp-bg-block .tp-bg-block-title {
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 22px;
  position: relative;
  margin: 10px 0;
}

.tp-bg-block .tp-bg-block-text {
  font-size: 16px;
}

.tp-bg-block-brown {
  background-color: #FCF8F5;
}

.tp-bg-block-brown .tp-bg-block-title {
  color: var(--body-text-color);
}

.tp-bg-block-brown .tp-bg-block__item::after {
  background-color: var(--body-text-color);
}

.tp-bg-block-pink {
  background-color: #FFF9F9;
}

.tp-bg-block-pink .tp-bg-block-title {
  color: var(--body-color-pink);
}

.tp-bg-block-pink .tp-bg-block__item::after {
  background-color: var(--body-color-pink);
}

.tp-bg-block-white {
  background-color: #fff;
  border: 1px solid var(--body-color-pink);
}

.tp-bg-block-white .tp-bg-block-title {
  color: var(--body-color-pink);
}

.tp-bg-block-white .tp-bg-block__item::after {
  background-color: var(--body-color-pink);
}

.tp-bg-block .tp-bg-block-text {
  margin: 1rem 0;
}

.tp-bg-block .tp-bg-block__item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-gothic);
  font-size: 16px;
  line-height: 1.6;
}

.tp-bg-block .tp-bg-block__item::after {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 4px;
  top: calc(16px * 1.6 / 2);
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 767px) {
  .tp-bg-block .tp-bg-block__list-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .tp-bg-block .tp-bg-block__list-flex .tp-bg-block__item {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .tp-bg-block {
    padding: 1rem;
  }
}

/* 語句紹介ブロック */
.tp-bookmark {
  padding: 2rem 2rem 1rem;
  margin: 2rem auto;
  width: 100%;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .tp-bookmark {
    padding: 1.5rem 1rem 1rem;
  }
}

.tp-bookmark-pink {
  border: 1px solid var(--body-color-pink);
}

.tp-bookmark-brown {
  border: 1px solid var(--body-text-color);
}

.tp-bookmark .tp-bookmark-title-box {
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 20px;
}

.tp-bookmark .tp-bookmark-title {
  font-weight: bold;
  font-size: 18px;
  padding: 5px 10px 5px 42px;
  background-color: #fff;
  position: relative;
}

.tp-bookmark-pink .tp-bookmark-title {
  color: var(--body-color-pink);
}

.tp-bookmark-brown .tp-bookmark-title {
  color: var(--body-text-color);
}

.tp-bookmark-title::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-48%);
  top: 50%;
  left: 10px;
  z-index: 1;
}

.tp-bookmark-pink .tp-bookmark-title::before {
  background-image: url('../img/tp-bookmark-icon-pink.svg');
}

.tp-bookmark-brown .tp-bookmark-title::before {
  background-image: url('../img/tp-bookmark-icon-brown.svg');
}

/* 注意点ブロック */
.tp-caution-block,
.tp-information-block {
  background-color: #fff;
  margin: 2rem auto;
  position: relative;
}

.tp-caution-block {
  border: 1px solid #E74E5A;
}

.tp-information-block {
  border: 1px solid #B9C9DC;
}

.tp-caution-block .tp-caution-block-title,
.tp-information-block .tp-information-block-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-round);
  padding: 10px 10px 10px 54px;
  position: relative;
}

.tp-caution-block .tp-caution-block-title {
  background-color: #E74E5A;
}

.tp-information-block .tp-information-block-title {
  background-color: #B9C9DC;
}

.tp-caution-block .tp-caution-block-title::before,
.tp-information-block .tp-information-block-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-48%);
  top: 50%;
  left: 20px;
}

.tp-caution-block .tp-caution-block-title::before {
  background-image: url('../img/tp-caution-icon.svg');
}

.tp-information-block .tp-information-block-title::before {
  background-image: url('../img/tp-information-icon.svg');
}

.tp-caution-block .tp-caution-block-text,
.tp-information-block .tp-information-block-text {
  padding: 2rem;
  font-size: 16px;
}

.tp-caution-block .tp-caution-block-text {
  background: #FFF9F9;
}

.tp-information-block .tp-information-block-text {
  background: #F5F8FB;
}

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

  .tp-caution-block .tp-caution-block-text,
  .tp-information-block .tp-information-block-text {
    padding: 1rem;
  }
}

/* 引用ブロック */
.tp-quote {
  background-color: #fff;
  padding: 2rem 2rem 0.5rem;
  margin: 2rem auto;
  border: 3px solid #D9CFC7;
  position: relative;
}

.tp-quote::before {
  content: "";
  display: inline-block;
  width: 68px;
  height: 42px;
  background-image: url('../img/tp-quote-icon-01.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 20px;
}

.tp-quote::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 42px;
  background-image: url('../img/tp-quote-icon-02.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(50%);
  bottom: 0;
  right: 20px;
}

.tp-quote .tp-quote-text {
  color: #666666;
  margin-bottom: 1rem;
}

.tp-quote .tp-quote-author-box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.tp-quote .tp-quote-author {
  color: #666666;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-right: 80px;
}

@media screen and (max-width: 975px) {
  .tp-quote {
    padding: 2rem 1rem;
  }

  .tp-quote .tp-quote-author {
    margin-right: 0;
  }

}

.tp-quote .tp-quote-author::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #D9CFC7;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: -40px;
}

/* 参考文献用注釈ボタン */
.reference-btn {
  font-size: 12px;
  color: var(--body-text-color);
  vertical-align: bottom;
}


/* ツールチップ */
.tooltip {
  /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: default;
  color: var(--body-text-color);
  font-size: 12px;
  vertical-align: bottom;
  width: fit-content;
}

.tooltip-text {
  display: block;
  width: fit-content;
  min-width: 120px;
  max-width: 200px;
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 10px;
  background-color: #666;
  color: #fff;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: 0.3s all;
  font-size: 10px;
}

/* @media screen and (max-width: 767px) {
  .tooltip-text {
    display: none;
  }
} */

.tooltip:hover .tooltip-text {
  top: 150%;
  visibility: visible;
  opacity: 1;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

/* 特徴ブロック */
@media screen and (min-width: 767px) {
  .tp-feature-block {
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #fff 0%, #fff 30%, #FFF9F9 30%, #FFF9F9 100%);
  }

  .tp-feature-card {
    width: calc(100% / 3);
  }
}

.tp-feature-card {
  padding: 20px;
}

.tp-feature-num {
  text-align: center;
  font-family: var(--font-en-cursive);
  color: var(--body-color-pink);
  font-size: 24px;
}

.tp-feature-block .tp-feature-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 3px 4px 16.9px rgba(0, 0, 0, 0.25);
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
}

.tp-feature-card-title {
  text-align: center;
  font-family: var(--font-round);
  color: var(--body-title-color);
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  font-weight: 500;
}

.tp-feature-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text-color);
}

@media screen and (max-width: 767px) {
  .tp-feature-card-title {
    font-size: 22px;
  }
}

/* テキスト+画像ブロック */
.tp-media-block {
  padding: 60px;
  margin: 0 auto;
  background: #FFF9F9;
}

.tp-media-block {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 767px) {
  .tp-media-block-image-left {
    flex-direction: row;
  }

  .tp-media-block-image-right {
    flex-direction: row-reverse;
  }

  .tp-media-content {
    width: 45%;
    align-content: center;
  }

  .tp-media-image-box {
    width: 50%;
  }
}

.tp-media-title {
  font-family: var(--font-round);
  color: var(--body-title-color);
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

.tp-media-text {
  font-size: 16px;
}

.tp-media-block .tp-media-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 3px 4px 16.9px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .tp-media-block {
    flex-direction: column;
    padding: 20px 20px 30px;
  }

  .tp-media-content {
    display: contents;
  }

  .tp-media-title {
    order: 1;
  }

  .tp-media-image-box {
    order: 2;
    margin-bottom: 30px;
  }

  .tp-media-text {
    order: 3;
  }
}


/* お悩み相談ブロック */
.tp-trouble {
  background-color: #FCF8F5;
  padding: 2rem;
  margin: 2rem auto;
}

@media screen and (max-width: 767px) {
  .tp-trouble {
    padding: 10px;
  }
}

.tp-trouble .tp-trouble-title {
  font-size: 22px;
  color: var(--body-text-color);
  font-family: var(--font-round);
  padding: 15px 20px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  font-weight: 500;
}

.tp-trouble .tp-trouble-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: var(--border-radius-full);
  background-image: url(../img/tp-heading-line.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: 0;
  left: 0;
}

.tp-trouble .tp-trouble-list {
  list-style: none;
  padding-left: 0;
  padding: 2rem 2rem 1rem;
  background: #fff;
  border: 3px solid #D9CFC7;
}

@media screen and (max-width: 767px) {
  .tp-trouble .tp-trouble-list {
    padding: 1rem;
  }
}

.tp-trouble .tp-trouble-list-item {
  position: relative;
  padding-left: 32px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-gothic);
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  /* コンテナ幅に合わせて柔軟に改行 */
  word-break: keep-all;
  /* 日本語の単語の途中では改行しない */
}

@media screen and (min-width: 767px) {
  .tp-trouble .tp-trouble-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }

  .tp-trouble .tp-trouble-list-item {
    width: 49%;
  }
}

.tp-trouble .tp-trouble-list-item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../img/tp-checkmark-icon.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-45%);
  top: calc(16px*1.5/2);
  left: 0;
}

@media screen and (max-width: 767px) {
  .tp-trouble .tp-trouble-title {
    font-size: 18px;
  }
}

/* 目次 */
.elementor-widget-table-of-contents .elementor-widget-container {
  border: none !important;
  border-bottom: 2px solid var(--body-color-pink) !important;
}

#page-content .elementor-toc__header {
  background-color: #FFF9F9 !important;
  border: none !important;
}

#page-content .elementor-toc__body {
  background-color: #FFF9F9;
  padding: 0 20px 20px;
}

#page-content .elementor-toc__header-title {
  position: relative;
  font-size: 24px;
  color: var(--body-title-color);
  font-family: var(--font-english);
  padding-top: 8px;
}

.elementor-widget-table-of-contents .elementor-toc__list-item {
  font-family: var(--font-gothic);
  margin-bottom: 2px;
}

.elementor-widget-table-of-contents .elementor-toc__list-item li {
  position: relative;
  padding-left: 24px;
}

.elementor-widget-table-of-contents .elementor-toc__list-item li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  border-radius: var(--border-radius-full);
  background: var(--body-text-color);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 16px;
}

ol.elementor-toc__list-wrapper .elementor-toc__list-item-text-wrapper:before {
  padding-left: 10px;
}

ol.elementor-toc__list-wrapper .elementor-toc__list-item ol.elementor-toc__list-wrapper .elementor-toc__list-item-text-wrapper:before {
  content: none !important;
}

.elementor-toc__list-item-text-wrapper:hover {
  background: #fff;
  color: var(--body-color-pink);
  /* text-decoration: none; */
}

.elementor-toc__body .elementor-toc__list-item-text {
  padding: 3px 10px;
  text-decoration: none !important;
  font-family: var(--font-round);
  font-weight: normal;
  font-size: 18px;
}

.elementor-toc__list-wrapper .elementor-toc__list-item .elementor-toc__list-wrapper .elementor-toc__list-item-text {
  font-size: 16px;
}

#page-content .elementor-toc__toggle-button svg {
  height: 2em;
  width: 2em;
}

/* 監修者ブロック（小） */
#page-content .p-person__img {
  margin: 0;
}

#page-content .p-person__title {
  font-family: var(--font-round);
  color: var(--body-text-color);
  align-content: center;
}

#page-content .p-person__body {
  margin-left: 120px;
}

#page-content .p-adv__wrap .p-person__content .more-btn {
  font-size: 16px;
  color: #363637;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__body {
    margin: 16px 0 0 32px;
  }

}

/* リード文 */
.tp-lead-sentence {
  padding: 1rem 2rem;
  background-color: #FFF9F9;
  font-size: 14px;
  font-family: var(--font-round);
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .tp-lead-sentence {
    padding: 1rem;
  }

}

/* FAQ */
/* ----------------------------------------
  tp-faq
  ---------------------------------------- */

.tp-faq-accordion {
  max-width: 80%;
}

.tp-faq .toggle {
  display: none;
}

.tp-faq {
  position: relative;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-bottom: 2px dashed #BBBBBB;
}

.tp-faq .question-box {
  position: relative;
  padding-left: 50px;
}

.tp-faq .question,
.tp-faq .answer {
  transform: translateZ(0);
  transition: all 0.3s;
}

.tp-faq .question {
  padding: 1rem 2.2rem 1rem 1rem;
  display: block;
}

.tp-faq .question span,
.tp-faq .answer span {
  width: 40px;
  height: 40px;
  display: inline-block;
  font-size: 22px;
  margin-right: 10px;
  line-height: 1;
  border-radius: var(--border-radius-full);
  text-align: center;
  align-content: center;
}

.tp-faq .question:after,
.tp-faq .question:before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 0.75rem;
  background-color: var(--body-color-pink);
  transition: all 0.3s;
}

.tp-faq .question:after {
  transform: rotate(90deg);
}

.tp-faq .answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
}

.tp-faq .answer div {
  margin: 2rem 1rem 2rem;
  line-height: 1.8;
  padding-left: 50px;
  min-height: 50px;
  align-content: center;
  position: relative;
}

.tp-faq .toggle:checked+.question+.answer {
  max-height: 500px;
  transition: all 1.5s;
}

.tp-faq .toggle:checked+.question:before {
  transform: rotate(90deg) !important;
}

@media screen and (max-width: 767px) {
  .tp-faq {
    margin-top: 0;
    margin-bottom: 0;
  }

  .tp-faq .question {
    padding: 1rem 2.2rem 1rem 0.5rem;
  }

  .tp-faq .answer div {
    margin: 0.5rem 0.5rem 2rem;
  }
}

.tp-faq-accordion {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 90%;
}

.tp-faq .question {
  font-family: var(--font-round);
  color: var(--body-title-color);
  font-size: 18px;
  font-weight: 500;
}

.tp-faq .question span {
  font-family: var(--font-english);
  color: #fff;
  background: var(--body-color-pink);
  padding: 6px 0 0 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}

.tp-faq .answer span {
  font-family: var(--font-english);
  background: var(--body-text-color);
  color: #fff;
  padding: 6px 0 0 2px;
  position: absolute;
  top: 5px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .tp-faq-accordion {
    padding: 1rem 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 975px) {
  .tp-faq .answer span {
    padding: 4px 0 0 1px;
  }
}

/* ----------------------------------------
  tp-anchor-link
  ---------------------------------------- */

.tp-anchor-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.tp-anchor-link-item {
  width: 32%;
  margin-bottom: 10px;
  border-radius: 0 8px 8px 0;
}

.tp-anchor-link-btn {
  display: flex;
  width: 100%;
  padding: 1rem 1rem 1rem 0.5rem;
  background: #FFFFFF;
  border-left: 1px solid var(--body-color-pink);
  align-items: center;
  gap: 12px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0px 4px 9.2px 2px #F1E7E1 !important;
  transition: .3s;
}

.tp-anchor-link-btn:hover {
  transform: translateY(-7px);
  opacity: 1;
}

.tp-anchor-link-icon-box {
  aspect-ratio: 1 / 1;
  align-content: center;
  width: 50px;
  height: 50px;
  background: #F7F3F0;
  border-radius: var(--border-radius-full);
}

.tp-anchor-link-icon-box img {
  width: 36px !important;
  height: 36px !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: auto;
}

.tp-anchor-link-text {
  font-size: 14px;
  color: var(--body-title-color);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .tp-anchor-link-item {
    width: 100%;
  }

  .tp-anchor-link-btn {
    padding: 1rem;
  }
}


/* ----------------------------------------
  tp-internal-link
  ---------------------------------------- */
.tp-internal-link ul {
  justify-content: center;
}

.tp-internal-link ul li {
  min-width: 32%;
  width: auto;
}


/* 関連記事 */
.tp-related-articles-block {
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  padding: 64px 20px;
}

.tp-related-articles-block .tp-list-title-box {
  text-align: center;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
}

.tp-related-articles-block .tp-related-article-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-related-articles-block .tp-related-article-item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 270px;
  height: 340px;
  background-color: #fff;
  transition: all 0.3s;
  padding: 8px;
  border-radius: 10px;
}

.tp-related-articles-block .tp-related-article-item:hover {
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  opacity: 1;
}

.tp-related-articles-block .tp-related-article-item:hover .tp-related-article-item-title {
  color: var(--body-color-pink);
}

.tp-related-articles-block .tp-related-article-item img {
  width: 95%;
  height: 150px;
  object-fit: cover;
  margin: 8px auto;
  border-radius: 8px;
}

.tp-related-articles-block .tp-related-article-item-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  color: #333;
  margin: 10px 10px 5px 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 溢れた部分を隠す */
  text-overflow: ellipsis;
  /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2;
  /* 最大行数を2行に設定 */
}

.tp-related-articles-block .tp-related-article-item-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 5px 10px 10px 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 溢れた部分を隠す */
  text-overflow: ellipsis;
  /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 4;
  /* 最大行数を2行に設定 */
}

@media screen and (min-width: 767px) {
  .elementor-widget-image img {
    width: 80%;
  }
}

/* 関連記事（半自動入力） */
#page-content .elementor-widget-posts .elementor-post__title a {
  font-family: var(--font-round);
  font-weight: bold;
  color: var(--body-text-color);
}

#page-content .elementor-posts .elementor-post__excerpt p {
  font-family: var(--font-gothic);
  font-weight: normal;
}


/* tp-cta-block */
.tp-cta-block {
  width: 100%;
  padding: 60px 40px;
  background: #ffe6c6;
  box-shadow: 0px 4px 9.2px 2px rgba(241, 231, 225, 0.5);
  border-radius: 10px;
  margin: 20px auto;
}

.tp-cta-title-jp {
  font-size: 20px;
  color: var(--body-text-color);
  font-family: var(--font-round);
  font-weight: 500;
  padding-left: 10px;
}

.tp-cta-title-en {
  font-size: 64px;
  color: var(--body-title-color);
  font-family: var(--font-english);
  line-height: 1.2;
}

.tp-cta-text {
  font-size: 16px;
}

@media screen and (min-width: 767px) {
  .tp-cta-block {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .tp-cta-block {
    padding: 40px 5px;
  }

  .tp-cta-title {
    text-align: center;
  }

  .tp-cta-text {
    padding: 0 10px;
    margin-bottom: 30px;
  }
}

.tp-cta-btn-web {
  display: block;
  width: 320px;
  height: 80px;
  background: var(--body-color-yellow);
  color: #fff;
  font-size: 24px;
  font-family: var(--font-round);
  font-weight: 500;
  border-radius: var(--border-radius-full);
  position: relative;
  text-align: center;
  line-height: 80px;
  padding: 0 40px 0 20px;
  margin: 0 auto;
}

.tp-cta-btn-web::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../img/tp-btn-arrow-yellow.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 16px;
}

.tp-cta-web-microcopy {
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 20px;
  border-radius: var(--border-radius-full);
  background: #fff;
  border: 1px solid var(--body-color-yellow);
  color: var(--body-color-yellow);
  font-size: 16px;
  width: 80%;
  padding: 5px 10px;
  line-height: 1.2;
}

.tp-cta-btn-tel {
  margin: 0 auto 30px;
  width: fit-content;
}

.tp-cta-tel-microcopy {
  font-size: 18px;
  color: var(--body-title-color);
  font-family: var(--font-round);
  font-weight: 500;
  width: fit-content;
  margin: 0 auto;
}

.tp-cta-tel-num {
  font-size: 36px;
  color: var(--body-title-color);
  font-family: var(--font-english);
  font-weight: 500;
  position: relative;
  padding-left: 50px;
  padding-right: 20px;
  width: fit-content;
}

.tp-cta-tel-num::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../img/tp-cta-icon-tel-brown.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -65%);
  top: 50%;
  left: 10px;
}

/* コンバージョンボタン（単体） */
.tp-cta__single-btn.tp-cta-btn-web {
  min-width: 320px;
  max-width: 100%;
  height: 70px;
  padding: 0 40px 0 20px;
}


/* 診療時間 */
.clinic-info-biz-hour {
  margin-bottom: min(40px, 2.9vw);
}

.tp-biz-hour {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin-bottom: min(20px, 1.5vw);
}

.tp-biz-hour tr th,
.tp-biz-hour tr td {
  text-align: center;
  align-content: center;
  width: 9%;
  font-weight: 500;
}

.tp-biz-hour tr th {
  padding: min(10px, 0.7vw);
  letter-spacing: 0.01em;
  font-size: min(16px, 1.2vw);
  white-space: nowrap;
  background: var(--body-color-pink);
  color: #fff;
}

.tp-biz-hour tr td {
  padding: min(20px, 1.5vw) min(10px, 0.7vw);
  background: #fff;
}

.tp-biz-hour tr th:nth-child(n+2),
.tp-biz-hour tr td:nth-child(n+2) {
  border-left: 2px solid #F1F1F1;
}

.tp-biz-hour tr:nth-child(n+2) {
  border-top: 2px solid #F1F1F1;
}

.tp-biz-hour tr th:first-child,
.tp-biz-hour tr td:first-child {
  width: 16%;
}

.tp-biz-hour tr td:last-child {
  font-weight: normal;
}

.tp-biz-hour .circle-colored {
  color: var(--body-color-pink);
}

.tp-biz-hour .triangle-colored {
  color: var(--body-text-color);
}

.tp-biz-hour-annotation {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
@media screen and (max-width: 767px) {
  .tp-biz-hour {
    margin-bottom: 3vw;
  }

  .tp-biz-hour tr th,
  .tp-biz-hour tr td {
    font-size: 3vw;
    padding: 3vw 1vw;
  }

  .tp-biz-hour-annotation {
    font-size: 2.8vw;
  }
}

.tp-biz-hour th {
  font-weight: normal;
}


/* お知らせ一覧ページ用css */
.elementor-widget-posts .elementor-pagination{
  margin-top: 50px;
}

.elementor-widget-posts .elementor-pagination .current{
  color: var(--body-color-pink);
}

.elementor-posts--thumbnail-top .elementor-post__text{
  padding: 20px 0;
  border-bottom: 2px solid rgba(210, 100, 109, 0.3);
}

#page-content .elementor-post__read-more{
  font-family: var(--font-round);
  color: var(--body-text-color);
  font-weight: 500;
}











/* トップページcss */

/* top-section */
.top-section {
  padding: 100px 0;
}

@media screen and (max-width: 767px){
	.top-section{
		padding: 50px 0;
	}
}

/* top-btn-pink */
.top-btn-pink {
  display: inline-block;
  min-width: 280px;
  width: fit-content;
  height: auto;
  padding: 14px 60px 14px 30px;
  background: var(--body-color-pink);
  color: #fff;
  font-size: min(18px, 1.29vw);
  font-family: var(--font-gothic);
  font-weight: 500;
  border-radius: var(--border-radius-full);
  text-align: center;
  position: relative;
}

.top-btn-pink::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../img/tp-btn-arrow-white.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: min(16px, 1.14vw);
}

.top-btn-box-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-btn-pink {
    font-size: 3.7vw;
  }

  .top-btn-pink::before {
    right: 3vw;
  }
}

/* top-section-title */
.top-section-title-group {
  margin-bottom: min(30px, 2.1vw);
  text-align: center;
}

.top-section-title {
  font-size: min(20px, 1.43vw);
  color: var(--body-text-color);
  font-family: var(--font-round);
  line-height: 1.5;
  font-weight: 500;
}

.top-section-title-en {
  font-size: min(64px, 4.57vw);
  font-family: var(--font-english);
  color: var(--body-title-color);
  line-height: 1.2 !important;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .top-section-title-group {
    margin-bottom: 5vw;
  }

  .top-section-title-en {
    font-size: 12vw;
  }

  .top-section-title {
    font-size: 4.3vw;
  }
}

/* top-section-text */
.top-section-text {
  width: 80%;
  margin: 0 auto 100px;
}

@media screen and (min-width: 767px) {
  .top-section-text {
    width: 80%;
  }
}


/* #top-fv */
.top-fv-topics-bg-pink {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-fv-topics-bg-pink::before {
  content: "";
  display: inline-block;
  width: 50%;
  height: auto;
  aspect-ratio: 650 / 920;
  border-radius: 20px;
  background-image: url('../img/top-fv-bg-1.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-20%, 50%);
  bottom: 0;
  left: 0;
  z-index: -2;
}

.top-fv-topics-bg-pink::after {
  content: "";
  display: inline-block;
  width: 80%;
  height: auto;
  aspect-ratio: 860 / 790;
  background-image: url('../img/top-fv-bg-2.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(30%, -30%);
  top: 0;
  right: 0;
  z-index: -2;
}

#top-fv {
  height: 100dvh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}

@supports not (height: 100dvh) {
  #top-fv {
    height: 100vh;
  }
}

/* モバイル専用上書き */
@media screen and (max-width: 767px) {
  #top-fv {
    height: 100svh;
  }
}

@supports not (height: 100svh) {
  @media screen and (max-width: 767px) {
    #top-fv {
      height: 100vh;
    }
  }
}

#top-fv .section-inner {
  position: relative;
}

@media screen and (min-width: 767px) {
  #top-fv .top-fv-main-image {
    width: 95%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    bottom: 0;
    right: -5%;
    z-index: -1;
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  #top-fv .top-fv-main-image {
    width: 95%;
    height: 55%;
    object-fit: cover;
    object-position: right center;
    position: absolute;
    top: 12%;
    right: -5%;
    z-index: -1;
    border-radius: 20px;
  }
}

#top-fv .top-fv-appeal-content {
  position: absolute;
  top: 30%;
  left: 15%;
}

#top-fv .top-fv-appeal-inner {
  position: relative;
}

#top-fv .top-fv-appeal-inner::before {
  content: "";
  display: inline-block;
  width: 150%;
  height: auto;
  aspect-ratio: 650 / 350;
  background-image: url('../img/top-fv-appeal-bg.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-30%, -24%);
  top: 0;
  left: 0;
  z-index: 1;
}

#top-fv .top-fv-appeal-text-en {
  position: relative;
  font-size: min(1.1vw, 16px);
  color: #fff;
  font-family: var(--font-en-cursive);
  z-index: 2;
}

#top-fv .top-fv-appeal-text {
  position: relative;
  font-size: min(36px, 2.6vw);
  color: #fff;
  font-family: var(--font-round);
  z-index: 2;
  line-height: 1.7;
  font-weight: 500;
}

#top-fv .top-fv-feature-box {
  position: absolute;
  bottom: 10%;
  left: 15%;
}

#top-fv .top-fv-feature-inner {
  display: flex;
  gap: min(30px, 2.1vw);
}

#top-fv .top-fv-feature-item {
  width: 14.3vw;
  max-width: 200px;
  height: 14.3vw;
  max-height: 200px;
  background: rgba(234, 182, 51, 0.8);
  border-radius: var(--border-radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

#top-fv .top-fv-feature-item::before {
  content: "";
  display: inline-block;
  width: 115%;
  height: 115%;
  border-radius: var(--border-radius-full);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: rgba(225, 175, 66, 0.6);
  z-index: 1;
}

#top-fv .top-fv-feature-num {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-family: var(--font-en-cursive);
  font-size: min(16px, 1.2vw);
}

#top-fv .top-fv-feature-text {
  position: relative;
  color: #fff;
  font-family: var(--font-round);
  font-size: min(16px, 1.2vw);
  text-align: center;
  z-index: 2;
  padding: min(10px, 0.7vw) min(15px, 1.1vw);
  transform: translateY(5%);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .top-fv-topics-bg-pink::before {
    width: 60%;
    transform: translate(-10%, -45%);
  }

  #top-fv .top-fv-appeal-content {
    top: 20%;
  }

  #top-fv .top-fv-appeal-inner::before {
    width: 250%;
    transform: translate(-30%, -10%);
  }

  #top-fv .top-fv-appeal-text-en {
    font-size: 3.2vw;
    margin-bottom: 3vw;
    opacity: 0.8;
  }

  #top-fv .top-fv-appeal-text {
    font-size: 6.4vw;
    line-height: 1.8;
  }

  #top-fv .top-fv-feature-box {
    transform: translateX(-50%);
    left: 50%;
    bottom: 15%;
  }

  #top-fv .top-fv-feature-inner {
    gap: 0;
  }

  #top-fv .top-fv-feature-item {
    width: 32vw;
    height: 32vw;
    max-width: none;
    max-height: none;
  }

  #top-fv .top-fv-feature-num {
    font-size: 3vw;
  }

  #top-fv .top-fv-feature-text {
    font-size: 2.8vw;
  }

}



/* #top-info クリニックのご案内 */

#top-info {
  background: #FFF9F9;
  margin-top: 100px;
}

#top-info .top-section-title-group {
  margin-top: -150px;
}

@media screen and (min-width: 767px) {
  #top-info .top-info-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #top-info .top-info-left-box,
  #top-info .top-info-right-box {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
  }

  #top-info .top-btn-box-center {
    width: 100%;
  }
}

#top-info .top-info-biz-hour-box {
  position: relative;
  width: 100%;
}

#top-info .tp-biz-hour {
  position: relative;
  z-index: 2;
}

#top-info .tp-biz-hour tr th,
#top-info .tp-biz-hour tr td {
  width: 10%;
}

#top-info .tp-biz-hour tr th:first-child,
#top-info .tp-biz-hour tr td:first-child {
  width: 30%;
}

#top-info .top-info-address {
  padding-left: min(30px, 2.1vw);
  position: relative;
}

#top-info .top-info-address::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 110%;
  background: var(--body-color-pink);
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

#top-info .top-info-address-dl {
  display: flex;
}

#top-info .top-info-address-dt {
  font-weight: normal;
  width: 10%;
  white-space: nowrap;
}

#top-info .top-info-access-text {
  padding-left: min(20px, 1.4vw);
}

#top-info .top-info-access-blue,
#top-info .top-info-access-green {
  display: block;
  position: relative;
}

#top-info .top-info-access-blue::before,
#top-info .top-info-access-green::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: var(--border-radius-full);
  position: absolute;
  transform: translate(0%, -50%);
  top: 52%;
  left: max(-20px, -1.4vw);
}

#top-info .top-info-access-blue::before {
  background: #73BFE8;
}

#top-info .top-info-access-green::before {
  background: #7CC16A;
}

#top-info .top-info-google-map-box,
#top-info .top-info-access-map-box {
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 320;
  border-radius: 10px;
}

#top-info .top-info-google-map-box iframe,
#top-info .top-info-access-map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

#top-info .top-info-subtitle-en {
  font-size: min(36px, 2.6vw);
  color: #D3989C;
  font-family: var(--font-english);
  position: absolute;
  transform: translateY(-70%);
  top: 0;
  left: min(10px, 0.7vw);
  text-transform: uppercase;
}

#top-info .top-info-news {
  position: relative;
}

#top-info .news-list {
  position: relative;
  z-index: 2;
  padding: 10px 30px 24px;
  background: #FFFFFF;
  border-radius: 10px;
}

#top-info .news-item {
  border-bottom: 1px dashed #C3C3C3;
  padding: 10px 5px;
}

#top-info .news-item time {
  color: #AFAFAF;
  padding: 2px 0;
  display: inline-block;
  margin: 2px 0;
  font-size: min(12px, 0.9vw);
}

#top-info .news-category {
  display: inline-block;
  padding: 2px 10px;
  background: #fff;
  border: 1px solid var(--body-color-pink);
  color: var(--body-color-pink);
  border-radius: var(--border-radius-full);
  margin: 2px 5px;
  font-size: min(12px, 0.9vw);
  font-family: var(--font-round);
  font-weight: 500;
}

#top-info .news-category--important {
  background: var(--body-color-pink);
  border: 1px solid #fff;
  color: #fff;
}

#top-info .top-news-item-btn {
  width: 100%;
  display: block;
}

#top-info .top-more-btn {
  display: block;
  width: fit-content;
  margin: 10px 5px 10px auto;
}

@media screen and (max-width: 767px) {
  #top-info .top-info-subtitle-en {
    font-size: 8vw;
    left: 3vw;
    transform: translateY(-64%);
  }

  #top-info .top-info-left-box,
  #top-info .top-info-right-box {
    margin-bottom: 15vw;
  }

  #top-info .news-item time,
  #top-info .news-category {
    font-size: 3.2vw;
  }

  #top-info .top-news-item-btn {
    font-size: 3.7vw;
  }

  #top-info .top-info-address {
    margin: 10vw auto;
    padding-left: 5vw;
  }

  #top-info .top-info-address-dt {
    width: 15%;
  }

  #top-info .top-info-access-map-box {
    margin: 10vw auto;
  }

  #top-info .top-info-access-text {
    padding-left: 4vw;
  }

  #top-info .top-info-access-blue::before,
  #top-info .top-info-access-green::before {
    top: 56%;
    left: -4vw;
  }
}





/* #top-cta コンバージョンブロック */

#top-cta {
  background-image: url('../img/top-cta-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#top-cta .tp-cta-block {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  box-shadow: 0px 4px 9.2px 2px rgba(241, 231, 225, 0.5);
  border-radius: 10px;
  justify-content: space-between;
  max-width: 1000px;
  padding: 60px;
}

#top-cta .top-section-title-group {
  text-align: left;
  margin-bottom: 10px;
}

#top-cta .top-section-title {
  padding-left: 5px;
}

@media screen and (min-width: 767px) {
  #top-cta .tp-cta-content {
    width: 55%;
  }

  #top-cta .tp-cta-btn-box {
    width: 40%;
    align-content: center;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  #top-cta .tp-cta-block {
    padding: 10vw 5vw;
  }

  #top-cta .top-section-title-group {
    text-align: center;
  }

  #top-cta .tp-cta-text {
    text-align: center;
  }
}



/* ----------------------------------------
  #top-feature
  ---------------------------------------- */
#top-feature {
  background-image: url('../img/top-feature-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 767px) {
  #top-feature .top-feature-list {
    display: flex;
    justify-content: space-around;
  }

  #top-feature .top-feature-item {
    width: 30%;
  }
}

#top-feature .top-feature-list {
  margin-bottom: 30px;
}

#top-feature .top-feature-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-full) var(--border-radius-full) 0 0;
  padding: 20px;
  position: relative;
}

#top-feature .top-feature-item-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: min(40px, 2.9vw);
  color: var(--body-color-pink);
  font-family: var(--font-en-cursive);
  opacity: 0.5;
}

#top-feature .top-feature-item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-full) var(--border-radius-full) 0 0;
}

@media screen and (min-width: 767px) {
  #top-feature .top-feature-item-text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

#top-feature .top-feature-item-title {
  text-align: center;
  font-size: min(20px, 1.4vw);
  color: var(--body-title-color);
  font-family: var(--font-round);
  font-weight: 500;
  margin: 10px 0;
}

@media screen and (min-width: 767px) {
  #top-feature .top-feature-item-title-2line {
    margin: calc(min(20px, 1.4vw) * 1.5 / 2 + 10px) 0;
  }
}

@media screen and (max-width: 767px) {
  #top-feature .top-feature-item-num {
    font-size: 10vw;
  }

  #top-feature .top-feature-item {
    margin: 10vw auto;
  }

  #top-feature .top-feature-item-title {
    font-size: 5vw;
  }
}


/* ----------------------------------------
  #top-trouble
  ---------------------------------------- */
#top-trouble {
  background-image: url('../img/top-trouble-bg.png');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 767px) {
  #top-trouble .top-trouble-anchor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
  }

  #top-trouble .top-trouble-anchor-item {
    width: 22%;
  }
}

#top-trouble .top-trouble-anchor-btn {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: min(14px, 1vw) min(36px, 2.6vw) min(14px, 1vw) min(20px, 1.4vw);
  color: var(--body-title-color);
  font-size: min(18px, 1.29vw);
  font-family: var(--font-round);
  font-weight: 500;
  border-radius: var(--border-radius-full);
  text-align: center;
  position: relative;
  box-shadow: 0px 4px 14.5px 2px rgba(182, 182, 182, 0.25);
}

#top-trouble .top-trouble-anchor-btn::before {
  content: "";
  display: inline-block;
  width: 2vw;
  max-width: 28px;
  height: 2vw;
  max-height: 28px;
  background-image: url('../img/top-menu-anchor-btn-icon.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: min(16px, 1.14vw);
  transition: all 0.3s;
}

#top-trouble .top-trouble-anchor-list li:nth-child(1) a {
  background: #FFF1F2;
}

#top-trouble .top-trouble-anchor-list li:nth-child(2) a {
  background: #F9E8F1;
}

#top-trouble .top-trouble-anchor-list li:nth-child(3) a {
  background: #E1ECFF;
}

#top-trouble .top-trouble-anchor-list li:nth-child(4) a {
  background: #D0EBFD;
}

@media screen and (min-width: 767px) {
  #top-trouble .top-trouble-border::before {
    content: "";
    display: inline-block;
    height: 3px;
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
  }

  #top-trouble .top-trouble-border::after {
    content: "";
    display: inline-block;
    width: 1.1vw;
    max-width: 16px;
    height: 1.1vw;
    max-height: 16px;
    border-radius: var(--border-radius-full);
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
  }

  #top-trouble .top-trouble-border-01::before {
    width: 50%;
    background: #FFF1F2;
    right: 0;
  }

  #top-trouble .top-trouble-border-01::after {
    background: #FFF1F2;
    transform: translate(50%, -50%);
    right: 0;
  }

  #top-trouble .top-trouble-border-02::before {
    width: 5%;
    background: #F9E8F1;
    left: 0;
  }

  #top-trouble .top-trouble-border-02::after {
    background: #F9E8F1;
    transform: translate(-50%, -50%);
    left: 0;
  }

  #top-trouble .top-trouble-border-03::before {
    width: 50%;
    background: #E1ECFF;
    right: 0;
  }

  #top-trouble .top-trouble-border-03::after {
    background: #E1ECFF;
    transform: translate(50%, -50%);
    right: 0;
  }

  #top-trouble .top-trouble-border-04::before {
    width: 5%;
    background: #D0EBFD;
    left: 0;
  }

  #top-trouble .top-trouble-border-04::after {
    background: #D0EBFD;
    transform: translate(-50%, -50%);
    left: 0;
  }
}

#top-trouble .top-trouble-content {
  position: relative;
  padding: 10px 0;
  margin: 60px auto;
}

#top-trouble .top-trouble-content::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #FFF0F0 0%, #FBDDE6 25%, #DBDFF2 50%, #BAE1FF 75%, #88CAED 100%);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 767px) {
  #top-trouble .top-trouble-content::before {
    left: 5%;
  }
}

#top-trouble .top-trouble-content-item {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}

#top-trouble .row-reverse {
  flex-direction: row-reverse;
}

@media screen and (min-width: 767px) {

  #top-trouble .top-trouble-content-item .top-trouble-content-text-box,
  #top-trouble .top-trouble-content-item .top-trouble-content-image-box {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  #top-trouble .top-trouble-content-item {
    flex-direction: column;
  }

  #top-trouble .top-trouble-content-text-box {
    display: contents;
  }

  #top-trouble .top-trouble-content-title {
    order: 1;
  }

  #top-trouble .top-trouble-content-image-box {
    order: 2;
  }

  #top-trouble .top-trouble-content-text {
    order: 3;
  }

  #top-trouble .top-trouble-btn-list {
    order: 4;
  }
}

@media screen and (min-width: 767px) {

  #top-trouble .top-trouble-content-text,
  #top-trouble .top-trouble-btn-list {
    padding-right: min(50px, 3.6vw);
  }

  #top-trouble .top-trouble-content-image-box {
    padding-left: min(50px, 3.6vw);
  }

  #top-trouble .row-reverse .top-trouble-content-text,
  #top-trouble .row-reverse .top-trouble-btn-list {
    padding-right: 0;
  }

  #top-trouble .row-reverse .top-trouble-content-title-box,
  #top-trouble .row-reverse .top-trouble-content-subtitle,
  #top-trouble .row-reverse .top-trouble-content-text,
  #top-trouble .row-reverse .top-trouble-btn-list {
    padding-left: min(50px, 3.6vw);
  }

  #top-trouble .row-reverse .top-trouble-content-image-box {
    padding-left: 0;
    padding-right: min(50px, 3.6vw);
  }
}

#top-trouble .top-trouble-content-title-box {
  position: relative;
}

#top-trouble .top-trouble-content-title {
  font-size: min(20px, 1.4vw);
  color: var(--body-title-color);
  font-family: var(--font-round);
  width: fit-content;
  padding: 6px 10px 6px 20px;
  border: 1px solid var(--body-title-color);
  border-radius: var(--border-radius-full);
  margin-bottom: 20px;
  font-weight: 500;
}

#top-trouble .top-trouble-content-subtitle {
  font-size: min(24px, 1.7vw);
  color: var(--body-title-color);
  font-family: var(--font-round);
  margin-bottom: 20px;
  font-weight: 500;
}

#top-trouble .top-trouble-content-text {
  font-size: min(16px, 1.2vw);
  color: var(--body-text-color);
  font-family: var(--font-gothic);
  line-height: 1.7;
  margin-bottom: 20px;
}

#top-trouble .top-trouble-btn-list {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

#top-trouble .top-trouble-btn {
  display: inline-block;
  width: fit-content;
  height: auto;
  padding: min(10px, 0.7vw) min(32px, 2.3vw) min(10px, 0.7vw) min(14px, 1vw);
  background: #fff;
  color: var(--body-color-pink);
  border: 1px solid var(--body-color-pink);
  font-size: min(12px, 0.9vw);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-full);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#top-trouble .top-trouble-btn::before {
  content: "";
  display: inline-block;
  width: 1.1vw;
  max-width: 16px;
  height: 1.1vw;
  max-height: 16px;
  background-image: url('../img/trouble-arrow-pink.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: min(8px, 0.6vw);
  transition: all 0.3s;
}

#top-trouble .top-trouble-btn:hover::before {
  background-image: url('../img/trouble-arrow-white.svg');
  z-index: 2;
}

#top-trouble .top-trouble-btn::after {
  content: "";
  width: 0;
  height: 100%;
  background: var(--body-color-pink);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .5s;
}

#top-trouble .top-trouble-btn:hover::after {
  width: 100%;
  z-index: 0;
}

#top-trouble .top-trouble-btn:hover {
  opacity: 1;
}

#top-trouble .top-trouble-btn .top-trouble-btn-hover-text {
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  white-space: nowrap;
  color: #fff;
  transition: all .3s;
}

#top-trouble .top-trouble-btn:hover .top-trouble-btn-text {
  opacity: 0;
  transition: all .3s;
}

#top-trouble .top-trouble-btn:hover .top-trouble-btn-hover-text {
  opacity: 1;
  z-index: 1;
}

.opacity-zero {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  #top-trouble .top-trouble-anchor-btn {
    font-size: 6vw;
    padding: 5vw 14vw 5vw 14vw;
  }

  #top-trouble .top-trouble-anchor-item {
    margin: 5vw auto;
  }

  #top-trouble .top-trouble-anchor-btn::before {
    width: 8vw;
    height: 8vw;
    max-width: none;
    max-height: none;
    right: 4vw;
  }

  #top-trouble .top-trouble-content {
    padding: 3vw 0 3vw 10vw;
  }

  #top-trouble .top-trouble-content-title {
    font-size: 6vw;
    padding: 2vw 4vw 2vw 8vw;
  }

  #top-trouble .top-trouble-content-subtitle {
    font-size: 5vw;
  }

  #top-trouble .top-trouble-content-text {
    font-size: 3.7vw;
  }

  #top-trouble .top-trouble-btn {
    font-size: 3.2vw;
    padding: 2vw 6vw 2vw 4vw;
  }

  #top-trouble .top-trouble-btn::before {
    width: 3vw;
    height: 3vw;
    max-width: none;
    max-height: none;
    right: 2vw;
  }
}



/* ----------------------------------------
  #top-menu
  ---------------------------------------- */
#top-menu {
  background-image: url('../img/top-menu-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#top-menu .top-menu-title {
  border-left: 6px solid var(--body-color-pink);
  padding: 10px 16px;
  font-size: min(24px, 1.7vw);
  font-family: var(--font-round);
  font-weight: 500;
  color: var(--body-text-color);
  margin: 20px 0;
}

#top-menu .top-menu-category-list {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 40px;
}

@media screen and (min-width: 767px) {
  #top-menu .top-menu-category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5%;
  }

  #top-menu .top-menu-category-item {
    width: 24%;
    white-space: nowrap;
  }

  #top-menu .top-menu-list-item {
    width: 20%;
  }
}

#top-menu .top-menu-anchor-btn {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 14px 60px 14px 40px;
  background: var(--body-color-pink);
  color: #fff;
  font-size: min(18px, 1.29vw);
  font-family: var(--font-round);
  font-weight: 500;
  border-radius: var(--border-radius-full);
  text-align: center;
  position: relative;
  box-shadow: 0px 4px 14.5px 2px rgba(182, 182, 182, 0.25);
}

#top-menu .top-menu-anchor-btn::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../img/top-menu-anchor-btn-icon.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: min(16px, 1.14vw);
  transition: all 0.3s;
}

#top-menu .top-menu-anchor-btn:hover,
#top-trouble .top-trouble-anchor-btn:hover {
  opacity: 1;
}

#top-menu .top-menu-anchor-btn:hover::before,
#top-trouble .top-trouble-anchor-btn:hover::before {
  transform: translateY(-40%);
}

#top-menu .top-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
  position: relative;
  padding: 140px 40px 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  margin-bottom: 50px;
}

#top-menu .top-menu-list::before,
#top-menu .top-menu-list::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 60px;
  width: 40%;
  height: 1px;
  background: #D9CFC7;
}

#top-menu .top-menu-list::before {
  left: 0;
}

#top-menu .top-menu-list::after {
  right: 0;
}


#top-menu .top-menu-list-title {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(24px, 1.7vw);
  font-family: var(--font-round);
  font-weight: 500;
}



#top-menu .top-menu-list-item {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 0 0 10px 10px;
  margin-bottom: 40px;
}

#top-menu .top-menu-list-item .top-menu-btn {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-top: 1px solid var(--body-color-pink);
  padding: 10px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 4px 9.2px 2px #F1E7E1;
  transition: all 0.3s;
}

#top-menu .top-menu-list-item .top-menu-btn:hover {
  transform: translateY(-7px);
  box-shadow: 0px 12px 20px rgba(34, 34, 34, 0.12);
  opacity: 1;
}

#top-menu .top-menu-btn-icon-box {
  width: 60%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-full);
  background: #F7F3F0;
  align-content: center;
  text-align: center;
  margin: 10px auto;
}

#top-menu .top-menu-btn-icon-box img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  margin: auto;
}

#top-menu .top-menu-btn-text {
  text-align: center;
  color: var(--body-title-color);
  font-family: var(--font-round);
  font-weight: 500;
}

#top-menu .top-menu-btn-text-small {
  font-size: min(12px, 0.9vw);
  display: block;
  margin-top: 5px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  #top-menu .top-menu-title {
    font-size: 5vw;
  }

  #top-menu .top-menu-anchor-btn {
    font-size: 5vw;
    padding: 4vw 10vw 4vw 4vw;
  }

  #top-menu .top-menu-anchor-btn::before {
    right: 3vw;
  }

  #top-menu .top-menu-category-item {
    margin: 3vw auto;
  }

  #top-menu .top-menu-btn-text-small {
    font-size: 2vw;
  }

  #top-menu .top-menu-list {
    padding: 100px 12px 40px;
  }

  #top-menu .top-menu-list-item {
    width: 46%;
    aspect-ratio: 10 / 11;
  }

  #top-menu .top-menu-list-title {
    font-size: 6vw;
  }

  #top-menu .top-menu-list::before,
  #top-menu .top-menu-list::after {
    width: 35%;
  }

  #top-menu .top-menu-btn-text {
    font-size: 3.7vw;
    letter-spacing: 0.05em;
  }
}






/* #top-message */
#top-message {
  background-image: url('../img/top-message-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 0;
}

#top-message .section-inner {
  display: flex;
  justify-content: space-between;
}

#top-message .top-section-title-group {
  text-align: left;
}

#top-message .top-section-title {
  padding-left: 5px;
}

#top-message .top-message-content {
  width: 60%;
  padding: 40px;
}

#top-message .top-message-image-box {
  width: 35%;
  margin: 0 min(100px, 7.1vw);
  border-radius: var(--border-radius-full) var(--border-radius-full) 0 0;
  height: fit-content;
  position: relative;
}

#top-message .top-message-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-full) var(--border-radius-full) 0 0;
  box-shadow: 0px 4px 12.3px rgba(156, 156, 156, 0.25);
}

#top-message .top-message-title {
  font-size: min(24px, 1.7vw);
  color: var(--body-title-color);
  font-family: var(--font-round);
  font-weight: 500;
  margin-bottom: 30px;
}

#top-message .top-message-text {
  margin-bottom: 30px;
}

#top-message .top-message-doctor-name-box {
  position: absolute;
  bottom: 5%;
  left: -20%;
}

#top-message .top-message-doctor-title,
#top-message .top-message-doctor-name {
  color: #fff;
  background: #A5997B;
  border-radius: var(--border-radius-full);
  width: fit-content;
  padding: 8px 16px;
  font-family: var(--font-round);
  font-weight: 500;
}

#top-message .top-message-doctor-title {
  font-size: min(16px, 1.2vw);
  margin-bottom: 4px;
}

#top-message .top-message-doctor-name {
  font-size: min(24px, 1.7vw);
}

@media screen and (max-width: 767px) {
  #top-message .section-inner {
    flex-direction: column;
  }

  #top-message .top-message-content {
    display: contents;
  }

  #top-message .top-section-title-group {
    order: 1;
    text-align: center;
  }

  #top-message .top-message-image-box {
    order: 2;
    width: 80%;
    margin: 0 auto 30px;
  }

  #top-message .top-message-text-box {
    order: 3;
  }

  #top-message .top-message-image {
    aspect-ratio: 5 / 6;
    object-position: top;
  }

  #top-message .top-message-title {
    font-size: 6vw;
  }

  #top-message .top-message-doctor-name-box {
    bottom: 3%;
    left: -5%;
  }

  #top-message .top-message-doctor-title {
    font-size: 3.2vw;
  }

  #top-message .top-message-doctor-name {
    font-size: 5vw;
  }

  #top-message .top-btn-pink {
    margin: 0 auto;
    display: block;
  }
}