@charset "UTF-8";

/* ---- display------- */
.pc-block {
  display: block
}

.pc-inline {
  display: inline
}

.sp-block,
.sp-inline {
  display: none
}

@media screen and (max-width: 768px) {
  .pc-block {
    display: none
  }

  .sp-block {
    display: block
  }
}

@media screen and (max-width: 480px) {
  .pc-inline {
    display: none
  }

  .sp-inline {
    display: inline
  }
}

/* CSS Document */
::selection {
  background: #1abc9c;
  color: #ffffff;
}

* {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

a:hover {
  opacity: 0.7;
}

p {
  line-height: 2;
}

img {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 1.306rem + 0.327vw, 1.6rem);
  font-style: 200;
  position: relative;
  background: #fff;
  color: #333333;
  min-height: 0;
}

header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 110px;
}

.navi_info {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 2rem;
  flex: 1;
}

.header_logo {
  height: 40px;
}

.header_logo img {
  height: 100%;
}

.info_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.info_btn {
  padding: 1rem;
  border-radius: .6rem;
  text-align: center;
}

.info_btn.web {
  background: #EF858C;
  color: #fff;
}

.info_btn.online {
  background: #EDEDED;
  color: #959595;
}

.info_tel {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.tel_heading {
  position: relative;
  text-align: center;
}

.tel_heading:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}

.tel_heading span {
  position: relative;
  padding: 0 .5rem;
  background: #fff;
  font-size: 1.4rem;
}

.info_tel .tel {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2rem;
}

.info_wrap p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.navigation {
  width: 100%;
  height: 40px;
  background: #333333;
  font-style: normal;
  box-shadow: 0px 1px 1px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 950px) {
  header {
    height: 60px;
  }

  .navigation {
    top: 0;
    height: auto;
  }
}

.navigation__btn,
.info_wrap_sp {
  display: none;
}

@media screen and (max-width: 950px) {
  .navigation__btn {
    display: block;
    position: absolute;
    z-index: 60;
    top: 1rem;
    right: 1rem;
  }

  .info_wrap {
    display: none;
  }

  .info_wrap_sp {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .info_wrap_sp.info_btn {
    padding: 2rem;
    border-radius: .6rem;
    width: 100%;
    text-align: center;
  }

  .info_wrap_sp.tel_heading {
    color: #ffffff;
  }

  .info_wrap_sp .tel_heading:before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #ffffff;
  }

  .info_wrap_sp .tel_heading span {
    position: relative;
    padding: 0 1rem;
    color: #ffffff;
    font-size: 1.6rem;
    background: rgba(0, 0, 0, .9);
  }

  .info_wrap_sp .info_tel .tel {
    font-size: 3rem;
    color: #ffffff;
  }

  .info_wrap_sp p {
    color: #ffffff;
  }
}

.navigation__container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 50px;
  gap: 3rem;
  z-index: 51;
}

@media screen and (max-width: 950px) {
  .navigation__container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 0;
    padding: 0 2rem;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.86, 0, 0.07, 1) height;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: none;
    text-align: center;
    gap: 0;
  }

  .is-open .navigation__container {
    height: 100vh;
  }
}

.navigation__item {
  font-size: clamp(1.5rem, 1.465rem + 0.15vw, 1.6rem);
  text-decoration: none;
  color: #FFF;
}

.navigation__item:hover {
  color: #f0e68c;
  -webkit-animation: hover 0.1s ease forwards;
  animation: hover 0.1s ease forwards;
}

@media screen and (max-width: 950px) {
  .navigation__item {
    margin: 1.55rem 0;
    transform: translate(0, -10px);
    transition: .2s ease all;
    opacity: 0;
    pointer-events: none;
  }

  .is-open .navigation__item {
    pointer-events: all;
  }

  .is-open .navigation__item:nth-of-type(1) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.05s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(2) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.1s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(3) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.15s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(4) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.2s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(5) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.25s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(6) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.3s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(7) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.35s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(8) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.4s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(9) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.45s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(10) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.5s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(11) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.55s;
    opacity: 1;
  }

  .is-open .navigation__item:nth-of-type(12) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.6s;
    opacity: 1;
  }
}

.btn-navi {
  display: block;
  width: 4rem;
  height: 4rem;
  border: 0;
  outline: 0;
}

.btn-navi span {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 60%;
  height: 1px;
  margin: 0 auto;
  background: #00AB84;
}

.btn-navi span::before,
.btn-navi span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  transform-origin: center center;
  background: #00AB84;
  transition: 0.2s all ease 0s;
}

.btn-navi span::before {
  transform: translate(0, -0.6rem);
}

.btn-navi span::after {
  transform: translate(0, 0.6rem);
}

.is-open .btn-navi span {
  background: rgba(0, 0, 0, .9);
}

.is-open .btn-navi span::before {
  transform: translate(0, 0) rotate(-45deg);
  background: #ffffff;
}

.is-open .btn-navi span::after {
  transform: translate(0, 0) rotate(45deg);
  background: #ffffff;
}

.fixed_menu {
  position: fixed;
  top: 20%;
  right: 0px;
  z-index: 50;
  transition: 0.5s ease all;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.fixed_menu .info_btn {
  font-size: 1.8rem;
  border-radius: .6rem 0 0 .6rem;
  padding: 1.5rem;
}

@media screen and (min-width: 769px) {
  .fixed_menu .info_btn {
    writing-mode: vertical-rl;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 768px) {
  .fixed_menu {
    top: auto;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .fixed_menu .info_btn {
    width: 50%;
    font-size: 1.6rem;
    border-radius: 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mainwrap {
  padding: clamp(5rem, -0.714rem + 11.9vw, 10rem) 0;
}

/*--footer --*/
footer {
  background: #ffffff;
  border-top: 2px solid #00AB84;
  padding: clamp(2.4rem, -0.712rem + 5.24vw, 4rem) 0 0 0;
}

.footer_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 0 0 4rem 0;
  text-align: center;
}

.footer_l {
  flex: 1;
}

.footer_logo_cl {
  width: 100%;
}

.footer_r {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  flex-direction: column;
  width: 73%;
}

.footer_menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid #C2C2C2;
}

.footer_book {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-direction: row;
}

.footer_book .info_btn {
  width: calc((44% - 1.5rem) / 2);
  flex-grow: 1;
}

.footer_book .info_tel {
  flex-grow: 1;
}

.footer_book p {
  font-size: 1.4rem;
}

@media screen and (max-width: 950px) {
  .footer_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .footer_r {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer_r {
    display: none;
  }
}

.megumikai_info {
  background: #FAFAFA;
  padding: 2rem 0;
  text-align: center;
}

.megumikai_info_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer_logo {
  max-width: 120px;
}

.copyright {
  font-size: 1.2rem;
}

@media screen and (max-width: 950px) {
  .site_map_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 0 0 3rem 0;
    text-align: center;
    width: 100%;
  }

  .footer_logo_cl {
    width: 60%;
    max-width: 300px;
  }

  .site_map_detail {
    display: none;
  }

  .megumikai_info_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
  }
}

/*-----------TOPページ--------*/
.top_visual img {
  margin: 110px 0 0 0;
}

@media screen and (max-width: 768px) {
  .top_visual img {
    margin: 60px 0 0 0;
  }
}

.book_wrap {
  background: #00AB84;
  color: #ffffff;
  text-align: center;
  padding: clamp(6rem, 3.887rem + 9.01vw, 12rem) 0;
}

.book_area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.book_area_l {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.6;
  flex: 1;
  text-align: center !important;
}

.heading {
  text-align: center;
}

.heading_jp_w {
  font-size: clamp(2.2rem, 1.033rem + 1.963vw, 2.8rem);
  text-align: center;
  line-height: 1.5;
}

.heading_en {
  font-size: 40%;
}

.heading_en.green {
  color: #00AB84;
}

.book_area_r {
  display: flex;
  flex-direction: column;
  width: 73%;
}

.book_pre {
  margin: 0 auto clamp(2rem, 0.055rem + 3.27vw, 3rem) auto;
  font-size: clamp(1.5rem, 1.306rem + 0.327vw, 1.6rem);
}

.book_pre span {
  border-bottom: 1px solid #ffffff;
  padding: 0 0 5px 0;
}

.book_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-direction: row;
}

.book_inner>* {
  width: calc((100% - 4rem) / 3);
}

.book_btn {
  padding: 1.5rem 1rem;
  border-radius: .6rem;
  text-align: center;
  font-size: 1.8rem;
}

.book_btn.web {
  background: #EF858C;
  color: #fff;
}

.book_btn.online {
  background: #EDEDED;
  color: #959595;
}

.book_tel {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  flex: 1;
}

.book_tel .tel_heading {
  position: relative;
  text-align: center;
}

.book_tel .tel_heading:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #ffffff;
}

.book_tel .tel_heading span {
  position: relative;
  padding: 0 1rem;
  background: #00AB84;
  font-size: 1.6rem;
}

.book_tel .tel {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 3rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 950px) {
  .book_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .book_area_r {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .book_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .book_inner>* {
    width: auto;
  }

  .book_btn {
    width: calc((100% - 2rem) / 2);
    font-size: 1.6rem;
  }
}

.top_access_wrap {
  background: #E6F7F3;
  text-align: center;
  padding: clamp(6rem, 3.887rem + 9.01vw, 12rem) 0;
}

.access_inner {
  margin: 4rem auto 0 auto;
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}

.access_inner>* {
  width: calc((100% - 4rem) / 2);
}

.access_info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4rem;
}

h3.heading_access {
  width: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: 1px solid #333333;
  padding: 0 0 .5rem 0;
  text-align: left;
  margin: 0 0 2rem 0;
}

.access_info_detail {
  display: flex;
  gap: 1rem;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin: 2rem 0 0 0;
  text-align: left;
}

.access_info_detail dl span {
  color: #00AB84;
  padding: 0 10px 0 0;
}

.access_info_detail dl {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.access_info_detail dl dt {
  width: 20%;
}

.access_info_detail dl dd {
  text-align: left;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .access_inner {
    margin: 3rem auto 0 auto;
    display: flex;
    gap: 4rem;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .access_inner>* {
    width: 100%;
  }

  .access_info_detail dl dt {
    width: 30%;
  }
}

.bg_h1title {
  margin: 110px 0 0 0;
  background: url(../images/beauty_cl/bg_h1.png) no-repeat right center / cover;
  height: 240px;
  max-height: 240px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 950px) {
  .bg_h1title {
    margin: 60px 0 0 0;
    height: 120px;
    max-height: 120px;
  }
}

.doctor_wrap {
  display: flex;
  gap: 3rem;
  padding: clamp(5rem, -0.714rem + 11.9vw, 10rem) 0;
}

.doctor_message {
  flex: 1;
  line-height: 2;
  text-align: justify;
}

.doctor_message span {
  color: #595959;
  font-size: 80%;
}

.doctor_img {
  width: 60%;
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .doctor_wrap {
    display: flex;
    gap: 3rem;
    padding: 4rem 0;
    flex-direction: column-reverse;
    align-items: center;
  }

  .doctor_img {
    width: 60%;
    max-width: 400px;
  }
}

h3.midashi_green {
  color: #00AB84;
  margin: 0 auto 3rem auto;
  text-align: center;
  font-size: clamp(2.2rem, 1.514rem + 1.43vw, 2.8rem);
}

.menu_inner {
  display: flex;
  gap: clamp(6rem, 1.429rem + 9.52vw, 10rem);
  flex-direction: column;
  justify-content: flex-start
}

.menu_wrap {
  display: flex;
  gap: clamp(3rem, 0.714rem + 4.76vw, 5rem);
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.menu_wrap>* {
  width: calc((100% - 3rem) / 2);
}

@media screen and (max-width: 768px) {
  .menu_wrap {
    display: flex;
    gap: clamp(3rem, 0.714rem + 4.76vw, 5rem);
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column-reverse;
  }

  .menu_wrap>* {
    width: 100%;
  }

  .item_img {
    order: 2;
  }

  .item_txt {
    order: 1;
  }
}

.antiaging_inner {
  display: flex;
  gap: clamp(2rem, -0.286rem + 4.76vw, 4rem);
  flex-direction: column;
  justify-content: flex-start;
  margin: 3rem auto 0 auto;
}

.antiaging_heading {
  background: #666666;
  color: #ffffff;
  padding: 1rem;
  font-size: 1.8rem;
  line-height: 1.5;
}

.antiaging_detail {
  background: #ffffff;
  padding: 2rem;
  text-align: justify;
}

.price_inner {
  display: flex;
  gap: clamp(2rem, -0.286rem + 4.76vw, 4rem);
  flex-direction: column;
  justify-content: flex-start;
  margin: 3rem auto 0 auto;
}

h3.midashi_price {
  color: #00AB84;
  margin: 0 auto 1rem auto;
  text-align: left;
  font-size: clamp(2.2rem, 1.514rem + 1.43vw, 2.8rem);
}

ul.price_wrap {
  border: 1px solid #333333;
}

ul.price_wrap li {
  display: flex;
  border-bottom: 1px solid #333333;
}

ul.price_wrap li.green {
  background: #E6F7F3;
  text-align: center;
}

.price_detail_head,
.price_detail {
  width: 20%;
  padding: 1rem;
}

.price_detail_head2,
.price_detail2 {
  width: 20%;
  padding: 1rem;
  border-right: 1px solid #333333;
}

.price_detail,
.price_detail2 {
  text-align: right;
}

.price_item_head,
.price_item {
  flex: 1;
  border-right: 1px solid #333333;
  padding: 1rem;
}

ul.price_wrap li:last-child {
  border-bottom: 0px solid #333333;
}

.input_pw {
  padding: 10px;
  border: 1px solid #333333;
  border-radius: 5px;
}

.btn_pw {
  background: #333333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.p-kino-beauty__news {
  text-align: center;
  padding: clamp(6rem, 3.887rem + 9.01vw, 12rem) 0;
}

.news_list {
  width: 100%;
  border-top: 1px solid #C2C2C2;
  margin: 3rem auto;
}

.news_list li {
  width: 100%;
  border-bottom: 1px solid #c2c2c2;
}

.news_list li a {
  padding: 2rem 0;
  position: relative;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.news_list li a::before {
  position: absolute;
  right: 10px;
  top: 50%;
  display: block;
  content: "";
  width: 15px;
  height: 2px;
  background: #00AB84;
}

.news_list li a::after {
  position: absolute;
  right: 10px;
  top: calc(50% - 4px);
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #00AB84;
  border-top: 2px solid #00AB84;
  transform: rotate(45deg);
}

.news_date {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.news_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.news_btn {
  padding: 1.5rem 1rem;
  border-radius: .6rem;
  text-align: center;
  font-size: 1.8rem;
  background: #E6F7F3;
  color: #333;
  margin: 0 auto;
  width: 320px;
  display: block;
}

.news_item {
  padding: 2rem 0;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin: 0 0 clamp(50px, 1.9531vw + 35px, 60px) 0;
  padding: 0px 0 2rem 0px;
  border-bottom: 1px solid #c2c2c2;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

h3.hews_heading {
  color: #00AB84;
  font-size: clamp(1.8rem, 0.9rem + 1.87vw, 2.4rem);
}

@media screen and (max-width: 768px) {
  .news_list li a {
    padding: 2rem 0;
    position: relative;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
