@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
  scroll-padding: 100px;
}

.is_pc {
  display: block !important;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none !important;
  }
}

.is_sp {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block !important;
  }
}

body {
  font-family: YakuHanMP, "Noto Serif", serif;
  color: #0A0500;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .u-pc {
    display: none !important;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .u-sp {
    display: block;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.right_fix {
  position: fixed;
  right: -35px;
  top: 180px;
  z-index: 9999;
}
@media screen and (max-width: 599px) {
  .right_fix {
    display: none;
  }
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
header
*************************************************/
header {
  width: 100%;
  padding: 10px 30px;
  position: fixed;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(10, 5, 0, 0.2);
  z-index: 100;
  height: 100px;
  left: 0;
  top: 0;
}
@media screen and (max-width: 599px) {
  header {
    display: none;
  }
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_inner .header_right .header_right_01 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
  justify-content: flex-end;
}
header .header_inner .header_right .header_right_01 p {
  font-size: 14px;
  padding: 5px 10px;
  color: #004071;
}
header .header_inner .header_right .header_right_01 p span {
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
header .header_inner .header_right .header_right_01 p span:before {
  position: absolute;
  content: "|";
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
header .header_inner .header_right .header_right_01 p span:first-child::before {
  content: none;
}
header .header_inner .header_right .header_right_01 a {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-family: "Cormorant Infant", serif;
  font-weight: 500;
}
header .header_inner .header_right .header_right_02 {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  color: #0a0500;
}
header .header_inner .header_right .header_right_02 li {
  position: relative;
}
header .header_inner .header_right .header_right_02 li:hover {
  color: #004071;
}
header .header_inner .header_right .header_right_02 li a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .header_inner .header_right .header_right_02 li a img {
  height: 20px;
  width: auto;
}
header .header_inner .header_right .header_right_02 .web {
  border-radius: 5px;
  background: #004071;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
}
header .header_inner .header_right .header_right_02 .web:hover {
  background: #ad916d;
  color: #fff;
}
header .header_inner .header_right .mega_menu {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .header_inner .header_right .mega_menu img {
  height: 20px;
  width: auto;
}
header .header_inner .header_right .mega_menu:hover .mega_menu_content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  left: -200px;
}
header .header_inner .header_right .mega_menu .mega_menu_content {
  position: absolute;
  top: 150%;
  left: 0%;
  width: 300px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 101;
}
header .header_inner .header_right .mega_menu .mega_menu_content:before {
  content: "";
  position: absolute;
  top: -10px;
  right: 50px;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
header .header_inner .header_right .mega_menu .mega_menu_content .mega_menu_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header .header_inner .header_right .mega_menu .mega_menu_content .mega_menu_list li {
  width: 100%;
}
header .header_inner .header_right .mega_menu .mega_menu_content .mega_menu_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}
header .header_inner .header_right .mega_menu .mega_menu_content .mega_menu_list li a:hover {
  background: #ebf5fc;
  color: #004071;
}
header .header_inner .header_right .mega_menu .mega_menu_content .mega_menu_list li a img {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}
header .header_inner .header_right .mega_menu .mega_menu_content .mega_menu_list li a:hover img {
  transform: translateX(5px);
}

.header_sp {
  display: none;
}

.sp_menu {
  display: none;
}

@media screen and (max-width: 599px) {
  .header_sp {
    display: block;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px 15px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgba(10, 5, 0, 0.2);
  }
  .header_sp a {
    display: block;
  }
  .header_sp a img {
    height: 40px;
    width: auto;
  }
  .header_sp .menu_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 40px;
    z-index: 1001;
  }
  .header_sp .menu_btn .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 16px;
    margin-bottom: 5px;
  }
  .header_sp .menu_btn .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000;
    transition: all 0.3s ease;
  }
  .header_sp .menu_btn p {
    font-size: 10px;
    line-height: 1;
    margin: 0;
    font-weight: normal;
  }
  .header_sp .menu_btn.active .hamburger {
    color: #fff !important;
  }
  .header_sp .menu_btn.active .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header_sp .menu_btn.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .header_sp .menu_btn.active .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .sp_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 1000;
    color: #fff;
    overflow-y: auto;
  }
  .sp_menu .close_btn {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
  }
  .sp_menu .close_btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 10px;
  }
  .sp_menu .close_btn span:first-child {
    transform: rotate(25deg);
  }
  .sp_menu .close_btn span:nth-child(2) {
    transform: rotate(-25deg);
  }
  .sp_menu .close_btn p {
    font-size: 10px;
    color: #fff;
    margin: 25px 0 0 0;
    padding: 0;
    font-weight: normal;
  }
  .sp_menu nav {
    padding: 70px 20px 40px;
  }
  .sp_menu nav ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }
  .sp_menu nav ul:first-child {
    margin-bottom: 45px;
  }
  .sp_menu nav ul li {
    max-width: 47%;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  }
  .sp_menu nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.7px;
  }
  .sp_menu nav ul li a:hover {
    color: #ad916d;
  }
  .sp_menu nav ul li a:hover img {
    opacity: 0.7;
  }
  .sp_menu nav ul li a img {
    width: 30px;
    height: auto;
  }
  .sp_menu nav p {
    font-size: 18px;
    color: #ad916d;
    padding-bottom: 5px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ad916d;
  }
  .sp_menu nav .contact {
    margin-top: 40px;
  }
  .sp_menu nav .contact .tel {
    display: block;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    border-radius: 5px;
    max-width: 300px;
    width: 100%;
    background: linear-gradient(180deg, #fff 60.51%, #eae4dc 100%);
    font-family: "Cormorant Infant";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    margin: 0 auto 10px;
    text-decoration: none;
  }
  .sp_menu nav .contact .tel p {
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.8px;
    gap: 8px;
    text-decoration: underline;
    margin: 0;
    padding: 0;
    border: none;
    font-size: 36px;
    color: #000;
  }
  .sp_menu nav .contact .tel p img {
    width: 24px;
    height: auto;
  }
  .sp_menu nav .contact .tel span {
    font-size: 13px;
    margin-top: 5px;
    font-family: "Noto Serif JP";
    font-weight: 600;
    display: block;
    color: #666;
  }
  .sp_menu nav .contact .line,
  .sp_menu nav .contact .web {
    max-width: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    background: linear-gradient(180deg, #fff 60.51%, #eae4dc 100%);
    padding: 15px 20px;
    margin: 0 auto 10px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #0a0500;
  }
}
.sp_fix {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp_fix {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 100;
  }
  .sp_fix ul {
    display: flex;
    gap: 5px;
    justify-content: space-between;
  }
  .sp_fix ul li a img {
    display: block;
    width: 100%;
  }
}

/*************************************************
footer
*************************************************/
footer {
  padding-top: 100px;
}
footer .section_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
}
@media screen and (max-width: 599px) {
  footer .section_inner {
    padding: 0 24px;
  }
}
footer .section_inner .clinic_overview {
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  footer .section_inner .clinic_overview {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  footer .section_inner .clinic_overview .logo {
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0 auto 20px;
  }
}
footer .section_inner .clinic_overview .clinic_overview_inner span {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  footer .section_inner .clinic_overview .clinic_overview_inner span {
    text-align: center;
    margin-bottom: 10px;
  }
}
footer .section_inner .clinic_overview .clinic_overview_inner .address {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  footer .section_inner .clinic_overview .clinic_overview_inner .address {
    font-size: 13px;
    text-align: center;
    justify-content: center;
  }
}
footer .section_inner .clinic_overview .clinic_overview_inner .tel {
  font-family: "Cormorant Infant";
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  footer .section_inner .clinic_overview .clinic_overview_inner .tel {
    text-align: center;
    margin-bottom: 20px;
  }
}
footer .section_inner .clinic_overview .point {
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 599px) {
  footer .section_inner .clinic_overview .point {
    justify-content: center;
  }
}
footer .section_inner .clinic_overview .point P {
  display: inline-block;
  padding: 4px 7px;
  background: #ad916d;
  color: #fff;
  height: fit-content;
}
footer .section_inner .gamap {
  margin-bottom: 42px;
}
footer .section_inner .gamap iframe {
  max-width: 1140px;
  width: 100%;
  height: 310px;
}
footer .section_inner .clinic_overview_02 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 140px;
}
@media screen and (max-width: 599px) {
  footer .section_inner .clinic_overview_02 {
    display: block;
    margin-bottom: 70px;
  }
}
footer .section_inner .contact {
  padding: 30px 0;
  width: 100%;
  background: #ad916d;
  box-shadow: 0px 0px 10px 0px rgba(10, 5, 0, 0.1);
}
footer .section_inner .contact h2 {
  text-align: center;
  margin-bottom: 25px;
}
footer .section_inner .contact .tel {
  display: block;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  border-radius: 5px;
  max-width: 300px;
  width: 100%;
  background: linear-gradient(180deg, #fff 60.51%, #eae4dc 100%);
  font-family: "Cormorant Infant";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  margin: 0 auto 10px;
}
footer .section_inner .contact .tel p {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1.8px;
  gap: 8px;
  text-decoration: underline;
}
footer .section_inner .contact .tel span {
  font-size: 13px;
  margin-top: 5px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  display: block;
}
footer .section_inner .contact .line, footer .section_inner .contact .web {
  max-width: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  background: linear-gradient(180deg, #fff 60.51%, #eae4dc 100%);
  padding: 15px 20px;
  margin: 0 auto 10px;
  font-size: 20px;
  font-weight: 500;
}
footer .inner {
  background-image: url(../images/footer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
footer .inner .footer_menu {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 599px) {
  footer .inner .footer_menu {
    padding: 60px 24px;
  }
}
footer .inner .footer_menu p {
  color: #ad916d;
  font-size: 18px;
  letter-spacing: 0.9px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid #ad916d;
  margin-bottom: 20px;
}
footer .inner .footer_menu ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer .inner .footer_menu ul:first-child {
  margin-bottom: 45px;
}
footer .inner .footer_menu ul li {
  max-width: 186px;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4156862745);
}
@media screen and (max-width: 599px) {
  footer .inner .footer_menu ul li {
    max-width: 47%;
  }
}
footer .inner .footer_menu ul li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  justify-content: space-between;
  padding: 0 5px;
  letter-spacing: 0.7px;
}
footer .inner .footer_menu ul li a:hover {
  color: #ad916d;
}
footer .inner .footer_menu ul li a:hover img {
  opacity: 0.7;
}
footer .inner small {
  display: block;
  text-align: center;
  padding-bottom: 60px;
}

.schedule-container {
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}
@media screen and (max-width: 599px) {
  .schedule-container {
    padding-top: 0;
    margin-bottom: 45px;
  }
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.schedule-table th,
.schedule-table td {
  text-align: center;
  padding: 15px 5px;
  border-bottom: 1px solid #e0d5c3;
}
.schedule-table th {
  background-color: #ad916d;
  color: #fff;
  font-weight: 700;
}
.schedule-table th:first-child {
  width: 90px;
  text-align: center;
}

.circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b39b72;
}

.triangle {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #0a0500;
}
.triangle.note-triangle {
  margin-right: 5px;
}

.dash {
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #999;
}

.notes {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 10px;
}

.note {
  border: 1px solid #e0d5c3;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  background-color: #fff;
}

@media (max-width: 480px) {
  .schedule-table th,
  .schedule-table td {
    padding: 8px 3px;
    font-size: 14px;
  }
  .schedule-table th:first-child {
    width: 70px;
  }
  .notes {
    font-size: 12px;
    justify-content: center;
  }
}
/*************************************************
navi
*************************************************/
/*************************************************
fv
*************************************************/
#fv {
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 599px) {
  #fv {
    padding-top: 17.9487179487vw;
    height: 181.0256410256vw;
  }
}
#fv .top_wrap {
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  border-radius: 3px;
  padding: 30px 50px 15px;
}
@media screen and (max-width: 599px) {
  #fv .top_wrap {
    padding: 0;
    width: 80%;
    padding: 15px;
  }
}
#fv .top_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(12px);
  z-index: -1;
}
#fv .top_wrap h1 {
  color: #333;
  text-align: center;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
  font-family: "Noto Serif JP";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 46.348px */
  letter-spacing: 1.287px;
}
@media screen and (max-width: 599px) {
  #fv .top_wrap h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
#fv .top_wrap img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
#fv .point_4 {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  left: 70px;
  bottom: 100px;
}
@media screen and (max-width: 599px) {
  #fv .point_4 {
    display: none;
  }
}
#fv .point_4 li {
  width: 83px;
  height: 83px;
}
#fv .point_4 li img {
  display: block;
  width: 100%;
}
#fv .point_2 {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  right: 110px;
  bottom: 30px;
}
@media screen and (max-width: 599px) {
  #fv .point_2 {
    display: none;
  }
}
#fv .point_2 li {
  width: 140px;
  height: 140px;
}
#fv .point_2 li img {
  display: block;
  width: 100%;
}
#fv .fv_point {
  position: absolute;
  left: 5.7638888889vw;
  top: 40.6944444444vw;
}
@media screen and (max-width: 599px) {
  #fv .fv_point {
    left: 6.1538461538vw;
    top: 146.1538461538vw;
    color: #fff;
  }
}
#fv .fv_point ul {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 599px) {
  #fv .fv_point ul li img {
    display: block;
    width: 70px;
  }
}
#fv .fv_point p {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #fv .fv_point p {
    font-size: 12px;
  }
}
#fv .slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#fv .slide {
  list-style: none;
  margin: 0;
  padding: 0;
}
#fv .slide li {
  position: relative;
  overflow: hidden;
}
#fv .slide li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}
@keyframes zoomOut {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
#fv .slick-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#fv .slick-slide.slick-current {
  opacity: 1;
}

/*************************************************
top news
*************************************************/
#top_news {
  transform: translateY(-40px);
}
@media screen and (max-width: 599px) {
  #top_news {
    transform: translateY(0);
    margin-bottom: 120px;
  }
}
#top_news .news_section {
  display: flex;
  max-width: 850px;
  width: 100%;
  height: 80px;
}
@media screen and (max-width: 599px) {
  #top_news .news_section {
    width: 100%;
    display: block;
  }
}
#top_news .news_section .news_left {
  max-width: 170px;
  width: 100%;
  background: #ad916d;
  color: #f4f4f2;
  padding: 15px 35px;
}
#top_news .news_section .news_left span {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}
#top_news .news_section .news_left h2 {
  font-size: 24px;
}
#top_news .news_section .news_right {
  display: flex;
  align-items: center;
  background: #f4f4f2;
  border-radius: 0 5px 5px 0;
  width: 100%;
  justify-content: space-between;
  padding-left: 60px;
  padding-right: 15px;
}
@media screen and (max-width: 599px) {
  #top_news .news_section .news_right {
    padding: 30px 0;
    padding-left: 35px;
    display: block;
    max-width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 599px) {
  #top_news .news_section .news_right .news_ttl {
    margin-bottom: 15px;
  }
}
#top_news .news_section .news_right .news_ttl .news_date {
  display: block;
  color: #bd8c4c;
  margin-bottom: 5px;
  font-family: Inter;
  font-size: 14px;
}
#top_news .news_section .news_right .btn_01 {
  display: flex;
  gap: 5px;
  align-items: center;
  transition: 0.5s;
}

/*************************************************
挨拶
*************************************************/
@media screen and (max-width: 599px) {
  #greeting {
    padding: 0 24px;
  }
}
#greeting .section_inner {
  padding-top: 100px;
  padding-bottom: 115px;
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner {
    padding-top: 60px;
    padding-bottom: 55px;
  }
}
#greeting .section_inner h2 {
  width: fit-content;
  margin: 0 auto 100px;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  #greeting .section_inner h2 img {
    height: 43px;
    width: auto;
  }
}
#greeting .section_inner .greeting_wrap {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap {
    display: block;
  }
}
#greeting .section_inner .greeting_wrap .greeting_left {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_left {
    margin-bottom: 30px;
  }
}
#greeting .section_inner .greeting_wrap .greeting_left img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_left img {
    max-width: 250px;
    margin: 0 auto;
  }
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name {
  max-width: 400px;
  width: 100%;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_left .doctor_name {
    max-width: 250px;
    margin: 20px auto;
    font-size: 14px;
  }
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name span {
  display: block;
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name .role {
  color: #858280;
  margin-bottom: 6px;
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name .name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  margin-bottom: 12px;
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name .name span {
  flex-shrink: 0;
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name .name .ja {
  font-size: 28px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_left .doctor_name .name .ja {
    font-size: 24px;
  }
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name .name .en {
  font-family: "Cormorant Infant", serif;
  font-size: 17px;
  color: #858280;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_left .doctor_name .name .en {
    font-size: 15px;
  }
}
#greeting .section_inner .greeting_wrap .greeting_left .doctor_name .license {
  display: inline-block;
  padding: 5px 8px;
  background-color: #ad916d;
  color: #fff;
  margin-bottom: 3px;
  margin-right: 3px;
}
#greeting .section_inner .greeting_wrap .greeting_right {
  padding-top: 10px;
}
#greeting .section_inner .greeting_wrap .greeting_right h3 {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_right h3 {
    font-size: 24px;
    text-align: center;
  }
}
#greeting .section_inner .greeting_wrap .greeting_right .greeting_right_text {
  margin-bottom: 40px;
}
#greeting .section_inner .greeting_wrap .greeting_right .greeting_right_text p {
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_right .greeting_right_text p {
    font-size: 15px;
    text-align: center;
    text-align: left;
  }
}
#greeting .section_inner .greeting_wrap .greeting_right .btn_02 {
  border-radius: 5px;
  background: #0a0500;
  color: #fff;
  max-width: 220px;
  width: 100%;
  height: 56px;
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 8px 8px 8px 20px;
  font-size: 15px;
  font-weight: 600;
}
#greeting .section_inner .greeting_wrap .greeting_right .btn_02:hover {
  transition: 0.5s;
  color: #0a0500;
  background: #fff;
  border: 1px solid #0a0500;
}
@media screen and (max-width: 599px) {
  #greeting .section_inner .greeting_wrap .greeting_right .btn_02 {
    margin: 0 auto;
  }
}

/*************************************************
特徴
*************************************************/
#features {
  background: linear-gradient(0deg, rgba(10, 5, 0, 0.67) 0%, rgba(10, 5, 0, 0.67) 100%), url("../images/feature_bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 599px) {
  #features {
    background-position: left -700px center;
  }
}
#features .section_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  #features .section_inner {
    padding: 60px 24px 80px;
  }
}
#features .section_inner h2 {
  width: fit-content;
  margin: 0 auto 100px;
}
@media screen and (max-width: 599px) {
  #features .section_inner h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  #features .section_inner h2 img {
    height: 78px;
    width: auto;
  }
}
#features .section_inner .features_wrap .features_content {
  margin-bottom: 100px;
  display: flex;
  gap: 24px;
}
#features .section_inner .features_wrap .features_content:last-child {
  margin-bottom: 0;
}
#features .section_inner .features_wrap .features_content.reverse_content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .features_content.reverse_content {
    flex-direction: column;
  }
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .features_content {
    margin-bottom: 60px;
    flex-direction: column;
    gap: 15px;
  }
}
#features .section_inner .features_wrap .image_wrap {
  flex-basis: 30.702%;
  min-width: 350px;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .image_wrap {
    width: 100%;
    max-width: 270px;
    min-width: 0;
    margin: 0 auto;
  }
}
#features .section_inner .features_wrap .image_wrap img {
  width: 100%;
  height: auto;
}
#features .section_inner .features_wrap .text_wrap {
  color: #fff;
  display: flex;
  flex-direction: column;
}
#features .section_inner .features_wrap .text_wrap .ttl_wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .text_wrap .ttl_wrap {
    gap: 8px;
    justify-content: center;
  }
}
#features .section_inner .features_wrap .text_wrap .ttl_wrap .num_wrap {
  font-family: "Cormorant Infant", serif;
  text-align: center;
}
#features .section_inner .features_wrap .text_wrap .ttl_wrap .num_wrap span {
  display: block;
}
#features .section_inner .features_wrap .text_wrap .ttl_wrap .num_wrap .ttl {
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#features .section_inner .features_wrap .text_wrap .ttl_wrap .num_wrap .num {
  margin-top: -0.15em;
  font-size: 96px;
  letter-spacing: 0.03em;
  transform: skewX(-12deg);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .text_wrap .ttl_wrap .num_wrap .num {
    font-size: 84px;
  }
}
#features .section_inner .features_wrap .text_wrap .ttl_wrap h3 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .text_wrap .ttl_wrap h3 {
    font-size: 24px;
  }
}
#features .section_inner .features_wrap .text_wrap .content_item {
  flex-grow: 1;
  margin-top: 11px;
  margin-left: 54px;
  border-left: 1px solid #fff;
  padding-left: 45px;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .text_wrap .content_item {
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
    border: none;
    text-align: center;
  }
}
#features .section_inner .features_wrap .text_wrap .content_item p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .text_wrap .content_item p {
    font-size: 15px;
    text-align: left;
  }
}
#features .section_inner .features_wrap .text_wrap .content_item .btn_02 {
  margin-top: 48px;
  border-radius: 5px;
  background: #947c5d;
  color: #fff;
  max-width: 240px;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 20px;
  font-size: 15px;
  font-weight: 600;
}
#features .section_inner .features_wrap .text_wrap .content_item .btn_02:hover {
  transition: 0.5s;
  color: #0a0500;
  background: #fff;
  border: 1px solid #0a0500;
}
@media screen and (max-width: 599px) {
  #features .section_inner .features_wrap .text_wrap .content_item .btn_02 {
    margin: 30px auto;
  }
}

/*************************************************
バナー
*************************************************/
#link {
  padding-top: 80px;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #link {
    padding: 0 20px;
    padding-top: 20px;
  }
}
#link .section_inner {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
}
#link .section_inner ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#link .section_inner ul li a {
  display: block;
}
#link .section_inner ul li a img {
  display: block;
  max-width: 390px;
  width: 100%;
}
#link .section_inner ul li a:hover {
  opacity: 0.7;
}

/*************************************************
症例
*************************************************/
#case .section_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
}
#case .section_inner h2 {
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 599px) {
  #case .section_inner h2 {
    width: 80%;
  }
  #case .section_inner h2 img {
    display: block;
    width: 100%;
  }
}
#case .section_inner ul li {
  margin-bottom: 20px;
}
#case .section_inner ul li img {
  width: 100%;
}
@media screen and (max-width: 599px) {
  #case .section_inner ul {
    padding: 0 24px;
  }
}

/*************************************************
診療メニュー
*************************************************/
#treatment {
  padding-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  #treatment {
    padding: 80px 24px 0;
  }
}
#treatment .section_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
}
#treatment .section_inner h2 {
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  #treatment .section_inner h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  #treatment .section_inner h2 img {
    width: 100%;
  }
}
#treatment .section_inner ul {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #treatment .section_inner ul {
    gap: 16px;
    flex-wrap: wrap;
  }
}
#treatment .section_inner ul li {
  border-top: 1px solid #ad916d;
}
@media screen and (max-width: 599px) {
  #treatment .section_inner ul li {
    flex-basis: 47%;
  }
}
#treatment .section_inner ul li a {
  padding-top: 12px;
  max-width: 220px;
  width: 100%;
  display: block;
  color: #ad916d;
}
@media screen and (max-width: 599px) {
  #treatment .section_inner ul li a {
    max-width: 100%;
  }
}
#treatment .section_inner ul li a .treatment_ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
#treatment .section_inner ul li a .treatment_ttl img {
  width: 38px;
}
#treatment .section_inner ul li a .treatment_img {
  width: 220px;
  height: 220px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  #treatment .section_inner ul li a .treatment_img {
    width: 100%;
    height: 1005;
  }
}
#treatment .section_inner ul li a .treatment_img img {
  display: block;
  width: 100%;
}
#treatment .section_inner ul li a .treatment_img img:hover {
  transition: 0.5s;
  scale: 1.1;
}
#treatment .section_inner .is_pc_menu {
  display: flex;
}
@media screen and (max-width: 599px) {
  #treatment .section_inner .is_pc_menu {
    display: none;
  }
}

/*************************************************
医院紹介
*************************************************/
#top_clinic {
  display: flex;
  align-items: center;
  width: 100%;
  height: 515px;
}
@media screen and (max-width: 599px) {
  #top_clinic {
    display: block;
    background-image: url(../images/top_clinic_sp.png);
    background-size: cover;
    height: auto;
    padding-bottom: 60px;
  }
}
#top_clinic .top_clinic_left {
  flex-basis: 50%;
}
#top_clinic .top_clinic_left img {
  display: block;
  width: 100%;
}
#top_clinic .top_clinic_right {
  padding: 80px 180px 80px 80px;
  flex-basis: 50%;
  height: 100%;
  background-image: url(../images/top_clinic_right.png);
  background-size: cover;
}
@media screen and (max-width: 599px) {
  #top_clinic .top_clinic_right {
    padding: 0 24px;
    background-image: none;
    height: auto;
  }
}
#top_clinic .top_clinic_right h2 {
  color: #ad916d;
  font-size: 36px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #top_clinic .top_clinic_right h2 {
    font-size: 24px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    backdrop-filter: blur(5px);
    padding: 12px 0;
    transform: translateY(-30px);
    margin-bottom: 20px;
  }
}
#top_clinic .top_clinic_right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #top_clinic .top_clinic_right p {
    font-size: 15px;
    text-align: left;
  }
}
#top_clinic .top_clinic_right .btn_02 {
  border-radius: 5px;
  background: #0a0500;
  color: #fff;
  max-width: 220px;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 20px;
  font-size: 15px;
  font-weight: 600;
}
#top_clinic .top_clinic_right .btn_02:hover {
  transition: 0.5s;
  color: #0a0500;
  background: #fff;
  border: 1px solid #0a0500;
}
@media screen and (max-width: 599px) {
  #top_clinic .top_clinic_right .btn_02 {
    margin: 0 auto;
  }
}

/*************************************************
下層ヘッダー
*************************************************/
#under_fv {
  padding-top: 100px;
}
@media screen and (max-width: 599px) {
  #under_fv {
    padding-top: 17.9487179487vw;
  }
}
#under_fv .under_section_inner {
  background-image: url(../images/under_bg.png);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 380px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #under_fv .under_section_inner {
    height: 170px;
  }
}
#under_fv .under_section_inner h1 {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  #under_fv .under_section_inner h1 {
    font-size: 18px;
  }
}
#under_fv .under_section_inner h1 span {
  position: absolute;
  color: rgba(231, 191, 139, 0.1);
  font-family: "Cormorant Infant";
  font-size: 90px;
  font-weight: 400;
  letter-spacing: 1.62px;
  mix-blend-mode: plus-lighter;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px) {
  #under_fv .under_section_inner h1 span {
    font-size: 54px;
  }
}

/*************************************************
下層コンテンツ
*************************************************/
.clinic {
  margin-top: 40px;
}

#under_section .under_section_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
  /* スマホ表示用のサムネイル調整 */
  /* モバイル対応の追加スタイル */
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner {
    padding: 0 24px;
  }
}
#under_section .under_section_inner h2 {
  text-align: center;
}
#under_section .under_section_inner h2 .en {
  display: block;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: "Cormorant Infant";
  font-weight: 400;
  color: #ad916d;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner h2 .en {
    font-size: 14px;
  }
}
#under_section .under_section_inner h2 .ja {
  display: inline-block;
  padding: 8px 20px;
  background-color: #947c5d;
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner h2 .ja {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
#under_section .under_section_inner h3 {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-left: 5px;
  margin-bottom: 30px;
}
#under_section .under_section_inner h3::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  background-color: #ad916d;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#under_section .under_section_inner .sub_ttl {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .sub_ttl {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
#under_section .under_section_inner .sub_ttl span {
  color: #004071;
}
#under_section .under_section_inner .point_text {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .point_text {
    text-align: left;
  }
}
#under_section .under_section_inner .point_text:last-child {
  margin-bottom: 0;
}
#under_section .under_section_inner h4 {
  color: #ad916d;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin: 30px auto;
}
#under_section .under_section_inner h4 span {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}
#under_section .under_section_inner .clinic_table {
  max-width: 940px;
  width: 100%;
  margin: 60px auto;
  display: block;
}
#under_section .under_section_inner .clinic_table tbody {
  display: block;
}
#under_section .under_section_inner .clinic_table tbody tr {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody tr {
    display: block;
  }
}
#under_section .under_section_inner .clinic_table tbody tr th {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  color: #fff;
  background-color: #ad916d;
  padding: 15px 0;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody tr th {
    width: 100%;
  }
}
#under_section .under_section_inner .clinic_table tbody tr td {
  width: 75%;
  display: block;
  padding: 15px 45px;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody tr td {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
}
#under_section .under_section_inner .clinic_table tbody tr td span {
  display: block;
  font-size: 14px;
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic {
  align-items: flex-start;
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td {
  padding-top: 0;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody .schedule_clinic td {
    padding: 0;
  }
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-container {
  padding-top: 0;
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table tr {
    display: flex;
    margin-bottom: 0;
  }
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table th,
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table td {
  text-align: center;
  padding: 15px 5px;
  border-bottom: 1px solid #e0d5c3;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table th,
  #under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table td {
    padding: 8px 3px;
    font-size: 14px;
    display: block;
  }
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table th {
  background: #eae4dc;
  color: #0a0500;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table th {
    font-size: 12px;
  }
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table th:first-child {
  text-align: center;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table th:first-child {
    max-width: 80px;
  }
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table .time td {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 67px;
}
#under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table .time td:first-child {
  text-align: center;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .clinic_table tbody .schedule_clinic td .schedule-table .time td {
    padding: 8px 3px;
  }
}
#under_section .under_section_inner .clinic_table tbody .notes span {
  display: inline-block;
}
#under_section .under_section_inner .gamap {
  margin: 40px auto;
}
#under_section .under_section_inner .gamap p {
  text-align: center;
  margin: 15px auto;
}
#under_section .under_section_inner .gamap iframe {
  max-width: 1140px;
  width: 100%;
  height: 310px;
}
#under_section .under_section_inner .gallery-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  /* メインスライダー */
  /* サムネイルスライダー */
}
#under_section .under_section_inner .gallery-container .main-slider {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
#under_section .under_section_inner .gallery-container .main-slider .main-swiper {
  width: 100%;
  /* ナビゲーションボタン */
}
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-slide {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-slide {
    height: 250px;
  }
}
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-next,
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(173, 145, 109, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-next:after,
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-prev:after {
  font-size: 20px;
}
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-next:hover,
#under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-prev:hover {
  background: rgba(173, 145, 109, 0.9);
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-next,
  #under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-next:after,
  #under_section .under_section_inner .gallery-container .main-slider .main-swiper .swiper-button-prev:after {
    font-size: 16px;
  }
}
#under_section .under_section_inner .gallery-container .thumb-slider {
  padding: 0 40px;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  /* サムネイルナビゲーションボタン */
  /* サムネイルスワイパー */
}
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-next,
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-prev {
  color: #fff;
  background: rgba(173, 145, 109, 0.7);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-next:after,
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-prev:after {
  font-size: 16px;
}
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-next:hover,
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-prev:hover {
  background: rgba(173, 145, 109, 0.9);
}
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-next {
  right: 5px;
}
#under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-prev {
  left: 5px;
}
#under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
#under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper {
  display: flex;
  justify-content: center;
}
#under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper .swiper-slide {
  width: 130px !important;
  height: 80px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  border: 2px solid transparent;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper .swiper-slide {
    width: 90px !important;
    height: 60px;
    margin-right: 5px;
  }
}
#under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #ad916d;
}
#under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .gallery-container .thumb-slider {
    padding: 0 !important; /* スマホでは左右のパディングをなくす */
    overflow: visible; /* はみ出しを許可 */
    /* サムネイルナビゲーションボタンを非表示 */
  }
  #under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-next,
  #under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-prev {
    display: none;
  }
  #under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper {
    max-width: 100%; /* 幅を最大に */
  }
  #under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper {
    flex-wrap: wrap; /* 折り返し可能に */
    justify-content: flex-start; /* 左寄せ */
  }
  #under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper .swiper-slide {
    height: 60px;
    margin-right: 8px;
    margin-bottom: 8px;
    /* 4つ目ごとの要素は右マージンなし */
  }
  #under_section .under_section_inner .gallery-container .thumb-slider .thumb-swiper .swiper-wrapper .swiper-slide:nth-child(4n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #under_section .under_section_inner .gallery-container .thumb-slider {
    padding: 0 30px;
  }
  #under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-next,
  #under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-prev {
    width: 25px;
    height: 25px;
  }
  #under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-next:after,
  #under_section .under_section_inner .gallery-container .thumb-slider .swiper-button-prev:after {
    font-size: 14px;
  }
}
#under_section .under_section_inner .staff_box {
  background-color: #fff;
  padding: 60px 0;
  margin-bottom: 60px;
}
#under_section .under_section_inner .staff_box .joshu {
  justify-content: space-around;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .dh_staff .staff_left {
    display: flex;
  }
  #under_section .under_section_inner .staff_box .dh_staff .staff_left .doctor_name {
    margin: 20px 0;
    width: 50% !important;
  }
  #under_section .under_section_inner .staff_box .dh_staff .staff_left .doctor_name .name {
    flex-direction: column;
  }
  #under_section .under_section_inner .staff_box .dh_staff .staff_left .staff_right {
    width: 50% !important;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap {
  display: flex;
  max-width: 940px;
  width: 100%;
  margin: 60px auto;
  gap: 80px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_left {
    margin-bottom: 30px;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left img {
  display: block;
  width: 250px;
  height: 322px;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_left img {
    width: 80%;
    margin: 0 auto;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name {
  max-width: 250px;
  width: 100%;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
  width: 80%;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name {
    margin: 20px auto;
    font-size: 14px;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name span {
  display: block;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .role {
  color: #858280;
  margin-bottom: 6px;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  margin-bottom: 12px;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .name span {
  flex-shrink: 0;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .name .ja {
  font-size: 28px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .name .ja {
    font-size: 24px;
    text-align: left;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .name .en {
  font-family: "Cormorant Infant", serif;
  font-size: 17px;
  color: #858280;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .name .en {
    font-size: 15px;
    text-align: left;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_left .doctor_name .license {
  display: inline-block;
  padding: 5px 8px;
  background-color: #ad916d;
  color: #fff;
  margin-bottom: 3px;
  margin-right: 3px;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right p {
  font-size: 20px;
  color: #ad916d;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_right p {
    text-align: center;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right table {
  display: block;
  margin-bottom: 30px;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody {
  display: block;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody tr {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody tr {
    display: block;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody tr th {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  color: #0a0500;
  background-color: #eae4dc;
  padding: 10px 0;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody tr th {
    width: 100%;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody tr td {
  width: 75%;
  display: block;
  padding: 10px 45px;
  letter-spacing: 0.05rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody tr td {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right table tbody tr td span {
  display: block;
  font-size: 14px;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right .gakkai_ttl {
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ad916d;
}
#under_section .under_section_inner .staff_box .staff_wrap .staff_right .gakkai {
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .staff_box .staff_wrap .staff_right .gakkai {
    text-align: center;
  }
}
#under_section .under_section_inner .treatment_wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .treatment_wrap {
    display: block;
  }
}
#under_section .under_section_inner .treatment_wrap img {
  display: block;
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .treatment_wrap img {
    max-width: 230px;
    margin: 0 auto 30px;
  }
}
#under_section .under_section_inner .treatment_wrap .treatment_text p {
  line-height: 1.7;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .treatment_wrap .treatment_text p {
    text-align: left;
    font-size: 14px;
  }
}
#under_section .under_section_inner .treatment_wrap .treatment_text p span {
  font-weight: 600;
  color: #004071;
}
#under_section .under_section_inner .point_img {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 30px;
}
#under_section .under_section_inner .treatment_img {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .treatment_img {
    max-width: 230px;
    margin-bottom: 30px;
  }
}
#under_section .under_section_inner .progress {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 30px auto 0px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .progress {
    display: block;
  }
}
#under_section .under_section_inner .progress li {
  flex: 1;
  min-width: calc(25% - 15px);
  max-width: calc(25% - 15px);
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .progress li {
    max-width: 100%;
    min-width: 100%;
  }
}
#under_section .under_section_inner .progress li img {
  display: block;
  max-width: 160px;
  width: 100%;
  margin: 0 auto 15px;
}
#under_section .under_section_inner .progress li p {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 15px;
}
#under_section .under_section_inner .progress li p:last-child {
  margin-bottom: 0;
}
#under_section .under_section_inner .progress li span {
  font-size: 15px;
  font-weight: 700;
  color: #ad916d;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
#under_section .under_section_inner .progress.rp_flow h3 {
  width: fit-content;
  margin: 0 auto 30px;
}
#under_section .under_section_inner .progress.items_3 li {
  min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .progress.items_3 li {
    max-width: 100%;
    min-width: 100%;
  }
}
#under_section .under_section_inner .progress.items_2 li {
  min-width: calc(50% - 10px);
  max-width: calc(50% - 10px);
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .progress.items_2 li {
    max-width: 100%;
    min-width: 100%;
  }
}
#under_section .under_section_inner .progress.items_1 li {
  min-width: calc(100% - 10px);
  max-width: calc(100% - 10px);
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .progress.items_1 li {
    max-width: 100%;
    min-width: 100%;
  }
}
#under_section .under_section_inner .progress .gbr img {
  height: 160px;
  width: auto;
  max-width: 100%;
}
#under_section .under_section_inner .flow {
  background-color: #eae4dc;
  display: flex;
  justify-content: center;
  gap: 60px;
  width: 100%;
  margin: 0 auto 0px;
  flex-wrap: wrap;
}
#under_section .under_section_inner .flow li {
  position: relative;
  margin-bottom: 30px;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .flow li {
    max-width: 100%;
  }
}
#under_section .under_section_inner .flow li::after {
  content: url(../images/next.svg);
  position: absolute;
  top: 30%;
  right: -40px;
  transform: rotate(-90deg);
  width: fit-content;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .flow li::after {
    bottom: -40px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
#under_section .under_section_inner .flow li:last-child::after {
  content: none;
}
#under_section .under_section_inner .flow li img {
  display: block;
  max-width: 160px;
  width: 100%;
  margin: 0 auto 5px;
}
#under_section .under_section_inner .flow li span {
  color: #ad916d;
  font-size: 16px;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
#under_section .under_section_inner .flow li h5 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}
#under_section .under_section_inner .flow li p {
  line-height: 1.6;
  font-size: 14px;
  text-align: center;
}
#under_section .under_section_inner .implant_flow li {
  max-width: 190px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .implant_flow li {
    max-width: 100%;
  }
}
#under_section .under_section_inner .under_img {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
#under_section .under_section_inner .content_box {
  margin: 30px 0;
}
#under_section .under_section_inner .content_box h2 {
  color: #fff;
  background-color: #ad916d;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  margin-bottom: 30px;
}
#under_section .under_section_inner .content_box img {
  display: block;
  display: block;
  max-width: 160px;
  width: 100%;
  margin: 0 auto 10px;
}
#under_section .under_section_inner .content_box img.lemella_02 {
  margin: 20px auto;
}
#under_section .under_section_inner .content_box p {
  line-height: 1.6;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .content_box p {
    text-align: left;
  }
}
#under_section .under_section_inner .content_box .case_flow li {
  margin-bottom: 30px;
}
#under_section .under_section_inner .content_box .case_flow li:last-child {
  margin-bottom: 0;
}
#under_section .under_section_inner .content_box .case_flow li span {
  display: block;
  text-align: center;
  color: #004071;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .content_box .case_flow li span {
    text-align: left;
  }
}
#under_section .under_section_inner .content_box .before_shindan_img img {
  margin-top: 10px;
  max-width: 450px;
}
#under_section .under_section_inner .content_box .before_shindan {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#under_section .under_section_inner .content_box .before_shindan img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
#under_section .under_section_inner .disc {
  width: fit-content;
  display: block;
  margin: 0 auto 40px;
  list-style-type: disc;
  font-size: 14px;
}
#under_section .under_section_inner .disc li {
  margin-bottom: 5px;
  line-height: 1.6;
  max-width: 100% !important;
  min-width: 100% !important;
}
#under_section .under_section_inner .disc li span {
  font-weight: 600;
  color: #004071;
  text-align: left;
  display: inline;
}
#under_section .under_section_inner .disc li::marker {
  color: #ad916d;
  font-size: 0.8em;
}
#under_section .under_section_inner .check {
  width: fit-content;
  display: block;
  margin: 0 auto 40px;
  font-size: 14px;
}
#under_section .under_section_inner .check li {
  padding-left: 1em;
  margin-bottom: 5px;
}
#under_section .under_section_inner .check li::before {
  content: url(../images/check_icon.svg);
  margin-right: 5px;
}
#under_section .under_section_inner .check_round {
  width: fit-content;
  display: block;
  margin: 0 auto 40px;
  font-size: 14px;
  background-color: #e0d5c3;
  padding: 20px;
}
#under_section .under_section_inner .check_round li {
  padding: 0.5em 1em 0.5em 2.5em;
  margin-bottom: 5px;
  background-color: #fafafa;
  border-radius: 3px;
  position: relative;
}
#under_section .under_section_inner .check_round li::before {
  content: url(../images/check_icon_round.svg);
  margin-right: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0.35em;
  left: 0.5em;
}
#under_section .under_section_inner .check_round_pink {
  width: fit-content;
  display: block;
  margin: 0 auto 40px;
  font-size: 14px;
  background-color: #ecdfe4;
  padding: 20px;
}
#under_section .under_section_inner .check_round_pink li {
  padding: 0.5em 1em 0.5em 2.5em;
  margin-bottom: 5px;
  background-color: #fafafa;
  border-radius: 3px;
  position: relative;
}
#under_section .under_section_inner .check_round_pink li::before {
  content: url(../images/check_icon_pink_round.svg);
  margin-right: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0.35em;
  left: 0.5em;
}
#under_section .under_section_inner .cross_round {
  width: fit-content;
  display: block;
  margin: 0 auto 40px;
  font-size: 14px;
  background-color: #ebf5fc;
  padding: 20px;
}
#under_section .under_section_inner .cross_round li {
  padding: 0.5em 1em 0.5em 2.5em;
  margin-bottom: 5px;
  background-color: #fafafa;
  border-radius: 3px;
  position: relative;
}
#under_section .under_section_inner .cross_round li::before {
  content: url(../images/cross_icon.svg);
  margin-right: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0.35em;
  left: 0.5em;
}
#under_section .under_section_inner .bg_white {
  background-color: #fff;
  padding: 60px 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .bg_white {
    padding: 40px 20px;
  }
}
#under_section .under_section_inner .bg_white .red {
  color: red;
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
#under_section .under_section_inner .bg_white .mb_0 {
  margin-bottom: 0;
}
#under_section .under_section_inner .bg_white .comprehensive_ex li img {
  max-width: 400px;
}
#under_section .under_section_inner .bg_beige {
  background-color: #eae4dc;
  padding: 60px 100px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .bg_beige {
    padding: 40px 20px;
  }
}
#under_section .under_section_inner .img_txt_wrap {
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .img_txt_wrap {
    padding-top: 200px;
  }
}
#under_section .under_section_inner .img_txt_wrap .bg_white {
  width: 63%;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .img_txt_wrap .bg_white {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
#under_section .under_section_inner .img_txt_wrap .image_wrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50%;
}
#under_section .under_section_inner .img_txt_wrap .image_wrap img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 599px) {
  #under_section .under_section_inner .img_txt_wrap .image_wrap {
    width: 100%;
  }
}
#under_section .under_section_inner .img_txt_wrap.reverse_wrap .bg_white {
  margin-left: auto;
}
#under_section .under_section_inner .img_txt_wrap.reverse_wrap .image_wrap {
  left: 0;
}

.under_bg {
  background-image: url(../images/features_bg.png);
  background-size: cover;
  padding: 60px 0;
}

.treatment-comparison {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  overflow-x: auto;
}
.treatment-comparison .comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-size: 16px;
}
.treatment-comparison .comparison-table thead th {
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}
.treatment-comparison .comparison-table thead th.feature {
  background-color: #ecdfe4;
  width: 20%;
}
.treatment-comparison .comparison-table thead th.roma-pink {
  background-color: #ad6d86;
}
.treatment-comparison .comparison-table thead th.art-make {
  background-color: #ad6d86;
}
.treatment-comparison .comparison-table tbody th {
  background-color: #ecdfe4;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ddd;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .treatment-comparison .comparison-table tbody th {
    writing-mode: vertical-rl;
  }
}
.treatment-comparison .comparison-table tbody td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}
.treatment-comparison .comparison-table tbody tr {
  background-color: #fff;
}
.treatment-comparison .comparison-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.case {
  background-color: #004071;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .case {
    padding: 8px 10px;
  }
}
.case .en {
  flex-shrink: 0;
  display: inline-block;
  padding: 3px 10px;
  background-color: #fff;
  font-family: "Cormorant Infant", serif;
  font-size: 20px;
  font-weight: 700;
  color: #004071;
  margin-right: 20px;
  border-radius: 3px;
}
@media screen and (max-width: 599px) {
  .case .en {
    font-size: 16px;
  }
}
.case .ja {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .case .ja {
    font-size: 20px;
  }
}

.case_wrap {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.case_wrap li {
  max-width: 50%;
}
@media screen and (max-width: 599px) {
  .case_wrap li {
    max-width: 100%;
  }
}
.case_wrap li p {
  font-size: 16px;
  font-weight: 600;
  color: #004071;
  text-align: center;
  margin-bottom: 20px;
}
.case_wrap li img {
  width: 100%;
  height: auto;
}

.accordion {
  border: 1px solid #947c5d;
  width: 100%;
  max-width: 800px;
  margin: 20px auto 60px;
}
.accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px;
  background: #f5f5f5;
  font-size: 1.2em;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .accordion .accordion-header {
    padding: 8px 10px;
  }
}
.accordion .accordion-header .plus {
  font-size: 1.5em;
  transition: transform 0.2s;
}
.accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
  background: #fff;
}
@media screen and (max-width: 599px) {
  .accordion .accordion-content {
    padding: 0 10px;
  }
}
.accordion .accordion-content .content_box {
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fafafa;
}
@media screen and (max-width: 599px) {
  .accordion .accordion-content .content_box {
    padding: 6px;
  }
}
.accordion .accordion-content .content_box h2 {
  margin: 10px 0 !important;
}
.accordion .accordion-content .content_box p {
  font-size: 15px;
}
.accordion .accordion-header.open + .accordion-content {
  max-height: 700px;
  padding: 16px;
}
@media screen and (max-width: 599px) {
  .accordion .accordion-header.open + .accordion-content {
    padding: 10px;
  }
}

#romapink {
  margin-bottom: 100px;
}

.ronapink .pink_bg {
  padding: 60px 0 40px;
  background: #f6e0dd;
  margin-bottom: 60px;
}
.ronapink .pink_bg .pink .en {
  color: #ad6d86 !important;
}
.ronapink .pink_bg .pink .ja {
  background-color: #ad6d86 !important;
}
.ronapink .under_section_inner .rp_content_box img {
  display: block;
  max-width: 400px !important;
  width: 100%;
}
.ronapink .under_section_inner .rp_content_box .pink_h2 {
  color: #fff;
  background-color: #ad6d86 !important;
}
.ronapink .under_section_inner .pink .en {
  color: #ad6d86 !important;
}
.ronapink .under_section_inner .pink .ja {
  background-color: #ad6d86 !important;
}
.ronapink .under_section_inner .disc li::marker {
  color: #ad6d86 !important;
}
.ronapink .under_section_inner .check li::before {
  content: url(../images/check_icon_pink.svg) !important;
}
.ronapink .under_section_inner .bg_warmpink {
  margin: 20px auto;
  max-width: 600px;
  padding: 20px;
  background-color: #ecdfe4;
}
.ronapink .under_section_inner .bg_warmpink p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #ad6d86;
}

.romapink_table {
  max-width: 600px;
  display: block;
  width: 100%;
  margin: 0 auto 30px;
}

.art_link {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 120px 0;
}
@media screen and (max-width: 599px) {
  .art_link {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .art_link li {
    margin-bottom: 15px;
  }
}
.art_link li a {
  display: block;
  background-color: #ad6d86;
  color: #fff;
  font-size: 20px;
  padding: 10px 30px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .art_link li a {
    font-size: 14px;
  }
}
.art_link li a:hover {
  opacity: 0.7;
}

.lemella_bg {
  background: #f6e0dd;
  padding: 60px 15px 40px;
  margin-bottom: 60px;
  margin-top: 20px;
}
.lemella_bg .pink .en {
  color: #ad6d86 !important;
}
.lemella_bg .pink .ja {
  background-color: #ad6d86 !important;
}
.lemella_bg h3 {
  margin: 30px 0 0;
}

.lemella_02 {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 20px auto;
}

.lemella_03 {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.lemella_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.lemella_list li {
  width: 180px;
  height: 180px;
  background-color: #fff;
  border: 1px solid #ad6d86;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .lemella_list li {
    width: 120px;
    height: 120px;
  }
}
.lemella_list li .num {
  font-family: "Cormorant Infant", serif;
  font-size: 32px;
  font-weight: 700;
  color: #ad6d86;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #ad6d86;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .lemella_list li .num {
    font-size: 24px;
  }
}
.lemella_list li .txt {
  font-size: 16px;
  color: #ad6d86;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .lemella_list li .txt {
    font-size: 14px;
  }
}

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

.price_table {
  display: block;
  margin: 30px auto;
  max-width: 600px;
  margin: 30px auto;
}
.price_table tbody {
  display: block;
}
.price_table tbody tr {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .price_table tbody tr {
    display: block;
  }
}
.price_table tbody tr th {
  font-weight: 500;
  display: block;
  background-color: #d9d9d9;
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .price_table tbody tr th {
    padding: 5px;
    margin-bottom: 10px;
  }
}
.price_table tbody tr td {
  display: block;
}
@media screen and (max-width: 599px) {
  .price_table tbody tr td {
    text-align: right;
    font-size: 14px;
  }
}
.price_table tbody tr td span {
  font-size: 12px;
}

.consent {
  background-color: #004071;
  color: #fff;
  display: block;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  margin: 30px auto;
}
.consent:hover {
  opacity: 0.7;
}

/*************************************************
ニュース
*************************************************/
@media screen and (max-width: 599px) {
  .news {
    padding: 0 20px;
  }
}
.news .news_section_inner {
  max-width: 900px;
  width: 100%;
  margin: 100px auto;
}
.news .news_section_inner .news_list li {
  padding-bottom: 15px;
  border-bottom: 1px solid #ad916d;
  margin-bottom: 15px;
}
.news .news_section_inner .news_list li a {
  display: block;
}
.news .news_section_inner .news_list li a .date_tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.news .news_section_inner .news_list li a .date_tag .tag {
  display: block;
  padding: 5px 10px;
  background-color: #ad916d;
  color: #fff;
  font-size: 14px;
  width: fit-content;
}
.news .news_section_inner .news_list li a .date_tag .date {
  font-family: Inter;
  font-size: 14px;
  color: #bd8c4c;
}
.news .news_section_inner .news_list li a p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news .news_section_inner .news_list li a:hover {
  opacity: 0.6;
}
.news .news_section_inner .news_ttl {
  padding-bottom: 15px;
  border-bottom: 1px solid #ad916d;
  margin-bottom: 15px;
}
.news .news_section_inner .news_ttl .date {
  font-family: Inter;
  font-size: 16px;
  color: #bd8c4c;
  display: block;
  margin-bottom: 10px;
}
.news .news_section_inner .news_ttl h2 {
  font-size: 28px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .news .news_section_inner .news_ttl h2 {
    font-size: 22px;
  }
}
.news .news_section_inner .news_text p {
  line-height: 1.6;
}
.news .news_section_inner .btn_02 {
  border-radius: 5px;
  background: #0a0500;
  color: #fff;
  max-width: 220px;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 20px;
  font-size: 15px;
  font-weight: 600;
  margin: 60px auto;
}
.news .news_section_inner .btn_02:hover {
  transition: 0.5s;
  color: #0a0500;
  background: #fff;
  border: 1px solid #0a0500;
}
@media screen and (max-width: 599px) {
  .news .news_section_inner .btn_02 {
    margin: 0 auto;
  }
}

/*************************************************
お問い合わせ
*************************************************/
#contact .contact_top {
  margin: 60px auto;
}
@media screen and (max-width: 599px) {
  #contact .contact_top {
    padding: 0 20px;
  }
}
#contact .contact_top h2 {
  text-align: center;
  font-size: 22px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #contact .contact_top h2 {
    font-size: 18px;
  }
}
#contact .contact_top .thanks {
  margin: 60px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}
#contact .contact_top .tel_box {
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  background: #ad916d;
  color: #fff;
  max-width: 640px;
  padding: 50px 55px;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  #contact .contact_top .tel_box {
    flex-direction: column;
    gap: 30px;
  }
}
#contact .contact_top .tel_box a {
  display: block;
  font-family: "Times New Roman";
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
#contact .contact_top .tel_box a span {
  display: block;
  font-size: 12px;
}
#contact .contact_top .tel_box a:hover {
  opacity: 0.7;
}
#contact .contact_form {
  background: #efedeb;
  padding: 60px 0;
}
#contact .contact_form h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
}
#contact .contact_form p {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #contact .contact_form p {
    padding: 0 20px;
  }
}
#contact .contact_form table {
  display: block;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  #contact .contact_form table {
    padding: 0 20px;
  }
}
#contact .contact_form table tbody {
  display: block;
}
#contact .contact_form table tbody tr {
  display: block;
  align-items: center;
  margin-bottom: 30px;
}
#contact .contact_form table tbody tr th {
  display: flex;
  font-weight: 400;
  margin-bottom: 8px;
}
#contact .contact_form table tbody tr th span {
  background: #ad916d;
  display: block;
  padding: 3px 8px;
  color: #fff;
  margin-right: 8px;
  font-size: 12px;
}
#contact .contact_form table tbody tr td {
  width: 100%;
  display: block;
  background-color: #fff;
  margin-bottom: 10px;
}
#contact .contact_form table tbody tr td input[type=text],
#contact .contact_form table tbody tr td input[type=email],
#contact .contact_form table tbody tr td input[type=tel],
#contact .contact_form table tbody tr td input[type=date],
#contact .contact_form table tbody tr td textarea,
#contact .contact_form table tbody tr td select,
#contact .contact_form table tbody tr td input[type=file] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background-color: #fafafa;
}
#contact .contact_form table tbody tr td input[type=text]:focus,
#contact .contact_form table tbody tr td input[type=email]:focus,
#contact .contact_form table tbody tr td input[type=tel]:focus,
#contact .contact_form table tbody tr td input[type=date]:focus,
#contact .contact_form table tbody tr td textarea:focus,
#contact .contact_form table tbody tr td select:focus,
#contact .contact_form table tbody tr td input[type=file]:focus {
  border-color: #888;
  outline: none;
  background-color: #fff;
}
#contact .contact_form table tbody tr td textarea {
  resize: vertical;
  min-height: 120px;
}
#contact .contact_form button {
  display: block;
  border-radius: 36px;
  background: #ad916d;
  width: 220px;
  padding: 16px 0px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}
#contact .contact_form button input[type=submit] {
  text-align: center;
  display: block;
  width: 100%;
}
#contact .contact_form button .wpcf7-spinner {
  display: none;
}
#contact .contact_form button:hover {
  color: #ad916d;
  background-color: #fff;
  border: 1px solid #ad916d;
}
#contact .contact_form .wpcf7 .wpcf7-not-valid {
  border-color: #e74c3c !important;
}
#contact .contact_form .wpcf7 .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}
#contact .contact_form .wpcf7 .wpcf7-response-output {
  margin: 30px auto 0;
  padding: 15px;
  text-align: center;
  max-width: 640px;
  border-radius: 4px;
}
#contact .contact_form .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
#contact .contact_form .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
#contact .contact_form .wpcf7 .wpcf7-spinner {
  display: none;
}
#contact .contact_form .wpcf7 input[type=submit] {
  display: block;
  border-radius: 36px;
  background: #ad916d;
  width: 220px;
  padding: 16px 0px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
#contact .contact_form .wpcf7 input[type=submit]:hover {
  color: #ad916d;
  background-color: #fff;
  border: 1px solid #ad916d;
}
#contact .contact_form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}