@charset "UTF-8";
article + article {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  article + article {
    margin-top: 10rem;
  }
}

@media screen and (max-width: 767px) {
  .sp-full {
    margin-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .sp-100 {
    margin-inline: -1.5rem;
  }
}

.gray_box {
  background-color: var(--color-bg);
  padding: 6rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .gray_box {
    padding: 6rem 6rem;
  }
}
@media screen and (min-width: 1000px) {
  .gray_box {
    padding: 6rem 10rem;
  }
}
.gray_box_in {
  background-color: #fff;
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .gray_box_in {
    padding: 3rem;
  }
}

.ov-hidden {
  overflow: hidden;
}

/*---------------
privacy policy
---------------*/
.privacy > p {
  margin-bottom: 4rem;
}
.privacy_article {
  counter-increment: num;
}
@media screen and (min-width: 1000px) {
  .privacy_article {
    padding-left: 6rem;
  }
}
.privacy_article + .privacy_article {
  margin-top: 6rem;
}
.privacy_article h2 {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  align-items: flex-start;
}
@media screen and (min-width: 1000px) {
  .privacy_article h2 {
    margin-left: -6rem;
  }
}
.privacy_article h2:before {
  content: counter(num, decimal-leading-zero);
  border-bottom: 2px solid var(--color-main);
  font-weight: 500;
}
.privacy_article p:not(.note_txt) + p, .privacy_article p:not(.note_txt) + ul, .privacy_article p:not(.note_txt) + ol {
  margin-top: 2rem;
}
.privacy_article ol > li {
  counter-increment: list;
}
@media screen and (min-width: 768px) {
  .privacy_article ol > li {
    position: relative;
    padding-left: 3em;
  }
}
.privacy_article ol > li:before {
  content: "（" counter(list) "）";
  display: block;
}
@media screen and (min-width: 768px) {
  .privacy_article ol > li:before {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.privacy_article ol > li + li {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .privacy_article ol > li + li {
    margin-top: 2rem;
  }
}
.privacy_article ol + p {
  margin-top: 2rem;
}
.privacy_article .ul-list {
  font-size: 1.4rem;
  margin-block: 1em;
}
@media screen and (min-width: 768px) {
  .privacy_article .ul-list {
    font-size: 1.6rem;
  }
}
.privacy_article .ul-list li + li {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .privacy_article .ul-list li + li {
    margin-top: 1rem;
  }
}
.privacy_col {
  margin-block: 1em;
}
@media screen and (min-width: 768px) {
  .privacy_col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .privacy_col {
    gap: 3rem 6rem;
  }
}
.privacy_col li {
  line-height: 1.5;
}
.privacy_col li + li {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .privacy_col li + li {
    margin-top: 0;
  }
}
.privacy_col a {
  font-size: 1.4rem;
}

.box-beige {
  background-color: var(--color-bg);
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .box-beige {
    padding: 4rem;
  }
}

/*---------------
FAQ
---------------*/
.block_faq + .block_faq {
  margin-top: 2rem;
}
.block_faq[open] summary::after {
  transform: rotate(45deg);
}
.block_faq summary {
  list-style: none;
  font-size: 1.6rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 3rem;
  color: var(--color-black);
}
.block_faq summary::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: none;
  border-top: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  transform: rotate(-135deg);
  margin: 0.8rem 0 0 auto;
}
@media screen and (min-width: 768px) {
  .block_faq summary {
    font-size: 1.8rem;
  }
}
.block_faq summary + .wp-block-group {
  padding-top: 0;
}
.block_faq .wp-block-group {
  margin-inline: 3rem;
  padding-block: 2rem;
}
@media screen and (min-width: 1000px) {
  .block_faq .wp-block-group {
    max-width: 72rem;
    margin-inline-start: auto;
    margin-inline-end: 10rem;
  }
}
.block_faq .wp-block-group + .wp-block-group {
  border-top: 1px solid var(--color-border);
}
.block_faq .wp-block-group:last-child {
  padding-bottom: 4rem;
}
.block_faq .wp-block-group h2 {
  font-size: 1.6rem;
  color: var(--color-main);
  position: relative;
  padding-left: 2.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.block_faq .wp-block-group h2:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
}
.block_faq .wp-block-group h2 + p {
  position: relative;
}
.block_faq .wp-block-group h2 + p::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
}
.block_faq .wp-block-group p {
  font-size: 1.6rem;
  padding-left: 2.8rem;
}
.block_faq .wp-block-group .txt-link {
  justify-content: flex-end;
  margin-top: 2rem;
}

/*---------------
recruit
---------------*/
#navigation-container {
  margin-block: 4rem;
}
#navigation-container ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  #navigation-container ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#navigation-container ul li {
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
#navigation-container ul li:first-child {
  border-left: 1px solid var(--color-main);
}
@media screen and (max-width: 767px) {
  #navigation-container ul li:nth-child(3n) {
    border-left: 1px solid var(--color-main);
  }
}
@media screen and (max-width: 767px) {
  #navigation-container ul li:nth-child(n+3) {
    border-top: none;
  }
}
#navigation-container ul li a {
  display: block;
  font-size: 1.6rem;
  background-color: #fff;
  color: var(--color-main);
  padding: 1rem 0;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #navigation-container ul li a {
    padding-inline: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  #navigation-container ul li a {
    font-size: 1.8rem;
  }
}
@media (hover) {
  #navigation-container ul li a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
  #navigation-container ul li a:hover:after {
    border-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  #navigation-container ul li a:after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid var(--color-main);
    border-bottom: 2px solid var(--color-main);
    transform: rotate(45deg);
    position: absolute;
    right: 1.4rem;
    top: 50%;
    margin-top: -0.6rem;
    transition: 0.3s;
  }
}

.block_recruit + .block_recruit {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .block_recruit + .block_recruit {
    margin-top: 10rem;
  }
}
.block_recruit h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.block_recruit .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #fff !important;
}
.block_recruit .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: var(--color-bg) !important;
}
.block_recruit table {
  width: 100%;
  border: 1px solid var(--color-main);
}
.block_recruit table td {
  vertical-align: top;
  padding-block: 1rem;
  font-size: 1.4rem;
  padding-inline: 0.8rem;
  border: none;
  border-color: inherit !important;
  border-bottom: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .block_recruit table td {
    font-size: 1.8rem;
  }
}
.block_recruit table td:first-child {
  background-color: var(--color-main);
  color: #fff;
  font-weight: 500;
  padding-inline: 1.4rem;
  border-bottom: 1px solid var(--color-border-pink) !important;
}

/*---------------
ACCESS
---------------*/
.access_google {
  aspect-ratio: 25/18;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .access_google {
    margin-bottom: 4rem;
    aspect-ratio: 25/14;
  }
}
.access_google iframe {
  width: 100%;
  height: 100%;
}
.access .bg-gray {
  padding: 3rem 2.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .access .bg-gray {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .access .bg-gray {
    padding: 4rem;
  }
}
.access_ttl {
  color: var(--color-txt);
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.access_ttl img {
  width: 3.3rem;
  margin-right: 1.5rem;
}
.access_flow {
  display: grid;
  row-gap: 4rem;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .access_flow {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .access_flow {
    grid-template-columns: repeat(4, 1fr);
  }
}
.access_flow li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  align-items: flex-start;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .access_flow li {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }
}
.access_flow li span {
  line-height: 1;
}
.access_flow li span i {
  display: inline-block;
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 2px solid var(--color-main);
  color: var(--color-main);
  line-height: 1.3;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .access_flow li p {
    grid-area: 1/2/2/3;
  }
}
.access_flow li figure {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .access_flow li figure {
    grid-area: 2/1/3/3;
  }
}
.access_flow li figure img {
  width: 100%;
}

#car .access_google {
  margin-bottom: 0;
  margin-top: 4rem;
}

/*---------------
TREATMENT PROCESS
---------------*/
.process_top {
  text-align: center;
  padding-block: 6rem;
  margin-top: 4rem;
}
.process_top h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .process_top h3 {
    font-size: 2rem;
  }
}
.process_btn {
  margin-top: 4rem;
  display: grid;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .process_btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem 3rem;
  }
}
@media screen and (min-width: 768px) {
  .process_btn li:first-child {
    width: 100%;
  }
}
.process_btn h4 {
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.process_btn a {
  margin-inline: auto;
}
.process_flow {
  margin-top: 8rem;
}
.process_flow li {
  counter-increment: flow_num;
}
@media screen and (min-width: 768px) {
  .process_flow li {
    display: grid;
    grid-template-columns: 1fr 47.5%;
    grid-template-rows: auto 1fr;
    column-gap: 5%;
  }
}
.process_flow li + li {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .process_flow li.process_flow-full {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    column-gap: 0;
  }
}
.process_flow li > figure {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .process_flow li > figure {
    margin-bottom: 0;
    grid-area: 1/2/3/3;
  }
}
.process_flow li > figure img {
  width: 100%;
}
.process_flow li h3 {
  font-size: 2.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .process_flow li h3 {
    grid-area: 1/1/2/2;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .process_flow li h3 {
    position: relative;
    display: block;
    margin-left: 10rem;
  }
}
.process_flow li h3:before {
  content: counter(flow_num, decimal-leading-zero);
  border-bottom: 2px solid var(--color-main);
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .process_flow li h3:before {
    position: absolute;
    top: 0;
    right: calc(100% + 3.5rem);
  }
}
.process_flow li h3 small {
  font-size: 1.6rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .process_flow li p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .process_flow li p {
    font-size: 1.8rem;
  }
}
.process_flow li p + p {
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .process_flow-txt {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 1000px) {
  .process_flow-txt {
    margin-left: 10rem;
  }
}
.process_flow-txt .bg-gray {
  padding: 3rem 1.5rem;
  margin-block: 2rem;
}
.process_flow-txt .bg-gray p {
  display: flex;
  flex-wrap: wrap;
}
.process_flow-txt .bg-gray p span:not(:last-child):after {
  content: "/";
}

/*---------------
DOCTOR
---------------*/
.doctor_main_inner {
  overflow: hidden;
  margin-bottom: 6rem;
}
@media screen and (min-width: 1000px) {
  .doctor_main_inner {
    background: url(../img/doctor/dr_takase_pc.webp) no-repeat center top/cover;
    padding-block: 6rem;
  }
}
.doctor_main_inner .inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .doctor_main_inner .inner {
    margin-top: -9rem;
  }
}
@media screen and (min-width: 768px) {
  .doctor_main figure {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_main figure {
    display: none;
  }
}
.doctor_main figure img {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .doctor_main_contents {
    max-width: 60rem;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .doctor_main .doctor_post {
    background-color: #fff;
    padding: 3rem 2.5rem 1rem 1.5rem;
    margin-left: -1.5rem;
    width: fit-content;
  }
}
.doctor_main_btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .doctor_main_btn {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.doctor_main_btn li {
  border-right: 1px solid var(--color-light);
  border-top: 1px solid var(--color-light);
  border-bottom: 1px solid var(--color-light);
}
@media screen and (min-width: 768px) {
  .doctor_main_btn li {
    border: 1px solid var(--color-main);
  }
}
@media screen and (max-width: 767px) {
  .doctor_main_btn li:nth-child(odd) {
    border-left: 1px solid var(--color-light);
  }
}
@media screen and (max-width: 767px) {
  .doctor_main_btn li:nth-child(n+3) {
    border-top: none;
  }
}
.doctor_main_btn a {
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 5.5rem;
  line-height: 1.3;
  transition: 0.3s;
}
@media (hover) {
  .doctor_main_btn a:hover {
    background-color: #fff;
    color: var(--color-main);
  }
}
.doctor_main_btn a small {
  font-size: 1.2rem;
}
.doctor_main .doctor_detail {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .doctor_main .doctor_detail {
    margin-bottom: 7.5rem;
  }
}
.doctor_post {
  font-size: 1.4rem;
  color: var(--color-txt);
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .doctor_post {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.doctor_name {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.doctor_name strong {
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-main);
}
.doctor_name span {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-txt);
}
@media screen and (min-width: 768px) {
  .doctor_name span {
    font-size: 1.6rem;
  }
}
.doctor_detail {
  display: grid;
  row-gap: 6rem;
}
@media screen and (min-width: 768px) {
  .doctor_detail {
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
}
@media screen and (min-width: 768px) {
  .doctor_detail_col:nth-child(2) {
    padding-left: 3rem;
  }
}
.doctor_detail_ttl {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}
.doctor_detail_ttl strong {
  font-size: 2.4rem;
  font-weight: 400;
}
.doctor_detail_ttl span {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-main);
  margin-left: 2rem;
}
.doctor_detail_timeline {
  padding-left: 2rem;
}
@media screen and (min-width: 1000px) {
  .doctor_detail_timeline {
    padding-left: 2.5rem;
  }
}
.doctor_detail_timeline li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .doctor_detail_timeline li {
    display: grid;
    grid-template-columns: 8rem 1fr;
    align-items: start;
  }
}
.doctor_detail_timeline li:not(:last-child) {
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .doctor_detail_timeline li:not(:last-child) {
    padding-bottom: 3.5rem;
  }
}
.doctor_detail_timeline li:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--color-main);
  position: absolute;
  left: -1.5rem;
  top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .doctor_detail_timeline li:not(:last-child)::before {
    left: -2rem;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_detail_timeline li:not(:last-child)::before {
    top: 1.4rem;
  }
}
.doctor_detail_timeline p {
  position: relative;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .doctor_detail_timeline p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_detail_timeline p {
    font-size: 1.8rem;
  }
}
.doctor_detail_timeline p::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid var(--color-main);
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: -2rem;
  top: 0.7rem;
}
@media screen and (min-width: 768px) {
  .doctor_detail_timeline p::before {
    left: -2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_detail_timeline p::before {
    top: 1rem;
  }
}
.doctor_detail_timeline h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-txt);
}
@media screen and (min-width: 1000px) {
  .doctor_detail_timeline h3 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .doctor_detail_item {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_detail_item {
    font-size: 1.8rem;
  }
}
.doctor_detail_item + h2 {
  margin-top: 6rem;
}
.doctor_detail_event {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .doctor_detail_event {
    margin-top: 7.5rem;
  }
}
.doctor_detail_event dt {
  display: grid;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .doctor_detail_event dt {
    align-items: start;
    grid-template-columns: 9rem 1fr;
  }
}
.doctor_detail_event dt time {
  font-size: 1.6rem;
  color: var(--color-main);
}
@media screen and (min-width: 1000px) {
  .doctor_detail_event dt time {
    font-size: 1.8rem;
  }
}
.doctor_detail_event dt span {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .doctor_detail_event dt span {
    font-size: 1.8rem;
  }
}
.doctor_detail_event dd {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .doctor_detail_event dd {
    padding-left: 8rem;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_detail_event dd {
    font-size: 1.8rem;
  }
}
.doctor_detail_event dd:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .doctor_book {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    align-items: start;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_book {
    column-gap: 3rem;
  }
}
.doctor_book img {
  border: 1px solid #eee;
}
.doctor_book li {
  display: grid;
  grid-template-columns: 12rem 1fr;
  column-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .doctor_book li {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}
.doctor_book li + li {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .doctor_book li + li {
    margin-top: 0;
  }
}
.doctor_book h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-txt);
  margin-bottom: 2rem;
}
@media screen and (min-width: 1000px) {
  .doctor_book h3 {
    font-size: 1.8rem;
  }
}
.doctor_book_link {
  display: flex;
  flex-wrap: wrap;
}
.doctor_book_link a {
  color: var(--color-main);
  font-size: 1.4rem;
  border: 1px solid var(--color-main);
  line-height: 3rem;
  padding-inline: 1rem;
  margin-bottom: 1rem;
  transition: 0.3s;
}
.doctor_book_link a:not(:last-child) {
  margin-right: 1.5rem;
}
@media (hover) {
  .doctor_book_link a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
}
.doctor_wrap {
  overflow: hidden;
  position: relative;
}
.doctor_wrap_top {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .doctor_wrap_top {
    margin-bottom: 7.5rem;
  }
}
.doctor_wrap_top figure {
  margin-inline: -1.5rem;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .doctor_wrap_top figure {
    margin-inline: 0;
    position: absolute;
    top: 0;
    width: calc(50% - 3rem);
    pointer-events: none;
  }
}
.doctor_wrap_top figure:after {
  content: "";
  width: 26rem;
  height: 8rem;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .doctor_wrap_top figure:after {
    display: none;
  }
}
.doctor_wrap_top figure img {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .doctor_wrap_top figure img {
    height: 50rem;
    object-fit: cover;
  }
}
.doctor_wrap_detail {
  position: relative;
  margin-top: -5rem;
}
@media screen and (min-width: 768px) {
  .doctor_wrap_detail {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_wrap_detail {
    margin-top: 0;
    width: calc(50% - 3rem);
    min-height: 50rem;
  }
}
@media screen and (min-width: 768px) {
  .doctor_wrap_detail .doctor_post {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_wrap-right .doctor_wrap_top figure {
    right: 0;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_wrap-right .doctor_wrap_top figure img {
    object-position: left;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_wrap-left .doctor_wrap_top figure {
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .doctor_wrap-left .doctor_wrap_top figure img {
    object-position: right;
  }
}
.doctor_wrap-left .doctor_wrap_detail {
  margin-left: auto;
}

/*---------------
オンライン診療
---------------*/
.telemedicine h1 {
  margin-bottom: 4rem;
}
.telemedicine .w-mid {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .telemedicine .w-mid {
    margin-top: 10rem;
  }
}
.telemedicine_ttl {
  font-weight: 400;
  margin-bottom: 2rem;
}
.telemedicine_flow li + li {
  margin-top: 4rem;
}
.telemedicine_flow dt {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .telemedicine_flow dt {
    flex-direction: row;
    justify-content: center;
  }
}
.telemedicine_flow dt span {
  color: var(--color-main);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .telemedicine_flow dt span {
    padding-right: 0.5em;
  }
}
.telemedicine_flow dt strong {
  font-weight: 400;
}
.telemedicine_flow dd p strong {
  font-size: 1.34em;
}
.telemedicine_flow_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .telemedicine_flow_btn {
    justify-content: center;
    column-gap: 2rem;
  }
}
.telemedicine_flow_btn img {
  width: auto;
  height: 4.3rem;
}
@media screen and (min-width: 768px) {
  .telemedicine_flow_btn img {
    height: 7.1rem;
  }
}
.telemedicine-regular .gray_box {
  background-color: var(--color-bg-pink);
}
.telemedicine_info {
  margin-top: 6rem;
  text-align: center;
  display: grid;
  row-gap: 3rem;
}
.telemedicine_info h3 img {
  width: 17.7rem;
}
.telemedicine_info a {
  width: 28rem;
  background-color: #008E44;
  color: #fff;
  font-size: 1.8rem;
  padding-block: 2rem;
  line-height: 1;
  margin-inline: auto;
  transition: opacity 0.3s;
}
@media (hover) {
  .telemedicine_info a:hover {
    opacity: 0.7;
  }
}
.telemedicine_note {
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .telemedicine_note {
    padding: 6rem 6rem;
  }
}
@media screen and (min-width: 1000px) {
  .telemedicine_note {
    padding: 6rem 10rem;
  }
}
@media screen and (min-width: 768px) {
  .telemedicine_note li {
    font-feature-settings: "palt";
    letter-spacing: 0.13em;
  }
}
.telemedicine_note p, .telemedicine_note dt, .telemedicine_note dd, .telemedicine_note li {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .telemedicine_note p, .telemedicine_note dt, .telemedicine_note dd, .telemedicine_note li {
    font-size: 1.6rem;
  }
}
.telemedicine_note h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .telemedicine_note h3 {
    font-size: 2rem;
  }
}
.telemedicine_note h3:not(:first-child) {
  margin-top: 4rem;
}
.telemedicine_note .txt-link {
  margin-top: 1em;
}
.telemedicine_note dl {
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .telemedicine_note dl {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
.telemedicine_note dl dt {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .telemedicine_note dl dt {
    display: flex;
    justify-content: space-between;
  }
}
.telemedicine_note dl dt:after {
  content: "：";
}
.telemedicine_note dl dd:not(:last-child) {
  margin-bottom: 1.5em;
}

/*---------------
BENEFIT
---------------*/
.benefit_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}
.benefit_nav li {
  width: 50%;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
@media screen and (min-width: 860px) {
  .benefit_nav li {
    width: 25%;
  }
}
@media screen and (max-width: 859px) {
  .benefit_nav li:nth-child(odd) {
    border-left: 1px solid var(--color-main);
  }
}
@media screen and (max-width: 859px) {
  .benefit_nav li:nth-child(n+3) {
    border-top: none;
  }
}
@media screen and (min-width: 860px) {
  .benefit_nav li:nth-child(1), .benefit_nav li:nth-child(5n) {
    border-left: 1px solid var(--color-main);
  }
}
@media screen and (min-width: 860px) {
  .benefit_nav li:nth-child(n+5) {
    border-top: none;
  }
}
.benefit_nav li a {
  position: relative;
  display: block;
  color: var(--color-main);
  text-align: center;
  transition: 0.3s;
  padding-block: 1rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .benefit_nav li a {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .benefit_nav li a:after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid var(--color-main);
    border-bottom: 2px solid var(--color-main);
    transform: rotate(45deg);
    position: absolute;
    right: 1.4rem;
    top: 50%;
    margin-top: -0.6rem;
    transition: 0.3s;
  }
}
@media (hover) {
  .benefit_nav li a:hover {
    background-color: var(--color-main);
    color: #fff;
  }
  .benefit_nav li a:hover:after {
    border-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .benefit_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.benefit_main_detail {
  text-align: center;
  background-color: var(--color-main);
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .benefit_main_detail {
    text-align: left;
    padding: 4rem 2rem 4rem 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .benefit_main_detail {
    padding: 6rem 2rem 6rem 10rem;
  }
}
.benefit_main_detail h2, .benefit_main_detail p, .benefit_main_detail h3 {
  font-weight: 400;
  color: #fff;
}
.benefit_main_detail h2 {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .benefit_main_detail h2 {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .benefit_main_detail h2 {
    margin-bottom: 4rem;
  }
}
.benefit_main_detail p {
  margin-bottom: 1rem;
}
.benefit_main_detail h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .benefit_main_detail h3 {
    justify-content: flex-start;
  }
}
.benefit_main_detail h3 span {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .benefit_main_detail h3 span {
    font-size: 3rem;
  }
}
.benefit_main_detail h3 strong {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .benefit_main_detail h3 strong {
    font-size: 4rem;
  }
}
.benefit_main figure {
  margin: 0;
}
.benefit_main figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .benefit_main figure img {
    aspect-ratio: 25/12;
  }
}
.benefit_block {
  padding: 6rem 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .benefit_block {
    padding: 6rem 6rem 0;
  }
}
@media screen and (min-width: 1000px) {
  .benefit_block {
    padding: 6rem 10rem 0;
  }
}
.benefit_block h2 {
  margin-bottom: 4rem;
}

.check_list li {
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  column-gap: 2rem;
}
@media screen and (min-width: 1000px) {
  .check_list li {
    font-size: 1.8rem;
  }
}
.check_list li::before {
  content: "";
  width: 2.9rem;
  height: 2rem;
  background: url(../img/common/icon_check.svg) no-repeat center/cover;
}
@media screen and (min-width: 1000px) {
  .check_list li::before {
    transform: translateY(0.5rem);
  }
}
.check_list li + li {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .check_list li + li {
    margin-top: 2rem;
  }
}
.check_list li span {
  display: block;
}
@media screen and (min-width: 768px) {
  .check_list li span:first-of-type {
    padding-top: 0.5em;
  }
}

@media screen and (min-width: 1000px) {
  .grid_col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;
    padding-bottom: 3rem;
  }
}
.grid_col2_item {
  padding-bottom: 4rem;
}
@media screen and (min-width: 1000px) {
  .grid_col2_item {
    padding-bottom: 0;
  }
}
.grid_col2_item:not(:first-child) {
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}
@media screen and (min-width: 1000px) {
  .grid_col2_item:not(:first-child) {
    padding-top: 0;
    border-top: none;
  }
}

/*---------------
FOR BEGINNER
---------------*/
.about_main {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .about_main_detail {
    width: 50%;
  }
}
.about_main figure {
  margin: 6rem -1.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .about_main figure {
    margin: 6rem 0 0;
  }
}
@media screen and (min-width: 1000px) {
  .about_main figure {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 6rem);
    pointer-events: none;
  }
}
.about_main figure img {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .about_main figure img {
    height: 50rem;
    object-fit: cover;
    object-position: 70%;
  }
}
.about_main h2 {
  margin-bottom: 4rem;
}
.about_features {
  display: grid;
  row-gap: 2rem;
  margin-top: 4rem;
}
.about_features details {
  background-color: #fff;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
  padding-bottom: 1rem;
}
.about_features details[open] summary:after {
  transform: rotate(45deg);
}
.about_features summary {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .about_features summary {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 3rem;
    align-items: baseline;
  }
}
.about_features summary:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: none;
  border-top: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  transform: rotate(-135deg);
  position: absolute;
  right: 3rem;
  top: 4.2rem;
}
.about_features summary span {
  color: var(--color-main);
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .about_features summary span {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .about_features summary h3 {
    padding-right: 2rem;
  }
}
.about_features summary strong {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .about_features summary strong {
    font-size: 1.8rem;
  }
}
.about_features summary em {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .about_features summary em {
    font-size: 1.8rem;
  }
}
.about_features summary em:first-child {
  padding-right: 0.3em;
}
.about_features summary em:last-child {
  padding-left: 0.3em;
}
.about_features dl {
  padding: 0 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .about_features dl {
    display: grid;
    grid-template-columns: 45% 1fr;
    column-gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .about_features dl {
    grid-template-columns: 37.38% 1fr;
    column-gap: 3rem;
    padding-right: 10rem;
  }
}
.about_features dl dt img {
  width: 100%;
}
.about_features dl dd {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about_features dl dd {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .about_features dl dd p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .about_features dl dd p {
    font-size: 1.8rem;
  }
}
.about_features dl dd p + p {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .about_story {
    display: grid;
    grid-template-columns: 1fr 48%;
    grid-template-rows: auto 1fr;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1000px) {
  .about_story {
    grid-template-columns: 1fr 1fr;
  }
}
.about_story h2 {
  margin: 0 1.5rem 4rem;
}
@media screen and (min-width: 768px) {
  .about_story h2 {
    margin: 0 0 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .about_story h2 {
    margin: 0 0 4rem;
  }
}
@media screen and (min-width: 768px) {
  .about_story figure {
    text-align: center;
  }
}
.about_story figure img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about_story figure img {
    width: 80%;
  }
}
@media screen and (min-width: 1000px) {
  .about_story figure img {
    width: 71%;
  }
}
.about_story_detail {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3rem 3rem 0;
  margin: -9rem 1.5rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about_story_detail {
    margin: 0;
    padding: 0 3rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .about_story_detail p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .about_story_detail p {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .about_story-1 h2 {
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 768px) {
  .about_story-1 .about_story_detail {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 768px) {
  .about_story-1 figure {
    grid-area: 1/2/3/3;
  }
}
@media screen and (min-width: 768px) {
  .about_story-2 h2 {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 768px) {
  .about_story-2 .about_story_detail {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 768px) {
  .about_story-2 figure {
    grid-area: 1/1/3/2;
  }
}
.about_story .btn {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .about_story .btn {
    margin-top: 6rem;
  }
}
.about_btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .about_btn {
    grid-template-columns: repeat(3, 1fr);
    max-width: 80rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1000px) {
  .about_btn {
    grid-template-columns: repeat(5, 1fr);
    max-width: 100%;
    margin-inline: 0;
  }
}
.about_btn li {
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.15));
  aspect-ratio: 1;
}
.about_btn li a {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  transition: 0.3s;
}
@media (hover) {
  .about_btn li a:hover {
    background-color: var(--color-bg-pink);
  }
}
.about_btn li a p {
  margin-top: 2.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .about_btn li a p {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .about_btn li a p {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .about_btn li a p {
    margin-top: 4rem;
  }
}
.about_btn li a img {
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .about_btn li a img {
    width: 8.2rem;
  }
}
@media screen and (min-width: 1000px) {
  .about_btn li a img {
    width: 6.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .about_btn li a img {
    width: 8.2rem;
  }
}
.about .process_btn {
  padding-block: 6rem;
}

.btn_col3 {
  padding: 6rem 0;
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .btn_col3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 3rem;
  }
}
.btn_col3 .btn {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .btn_col3 .btn {
    margin-inline: 0;
    width: 100%;
  }
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
  z-index: 100;
}
.modal__container {
  background-color: #fff;
  max-height: 80vh;
  overflow-y: auto;
  will-change: transform;
  border: 0.5rem solid var(--color-border-pink);
  width: 30rem;
}
@media screen and (min-width: 768px) {
  .modal__container {
    border-width: 1rem;
    width: 60rem;
  }
}
.modal__close {
  display: block;
  padding: 2rem;
  margin-left: auto;
  position: sticky;
  top: 0;
  left: 0;
}
.modal_line {
  padding-inline: 1rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .modal_line {
    padding-inline: 2rem;
    padding-bottom: 8rem;
  }
}
.modal_line_head {
  background-color: #00B900;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  padding-block: 3rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .modal_line_head {
    font-size: 2.4rem;
  }
}
.modal_line_head strong {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .modal_line_head strong {
    font-size: 3rem;
  }
}
.modal_line .ul-list {
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .modal_line .ul-list {
    font-size: 1.6rem;
  }
}
.modal_line_list {
  display: grid;
  row-gap: 2rem;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .modal_line_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
  }
}
.modal_line_list figure {
  padding: 3rem 1rem;
  border: 0.5rem solid var(--color-light);
  display: grid;
  grid-template-columns: 6.4rem 1fr;
  column-gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .modal_line_list figure {
    margin-top: 1rem;
    grid-template-columns: 1fr;
    gap: 2rem 0;
    padding: 3rem 0;
  }
}
.modal_line_list figure img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal_line_list figure img {
    width: 6.4rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .modal_line_list figure figcaption {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .modal_line_list figure figcaption span {
    display: block;
  }
}
.modal_line_sub {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .modal_line_sub {
    font-size: 2.4rem;
  }
}
.modal_line_flow dt {
  display: grid;
  grid-template-columns: 6rem 1fr;
  column-gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
.modal_line_flow dt span {
  text-align: center;
  background-color: var(--color-light);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 6.6rem;
}
.modal_line_flow dt span i {
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 500;
}
.modal_line_flow dt strong {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-light);
}
@media screen and (min-width: 768px) {
  .modal_line_flow dt strong {
    font-size: 2rem;
  }
}
.modal_line_flow dd:not(:last-child) {
  margin-bottom: 6rem;
}
.modal_line_flow dd ol {
  list-style: outside decimal;
  margin-left: 1.2em;
}
.modal_line_flow dd ol li + li {
  margin-top: 0.3rem;
}
.modal_line_flow-pc {
  display: grid;
  grid-template-columns: 14rem 1fr;
  column-gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .modal_line_flow-pc {
    display: none;
  }
}
.modal_line_flow-pc figcaption {
  font-size: 1.6rem;
}
.modal_line_flow-sp a {
  width: 100%;
  background-color: #00B900;
  color: #fff;
  display: block;
  padding: 1.7rem 0;
  line-height: 1;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.modal_line_flow-sp figcaption {
  font-size: 1.6rem;
}
.modal_line_flow-sp figcaption strong {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .modal_line_flow-sp {
    display: none;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*---------------
シミ肝斑外来
---------------*/
.shimikanpan_bottom {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .shimikanpan_bottom_lp {
    background-color: var(--color-bg-pink);
    padding: 3rem;
  }
}
.shimikanpan_bottom_lp a {
  background-color: var(--color-main);
  color: #fff;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--color-main);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .shimikanpan_bottom_lp a {
    width: fit-content;
    margin-inline: auto;
    flex-direction: row;
    align-items: stretch;
    padding: 2rem 0;
  }
}
@media (hover) {
  .shimikanpan_bottom_lp a:hover {
    background-color: #fff;
    color: var(--color-main);
  }
  .shimikanpan_bottom_lp a:hover strong {
    color: var(--color-main);
    border-color: var(--color-main);
  }
  .shimikanpan_bottom_lp a:hover span {
    color: var(--color-main);
  }
  .shimikanpan_bottom_lp a:hover span:after {
    border-color: var(--color-main);
  }
}
.shimikanpan_bottom_lp a strong {
  font-size: 1.8rem;
  font-weight: 400;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  width: 100%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .shimikanpan_bottom_lp a strong {
    font-size: 1.6rem;
    padding: 0.5rem 4.5rem;
    margin-bottom: 0;
    width: auto;
    border-bottom: none;
    border-right: 1px solid #fff;
  }
}
.shimikanpan_bottom_lp a span {
  font-size: 1.6rem;
  position: relative;
  width: 100%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .shimikanpan_bottom_lp a span {
    width: auto;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
  }
}
.shimikanpan_bottom_lp a span:after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 0.3rem;
  transform: rotate(45deg);
  transform-origin: top right;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .shimikanpan_bottom_lp a span:after {
    position: static;
    transform-origin: center;
    margin-left: 1.2rem;
    margin-right: 0.2rem;
    transform: rotate(45deg) translateY(-0.2rem);
  }
}
.shimikanpan_bottom_btn {
  margin-top: 6rem;
}
.shimikanpan_btn {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .shimikanpan_btn {
    margin-top: 10rem;
  }
}

.trial_bnr {
  position: relative;
}
@media screen and (min-width: 768px) {
  .trial_bnr {
    max-width: 80rem;
    margin-inline: auto;
  }
}
.trial_bnr a {
  display: block;
}
.trial_bnr a img {
  width: 100%;
}
.trial_bnr-data {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  padding-inline: 1.2rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .trial_bnr-data {
    height: 5.6rem;
    justify-content: flex-end;
    padding-inline: 4rem;
  }
}
.trial_bnr-data span {
  font-size: 1.2rem;
  font-weight: 500;
  font-feature-settings: "palt";
  border: 1px solid #fff;
  padding: 0.7rem 0.6rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .trial_bnr-data span {
    font-size: 1.4rem;
  }
}
.trial_bnr-data time {
  font-weight: 500;
  font-size: 1.6rem;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .trial_bnr-data time {
    font-size: 2.4rem;
  }
}
.trial_bnr_note {
  margin: 3rem 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .trial_bnr_note {
    max-width: 80rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .trial_bnr-top {
    max-width: 100rem;
    margin-inline: auto;
    background-color: var(--color-bg-pink);
    padding-block: 6rem;
  }
}

.box_advice {
  background-color: var(--color-bg);
  padding: 6rem 2.2rem;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .box_advice {
    padding: 6rem 3rem;
    grid-template-columns: 15rem 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 3rem;
    max-width: 80rem;
    margin-inline: auto;
  }
}
.box_advice figure {
  grid-area: 1/1/2/2;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .box_advice figure {
    grid-area: 1/1/3/2;
  }
}
.box_advice figure img {
  width: 100%;
}
.box_advice h3 {
  grid-area: 1/2/2/3;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .box_advice h3 {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1000px) {
  .box_advice h3 {
    font-size: 2rem;
  }
}
.box_advice p {
  grid-area: 2/1/3/3;
}
@media screen and (min-width: 768px) {
  .box_advice p {
    grid-area: 2/2/3/3;
  }
}

.nav-shimikanpan {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .nav-shimikanpan {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}
.nav-shimikanpan li a {
  display: block;
  background-color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
  align-items: center;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  color: var(--color-main);
  font-weight: 500;
}
@media (hover) {
  .nav-shimikanpan li a:hover {
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  }
}
.nav-shimikanpan li a:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/common/btn_arrow.svg) no-repeat center/100% auto;
  flex-shrink: 0;
}

#sb_instagram {
  padding: 0 !important;
}
#sb_instagram #sbi_images {
  padding: 0 !important;
}

/*---------------
シミ肝斑外来 トライアル
---------------*/
.shimiTrial .process_flow {
  margin-top: 4rem;
}
.shimiTrial .process_flow-item {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 0 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .shimiTrial .process_flow-item {
    gap: 0 5rem;
  }
}
.shimiTrial .process_flow-item > h4 {
  grid-area: 1/1/2/2;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item > h4 {
    margin-bottom: 3rem;
  }
}
.shimiTrial .process_flow-item > figure img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item:nth-child(odd) > h4 {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item:nth-child(odd) > figure {
    grid-area: 1/1/3/2;
  }
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item:nth-child(odd) > p {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item:nth-child(even) > h4 {
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item:nth-child(even) > figure {
    grid-area: 1/2/3/3;
  }
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-item:nth-child(even) > p {
    grid-area: 2/1/3/2;
  }
}
.shimiTrial .process_flow-itemBox {
  display: grid;
  row-gap: 6rem;
}
@media screen and (min-width: 1000px) {
  .shimiTrial .process_flow-itemBox {
    margin-left: 10rem;
  }
}
.shimiTrial .process_flow-itemBox + .process_flow-itemTtl {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-itemBox + .process_flow-itemTtl {
    margin-top: 10rem;
  }
}
.shimiTrial .process_flow-itemTtl {
  position: relative;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-itemTtl {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .shimiTrial .process_flow-itemTtl {
    margin-left: 10rem;
  }
}
.shimiTrial .process_flow-itemTtl span {
  font-weight: 400;
  font-size: 2.4rem;
  background-color: #fff;
  padding-right: 3rem;
  color: var(--color-txt);
  position: relative;
}
.shimiTrial .process_flow-itemTtl:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-txt);
  position: absolute;
  top: 50%;
  left: 0;
}
.shimiTrial .process_flow-inBox {
  background-color: var(--color-bg);
  padding: 3rem 2.2rem;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-inBox {
    grid-area: 3/1/4/3;
    margin-top: 3rem;
    padding: 3rem;
  }
}
.shimiTrial .process_flow-inBox h5 {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-inBox h5 {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-inBox ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
  }
}
.shimiTrial .process_flow-inBox li {
  display: flex;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-inBox li {
    column-gap: 0;
  }
}
.shimiTrial .process_flow-inBox li:before {
  content: "・";
}
.shimiTrial .process_flow-inBox li + li {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .shimiTrial .process_flow-inBox li + li {
    margin-top: 0;
  }
}

.splide-case:not(.is-active) {
  visibility: visible;
}
.splide-case:not(.is-active) .carousel-progress {
  display: none;
}
@media screen and (max-width: 767px) {
  .splide-case:not(.is-active) .splide__list {
    justify-content: center;
  }
}
.splide-case .splide__track {
  overflow: visible;
}
.splide-case .splide__list {
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .splide-case .splide__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .splide-case .splide__list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3rem;
  }
}
.splide-case .splide__list li {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .splide-case .splide__list li {
    width: 27.8rem !important;
  }
}
.splide-case .splide__list li figure {
  margin-bottom: 1rem;
  cursor: zoom-in;
}
.splide-case .splide__list li h2 {
  margin-bottom: 2rem;
}
.splide-case .splide__list li h2 a {
  display: block;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (hover) {
  .splide-case .splide__list li h2 a:hover {
    opacity: 0.7;
  }
}

.case {
  align-items: flex-start;
}
.case li {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.case li figure {
  margin-bottom: 1rem;
  cursor: zoom-in;
}
.case li h2 {
  margin-bottom: 2rem;
}
.case li h2 a {
  display: block;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (hover) {
  .case li h2 a:hover {
    opacity: 0.7;
  }
}
.case_detail {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.2s;
}
.case_detail.open {
  max-height: 100%;
  visibility: visible;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .case_detail p {
    font-size: 1.6rem;
  }
}
.case_btn {
  width: 100%;
  padding: 2rem;
  font-size: 1.6rem;
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  margin-top: auto;
}
.case_btn:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(45deg) translateY(-0.3em);
  margin-left: 1rem;
}
.case_btn.active:after {
  transform: rotate(-135deg);
}
@media (hover) {
  .case_btn:hover {
    opacity: 0.7;
  }
}

.block_ttl {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block_ttl p {
  line-height: 1.3;
  text-align: right;
  margin-left: auto;
}

/*---------------
シミ肝斑外来 タイプ
---------------*/
.shimiType_main {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .shimiType_main {
    display: grid;
    grid-template-columns: 38% 1fr;
    column-gap: 5%;
    margin-bottom: 10rem;
  }
}
.shimiType_main_image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .shimiType_main_image {
    display: none;
  }
}
.shimiType_main_image img {
  width: 100%;
}
.shimiType_main_image a {
  width: min(7.8095238095vw, 8.2rem);
  height: min(7.8095238095vw, 8.2rem);
  border-radius: 50%;
  background-color: rgba(224, 107, 141, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: min(2.8571428571vw, 3rem);
  color: var(--color-main);
  position: absolute;
}
.shimiType_main_image a.btn01 {
  left: min(1.7142857143vw, 1.8rem);
  top: min(31.3333333333vw, 32.9rem);
}
.shimiType_main_image a.btn02 {
  left: min(14.1904761905vw, 14.9rem);
  top: min(29.8095238095vw, 31.3rem);
  margin-left: 0;
}
.shimiType_main_image a.btn03 {
  left: min(3.9047619048vw, 4.1rem);
  top: min(39.1428571429vw, 41.1rem);
}
.shimiType_main_image a.btn04 {
  right: min(3.9047619048vw, 4.1rem);
  top: min(32.0952380952vw, 33.7rem);
}
.shimiType_main_image a.btn05 {
  right: min(10.2857142857vw, 10.8rem);
  top: min(36.5714285714vw, 38.4rem);
}
.shimiType_main_item {
  display: grid;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .shimiType_main_item {
    row-gap: 3rem;
  }
}
.shimiType_main_parts {
  display: grid;
  grid-template-columns: 1fr 12rem;
  column-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .shimiType_main_parts {
    grid-template-columns: 12rem 1fr;
    column-gap: 3rem;
  }
}
.shimiType_main_parts figure {
  grid-area: 2/2/3/3;
}
@media screen and (min-width: 768px) {
  .shimiType_main_parts figure {
    grid-area: 1/1/3/2;
  }
}
.shimiType_main_parts figure img {
  width: 100%;
}
.shimiType_main_parts h3 {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
  grid-area: 1/1/2/3;
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts h3 {
    display: grid;
    grid-template-columns: 4.7rem 1fr;
    column-gap: 2rem;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .shimiType_main_parts h3 {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 1000px) {
  .shimiType_main_parts h3 {
    font-size: 2rem;
  }
}
.shimiType_main_parts h3 span {
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts h3 span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts h3:before {
    content: "";
    width: 100%;
    aspect-ratio: 95/160;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
  }
}
.shimiType_main_parts p {
  grid-area: 2/1/3/2;
}
@media screen and (min-width: 768px) {
  .shimiType_main_parts p {
    grid-area: 2/2/3/3;
  }
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts#type01 h3::before {
    background-image: url(../img/shimikanpan/spot_sub_1_4.gif);
  }
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts#type02 h3::before {
    background-image: url(../img/shimikanpan/spot_sub_1_2.gif);
  }
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts#type03 h3::before {
    background-image: url(../img/shimikanpan/spot_sub_1_1.gif);
  }
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts#type04 h3::before {
    background-image: url(../img/shimikanpan/spot_sub_1_3.gif);
  }
}
@media screen and (max-width: 767px) {
  .shimiType_main_parts#type05 h3::before {
    background-image: url(../img/shimikanpan/spot_sub_1_5.gif);
  }
}
.shimiType_img_center {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .shimiType_img_center img {
    width: 100%;
  }
}
.shimiType_colorBox {
  margin-top: 4rem;
  display: grid;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .shimiType_colorBox {
    margin-top: 6rem;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .shimiType_colorBox {
    gap: 0 5rem;
  }
}
.shimiType_colorBox li {
  border: 1px solid;
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .shimiType_colorBox li {
    padding: 3rem;
  }
}
.shimiType_colorBox h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1000px) {
  .shimiType_colorBox h3 {
    font-size: 2rem;
  }
}
.shimiType_colorBox-pink {
  border-color: var(--color-light) !important;
}
.shimiType_colorBox-pink h3 {
  color: var(--color-light);
}
.shimiType_colorBox-brown {
  border-color: #984F4E !important;
}
.shimiType_colorBox-brown h3 {
  color: #984F4E;
}
.shimiType_iconBox {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .shimiType_iconBox {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 3rem;
  }
}
.shimiType_iconBox li {
  background-color: #fff;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  padding: 3rem;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .shimiType_iconBox li {
    grid-template-rows: auto 1fr;
    gap: 1rem 3rem;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1000px) {
  .shimiType_iconBox li {
    grid-template-columns: 12rem 1fr;
  }
}
.shimiType_iconBox li figure {
  grid-area: 1/1/2/2;
}
@media screen and (min-width: 768px) {
  .shimiType_iconBox li figure {
    grid-area: 1/1/3/2;
  }
}
.shimiType_iconBox li h3 {
  font-size: 1.8rem;
  color: var(--color-main);
  font-weight: 400;
  grid-area: 1/2/2/3;
}
@media screen and (min-width: 768px) {
  .shimiType_iconBox li h3 {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 1000px) {
  .shimiType_iconBox li h3 {
    font-size: 2rem;
  }
}
.shimiType_iconBox li p {
  grid-area: 2/1/3/3;
}
@media screen and (min-width: 768px) {
  .shimiType_iconBox li p {
    grid-area: 2/2/3/3;
  }
}
.shimiType_iconBox + .box_advice {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .shimiType_iconBox + .box_advice {
    margin-top: 10rem;
  }
}

/*---------------
シミ肝斑外来 肝斑
---------------*/
.shimiKanpan_main_img img {
  width: 100%;
}
.shimiKanpan_main_detail dt {
  background-color: var(--color-main);
  color: #fff;
  font-size: 1.8rem;
  padding: 1rem 3rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .shimiKanpan_main_detail dt {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .shimiKanpan_main_detail dt {
    font-size: 2rem;
  }
}
.shimiKanpan_main_detail dt:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .shimiKanpan_main_detail dt:not(:first-child) {
    margin-top: 6rem;
  }
}
.shimiKanpan_main_detail dd {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .shimiKanpan_main_detail dd {
    grid-template-rows: auto 1fr;
    gap: 2rem 3rem;
  }
}
.shimiKanpan_main_detail dd figure {
  grid-area: 1/1/2/2;
}
@media screen and (min-width: 768px) {
  .shimiKanpan_main_detail dd figure {
    grid-area: 1/1/3/2;
  }
}
.shimiKanpan_main_detail dd figure img {
  width: 100%;
}
.shimiKanpan_main_detail dd p.txt_first {
  grid-area: 1/2/2/3;
}
.shimiKanpan_main_detail dd p.txt_second {
  grid-area: 2/1/3/3;
}
@media screen and (min-width: 768px) {
  .shimiKanpan_main_detail dd p.txt_second {
    grid-area: 2/2/3/3;
  }
}
.shimiKanpan_main_detail dd p strong {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 400;
}
.shimiKanpan_main_detail dd p strong img {
  width: 3.5rem;
  margin-right: 2rem;
}
.shimiKanpan_poin {
  display: grid;
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .shimiKanpan_poin {
    row-gap: 4rem;
  }
}
.shimiKanpan_poin li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  column-gap: 2rem;
}
.shimiKanpan_poin li span {
  background-color: var(--color-main);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 8rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
}
.shimiKanpan_poin li span b {
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1;
}
.shimiKanpan_poin li h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 1rem;
}
@media screen and (min-width: 1000px) {
  .shimiKanpan_poin li h3 {
    font-size: 2rem;
  }
}
.shimiKanpan_check {
  display: grid;
  row-gap: 4rem;
  margin-block: 4rem;
}
.shimiKanpan_check_item dt {
  background-color: var(--color-main);
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  width: fit-content;
  height: 5rem;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shimiKanpan_check_item dd {
  background-color: var(--color-bg);
  padding: 3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .shimiKanpan_check_item dd {
    padding: 6rem 6rem;
  }
}
@media screen and (min-width: 1000px) {
  .shimiKanpan_check_item dd {
    padding: 6rem 10rem;
  }
}
.shimiKanpan_check_item dd p + p {
  margin-top: 2rem;
}
.shimiKanpan_check_item dd label {
  display: grid;
  grid-template-columns: 4rem 1fr;
  column-gap: 2rem;
}
.shimiKanpan_check_item dd input {
  appearance: none;
  -webkit-appearance: none;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border: 1px solid #666;
  position: relative;
}
.shimiKanpan_check_item dd input:checked::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.6rem;
  width: 2.8rem;
  height: 1.4rem;
  border-bottom: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  transform: rotate(-45deg);
}

/*---------------
シミ肝斑外来 肝斑治療
---------------*/
.kanpanTreatment_list {
  margin-top: 6rem;
  display: grid;
  row-gap: 6rem;
}
.kanpanTreatment_list_detail {
  display: grid;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .kanpanTreatment_list_detail {
    grid-template-columns: 40% 1fr;
    gap: 0 3rem;
  }
}
.kanpanTreatment_list_detail dt img {
  width: 100%;
}
.kanpanTreatment_list_detail dd p + p {
  margin-top: 2rem;
}
.kanpanTreatment_list .txt-link {
  margin-top: 4rem;
}

/*---------------
シミ肝斑外来 シミドック
---------------*/
.simiAnalysis_main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  margin-block: 4rem;
}
.simiAnalysis_main figure {
  margin-bottom: 1rem;
}
.simiAnalysis_main figure img {
  width: 100%;
}
.simiAnalysis_main li:first-child {
  position: relative;
}
.simiAnalysis_main li:first-child:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--color-main);
  clip-path: polygon(1.6rem 50%, 0% 0%, 0% 1.6rem);
  position: absolute;
  left: calc(100% + 0.7rem);
  top: 16vw;
}
.simiAnalysis .col figure {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .simiAnalysis .col-sp1 {
    row-gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .simiAnalysis .col-sp2 {
    column-gap: 0.8rem;
  }
}
.simiAnalysis_recommend {
  margin-block: 4rem;
}
@media screen and (max-width: 767px) {
  .simiAnalysis_recommend {
    margin-inline: -1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .simiAnalysis_recommend {
    margin-top: 6rem;
  }
}
.simiAnalysis_recommend h3 {
  margin-bottom: 3rem;
}
.simiAnalysis_recommend ol li {
  counter-increment: shimidock_mum;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
}
.simiAnalysis_recommend ol li + li {
  margin-top: 2rem;
}
.simiAnalysis_recommend ol li:before {
  content: "0" counter(shimidock_mum);
  color: var(--color-main);
}
.simiAnalysis_recommend ul li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5rem;
}
.simiAnalysis_recommend ul li + li {
  margin-top: 1rem;
}
.simiAnalysis_recommend ul li:before {
  content: "・";
}
.simiAnalysis_block {
  margin-top: 6rem;
}
.simiAnalysis_about {
  padding: 3rem;
}
@media screen and (min-width: 1000px) {
  .simiAnalysis_about {
    padding: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .simiAnalysis_about_block {
    display: grid;
    grid-template-columns: 45.5% 1fr;
    column-gap: 3rem;
  }
}
.simiAnalysis_about_block figure {
  margin-bottom: 2rem;
}
.simiAnalysis_about_block figure img {
  width: 100%;
}
.simiAnalysis_about_block figcaption {
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .simiAnalysis_about_block figcaption {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .simiAnalysis_proof_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.simiAnalysis_proof_item {
  display: grid;
  row-gap: 2rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .simiAnalysis_proof_item {
    grid-template-columns: 15rem 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem 1.5rem;
    margin-bottom: 0;
  }
}
.simiAnalysis_proof_item h3 {
  font-size: 1.8rem;
  color: var(--color-main);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .simiAnalysis_proof_item h3 {
    grid-area: 1/1/2/3;
  }
}
@media screen and (min-width: 768px) {
  .simiAnalysis_proof_item figure {
    grid-area: 2/1/3/2;
  }
}
.simiAnalysis_proof_item figure img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .simiAnalysis_proof_item p {
    grid-area: 2/2/3/3;
  }
}
.simiAnalysis_proof_item p small {
  display: block;
  padding-top: 1em;
}
@media screen and (min-width: 768px) {
  .simiAnalysis_proof_item p small {
    padding-top: 0.5em;
  }
}
.simiAnalysis_proof_item p sup {
  font-size: 1.2rem;
}
.simiAnalysis_proof_item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .simiAnalysis_proof_item:nth-last-child(2) {
    border-bottom: none;
  }
}

/*---------------
シミ肝斑外来 シミ治療の種類
---------------*/
.simiTreatment_item {
  display: grid;
  row-gap: 4rem;
}
@media screen and (min-width: 768px) {
  .simiTreatment_item {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .simiTreatment_item {
    gap: 4rem 3rem;
  }
}
.simiTreatment_item li a {
  display: block;
  padding: 2rem 2rem 4rem;
  background-color: #fff;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .simiTreatment_item li a {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media (hover) {
  .simiTreatment_item li a:hover {
    opacity: 0.7;
  }
  .simiTreatment_item li a:hover .txt-link {
    text-decoration: underline;
    text-underline-offset: 0.5em;
  }
}
.simiTreatment_item li figure {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .simiTreatment_item li figure {
    margin-bottom: 2rem;
  }
}
.simiTreatment_item li figure img {
  width: 100%;
}
.simiTreatment_item li h3 {
  margin-bottom: 2rem;
}
.simiTreatment_item_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .simiTreatment_item_tag {
    margin-bottom: 3rem;
  }
}
.simiTreatment_item_tag span {
  font-size: 1.4rem;
  padding: 0.2rem 1rem;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .simiTreatment_item .txt-link {
    margin-top: auto;
  }
}
.simiTreatment_outer {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .simiTreatment_outer {
    overflow-x: auto;
    margin-inline: -1.5rem;
  }
}
.simiTreatment_table {
  width: 96rem;
}
@media screen and (max-width: 767px) {
  .simiTreatment_table {
    margin-inline: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .simiTreatment_table {
    width: 100%;
    table-layout: fixed;
  }
}
.simiTreatment_table th, .simiTreatment_table td {
  border: 1px solid var(--color-border);
  text-align: left;
  padding: 2rem;
  font-size: 1.6rem;
  vertical-align: top;
}
@media screen and (min-width: 1000px) {
  .simiTreatment_table th, .simiTreatment_table td {
    font-size: 1.8rem;
  }
}
.simiTreatment_table th {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .simiTreatment_table th {
    width: 20rem;
  }
}
.simiTreatment_table th:first-child {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .simiTreatment_table th:first-child {
    width: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .simiTreatment_table td {
    width: 16rem;
  }
}
.simiTreatment_table .bg-red {
  background-color: var(--color-main);
  color: #fff;
}
.simiTreatment_table .bg-light {
  background-color: #F2F2F2;
}
.simiTreatment_wrap {
  position: relative;
}
.simiTreatment_link {
  display: grid;
  row-gap: 2rem;
}
.simiTreatment_link a {
  background-color: #fff;
  padding: 2rem;
  position: relative;
  display: grid;
  grid-template-columns: 12rem 1fr;
  column-gap: 2rem;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .simiTreatment_link a {
    grid-template-columns: 16rem 1fr 3rem;
    align-items: center;
  }
}
@media (hover) {
  .simiTreatment_link a:hover {
    opacity: 0.7;
  }
}
.simiTreatment_link a:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/common/btn_arrow.svg) no-repeat center/100% auto;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .simiTreatment_link a:after {
    position: static;
  }
}
.simiTreatment_link a figure img {
  width: 100%;
}
.simiTreatment_link a p {
  letter-spacing: 0;
}

.swipe-able-container {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5rem;
  width: 80%;
  aspect-ratio: 1;
  position: absolute;
  top: 5rem;
  left: 10%;
}
.swipe-able-container figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.swipe-able-container figure img {
  width: 50%;
  display: block;
}
.swipe-able-container figure figcaption {
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .swipe-able-container {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .is-animation {
    animation: my-animation 3.5s ease-in;
  }
  .is-animation-move-icon {
    animation: my-animation-move-icon 1.5s linear infinite;
  }
}
@keyframes my-animation-move-icon {
  0% {
    margin-left: -5rem;
  }
  50% {
    margin-left: 5rem;
  }
  100% {
    margin-left: -5rem;
  }
}
@keyframes my-animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*---------------
シミ肝斑外来 FAQ
---------------*/
.simiFaq + .simiFaq {
  margin-top: 2rem;
}
.simiFaq[open] summary::after {
  transform: rotate(45deg);
}
.simiFaq summary {
  list-style: none;
  font-size: 1.6rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: 2.8rem 1fr 3rem;
  color: var(--color-main);
}
.simiFaq summary::before {
  content: "Q";
}
.simiFaq summary::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: none;
  border-top: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  transform: rotate(-135deg);
  margin: 0.8rem 0 0 auto;
}
@media screen and (min-width: 1000px) {
  .simiFaq summary {
    font-size: 1.8rem;
  }
}
.simiFaq summary + .simiFaq_answar {
  padding-top: 0;
}
.simiFaq .simiFaq_answar {
  margin-inline: 3rem;
  padding-bottom: 2rem;
  position: relative;
}
.simiFaq .simiFaq_answar::before {
  content: "A";
  font-size: 1.6rem;
  color: var(--color-txt);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1000px) {
  .simiFaq .simiFaq_answar::before {
    font-size: 1.8rem;
  }
}
.simiFaq .simiFaq_answar p {
  font-size: 1.6rem;
  padding-left: 2.8rem;
}
.simiFaq .simiFaq_answar p + p {
  margin-top: 1.5em;
}
.simiFaq .simiFaq_answar .txt-link {
  margin-top: 2rem;
}

/*---------------
RESERVATION
---------------*/
@media screen and (min-width: 768px) {
  .reservation_main {
    display: grid;
    grid-template-columns: 47% 1fr;
    column-gap: 5%;
  }
}
@media screen and (min-width: 1000px) {
  .reservation_main {
    column-gap: 9%;
  }
}
.reservation_main figure {
  margin-bottom: 4rem;
  margin-right: -1.5rem;
}
@media screen and (min-width: 768px) {
  .reservation_main figure {
    margin-bottom: 0;
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 1000px) {
  .reservation_main figure {
    margin-right: calc((100rem - 100vw) / 2 + 1rem);
  }
}
.reservation_main figure img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reservation_main figure img {
    height: 80%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1000px) {
  .reservation_main figure img {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .reservation_main_detail {
    grid-area: 1/1/2/2;
  }
}
.reservation_main_detail p + p {
  margin-top: 3rem;
}
.reservation_table {
  width: 100%;
  margin-block: 2rem;
  border-top: 1px solid var(--color-border);
}
.reservation_table th, .reservation_table td {
  color: var(--color-txt);
  font-size: 1.7rem;
  text-align: center;
  padding: 1.5rem 0;
  line-height: 1;
  font-weight: 400;
  border-bottom: 1px solid var(--color-border);
}
.reservation_web {
  padding-block: 6rem;
  display: grid;
  row-gap: 2rem;
}
.reservation_btn {
  padding-block: 4rem;
}
@media screen and (min-width: 1000px) {
  .reservation_btn {
    max-width: 110rem;
    display: grid;
    grid-template-columns: auto 1fr;
    margin-inline: auto;
  }
}
.reservation_btn dt {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1000px) {
  .reservation_btn dt {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .reservation_btn dt:first-child {
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 1000px) {
  .reservation_btn dt:nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 768px) {
  .reservation_btn dd {
    display: flex;
    margin-top: auto;
    justify-content: center;
  }
}
.reservation_btn dd:not(:last-child) {
  margin-bottom: 6rem;
}
@media screen and (min-width: 1000px) {
  .reservation_btn dd:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .reservation_btn dd:nth-of-type(1) {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 768px) {
  .reservation_btn dd:nth-of-type(2) {
    grid-area: 2/2/3/3;
  }
}
.reservation_btn_col {
  display: grid;
  row-gap: 3rem;
}
@media screen and (min-width: 768px) {
  .reservation_btn_col {
    display: flex;
    justify-content: center;
    column-gap: 2.5rem;
    row-gap: 0;
  }
}
.reservation_btn_col p {
  margin-bottom: 1rem;
}
.reservation_online {
  padding-top: 6rem;
}
.reservation_online p {
  margin-bottom: 2rem;
}/*# sourceMappingURL=page.css.map */