@charset "UTF-8";
html {
  margin: 0;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 17px;
  color: #707070;
  line-height: 1.9;
  margin-top: 0 !important;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: white;
}

a {
  text-decoration: underline;
}
a.button {
  text-decoration: none !important;
}

.a_none {
  text-decoration: none !important;
}

.pc_header {
  display: none;
}
@media screen and (min-width: 850px) {
  .pc_header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 200;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 64px;
  }
  .pc_header .pc_header_inner {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .pc_header .pc_logo_link {
    text-decoration: none;
    flex-shrink: 0;
  }
  .pc_header .pc_logo {
    height: 36px;
    width: auto;
    display: block;
  }
  .pc_header .pc_nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
    margin-left: 16px;
    padding: 0;
  }
  .pc_header .pc_nav_item {
    position: relative;
  }
  .pc_header .pc_nav_item > a,
  .pc_header .pc_nav_item > button.pc_nav_dropdown_trigger {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    border: 0;
    font-family: inherit;
    cursor: pointer;
  }
  .pc_header .pc_nav_item > a:hover,
  .pc_header .pc_nav_item > button.pc_nav_dropdown_trigger:hover {
    background: #F0FAFA;
    color: #35A0A0;
  }
  .pc_header .pc_nav_item.pc_nav_has_dropdown > a::after, .pc_header .pc_nav_item.pc_nav_has_dropdown > button.pc_nav_dropdown_trigger::after {
    content: " ▾";
    font-size: 10px;
  }
  .pc_header .pc_nav_item:hover .pc_dropdown {
    display: block;
  }
  .pc_header .pc_dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 8px;
    min-width: 180px;
    z-index: 300;
  }
  .pc_header .pc_dropdown a {
    display: block;
    padding: 7px 14px;
    font-size: 12px;
    color: #555;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  .pc_header .pc_dropdown a:hover {
    background: #F0FAFA;
    color: #35A0A0;
  }
  .pc_header .pc_header_cta {
    background: #06C755;
    color: white !important;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    white-space: nowrap;
    font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .pc_header .pc_header_cta:hover {
    background: #05a648;
  }
}

header {
  width: 100%;
  position: fixed;
  z-index: 100;
  height: 60px !important;
  background-color: white !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
}
@media screen and (min-width: 850px) {
  header {
    display: none;
  }
}
header .header_background {
  display: none !important;
}
header .header_flex {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
header .header_flex .top_icon {
  width: fit-content;
  max-width: 200px;
  height: 40px;
  object-fit: cover;
}
header .header_flex .menu_icon {
  height: 20px;
}

.slide_menu {
  position: fixed;
  top: 10vh;
  left: 15%;
  width: 70%;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  z-index: 1000;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.slide_menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide_menu .link_box {
  display: block;
  width: 100%;
  height: auto;
  padding: 30px 0;
  overflow-y: scroll;
}
.slide_menu .link_box a,
.slide_menu .link_box button.slide_menu_dropdown_label {
  display: block;
  color: #C6B3A1;
  font-size: 18px;
  line-height: 40px;
  width: 60%;
  margin: 0 auto;
  text-decoration: none;
  background: transparent;
  border: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}
.slide_menu .link_box .menu_link {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.slide_menu .link_box .menu_link a {
  line-height: 25px;
  font-size: 14px;
  margin-left: 20px;
}
@media screen and (min-width: 850px) {
  .slide_menu {
    display: none !important;
  }
}

.menu_trigger {
  cursor: pointer;
  z-index: 1001;
}

.header_flex {
  position: relative;
  z-index: 1001;
}

footer {
  position: relative;
  width: 100%;
}
footer .sp_banner {
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 1000;
  animation: fadeIn 3s ease forwards;
}
@media (min-width: 850px) {
  footer .sp_banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
    padding: 0;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  footer .sp_banner .sp_banner_notice {
    flex: none;
    width: auto;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
  }
  footer .sp_banner .line {
    height: 54px;
    padding: 0 22px 0 14px;
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  footer .sp_banner .line:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
  }
  footer .sp_banner .line img {
    width: 26px;
    height: 26px;
    margin-right: 8px;
  }
  footer .sp_banner .line p {
    font-size: 14px;
  }
}
footer .sp_banner a {
  text-decoration: none !important;
  flex-shrink: 0;
}
footer .sp_banner .sp_banner_notice {
  flex: 1;
  margin: 0;
  padding: 0 2px 0 4px;
  color: #0F2030;
  font-size: 12px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  min-width: 0;
}
footer .sp_banner .line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 14px 0 10px;
  margin: 0;
  background-color: #06C755;
  border-radius: 8px;
}
footer .sp_banner .line img {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 6px 0 0;
  border-radius: 5px;
}
footer .sp_banner .line p {
  line-height: 1;
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 600;
  color: white;
  margin: 0;
  white-space: nowrap;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
footer .footer_content {
  position: relative;
  padding-top: 40px;
  background-color: #8AA5B2;
}
footer .footer_content .logo {
  margin: auto;
  margin-bottom: 20px;
  width: 250px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
}
footer .footer_content .logo img {
  width: 80%;
}
footer .footer_content .icon_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_content .icon_flex .img_box {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_content .icon_flex .img_box img {
  width: 25px;
  height: 25px;
}
footer .footer_content .info {
  width: 80%;
  margin: 10px auto;
  color: white;
}
footer .footer_content .info h2 {
  font-size: 14px;
  margin-bottom: 5px;
}
footer .footer_content .info p {
  font-size: 12px;
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 20px;
}
footer .footer_content .info a {
  font-size: 12px;
  padding: 12px 0 12px 20px;
  line-height: 1.5;
  min-height: 44px;
  display: block;
  box-sizing: border-box;
}
footer .footer_content .google_map {
  margin: 20px auto;
  display: block;
  width: 90%;
  max-width: 500px;
  height: 400px;
  border-radius: 10px;
}
footer .footer_content .google_map_placeholder {
  background-color: #e8eef1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
footer .footer_content .google_map_placeholder .google_map_load_btn {
  background: white;
  border: 1px solid #9EC8DF;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 13px;
  color: #3A7A95;
  cursor: pointer;
  font-family: inherit;
}
footer .footer_content .google_map_placeholder .google_map_load_btn:hover {
  background: #F0F8FB;
}
footer .footer_content .footer_link_container {
  margin-top: 40px;
  background-color: #8AA5B2;
}
footer .footer_content .footer_link_container .grid_container {
  display: grid;
}
footer .footer_content .footer_link_container .grid_container .grid_item {
  padding: 10px;
}
footer .footer_content .footer_link_container .grid_container .grid_item a {
  text-decoration: none;
}
footer .footer_content .footer_link_container .grid_container .grid_item h2 {
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  margin-bottom: 5px;
  color: white;
}
footer .footer_content .footer_link_container .grid_container .grid_item .link_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .footer_content .footer_link_container .grid_container .grid_item .link_list a {
  display: block;
  font-size: 10px;
  color: white;
  line-height: 1.5;
  min-height: 44px;
  padding: 12px 0;
  box-sizing: border-box;
}
footer .footer_content .footer_link_container .grid_1 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
footer .footer_content .footer_link_container .grid_2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
footer .footer_content .copyright {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  margin-top: -10px;
  color: white;
  font-size: 12px;
  background-color: #8AA5B2;
  border: 10px #8AA5B2 solid;
}

.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s, transform 2s;
}

.fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.exit-popup-overlay .exit-popup {
  position: relative;
  max-width: 420px;
  width: 90%;
}
.exit-popup-overlay .exit-popup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.exit-popup-overlay .exit-popup .close-button {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1;
  padding: 0;
  font-size: 0;
  color: transparent;
}
.exit-popup-overlay .exit-popup .close-button::before, .exit-popup-overlay .exit-popup .close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #555;
  border-radius: 1px;
}
.exit-popup-overlay .exit-popup .close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.exit-popup-overlay .exit-popup .close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

section {
  background-color: white;
}

.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

.consult_button {
  width: 80%;
  margin: 20px auto;
  border-radius: 4px;
  background: #06C755;
  height: 52px;
  color: white;
  font-size: 16px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.consult_button .line_icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.consult_button:hover {
  background: rgb(4.8058536585, 159.3941463415, 68.0829268293);
}

.sec_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #0F2030;
  margin: 0 0 24px;
  padding-top: 48px;
}
.sec_title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background-color: currentColor;
  margin: 16px auto 0;
  border-radius: 2px;
}

.sec_sub {
  font-size: 14px;
  color: #999;
  text-align: center;
  margin: -16px 0 24px;
}

.sec_title_brown {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #0F2030;
  margin: 0 0 24px;
  padding-top: 48px;
}
.sec_title_brown::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background-color: currentColor;
  margin: 16px auto 0;
  border-radius: 2px;
}

.about_link {
  display: inline-block;
  font-size: 14px;
  color: #35A0A0;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 16px;
}

.kv_checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 12px 0 0;
}
.kv_checklist .kv_check_item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  color: #0F2030;
}
.kv_checklist .kv_check_item .material-symbols-outlined {
  font-size: 18px;
  color: #3A7A95;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  flex-shrink: 0;
}

.kv_primary_btn {
  background: #06C755;
  color: white;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  width: 100%;
  margin: 0;
  border-radius: 4px;
  height: auto;
  padding: 10px 16px;
  flex-direction: column;
  gap: 2px;
}
.kv_primary_btn .kv_btn_sub {
  font-size: 11px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: normal;
  opacity: 0.9;
  line-height: 1.3;
}
.kv_primary_btn .kv_btn_main {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.3;
}
.kv_primary_btn:hover {
  background: rgb(4.8058536585, 159.3941463415, 68.0829268293);
}

.kv_sp {
  padding-top: 60px;
}
.kv_sp .kv_sp_img {
  width: 100%;
  background-color: #F5F5F5;
}
.kv_sp .kv_sp_img img {
  width: 100%;
  height: auto;
  display: block;
}
.kv_sp .kv_cta_area {
  background-color: #1C4F6A;
  padding: 16px;
}
.kv_sp .kv_cta_area .kv_cta_box {
  margin-bottom: 0;
}
.kv_sp .kv_cta_area .kv_checklist {
  padding-top: 12px;
}
.kv_sp .kv_cta_area .kv_checklist .kv_check_item {
  color: #D5ECF8;
}
.kv_sp .kv_cta_area .kv_checklist .kv_check_item .material-symbols-outlined {
  color: #B5D4E8;
}

.kv_pc {
  display: none;
  background: white;
  padding: 36px 24px 28px;
}
.kv_pc .kv_pc_inner {
  width: 100%;
}
.kv_pc .kv_pc_image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kv_pc .kv_pc_image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.kv_pc .kv_pc_text {
  width: 100%;
}
.kv_pc .kv_pc_heading {
  font-size: 28px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #0F2030;
  line-height: 1.55;
  margin-bottom: 12px;
}
.kv_pc .kv_pc_sub {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.kv_pc .kv_pc_cta_wrap {
  display: block;
}
.kv_pc .kv_checklist {
  padding-top: 16px;
}
.kv_pc .kv_pc_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #06C755;
  color: white;
  font-size: 16px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 14px 0;
  border-radius: 4px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.kv_pc .kv_pc_cta .line_icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.kv_pc .kv_pc_cta:hover {
  background: rgb(4.8058536585, 159.3941463415, 68.0829268293);
}

.menu_sec {
  background-color: #FAFAFA;
  padding-bottom: 40px;
}
.menu_sec .menu_icon_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px 0;
}
@media (max-width: 849px) {
  .menu_sec .menu_icon_grid:not(.is-open) > .menu_icon_card:nth-child(n+5) {
    display: none;
  }
}
.menu_sec .menu_icon_toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px auto 20px;
  padding: 12px 22px;
  background: white;
  border: 1px solid #9EC8DF;
  border-radius: 8px;
  color: #3A7A95;
  font-size: 13px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.menu_sec .menu_icon_toggle:hover {
  background: #F0F8FB;
}
.menu_sec .menu_icon_toggle .menu_icon_toggle_icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.menu_sec .menu_icon_toggle.is-open .menu_icon_toggle_icon {
  transform: rotate(180deg);
}
@media (min-width: 850px) {
  .menu_sec .menu_icon_toggle {
    display: none;
  }
}
.menu_sec .menu_icon_card {
  text-decoration: none;
  display: block;
  transition: transform 0.22s ease;
}
.menu_sec .menu_icon_card:hover {
  transform: translateY(-2px);
}
.menu_sec .menu_icon_card:hover .menu_icon_area {
  box-shadow: 0 6px 18px rgba(58, 122, 149, 0.14);
}
.menu_sec .menu_icon_card .menu_icon_area {
  background: #C8DDEA;
  aspect-ratio: 1/1;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(58, 122, 149, 0.08);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.menu_sec .menu_icon_card .menu_icon_area::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}
.menu_sec .menu_icon_card .menu_icon_area .menu_icon_sym {
  position: relative;
  z-index: 1;
  font-size: 40px;
  color: #3A7A95;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 48;
}
.menu_sec .menu_icon_card .menu_icon_footer {
  padding: 10px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
.menu_sec .menu_icon_card .menu_icon_footer .menu_icon_name {
  font-size: 12px;
  font-weight: bold;
  color: #0F2030;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(29, 43, 58, 0.4);
}
.menu_sec .menu_icon_card .menu_icon_footer .menu_icon_arr {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-color: #3A7A95;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta_sec {
  background-color: white;
  padding: 32px 16px;
  text-align: center;
}
.cta_sec .cta_sec_lead {
  margin: 0 auto 16px;
  color: #0F2030;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.cta_sec .cta_sec_link {
  display: block;
  text-decoration: none;
}
.cta_sec .cta_sec_btn {
  width: auto;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 22px;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.22);
}
.cta_sec .cta_sec_btn span {
  font-weight: 600;
  color: white;
}
.cta_sec .cta_sec_btn .cta_sec_arrow {
  font-size: 22px;
  color: white;
  margin-left: 4px;
}
@media (min-width: 850px) {
  .cta_sec {
    padding: 56px 40px;
  }
  .cta_sec .cta_sec_btn {
    max-width: 380px;
    height: 64px;
    font-size: 18px;
  }
}

.about_afterpill_sec {
  background-color: white;
  padding-bottom: 40px;
}
.about_afterpill_sec .afterpill_basicinfo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  margin: 0 15px 24px;
  padding: 20px 10px;
  gap: 0;
}
.about_afterpill_sec .afterpill_basicinfo .basicinfo_item {
  flex: 1;
  text-align: center;
}
.about_afterpill_sec .afterpill_basicinfo .basicinfo_item .basicinfo_num {
  display: block;
  font-size: 32px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #0F2030;
  line-height: 1;
  font-weight: bold;
}
.about_afterpill_sec .afterpill_basicinfo .basicinfo_item .basicinfo_num .basicinfo_unit {
  font-size: 16px;
}
.about_afterpill_sec .afterpill_basicinfo .basicinfo_item .basicinfo_label {
  font-size: 10px;
  color: #887462;
  margin-top: 6px;
  line-height: 1.5;
}
.about_afterpill_sec .afterpill_basicinfo .basicinfo_divider {
  width: 1px;
  height: 50px;
  background-color: #DDD;
  flex-shrink: 0;
}
.about_afterpill_sec .accordion_list {
  width: 92%;
  margin: 0 auto;
}
.about_afterpill_sec .accordion_list .accordion_item {
  border-bottom: 1px solid #E8E8E8;
}
.about_afterpill_sec .accordion_list .accordion_item:first-child {
  border-top: 1px solid #E8E8E8;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header {
  display: flex;
  align-items: center;
  padding: 14px 5px;
  cursor: pointer;
  gap: 10px;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header .accordion_q {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #0F2030;
  color: white;
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header p {
  flex: 1;
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header .accordion_icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header .accordion_icon::before, .about_afterpill_sec .accordion_list .accordion_item .accordion_header .accordion_icon::after {
  content: "";
  position: absolute;
  background-color: #0F2030;
  border-radius: 2px;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header .accordion_icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header .accordion_icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_header.is-open .accordion_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_body {
  display: none;
  padding: 0 10px 14px 46px;
}
.about_afterpill_sec .accordion_list .accordion_item .accordion_body p {
  font-size: 14px;
  color: #887462;
  line-height: 1.8;
  margin: 0;
}

.afterpill_full_sec {
  counter-reset: ap-section;
  background-color: white;
  padding-bottom: 48px;
}
.afterpill_full_sec .ap_wrap {
  width: 92%;
  max-width: 1024px;
  margin: 0 auto;
}
.afterpill_full_sec .ap_basicinfo {
  background-color: #D5ECF8;
  border-radius: 8px;
  padding: 20px 20px 24px;
  margin-bottom: 20px;
}
.afterpill_full_sec .ap_basicinfo_label {
  font-size: 14px;
  font-weight: bold;
  color: #0F2030;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  margin: 0 0 12px;
}
.afterpill_full_sec .ap_basicinfo_desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 20px;
}
.afterpill_full_sec .ap_basicinfo_stats {
  display: flex;
  gap: 0;
  text-align: center;
}
.afterpill_full_sec .ap_basicinfo_stat {
  flex: 1;
  border-right: 1px solid #9EC8DF;
}
.afterpill_full_sec .ap_basicinfo_stat:last-child {
  border-right: none;
}
.afterpill_full_sec .ap_basicinfo_num {
  font-size: 32px;
  font-weight: bold;
  color: #2A8099;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 6px;
}
.afterpill_full_sec .ap_basicinfo_num span {
  font-size: 20px;
}
.afterpill_full_sec .ap_basicinfo_unit {
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.afterpill_full_sec .ap_nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0 8px;
}
.afterpill_full_sec .ap_nav_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background-color: #D5ECF8;
  color: #0F2030;
  text-decoration: none;
  padding: 11px 8px 11px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
.afterpill_full_sec .ap_nav_btn::after {
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #3A7A95;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
}
.afterpill_full_sec .ap_section {
  margin-top: 8px;
}
.afterpill_full_sec .ap_section > h2.wp-block-heading {
  counter-increment: ap-section;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: bold;
  padding: 14px 0;
  border-top: 1px solid #EBEBEB;
  margin: 24px 0 14px;
  color: #0F2030;
  line-height: 1.5;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
}
.afterpill_full_sec .ap_section > h2.wp-block-heading::before {
  content: counter(ap-section);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #3A7A95;
  color: white;
  font-size: 12px;
  line-height: 1;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  flex-shrink: 0;
}
.afterpill_full_sec .ap_body {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
}
.afterpill_full_sec .ap_body p {
  margin-bottom: 12px;
}
.afterpill_full_sec .ap_body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 12px 0;
}
.afterpill_full_sec .ap_sub {
  font-size: 14px;
  font-weight: bold;
  color: #0F2030;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  margin: 18px 0 8px;
  padding-left: 8px;
  border-left: 3px solid #72AEC6;
}
.afterpill_full_sec .ap_review_image {
  margin: 16px 0 4px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(58, 122, 149, 0.08);
}
.afterpill_full_sec .ap_review_image img {
  display: block;
  width: 100%;
  height: auto;
}
.afterpill_full_sec .ap_check_list {
  list-style: none;
  margin: 10px 0 14px;
  padding: 0;
}
.afterpill_full_sec .ap_check_list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
}
.afterpill_full_sec .ap_check_list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3A6A80;
  font-weight: bold;
}
.afterpill_full_sec .ap_bullet_list {
  list-style: none;
  margin: 10px 0 14px;
  padding: 0;
}
.afterpill_full_sec .ap_bullet_list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.7;
}
.afterpill_full_sec .ap_bullet_list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #3A6A80;
}
.afterpill_full_sec .ap_num_list {
  list-style: decimal;
  padding-left: 22px;
  margin: 10px 0 14px;
}
.afterpill_full_sec .ap_num_list li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.afterpill_full_sec .ap_timing_box {
  background-color: #F0F7FA;
  border-left: 4px solid #3A7A95;
  border-radius: 0 6px 6px 0;
  padding: 12px 14px;
  margin: 10px 0;
}
.afterpill_full_sec .ap_timing_box p {
  margin: 0 0 4px;
  font-size: 14px;
}
.afterpill_full_sec .ap_timing_label {
  font-weight: bold;
  color: #3A7A95;
  font-size: 13px !important;
}
.afterpill_full_sec .ap_highlight_box {
  background-color: #F0F7FA;
  border: 1px solid #72AEC6;
  border-radius: 6px;
  padding: 12px 14px;
  margin: 14px 0;
}
.afterpill_full_sec .ap_highlight_box p {
  margin: 0;
  font-size: 14px;
}
.afterpill_full_sec .ap_testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.afterpill_full_sec .ap_testimonial {
  background-color: #F8F9FA;
  border-radius: 8px;
  padding: 14px;
}
.afterpill_full_sec .ap_testimonial_text {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin: 0 0 6px;
}
.afterpill_full_sec .ap_testimonial_age {
  font-size: 12px;
  color: #888;
  text-align: right;
  margin: 0;
}
.afterpill_full_sec .ap_doctor_box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background-color: #F5FAFC;
  border-radius: 8px;
  padding: 16px;
}
.afterpill_full_sec .ap_doctor_img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.afterpill_full_sec .ap_doctor_info {
  flex: 1;
}
.afterpill_full_sec .ap_doctor_name {
  font-size: 15px;
  font-weight: bold;
  color: #0F2030;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  margin: 0 0 4px;
}
.afterpill_full_sec .ap_doctor_title {
  font-size: 12px;
  color: #666;
  margin: 0 0 8px;
}
.afterpill_full_sec .ap_doctor_bio {
  font-size: 12px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.afterpill_full_sec .ap_link_button {
  display: block;
  text-align: center;
  background-color: #3A6A80;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  margin-top: 16px;
}
.afterpill_full_sec .ap_note {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
}
.afterpill_full_sec .ap_price_table {
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 12px;
}
.afterpill_full_sec .ap_price_row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid #EBEBEB;
}
.afterpill_full_sec .ap_price_row:last-of-type {
  border-bottom: none;
}
.afterpill_full_sec .ap_price_row img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
}
.afterpill_full_sec .ap_price_name {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.afterpill_full_sec .ap_price_yen {
  font-size: 14px;
  font-weight: bold;
  color: #0F2030;
  text-align: right;
  line-height: 1.5;
}
.afterpill_full_sec .ap_price_yen small {
  font-size: 11px;
  font-weight: normal;
  color: #888;
  display: block;
}
.afterpill_full_sec .ap_price_note {
  font-size: 11px;
  color: #888;
  text-align: right;
  padding: 6px 14px 8px;
  margin: 0;
  background-color: #FAFAFA;
}
.afterpill_full_sec .ap_faq_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.afterpill_full_sec .ap_faq_item {
  padding: 14px 0;
  border-bottom: 1px solid #EBEBEB;
}
.afterpill_full_sec .ap_faq_item:first-child {
  border-top: 1px solid #EBEBEB;
}
.afterpill_full_sec .ap_faq_q {
  font-size: 14px;
  font-weight: bold;
  color: #0F2030;
  margin: 0 0 6px;
}
.afterpill_full_sec .ap_faq_a {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.usage_sec {
  background-color: #EAF5FB;
  padding-bottom: 40px;
}
.usage_sec .steps {
  width: 88%;
  margin: 0 auto;
  padding-top: 10px;
}
.usage_sec .steps .step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: white;
  border-radius: 12px;
  padding: 18px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.usage_sec .steps .step .step_num_wrap {
  flex-shrink: 0;
}
.usage_sec .steps .step .step_num_wrap .step_num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #3A7A95;
  color: white;
  font-size: 18px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  font-weight: bold;
}
.usage_sec .steps .step .step_content h3 {
  font-size: 15px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #0F2030;
  margin: 0 0 6px;
}
.usage_sec .steps .step .step_content p {
  font-size: 14px;
  color: #887462;
  line-height: 1.7;
  margin: 0;
}
.usage_sec .steps .step_arrow {
  text-align: center;
  color: #72AEC6;
  font-size: 16px;
  padding: 6px 0;
}

.about_clinic_sec {
  background-color: white;
}
.about_clinic_sec .about_pc {
  padding: 8px 0 40px;
}
.about_clinic_sec .about_pc .about_pc_inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about_clinic_sec .about_pc .about_pc_review {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(58, 122, 149, 0.08);
}
.about_clinic_sec .about_pc .about_pc_review img {
  display: block;
  width: 100%;
  height: auto;
}
.about_clinic_sec .about_pc .about_pc_content {
  width: 100%;
}
.about_clinic_sec .about_pc .about_pc_stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0 20px;
}
@media screen and (min-width: 850px) {
  .about_clinic_sec .about_pc .about_pc_stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
.about_clinic_sec .about_pc .about_pc_stats .about_pc_stat {
  text-align: center;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 12px 8px;
}
.about_clinic_sec .about_pc .about_pc_stats .about_pc_stat .stat_num {
  display: block;
  font-size: 22px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #35A0A0;
  line-height: 1;
}
.about_clinic_sec .about_pc .about_pc_stats .about_pc_stat .stat_num .stat_unit {
  font-size: 14px;
}
.about_clinic_sec .about_pc .about_pc_stats .about_pc_stat .stat_label {
  display: block;
  font-size: 11px;
  color: #887462;
  margin-top: 4px;
}
.about_clinic_sec .about_pc .about_pc_text {
  font-size: 14px;
  color: #887462;
  line-height: 2;
  margin: 0;
}

.director_sec {
  background-color: #EAF5FB;
  padding: 0 24px 40px;
}
.director_sec .director_inner {
  margin: 0 auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.director_sec .director_image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.director_sec .director_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.director_sec .director_content {
  width: 100%;
  text-align: center;
}
.director_sec .director_content .director_clinic {
  font-size: 14px;
  color: #887462;
  margin: 0 0 4px;
}
.director_sec .director_content .director_name {
  font-size: 24px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #0F2030;
  margin: 0 0 16px;
}
.director_sec .director_content .director_text {
  font-size: 14px;
  color: #887462;
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

.medicine_sec {
  background-color: #D5ECF8;
  padding-bottom: 40px;
}
.medicine_sec .medicine_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 15px 20px;
}
.medicine_sec .medicine_grid .medicine_card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.medicine_sec .medicine_grid .medicine_card .medicine_card_img {
  width: 100%;
  height: 120px;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medicine_sec .medicine_grid .medicine_card .medicine_card_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.medicine_sec .medicine_grid .medicine_card .medicine_card_body {
  padding: 12px;
}
.medicine_sec .medicine_grid .medicine_card .medicine_card_body h3 {
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #0F2030;
  margin: 0 0 6px;
}
.medicine_sec .medicine_grid .medicine_card .medicine_card_body p {
  font-size: 11px;
  color: #887462;
  line-height: 1.6;
  margin: 0;
}

.news_sec {
  background-color: white;
  padding-bottom: 50px;
}
.news_sec .news_container {
  background-color: #F5F5F5;
  border-radius: 16px;
  padding: 20px;
  width: 88%;
  margin: 0 auto;
}
.news_sec .news_container a {
  text-decoration: none;
}
.news_sec .news_container .news_box {
  font-size: 14px;
  color: #887462;
  padding: 8px 0;
}
.news_sec .news_container .news_box .date {
  font-weight: normal;
  font-size: 12px;
}
.news_sec .news_container .news_box .news_title {
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}
.news_sec .news_container hr {
  width: 100%;
  margin: 2px 0;
  border-color: #DDD;
  border-width: 1px;
}
.news_sec .news_container .news_link {
  display: block;
  text-align: right;
  text-decoration: underline;
  color: #887462;
  font-size: 12px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  margin-top: 14px;
}
.news_sec .news_container .no_post {
  font-size: 14px;
  color: #887462;
  text-align: center;
  padding: 10px 0;
}

.blog {
  background-color: white;
  padding-bottom: 120px;
}
.blog .blog_link {
  display: block;
  width: 88%;
  margin: 10px auto 0;
  text-align: right;
  color: #887462;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-decoration: underline;
}
.blog .ranking {
  width: 94%;
  margin: 0 auto 20px;
}
.blog .ranking .ranking_label {
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #887462;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 8px 20px;
  width: fit-content;
  margin: 0 0 6px;
}
.blog .ranking .articles_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.blog .ranking .articles_container a {
  text-decoration: none;
  display: block;
}
.blog .ranking .articles_container a .relative_article {
  padding: 8px;
}
.blog .ranking .articles_container a .relative_article img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.blog .ranking .articles_container a .relative_article p {
  font-size: 10px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #717171;
  margin: 5px 0;
}
.blog .ranking .articles_container a .relative_article .category {
  font-size: 7px;
  height: 18px;
  line-height: 18px;
  width: fit-content;
  padding: 0 8px;
  margin: 3px 0;
  color: #C6B3A1;
  border: #C6B3A1 solid 1px;
  border-radius: 9px;
  background-color: white;
}
.blog .no_post {
  font-size: 14px;
  color: #887462;
  text-align: center;
  padding: 10px 0;
}

.renkei_sec {
  background-color: #EAF5FB;
  padding-bottom: 50px;
}
.renkei_sec .renkei_cert_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 16px 24px;
}
.renkei_sec .renkei_cert_card {
  background: white;
  border: 1px solid #9EC8DF;
  border-radius: 8px;
  overflow: hidden;
}
.renkei_sec .renkei_cert_name {
  font-size: 12px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #3A6A80;
  text-align: center;
  padding: 8px 6px;
  border-bottom: 1px solid #E0EEF5;
  background: #EAF5FB;
  line-height: 1.4;
}
.renkei_sec .renkei_cert_img_wrap {
  width: 100%;
  aspect-ratio: 3/4;
}
.renkei_sec .renkei_cert_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.renkei_sec .renkei_cert_placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #F0F4F6;
  color: #A0B4BD;
  font-size: 11px;
}
.renkei_sec .renkei_cert_placeholder .material-symbols-outlined {
  font-size: 32px;
}
.renkei_sec .renkei_acc_wrap {
  margin: 0 16px;
}
.renkei_sec .renkei_acc_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: white;
  border: 1px solid #9EC8DF;
  border-radius: 8px;
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  color: #1A3A4A;
  cursor: pointer;
  font-weight: bold;
}
.renkei_sec .renkei_acc_btn .renkei_acc_icon {
  font-size: 22px;
  color: #3A7A95;
  transition: transform 0.3s;
}
.renkei_sec .renkei_acc_btn.is-open {
  border-radius: 8px 8px 0 0;
}
.renkei_sec .renkei_acc_btn.is-open .renkei_acc_icon {
  transform: rotate(180deg);
}
.renkei_sec .renkei_acc_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: white;
  border: 1px solid #9EC8DF;
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.renkei_sec .renkei_hosp_list {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  list-style: none;
}
.renkei_sec .renkei_hosp_list li {
  font-size: 14px;
  color: #3A5A6A;
  padding-left: 12px;
  position: relative;
}
.renkei_sec .renkei_hosp_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #3A7A95;
}

@media (min-width: 850px) {
  .sp_only {
    display: none !important;
  }
  .pc_only {
    display: block !important;
  }
  .kv_sp {
    display: none !important;
  }
  .sec_title,
  .sec_title_brown {
    font-size: 36px;
    padding-top: 80px;
    margin-bottom: 32px;
  }
  .sec_title::after,
  .sec_title_brown::after {
    width: 64px;
    height: 3px;
    margin-top: 20px;
  }
  .consult_button {
    max-width: 360px;
    font-size: 18px;
    height: 60px;
    line-height: 60px;
  }
  .kv_pc {
    display: block;
    padding: 0;
    height: auto;
    background: white;
  }
  .kv_pc .kv_pc_image {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    background-color: #F5F5F5;
    aspect-ratio: 1800/600;
    display: block;
  }
  .kv_pc .kv_pc_image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 0;
  }
  .kv_pc .kv_pc_cta_area {
    max-width: 980px;
    margin: 0 auto;
    padding: 36px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .kv_pc .kv_pc_cta_area .kv_pc_features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
  }
  .kv_pc .kv_pc_cta_area .kv_pc_features .kv_pc_feature {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .kv_pc .kv_pc_cta_area .kv_pc_features .kv_pc_feature .material-symbols-outlined {
    font-size: 24px;
    color: #3A7A95;
    font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
  }
  .kv_pc .kv_pc_cta_area .kv_pc_features .kv_pc_feature .kv_pc_feature_text {
    font-size: 18px;
    color: #0F2030;
    font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
    font-weight: 500;
    font-weight: bold;
  }
  .kv_pc .kv_pc_cta_area .a_none {
    width: 100%;
    max-width: 560px;
  }
  .kv_pc .kv_pc_cta_area .kv_primary_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 6px;
  }
  .kv_pc .kv_pc_cta_area .kv_primary_btn .kv_btn_icon {
    font-size: 24px;
    color: white;
    font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  }
  .kv_pc .kv_pc_cta_area .kv_primary_btn .kv_btn_main {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
  }
  .kv_pc .kv_pc_cta_area .kv_primary_btn .kv_btn_chevron {
    font-size: 24px;
    color: white;
    margin-left: auto;
  }
  .menu_sec {
    padding-bottom: 60px;
  }
  .menu_sec .menu_icon_grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 20px;
    gap: 20px;
  }
  .menu_sec .menu_icon_card .menu_icon_area .menu_icon_sym {
    font-size: 64px;
  }
  .menu_sec .menu_icon_card .menu_icon_footer {
    padding: 14px 6px 6px;
  }
  .menu_sec .menu_icon_card .menu_icon_footer .menu_icon_name {
    font-size: 14px;
  }
  .menu_sec .menu_icon_card .menu_icon_footer .menu_icon_arr {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 16px;
  }
  .menu_sec .consult_button {
    margin-top: 10px;
  }
  .afterpill_full_sec .ap_section > h2.wp-block-heading {
    font-size: 17px;
  }
  .afterpill_full_sec .ap_section > h2.wp-block-heading::before {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .afterpill_full_sec .ap_body {
    font-size: 14px;
  }
  .afterpill_full_sec .ap_check_list li,
  .afterpill_full_sec .ap_bullet_list li,
  .afterpill_full_sec .ap_num_list li {
    font-size: 14px;
  }
  .afterpill_full_sec .ap_doctor_img {
    width: 100px;
    height: 100px;
  }
  .afterpill_full_sec .ap_nav {
    grid-template-columns: repeat(4, 1fr);
  }
  .about_afterpill_sec .afterpill_basicinfo {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 28px 40px;
  }
  .about_afterpill_sec .afterpill_basicinfo .basicinfo_item .basicinfo_num {
    font-size: 48px;
  }
  .about_afterpill_sec .afterpill_basicinfo .basicinfo_item .basicinfo_num .basicinfo_unit {
    font-size: 22px;
  }
  .about_afterpill_sec .afterpill_basicinfo .basicinfo_label {
    font-size: 12px;
  }
  .about_afterpill_sec .accordion_list {
    max-width: 860px;
  }
  .about_clinic_sec .about_pc {
    padding: 16px 0 80px;
  }
  .about_clinic_sec .about_pc .about_pc_inner {
    max-width: 1024px;
    padding: 0 80px;
    gap: 40px;
  }
  .about_clinic_sec .about_pc .about_pc_stats .about_pc_stat .stat_num {
    font-size: 26px;
  }
  .about_clinic_sec .about_pc .about_pc_text {
    font-size: 15px;
  }
  .director_sec {
    padding: 0 0 60px;
  }
  .director_sec .director_inner {
    flex-direction: row;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 16px 80px 0;
    gap: 60px;
  }
  .director_sec .director_image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
  .director_sec .director_content {
    text-align: left;
  }
  .director_sec .director_name {
    font-size: 32px;
  }
  .director_sec .director_text {
    font-size: 14px;
  }
  .news_sec .news_container {
    max-width: 1024px;
    width: auto;
  }
  .blog {
    padding-bottom: 80px;
  }
  .blog .ranking {
    max-width: 1024px;
    margin: 0 auto 30px;
  }
  .blog .ranking .articles_container {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .blog .ranking .articles_container .relative_article p {
    font-size: 12px;
  }
  .blog .ranking .articles_container .relative_article .category {
    font-size: 9px;
  }
  .renkei_sec {
    padding-bottom: 70px;
  }
  .renkei_sec .renkei_cert_grid {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 40px 30px;
    gap: 24px;
  }
  .renkei_sec .renkei_cert_name {
    font-size: 14px;
  }
  .renkei_sec .renkei_acc_wrap {
    max-width: 1024px;
    margin: 0 auto;
  }
  .renkei_sec .renkei_hosp_list {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 30px;
  }
}
