* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 2.66vw;
    position: relative;
}

img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    html,body {
        font-size: 20px;
    }
}

/*wrapper*/

.wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

@media (min-width: 768px) {
  .wrapper {
    width: 750px;
    margin: 0 auto;
  }
}


/*header*/

header {
    width: 100%;
    height: 4rem;
    background-color: #fff;
    text-align: center;
}

header img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/*fv*/
.fv {
    width: 100%;
    height: 46.3rem;
    background: url('../images/fv_bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.fv_inner {
    top: 2rem;
    position: absolute;
    width: 64%;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.fv_inner img {
    height: auto;
}

.fv_inner_order1 {
    order: 1;
}

.fv_inner_order1 img {
    width: 19.6rem;
}

.fv_inner_order2 {
    order: 2;
}

.fv_inner_order2 img {
    width: 12.2rem;
}

.fv_inner_order3 {
    order: 3;
    margin-top: -0.4rem;
}

.fv_inner_order3 img {
    width: 100%;
}

.fv_list {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    bottom: 3rem;
}

.fv_list ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.fv_list li {
    width: 30%;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    border: .3rem solid #202778;
    border-radius: 1rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.fv_list li img {
    width: 4.4rem;
    height: auto;
}

.fv_list li p {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 2.2rem;
    margin-top: 0.6rem;
}

.fv_list li p span {
    color:#FF7802;
    font-weight: 900;
}

.fv_note {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: white;
}

/* 2v */
.secondv, .secondv_inner {
    width: 100%;
}

.secondv_inner img {
    width: 100%;
    height: auto;
}

/* cta */
.cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 3rem;
    gap: 2.8rem;
    background: #EDFBFF;
}

.cta_list {
    display: flex;
    gap: 2.8rem;
    flex-direction: column;
    width: 100%;
}

.cta_list li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    position: relative;
}

.cta_balloon {
    position: absolute;
    height: 3.5rem;
    width: auto;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.cta_balloon img {
    height: 100%;
    width: auto;
}

.cta_list li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    gap: 1.2rem;
    padding: 2.2rem 1rem;
}

.cta_list li.cta_list_facetoface a::before {
    content: '';
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    background: url('../images/cta_icon_facetoface.png') no-repeat center center;
    background-size: 100% auto;
}

.cta_list li.cta_list_online a::before {
    content: '';
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    background: url('../images/cta_icon_online.png') no-repeat center center;
    background-size: 100% auto;
}

.cta_list li a::after {
    content: '';
    display: block;
    width: 0.6rem;
    height: 1.4rem;
    background: url('../images/common_icon_whitearrow.png') no-repeat center center;
    background-size: 100% auto;
}

.cta_list li a span {
    line-height: 100%;
}

.cta_list li.cta_list_facetoface {
    background-color: #FF9602;
    box-shadow: 0px 0.3rem 0px #CF4D00;
}

.cta_list li.cta_list_online {
    background-color: #DA0000;
    box-shadow: 0px 0.3rem 0px #770000;
}

/* cases */
.cases {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3.2rem;
    padding: 4.2rem 2rem;
}

.cases_inner h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    line-height: 2.8rem;
    color: #202778;
}

/* cases */

.cases_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
}

.cases_item {
    filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.15));
    border-radius: 1rem;
    background-color: white;
    overflow: hidden;
}

.cases_item img {
    width: 100%;
    height: auto;
}

.cases_item dl {
    padding: 1rem;
    display: flex;
    gap: 0.2rem;
    padding: 1.4rem;
    flex-wrap: wrap;
}

.cases_item dd.cases_item_2column {
    width: 7.2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.cases_item dt {
    width: 7.2rem;
    background-color: #2C3265;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 0.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases_item dd {
  font-size: 1.3rem;
  width: calc(100% - 7.4rem);
  padding: 0.6rem 0.8rem;
}

/* points */
.points {
    width: 100%;
    background-color: #FAFAFA;
}

.points_inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 4.2rem 2rem;
    gap: 3.2rem;
}

.points_inner h2 {
    font-size: 2.8rem;
    font-weight: 900;
}

.points h2 img {
    width: 100%;
    height: auto;
}

.points_item {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.6rem;
}

.points_item_content.reverse {
    flex-direction: row-reverse;
}

.points_item_content p {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    padding: 2rem 1rem;
    color: white;
    background-color: #202778;
    border-radius: 2rem;
}

.points_item:nth-child(3) .points_item_content p {
    font-size: 1.8rem;
}

.points_item_content p span.small {
    font-size: 0.8em;
}

.points_item_content p span.orange {
    color: #FED852;
}

.points_item_content img {
    width: 14rem;
    height: auto;
}

.points_item_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.points_item_text {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem 2rem;
    color: #202778;
    border: 1px solid #202778;
}

.points_item_content p span.num {
    font-size: 2.4rem;
    line-height: 100%;
    font-weight: 900;
    color: white;
    display: block;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
}

/* compare */
.compare {
    width: 100%;
    background-color: #202778;
}

.compare_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4.2rem 2rem;
    gap: 3.2rem;
}

.compare_inner h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    line-height: 2.8rem;
    color: white;
}

.compare_inner h2 span.small {
    font-size: 0.8em;
}

.compare_table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.compare_table img {
    width: 100%;
    height: auto;
}

.compare_note {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: left;
    color: white;
}

/* map */
.map {
    width: 100%;
    background-color: white;
}

.map_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4.2rem 2rem 0;
    gap: 3.2rem;
}

.map_wrapper h2 {
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
    line-height: 2.8rem;
    color: #202778;
}

.map_wrapper h2 span.small {
    font-size: 0.8em;
}

/* マップ（クリニック所在地）
--------------------------------- */
.map {
  position: relative;
  background-color: white;
}

.map img {
  width: 100%;
  height: auto;
}

.map .map__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.map .map__inner h2 {
  margin-bottom: 76px;
}

.map .map__inner .map__contents {
  position: relative;
  margin-bottom: 60px;
}

.map .map__inner .map__contents .clinic-bubble {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map .map__inner .map__contents .clinic-bubble>div {
  position: absolute;
  width: 19.3rem;
}

.map .map__inner .map__contents .clinic-bubble>div::before {
  position: absolute;
  content: "";
  background-color: #fff;
}

.map .map__inner .map__contents .clinic-bubble>div h4 {
  padding: 0.4rem 1rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: #3C83D6;
}

.map .map__inner .map__contents .clinic-bubble>div .clinic-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
  padding: 0.7rem 1rem;
  background-color: #fff;
}

.map .map__inner .map__contents .clinic-bubble>div .pref {
  width: 8.4rem;
}

.map .map__inner .map__contents .clinic-bubble>div .pref h5 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  text-align: left;
}

.map .map__inner .map__contents .clinic-bubble>div .pref ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.map .map__inner .map__contents .clinic-bubble>div .pref ul li {
  width: fit-content;
  min-width: 8.2rem;
  height: 2.7rem;
  border: 0.1rem solid #3C83D6;
  border-radius: 2.7rem;
}

.map .map__inner .map__contents .clinic-bubble>div .pref ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3C83D6;
  cursor: pointer;
}

.map .map__inner .map__contents .clinic-bubble>div .pref ul li span {
  font-size: 0.9rem;
}

.map .map__inner .map__contents .clinic-bubble>div .pref ul li.place-front {
  z-index: 1;
}

.map .map__inner .map__contents .clinic-bubble .tokyo {
  top: 15.5rem;
  right: 0;
}

.map .map__inner .map__contents .clinic-bubble .tokyo::before {
  top: 10.5rem;
  left: 0;
  transform: translateX(-100%);
  width: 11rem;
  height: 2.5rem;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list {
  column-gap: 0.5rem;
}

.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref {
  width: fit-content;
}

.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref li {
  overflow: hidden;
}

.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref li a {
  transition: all 0.3s;
}

.map .map__inner .map__contents .clinic-bubble .tokyo .clinic-list .pref li a:hover {
  background-color: #3C83D6;
  color: #fff;
}

.map .map__inner .map__contents .clinic-bubble .kanto {
  right: 0;
  bottom: 0;
  width: 43.4rem;
}

.map .map__inner .map__contents .clinic-bubble .kanto::before {
  top: 0;
  left: 9rem;
  transform: translateY(-100%);
  width: 2rem;
  height: 5.5rem;
  background-color: #3C83D6;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list {
  column-gap: 0.5rem;
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref li {
  overflow: hidden;
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref li a {
  transition: all 0.3s;
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref li a:hover {
  background-color: #3C83D6;
  color: #fff;
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(3) {
  width: fit-content;
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(3) ul {
  flex-direction: column;
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(4) {
  width: 100%;
  margin-top: -3rem;
}

.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(5),
.map .map__inner .map__contents .clinic-bubble .kanto .clinic-list .pref:nth-child(6) {
  width: fit-content;
}

.map .map__inner .map__contents .clinic-bubble .hokkaido {
  right: 0;
  top: 0;
}

.map .map__inner .map__contents .clinic-bubble .hokkaido::before {
  top: 4.6rem;
  left: 0;
  transform: translateX(-100%);
  width: 4.6rem;
  height: 3.6rem;
  background-color: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 60%);
}

.map .map__inner .map__contents .clinic-bubble .hokkaido>h4 {
  background-color: #23569B;
}

.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list {
  column-gap: 0.5rem;
}

.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #23569B;
}

.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list .pref ul li a {
  color: #23569B;
  transition: all 0.3s;
}

.map .map__inner .map__contents .clinic-bubble .hokkaido .clinic-list .pref ul li a:hover {
  background-color: #23569B;
  color: #fff;
}

.map .map__inner .map__contents .clinic-bubble .chubu {
  left: 28%;
  top: 0;
}

.map .map__inner .map__contents .clinic-bubble .chubu::before {
  bottom: 0;
  right: 1rem;
  transform: translateY(100%);
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  clip-path: polygon(0 0, 60% 0, 100% 100%);
}

.map .map__inner .map__contents .clinic-bubble .chubu>h4 {
  background-color: #66AFF6;
}

.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list {
  column-gap: 0.5rem;
}

.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #66AFF6;
}

.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list .pref ul li a {
  color: #66AFF6;
  transition: all 0.3s;
}

.map .map__inner .map__contents .clinic-bubble .chubu .clinic-list .pref ul li a:hover {
  background-color: #66AFF6;
  color: #fff;
}

.map .map__inner .map__contents .clinic-bubble .kinki {
  left: 30%;
  bottom: 3rem;
}

.map .map__inner .map__contents .clinic-bubble .kinki::before {
  top: 0;
  left: 8rem;
  transform: translateY(-100%);
  width: 3rem;
  height: 3.6rem;
  background-color: #49C9AB;
  clip-path: polygon(0 100%, 100% 0, 70% 100%);
}

.map .map__inner .map__contents .clinic-bubble .kinki>h4 {
  background-color: #49C9AB;
}

.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list {
  column-gap: 0.5rem;
}

.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #49C9AB;
}

.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref ul li a {
  color: #49C9AB;
  transition: all 0.3s;
}

.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref ul li a:hover {
  background-color: #49C9AB;
  color: #fff;
}

.map .map__inner .map__contents .clinic-bubble .kinki .clinic-list .pref:nth-of-type(3) {
  width: 100%;
}

.map .map__inner .map__contents .clinic-bubble .shikoku {
  left: 6%;
  bottom: 0;
}

.map .map__inner .map__contents .clinic-bubble .shikoku::before {
  top: 0;
  right: 0;
  transform: translateY(-100%);
  width: 3rem;
  height: 3rem;
  background-color: #86CE76;
  clip-path: polygon(0 100%, 100% 0, 70% 100%);
}

.map .map__inner .map__contents .clinic-bubble .shikoku>h4 {
  background-color: #86CE76;
}

.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list {
  column-gap: 5px;
}

.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #86CE76;
}

.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref ul li a {
  color: #86CE76;
  transition: all 0.3s;
}

.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref ul li a:hover {
  background-color: #86CE76;
  color: #fff;
}

.map .map__inner .map__contents .clinic-bubble .shikoku .clinic-list .pref:nth-of-type(5) {
  width: 100%;
}

.map .map__inner .map__contents .clinic-bubble .kyushu {
  left: 0;
  top: 7rem;
}

.map .map__inner .map__contents .clinic-bubble .kyushu::before {
  bottom: 0;
  left: 9rem;
  transform: translateY(100%);
  width: 3.6rem;
  height: 3rem;
  background-color: #fff;
  clip-path: polygon(0 0, 60% 0, 100% 100%);
}

.map .map__inner .map__contents .clinic-bubble .kyushu>h4 {
  background-color: #57B288;
}

.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list {
  column-gap: 0.5rem;
}

.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list .pref ul li {
  overflow: hidden;
  border-color: #57B288;
}

.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list .pref ul li a {
  color: #57B288;
  transition: all 0.3s;
}

.map .map__inner .map__contents .clinic-bubble .kyushu .clinic-list .pref ul li a:hover {
  background-color: #57B288;
  color: #fff;
}

.map .map__inner .link-online a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  min-width: 71rem;
  max-width: 77.1rem;
  height: 9rem;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0D164A;
  background-color: #fff;
  border: 0.1rem solid #0D164A;
  transition: all 0.3s;
}

.map .map__inner .link-online a::before,
.map .map__inner .link-online a::after {
  position: absolute;
  content: "";
  bottom: 50%;
  transform: translateY(50%);
  transition: all 0.3s;
}

.map .map__inner .link-online a::before {
  left: calc(50% - 11.8em);
  width: 2.3rem;
  height: 3.7rem;
  background: url(../images/icon/icon-phone.png) no-repeat center/contain;
}

.map .map__inner .link-online a::after {
  right: calc(50% - 12em);
  width: 3.2rem;
  height: 3.4rem;
  background: url(../images/icon/icon-stethoscope.png) no-repeat center/contain;
}

@media (hover: hover) {
  .map .map__inner .link-online a:hover {
    background-color: #0D164A;
    color: #fff;
  }

  .map .map__inner .link-online a:hover::before {
    background: url(../images/icon/icon-phone-wh.png) no-repeat center/contain;
  }

  .map .map__inner .link-online a:hover::after {
    background: url(../images/icon/icon-stethoscope-wh.png) no-repeat center/contain;
  }
}

.map-click-modal {
  z-index: 999998;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
}

.map-click-modal .modal-layer {
  z-index: 999999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.map-click-modal .modal-contaienr {
  z-index: 999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3vw;
  background-color: #fff;
}

.map-click-modal .modal-contaienr .modal-close {
  position: absolute;
  content: "";
  top: -60px;
  right: -60px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.map-click-modal .modal-contaienr .modal-close::before,
.map-click-modal .modal-contaienr .modal-close::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 50%;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.map-click-modal .modal-contaienr .modal-close::before {
  transform: translate(50%, -50%) rotate(45deg);
}

.map-click-modal .modal-contaienr .modal-close::after {
  transform: translate(50%, -50%) rotate(-45deg);
}

.map-click-modal .modal-contaienr li {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-bottom: none;
}

.map-click-modal .modal-contaienr li h4 {
  width: 100%;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #162680;
}

.map-click-modal .modal-contaienr li>div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.map-click-modal .modal-contaienr li>div div.left {
  width: calc(52% - 10px);
}

.map-click-modal .modal-contaienr li>div div.left p.clinic-tel {
  position: relative;
  margin-bottom: 8.5px;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 700;
  color: #A27429;
}

.map-click-modal .modal-contaienr li>div div.left p.clinic-tel::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../images/icon/icon-tel-2.png) no-repeat center/contain;
}

.map-click-modal .modal-contaienr li>div div.left .business-hour {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #162680;
}

.map-click-modal .modal-contaienr li>div div.left .business-hour p {
  display: flex;
}

.map-click-modal .modal-contaienr li>div div.left .business-hour p span:nth-child(1) {
  width: 60px;
}

.map-click-modal .modal-contaienr li>div div.left .business-hour p span:nth-child(2) {
  width: calc(100% - 50px);
}

.map-click-modal .modal-contaienr li>div div.left .business-hour p .tp {
  visibility: hidden;
}

.map-click-modal .modal-contaienr li>div div.left .business-hour p.wide span:nth-child(1) {
  width: 88px;
}

.map-click-modal .modal-contaienr li>div div.left .business-hour p.wide span:nth-child(2) {
  width: calc(100% - 88px);
}

.map-click-modal .modal-contaienr li>div div.left .clinic-address {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
}

.map-click-modal .modal-contaienr li>div div.left .clinic-access {
  font-size: 12px;
  font-weight: 400;
}

.map-click-modal .modal-contaienr li>div div.right {
  width: calc(48% - 10px);
}

.map-click-modal .modal-contaienr li>div div.right iframe {
  width: 100%;
  height: 137px;
  margin-bottom: 15px;
}

.map-click-modal .modal-contaienr li>div div.right .visit-btn {
  z-index: 0;
  position: relative;
}

.map-click-modal .modal-contaienr li>div div.right .visit-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(#F7B029, #F79029, #F78029);
  border-radius: 5px;
}

.map-click-modal .modal-contaienr li>div div.right .visit-btn a img {
  width: 16px;
  height: auto;
  margin-right: 10px;
}

.map-click-modal .modal-contaienr li>div div.right .visit-btn a::after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9560E;
  border-radius: 5px;
}



  .map .map__inner .map__contents {
    position: relative;
    margin-bottom: 60px;
  }

  .map .map__inner .map__contents .sp-map-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .map .map__inner .map__contents .sp-map-label img {
    position: absolute;
    width: 29.4117647059%;
    cursor: pointer;
  }

  .map .map__inner .map__contents .sp-map-label img:nth-child(1) {
    top: 0;
    right: 3.01rem;
  }

  .map .map__inner .map__contents .sp-map-label img:nth-child(2) {
    top: 15.86rem;
    right: 0;
    width: 32.2128851541%;
  }

  .map .map__inner .map__contents .sp-map-label img:nth-child(3) {
    top: 19.17rem;
    right: 0;
    width: 32.2128851541%;
  }

  .map .map__inner .map__contents .sp-map-label img:nth-child(4) {
    top: 4.7rem;
    right: 13.16rem;
  }

  .map .map__inner .map__contents .sp-map-label img:nth-child(5) {
    top: 8.08rem;
    left: 7.37rem;
  }

  .map .map__inner .map__contents .sp-map-label img:nth-child(6) {
    top: 18.42rem;
    left: 11.65rem;
  }

  .map .map__inner .map__contents .sp-map-label img:nth-child(7) {
    top: 18.42rem;
    left: 0;
  }

  .map .map__inner .map__contents .clinic-bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    margin: 3rem auto 0;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area {
    position: relative;
    width: 100%;
    inset: unset;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area::before {
    content: none;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area:not(:last-child) {
    margin-bottom: 1.1rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.is-open h4::after {
    transform: translateY(-50%) rotate(0);
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area h4 {
    position: relative;
    padding: 0.6rem 1rem;
    font-size: 1.4rem;
    cursor: pointer;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area h4::before,
  .map .map__inner .map__contents .clinic-bubble>div.map-area h4::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 0.2rem;
    background-color: #fff;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area h4::after {
    transform: translateY(-50%) rotate(90deg);
    transition: all 0.3s;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area .clinic-list {
    column-gap: 1rem !important;
    row-gap: 1rem !important;
    padding: 1rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area .pref {
    width: 9rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area .pref h5 {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area .pref ul {
    gap: 0.5rem;
    list-style: none;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area .pref ul li {
    min-width: 9rem;
    height: 3rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area .pref ul li a {
    padding: 0.2rem 0.5rem;
    font-size: 1.2rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area .pref ul li a span {
    font-size: 0.9rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .clinic-list {
    column-gap: 1rem;
    row-gap: 0.5rem;
    padding: 1rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref {
    width: 8rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(2) {
    width: 70%;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(3) {
    order: 9;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(3) ul li a {
    padding: 0.2rem 1rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(4),
  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(5),
  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(6) {
    width: 8rem !important;
    margin-top: 0 !important;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(4) ul,
  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(5) ul,
  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref:nth-of-type(6) ul {
    gap: 0.5rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref ul {
    gap: 0.5rem;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kanto .pref ul li {
    min-width: 8rem !important;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.hokkaido {
    order: -1;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.chubu .pref:nth-of-type(3) {
    order: -1;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.shikoku .pref:nth-of-type(5) {
    width: fit-content;
  }

  .map .map__inner .map__contents .clinic-bubble>div.map-area.kyushu .pref:nth-of-type(2) {
    width: fit-content;
    order: -1;
  }

  .map .map__inner .link-online a {
    width: 100%;
    max-width: 40rem;
    min-width: auto;
    height: 8.3rem;
    padding: 0.5rem 5rem;
    font-size: 1.8rem;
  }

  .map .map__inner .link-online a::before {
    left: 1em;
    width: 1.6rem;
    height: 2.5rem;
  }

  .map .map__inner .link-online a::after {
    right: 1em;
    width: 2.2rem;
    height: 2.3rem;
  }

  .map-click-modal .modal-contaienr .modal-close {
    top: -50px;
    right: -10px;
    width: 40px;
    height: 40px;
  }

  .map-click-modal .modal-contaienr .modal-content {
    overflow-y: auto;
    height: fit-content;
    max-height: 70svh;
  }

  .map-click-modal .modal-contaienr li {
    width: 300px;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .map-click-modal .modal-contaienr li h4 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .map-click-modal .modal-contaienr li>div {
    flex-direction: column;
    flex-wrap: nowrap;
    height: calc(100% - 60px);
  }

  .map-click-modal .modal-contaienr li>div div.left {
    width: 100%;
    margin-bottom: 10px;
  }

  .map-click-modal .modal-contaienr li>div div.left .business-hour {
    font-size: 12px;
  }

  .map-click-modal .modal-contaienr li>div div.left .business-hour p {
    display: flex;
  }

  .map-click-modal .modal-contaienr li>div div.left .business-hour p span:nth-child(1) {
    width: 60px;
  }

  .map-click-modal .modal-contaienr li>div div.left .business-hour p span:nth-child(2) {
    width: calc(100% - 60px);
  }

  .map-click-modal .modal-contaienr li>div div.right {
    width: 100%;
    margin-top: auto;
    padding-bottom: 16px;
  }

  .map-click-modal .modal-contaienr li>div div.right iframe {
    height: 150px;
    margin-bottom: 10px;
  }

  .map-click-modal .modal-contaienr li>div div.right .visit-btn a {
    max-width: 250px;
    height: 48px;
    margin: 0 auto;
    font-size: 16px;
    text-decoration: none;
  }

  .map-click-modal .modal-contaienr li>div div.right .visit-btn a img {
    width: 18px;
  }



/* result */

.result .result_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem 4.2rem;
  gap: 2.2rem;
}

.result_inner h2 {
  width: 100%;
  text-align: center;
}

.result h2 img {
  width: 60%;
  height: auto;
}

.result_contents_note {
  font-size: 0.9rem;
  font-weight: 400;
  color: #797979;
  text-align: center;
}

.result .result_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}

.result .result_contents p {
  text-align: center;
  margin-bottom: -2.6rem;
}

.result .result_contents img {
  width: 100%;
  height: auto;
}

/* understand */

.understand {
  background-color: #A7B0D2;
  padding: 4.2rem 2rem;
}

.understand_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 3.2rem 2.2rem;
  gap: 2.2rem;
  position: relative;
}

.understand_inner p {
  font-size: 1.7rem;
  font-weight: 700;
  color: #202778;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
}

.understand_inner p>span {
  display: block;
}

.understand_inner p>span span {
  line-height: 100%;
}

.understand_inner p span .rem44 {
  font-size: 4.4rem;
}

.understand_inner p span .rem31 {
  font-size: 3.1rem;
}

.understand_inner p span .rem26 {
  font-size: 2.6rem;
}

.understand_inner p span .rem34 {
  font-size: 3.4rem;
}

.understand_inner p span .oswald {
  font-family: 'Oswald', sans-serif;
}

.understand_inner p span .bold {
  font-weight: 900;
}

.understand_inner p span .marker {
  background: linear-gradient(transparent 60%, #FFDE73 60%);
}

.understand_img img {
  width: 100%;
  height: auto;
}

.understand_note {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  text-align: center;
  color: #797979 !important;
}

.understand_inner:after {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: #202778 1px solid;
}

.understand_inner:before {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: #202778 1px solid;
}

/* price */

.price {
  background-color: white;
}

.price_inner {
  max-width: 100%;
}

.price_inner h2 {
  width: 100%;
  text-align: center;
}

.price_inner h2 img {
  width: 100%;
  height: auto;
}

.price_inner ul {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.price_inner>ul>li {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background: #EDFBFF;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
  border-radius: 1.6rem;
  overflow: hidden;
}

.price_inner ul li h3 {
  width: 100%;
  text-align: center;
}

.price_inner ul li h3 img {
  width: 100%;
  height: auto;
}

.price_inner ul li div {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.price_inner ul li div p.price_num {
  width: 100%;
  text-align: center;
}

.price_inner ul li div p.price_num img {
  width: auto;
  height: 6.1rem;
}

.price_inner ul li div ul.price_cta_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.price_cta_list {
  display: flex;
  gap: 2.8rem;
  flex-direction: column;
  width: 100%;
}

.price_cta_list>li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  position: relative;
}

.price_cta_balloon {
  position: absolute;
  height: 3.5rem;
  width: auto;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.price_cta_balloon img {
  height: 100%;
  width: auto;
}

.price_cta_list li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  gap: 1.2rem;
  padding: 2.2rem 1rem;
}

.price_cta_list li.price_cta_list_facetoface a::before {
  content: '';
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url('../images/cta_icon_facetoface.png') no-repeat center center;
  background-size: 100% auto;
}

.price_cta_list li.price_cta_list_online a::before {
  content: '';
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url('../images/cta_icon_online.png') no-repeat center center;
  background-size: 100% auto;
}

.price_cta_list li a::after {
  content: '';
  display: block;
  width: 0.6rem;
  height: 1.4rem;
  background: url('../images/common_icon_whitearrow.png') no-repeat center center;
  background-size: 100% auto;
}

.price_cta_list li a span {
  line-height: 100%;
}

.price_cta_list li.price_cta_list_facetoface {
  background-color: #FF9602;
  box-shadow: 0px 3px 0px #CF4D00;
}

.price_cta_list li.price_cta_list_online {
  background-color: #DA0000;
  box-shadow: 0px 3px 0px #770000;
}

.price_set_lead {
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  color: #3B3C4C;
  padding: 2rem 2rem 0;
}

.price_set_list>li:first-child {
  background-color: #FFF8F3 !important;
}

.price_note {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #797979;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.price_note.last {
  text-align: left;
  padding: 0 2rem 0;
}

.price_set_list .price_num img {
  width: 90% !important;
  height: auto !important;
}

/* medication */
.medication {
  width: 100%;
  background-color: #F0F1FF;
}

.medication_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 3.2rem 2rem;
}
.medication_inner h2 {
  width: 100%;
  text-align: center;
}
.medication_inner h2 img {
  width: 100%;
  height: auto;
}

.medication_inner ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.medication_inner ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.2rem 2rem;
  gap: 2rem;
  background: #FFFFFF;
  box-shadow: 0.4rem 0.4rem 0rem rgba(32, 39, 120, 0.5);
  border-radius: 1.6rem;
  position: relative;
}

.medication_inner ul li h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 120%;
}

.medication_inner ul li h3 span {
  display: inline-block;
  font-size: 2.2rem;
  color: #202778;
  border: 2px solid #202778;
  padding: 1rem 2rem;
  line-height: 100%;
}

.medication_inner ul li .medication_img {
  width: 100%;
  text-align: center;
}

.medication_inner ul li .medication_img img {
  width: 60%;
  height: auto;
}

.medication_inner ul li .medication_text {
  width: 100%;
  font-size: 1.6rem;
  line-height: 160%;
}

.medication_inner ul li .medication_balloon {
  position: absolute;
  top: -2rem;
  left: -1rem;
  width: 9rem;
}

.medication_inner ul li .medication_balloon img {
  width: 100%;
  height: auto;
}

.medication_inner ul li .medication_note {
  width: 100%;
  font-size: 0.8rem;
  color: #797979;
  text-align: center;
}

/* doctor */

.doctor {
  width: 100%;
  background-color: white;
}

.doctor_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4.2rem 2rem;
}

.doctor_inner h2 {
  width: 100%;
  text-align: center;
}

.doctor_profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.doctor_profile .doctor_history h3 {
  font-size: 1.4rem;
  color: white;
  background-color: #202778;
  padding: 0.8rem 2rem;
  display: inline-block;
  line-height: 100%;
}

.doctor_profile .doctor_history ul {
  margin-left: 2rem;
  margin-top: 0.6rem;
}

.doctor_profile .doctor_history ul li {
  line-height: 180%;
}

.doctor_award {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

/* topix */

.topix {
  width: 100%;
  background-color: #F0F0F0;
}

.topix_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 4.2rem 2rem;
}

.topix_inner h2 {
  width: 100%;
  text-align: center;
}

/* pain */

.pain {
  width: 100%;
  position: relative;
}

.pain h2 {
  width: 100%;
  text-align: center;
}

.pain_list {
  position: absolute;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  top: 44rem;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
}

/* success */

.success {
  width: 100%;
  background: url('../images/success_bg.jpg') no-repeat top center white;
  background-size: 100% auto;
}

.success_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.success_inner h2 {
  width: 100%;
  text-align: center;
}

.success_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 15rem 2rem 4.2rem;
  list-style: none;
}

.success_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 0rem 0rem;
  gap: 1.2rem;
  background: #F2F3FB;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.6rem;
  overflow: hidden;
}

.success_list li h3 {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  color: #202778;
  font-weight: 800;
  line-height: 130%;
}

.success_list li h3 span.orange {
  color: #FF7802;
}

.success_list li h3 span.marker {
  background: linear-gradient(transparent 70%, #FFDE73 70%);
}

.success_list li h3 span.small {
  font-size: 0.8em;
}

.success_list li h3 span.thin.small {
  font-weight: 400;
  font-size: 0.7em;
}

/* pledge */

.pledge {
  width: 100%;
  background-color: #E4ECF7;
}

.pledge_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 1.6rem;
}

.pledge_inner h2 {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  font-family: 'Shippori Mincho', serif;
  color: #202778;
}

.pledge_inner h2 span {
  line-height: 100%;
}

.pledge_inner h2 span.large {
  font-size: 4.8rem;
}

.pledge_inner h2 span.tip {
  position: relative;
}

.pledge_inner h2 span.tip::before {
  position: absolute;
  background: url('../images/icon_tip.png') no-repeat center center;
  background-size: 100% auto;
  content: "";
  top: 0rem;
  right: -2rem;
  width: 2rem;
  height: 2rem;
}

.pledge_inner h2 span.regular {
  font-weight: 400;
}

.pledge_lead {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #202778;
  color: #fff;
  padding: 1.3rem 1.6rem;
  line-height: 100%;
  margin: 1.8rem 0 2.4rem;
  font-family: 'Shippori Mincho', serif;
}

.pledge_line {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: #000000;
  border-top: 1px solid #B4C6DF;
  border-bottom: 1px solid #B4C6DF;
}

.pledge_line>span {
  display: block;
  width: 100%;
  line-height: 130%;
  border-bottom: 1px dotted #B4C6DF;
  padding: 1em 0rem;
  text-align: center;
}

.pledge_line>span:last-child {
  border-bottom: none;
}

.pledge_line .sub {
  font-size: 0.6em;
  vertical-align: text-top;
}

.pledge_note {
  font-size: 0.8rem;
  font-weight: 400;
  color: #797979;
  text-align: left;
  margin-top: 1.8rem;
}

/* payment */
.payment {
  width: 100%;
  background-color: #FFFFFF;
}
.payment_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 2rem 3.2rem;
  gap: 3.2rem;
}

.payment_inner h2 {
  width: 100%;
  text-align: center;
}

.payment_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.payment_block h3 {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #0E183F;
  color: #fff;
  padding: 1.3rem 1.6rem;
  line-height: 100%;
  margin-bottom: 1.2rem;
}

/* flow */
.flow {
  width: 100%;
  background-color: #FFFFFF;
}
.flow_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 2rem 3.2rem;
  gap: 3.2rem;
}

.flow_inner h2 {
  width: 100%;
  text-align: center;
}

.flow_tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.flow_tab li {
  list-style: none;
  width: 50%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  line-height: 100%;
  background-color: #9498AE;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
}

.flow_tab li.is-active {
  background-color: #0E183F;
}

.flow_tab li h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem 0;
}

.flow_tab li h3 span {
  font-size: 1.2rem;
  font-weight: 400;
}

.flow_inner .flow_contents_facetoface,
.flow_inner .flow_contents_online {
  display: none;
}

.flow_inner .flow_contents_facetoface.is-active,
.flow_inner .flow_contents_online.is-active {
  display: block;
}

.flow ol {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
  background-color: #E4ECF7;
  border: 2px solid #0E183F;
  padding: 2rem;
}

.flow ol>li {
  list-style: none;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.flow ol>li::before {
  content: "";
  position: absolute;
  background: url('../images/icon_bottomarrow.png') no-repeat center center;
  background-size: auto 100%;
  bottom: -2.3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 3rem;
  height: 0.8rem;
  border-radius: 50%;
}

.flow ol>li:last-child::before {
  display: none;
}

.flow ol>li>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow ol>li>div img {
  width: 50%;
  height: auto;
}

.flow ol>li>div span.price_cta_balloon img {
  width: auto;
  height: 100%;
}

.flow ol>li>div span.price_cta_balloon {
  height: 2.5rem;
  top: -0.7rem;
}

.flow_contents_text .price_cta_list {
  margin-top: 0.3rem;
}

.flow ol>li>div h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0E183F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  width: 50%;
}

.flow ol>li>div h4 span.small {
  font-size: 1.2rem;
  font-weight: 500;
  color: #FED852;
  font-family: 'Oswald', sans-serif;
  background-color: #0E183F;
  padding: 0.3rem 1rem;
  border-radius: 4rem;
}

.flow ol>li>div h4 span.small span {
  font-size: 0.8em;
  font-weight: 300;
}

.flow ol>li>.flow_contents_text {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #000000;
}

.flow ol>li>.flow_contents_text p {
  line-height: 160%;
}

.flow ol>li>.flow_contents_text p.small {
  font-size: 0.9em;
  font-weight: 400;
  color: #797979;
  text-align: left;
  width: 100%;
}

.flow .telinfo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.flow .telinfo>p {
  display: flex;
  gap: 0.8rem;
  width: 100%;
}

.flow .telinfo>p img {
  width: 2.2rem;
  height: auto;
}

.flow .telinfo>p .telnum {
  font-size: 2.4rem;
  font-weight: 700;
  color: #202778;
  font-family: 'Oswald', sans-serif;
}

.flow .telinfo>p .telnum_note {
  font-size: 1.2rem;
  color: #202778;
}

.flow .consult-hour {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  border: 1px solid #202778;
  border-radius: 10px;
  padding: 1.4rem;
}

.flow .consult-hour h4 {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 800;
  color: #202778;
  text-align: center;
  font-weight: 700;
  line-height: 100%;
}

 .flow .consult-hour div {
  display: flex;
  gap: 1rem;
  width: 100%;
  font-size: 1.4rem;
  align-items: center;
 }

.flow .consult-hour div p {
  font-weight: 700;
  text-align: center;
  width: 6em;
}

.flow .consult-hour div ul {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(32, 39, 120, 0.4);
  padding-left: 0.8em;
  width: 100%;
}

.flow .consult-hour div ul li {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: unset;
  font-weight: 600;
}

/* クリニック一覧
--------------------------------- */
.clinic {
  z-index: 0;
  position: relative;
  background-color: #fff;
  padding: 70px 15px 70px;
}

.clinic li {
  list-style: none;
}

.clinic .clinic__inner {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.clinic .clinic__inner h2 {
  margin-bottom: 45px;
  width: 100%;
  text-align: center;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group {
  border: 0.1rem solid #0D164A;
  border-radius: 1rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group:not(:last-child) {
  margin-bottom: 1.5rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #0D164A;
  border-radius: 0.8rem;
  transition: all 0.3s;
  cursor: pointer;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::before,
.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  transition: all 0.3s;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::after {
  transform: translateY(-50%) rotate(90deg);
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3.is-open::after {
  transform: translateY(-50%) rotate(0);
}

@media (hover: hover) {
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3:hover {
    opacity: 0.8;
  }
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list {
  display: none;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list.is-open {
  display: block;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.4rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li {
  position: relative;
  width: calc(50% - 2rem);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid #B2B2B2;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li.bb-n {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li:nth-child(odd)::before {
  position: absolute;
    content: "";
    top: 0;
    right: -2.1rem;
    width: 0.1rem;
    height: 100%;
    background-color: #B2B2B2;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li h4 {
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #162680;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div {
  display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: calc(100% - 4.5rem);
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left p.clinic-tel {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 2rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #A27429;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left p.clinic-tel::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background: url(../images/icon/icon-tel-2.png) no-repeat center/contain;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #162680;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p {
  display: flex;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p span:nth-child(1) {
  width: 6rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p span:nth-child(2) {
  width: calc(100% - 4rem);
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p .tp {
  visibility: hidden;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p.wide span:nth-child(1) {
  width: 7.8rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p.wide span:nth-child(2) {
  width: calc(100% - 6.8rem);
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .clinic-address {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .clinic-access {
  font-size: 1.1rem;
  font-weight: 400;
}

.business-hour-note {
  font-size: 1rem;
  color: #162680;
  margin-bottom: 1rem;
  font-feature-settings: "palt";
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right iframe {
  width: 100%;
  height: 13.7rem;
  margin-bottom: 1.5rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right .visit-btn {
  z-index: 0;
  position: relative;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right .visit-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(#F7B029, #F79029, #F78029);
  border-radius: 0.5rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right .visit-btn a img {
  width: 1.6rem;
  height: auto;
  margin-right: 1rem;
}

.clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right .visit-btn a::after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B9560E;
  border-radius: 0.5rem;
}


  .clinic {
    padding: 50px 10px 50px;
  }

  .clinic .clinic__inner h2 {
    margin-bottom: 45px;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group:not(:last-child) {
    margin-bottom: 0.8rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3 {
    height: 6.3rem;
    font-size: 1.8rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::before,
  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group h3::after {
    right: 2rem;
    width: 1.4rem;
    height: 0.2rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul {
    padding: 2rem 1.6rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li {
    width: calc(50% - 1rem);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li.ht-86>div {
    height: calc(100% - 8.6rem);
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li:nth-child(odd)::before {
    right: -1.05rem;
    height: calc(100% - 2rem);
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li h4 {
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div {
    flex-direction: column;
    flex-wrap: nowrap;
    height: calc(100% - 6rem);
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left {
    width: 100%;
    margin-bottom: 1rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour {
    font-size: 1.1rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p {
    display: flex;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p span:nth-child(1) {
    width: 6rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.left .business-hour p span:nth-child(2) {
    width: calc(100% - 6rem);
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right {
    width: 100%;
    margin-top: auto;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right iframe {
    height: 15rem;
    margin-bottom: 1rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right .visit-btn a {
    max-width: 25rem;
    height: 4.8rem;
    margin: 0 auto;
    font-size: 1.6rem;
  }

  .clinic .clinic__inner .clinic-list-wrap .clinic-area-group .area-list ul li>div div.right .visit-btn a img {
    width: 1.8rem;
  }


/* interior */
.interior {
  width: 100%;
  background-color: #FFFFFF;
}
.interior_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 2rem 3.2rem;
  gap: 3.2rem;
}

.interior_splide button.splide__arrow {
  background: none;
  opacity: 1;
  width: 3.6rem;
  height: 3.6rem;
}

.interior_splide .splide__pagination {
  margin-top: 1.6rem;
  position: relative;
}

.interior_splide .splide__pagination .is-active {
  background-color: #FF7802;
}

.splide__arrow--prev {
  left: -1em !important;
}

.splide__arrow--next {
  right: -1em !important;
}


/* qa */
.qa {
  width: 100%;
  background-color: #E4ECF7;
}
.qa_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 3.2rem 2rem 3.2rem;
  gap: 3.2rem;
}

.qa_contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.qa_contents ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qa_contents ul li {
  background-color: white;
  border-radius: 0.8rem;
}

.qa_contents ul li h3 {
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding-right: 3rem;
}
.qa_contents ul li h3::before {
  content: "Q.";
  color: #132871;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.qa_contents ul li h3 .qa-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.qa_contents ul li h3 .qa-toggle::before,
.qa_contents ul li h3 .qa-toggle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 0.2rem;
  background-color: #132871;
  transition: transform 0.3s;
}

.qa_contents ul li h3 .qa-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qa_contents ul li h3.is-open .qa-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* 初期は閉じた状態。開閉は JS の slideDown/slideUp で制御（アニメーション維持） */
.qa_contents ul li .qa_contents_text {
  display: none;
}

.qa_contents ul li .qa_contents_text_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
}

.qa_contents ul li .qa_contents_text_label {
  display: block;
  color: #F27600;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

/* footer */
footer {
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
}

.footer_contents {
  width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 2.6rem;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 1.4rem;
    flex-wrap: wrap;
    row-gap: 1.4rem;
}

.footer_contents a {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer_contents a:hover {
  text-decoration: none;
}

.footer_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 4.2rem 2rem;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

/* side */

.side-left {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: calc(calc(100% - 750px) / 2);
  height: 100%;
  background: linear-gradient(180deg, #1F2778 0%, #00085D 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.side-left>img {
  height: auto;
  width: 70%;
}

.side-left a {
  display: block;
  width: 70%;
}

.side-left a:hover {
  filter: brightness(1.1);
}

.side-right {
  position: fixed;
  z-index: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: calc(calc(100% - 750px) / 2);
  height: 100%;
  background: linear-gradient(180deg, #F4A904 0%, #F49004 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.side-right img {
  display: block;
  width: 86%;
  filter: drop-shadow(0px 0px 31.013px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1300px) {
  .side-left img {
    display: none;
  }
  .side-left a {
    display: none;
  }
  .side-right img {
    display: none;
  }

}

@media (max-width: 750px) {
  .side-left {
    display: none;
  }
  .side-right {
    display: none;
  }
}