/*
Theme Name: aoyama-ohada
Description: aoyama-ohada theme
Author: cunelwork
 */

/* ============================
	color
============================ */
:root {
  --color-main: #133586;
  --color-accent: #0097C4;
}

/* ============================
	fonts
============================ */
.gothic-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.gothic-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.gothic-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.eng-regular {
  font-family: "Unna", serif;
  font-weight: 400;
  font-style: normal;
}

.eng-bold {
  font-family: "Unna", serif;
  font-weight: 700;
  font-style: normal;
}


/* ============================
	common
============================ */

#wrapper {
  overflow: hidden;
  margin: 0 auto;
}

.flex-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.ofi {
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
  object-fit: cover;
}

/* ============================
	sp-menu
============================ */
#sp-menu {
  box-sizing: border-box;
  position: fixed;
  transition: all 0.3s ease;
  top: 110px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0 20px 40px;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  overflow-y: auto;
}

#sp-menu.opening {
  transition: all 0.3s ease;
  opacity: 1;
  pointer-events: auto;
}

#sp-menu ul {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

#sp-menu .menu-item {
  border-bottom: 1px solid #DBDBDB;
}

#sp-menu .menu-item a {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  padding: 20px 10px;
  position: relative;
}

#sp-menu .menu-item a::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url('./images/common/btn_arrow_b_small.svg') no-repeat center / contain;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  right: 10px;
}

#sp-menu .sub-menu {
  transition: 0.3s all ease;
}

#sp-menu .sub-menu .menu-item {
  border-bottom: none;
}

#sp-menu .sub-menu .menu-item a {
  font-size: 1.2rem;
  padding: 20px 20px;
  border-top: 1px dotted #E8E8E8;
}

#sp-menu .sub-menu .menu-item:first-child a {
  padding: 0 20px 20px;
  border-top: none;
}

#sp-menu .sub-menu .menu-item a:after {
  display: none;
}

#sp-clinic-info {
  width: 100%;
  max-width: 750px;
  margin: 30px auto 0;
}

#sp-clinic-info .clinic-addr h3 {
  text-align: center;
  font-size: 1.3rem;
  margin: 0;
}

#sp-clinic-info .clinic-addr p {
  text-align: center;
  font-size: 1.2rem;
  margin: 20px 0 0;
}

#sp-clinic-info .clinic-close {
  margin-top: 20px;
}

#sp-clinic-info .clinic-close h3 {
  font-size: 1.3rem;
  margin: 0;
}

#sp-clinic-info .clinic-close p {
  font-size: 1rem;
  margin: 15px 0 0;
}

#sp-clinic-info .clinic-timetable {
  margin-top: 20px;
}

#sp-clinic-info .clinic-timetable table {
  color: #133586;
  margin: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid #D5DAE6;
}

#sp-clinic-info .clinic-timetable table tr th,
#sp-clinic-info .clinic-timetable table tr td {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #D5DAE6;
  padding: 8px 6px;
}

#sp-clinic-info .clinic-timetable table tr th {
  background-color: transparent;
}

#sp-clinic-info .clinic-timetable table tr td .round,
#sp-clinic-info .clinic-timetable table tr td .round-b,
#sp-clinic-info .clinic-timetable table tr td .border {
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 0;
  box-sizing: border-box;
  position: relative;
}

#sp-clinic-info .clinic-timetable table tr td.eng-regular {
  letter-spacing: 0.1em;
}

#sp-clinic-info .clinic-timetable table tr td .round:before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  border: 1px solid #133586;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}

#sp-clinic-info .clinic-timetable table tr td .round-b:before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: -7px;
  margin-left: -7px;
  background-color: #133586;
  border: 1px solid #133586;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}

#sp-clinic-info .clinic-timetable table tr td .border:before {
  content: "";
  width: 10px;
  height: 2px;
  margin-top: -1px;
  margin-left: -5px;
  background-color: #133586;
  position: absolute;
  top: 50%;
  left: 50%;
}

#sp-sns-box {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  margin-top: 30px;
}

#sp-sns-box a {
  display: inline-block;
  line-height: 0;
}

/* btn-hamburger */
#btn-hamburger {
  position: relative;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 50px;
  height: 50px;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  transition: all .3s ease;
}

header.is-scroll #btn-hamburger {
  background-color: #F8F8F8;
}

#btn-hamburger.opening {
  background-color: #F8F8F8;
}

#btn-hamburger .border {
  position: absolute;
  left: 17px;
  transition: opacity, transform 0.3s ease;
  background: var(--color-main);
  width: 16px;
  height: 1px;
  z-index: 1;
}

#btn-hamburger .border:first-child {
  top: calc(50% - 8px);
}

#btn-hamburger .border:nth-child(2) {
  transform: rotate(0);
  opacity: 1;
  top: 50%;
}

#btn-hamburger .border:nth-child(3) {
  top: calc(50% + 8px);
}

#btn-hamburger.opening .border:first-child {
  transform: rotate(45deg);
  top: 50%;
}

#btn-hamburger.opening .border:nth-child(2) {
  opacity: 0;
}

#btn-hamburger.opening .border:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1280px) {
  #sp-menu {
    display: none;
  }

  #btn-hamburger {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #sp-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }
}

/* ============================
	header
============================ */
#header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header.h-fixed {
  position: fixed;
}

#header .h-inner {
  align-items: center;
  row-gap: 20px;
  flex-wrap: nowrap;
  width: 100%;
  padding: 30px 30px 30px 40px;
  background: transparent;
  transition: all .3s ease;
}

#header.is-scroll .h-inner {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fff;
}

#header #h-site-logo {
  display: flex;
  align-items: center;
  gap: 10px 20px;
}

#header #h-site-logo .header-description {
  font-size: 1.4rem;
}

#h-gnav-box.flex-start {
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

#h-gnav-box>ul>li {
  line-height: 1.2;
  position: relative;
}

#h-gnav-box>ul>li::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #DBDBDB;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 0;
}

#h-gnav-box>ul>li:last-child::after {
  display: none;
}

#h-gnav-box .menu-item {
  position: relative;
}

#h-gnav-box .menu-item a {
  font-weight: 700;
  padding: 10px 20px;
}

#h-gnav-box>ul>li.menu-item-has-children>a {
  padding-right: 42px;
  position: relative;
}

#h-gnav-box>ul>li.menu-item-has-children>a::after {
  content: url('./images/common/icon_border_arrow_gnav.svg');
  font-size: 0;
  line-height: 0;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  right: 20px;
}

#h-gnav-box .menu-item .sub-menu {
  width: 260px;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
  transition: all .3s ease;
}

#h-gnav-box .menu-item:hover>.sub-menu {
  pointer-events: auto;
  opacity: 1;
}

#h-gnav-box .menu-item .sub-menu>li {
  border-left: 4px solid var(--color-accent);
  border-bottom: 1px solid #E8E8E8;
}

#h-gnav-box .menu-item .sub-menu>li:last-child {
  border-bottom: none;
}

#h-gnav-box .menu-item .sub-menu>li>a {
  display: block;
  padding: 20px 50px 20px 26px;
  position: relative;
}

#h-gnav-box .menu-item .sub-menu>li>a::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url('./images/common/btn_arrow_b_small.svg') no-repeat center / contain;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  right: 20px;
}

#h-sns-box {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-left: 10px;
}

#h-sns-box a {
  display: inline-block;
  line-height: 0;
}

@media screen and (max-width: 1519px) {
  #header #h-site-logo {
    max-width: 360px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1279px) {
  #header .h-inner {
    padding: 15px 20px 15px 30px;
    transition: all .3s ease;
  }

  #header .h-inner.opening {
    background-color: #fff;
  }

  #header #h-site-logo {
    max-width: 280px;
    height: 80px;
    justify-content: space-between;
    row-gap: 0;
  }

  #h-gnav-box {
    display: none;
  }
  #h-sns-box {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #header .h-inner {
    padding: 10px 15px;
  }

  #header #h-site-logo {
    max-width: 230px;
    height: 60px;
  }

  #header #h-site-logo .img-box a img {
    width: auto;
    height: 36px;
  }

  #header #h-site-logo .header-description {
    font-size: 1.2rem;
  }
}

/* ============================
	footer
============================ */
#copyright {
  padding: 80px 0;
}

#copyright p {
  text-align: center;
  font-size: 1.6rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #footer {
    padding-bottom: 80px;
  }
  #copyright {
    padding: 50px 0;
  }
}


/* ============================
	mainvisual
============================ */
.mainvisual {
  width: 100%;
  position: relative;
}

#page-mv .mainvisual::before {
  content: "";
  width: 100%;
  height: 846px;
  background: url('./images/common/page_mv_bg.png') no-repeat center top / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#top-mv #top-slider .slick-slide {
  width: 100%;
  height: 100vh;
  max-height: 760px;
}

#top-mv #top-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top-mv .mv-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#top-mv .mv-inner #mv-ttl {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 60px;
}

#top-mv .mv-inner #mv-ttl span {
  display: inline-block;
  color: var(--color-main);
  font-size: 3.2rem;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

#top-mv .mv-inner #mv-ttl span::after {
  content: "";
  width: 130px;
  height: 130px;
  background: url('./images/home/top_mv_ttl_deco.png') no-repeat center / contain;
  position: absolute;
  top: -60px;
  left: 260px;
  z-index: 2;
}

#page-mv .mv-inner {
  padding: 185px 0 60px;
}

#page-mv .page-ttl {
  color: var(--color-main);
  text-align: center;
  font-size: 5.2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

#page-mv .page-ttl.eng-bold {
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  #top-mv {
    margin-bottom: 62px;
  }

  #top-mv #top-slider .slick-slide {
    width: 100%;
    height: auto;
    max-height: 630px;
    aspect-ratio: 375 / 315;
  }

  #top-mv .mv-inner {
    /* height: auto;
    max-height: 630px;
    aspect-ratio: 375 / 315;
    background: url('./images/home/top_mv_sp.png') no-repeat center / cover;
    position: relative; */
  }

  #top-mv .mv-inner #mv-ttl {
    height: auto;
    padding-bottom: 0;
    position: absolute;
    bottom: -62px;
    left: 0;
  }

  #top-mv .mv-inner #mv-ttl span {
    font-size: 2.2rem;
  }

  #top-mv .mv-inner #mv-ttl span::after {
    width: 82px;
    height: 82px;
    top: -35px;
    left: 190px;
  }

  #page-mv .mv-inner {
    padding: 130px 0 40px;
  }

  #page-mv .page-ttl {
    font-size: 2.8rem;
  }
}

/* ============================
	section
============================ */
.sec-inner {
  padding: 100px 0;
}

.sec-ttl-box {
  margin-bottom: 60px;
}

.sec-ttl-box.center {
  text-align: center;
}

.sec-ttl-box.bottom-border {
  padding-bottom: 30px;
  position: relative;
}

.sec-ttl-box.bottom-border::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec-ttl-box.center.bottom-border::after {
  margin-left: -25px;
  left: 50%;
}

.sec-ttl {
  font-size: 5.2rem;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 1.2;
}

.sec-ttl.eng-ttl {
  font-size: 6.8rem;
  letter-spacing: 0.05em;
}

.sec-ttl span.gradation {
  color: var(--color-main);
  background: linear-gradient(135deg, #0094c0, #123484);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.ttl-type-a {
  color: var(--color-main);
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

.ttl-type-b {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 10px 20px 10px 20px;
  border-bottom: 1px solid rgba(101, 114, 145, 0.2);
  position: relative;
}

.ttl-type-b::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--color-accent);
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.content-width {
  box-sizing: border-box;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .sec-inner {
    padding: 60px 0;
  }

  .sec-ttl-box {
    margin-bottom: 30px;
  } 

  .sec-ttl-box.bottom-border {
    padding-bottom: 20px;
    position: relative;
  }

  .sec-ttl {
    font-size: 3.2rem;
  }

  .sec-ttl.eng-ttl {
    font-size: 3.2rem;
    letter-spacing: 0.05em;
  }

  .ttl-type-a {
    font-size: 2.4rem;
  }

  .ttl-type-b {
    font-size: 1.6rem;
  }
}

/* ============================
	btn / link
============================ */
.btn-box {
  margin-top: 60px;
}

.btn-box.center {
  text-align: center;
}

.btn-box.right {
  text-align: right;
}

.btn-box .btn-primary {
  display: inline-block;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

.btn-box .btn-primary .btn-arrow {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-box .btn-primary .btn-arrow::before {
  content: "";
  width: 60px;
  height: 60px;
  background: url('./images/common/btn_arrow_b.svg') no-repeat center / contain;
  line-height: 0;
}

.btn-box .btn-primary .btn-arrow.btn-white::before {
  background: url('./images/common/btn_arrow_w.svg') no-repeat center / contain;
}

.btn-box .btn-secondary {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.btn-box .btn-secondary .btn-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-box .btn-secondary .btn-arrow::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url('./images/common/btn_arrow_b_small.svg') no-repeat center / contain;
  line-height: 0;
}

.outbound-link {
  display: inline-block;
  color: #133586!important;
  position: relative;
  padding-right: 18px;
}

.outbound-link::before {
  content: "";
  width: calc(100% - 18px);
  height: 1px;
  background-color: #133586;
  position: absolute;
  bottom: 0;
  left: 0;
}

.outbound-link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url('./images/common/icon_outbound_link.svg') no-repeat center / contain;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  right: 0;
}

.fixed-btn-container {
  position: fixed;
  top: 160px;
  right: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  z-index: 100;
}

.fixed-btn-container .fixed-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
  color: #fff;
  font-weight: 700;
  width: 80px;
  min-height: 180px;
  padding: 20px 0;
  border-radius: 20px 0 0 20px;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.fixed-btn-container .fixed-btn.access-btn {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.fixed-btn-container .fixed-btn.online-btn {
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.fixed-btn-container .fixed-btn.monshin-btn {
  color: var(--color-main);
  background-color: #EFFAFF;
  border-color: var(--color-main);
}

.fixed-btn-container .fixed-btn p {
  font-size: 1.8rem;
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1281px) {
  .fixed-btn-container .fixed-btn p {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media screen and (max-width: 1280px) {
  .fixed-btn-container {
    width: 100%;
    top: unset;
    bottom: 0;
    flex-direction: row;
  }

  .fixed-btn-container .fixed-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: calc(100% / 3)!important;
    min-height: initial;
    border-radius: 10px 10px 0 0;
    padding: 10px 8px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-bottom: none;
    border-right: 2px solid transparent
  }
}

@media screen and (max-width: 767px) {
  .btn-box {
    margin-top: 40px;
  }

  .btn-box .btn-primary {
    font-size: 1.6rem;
  }

  .btn-box .btn-primary .btn-arrow {
    gap: 10px;
  }

  .btn-box .btn-primary .btn-arrow::before {
    width: 40px;
    height: 40px;
  }

  .btn-box .btn-secondary {
    font-size: 1.4rem;
  }

  .fixed-btn-container .fixed-btn .img-box img {
    width: auto;
    height: auto;
    max-width: 25px;
    max-height: 25px;
  }

  .fixed-btn-container .fixed-btn p {
    font-size: 1.2rem;
  }
}

/* ============================
	breadcrumb
============================ */
.breadcrumbs {
  padding: 8px 0 28px;
  font-size: 1.6rem;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-main);
}

.breadcrumbs span {
  color: #AAAAAA;
}

.breadcrumbs a,
.breadcrumbs a span {
  color: var(--color-accent);
}

.breadcrumbs-box>span {
  padding-left: 28px;
  padding-right: 20px;
  position: relative;
}
.breadcrumbs-box>span::before {
  content: "";
  width: 8px;
  height: 12px;
  background: url('./images/common/arrow_breadcrumbs.svg') no-repeat center / contain;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  left: 0;
}
.breadcrumbs-box>span:first-child {
  padding-left: 0;
}
.breadcrumbs-box>span:first-child::before {
  display: none;
}
.breadcrumbs-box>span:last-child {
  padding-right: 0;
}


@media screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 1.4rem;
  }
  .breadcrumbs-box {
    display: flex;
    flex-direction: column;
  }
  .breadcrumbs-box>span {
    padding-left: 18px;
    padding-right: 0;
  }
}

/* ============================
	pagenavi
============================ */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  margin: 60px 0 0;
  font-size: 1.6rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-weight: bold;
  line-height: 1;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  text-align: center;
  transition: all 0.3s ease;
}

.wp-pagenavi a:hover,
.wp-pagenavi span {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
  opacity: 1;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  transition: all 0.3s ease;
}

.wp-pagenavi .extend {
  width: 1em;
  color: var(--color-main);
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
}

.wp-pagenavi .extend::after {
  content: "…";
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  text-indent: -999999px;
  vertical-align: middle;
}

.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
}

.wp-pagenavi .previouspostslink::after {
  transform: rotate(225deg);
}

.wp-pagenavi .nextpostslink::after {
  transform: rotate(45deg);
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  border-color: #fff;
}

.result_count {
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-main);
}

/* ============================
	post parts
============================ */
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-date {
  color: var(--color-main);
  line-height: 1;
  letter-spacing: 0.05em;
  width: 85px;
}

.post-cats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-cats.flex-start {
  justify-content: flex-start;
  align-items: center;
}

.post-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main)!important;
  font-size: 1.6rem;
  padding: 8px 8px;
  width: 130px;
  text-align: center;
  border: 1px solid rgba(19, 53, 135, 0.1);
  border-radius: 20px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .post-cat {
    font-size: 1.1rem;
    width: 90px;
  }

  .post-date {
    font-size: 1.4rem;
  }
}

/* ============================
	news list
============================ */
.news-item {
  padding: 25px 0;
  display: flex;
  align-items: center;
  gap: 10px 35px;
  border-bottom: 1px solid #dbdbdb;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item .post-ttl {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-item .post-ttl {
    font-size: 1.4rem;
  }
}

/* ============================
	card list
============================ */
.card-list {
  margin-top: -30px;
  margin-left: -80px;
}

.card-item {
  width: 280px;
  margin-top: 30px;
  margin-left: 80px;
}

.card-item .post-thumb img {
  width: 100%;
}

.card-item .post-info {
  margin-top: 20px;
}

.card-item .post-ttl {
  font-size: 1.5rem;
  margin: 20px 0 0;
}

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

/* ============================
	contact form
============================ */
.contact-box .required {
  display: inline-block;
  background-color: #e21414;
  color: #fafafa;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  right: 10px;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="email"],
.contact-box input[type="tel"],
.contact-box input[type="url"],
.contact-box input[type="number"],
.contact-box textarea {
  box-sizing: border-box;
}

.contact-box th {
  text-align: left;
  box-sizing: border-box;
  width: 25%;
  position: relative;
  padding-right: 60px;
}

.contact-box td {
  box-sizing: border-box;
  width: 75%;
}

.contact-box .your-email {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .zip {
  width: 150px;
  box-sizing: border-box;
}

.contact-box .your-address {
  box-sizing: border-box;
  width: 100%;
}

.contact-box .your-content {
  width: 100%;
  box-sizing: border-box;
}

.confirmation {
  text-align: center;
}

.submit-area .wpcf7-response-output {
  text-align: center;
}

.submit-area {
  width: 300px;
  position: relative;
  margin: 0 auto;
}

.submit-area .wpcf7-submit {
  background-color: var(--color-main);
  color: #fff;
  line-height: 1;
  width: 300px;
  padding: 16px 0;
}

.submit-area .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 0 0 10px;
}

@media screen and (max-width: 767px) {
  .contact-box input[type="text"],
  .contact-box input[type="password"],
  .contact-box input[type="email"],
  .contact-box input[type="tel"],
  .contact-box input[type="url"],
  .contact-box input[type="number"],
  .contact-box textarea {
    width: 100%;
  }

  .contact-box td,
  .contact-box th {
    display: block;
    width: 100%;
  }
}

/* ============================
	clinic-info
============================ */
#clinic-info {
  position: relative;
  border-top: 1px solid #E5E5E5;
}

#clinic-info .sec-inner {
  padding-bottom: 0;
}

#clinic-info::before {
  content: "";
  width: 100%;
  height: 1067px;
  background: url('./images/common/clinic_info_bg.png') no-repeat right top / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.clinic-info-content {
  display: flex;
}

.clinic-info-content .gmap-box {
  width: 50%;
}

.clinic-info-content .gmap-box iframe {
  width: 100%;
  height: 100%;
}

.clinic-info-content .text-box {
  width: 50%;
  padding-left: 50px;
}

.clinic-info-content .text-box .clinic-logo {
  margin: 0;
  line-height: 0;
}

.clinic-info-content .text-box .clinic-tel {
  color: #133586;
  font-size: 2.6rem;
  letter-spacing: 0.03em;
  margin: 15px 0 20px;
}

.clinic-info-content .text-box .clinic-tel span.s-text {
  display: inline-block;
  font-size: 1.4rem;
  padding-right: 4px;
}

.clinic-info-content .text-box .clinic-addr {
  margin-top: 30px;
}

.clinic-info-content .text-box .clinic-addr h3 {
  font-size: 1.6rem;
  margin: 0;
}

.clinic-info-content .text-box .clinic-addr p {
  font-size: 1.4rem;
  margin: 10px 0 0;
}

.clinic-info-content .text-box .clinic-close {
  margin-top: 20px;
}

.clinic-info-content .text-box .clinic-close h3 {
  font-size: 1.6rem;
  margin: 0;
}

.clinic-info-content .text-box .clinic-close p {
  font-size: 1.4rem;
  margin: 10px 0 0;
}

.clinic-info-content .text-box .clinic-timetable {
  margin-top: 24px;
}

.clinic-info-content .text-box .clinic-timetable table {
  color: #133586;
  margin: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: 1px solid #D5DAE6;
}

.clinic-info-content .text-box .clinic-timetable table tr th,
.clinic-info-content .text-box .clinic-timetable table tr td {
  text-align: center;
  font-weight: 500;
  line-height: 1;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #D5DAE6;
}

.clinic-info-content .text-box .clinic-timetable table tr th {
  background-color: transparent;
}

.clinic-info-content .text-box .clinic-timetable table tr td .round,
.clinic-info-content .text-box .clinic-timetable table tr td .round-b,
.clinic-info-content .text-box .clinic-timetable table tr td .border {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 0;
  box-sizing: border-box;
  position: relative;
}

.clinic-info-content .text-box .clinic-timetable table tr td.eng-regular {
  letter-spacing: 0.1em;
}

.clinic-info-content .text-box .clinic-timetable table tr td .round:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 1px solid #133586;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}

.clinic-info-content .text-box .clinic-timetable table tr td .round-b:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  background-color: #133586;
  border: 1px solid #133586;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}

.clinic-info-content .text-box .clinic-timetable table tr td .border:before {
  content: "";
  width: 16px;
  height: 2px;
  margin-top: -1px;
  margin-left: -8px;
  background-color: #133586;
  position: absolute;
  top: 50%;
  left: 50%;
}

.clinic-info-content .line-contact {
  margin: 0 0 30px;
}

.clinic-info-content .line-contact a {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  background-color: #00B900;
  padding: 4px 10px;
  border-radius: 8px;
  margin: 5px 0 0;
}

.clinic-reserve-content {
  margin-top: 50px;
  background: linear-gradient(135deg, #FAFDFF, #EFFAFF);
  padding: 60px 0 50px;
}

.clinic-reserve-content .clinic-reserve-ttl {
  color: #133586;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0;
}

.clinic-reserve-content .clinic-reserve-text {
  text-align: center;
  font-size: 1.8rem;
  margin: 20px 0 0;
}

.clinic-reserve-content .reserve-info-box {
  display: flex;
  justify-content: center;
  gap: 20px 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 40px auto 0;
  box-sizing: border-box;
}

.clinic-reserve-content .reserve-info-box .reserve-info {
  width: 100%;
  max-width: 480px;
  background-color: #fff;
  padding: 10px 10px 20px;
  box-sizing: border-box;
}

.clinic-reserve-content .reserve-info-box .reserve-info h3 {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0;
  padding: 20px 10px;
  border-radius: 6px;
}

.clinic-reserve-content .reserve-info-box .reserve-info.general h3 {
  background-color: var(--color-accent);
}

.clinic-reserve-content .reserve-info-box .reserve-info.cosmetic h3 {
  background-color: var(--color-main);
}

.clinic-reserve-content .reserve-info-box .reserve-info .text-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(3em * 1.75);
  margin-top: 20px;
}

.clinic-reserve-content .reserve-info-box .reserve-info p {
  text-align: center;
  line-height: 1.75;
  margin: 0;
}

.clinic-reserve-content .reserve-info-box .reserve-info.gray-out {
  position: relative;
}

.clinic-reserve-content .reserve-info-box .reserve-info.gray-out::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 1023px) {
  .clinic-info-content {
    flex-direction: column-reverse;
    row-gap: 24px;
  }

  .clinic-info-content .gmap-box {
    width: 100%;
  }

  .clinic-info-content .gmap-box iframe {
    width: 100%;
    aspect-ratio: 335 / 200;
  }

  .clinic-info-content .text-box {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .clinic-info-content .gmap-box iframe {
    aspect-ratio: 335 / 298;
  }

  .clinic-info-content .text-box .clinic-logo {
    max-width: 275px;
  }

  .clinic-info-content .text-box .clinic-tel {
    font-size: 2.2rem;
  }

  .clinic-info-content .text-box .clinic-addr h3 {
    font-size: 1.3rem;
  }

  .clinic-info-content .text-box .clinic-addr p {
    font-size: 1.4rem;
  }

  .clinic-info-content .text-box .clinic-close {
    margin-top: 24px;
  }

  .clinic-info-content .text-box .clinic-timetable {
    margin-top: 40px;
  }

  .clinic-info-content .text-box .clinic-timetable table tr th,
  .clinic-info-content .text-box .clinic-timetable table tr td {
    font-size: 1.3rem;
    padding: 8px 6px;
  }

  .clinic-info-content .text-box .clinic-timetable table tr td .round,
  .clinic-info-content .text-box .clinic-timetable table tr td .round-b,
  .clinic-info-content .text-box .clinic-timetable table tr td .border {
    width: 14px;
    height: 14px;
  }

  .clinic-info-content .text-box .clinic-timetable table tr td .round:before {
    width: 14px;
    height: 14px;
    margin-top: -7px;
    margin-left: -7px;
  }

  .clinic-info-content .text-box .clinic-timetable table tr td .round-b:before {
    width: 14px;
    height: 14px;
    margin-top: -7px;
    margin-left: -7px;
  }

  .clinic-info-content .text-box .clinic-timetable table tr td .border:before {
    width: 10px;
    margin-left: -5px;
  }

  .clinic-info-content .line-contact {
    font-size: 1.4rem;
  }

  .clinic-reserve-content {
    padding: 50px 20px;
  }

  .clinic-reserve-content .clinic-reserve-ttl {
    font-size: 2.4rem;
  }

  .clinic-reserve-content .clinic-reserve-text {
    font-size: 1.4rem;
    margin: 30px 0 0;
  }

  .clinic-reserve-content .reserve-info-box {
    flex-direction: column;
    max-width: initial;
    padding-left: 0;
    padding-right: 0;
    margin: 30px auto 0;
  }

  .clinic-reserve-content .reserve-info-box .reserve-info {
    max-width: initial;
  }

  .clinic-reserve-content .reserve-info-box .reserve-info h3 {
    font-size: 1.8rem;
  }

  .clinic-reserve-content .reserve-info-box .reserve-info .text-inner {
    min-height: initial;
  }

  .clinic-reserve-content .reserve-info-box .reserve-info p {
    font-size: 1.3rem;
  }
}

/* ============================
	plan archive
============================ */
#archive-plan-wrapper.tax-plan-wrapper {
  display: flex;
  flex-direction: column-reverse;
}

#archive-plan-wrapper:not(.tax-plan-wrapper) #archive-worries .sec-inner,
#archive-plan-wrapper.tax-plan-wrapper #archive-plan .sec-inner {
  padding-bottom: 60px;
}

#archive-plan-wrapper.tax-plan-wrapper #archive-plan .sec-inner {
  padding-top: 0;
}

.plan-content-box {
  display: flex;
  gap: 70px;
}

.plan-content-box .plan-main-content {
  flex-grow: 1;
}

.side-navi-area {
  width: 20%;
  flex-shrink: 0;
}

.side-plan-menu + .side-plan-menu {
  margin-top: 15px;
}

.side-plan-category {
  display: flex;
  align-items: center;
  gap: 10px 10px;
  font-size: 1.4rem;
  margin: 0;
  background-color: #fff;
  padding: 8px 12px;
  border: 4px solid #EFFAFF;
  border-radius: 20px;
  box-sizing: border-box;
}

.side-plan-category img {
  width: 60px;
  padding-right: 10px;
  border-right: 1px solid #DBDBDB;
  flex-shrink: 0;
}

.side-plan-list {
  display: flex;
  flex-direction: column;
}

.side-plan-list .side-plan-item a {
  display: block;
  font-size: 1.4rem;
  padding: 8px 12px;
  border-bottom: 1px solid #DBDBDB;
}

.plan-category-content {
  background-color: #fff;
}

.plan-category-content + .plan-category-content {
  margin-top: 30px;
}

.plan-category-content .plan-category {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.2;
  background: linear-gradient(50deg, #0097C4, #15AEDB);
  padding: 20px 30px;
  margin: 0;
  border-radius: 0 0 30px 0;
}

.plan-category-content .plan-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  padding: 30px;
}

.plan-category-content .plan-list .plan-item {
  border-top: 1px solid rgba(101, 114, 145, 0.2);
}

.plan-category-content .plan-list .plan-item:nth-child(-n+2) {
  border-top: none;
}

.plan-category-content .plan-list .plan-item a {
  display: block;
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 15px 40px 15px 20px;
  position: relative;
}

.plan-category-content .plan-list .plan-item a::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--color-accent);
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.plan-category-content .plan-list .plan-item a::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url('./images/common/btn_arrow_b_small.svg') no-repeat center / contain;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  right: 0;
}

.tax-plan-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

.tax-plan-list .tax-plan-item {
  border-top: 1px solid rgba(101, 114, 145, 0.2);
}

.tax-plan-list .tax-plan-item:nth-child(-n+2) {
  border-top: none;
}

.tax-plan-list .tax-plan-item a {
  display: block;
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 15px 40px 15px 20px;
  position: relative;
}

.tax-plan-list .tax-plan-item a::before {
  content: "";
  width: 10px;
  height: 2px;
  background: var(--color-accent);
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.tax-plan-list .tax-plan-item a::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url('./images/common/btn_arrow_b_small.svg') no-repeat center / contain;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  right: 0;
}

@media screen and (max-width: 1023px) {
  .side-navi-area {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .plan-category-content .plan-category {
    font-size: 2rem;
    padding: 20px 20px;
  }

  .plan-category-content .plan-list {
    display: block;
    padding: 20px 20px 30px;
  }

  .plan-category-content .plan-list .plan-item a {
    font-size: 1.8rem;
  }

  .plan-category-content .plan-list .plan-item:nth-child(2n) {
    border-top: 1px solid rgba(101, 114, 145, 0.2);
  }

  .tax-plan-list {
    display: block;
  }

  .tax-plan-list .tax-plan-item a {
    font-size: 1.8rem;
  }

  .tax-plan-list .tax-plan-item:nth-child(2n) {
    border-top: 1px solid rgba(101, 114, 145, 0.2);
  }
}

/* ============================
	worries
============================ */
.worries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 18px;
}

.worries-list .worries-item {
  width: 185px;
  background-color: #fff;
  border: 8px solid #EFFAFF;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 17px 12px 22px
}

.worries-list .worries-item a {
  display: inline-block;
}

.worries-list .worries-item .text-box {
  border-top: 1px solid #DBDBDB;
  margin-top: 10px;
}

.worries-list .worries-item .text-box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  min-height: calc(2em * 1.4);
  padding-top: 20px;
  margin: 0;
  box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .worries-list {
    gap: 15px;
  }

  .worries-list .worries-item {
    width: calc((100% - 15px) / 2);
    max-width: 160px;
    border: 6px solid #EFFAFF;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 12px 14px 18px
  }

  .worries-list .worries-item .text-box h3 {
    font-size: 1.6rem;
    padding-top: 10px;
  }
}

/* ============================
	plan single
============================ */
.sec-plan .sec-inner {
  padding-bottom: 0;
}

.plan-content-ttl-box {
  margin-bottom: 30px;
}

.plan-content-ttl {
  color: var(--color-main);
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0;
}

.pg-desc p {
  margin: 0;
}

.plan-pg-navi {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}

.plan-pg-navi li {
  border-radius: 8px;
  overflow: hidden;
  width: calc((100% - 45px) / 4);
  border: 1px solid var(--color-main);
}

.plan-pg-navi li .navi-btn {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  width: 100%;
  background-color: #fff;
  padding: 15px 30px 15px 14px;
  border-left: 6px solid var(--color-main);
  box-sizing: border-box;
  position: relative;
  height: 100%;
}

.plan-pg-navi li .navi-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: rotate(45deg);
}

#plan-menus .btn-box,
#plan-menus2 .btn-box {
  margin-top: 40px;
}

#plan-menus .btn-box .btn-primary,
#plan-menus2 .btn-box .btn-primary {
  font-size: 1.8rem;
}

#plan-menus .btn-box .btn-primary .btn-arrow::before,
#plan-menus2 .btn-box .btn-primary .btn-arrow::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url('./images/common/btn_arrow_b.svg') no-repeat center / contain;
}

.plan-point .point-label {
  display: inline-block;
  color: var(--color-accent);
  padding-right: 1em;
}

@media screen and (max-width: 767px) {
  .plan-content-ttl {
    font-size: 2.4rem;
  }

  .plan-pg-navi {
    gap: 10px;
  }

  .plan-pg-navi li {
    width: calc((100% - 10px) / 2);
  }

  .plan-pg-navi li .navi-btn {
    font-size: 1.4rem;
    padding: 15px 20px 15px 11px;
    border-left: 4px solid var(--color-main);
  }
}

/* ============================
	plan single / 施術例
============================ */
#plan-examples .plan-example + .plan-example {
  margin-top: 60px;
}

#plan-examples .plan-example-container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
}

#plan-examples .plan-example-container::before {
  content: "";
  width: 15px;
  height: 24px;
  background: url('./images/common/icon_border_arrow.svg') no-repeat center / contain;
  position: absolute;
  top: calc(50% + 23px);
  left: 50%;
  transform: translate(-50%, -50%);
}

#plan-examples .plan-example-container .label-box {
  margin-bottom: 10px;
}

#plan-examples .plan-example-container .example-label {
  display: inline-block;
  color: var(--color-main);
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #FAFDFF, #EFFAFF);
  padding: 2px 20px;
  min-width: 110px;
  box-sizing: border-box;
}

#plan-examples .plan-example-container >* {
  width: calc(50% - 25px);
}

#plan-examples .plan-example-container + .txt-box {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  #plan-examples .plan-example + .plan-example {
    margin-top: 60px;
  }

  #plan-examples .plan-example-container {
    flex-direction: column;
  }

  #plan-examples .plan-example-container::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  #plan-examples .plan-example-container .example-label {
    font-size: 1.6rem;
  }

  #plan-examples .plan-example-container >* {
    width: calc(50% - 25px);
  }

  #plan-examples .plan-example-container + .txt-box {
    margin-top: 30px;
  }
}

/* ============================
	plan single / FAQ
============================ */
#plan-faqs .question {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	margin-bottom: 16px;
	padding: 11px 8px 9px 50px;
	font-size: 16px;
	font-weight: bold;
	color: var(--color-main);
	background: #EFFAFF;
}
#plan-faqs .answer + .question {
	margin-top: 20px;
}
#plan-faqs .question::before {
  content: "Q";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  width: 1.6em;
  height: 1.6em;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-main);
  background: #fff;
  border-radius: 50%;
  text-align: center;
}

#plan-faqs .answer {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	padding: 2px 0 2px 50px;
  margin: 0;
}
#plan-faqs .answer::before {
  content: "A";
  position: absolute;
  display: block;
  top: 0;
  left: 10px;
  margin: 0;
  width: 1.6em;
  height: 1.6em;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-main);
  background: #EFFAFF;
  border-radius: 50%;
  text-align: center;
}

#plan-faqs .answer p:first-child {
  margin-top: 0;
}
/* ============================
	plan single / 料金表
============================ */
.price-table {
	width: 100%;
  margin-top: 40px;
	margin-bottom: 40px;
}

.price-table:last-child {
  margin-bottom: 0;
}

.price-table th {
	/* white-space: nowrap; */
	background: #F4F4FB;
}

.price-table td {
	vertical-align: middle;
	text-align: right;
	width: 25%;
}

@media screen and (max-width: 767px) {
  .price-table {
    table-layout: fixed;
    width: 100%;
  }

  .price-table th {
    min-width: 100px;
    width: 50%;
    line-height: 1.25;
    font-size: 1.4rem;
    vertical-align: middle;
  }

  .price-table td {
    min-width: 90px !important;
    width: auto;
    white-space: normal;
    font-size: 1.4rem;
  }
}

/* ============================
	plan single / 施術の流れ
============================ */
#plan-flows .plan-flow-content {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	padding: 5px 0 10px 66px;
	background: #fff;
}
#plan-flows .plan-flow-content .label-box {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 46px;
  padding: 5px 0;
  background: #EFFAFF;
}
#plan-flows .plan-flow:last-child .plan-flow-content .label-box {
  padding: 10px 0 0;
}
#plan-flows .plan-flow-content .label-box::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -5px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: rotate(45deg);
  z-index: 2;
}
#plan-flows .plan-flow:last-child .plan-flow-content .label-box::after {
  display: none;
}
#plan-flows .plan-flow-content .label-box .label-box-inner {
  box-sizing: border-box;
  display: table;
  width: 100%;
  height: 100%;
}
#plan-flows .plan-flow-content .label-box .label-box-inner .label {
  display: table-cell;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-main);
  text-align: center;
  vertical-align: middle;
}

#plan-flows .plan-flow-content .img-box {
  max-width: 540px;
  margin-bottom: 20px;
}
#plan-flows .plan-flow-content .ttl-box .flow-ttl {
	font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  #plan-flows .plan-flow-content .ttl-box .flow-ttl {
    font-size: 1.6rem;
  }
}