@charset "utf-8";


/* RESET
----------------------------------------------------------------------------------------------------*/
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,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 112.6rem;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #000;
  height: 100%;
  font-family: yakuhanjp,"Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,sans-serif;
  font-weight: 400;
  position: relative;
  /*font-feature-settings: "palt";*/
  background: #F1F1F1;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
.marugo {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
.en {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.large_conteiner {
  max-width: 124.6rem;
}


@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s 0.3s;
}
#header.p-header {
  position: fixed;
}
#header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

.h_reservation_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #AE3D53;
  color: #fff;
  border-radius: 1.5rem;
}
#fixed_contact_tel p,
#h_contact_tel p {
  text-align: center;
}
.fixed_contact_tel_num,
#h_contact_tel .h_contact_tel_num {
  line-height: 1;
  color: #AE3D53;
}


@media only screen and ( max-width : 767px ) {
  #header {
    height: 8rem;
    padding: 0 1.5rem;
  }
  header.hidden {
    transform: translateY(-8rem) !important;
  }
  #h_contact {
    display: none;
  }
  #h_logo {
    width: 29rem;
  }
  #fixed_sp_contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    display: flex;
  }
  #fixed_contact_tel,
  #fixed_reservation {
    /*width: 50%;*/
    flex: 1;
  }
  #fixed_contact_tel a,
  #fixed_reservation a {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #fixed_contact_tel a {
    flex-direction: column;
    background: #fff;
    border: .2rem solid #AE3D53;
  }
  #fixed_contact_tel p {
    font-size: 1rem;
  }
  #fixed_contact_tel .fixed_contact_tel_num {
    font-size: 2rem;
  }
  .fixed_contact_tel_num span {
    font-size: 1.2rem;
  }
  #fixed_reservation a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #AE3D53;
    color: #fff;
  }
}
@media print, screen and ( min-width : 768px ) {
  #header {
    height: 13.6rem;
    padding: 0 6rem;
  }
  header.hidden {
    transform: translateY(-13.6rem) !important;
  }
  #h_logo {
    width: 42.6rem;
  }
  #h_contact {
    display: flex;
    align-items: center;
  }
  #h_contact_tel {
  }
  #h_contact_tel p {
    font-size: 1.4rem;
  }
  #h_contact_tel .h_contact_tel_num {
    font-size: 3.5rem;
  }
  #h_contact_tel .h_contact_tel_num span {
    font-size: 2rem;
  }
  #h_reservation {
    margin-left: 3.5rem;
  }
  .h_contact_tel {
    pointer-events: none;
    width: 26rem;
  }
  .h_reservation_btn {
    width: 25rem;
    height: 6rem;
    font-size: 2rem;
  }
  #fixed_sp_contact {
    display: none;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  font-size: 1.4rem;
}
#f_left p {
  line-height: 1.8em;
}
.f_copy {
  color: #7E7E7E;
  text-align: center;
  margin-top: 4rem;
}
.f_map {
  border-radius: 2rem;
  overflow: hidden;
}
.f_map iframe {
  width: 100%;
  display: block;
}
.medical_treatment_timetable {
  background: #fff;
  border-radius: 1.5rem;
  margin-top: 3.5rem;
}
.medical_treatment_timetable table {
  width: 100%;
}
.medical_treatment_timetable thead {
  border-bottom: 1px solid #000;
}
.medical_treatment_timetable thead th {
  color: #67BE8D;
  text-align: left;
  letter-spacing: .1em;
}
.medical_treatment_timetable thead td {
  text-align: center;
}
.medical_treatment_timetable th,
.medical_treatment_timetable td {
  vertical-align: middle;
  padding: 1.5rem .4rem;
}
.medical_treatment_timetable tbody tr {
  background-image : linear-gradient(to right, #000 4px, transparent 4px);
  background-size: 8px 1px;
  background-repeat: repeat-x; 
  background-position: left bottom;
}
.medical_treatment_timetable tbody th {
  text-align: right;
}
.medical_treatment_timetable thead td {
  font-weight: 700;
}
.medical_treatment_timetable tbody th {
  font-weight: 400;
}
.medical_treatment_timetable tbody .medical_treatment_timetable_color {
  color: #67BE8D;
  text-align: center;
}
.contact_btn {
  background: #000;
  color: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
}
.reservation_btn {
  background: #AE3D53;
  border-radius: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation_btn_ico {
  margin-right: 1rem;
}
.reservation_btn_ico img {
  display: block;
}
#f_sns a:last-child {
  margin-right: 0;
}
.text_color_link {
  color: #AE3D53;
  font-weight: 700;
}

@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 5rem 0 7rem;
  }
  #f_left {
    margin-bottom: 3rem;
  }
  .f_map iframe {
    height: 30rem;
  }
  #footer .medical_treatment_timetable {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
  .medical_treatment_timetable thead th {
    font-size: 1.7rem;
    width: 10rem;
    padding-right: 3rem;
  }
  .medical_treatment_timetable tbody th {
    width: 10rem;
    padding-right: 3rem;
  }
  .contact_btn {
    width: 90%;
    height: 3.6rem;
    font-size: 1.4rem;
  }
  .reservation_btn {
    width: 100%;
    height: 5rem;
    font-size: 1.8rem;
    margin-top: 2.5rem;
  }
  .reservation_btn_ico img {
    width: 2rem;
  }
  #f_logo {
    margin-bottom: 2rem;
  }
  #f_logo_img {
    width: 70%;
  }
  #f_sns {
    width: 18%;
    justify-content: space-between;
  }
  #f_sns a {
    width: 40%;
  }
  #f_sns img {
    width: 100%;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 10rem 0 4rem;
  }
  #f_left {
    width: 45%;
  }
  #f_right {
    width: 50%;
  }
  #footer .medical_treatment_timetable {
    padding: 2rem 5rem;
    font-size: 1.6rem;
  }
  .medical_treatment_timetable thead th {
    font-size: 2rem;
    width: 15rem;
    padding-right: 5rem;
  }
  .medical_treatment_timetable tbody th {
    width: 15rem;
    padding-right: 5rem;
  }
  .contact_btn {
    width: 30rem;
    height: 4rem;
    font-size: 1.6rem;
  }
  .f_map iframe {
    height: 100%;
  }
  .reservation_btn {
    width: 40rem;
    height: 6rem;
    font-size: 2rem;
    margin-top: 2.5rem;
  }
  .reservation_btn_ico img {
    width: 1.8rem;
  }
  #f_logo {
    margin-bottom: 2rem;
  }
  #f_logo_img {
    width: 40rem;
  }
  #f_sns {
    width: 8.4rem;
  }
  #f_sns a {
    margin-right: 2rem;
  }
  #f_sns img {
    width: 3.2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}
.sec_title {
  position: relative;
}
.sec_title span {
  display: inline-block;
  position: relative;
}
.sec_title.text-center span {
  margin-left: .3em;
}
.sec_title span:before {
  content: "";
  background: url(../img/tit_dot.svg) no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.color_green {
  color: #67BE8D;
}
.error_messe,
.color_red {
  color: #AE3D53;
}
#page_title .sec_title {
}
#page_title .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#breadcrumb {
  position: relative;
  z-index: 10;
  display: flex;
}
#breadcrumb li {
  position: relative;
}
#breadcrumb li:first-child {
  margin-left: 0;
}
#breadcrumb li:after {
  content: ">";
  margin: 0 .6em;
}
#breadcrumb li:last-child:after {
  content: none;
}
#breadcrumb a {
  color: #AE3D53;
  text-decoration: underline;
  font-weight: bold;
}
@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 7rem 0;
  }
  .sec_title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    letter-spacing: .1em;
  }
  .sec_title span:before {
    width: 2rem;
    height: 1.6rem;
    top: -1.6rem;
  }
  #page_title .container {
    height: 20rem;
  }
  #breadcrumb li {
    font-size: 1.1rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 14rem 0;
  }
  .sec_title {
    font-size: 5.2rem;
    margin-bottom: 5rem;
    letter-spacing: .3em;
  }
  .sec_title span:before {
    width: 2.5rem;
    height: 2rem;
    top: -2rem;
  }
  #page_title .container {
    height: 38rem;
  }
  #breadcrumb {
    justify-content: flex-end;
  }
  #breadcrumb li {
    font-size: 1.2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   NAV

--------------------------------------------------------------------------------------------- */
#nav {
  position: fixed;
  z-index: 99;
}
#nav li.current a {
  color: #000;
}
#nav li a {
  color: #B8B8B8;
  font-weight: 700;
  position: relative;
  padding-left: 1.5em;
  display: block;
}
#nav li a:before {
  content: "";
  width: .7em;
  height: .7em;
  background: #888;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#nav li.current a:before {
  background: #000;
}
@media only screen and ( max-width : 767px ) {
  #nav {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #nav {
    left: 6rem;
    bottom: 6rem;
    font-size: 1.4rem;
    transition: .3s;
  }
  #nav.hidden {
    opacity: 0 !important;
    z-index: -1;
  }
  #nav li {
    margin-bottom: 1em;
  }
  #nav li:last-child {
    margin-bottom: 0;
  }
}


/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
#mv {
  position: relative;
}
#mv_inner {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.p-fv__img {
  width: 100%;
  height: 100%;
}

[class*=swiper]:focus {
  outline: none;
}


.img-cover {
  -o-object-fit: cover;
  object-fit: cover;
  /*font-family: 'object-fit: cover;';*/
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


#mv .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;

  overflow: hidden;
  position: relative;
}
#mv .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}


#mv .swiper-slide img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}

#mv .swiper-slide[class*=-active] img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.mv_copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.mv_jp_text {
  background: #fff;
  border-radius: 1rem;
  letter-spacing: .3em;
  padding-left: .3em;
}
.mv_color01 {
  color: #AE3D53;
}
.mv_color02 {
  color: #67BE8D;
}
.mv_en_text {
  letter-spacing: .05em;
}


.p-fv__mainContens {
    overflow: hidden;
    width: 100%;
    position: relative;
}

@media only screen and ( max-width : 767px ) {
  #mv {
    height: 50rem;
    margin-top: 14rem;
    padding-bottom: 30rem;
  }
  #mv_inner {
    padding: 0 1.5rem;
    top: -4rem;
    height: 100%;
  }
  #mv .swiper-slide {
    height: 32rem;
  }
  .mv_jp_text {
    font-size: 3.6rem;
    margin-bottom: 1rem;
  }
  .mv_en_text {
    font-size: 1.4rem;
  }
  .p-fv__mainContens {
    margin-top: 12rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #mv {
    height: calc(100vh - 13.6rem);
    margin-top: 13.6rem;
  }
  #mv_inner {
    padding: 6rem 6rem 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  #mv .swiper-slide {
    height: calc(100vh - 13.6rem);
    /*border-radius: 50rem 0 0 50rem;*/
    /*margin-left: 12rem;*/
  }
  .mv_jp_text {
    font-size: 6.4rem;
    margin-bottom: 2.4rem;
  }
  .mv_en_text {
    font-size: 2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   MV TIMETABLE

--------------------------------------------------------------------------------------------- */
.mv_timetable {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.5);
  border-radius: 1.5rem;
  border: 3px solid #fff;
}
.mv_timetable_title {
  display: flex;
  align-items: center;
  background: #fff;
}
.mv_timetable_title_ico img {
  display: block;
}
.mv_timetable_title_txt {
  color: #67BE8D;
  letter-spacing: .1em;
}


.mv_timetable table {
  width: 100%;
}
.mv_timetable thead {
  border-bottom: 1px solid #000;
}
.mv_timetable thead th {
  color: #67BE8D;
  text-align: left;
  letter-spacing: .1em;
}
.mv_timetable thead td {
  text-align: center;
}
.mv_timetable th,
.mv_timetable td {
  vertical-align: middle;
  padding: 1.5rem .4rem;
}
.mv_timetable tbody tr {
  background-image : linear-gradient(to right, #000 4px, transparent 4px);
  background-size: 8px 1px;
  background-repeat: repeat-x; 
  background-position: left bottom;
}
.mv_timetable tbody th {
  text-align: right;
  width: 10rem;
}
.mv_timetable thead td {
  font-weight: 700;
}
.mv_timetable tbody th {
  font-weight: 400;
}


@media only screen and ( max-width : 767px ) {
  .mv_timetable_title {
    padding: .5rem 1rem;
  }
  .mv_timetable_title_ico {
    margin-right: .5rem;
  }
  .mv_timetable {
    width: calc(100% - 3rem);
    left: 0;
    bottom: 0;
    z-index: 11;
    position: absolute;
  }
  .mv_timetable table {
    font-size: 1.4rem;
  }
  .mv_timetable_title_txt {
    font-size: 1.6rem;
  }
  .mv_timetable_content {
    padding: .5rem 1rem 1rem;
  }
  .mv_add {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  .mv_add span {
    margin-right: .5rem;
  }
  .mv_add span img {
    width: 1rem;
  }
  .mv_timetable th, .mv_timetable td {
    padding: 1rem .4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .mv_timetable_title {
    width: 5rem;
    flex-direction: column;
    justify-content: center;
  }
  .mv_timetable_content {
    width: calc(100% - 5rem);
  }
  .mv_timetable {
    width: 45rem;
    position: absolute;
    right: 6rem;
    bottom: 4rem;
    z-index: 11;
    overflow: hidden;
  }
  .mv_timetable_title_ico {
    margin-bottom: 1rem;
  }
  .mv_timetable_title_txt {
    font-size: 2rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .mv_timetable_content {
    padding: 1rem 2rem 2rem;
  }
  .mv_add {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  .mv_add span {
    margin-right: 1rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   セラピアの想い

--------------------------------------------------------------------------------------------- */

.omoi_inner h3 {
  letter-spacing: .3em;
}
.omoi_content p {
  line-height: 1.8em;
}
@media only screen and ( max-width : 767px ) {
  #omoi {
    padding-top: 4rem;
  }
  #omoi .container {
    background: url(../img/bg_logo.svg) no-repeat 90% 100% / 44%;
  }
  .omoi_title {
    display: flex;
    /*justify-content: center;*/
    margin-bottom: 3rem;
  }
  .omoi_inner h3 {
    font-size: 2.2rem;
    line-height: 1.8em;

  }
}
@media print, screen and ( min-width : 768px ) {
  .omoi_inner h3 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 2.4em;
    font-size: 3.6rem;
  }
  #omoi .container {
    background: url(../img/bg_logo.svg) no-repeat right center / 27%;
  }
  .omoi_inner {
    padding: 0 6rem;
  }
  .omoi_title {
    width: 36%;
  }
  .omoi_content {
    width: 64%;
  }
}



/* ---------------------------------------------------------------------------------------------

　   治療内容

--------------------------------------------------------------------------------------------- */
#treatment {
  position: relative;
  padding-bottom: 0;
}
#treatment:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: #E3EDE7;
}
.treatment_title p {
  line-height: 2em;
}
.treatment_item {
  border: 3px solid #fff;
  position: relative;
}
.treatment_item a {
  display: block;
  overflow: hidden;
}
.treatment_item a .fit {
  transition: .3s;
}
.treatment_item a:hover .fit {
  transform: scale(1.2);
  opacity: 1;
}
.treatment_item_arrow,
.treatment_item__name {
  position: absolute;
  z-index: 10;
}
.treatment_item_arrow {
  top: 1rem;
  right: 1rem;
}
.treatment_item__name {
  background: #E3EDE7;
  display: flex;
  align-items: center;
  left: -3px;
  bottom: -3px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  letter-spacing: .1em;
}
@media only screen and ( max-width : 767px ) {
  #treatment:before {
    height: calc(100% - 14.6rem);
    border-radius: 0 15rem 0 15rem;
  }
  .treatment_title {
    margin-bottom: 6rem;
  }
  .treatment_list {
    margin-bottom: 5rem;
  }
  .treatment_item {
    width: 48%;
    border-radius: 1.5rem;
  }
  .treatment_item:nth-child(odd) {
    margin-top: -2rem;
    margin-bottom: 0;
  }
  .treatment_item:nth-child(even) {
    margin-top: 3rem;
  }
  .treatment_item__name {
    height: 4rem;
    font-size: 1.3rem;
    border-radius: 0 3rem 0 0;
    width: 90%;
  }
  .treatment_item a,
  .treatment_item .fit {
    border-radius: 1.5rem;
  }
  .treatment_item_arrow {
    width: 3rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #treatment:before {
    height: calc(100% - 14.6rem);
    border-radius: 0 30rem 0 30rem;
  }
  .treatment_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }
  #treatment .sec_title {
    margin-bottom: 0;
    width: 37.6rem;
  }
  .treatment_title p {
    width: 75rem;
  }
  .treatment_list {
    margin-bottom: 10rem;
  }
  .treatment_item {
    width: 25.9rem;
    border-radius: 3rem;
    margin-bottom: 2rem;
  }
  .treatment_item:nth-child(2n) {
    margin-top: 4rem;
  }
  .treatment_item__name {
    height: 6rem;
    font-size: 2rem;
    border-radius: 0 3rem 0 0;
    width: 21.6rem;
  }
  .treatment_item a,
  .treatment_item .fit {
    border-radius: 3rem;
  }
  .treatment_item_arrow {
    width: 4.5rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   MODL

--------------------------------------------------------------------------------------------- */
.modal {
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  transition: opacity 0.3s, visibility 0s 0.3s;
  background: rgba(0, 0, 0, 0.6);
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s, visibility 0s 0s;
}

.modal_container {
  display: flex;
  min-height: 100%;
  justify-content: center;
  align-items: center;
}

.modal_inner {
  margin: 20px auto;
  width: 100%;
  max-width: 124.6rem;
  margin: 0 auto;
}
.modal_content_inner {
  background: #fff;
  position: relative;
}

.modal_content {
  display: none;
  /*overflow: hidden;*/
  position: relative;
}
.is-active .modal_content {
  display: block;
}

.modalClose {
  position: absolute;
  z-index: 99;
  display: block;
  right: 0;
}
.treatment_item_img img {
  width: 100%
}
.treatment_item_txt h3 {
  color: #AE3D53;
}
.treatment_item_txt p {
  line-height: 2em;
}
.treatment_item_price dt {
  width: 6em;
  letter-spacing: .1em;
}
.treatment_item_price dd {
  width: calc(100% - 6em);
}

@media only screen and ( max-width : 767px ) {
  .modal_content_inner {
    padding: 2rem;
    border-radius: 2rem;
  }
  .modalClose {
    width: 2.5rem;
    height: 2.5rem;
    top: -5rem;
  }
  .treatment_item_img {
    margin-bottom: 1.5rem;
  }
  .treatment_item_img img {
    border-radius: 1.5rem;
  }
  .treatment_item_txt p {
    font-size: 1.4rem;
  }
  .treatment_item_txt h3 {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
  }
  .treatment_item_txt .treatment_item_price {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .modal_content_inner {
    padding: 10rem 6rem;
    border-radius: 5rem;
  }
  .modalClose {
    width: 4rem;
    height: 4rem;
    top: -6rem;
  }
  .treatment_item_img {
    width: 48rem;
  }
  .treatment_item_img img {
    border-radius: 3rem;
  }
  .treatment_item_txt {
    width: 57.6rem;
  }
  .treatment_item_txt h3 {
    margin-bottom: 3rem;
    font-size: 4rem;
  }
  .treatment_item_price {
    font-size: 2.4rem;
    margin-top: 5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   予約バナー

--------------------------------------------------------------------------------------------- */
.reservation_bnr {
  border: 5px solid #fff;
  background: #F9F7F2;
  position: relative;
  overflow: hidden;
}
.reservation_bnr:before {
  content: "";
  position: absolute;
  background: #EBDFE1;
}
.reservation_bnr_title,
.reservation_bnr_content {
  position: relative;
  z-index: 2;
}
.reservation_bnr_title p {
  line-height: 2em;
}
.reservation_bnr_logo {
  text-align: center;
}
.reservation_bnr__tel,
.reservation_bnr__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
}
.reservation_bnr__tel {
  flex-direction: column;
  border: 2px solid #94001E;
  background: #fff;
}
.reservation_bnr__tel p {
  text-align: center;
}
.reservation_bnr__telNum {
  color: #AE3D53;
  line-height: 1;
}
.reservation_bnr__link {
  background: #AE3D53;
  color: #fff;
}
.reservation_bnr__link_ico img {
  display: block;
  margin-right: 1rem;
}
@media only screen and ( max-width : 767px ) {
  .reservation_bnr {
    border-radius: 2rem;
    padding: 2rem;
  }
  .reservation_bnr:before {
    width: 100%;
    height: 70%;
    left: 0;
    top: 0;
    border-radius: 0 0 14.6rem 14.6rem;
  }
  .reservation_bnr .sec_title {
    text-align: center;
    font-size: 2.4rem;
    margin-top: 2rem;
    margin-bottom: 0;
  }
  .reservation_bnr_title p {
    margin-top: 1.5rem;
    font-size: 1.3rem;
  }
  .reservation_bnr_title {
    margin-bottom: 3rem;
  }
  .reservation_bnr_logo {
    margin-bottom: 2rem;
  }
  .reservation_bnr_logo img {
    width: 100%;
  }
  .reservation_bnr_btn a {
    height: 5rem;
    width: 100%;
  }
  .reservation_bnr__tel {
    margin-bottom: 1.2rem;
  }
  .reservation_bnr__tel p {
    font-size: .9rem;
  }
  .reservation_bnr__telNum {
    font-size: 2rem;
  }
  .reservation_bnr__telNum span {
    font-size: 1.2rem;
  }
  .reservation_bnr__link {
    font-size: 1.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .reservation_bnr {
    border-radius: 4rem;
    height: 29.2rem;
    padding: 0 6rem;
  }
  .reservation_bnr:before {
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0 14.6rem 14.6rem 0;
  }
  .reservation_bnr .sec_title {
    font-size: 4rem;
  }
  .reservation_bnr_title p {
    margin-top: 4rem;
  }
  .reservation_bnr_title {
    width: 40%;
  }
  .reservation_bnr_content {
    width: 54%;
  }
  .reservation_bnr_logo {
    margin-bottom: 3rem;
  }
  .reservation_bnr_logo img {
    width: 31.4rem;
  }
  .reservation_bnr__tel p {
    font-size: 1.2rem;
  }
  .reservation_bnr__telNum {
    font-size: 2.8rem;
  }
  .reservation_bnr__telNum span {
    font-size: 1.6rem;
  }
  .reservation_bnr__link {
    font-size: 2rem;
  }
  .reservation_bnr_btn a {
    height: 6rem;
    width: 48%;
  }
}



/* ---------------------------------------------------------------------------------------------

　   院長メッセージ

--------------------------------------------------------------------------------------------- */
#message .container {
  position: relative;
}
#message .container:before {
  content: "";
  background: #EBDFE1;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}
.message_img img {
  border: 3px solid #fff;
  display: block;
  width: 100%;
}
.message_txt h3 {
  margin-bottom: 1em;
  line-height: 1.8em;
}
.message_txt p {
  line-height: 2em;
}
.profile {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.5);
  border-radius: 2rem;
  border: 3px solid #fff;
  position: relative;
}
.profile h4 {
  letter-spacing: .1em;
  position: relative;
  margin-bottom: .6em;
}
.profile h4:before {
  content: "";
  background: #67BE8D;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.profile p {
  line-height: 2em;
}
.profile .small_text {
  margin-top: 1em;
}
@media only screen and ( max-width : 767px ) {
  #message {
    margin-top: 7rem;
  }
  #message .container:before {
    width: 110rem;
    height: 110rem;
    left: 50%;
    transform: translateX(-50%);
    top: -7rem;
  }
  .message_img {
    margin-bottom: 2.5rem;
  }
  .message_img img {
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .message_name {
    font-size: 1.2rem;
  }
  .message_name span {
    font-size: 1.6rem;
    margin-left: 1rem;
  }
  .message_txt h3 {
    font-size: 2rem;
  }
  .profile {
    margin-top: 4rem;
    padding: 2rem;
  }
  .profile h4 {
    font-size: 2rem;
    padding-left: 2rem;
  }
  .profile h4:before {
    width: 1rem;
    height: 1rem;
  }
  .profile .small_text {
    font-size: 1.3rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #message .container:before {
    width: 100rem;
    height: 100rem;
    left: -50rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .message_img {
    width: 43rem;
  }
  .message_img img {
    border-radius: 3rem;
    margin-bottom: 2.5rem;
  }
  .message_name span {
    font-size: 2.8rem;
    margin-left: 2.5rem;
  }
  .message_txt {
    width: 59.6rem;
  }
  .message_txt h3 {
    font-size: 3.6rem;
  }
  .profile {
    margin-top: 5rem;
    padding: 2.5rem 6rem;
  }
  .profile h4 {
    font-size: 2.8rem;
    padding-left: 4rem;
  }
  .profile h4:before {
    width: 2rem;
    height: 2rem;
  }
  .profile .small_text {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   料金表

--------------------------------------------------------------------------------------------- */
#price {
  padding-top: 0;
}
.price_title p {
  line-height: 2em;
}
.price_title p span {
  font-weight: 700;
}
.price_box h3 {
  border-radius: 1rem;
  background: #67BE8D;
  text-align: center;
  color: #fff;
  letter-spacing: .1em;
  padding: .2em;
}
.price_dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.price_dl dt,
.price_dl dd {
  margin-bottom: 1rem;
  position: relative;
}
.price_dl dt:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
  width: 100%;
  height: 5px;
  background: url(../img/price_dot.svg) repeat-x left center / auto 5px;
}
.price_dl dt span {
  display: inline-block;
  background: #F1F1F1;
  position: relative;
  font-weight: 700;
  z-index: 2;
  padding-right: 2rem;
}
.price_dl dd {
  text-align: right;
  color: #AE3D53;
}
.price_dl_title {
  font-weight: 700;
  margin-bottom: 1rem;
}
@media only screen and ( max-width : 767px ) {
  .price_title {
    margin-bottom: 4rem;
  }
  .price_box {
    margin-bottom: 4rem;
  }
  .price_box:last-child {
    margin-bottom: 0;
  }
  .price_box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .price_dl dt {
    width: calc(100% - 8rem);
    font-size: 1.6rem;
  }
  .price_dl dd {
    width: 8rem;
    font-size: 2rem;
  }
  .price_dl_title {
    font-size: 2rem;
  }
  .price_small_dl dt {
    font-size: 1.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .price_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }
  .price_title .sec_title {
    margin-bottom: 0;
    width: 37.6rem;
  }
  .price_title p {
    width: 75rem;
  }
  .price_box {
    width: 34.5rem;
  }
  .price_box h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .price_dl dt {
    width: calc(100% - 9rem);
    font-size: 2rem;
  }
  .price_dl dd {
    width: 9rem;
    font-size: 2.4rem;
  }
  .price_dl_title {
    font-size: 2rem;
  }
  .price_small_dl dt {
    font-size: 1.6rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   よくあるご質問

--------------------------------------------------------------------------------------------- */
#beginer {
  position: relative;
}
#beginer:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: #E3EDE7;
}
#beginer:after {
  content: "";
  width: 100%;
  background: url(../img/wave.png) repeat-x top left / 8rem;
  height: 1.4rem;
  z-index: 2;
  top: 0;
  left: 0;
  position: absolute;
}

.beginer_title .btn,
#beginer .btn_sp {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
}
.accordion_wrap {
  background: #fff;
  border-radius: 1rem;
}
.accordion_wrap:last-child {
  margin-bottom: 0;
}
.accordion_header {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}
.accordion_header:before {
  content: "Q";
  background: #67BE8D;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.acc_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: .3s;
}
.accordion_header.open .acc_arrow {
  transform: translateY(-50%) rotate(180deg);
}
.acc_arrow img {
  display: block;
}
.accordion_content {
  position: relative;
  display: none;
  border-top: 1px dotted #707070;
}
.accordion_content:before {
  content: "A";
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.accordion_content p {
  line-height: 1.8em;
}


@media only screen and ( max-width : 767px ) {
  #beginer:before {
    border-radius: 0 0 5rem 5rem;
  }
  .beginer_title {
    margin-bottom: 6rem;
  }
  .beginer_title .sec_title {
    margin-bottom: 2rem;
    text-align: center;
  }
  .beginer_title .btn {
    display: none;
  }
  #beginer .btn_sp {
    width: 90%;
    height: 4rem;
    font-size: 1.7rem;
    margin: 4rem auto 0;
    border-radius: 1rem;
  }

  .accordion_wrap {
    margin-left: 4rem;
    margin-bottom: 4rem;
  }
  .accordion_header {
    min-height: 7rem;
    font-size: 1.6rem;
    padding-left: 3rem;
    padding-right: 4rem;
  }
  .acc_arrow {
    right: 1.5rem;
  }
  .accordion_header:before {
    width: 6rem;
    height: 3.5rem;
    left: -4rem;
    top: -2rem;
    font-size: 2.4rem;
  }
  .accordion_content {
    padding: 1.5rem 0 1.5rem 4.4rem;
    width: calc(100% - 4rem);
    margin: 0 auto;
    font-size: 1.4rem;
  }
  .accordion_content:before {
    width: 3rem;
    height: 3rem;
    top: 1.5rem;
    font-size: 2.4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .btn_sp {
    display: none !important;
  }
  #beginer:before {
    border-radius: 0 0 0 30rem;
  }
  .beginer_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9rem;
  }
  .beginer_title .sec_title {
    margin-bottom: 0;
    width: 75rem;
  }
  .beginer_title .btn {
    width: 25rem;
    height: 6rem;
    font-size: 2rem;
  }
  .accordion_wrap {
    margin-left: 4rem;
    margin-bottom: 5rem;
  }
  .accordion_header {
    min-height: 7rem;
    font-size: 2rem;
    padding-left: 6rem;
    padding-right: 4rem;
  }
  .acc_arrow {
    right: 2rem;
  }
  .accordion_header:before {
    width: 8rem;
    height: 5rem;
    left: -4rem;
    top: -2rem;
    font-size: 3.2rem;
  }
  .accordion_content {
    padding: 2rem 0 2rem 5.6rem;
    width: calc(100% - 8rem);
    margin: 0 auto;
  }
  .accordion_content:before {
    width: 3.6rem;
    height: 3.6rem;
    top: 2rem;
    font-size: 3.2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   CONTACT

--------------------------------------------------------------------------------------------- */
input,textarea {
    border-radius:0;
    line-height: 1em;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="number"] {
  height: 50px;
  padding:0 15px;
}
input[type="text"],textarea,input[type="tel"],input[type="email"],input[type="number"]{
  border: none;
  margin:0;
  display: block;
  background: #fff;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: inherit;
  width: 100%;
  border-radius: .5rem;
  border: 1px solid #ccc;
}
input.short_input {
  width: 10em;
  display: inline-block;
}
textarea {
  padding:2rem;
  height: 16em;
  width: 100%;
  display: block;
  resize: vertical;
}
button {
  -webkit-appearance: none;
  border:none;
  display: block;
  text-align: center;
  background: none;
  font-size: inherit;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  width: 32rem;
}
button:hover {
  opacity: .8;
}
.contact_form__block button {
  margin: 0;
}

label input[type="radio"] + span {
  position: relative;
  padding: 0 .8rem .5rem 2.6rem;
}
label {
  position: relative;
  display: inline-block;
  word-break: break-all;
}
label span {
  display: inline-block;
}

label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
label input[type="radio"] + span::before {
  position: absolute;
  display: inline-block;
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1.6rem;
}
label input[type="radio"] + span::before {
  z-index: 0;
  top: .35rem;
  left: 0;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  border: 1px #AE3D53 solid;
  background: #fff;
}
label input[type="radio"]:checked + span::before {
  border: 6px #AE3D53 solid;
}
.select-wrap {
    position: relative;
    display: block;
}
.select-wrap:before {
  content: "";
    z-index: 1;
    position: absolute;
    right: 1.5rem;
    top: 2.2rem;
    height: 1em;
    line-height: 1em;
    pointer-events: none;
    font-weight: bold;
    width: 1rem;
    height: .7rem;
    background: url(../img/arrow_down.svg) no-repeat center / 100%;
}
.mw_wp_form_confirm .select-wrap:before {
  content: none;
}
select{
    outline:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 50px;
    padding: .8rem 3.4rem .8rem 1.2rem;
    border: none;
    /*color:#D3D3D3;*/
    width:100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: .5rem;
}
select option{
  background-color: #fff;
  color: #333;
}
select::-ms-expand {
  display: none;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}
::placeholder {
  color: #D3D3D3;
}
.contact_lead_text__block p {
  line-height: 2em;
}
.form_dl dt {
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form_dl dd {
  margin-bottom: 4rem;
}
.required,
.optional {
  display: inline-block;
  color: #fff;
  border-radius: .5rem;
  font-size: 1.4rem;
  width: 3em;
  text-align: center;
  margin-right: 1em;
  font-weight: 400;
}
.required {
  background: #AE3D53;
}
.optional {
  background: #9A9A9A;
}
.confirm_text {
  text-align: center;
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-size: 2.4rem;
}
.form_dl.d-flex dt,
.form_dl.d-flex dd {
  margin-bottom: 0;
  border-bottom: 1px dashed #000;
  line-height: 1.8em;
}
.back_btn,
.send_btn {
  line-height: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 2px solid #000;
}
.back_btn {
  color: #000;
}
.send_btn {
  background: #000;
  color: #fff;
}
.thanks__block {
  border-radius: 2rem;
  background: #fff;
}
.thanks_check {
  display: block;
  max-width: 8.6rem;
  margin: 0 auto 5rem;
}
.thanks__block h2,
.thanks__block p {
  text-align: center;
}
.thanks__block h2 {
  margin-bottom: 1.6em;
  font-size: 2.8rem;
}
.thanks__block p {
  line-height: 2em;
}
.contact_lead_text__block .reservation_area h2 {
  letter-spacing: .2em;
  margin-bottom: 1em;
}
.reservation_area {
  max-width: 33.6rem;
}
.reservation_area .reservation_contact_tel {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px dashed #707070;
}
.reservation_contact_tel p {
  text-align: center;
}
.reservation_contact_tel .h_contact_tel_num {
  line-height: 1;
  color: #AE3D53;
}
.reservation_area .h_reservation_btn {
  margin: 0 auto;
}
#contact_order {
  max-width: 50rem;
  margin: 0 auto;
  position: relative;
}
#contact_order:before {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #E3EDE7;
  z-index: -1;
}
#contact_order li {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.contact_orderNum {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #67BE8D;
  background: #E3EDE7;
}
.active .contact_orderNum {
  color: #fff;
  background: #67BE8D;
}
.contact_orderTxt {
  font-weight: 500;
}
.top_back_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  background: #000;
  color: #fff;
  margin: 0 auto;
  max-width: 32rem;
}
@media only screen and ( max-width : 767px ) {
  #contact_order {
    margin-bottom: 5rem;
  }
  #contact_order:before {
    top: 2.5rem;
  }
  .contact_orderNum {
    width: 5rem;
    height: 5rem;
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .contact_orderTxt {
    font-size: 1.2rem;
  }
  .contact_lead_text__block {
    margin-bottom: 6rem;
  }
  .form_dl.d-flex {
    margin-bottom: 3rem;
  }
  .form_dl.d-flex dt,
  .form_dl.d-flex dd {
    padding: 3rem 0;
    font-size: 1.4rem;
  }
  .form_dl.d-flex dt {
    width: 12rem;
    padding-right: 1.5rem;
    line-height: 1.4em;
  }
  .form_dl.d-flex dd {
    width: calc(100% - 12rem);
  }
  .back_btn,
  .send_btn {
    /*width: 48%;*/
    width: 100%;
  }
  .confirm__block .back_btn {
    /*margin-right: 4%;*/
    margin-bottom: 1.5rem;
  }
  .thanks__block {
    padding: 5rem 1.5rem;
    margin-bottom: 3rem;
  }
  .thanks__block .top_back_btn {
    display: none;
  }
  button {
    font-size: 1.7rem;
  }
  .reservation_area {
    margin-bottom: 5rem;
  }
  .contact_lead_text__block .reservation_area h2 {
    font-size: 2rem;
    text-align: center;
  }
  .contact_lead_text__block p {
    /*font-size: 1.2rem;*/
  }
  .reservation_contact_tel .h_contact_tel_num {
    font-size: 3.5rem;
  }
  .reservation_contact_tel .h_contact_tel_num span {
    font-size: 2rem;
  }
  .reservation_area .h_reservation_btn {
    width: 30rem;
    height: 5rem;
  }
  .confirm_text {
    padding-bottom: 2rem;
    font-size: 1.7rem;
  }
  .top_back_btn {
    font-size: 1.7rem;
    height: 5rem;
  }
  .thanks_check {
    margin-bottom: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #contact_order {
    margin-bottom: 10rem;
  }
  #contact_order:before {
    top: 4rem;
  }
  .contact_orderNum {
    width: 8rem;
    height: 8rem;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }
  .contact_col_wrapper .contact_lead_text__block {
    width: 33.6rem;
  }
  .contact_col_wrapper .contact_form__block {
    width: 55rem;
  }
  .confirm__block {
    background: #fff;
    border-radius: 3rem;
    padding: 6rem 10rem;
  }
  .form_dl.d-flex {
    margin-bottom: 6rem;
  }
  .form_dl.d-flex dt,
  .form_dl.d-flex dd {
    padding: 3rem;
  }
  .form_dl.d-flex dt {
    text-align: right;
    width: 22rem;
  }
  .form_dl.d-flex dd {
    width: calc(100% - 22rem);
  }
  .confirm__block .back_btn {
    margin-right: 3rem;
  }
  .thanks__block {
    padding: 12rem 6rem;
  }
  .thanks__block p {
    margin-bottom: 4rem;
  }
  .thanks__block_btn_sp {
    display: none;
  }
  button {
    font-size: 2rem;
  }
  .reservation_area {
    margin-bottom: 5rem;
  }
  .contact_lead_text__block .reservation_area h2 {
    font-size: 2.8rem;
  }
  .contact_lead_text__block p {
    font-size: 1.4rem;
  }
  .reservation_contact_tel .h_contact_tel_num {
    font-size: 3.5rem;
  }
  .reservation_contact_tel .h_contact_tel_num span {
    font-size: 2rem;
  }
  .reservation_area .h_reservation_btn {
    width: 30rem;
  }
  .confirm_text {
    padding-bottom: 3rem;
  }
  .top_back_btn {
    font-size: 2rem;
    height: 6rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   Illust

--------------------------------------------------------------------------------------------- */
.illust {
  position: absolute;
  z-index: 3;
}
.illust01 {
}
#omoi .container,
#treatment .container,
#beginer .container {
  position: relative;
}
@media only screen and ( max-width : 767px ) {
  .illust01 {
    right: 1.5rem;
    top: 10rem;
    width: 4em;
  }
  .illust02 {
    width: 16rem;
    right: 1.8rem;
    top: -10rem;
  }
  .illust03 {
    width: 14rem;
    left: 1rem;
    top: -12rem;
  }
  .illust04 {
    width: 4rem;
    left: -1.5rem;
    top: -2rem;
  }
  .illust05 {
    width: 2.8rem;
    right: 1rem;
    bottom: -2rem;
  }
  .illust06 {
    width: 10rem;
    right: 2rem;
    top: -12rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .illust01 {
    right: -2.4rem;
    top: -2rem;
    width: 7.8rem;
  }
  .illust02 {
    width: 27rem;
    right: 1.8rem;
    top: -23rem;
  }
  .illust03 {
    width: 20rem;
    left: -6rem;
    top: -9rem;
  }
  .illust04 {
    width: 4.8rem;
    left: -2rem;
    top: -1rem;
  }
  .illust05 {
    width: 3rem;
    right: 2rem;
    bottom: -2rem;
  }
  .illust06 {
    width: 17.6rem;
    right: 0;
    top: -25rem;
  }
}


