@charset "UTF-8";
/* 修正はSassで。CSSに書かないこと */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ======================================================================
 common
====================================================================== */
html {
  font-size: 0.7142857143vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", serif;
  color: #191919;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  color: inherit;
}

select::-ms-expand {
  display: none;
}

label {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #191919;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.inner {
  width: calc(100% - 50rem);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 92%;
  }
}

.sm {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sm {
    display: block !important;
  }
  .md {
    display: none !important;
  }
}
.trans {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .trans {
    transition: none;
  }
}

.trans:hover,
.trans:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .trans:hover,
  .trans:hover img {
    opacity: 1;
  }
}

/* ======================================================================
 header
====================================================================== */
.header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 6rem;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    padding: 0 0 0 4%;
  }
}
.header_logo {
  width: 20rem;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 25rem;
  }
}
.header_logo img {
  margin-top: 0.5rem;
}
.header_box {
  display: flex;
  align-items: center;
}
.header_tel {
  pointer-events: none;
  width: 30rem;
  margin-right: 4.5rem;
}
@media screen and (max-width: 768px) {
  .header_tel {
    pointer-events: inherit;
    width: 27rem;
    margin: 0;
  }
}
.header_tel_top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .header_tel_top {
    flex-direction: column;
  }
}
.header_tel_tag {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  order: 2;
  background: #191919;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1rem;
  font-size: 1.3rem;
  width: 10rem;
  height: 2.1rem;
  border-radius: 2.1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .header_tel_tag {
    order: 1;
    width: 100%;
    height: 3rem;
  }
}
.header_tel_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  color: #191919;
  font-size: 1.8rem;
}
.header_add {
  display: flex;
  align-items: flex-end;
  color: #191919;
  font-size: 1.5rem;
  line-height: 2.2rem;
}
.header_add::before {
  content: url(../new-img/ico_map.png);
  margin: 0 0.8rem 0 0;
}
.header._subpage {
  position: static;
}
@media screen and (max-width: 768px) {
  .header._subpage {
    position: fixed;
  }
}

.header_menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 10rem;
  height: 10rem;
  box-sizing: border-box;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.header_menu::before {
  position: absolute;
  top: 30%;
  left: 25%;
  display: block;
  content: "";
  width: 50%;
  height: 2px;
  background: #717171;
  transform: rotate(0deg);
  transition: transform 0.3s ease, top 0.1s ease;
}

.header_menu::after {
  position: absolute;
  bottom: 30%;
  left: 25%;
  display: block;
  content: "";
  width: 50%;
  height: 2px;
  background: #717171;
  transform: rotate(0deg);
  transition: transform 0.3s ease, bottom 0.1s ease;
}

.header_menu span {
  position: absolute;
  top: calc(50% - 1px);
  left: 25%;
  display: block;
  overflow: hidden;
  width: 50%;
  height: 2px;
  color: #717171;
  opacity: 1;
  background: #717171;
  transition: opacity 0.1s ease;
}

.header_menu._active span {
  opacity: 0;
}

.header_menu._active::before {
  top: calc(50% - 1px);
  transform: rotate(315deg);
}

.header_menu._active::after {
  bottom: calc(50% - 1px);
  transform: rotate(-315deg);
}

/* ======================================================================
 footer
====================================================================== */
.footer_top {
  cursor: pointer;
  background: #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 6.9rem;
}
@media screen and (max-width: 768px) {
  .footer_top {
    height: auto;
    display: block;
    text-align: center;
    padding: 3% 0;
  }
}
.footer_top img {
  width: 3.7rem;
}
.footer_btm {
  background: linear-gradient(to bottom, rgb(144, 144, 144) 0%, rgb(81, 81, 81) 100%);
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .footer_btm {
    padding: 7% 0 15rem;
  }
}
.footer_logo {
  display: block;
  margin: 5rem auto 12rem;
  width: 49rem;
}
.footer_copy {
  color: #fff;
  text-align: center;
  letter-spacing: 0.1rem;
  font-size: 1.5rem;
}

/* ======================================================================
 top
====================================================================== */
.top_slider {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_slider {
    padding-top: 10rem;
  }
}
.top_slider_ttl {
  position: absolute;
  z-index: 999;
  width: 51rem;
  left: 15rem;
  bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top_slider_ttl {
    width: 70%;
    left: 5%;
    bottom: 5%;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.top_slider .add-animation {
  animation: zoomUp 25s linear 0s normal both;
}
.top_slider_img {
  width: 100%;
  height: 87vh;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top_slider_img {
    height: auto;
  }
}
.top_slider_img._img01 {
  background-image: url(../new-img/main_1.jpg);
}
.top_slider_img._img02 {
  background-image: url(../new-img/main_2.jpg);
}
.top_slider_img._img03 {
  background-image: url(../new-img/main_3.jpg);
}
.top_policy {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .top_policy {
    padding: 6rem 0 7rem;
  }
}
.top_policy_ttl {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.25rem;
  font-size: 3.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .top_policy_ttl {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 4rem;
  }
}
.top_policy_img {
  position: absolute;
  right: 0;
  top: 5rem;
  width: 33.3rem;
}
@media screen and (max-width: 768px) {
  .top_policy_img {
    position: static;
    margin: 0 auto 3rem;
    width: 100%;
  }
}
.top_policy_txt {
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
  line-height: 3rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .top_policy_txt {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}
.top_policy .sec_btn01 {
  margin-top: 1.5em;
}
.top_menu {
  background: #f1f3f2 url(../new-img/top_bg01.jpg) no-repeat 50% 100%;
  background-size: 100%;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .top_menu {
    padding: 7rem 0;
  }
}
@media screen and (max-width: 768px) {
  .top_menu._subpage {
    padding: 20rem 0 7rem;
  }
}
.top_menu .inner {
  width: 88rem;
}
@media screen and (max-width: 768px) {
  .top_menu .inner {
    width: 92%;
  }
}
.top_menu_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .top_menu_ttl {
    font-size: 4rem;
  }
}
.top_menu_tab {
  display: flex;
  justify-content: space-between;
}
.top_menu_tab_btn {
  font-weight: 500;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(178, 178, 178, 0.8);
  width: 42.7rem;
  height: 7rem;
  border-radius: 3.5rem 3.5rem 0 0;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .top_menu_tab_btn {
    width: 49%;
    height: 10rem;
    font-size: 2.5rem;
  }
}
.top_menu_tab_btn._active {
  background-color: rgba(255, 255, 255, 0.8);
  color: #191919;
}
.top_menu_tab_btn._active::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px solid #e50214;
}
.top_menu_cont {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 3.5rem 3.5rem;
  height: 61rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont {
    height: auto;
  }
}
.top_menu_cont_box {
  display: none;
}
.top_menu_cont_tm {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.1rem;
  padding: 5rem 7rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_tm {
    display: block;
    padding: 4%;
  }
}
.top_menu_cont_tm_list {
  font-weight: 500;
  width: 33rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_tm_list {
    width: 100%;
    font-size: 2.8rem;
  }
}
.top_menu_cont_tm_list_box {
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_tm_list_box {
    padding: 3rem 0;
    border-bottom: 1px dashed #909090;
  }
}
.top_menu_cont_tm_list_box:not(:last-child) {
  border-bottom: 1px dashed #909090;
}
.top_menu_cont_tm_list_btn {
  display: block;
  background-image: url(../new-img/arw02_r_rd.svg);
  background-repeat: no-repeat;
  background-position: 97% 50%;
  background-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_tm_list_btn {
    background-size: 1rem;
  }
}
.top_menu_cont_tm_sub {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_tm_sub {
    margin-top: 2rem;
  }
}
.top_menu_cont_tm_sub_btn {
  display: flex;
  align-items: center;
  background-image: url(../new-img/arw02_r_rd.svg);
  background-repeat: no-repeat;
  background-position: 97% 50%;
  background-size: 0.8rem;
  font-weight: 400;
  font-size: 1.6rem;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_tm_sub_btn {
    font-size: 2.4rem;
    padding: 2rem 0;
    background-size: 1rem;
  }
}
.top_menu_cont_tm_sub_btn:last-child {
  margin-bottom: -1rem;
}
.top_menu_cont_tm_sub_new {
  background: #e50214;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.2rem;
  width: 5.3rem;
  height: 2rem;
  border-radius: 2rem;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_tm_sub_new {
    width: 8rem;
    height: 3rem;
  }
}
.top_menu_cont_wor {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 13.5rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_wor {
    padding: 4%;
    justify-content: space-between;
  }
}
.top_menu_cont_wor_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #717171;
  width: 15.2rem;
  height: 15.2rem;
  border-radius: 15.2rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_wor_btn {
    width: 20rem;
    height: 20rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.top_menu_cont_wor_btn:not(:nth-child(3n)) {
  margin-right: 7rem;
}
@media screen and (max-width: 768px) {
  .top_menu_cont_wor_btn:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.top_reason {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .top_reason {
    padding: 7rem 0;
  }
}
.top_reason_ttl {
  text-align: center;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .top_reason_ttl {
    font-size: 3rem;
  }
}
.top_reason_ttl_b {
  font-size: 3.5rem;
  margin-top: 1rem;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 768px) {
  .top_reason_ttl_b {
    font-size: 4rem;
  }
}
.top_reason_ttl_b span {
  color: #e50214;
  font-size: 5rem;
}
.top_reason_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top_reason_list {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}
.top_reason_list_box {
  position: relative;
  background: #fff;
  box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.15);
  width: 27rem;
  min-height: 55.4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .top_reason_list_box {
    width: 100%;
    margin-top: 10%;
    min-height: auto;
    padding-bottom: 10rem;
  }
}
.top_reason_list_box:not(:nth-child(3n)) {
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .top_reason_list_box:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.top_reason_list_img {
  position: relative;
}
.top_reason_list_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255) 100%);
}
.top_reason_list_desc {
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .top_reason_list_desc {
    padding: 7% 4% 4%;
  }
}
.top_reason_list_ttl {
  text-align: center;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .top_reason_list_ttl {
    font-size: 3.5rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }
}
.top_reason_list_ttl span {
  border-bottom: 2px solid #e50214;
  padding-bottom: 0.5rem;
}
.top_reason_list_txt {
  font-size: 1.4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top_reason_list_txt {
    font-size: 2.4rem;
    line-height: 1.7;
  }
}
.top_reason_list_en {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 14.2rem;
}
.top_covid {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top_covid {
    display: block;
    background: url(../new-img/top_img07.jpg) no-repeat 50% 50%;
    background-size: cover;
  }
}
.top_covid_desc {
  width: 50%;
  background: #feeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .top_covid_desc {
    width: 100%;
    padding: 10% 4%;
    box-sizing: border-box;
    color: #fff;
    background-color: rgba(25, 25, 25, 0.6);
  }
}
.top_covid_img {
  width: 50%;
}
.top_covid_ttl {
  text-align: center;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 2.7rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .top_covid_ttl {
    font-size: 4rem;
  }
}
.top_covid_ttl::after {
  content: "";
  background: #191919;
  display: block;
  margin: 2rem auto 0;
  width: 12.4rem;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .top_covid_ttl::after {
    margin: 4rem auto 0;
    background: #fff;
  }
}
.top_covid_txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 768px) {
  .top_covid_txt {
    font-size: 2.8rem;
    line-height: 1.7;
  }
}
.top_ranking {
  background: url(../new-img/top_bg02.png) no-repeat 50% 0;
  background-size: cover;
  padding: 10rem 0 15rem;
}
@media screen and (max-width: 768px) {
  .top_ranking {
    padding: 7rem 0 15rem;
  }
}
.top_ranking_bg {
  position: relative;
  background: url(../new-img/ranking_bg.png) repeat-y;
  background-size: 100%;
  padding: 2rem 0 5rem;
}
.top_ranking_bg::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../new-img/ranking_btm.png) no-repeat 100% 50%;
  background-size: 100%;
  width: 100%;
  height: 5.5rem;
  bottom: -5rem;
}
@media screen and (max-width: 768px) {
  .top_ranking_bg::after {
    bottom: -4.5rem;
  }
}
.top_ranking_list {
  margin: 0 auto 3rem;
  width: 73rem;
}
@media screen and (max-width: 768px) {
  .top_ranking_list {
    width: 84%;
  }
}
.top_ranking_list_box {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  .top_ranking_list_box {
    display: block;
    padding: 7% 0;
  }
}
.top_ranking_list_box:not(:last-child) {
  border-bottom: 1px solid #717171;
}
.top_ranking_no {
  width: 25%;
  margin-right: 10%;
}
@media screen and (max-width: 768px) {
  .top_ranking_no {
    margin: 0 auto 4%;
  }
}
.top_ranking_desc {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .top_ranking_desc {
    width: 100%;
  }
}
.top_ranking_desc_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  color: #e50214;
  font-size: 2.7rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top_ranking_desc_ttl {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4%;
  }
}
.top_ranking_desc_catch {
  background: #717171;
  color: #fff;
  display: inline-block;
  border-radius: 2.2rem;
  padding: 0.5rem 2rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top_ranking_desc_catch {
    display: table;
    margin: 0 auto 4%;
    font-size: 2.4rem;
  }
}
.top_ranking_desc_txt {
  font-size: 1.4rem;
  line-height: 2.3rem;
}
@media screen and (max-width: 768px) {
  .top_ranking_desc_txt {
    font-size: 2.4rem;
    line-height: 1.7;
  }
}
.top_ranking .sec_btn01 {
  margin: 0 auto;
}
.top_doctor {
  background: url(../new-img/top_bg03.jpg) no-repeat 50% 0;
  background-size: cover;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .top_doctor {
    padding: 7rem 0;
  }
}
.top_doctor_box {
  box-sizing: border-box;
  background: #fff;
  display: flex;
  justify-content: space-between;
  box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.15);
  border-radius: 3.5rem;
  padding: 3rem 6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top_doctor_box {
    width: 100%;
    padding: 7% 4%;
    flex-direction: column;
  }
}
.top_doctor_desc {
  position: relative;
  order: 2;
  width: 42rem;
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .top_doctor_desc {
    width: 100%;
    padding-top: 7%;
  }
}
.top_doctor_desc .sec_btn01 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top_doctor_desc .sec_btn01 {
    position: static;
    margin-top: 5%;
  }
}
.top_doctor_img {
  text-align: center;
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .top_doctor_img {
    margin: 0 auto;
    width: 100%;
  }
}
.top_doctor_img img {
  width: 24.3rem;
}
@media screen and (max-width: 768px) {
  .top_doctor_img img {
    width: 100%;
  }
}
.top_doctor_ttl {
  position: relative;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  color: #e50214;
  font-size: 2.8rem;
  line-height: 4rem;
  margin-bottom: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 768px) {
  .top_doctor_ttl {
    font-size: 3.5rem;
    line-height: 1.5;
  }
}
.top_doctor_ttl::before {
  content: "";
  display: block;
  border-left: 4px solid #e50214;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.top_doctor_ttl span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .top_doctor_ttl span {
    font-size: 3rem;
  }
}
.top_doctor_txt {
  font-size: 1.3rem;
  line-height: 2rem;
}
@media screen and (max-width: 768px) {
  .top_doctor_txt {
    font-size: 2.4rem;
    line-height: 1.7;
  }
}
.top_doctor_tel {
  color: #e50214;
}
.top_doctor_name {
  font-size: 1.8rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .top_doctor_name {
    font-size: 2.4rem;
  }
}
.top_doctor_name span {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 2.6rem;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .top_doctor_name span {
    font-size: 3.5rem;
  }
}
.top_access {
  background: #e1e1e1;
  padding: 5rem 0;
}
.top_access_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .top_access_box {
    display: block;
    font-size: 2.6rem;
    line-height: 1.7;
  }
}
.top_access_desc {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top_access_desc {
    width: 100%;
  }
}
.top_access_logo {
  width: 28rem;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 768px) {
  .top_access_logo {
    width: 50%;
  }
}
.top_access_map {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .top_access_map {
    width: 100%;
    margin-top: 7%;
  }
}
.top_access_map iframe {
  width: 100%;
  height: 26rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .top_access_map iframe {
    height: 45rem;
  }
}
.top_access_txt {
  font-size: 1.4rem;
  line-height: 2.3rem;
}
@media screen and (max-width: 768px) {
  .top_access_txt {
    font-size: 2.4rem;
    line-height: 1.7;
  }
}
.top_access_add {
  text-align: center;
  margin-bottom: 2rem;
}
.top_access_tel {
  display: block;
  pointer-events: none;
  width: 25rem;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 768px) {
  .top_access_tel {
    pointer-events: inherit;
    width: 70%;
  }
}
.top_access_hour {
  display: table;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 768px) {
  .top_access_hour {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.top_access_time {
  width: 100%;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .top_access_time {
    font-size: 2.4rem;
  }
}
.top_access_time_ttl {
  width: 15rem;
}
.top_access_time th,
.top_access_time td {
  text-align: center;
  border-right: 1px solid #e1e1e1;
  padding: 1rem 0;
}
.top_access_time th {
  background: #717171;
  color: #fff;
}
.top_access_time td {
  background: #fff;
  color: #717171;
}

.menu {
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  .menu {
    display: none;
    position: fixed;
    width: 100%;
    top: 10rem;
    left: 0;
    background-color: rgba(25, 25, 25, 0.95);
    z-index: 9999;
  }
}
.menu_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .menu_list {
    display: block;
    margin: 0 auto;
  }
}
.menu_list_btn {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .menu_list_btn {
    display: block;
    padding: 3rem 25rem;
  }
}
.menu_list_btn:not(:last-child) {
  border-right: 1px solid #c4c4c4;
}
@media screen and (max-width: 768px) {
  .menu_list_btn:not(:last-child) {
    border-right: none;
  }
}
.menu._header .st0 {
  fill: #e50214;
}
.menu._header .st1 {
  fill: #717171;
}
@media screen and (max-width: 768px) {
  .menu._header .st1 {
    fill: #fff;
  }
}
@media screen and (max-width: 768px) {
  .menu._footer {
    display: none;
  }
}
.menu._footer .st0 {
  fill: #e50214;
}
.menu._footer .st1 {
  fill: #fff;
}
.menu._subpage {
  padding: 1.4rem 0;
  background-color: rgba(178, 178, 178, 0.35);
}
@media screen and (max-width: 768px) {
  .menu._subpage {
    padding: 3rem 0;
    background-color: rgba(25, 25, 25, 0.95);
  }
}
.menu._subpage .menu_list_btn._active::after {
  content: "";
  display: block;
  background: #e50214;
  position: absolute;
  z-index: 1;
  bottom: -1.4rem;
  left: 0;
  width: 100%;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .menu._subpage .menu_list_btn._active::after {
    display: none;
  }
}

.bnr {
  padding: 5rem 0 8rem;
}
.bnr_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .bnr_list {
    display: block;
  }
}
.bnr_list_box {
  width: 48.5%;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .bnr_list_box {
    display: block;
    width: 100%;
    margin-top: 4%;
  }
}
.bnr_list_box:not(:nth-child(2n)) {
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  .bnr_list_box:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.bnr_single {
  display: block;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .bnr_single {
    margin-top: 4%;
  }
}

.fixed_line {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #909090;
  color: #fff;
  letter-spacing: 0.1rem;
  width: 13.8rem;
  height: 19rem;
}
@media screen and (max-width: 768px) {
  .fixed_line {
    width: 100%;
    height: 10rem;
    flex-direction: inherit;
  }
}
.fixed_line_img {
  width: 7.8rem;
}
.fixed_line_ttl {
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  .fixed_line_ttl {
    font-size: 2.8rem;
    margin: 0 2rem;
  }
}
.fixed_line_tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  height: 2.3rem;
  font-size: 1.3rem;
  border: 1px solid #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .fixed_line_tag {
    width: auto;
    margin: 0;
    font-size: 2.4rem;
    height: auto;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
  }
}

.sec_btn01 {
  font-weight: 500;
  background: #717171 url(../new-img/arw01_r.svg) no-repeat 95% 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32.7rem;
  height: 6.1rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sec_btn01 {
    width: 90%;
    height: 10rem;
    margin: 0 auto;
    font-size: 3.2rem;
  }
}

/* ======================================================================
 subpage
====================================================================== */
.subpage_kv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 230px;
}
@media screen and (max-width: 768px) {
  .subpage_kv {
    padding-top: 10rem;
    height: 190px;
  }
}
.subpage_kv_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 3.5rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .subpage_kv_ttl {
    font-size: 4rem;
  }
}
.subpage_cv {
  padding-bottom: 15rem;
}
.subpage_cv._menu {
  padding: 10rem 0;
}
.subpage_cv._news {
  padding: 10rem 0 0;
}
@media screen and (max-width: 768px) {
  .subpage_cv._news {
    padding: 6rem 0 0;
  }
}
.subpage_cv._news .subpage_cv_ttl {
  background: #feeeee;
}
.subpage_cv_box {
  overflow: hidden;
  background: #fff;
  box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.15);
  border-radius: 3.5rem;
}
.subpage_cv_box:not(:last-child) {
  margin-bottom: 7rem;
}
.subpage_cv_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  text-align: center;
  background: #e4e4e4;
  color: #717171;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  padding: 2.5rem 0;
}
@media screen and (max-width: 768px) {
  .subpage_cv_ttl {
    font-size: 3rem;
    padding: 3rem 0;
  }
}
.subpage_cv_contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 10rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact {
    display: block;
    padding: 7% 4% 4%;
  }
}
.subpage_cv_contact_desc {
  order: 2;
  width: 39rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact_desc {
    width: auto;
  }
}
.subpage_cv_contact_img {
  width: 25rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact_img {
    width: 70%;
    margin: 3rem auto 0;
  }
}
.subpage_cv_contact_txt {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact_txt {
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.7;
  }
}
.subpage_cv_contact_rv {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact_rv {
    display: block;
  }
}
.subpage_cv_contact_rv_ttl {
  color: #e50214;
  border: 1px solid #e50214;
  letter-spacing: 0.1rem;
  font-size: 1.3rem;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact_rv_ttl {
    font-size: 2.5rem;
    display: table;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
  }
}
.subpage_cv_contact_rv_txt {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact_rv_txt {
    text-align: center;
    font-size: 2.5rem;
  }
}
.subpage_cv_contact a {
  display: block;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_contact a {
    margin-top: 3rem;
  }
}
.subpage_cv_pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 10rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_pay {
    display: block;
    padding: 7% 4% 4%;
  }
}
.subpage_cv_pay_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  color: #e50214;
  border-left: 4px solid #e50214;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_pay_ttl {
    font-size: 3rem;
  }
}
.subpage_cv_pay_ttl span {
  display: block;
  padding-left: 1.5rem;
}
.subpage_cv_pay_txt {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_pay_txt {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}
.subpage_cv_pay_img {
  width: 23rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .subpage_cv_pay_img {
    width: auto;
    justify-content: center;
  }
}
.subpage_cv_pay_img img {
  width: auto;
  height: 3.5rem;
  margin: 0.5rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_pay_img img {
    height: 7rem;
    margin: 1rem;
  }
}
.subpage_cv_news {
  padding: 3rem 8rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_news {
    padding: 4%;
  }
}
.subpage_cv_news_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  color: #e50214;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .subpage_cv_news_ttl {
    font-size: 2.8rem;
  }
}
.subpage_cv_news_txt {
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_cv_news_txt {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}
.subpage_contents._bottom {
  padding: 10rem 0 13rem;
}
.subpage_details {
  background-image: url(../new-img/details_bg@2x.png);
  background-size: 100% auto;
  padding: 10rem 0;
}
.subpage_card {
  width: 61.7rem;
  height: 28.1rem;
  border-radius: 3.5rem;
  margin: 0 auto 5rem;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
@media screen and (max-width: 768px) {
  .subpage_card {
    width: 104%;
    height: auto;
    margin: 0 0 8rem -2%;
  }
}
.subpage_card_img {
  width: 80%;
}
.subpage_card_img .img {
  width: 100%;
}
.subpage_card._nikibi_crater01 {
  height: 16.8rem;
}
@media screen and (max-width: 768px) {
  .subpage_card._nikibi_crater01 {
    height: auto;
    width: 100%;
    margin: 0 auto 8rem;
  }
}
.subpage_card._nikibi_crater02 {
  height: 23.8rem;
  margin: -5rem auto -4rem;
  width: 78rem;
}
@media screen and (max-width: 768px) {
  .subpage_card._nikibi_crater02 {
    margin: -5rem 0 -4rem -2%;
    width: 104%;
  }
}
.subpage_card._tarumi {
  height: 31.4rem;
}
.subpage_card._wedding {
  height: 21rem;
}
.subpage_ttl._01 {
  color: #e50214;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .subpage_ttl._01 {
    font-size: 3.5rem;
    justify-content: space-between;
    white-space: nowrap;
  }
}
.subpage_ttl._01 .sub {
  position: absolute;
  left: 0;
  top: -2.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .subpage_ttl._01 .sub {
    top: -3.5rem;
    font-size: 2.6rem;
  }
}
.subpage_ttl._01::after {
  content: "";
  background: #e50214;
  width: 27rem;
  height: 1px;
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .subpage_ttl._01::after {
    width: 60%;
  }
}
.subpage_ttl._01._mb2 {
  margin-bottom: 2rem;
}
.subpage_ttl._01._smnoafter::after {
  display: none;
}
.subpage_ttl._02 {
  position: relative;
  padding-left: 5.5rem;
  line-height: 1.8;
  font-size: 2.1rem;
  color: #191919;
  font-family: "ryo-display-plusn", serif;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .subpage_ttl._02 {
    padding-left: 0;
    font-size: 3.3rem;
  }
}
.subpage_ttl._02 .num {
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  top: -0.2rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .subpage_ttl._02 .num {
    width: 5.6rem;
    height: 5.6rem;
    margin-right: 2rem;
    position: static;
  }
}
.subpage_ttl._03 {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 2.2rem;
  margin: -1rem 0 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_ttl._03 {
    font-size: 3rem;
    line-height: 1.5;
  }
}
.subpage_ttl._03._red {
  color: #e50214;
}
.subpage_txt {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0 0 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_txt {
    font-size: 2.6rem;
  }
}
.subpage_txt._pl {
  padding-left: 5.5rem;
}
@media screen and (max-width: 768px) {
  .subpage_txt._pl {
    padding-left: 0;
  }
}
.subpage_txt._shimi01 {
  margin-bottom: 10rem;
}
.subpage_txt._shimi02 {
  margin-bottom: 8rem;
}
.subpage_txt._depilation {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .subpage_txt._depilation {
    font-size: 2.6rem;
  }
}
.subpage_txt .color01 {
  color: #e50214;
}
.subpage_txt._mt {
  margin-top: 20px;
}
.subpage_pointbox {
  width: 76rem;
  border: 1px solid #e50214;
  padding: 6rem 4rem 3rem;
  margin: 5rem auto 8rem;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox {
    width: 100%;
    box-sizing: border-box;
    padding: 7.5rem 4rem 3rem;
  }
}
.subpage_pointbox._nikibi_crater {
  width: 68rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox._nikibi_crater {
    width: 100%;
  }
}
.subpage_pointbox._tarumi {
  padding: 6rem 1rem 2rem;
  width: 76rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox._tarumi {
    width: 100%;
  }
}
.subpage_pointbox._trouble {
  width: 66rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox._trouble {
    width: 100%;
  }
}
.subpage_pointbox_head {
  height: 3.4rem;
  padding: 0 0.9rem 0 1rem;
  background-color: #e50214;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_head {
    height: 4.4rem;
    font-size: 2.3rem;
    padding: 0 1.2rem 0 1.4rem;
  }
}
.subpage_pointbox_head::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 1.7rem solid #e50214;
  border-bottom: 1.7rem solid transparent;
  border-left: 0.7rem solid #e50214;
  border-right: 0.7rem solid transparent;
  position: absolute;
  top: 0;
  right: calc(-1.4rem + 2px);
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_head::after {
    border-top: 2.2rem solid #e50214;
    border-bottom: 2.2rem solid transparent;
    border-left: 1rem solid #e50214;
    border-right: 1rem solid transparent;
    right: calc(-2rem + 1px);
  }
}
.subpage_pointbox_point {
  padding: 0 3rem;
  margin: 0 0 1.8rem;
}
.subpage_pointbox_point::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_point {
    padding: 0 3rem;
  }
}
.subpage_pointbox_point:last-child {
  margin: 0;
}
.subpage_pointbox_point._nikibi {
  padding: 0 5rem;
}
.subpage_pointbox_ttl {
  font-size: 1.84rem;
  color: #e50214;
  position: relative;
  line-height: 1.4;
  font-family: "ryo-display-plusn", serif;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_ttl {
    font-size: 2.5rem;
  }
}
.subpage_pointbox_ttl .num {
  width: 2.85rem;
  position: absolute;
  left: -5rem;
  top: 0.1rem;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_ttl .num {
    width: 3.2rem;
  }
}
.subpage_pointbox_ttl .num._static {
  position: static;
  margin-right: 2rem;
}
.subpage_pointbox_txt {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_txt {
    font-size: 2.6rem;
  }
}
.subpage_pointbox_txt .sub {
  font-size: 1.01rem;
  display: block;
}
.subpage_pointbox_item {
  font-size: 1.7rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_item {
    font-size: 2.3rem;
  }
}
.subpage_pointbox_item .plus {
  font-weight: 900;
  color: #e50214;
}
.subpage_pointbox_flex {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_flex {
    margin-top: 4rem;
    padding-bottom: 22rem;
    align-items: flex-start;
    position: relative;
  }
}
.subpage_pointbox_flex_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subpage_pointbox_flex_item:not(:first-of-type) {
  margin-left: 3rem;
}
.subpage_pointbox_flex_item_img {
  width: 17.6rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_flex_item_img {
    width: 92%;
  }
}
.subpage_pointbox_flex_item_txt {
  font-size: 1.6rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_flex_item_txt {
    font-size: 2.6rem;
  }
}
.subpage_pointbox_flex_item_txt.color {
  color: #e50214;
}
.subpage_pointbox_flex_speechbubble {
  margin-left: 4rem;
  margin-top: -1rem;
  font-size: 2rem;
  color: #e50214;
  line-height: 1.6;
  background-color: #feeeee;
  padding: 2rem;
  height: 9rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_flex_speechbubble {
    font-size: 2.6rem;
    padding: 3rem;
    height: 12rem;
    margin-top: 4rem;
    margin-left: 0;
    position: absolute;
    bottom: 0rem;
    right: 0;
  }
}
.subpage_pointbox_flex_speechbubble::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-right: 1rem solid #feeeee;
  border-bottom: 0.8rem solid transparent;
  border-left: 1rem solid transparent;
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_flex_speechbubble::before {
    border-top: 2rem solid transparent;
    border-right: 3rem solid transparent;
    border-bottom: 2rem solid #feeeee;
    border-left: 3rem solid transparent;
    left: 50%;
    top: -3.8rem;
    transform: translateX(-50%);
  }
}
.subpage_pointbox_table tr td {
  padding: 0.2rem 5rem 0.2rem 0;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_table tr td {
    padding: 0.2rem 2rem 0.2rem 0;
  }
}
.subpage_pointbox_etc {
  position: absolute;
  right: 3rem;
  bottom: 1.5rem;
  color: #e50214;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .subpage_pointbox_etc {
    font-size: 2.6rem;
  }
}
.subpage_pointbox_img {
  float: right;
  width: 23rem;
}
.subpage_pointbox_list._trouble {
  margin-bottom: 2rem;
}
.subpage_pointbox_list_box {
  display: flex;
  align-items: center;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  margin-top: 2rem;
}
.subpage_pointbox_list_box:first-child {
  margin-top: 0;
}
.subpage_pointbox_list_box_num {
  color: #e50214;
  font-size: 3rem;
  margin-right: 1.5rem;
}
.subpage_pointbox_list_box_ttl {
  color: #e50214;
  font-size: 2rem;
}
.subpage_pointbox_list_desc {
  margin-top: 2rem;
}
.subpage_pointbox_list_desc:first-child {
  margin-top: 0;
}
.subpage_pointbox_list_desc .subpage_pointbox_list_box {
  margin-top: 0;
}
.subpage_pointbox_list_desc .subpage_pointbox_list_box_ttl {
  color: #191919;
}
.subpage_flex {
  display: flex;
  justify-content: space-between;
  margin: 0 0 5rem;
}
@media screen and (max-width: 768px) {
  .subpage_flex {
    flex-direction: column;
    align-items: center;
    margin: 0 0 7rem;
  }
}
@media screen and (max-width: 768px) {
  .subpage_flex_txtbox {
    margin-left: 0;
  }
}
.subpage_flex_imgbox {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .subpage_flex_imgbox {
    text-align: center;
  }
}
.subpage_flex_imgbox .img.w247 {
  width: 24.7rem;
}
@media screen and (max-width: 768px) {
  .subpage_flex_imgbox .img.w247 {
    width: 80%;
  }
}
.subpage_flex_imgbox .img.w259 {
  width: 25.9rem;
}
@media screen and (max-width: 768px) {
  .subpage_flex_imgbox .img.w259 {
    width: 80%;
  }
}
.subpage_flex_imgbox .img.w251 {
  width: 25.1rem;
}
@media screen and (max-width: 768px) {
  .subpage_flex_imgbox .img.w251 {
    width: 80%;
  }
}
.subpage_before_after {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .subpage_before_after {
    margin-bottom: 8rem;
  }
}
.subpage_before_after._mb {
  margin-bottom: 8rem;
}
.subpage_before_after:last-of-type {
  margin-bottom: 8rem;
}
.subpage_before_after._atopic_dermatitis {
  margin-bottom: 0rem;
}
.subpage_before_after_item {
  position: relative;
}
.subpage_before_after_item:not(:first-child) {
  margin-left: 10rem;
}
.subpage_before_after_item:not(:first-child) .subpage_before_after_item_img {
  position: relative;
}
.subpage_before_after_item:not(:first-child) .subpage_before_after_item_img::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 2.3rem solid #717171;
  border-right: 2.3rem solid transparent;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  position: absolute;
  top: 50%;
  left: -6rem;
  transform: translateY(-50%);
}
.subpage_before_after_item:not(:first-child)._col3 {
  margin-left: 5rem;
}
.subpage_before_after_item:not(:first-child)._col3 .subpage_before_after_item_img::before {
  border-left: 1.8rem solid #717171;
  border-right: 1.8rem solid transparent;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
  position: absolute;
  top: 50%;
  left: -3.2rem;
  transform: translateY(-50%);
}
.subpage_before_after_item._nose {
  width: 22rem;
}
.subpage_before_after_item_ttl {
  font-size: 1.68rem;
  position: absolute;
  left: 0;
  top: -2.2rem;
}
@media screen and (max-width: 768px) {
  .subpage_before_after_item_ttl {
    font-size: 2.6rem;
    top: -3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .subpage_before_after_item_img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .subpage_before_after_item_img .img {
    width: 100%;
  }
}
.subpage_before_after_item_txt {
  font-size: 2.8rem;
  font-family: "ryo-display-plusn", serif;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subpage_before_after_item_txt {
    font-size: 4rem;
    margin-top: 2rem;
  }
}
.subpage_before_after_item_txt._col3 {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .subpage_before_after_item_txt._col3 {
    font-size: 3rem;
  }
}
.subpage_before_after_item_txt .sub {
  font-size: 1.8rem;
  font-family: "ryo-gothic-plusn", sans-serif;
}
@media screen and (max-width: 768px) {
  .subpage_before_after_item_txt .sub {
    font-size: 2.6rem;
  }
}
.subpage_voice_img {
  margin-bottom: 2.5rem;
}
.subpage_voice_img .img {
  width: 63rem;
}
@media screen and (max-width: 768px) {
  .subpage_voice_img .img {
    width: 92%;
  }
}
.subpage_voice_img:nth-child(even) {
  text-align: right;
}
.subpage_voice_img:last-child {
  margin-bottom: 10rem;
}
.subpage_price_head {
  display: flex;
  justify-content: space-between;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .subpage_price_head {
    display: block;
    margin: 0 auto;
  }
}
.subpage_price_head_desc {
  width: 43rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_head_desc {
    width: auto;
    margin-bottom: 3rem;
  }
}
.subpage_price_head_img {
  width: 41rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_head_img {
    width: auto;
  }
}
.subpage_price_head_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  color: #e50214;
  font-size: 3rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_head_ttl {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
}
.subpage_price_head_txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_head_txt {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}
.subpage_price_list {
  padding-bottom: 13rem;
}
.subpage_price_list_box {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_list_box {
    margin-top: 7rem;
  }
}
.subpage_price_list_ttl {
  display: inline-block;
  color: #e50214;
  font-weight: 600;
  background: url(../new-img/arw02_r_rd.svg) no-repeat 100% 50%;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_list_ttl {
    background-size: 1rem;
    font-size: 2.6rem;
  }
}
.subpage_price_list_table {
  width: 100%;
  margin-top: 2rem;
}
.subpage_price_list_thead th,
.subpage_price_list_thead td, .subpage_price_list_tbody th,
.subpage_price_list_tbody td {
  border: 4px solid #fff;
}
.subpage_price_list_thead_ttl {
  font-weight: 600;
  text-align: center;
  background: #feeeee;
  color: #e50214;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .subpage_price_list_thead_ttl {
    font-size: 2rem;
  }
}
.subpage_price_list_thead_ttl:not(:first-child) {
  width: 20%;
}
.subpage_price_list_thead_tax {
  font-size: 1.1rem;
}
.subpage_price_list_tbody th,
.subpage_price_list_tbody td {
  padding: 1.2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_list_tbody th,
  .subpage_price_list_tbody td {
    font-size: 1.8rem;
    padding: 1rem;
  }
}
.subpage_price_list_tbody_menu {
  background: #fafafa;
  line-height: 3.2rem;
}
@media screen and (max-width: 768px) {
  .subpage_price_list_tbody_menu {
    line-height: 1.5;
  }
}
.subpage_price_list_tbody_menu_cap {
  font-size: 1.4rem;
}
.subpage_price_list_tbody_ttl, .subpage_price_list_tbody_txt {
  background: #f1f1f1;
  line-height: 1.3;
}
.subpage_price_list_tbody_ttl_cap, .subpage_price_list_tbody_txt_cap {
  font-size: 1.2rem;
}
.subpage_price_list_tbody_txt {
  text-align: right;
}
.subpage_price_list_tbody_txt_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .subpage_price_list_tbody_txt_box {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .subpage_price_list_tbody_txt_box span {
    display: block;
  }
}
.subpage_media_bnr_box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .subpage_media_bnr_box {
    display: block;
  }
}
.subpage_media_bnr_box:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_bnr_box:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.subpage_media_bnr_img {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .subpage_media_bnr_img {
    width: auto;
  }
}
.subpage_media_bnr_desc {
  box-sizing: border-box;
  width: 45%;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_bnr_desc {
    width: auto;
    padding: 4%;
  }
}
.subpage_media_bnr_ttl {
  margin-bottom: 2rem;
}
.subpage_media_bnr_txt {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .subpage_media_bnr_txt {
    font-size: 2.5rem;
  }
}
.subpage_media_list {
  padding: 8rem 0 10rem;
}
.subpage_media_list_ttl {
  color: #e50214;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_list_ttl {
    font-size: 3.5rem;
    justify-content: space-between;
  }
}
.subpage_media_list_ttl::after {
  content: "";
  background: #e50214;
  width: 27rem;
  height: 1px;
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_list_ttl::after {
    width: 60%;
  }
}
.subpage_media_list_slider {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_list_slider {
    padding-bottom: 8rem;
  }
}
.subpage_media_list_slider_box {
  padding: 0 2rem;
}
.subpage_media_list_slider_img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_list_slider_img {
    margin-bottom: 3rem;
  }
}
.subpage_media_list_slider_ttl {
  font-weight: 600;
  background: #ebebeb;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_list_slider_ttl {
    font-size: 2.5rem;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }
}
.subpage_media_list_slider_txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .subpage_media_list_slider_txt {
    font-size: 2.5rem;
  }
}
.subpage_media_list_slider .slick-arrow {
  position: absolute;
  bottom: 0;
  cursor: pointer;
  width: 8.2rem;
}
@media screen and (max-width: 768px) {
  .subpage_media_list_slider .slick-arrow {
    width: 15rem;
  }
}
.subpage_media_list_slider .slick-arrow._prev {
  left: 0;
}
.subpage_media_list_slider .slick-arrow._next {
  right: 0;
}
.subpage_director_ttl_en {
  color: #e50214;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.3rem;
  margin-bottom: 3rem;
}
.subpage_director_ttl_en::after {
  content: "";
  display: block;
  background: #e50214;
  width: 7rem;
  height: 1px;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_ttl_en::after {
    margin-top: 2rem;
  }
}
.subpage_director_txt {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .subpage_director_txt {
    font-size: 2.5rem;
  }
}
.subpage_director_txt._name {
  text-align: right;
  margin-top: 2rem;
}
.subpage_director_menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .subpage_director_menu {
    justify-content: space-between;
  }
}
.subpage_director_menu_btn {
  color: #717171;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9d9d9d;
  width: 23rem;
  height: 5rem;
  margin: 0 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_menu_btn {
    width: 32%;
    margin: 0;
    font-size: 2.6rem;
    height: 8rem;
  }
}
.subpage_director_menu_btn._active {
  background: #9d9d9d;
  color: #fff;
}
.subpage_director_detail {
  display: flex;
  flex-direction: column;
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail {
    display: block;
  }
}
.subpage_director_detail_top {
  order: 2;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail_top {
    text-align: center;
  }
}
.subpage_director_detail_top_job {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail_top_job {
    font-size: 3rem;
    line-height: 1.3;
  }
}
.subpage_director_detail_top_name {
  margin-top: 2rem;
}
.subpage_director_detail_top_name_kanji {
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail_top_name_kanji {
    font-size: 5rem;
  }
}
.subpage_director_detail_top_name_kana {
  font-size: 2.5rem;
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail_top_name_kana {
    font-size: 3rem;
  }
}
.subpage_director_detail_btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail_btm {
    display: block;
  }
}
.subpage_director_detail_btm_img {
  width: 33rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail_btm_img {
    width: 70%;
    margin: 3rem auto 0;
  }
}
.subpage_director_detail_btm_desc {
  width: 52rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_detail_btm_desc {
    width: auto;
    margin-top: 5rem;
  }
}
.subpage_director_profile {
  margin-top: 7rem;
}
.subpage_director_profile_box::after {
  content: "";
  display: block;
  clear: both;
}
.subpage_director_profile_box img {
  float: right;
  width: 35rem;
  margin: 0 0 0 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_profile_box img {
    float: none;
    width: 100%;
    margin: 0 0 3rem;
  }
}
.subpage_director_profile + .subpage_media_bnr {
  margin: 7rem auto 13rem;
}
.subpage_director_history {
  margin-top: 7rem;
  padding-bottom: 12rem;
}
.subpage_director_history_table {
  font-size: 1.6rem;
  line-height: 1.7;
  width: 45rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_history_table {
    width: 100%;
    font-size: 2.5rem;
  }
}
.subpage_director_history_table_ttl {
  width: 17%;
  vertical-align: top;
}
.subpage_director_history_table_txt {
  width: 83%;
}
.subpage_director_history_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .subpage_director_history_box {
    display: block;
  }
}
.subpage_director_history_img {
  width: 40rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_history_img {
    width: auto;
    margin-top: 3rem;
  }
}
.subpage_director_policy_ttl {
  text-align: center;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  letter-spacing: 0.1rem;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_ttl {
    font-size: 3rem;
  }
}
.subpage_director_policy_ttl_strong {
  color: #e50214;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_ttl_strong {
    font-size: 4rem;
  }
}
.subpage_director_policy_list {
  margin-top: 7rem;
}
.subpage_director_policy_list_box {
  position: relative;
  top: 7rem;
}
.subpage_director_policy_list_box::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_box {
    top: 0;
  }
}
.subpage_director_policy_list_box._w100 {
  top: 0;
}
.subpage_director_policy_list_img {
  position: absolute;
  z-index: -1;
  top: -7rem;
  width: 80rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_img {
    width: 100%;
    position: static;
  }
}
.subpage_director_policy_list_img._right {
  right: 0;
}
.subpage_director_policy_list_img._left {
  left: 0;
}
.subpage_director_policy_list_img._center {
  top: 3rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_img._center {
    top: 0;
  }
}
.subpage_director_policy_list_detail {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 3px 3px 9px 0px rgba(0, 0, 0, 0.15);
  width: 47rem;
  height: 47rem;
  padding: 6rem 5rem;
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_detail {
    width: auto;
    height: auto;
    margin: 5% 0;
  }
}
.subpage_director_policy_list_detail._right {
  float: right;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_detail._right {
    float: none;
  }
}
.subpage_director_policy_list_detail._center {
  margin: 0 auto;
  width: 65rem;
  height: 49rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_detail._center {
    width: auto;
    height: auto;
    margin: 5% auto;
  }
}
.subpage_director_policy_list_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.8;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 10rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_ttl {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.subpage_director_policy_list_ttl._num01 {
  background-image: url(../new-img/policy_num01.png);
}
.subpage_director_policy_list_ttl._num02 {
  background-image: url(../new-img/policy_num02.png);
}
.subpage_director_policy_list_ttl._num03 {
  background-image: url(../new-img/policy_num03.png);
  background-position: 100% 100%;
}
.subpage_director_policy_list_ttl_en {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_ttl_en {
    margin-bottom: 3rem;
  }
}
.subpage_director_policy_list_ttl_en::after {
  content: "";
  background: #e50214;
  width: 78%;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_ttl_en::after {
    width: 70%;
  }
}
.subpage_director_policy_list_ttl_en img {
  width: 7rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_list_ttl_en img {
    width: 12rem;
  }
}
.subpage_director_policy_target {
  padding: 10rem 0 5rem;
}
.subpage_director_policy_target_ttl {
  text-align: center;
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .subpage_director_policy_target_ttl {
    font-size: 3.4rem;
  }
}
.subpage_director_policy_target_ttl img {
  display: block;
  width: 4rem;
  margin: 0 auto 3rem;
}
.subpage_director_policy_target .subpage_director_txt {
  margin-bottom: 5rem;
}
.subpage_director_policy_target + .subpage_director_menu {
  padding-bottom: 13rem;
}
.subpage_access_map {
  width: 100%;
  height: 46rem;
  margin-bottom: 3.5rem;
}
.subpage_access_txt {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 3.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .subpage_access_txt {
    font-size: 2.6rem;
  }
}
.subpage_access_h2 {
  color: #e50214;
  background-color: #feeeee;
  height: 5.2rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 700;
  padding-left: 2.2rem;
  margin: 5rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .subpage_access_h2 {
    font-size: 2.6rem;
    height: 6.4rem;
  }
}
.subpage_access_h2::before {
  content: "";
  margin-right: 1.5rem;
  width: 3.4rem;
  height: 2.8rem;
  background-image: url(../new-img/icon_car@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.subpage_access_imgbox._01 {
  width: 36.5rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .subpage_access_imgbox._01 {
    width: 92%;
    margin: 0 auto 2rem;
  }
}
.subpage_access_imgbox._02 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .subpage_access_imgbox._02 {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.subpage_access_imgbox._02 img {
  width: 42rem;
}
@media screen and (max-width: 768px) {
  .subpage_access_imgbox._02 img {
    width: 92%;
    margin: 2rem auto;
  }
}
.subpage_flow_block {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .subpage_flow_block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.subpage_flow_block:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .subpage_flow_block:nth-child(even) {
    flex-direction: column;
  }
}
.subpage_flow_block:nth-child(even) .subpage_flow_imgbox {
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_flow_block:nth-child(even) .subpage_flow_imgbox {
    margin-right: 0;
  }
}
.subpage_flow_block + .subpage_flow_block {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .subpage_flow_block + .subpage_flow_block {
    margin-top: 10rem;
  }
}
.subpage_flow_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 3rem;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  letter-spacing: 0.05em;
  margin-top: -0.5rem;
}
@media screen and (max-width: 768px) {
  .subpage_flow_ttl {
    font-size: 4rem;
    justify-content: center;
    margin-left: -3rem;
  }
}
.subpage_flow_ttl .num {
  position: relative;
  font-size: 9.368rem;
  color: #e3e3e3;
  font-family: "linotype-didot", serif;
  font-weight: 700;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_flow_ttl .num {
    font-size: 10rem;
  }
}
.subpage_flow_ttl .num .step {
  position: absolute;
  top: calc(50% - 0.8rem);
  left: -0.1rem;
  transform: translateX(-50%);
  font-size: 1.718rem;
  color: #717171;
  font-family: "linotype-didot", serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .subpage_flow_ttl .num .step {
    font-size: 2.5rem;
    top: calc(50% - 1rem);
    left: -1rem;
  }
}
.subpage_flow_txt {
  font-family: "ryo-display-plusn", serif;
  font-size: 1.6rem;
  line-height: 2;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  .subpage_flow_txt {
    font-size: 2.5rem;
    text-align: left;
    padding: 0 2rem;
  }
}
.subpage_flow_emphasis {
  color: #e50214;
  background-color: #feeeee;
  font-size: 1.8rem;
  padding: 1.6rem 3.2rem;
  display: inline-block;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_flow_emphasis {
    font-size: 2.6rem;
    padding: 1.8rem 3.4rem;
  }
}
.subpage_flow_btn {
  width: 25rem;
  height: 5rem;
  display: inline-block;
  margin-top: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .subpage_flow_btn {
    margin-top: 2rem;
  }
}
.subpage_flow_imgbox {
  width: 36.3rem;
}
@media screen and (max-width: 768px) {
  .subpage_flow_imgbox {
    width: 80%;
    margin-top: 3rem;
  }
}
.subpage_menu_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .subpage_menu_top {
    display: block;
  }
}
.subpage_menu_top_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  background: #717171;
  color: #fff;
  display: table;
  padding: 1rem 2rem;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .subpage_menu_top_ttl {
    font-size: 3rem;
    margin: 0 auto 3rem;
  }
}
.subpage_menu_top_catch {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .subpage_menu_top_catch {
    font-size: 2.6rem;
    text-align: center;
  }
}
.subpage_menu_top_catch span {
  color: #e50214;
}
.subpage_menu_top_list_box {
  border-left: 9px solid #717171;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1100px) {
  .subpage_menu_top_list_box {
    border-left: 4px solid #717171;
  }
}
@media screen and (max-width: 768px) {
  .subpage_menu_top_list_box {
    border-left-width: 5px;
    font-size: 2.4rem;
  }
}
.subpage_menu_top_list_box span {
  margin-left: 1rem;
}
.subpage_menu_top_img_cap {
  text-align: right;
  margin-top: 1rem;
  font-size: 1.2rem;
}
.subpage_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
.subpage_img._col02 img {
  width: 45%;
}
.subpage_first {
  overflow: hidden;
  background: #fff;
  box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.15);
  border-radius: 3.5rem;
  width: 86%;
  margin: 0 auto 15rem;
}
@media screen and (max-width: 768px) {
  .subpage_first {
    width: 100%;
  }
}
.subpage_first_ttl {
  font-family: "ryo-display-plusn", serif;
  font-weight: 600;
  text-align: center;
  background: #feeeee;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  padding: 2.5rem 0;
}
@media screen and (max-width: 768px) {
  .subpage_first_ttl {
    font-size: 3rem;
    padding: 3rem 0;
  }
}
.subpage_first_box {
  padding: 5rem 10rem 2rem;
}
@media screen and (max-width: 768px) {
  .subpage_first_box {
    padding: 7% 4% 2%;
  }
}
.subpage_first_menu {
  font-weight: 600;
  font-family: "ryo-display-plusn", serif;
  color: #e50214;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .subpage_first_menu {
    font-size: 2.8rem;
    line-height: 1.4;
  }
}
.subpage_first._mt {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .subpage_first._mt {
    margin-top: 65px;
  }
}
.subpage_float_right {
  float: right;
}
@media screen and (max-width: 768px) {
  .subpage_float_right {
    width: 30%;
    margin-right: 15px;
  }
}
.subpage_float_right .img {
  width: auto;
  padding: 10px 10px 10px 30px;
}
@media screen and (max-width: 768px) {
  .subpage_float_right .img {
    width: 100%;
    padding: 0 0 0 10px;
  }
}/*# sourceMappingURL=style.css.map */