@charset "UTF-8";
/*---------------------------------------------
 font
---------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700|Roboto:400,700&display=swap");
@font-face {
  font-family: YuGothicM;
  src: local(Yu Gothic Medium), local(Yu Gothic);
  font-weight: 500;
}
/*----------------------------------
	common
----------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
  font-family: "游明朝", YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-feature-settings: "palt";
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
}

@supports (background: paint(id)) and (not (-ms-high-contrast-adjust: none)) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
ul {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.pcOnly {
  display: none;
}

.spOnly {
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .pcOnly {
    display: block;
  }
  .spOnly {
    display: none;
  }
}


/*----------------------------------
	中ページ共通
----------------------------------*/
main {
  display: block;
  /*ie11用*/
  background-color: rgba(235, 235, 232, 0.6);
}

.breadcrumb {
  background-color: #f9f9f9;
  padding: 10px 20px;
  margin-top: 60px;
}
.breadcrumb .inner {
  width: 100%;
  overflow: hidden;
}
.breadcrumb ul {
  display: flex;
  white-space: nowrap;
}
.breadcrumb ul li {
  font-size: 1.2rem;
  position: relative;
  color: #3C5E75;
}
.breadcrumb ul li:not(:last-child) {
  margin-right: 30px;
}
.breadcrumb ul li:not(:last-child):after {
  content: ">";
  color: #999;
  position: absolute;
  right: -20px;
  top: 1px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
}
.breadcrumb a {
  color: #999;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 15px 30px;
    margin-top: 75px;
  }
  .breadcrumb .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .breadcrumb a:hover {
    color: #333;
  }
}
.title {
  background-color: #fff;
  margin-bottom: 15px;
}
.title .inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 70px 0;
}
.title h1 {
  font-size: 3.2rem;
  letter-spacing: 0.3rem;
  color: #3C5E75;
  line-height: 1.8;
  text-align: center;
}
.title h1:after {
  display: block;
  font-size: 1.4rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}

@media screen and (min-width: 768px) {
  .title {
    margin-bottom: 25px;
  }
  .title .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 120px 0;
  }
  .title h1 {
    font-size: 5.5rem;
  }
  .title h1:after {
    font-size: 1.6rem;
    color: #555;
  }
}
/*---------------------------------------------
	.bl_footNavi
---------------------------------------------*/
.bl_footNavi {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 50;
}

.bl_footNavi_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #d8d8d8;
}

.bl_footNavi_list_tel a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f095";
  font-size: 2rem;
  margin-bottom: 5px;
}

.bl_footNavi_list_reserve a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f0e0";
  font-size: 2rem;
  margin-bottom: 5px;
}

.bl_footNavi_list_line a::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  content: "\f3c0";
  font-size: 2.2rem;
  margin-bottom: 5px;
  color: #00B900;
}

.bl_footNavi_list_access a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f3c5";
  font-size: 2rem;
  margin-bottom: 5px;
}

.bl_footNavi_list_item {
  padding: 3px 0;
  width: 100%;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, Verdana, Avenir, "游ゴシック Medium", "YuGothic M", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.bl_footNavi_list_item i {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.bl_footNavi_list_item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3C5E75;
  height: 46px;
}

.bl_footNavi_list_item:not(:last-of-type) {
  border-right: 1px solid #d8d8d8;
}

@media screen and (min-width: 768px) {
  .bl_footNavi {
    display: none;
  }
}
/*---------------------------------------------
	page common
---------------------------------------------*/
.banner {
  position: fixed;
  bottom: 15px;
  right: 15px;
}
.banner img {
  width: 100px;
  height: auto;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.banner02 {
  position: fixed;
  bottom: 120px;
  right: 15px;
}
.banner02 img {
  width: 100px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .banner {
    bottom: 20px;
    right: 20px;
  }
  .banner img {
    width: 150px;
    height: auto;
  }
  .banner a:hover {
    opacity: 0.8;
  }
  .banner02 {
    position: fixed;
    bottom: 180px;
    right: 15px;
  }
  .banner02 img {
    width: 150px;
    height: auto;
  }
  .banner02 a:hover {
    opacity: 0.8;
  }
}
/* helper
---------------------------------------------*/
.hp_mb0 {
  margin-bottom: 0 !important;
}

/*----------------------------------
	.bl_slide
----------------------------------*/
#home .bl_slide {
  margin-bottom: 2vh;
  margin-top: 60px;
}
#home .bl_slide img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #home .bl_slide {
    margin-bottom: 2vh;
    margin-top: 75px;
  }
}
/*----------------------------------
	.bl_accordion
----------------------------------*/
.bl_accordion {
  margin: 0 0 3vh;
}
.bl_accordion .inner {
  padding: 0 20px;
}

.bl_accordion_wrap {
  border: 1px solid #333;
}

.bl_accordion_title {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 10px 15px;
  cursor: pointer;
}
.bl_accordion_title:after {
  content: "";
  position: absolute;
  top: 35%;
  right: 20px;
  width: 15px;
  height: 15px;
  border: 2px solid;
  border-color: transparent transparent #565656 #565656;
  transform: rotate(-45deg);
}
.bl_accordion_title:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.bl_accordion.open .bl_accordion_title {
  background-color: rgba(0, 0, 0, 0.05);
}

.bl_accordion.open .bl_accordion_title:after {
  top: 45%;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(-45deg);
}

.bl_accordion_contents {
  display: none;
  padding: 2vh 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.bl_accordion_read {
  margin-bottom: 1.5rem;
}

.bl_accordion_pict {
  text-align: center;
}

.bl_accordion_pict img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .bl_accordion .bl_accordion_title {
    font-size: 2.4rem;
    padding: 15px 30px;
  }
  .bl_accordion .bl_accordion_title:after {
    top: 20%;
    right: 30px;
    width: 24px;
    height: 24px;
  }
  .bl_accordion.open .bl_accordion_title:after {
    top: 45%;
  }
  .bl_accordion_contents {
    padding: 3vh 20px 2vh;
    font-size: 1.6rem;
  }
  .bl_accordion_read {
    text-align: center;
  }
}
/*----------------------------------
	.bl_emergency
----------------------------------*/
.bl_emergency {
  margin: 0 0 3vh;
}
.bl_emergency .inner {
  padding: 0 20px;
}

.bl_emergency_wrap {
  border: 1px solid #333;
}

.bl_emergency_title {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 10px 15px;
  cursor: pointer;
}
.bl_emergency_title:after {
  content: "";
  position: absolute;
  top: 35%;
  right: 20px;
  width: 15px;
  height: 15px;
  border: 2px solid;
  border-color: transparent transparent #565656 #565656;
  transform: rotate(-45deg);
}
.bl_emergency_title:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.bl_emergency.open .bl_emergency_title {
  background-color: rgba(0, 0, 0, 0.05);
}

.bl_emergency.open .bl_emergency_title:after {
  top: 45%;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(-45deg);
}

.bl_emergency_contents {
  display: none;
  padding: 2vh 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.bl_emergency_read {
  margin-bottom: 1.5rem;
}

.bl_emergency_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bl_emergency_list ol {
  list-style-type: disc;
  margin-bottom: 2rem;
}

.bl_emergency_attention {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bl_emergency_stop {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bl_emergency_stop ul {
  list-style-type: disc;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .bl_emergency .bl_emergency_title {
    font-size: 2.4rem;
    padding: 15px 30px;
  }
  .bl_emergency .bl_emergency_title:after {
    top: 20%;
    right: 30px;
    width: 24px;
    height: 24px;
  }
  .bl_emergency.open .bl_emergency_title:after {
    top: 45%;
  }
  .bl_emergency_contents {
    padding: 3vh 20px 2vh;
    font-size: 1.6rem;
  }
  .bl_emergency_read {
    text-align: center;
  }
  .bl_emergency_list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bl_emergency_list ol {
    list-style-type: disc;
    margin-bottom: 2rem;
  }
  .bl_emergency_attention {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .bl_emergency_stop {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bl_emergency_stop ul {
    list-style-type: disc;
    margin-bottom: 2rem;
  }
}
/*----------------------------------
	.bl_linkList
----------------------------------*/
#home .bl_linkList .inner {
  padding: 0 20px 3vh;
}
#home .bl_linkList ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#home .bl_linkList li {
  text-align: center;
  width: 49%;
  height: auto;
  transition: all 0.5s;
}
#home .bl_linkList li:not(:nth-last-of-type(-n+2)) {
  margin-bottom: 2%;
}
#home .bl_linkList a {
  display: block;
  text-decoration: none;
  background-color: #3C5E75;
  color: #fff;
  padding: 10px 10px;
  border: 1px solid rgba(60, 94, 117, 0.5);
  font-size: 1.2rem;
  font-weight: normal;
  position: relative;
}
#home .bl_linkList a span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
#home .bl_linkList a:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -4px;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  #home .bl_linkList ul li {
    width: 24%;
    height: auto;
  }
  #home .bl_linkList ul li a {
    font-size: 1.6rem;
    transition: all 0.5s;
  }
  #home .bl_linkList ul li a span {
    font-size: 1rem;
  }
  #home .bl_linkList ul li a:hover {
    opacity: 0.8;
  }
  #home .bl_linkList ul li:hover a:before {
    right: 4%;
  }
  #home .bl_linkList ul li:not(:nth-last-of-type(-n+2)) {
    margin-bottom: 0;
  }
}
/*----------------------------------
	.bl_beauty
----------------------------------*/
#home .bl_beauty {
  position: relative;
  overflow: hidden;
  margin-bottom: 3vh;
  /*
    .swiper-slide {
      &:not(.swiper-slide-visible) {
        pointer-events: none;
        opacity: .5;
      }
    }
  */
}
#home .bl_beauty .inner {
  padding: 5vh 20px 35px;
  text-align: center;
}
#home .bl_beauty .swiper {
  overflow: hidden;
  padding: 0 5vw;
}
#home .bl_beauty .swiper-pagination-bullet-active {
  background: #3C5E75;
}
#home .bl_beauty .swiper-button-prev,
#home .bl_beauty .swiper-button-next {
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}
#home .bl_beauty .swiper-button-prev::before,
#home .bl_beauty .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}
#home .bl_beauty .swiper-button-prev::after,
#home .bl_beauty .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fff;
  border-width: 3px 3px 0 0;
}
#home .bl_beauty .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
#home .bl_beauty .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
#home .bl_beauty .bg_beauty_anime {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  background-color: rgba(60, 94, 117, 0.2);
  width: 85%;
  height: 75%;
  right: 0;
}
#home .bl_beauty .bl_beauty_title {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.2rem;
  white-space: nowrap;
  margin-bottom: 2rem;
}
#home .bl_beauty .bl_beauty_title span {
  color: #c82c9c;
}
#home .bl_beauty .bl_beauty_title:after {
  content: "";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-top: 0.5rem;
}
#home .bl_beauty img {
  min-height: 0%;
}

@media screen and (min-width: 768px) {
  #home .bl_beauty .swiper {
    padding: 0 4vw;
  }
  #home .bl_beauty .swiper-button-prev,
#home .bl_beauty .swiper-button-next {
    display: grid;
    place-content: center;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
  }
  #home .bl_beauty .inner {
    padding: 7vh 20px 40px;
  }
  #home .bl_beauty .bg_beauty_anime {
    width: 80%;
    height: 75%;
  }
  #home .bl_beauty .bl_beauty_title {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  #home .bl_beauty img {
    transition: all 0.5s;
  }
  #home .bl_beauty img:hover {
    opacity: 0.7;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }
}
/*----------------------------------
	.bl_extraCare
----------------------------------*/
#home .bl_extraCare {
  position: relative;
  overflow: hidden;
  margin-bottom: 5vh;
  /*
    .swiper-slide {
      &:not(.swiper-slide-visible) {
        pointer-events: none;
        opacity: .5;
      }
    }
  */
}
#home .bl_extraCare .inner {
  padding: 0vh 20px 10px;
  text-align: center;
}
#home .bl_extraCare .swiper {
  overflow: hidden;
  padding: 0 5vw 3.5vh;
}
#home .bl_extraCare .swiper-pagination-bullet-active {
  background: #3C5E75;
}
#home .bl_extraCare .swiper-button-prev,
#home .bl_extraCare .swiper-button-next {
  display: grid;
  place-content: center;
  width: 4.5rem;
  height: 4.5rem;
  cursor: pointer;
}
#home .bl_extraCare .swiper-button-prev::before,
#home .bl_extraCare .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}
#home .bl_extraCare .swiper-button-prev::after,
#home .bl_extraCare .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fff;
  border-width: 3px 3px 0 0;
}
#home .bl_extraCare .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
#home .bl_extraCare .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
#home .bl_extraCare .bl_extraCare_title {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.2rem;
  white-space: nowrap;
  margin-bottom: 2rem;
}
#home .bl_extraCare .bl_extraCare_title span {
  color: #c82c9c;
}
#home .bl_extraCare img {
  min-height: 0%;
}

@media screen and (min-width: 768px) {
  #home .bl_extraCare {
    margin-bottom: 7vh;
  }
  #home .bl_extraCare .inner {
    padding: 0vh 20px 5vh;
  }
  #home .bl_extraCare .swiper {
    padding: 0 4vw;
  }
  #home .bl_extraCare .swiper-button-prev,
#home .bl_extraCare .swiper-button-next {
    display: grid;
    place-content: center;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
  }
  #home .bl_extraCare .bl_extraCare_title {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  #home .bl_extraCare img {
    transition: all 0.5s;
  }
  #home .bl_extraCare img:hover {
    opacity: 0.7;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }
}
/*----------------------------------
	.info
----------------------------------*/
#home .info {
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
}
#home .info .bg_info_anime {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  background-color: rgba(133, 159, 61, 0.2);
  width: 80%;
  height: 60%;
}
#home .info section {
  padding: 50px 30px;
}
#home .info h2 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  white-space: nowrap;
}
#home .info h2:after {
  content: "Information";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .info .container {
  margin-top: 40px;
  padding: 20px 15px;
  background-color: #fff;
}
#home .info .container ul {
  margin-bottom: 30px;
}
#home .info .container li {
  border-bottom: 1px solid #efefef;
}
#home .info .container .contents a {
  padding: 10px 15px;
  display: block;
  flex-direction: row;
  text-decoration: none;
  color: #555;
}
#home .info .container .contents a:hover {
  background-color: #f9f9f9;
}
#home .info .container .contents time {
  color: #cb9757;
  font-size: 1.4rem;
}
#home .info .container .contents .category {
  color: #999999;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #999999;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
#home .info .container .contents h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 1.5rem 0 1rem;
}
#home .info .container .btn {
  display: flex;
  justify-content: center;
}
#home .info .container .btn a {
  width: 100%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#home .info .container .btn a:after {
  content: "see all";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .info .container .btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .info .bg_anime {
    width: 70%;
    height: 60%;
  }
  #home .info section {
    padding: 90px 60px;
  }
  #home .info h2 {
    font-size: 3.6rem;
  }
  #home .info h2:after {
    font-size: 1.2rem;
  }
  #home .info .container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px 30px;
  }
  #home .info .container .contents a {
    padding: 20px 25px 20px;
    display: flex;
    align-items: center;
  }
  #home .info .container .contents a:hover {
    background-color: #f9f9f9;
  }
  #home .info .container .contents .sub {
    margin-right: 30px;
    white-space: nowrap;
  }
  #home .info .container .contents h3 {
    font-size: 2.1rem;
    margin: 2rem 0 1rem;
  }
  #home .info .container .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
/*----------------------------------
	.bl_insta
----------------------------------*/
#home .bl_insta {
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
}
#home .bl_insta section {
  padding: 0px 30px 100px;
}
#home .bl_insta h2 {
  font-size: 2.1rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  white-space: nowrap;
}
#home .bl_insta h2:after {
  content: "Instagram";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}

@media screen and (min-width: 768px) {
  #home .bl_insta section {
    padding: 0px 60px 150px;
  }
  #home .bl_insta h2 {
    font-size: 3.6rem;
  }
  #home .bl_insta h2:after {
    font-size: 1.2rem;
  }
}
/*----------------------------------
	.bl_reserve
----------------------------------*/
#home .bl_reserve section {
  padding: 60px 20px;
  background-color: rgba(60, 94, 117, 0.1);
}
#home .bl_reserve h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 50px;
}
#home .bl_reserve h2:after {
  content: "reserve";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .bl_reserve .bl_reserve_txt {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}
#home .bl_reserve .bl_reserveBtn {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
#home .bl_reserve .bl_reserveBtn_form {
  display: flex;
  justify-content: center;
}
#home .bl_reserve .bl_reserveBtn_form a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  background-color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#home .bl_reserve .bl_reserveBtn_form a:after {
  content: "web reserve form";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
#home .bl_reserve .bl_reserveBtn_form a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
#home .bl_reserve .bl_reserveBtn_line {
  display: flex;
  justify-content: center;
}
#home .bl_reserve .bl_reserveBtn_line a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: #00B900;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #009000;
  transition: all 0.5s;
}
#home .bl_reserve .bl_reserveBtn_line a:after {
  content: "reserve line";
  display: block;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
#home .bl_reserve .bl_reserveBtn_line a:hover {
  opacity: 0.7;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .bl_reserve section {
    padding: 90px 0px;
  }
  #home .bl_reserve h2 {
    font-size: 3.6rem;
  }
  #home .bl_reserve h2:after {
    font-size: 1rem;
  }
  #home .bl_reserve .bl_reserveBtn {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 0 30px;
  }
  #home .bl_reserve .bl_reserveBtn_form a {
    width: 380px;
    padding: 20px 100px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .bl_reserve .bl_reserveBtn_form a:after {
    font-size: 1rem;
  }
  #home .bl_reserve .bl_reserveBtn_line a {
    width: 380px;
    padding: 20px 100px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .bl_reserve .bl_reserveBtn_line a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	.bl_line
----------------------------------*/
#home .bl_line section {
  padding: 60px 20px;
  background-color: rgba(133, 159, 61, 0.1);
}
#home .bl_line h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 50px;
}
#home .bl_line h2:after {
  content: "line";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .bl_line .bl_line_txt {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}
#home .bl_line .bl_line_txtStrong {
  font-size: 2.4rem;
  display: block;
}
#home .bl_line .bl_lineBtn {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
#home .bl_line .bl_lineBtn_line {
  display: flex;
  justify-content: center;
}
#home .bl_line .bl_lineBtn_line a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: #00B900;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #009000;
  transition: all 0.5s;
}
#home .bl_line .bl_lineBtn_line a:after {
  content: "add line";
  display: block;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
#home .bl_line .bl_lineBtn_line a:hover {
  opacity: 0.7;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .bl_line section {
    padding: 90px 0px;
  }
  #home .bl_line h2 {
    font-size: 3.6rem;
  }
  #home .bl_line h2:after {
    font-size: 1rem;
  }
  #home .bl_line .bl_lineBtn {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 0 30px;
  }
  #home .bl_line .bl_lineBtn_form a {
    width: 380px;
    padding: 20px 100px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .bl_line .bl_lineBtn_form a:after {
    font-size: 1rem;
  }
  #home .bl_line .bl_line_txtStrong {
    font-size: 2.4rem;
  }
  #home .bl_line .bl_lineBtn_line a {
    width: 380px;
    padding: 20px 100px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .bl_line .bl_lineBtn_line a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	.docter
----------------------------------*/
#home .docter {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  /*
  p.headCatch:before {
    position: absolute;
    display: block;
    content: "";
    width: 60px;
    height: 4px;
    background: #555555;
    top: -30px;
    left: -30px;
  }*/
}
#home .docter section {
  padding: 60px 30px;
}
#home .docter .bg_doctor_anime {
  position: absolute;
  display: block;
  content: "";
  z-index: -1;
  background-color: rgba(60, 94, 117, 0.2);
  width: 60%;
  height: 20%;
  right: 0;
}
#home .docter .bg_doctor_anime2 {
  display: none;
}
#home .docter p.headCatch {
  position: relative;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 30px;
}
#home .docter h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.25rem;
}
#home .docter .contents {
  position: relative;
}
#home .docter .pict {
  padding: 30px;
}
#home .docter .pict img {
  max-width: 100%;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}
#home .docter .pict .btn {
  display: flex;
  justify-content: center;
}
#home .docter .pict .btn a {
  width: 100%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  background-color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#home .docter .pict .btn a:after {
  content: "doctor introduction";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .docter .pict .btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}
#home .docter .text {
  padding: 30px;
  width: 100%;
  background-color: #fff;
  line-height: 2.4;
  font-size: 1.4rem;
}
#home .docter .name {
  text-align: right;
  font-size: 2.1rem;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  #home .docter {
    margin-bottom: 50px;
  }
  #home .docter section {
    padding: 150px 80px 50px;
  }
  #home .docter .bg_doctor_anime {
    width: 60%;
    height: 65%;
    bottom: 45%;
  }
  #home .docter p.headCatch {
    font-size: 3rem;
  }
  #home .docter h2 {
    font-size: 2.8rem;
    white-space: nowrap;
  }
  #home .docter .contents {
    max-width: 1200px;
    margin: 0 auto;
  }
  #home .docter .pict {
    position: absolute;
    right: 0;
    top: -20px;
    width: 40%;
    padding-left: 80px;
  }
  #home .docter .pict img {
    max-width: 100%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
  }
  #home .docter .pict .btn {
    display: flex;
    justify-content: center;
  }
  #home .docter .pict .btn a {
    width: auto;
    padding: 20px 50px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .docter .pict .btn a:after {
    font-size: 1rem;
  }
  #home .docter .text {
    margin-top: 30px;
    padding: 60px;
    width: 60%;
    font-size: 1.6rem;
  }
  #home .docter .name {
    font-size: 2.1rem;
  }
}
/*----------------------------------
	.bl_clinicSlide
----------------------------------*/
.bl_clinicSlide .swiper-slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  overflow: hidden;
  backface-visibility: hidden;
}

@media screen and (min-width: 768px) {
  .bl_clinicSlide .swiper-slide {
    height: 500px;
  }
}
/*----------------------------------
	.access
----------------------------------*/
#home .access section {
  padding: 60px 0px;
}
#home .access h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 50px;
}
#home .access h2:after {
  content: "CLINIC INFORMATION";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .access .txt {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
#home .access table {
  font-size: 1.4rem;
  line-height: 1.6;
}
#home .access table th {
  font-weight: normal;
  text-align: right;
  vertical-align: top;
}
#home .access table th,
#home .access table td {
  padding: 5px;
}
#home .access .gmap {
  width: 100%;
}
#home .access .btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#home .access .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#home .access .btn a:after {
  content: "see google map";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .access .btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .access section {
    padding: 90px 0px;
  }
  #home .access h2 {
    font-size: 3.6rem;
  }
  #home .access h2:after {
    font-size: 1rem;
  }
  #home .access table {
    font-size: 1.6rem;
  }
  #home .access .gmap {
    padding: 0 30px;
  }
  #home .access .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .access .btn a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	.bl_agreement
----------------------------------*/
#home .bl_agreement section {
  padding: 60px 20px;
  background-color: rgba(60, 94, 117, 0.1);
}
#home .bl_agreement h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 50px;
}
#home .bl_agreement h2:after {
  content: "AGREEMENT FORM";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .bl_agreement .bl_agreement_txt {
  text-align: center;
  line-height: 1.8;
}
#home .bl_agreement .bl_agreement_btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#home .bl_agreement .bl_agreement_btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  background-color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#home .bl_agreement .bl_agreement_btn a:after {
  content: "DOWNLOAD AGREEMENT FORM";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
#home .bl_agreement .bl_agreement_btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #home .bl_agreement section {
    padding: 90px 0px;
  }
  #home .bl_agreement h2 {
    font-size: 3.6rem;
  }
  #home .bl_agreement h2:after {
    font-size: 1rem;
  }
  #home .bl_agreement .bl_agreement_btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #home .bl_agreement .bl_agreement_btn a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	.bl_calendar
----------------------------------*/
#home .bl_calendar section {
  padding: 60px 20px;
}
#home .bl_calendar h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 50px;
}
#home .bl_calendar h2:after {
  content: "TREATMENT CALLENDAR";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#home .bl_calendar .bl_calendar_scedule {
  margin: 0 auto;
}
#home .bl_calendar .bl_calendar_scedule table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.3rem;
  margin-bottom: 15px;
}
#home .bl_calendar .bl_calendar_scedule table th {
  background: #3C5E75;
  border: solid 1px #ccc;
  color: #fff;
  padding: 5px 10px;
  line-height: 1.6;
  font-weight: normal;
}
#home .bl_calendar .bl_calendar_scedule table th.merge-column {
  background-color: transparent;
  border: none;
}
#home .bl_calendar .bl_calendar_scedule table td {
  color: #3C5E75;
  border: solid 1px #ccc;
  padding: 15px 10px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
  background-color: #fff;
}
#home .bl_calendar .bl_calendar_scedule table td:first-of-type {
  background: #3C5E75;
  color: #fff;
  font-size: 1.4rem;
}
#home .bl_calendar .bl_calendar_scedule table td:last-of-type {
  font-weight: bold;
  font-size: 1.8rem;
}
#home .bl_calendar .bl_calendar_scedule table i.rest {
  margin-top: -10px !important;
}
#home .bl_calendar .bl_calendar_scedule p {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}
#home .bl_calendar .tableBox {
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 20px;
}
#home .bl_calendar .tableBox::-webkit-scrollbar {
  height: 10px;
}
#home .bl_calendar .tableBox::-webkit-scrollbar-track {
  margin: 0;
  background: #ccc;
  border-radius: 5px;
}
#home .bl_calendar .tableBox::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}

@media screen and (min-width: 768px) {
  #home .bl_calendar section {
    padding: 90px 0px;
  }
  #home .bl_calendar h2 {
    font-size: 3.6rem;
  }
  #home .bl_calendar h2:after {
    font-size: 1rem;
  }
  #home .bl_calendar .bl_calendar_scedule {
    width: 600px;
  }
  #home .bl_calendar .bl_calendar_scedule table {
    width: 100%;
  }
}
/*----------------------------------
	#about
----------------------------------*/
#about {
  /*----------------------------------
  	.access
  ----------------------------------*/
}
#about h1 {
  font-size: 3rem;
}
#about h1:after {
  content: "about clinic";
  font-size: 1.2rem;
}
#about .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#about .article {
  background-color: #fff;
}
#about .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#about .article h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#about .article.access h2 {
  padding-bottom: 0;
  border-bottom: none;
}
#about .article .treatment ul {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#about .article .treatment ul li {
  font-size: 1.8rem;
  line-height: 2;
}
#about .article .scedule {
  margin: 0 auto;
}
#about .article .scedule table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.3rem;
  margin-bottom: 15px;
}
#about .article .scedule table th {
  background: #3C5E75;
  border: solid 1px #ccc;
  color: #fff;
  padding: 5px 10px;
  line-height: 1.6;
  font-weight: normal;
}
#about .article .scedule table th.merge-column {
  background-color: transparent;
  border: none;
}
#about .article .scedule table td {
  color: #3C5E75;
  border: solid 1px #ccc;
  padding: 15px 10px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
}
#about .article .scedule table td:first-of-type {
  background: #3C5E75;
  color: #fff;
  font-size: 1.4rem;
}
#about .article .scedule table td:last-of-type {
  font-weight: bold;
  font-size: 1.8rem;
}
#about .article .scedule table i.rest {
  margin-top: -10px !important;
}
#about .article .scedule p {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}
#about .article .tableBox {
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 20px;
}
#about .article .tableBox::-webkit-scrollbar {
  height: 10px;
}
#about .article .tableBox::-webkit-scrollbar-track {
  margin: 0;
  background: #ccc;
  border-radius: 5px;
}
#about .article .tableBox::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}
#about .access .inner {
  max-width: 100%;
  width: 100%;
  padding: 30px 0 50px;
}
#about .access h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: normal;
  margin-bottom: 20px;
}
#about .access .bl_parking_place {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
#about .access .bl_parking_place span {
  font-weight: normal;
  font-size: 75%;
}
#about .access .bl_parking_service {
  margin-bottom: 1rem;
}
#about .access .bl_parking_info {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}
#about .access .bl_parking_pict {
  padding: 15px 30px 0;
}
#about .access .bl_parking_pict img {
  width: 100%;
  max-width: 500px;
}
#about .access .bl_info {
  padding: 0 30px;
  margin-bottom: 20px;
}
#about .access .bl_info .bl_info_pict {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 500px;
}
#about .access .bl_info .bl_info_map {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}
#about .access .txt {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
#about .access .txt table {
  font-size: 1.4rem;
  line-height: 1.6;
}
#about .access .txt table th {
  font-weight: normal;
  text-align: right;
  vertical-align: top;
}
#about .access .txt table th,
#about .access .txt table td {
  padding: 0px 5px;
}
#about .access .gmap {
  width: 100%;
}
#about .access .btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#about .access .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#about .access .btn a:after {
  content: "see google map";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#about .access .btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #about {
    /*----------------------------------
      .access
    ----------------------------------*/
  }
  #about h1 {
    font-size: 4.8rem;
  }
  #about h1:after {
    font-size: 1.4rem;
  }
  #about .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #about .article h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #about .article .treatment ul li {
    font-size: 2.8rem;
  }
  #about .article .scedule {
    width: 600px;
  }
  #about .article .scedule table {
    width: 100%;
  }
  #about .access .inner {
    max-width: 100%;
    width: 100%;
  }
  #about .access h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  #about .access .bl_parking_place {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #about .access .bl_parking_info {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  #about .access .bl_parking_pict {
    padding: 20px 0 0;
  }
  #about .access .bl_info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  #about .access .bl_info .bl_info_pict {
    width: 50%;
    max-width: 500px;
    margin: 0;
    margin-right: 20px;
  }
  #about .access .bl_info .bl_info_map {
    margin: 0;
    width: 50%;
    max-width: 500px;
  }
  #about .access .txt {
    margin-bottom: 50px;
  }
  #about .access .txt table {
    font-size: 1.6rem;
  }
  #about .access .btn {
    margin-top: 30px;
  }
  #about .access .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #about .access .btn a:after {
    font-size: 1rem;
  }
  #about .access .access .inner {
    max-width: 100%;
    width: 100%;
  }
}
/*----------------------------------
	#treatment
----------------------------------*/
#treatment h1:after {
  content: "Treatment";
}
#treatment .title {
  position: relative;
}
#treatment .title h1 {
  color: #B80A1F;
}
#treatment .title:before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.2;
  filter: blur(1px);
  position: absolute;
  background-image: url(../img/aging_title_bg.jpg);
  background-size: cover;
  background-position: 50% 20%;
}
#treatment .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#treatment .article {
  position: relative;
  background-color: #fff;
}
#treatment .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
}
#treatment .article h2 {
  color: #B80A1F;
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: center;
}
#treatment .article h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#treatment .article h3 a {
  color: #3C5E75;
  text-decoration: none;
}
#treatment .article h3 a:hover {
  text-decoration: underline;
}
#treatment .article h4 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}
#treatment .article h5 {
  font-size: 2rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}
#treatment .article .plan {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
#treatment .article .contents .text {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
#treatment .el_treatment_explain {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
#treatment .el_treatment_note {
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-right: 3%;
}
#treatment .el_price_campaign {
  text-align: center;
}
#treatment .el_price_campaign_txt {
  display: inline-block;
  padding: 0 10px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #B80A1F;
  background: linear-gradient(transparent 75%, #ffdc00 75%);
  margin-bottom: 0.5rem;
}
#treatment .price {
  position: relative;
  margin-bottom: 30px;
}
#treatment .price table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 10px;
  /*
  td:last-of-type {
    font-weight: bold;
    font-size: 1.4rem;
  }
  tr > td:nth-of-type(2) {
    text-align: center;
  }
  */
}
#treatment .price table th, #treatment .price table td {
  border: 1px solid #ccc;
}
#treatment .price table th {
  padding: 7px 7px;
  background-color: #3C5E75;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.2rem;
  white-space: nowrap;
  font-size: 1.4rem;
}
#treatment .price table th.el_campaign_bg {
  background-color: #B80A1F;
}
#treatment .price table td {
  padding: 5px 7px;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
}
#treatment .price table td.el_campaign {
  color: #B80A1F;
  font-size: 1.8rem;
}
#treatment .price table .el_plus {
  font-size: 2.4rem;
  border-left: none;
  border-right: none;
}
#treatment .price table .normal {
  text-decoration: line-through;
}
#treatment .price table .special {
  color: #B80A1F;
}
#treatment .price .hp_mb0 {
  margin-bottom: 0;
}
#treatment .price.removal td:last-of-type {
  font-weight: normal;
}
#treatment .price .tableBox {
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 50px;
}
#treatment .price .tableBox::-webkit-scrollbar {
  height: 10px;
}
#treatment .price .tableBox::-webkit-scrollbar-track {
  margin: 0;
  background: #ccc;
  border-radius: 5px;
}
#treatment .price .tableBox::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}

@media screen and (min-width: 768px) {
  #treatment .article {
    position: relative;
  }
  #treatment .article .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
  }
  #treatment .article p.read {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
  }
  #treatment .article h2 {
    font-size: 4rem;
    margin-bottom: 50px;
    text-align: center;
  }
  #treatment .article h3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  #treatment .article h4 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  #treatment .article h5 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  #treatment .article .plan {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  #treatment .article .contents .text {
    font-size: 1.6rem;
    line-height: 2.2;
  }
  #treatment .el_treatment_explain {
    text-align: center;
    font-size: 1.6rem;
  }
  #treatment .el_price_campaign_txt {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  #treatment .price {
    margin-bottom: 80px;
    /*
    &.removal td:last-of-type {
      font-weight: normal;
      font-size: 1.6rem;
    }
    */
  }
  #treatment .price table {
    width: 95%;
    /*
    td:last-of-type {
      font-size: 1.8rem;
    }
    */
  }
  #treatment .price table th {
    padding: 10px;
    font-size: 1.8rem;
  }
  #treatment .price table td {
    padding: 10px;
    font-size: 1.6rem;
  }
  #treatment .price table td.el_campaign {
    color: #B80A1F;
    font-size: 2rem;
  }
  #treatment .price table .el_plus {
    font-size: 3rem;
  }
}
/*----------------------------------
	#infoList
----------------------------------*/
#infoList h1 {
  font-size: 3rem;
}
#infoList h1:after {
  content: "information list";
  font-size: 1.2rem;
}
#infoList .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#infoList .article {
  background-color: #fff;
}
#infoList .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
}
#infoList .article dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
#infoList .article dd {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
#infoList .container {
  background-color: #fff;
}
#infoList .container ul {
  margin-bottom: 30px;
}
#infoList .container li {
  border-bottom: 1px solid #efefef;
}
#infoList .container .contents a {
  padding: 10px 15px;
  display: block;
  flex-direction: row;
  text-decoration: none;
  color: #555;
}
#infoList .container .contents a:hover {
  background-color: #f9f9f9;
}
#infoList .container .contents time {
  color: #cb9757;
  font-size: 1.4rem;
}
#infoList .container .contents .category {
  color: #999999;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #999999;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}
#infoList .container .contents h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 1.5rem 0 1rem;
}
#infoList .container .btn {
  display: flex;
  justify-content: center;
}
#infoList .container .btn a {
  width: 100%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#infoList .container .btn a:after {
  content: "see all";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#infoList .container .btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #infoList h1 {
    font-size: 4.8rem;
  }
  #infoList h1:after {
    font-size: 1.4rem;
  }
  #infoList .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
  }
  #infoList .article dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  #infoList .article dd {
    line-height: 1.8;
    margin-bottom: 40px;
  }
  #infoList .container {
    max-width: 1200px;
  }
  #infoList .container .contents a {
    padding: 20px 25px 20px;
    display: flex;
    align-items: center;
  }
  #infoList .container .contents a:hover {
    background-color: #f9f9f9;
  }
  #infoList .container .contents .sub {
    margin-right: 30px;
  }
  #infoList .container .contents h3 {
    font-size: 2.1rem;
    margin: 2rem 0 1rem;
  }
  #infoList .container .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
/*----------------------------------
	#info お知らせ詳細
----------------------------------*/
#info .title .inner {
  padding: 40px 0;
}
#info h1 {
  font-size: 3rem;
}
#info h1:after {
  content: "information";
  font-size: 1.2rem;
}
#info .article {
  background-color: #fff;
}
#info .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px;
}
#info .article h2 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.15rem;
  margin-bottom: 15px;
  padding: 0 20px 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#info .article .contents {
  padding: 0 20px;
}
#info .article .contents p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
#info .article .contents p strong {
  font-weight: bold;
}
#info .article .contents figure {
  text-align: center;
}
#info .article .contents .mb_noraml {
  margin-bottom: 2rem;
}
#info .article .contents .emphthis {
  font-weight: bold;
  color: #B80A1F;
}
#info .article .contents .pict {
  margin: 1rem;
  text-align: center;
}
#info .article .contents a {
  color: #3C5E75;
  text-decoration: none;
}
#info .article .contents a:hover {
  color: #cb9757;
  text-decoration: underline;
}
#info .bl_info_two ul {
  text-align: center;
}
#info .bl_info_two li {
  width: 100%;
  margin-bottom: 15px;
}
#info .btn {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
#info .btn a {
  width: 100%;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#info .btn a:after {
  content: "see all";
  display: block;
  font-size: 1rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#info .btn a:hover {
  text-decoration: none;
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #info .title .inner {
    padding: 60px 0;
  }
  #info h1 {
    font-size: 4.8rem;
  }
  #info h1:after {
    font-size: 1.4rem;
  }
  #info .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
  }
  #info .article h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #info .article .contents {
    padding: 0 30px;
  }
  #info .article .contents p {
    font-size: 1.6rem;
  }
  #info .bl_info_two ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #info .bl_info_two li {
    width: 49%;
    margin-bottom: 20px;
  }
  #info .btn {
    margin-top: 50px;
    margin-bottom: 0px;
  }
  #info .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
/* ページナビゲーション
----------------------------------*/
.pagination {
  font-size: 1.4rem;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination span, .pagination a {
  display: block;
  margin: 3px;
  padding: 7px 10px 7px 10px;
  text-decoration: none;
  width: auto;
  color: #fff; /* 通常の文字色 */
  background: #7e9eb4; /* 通常の背景色 */
  border-radius: 50%; /* 角を丸くして円形に */
}
.pagination a:hover {
  background: #3C5E75; /* マウスホバー時の背景色 */
}
.pagination .current {
  background: #3C5E75; /* 現在のページの背景色 */
}
.pagination .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

@media screen and (min-width: 768px) {
  .pagination {
    font-size: 1.6rem;
  }
  .pagination span, .pagination a {
    padding: 10px 14px 10px 14px;
  }
}
/*----------------------------------
	#reserve
----------------------------------*/
#reserve h1 {
  font-size: 3rem;
}
#reserve h1:after {
  content: "reserve";
  font-size: 1.2rem;
}
#reserve .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#reserve .article {
  position: relative;
  background-color: #fff;
}
#reserve .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
}
#reserve .article p.att {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
#reserve .article h2 {
  text-align: center;
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
#reserve .article h2 span {
  display: block;
  font-size: 1.6rem;
}
#reserve .article p.explain {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
#reserve .cancel {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 30px;
  /*バーの太さ*/
  /*バーの背景色*/
  /*バーの色*/
}
#reserve .cancel::-webkit-scrollbar {
  height: 8px;
}
#reserve .cancel::-webkit-scrollbar-track {
  background: #dddddd;
}
#reserve .cancel::-webkit-scrollbar-thumb {
  background: rgb(217, 46, 35);
}
#reserve .cancel table {
  margin: 0 auto;
  border-collapse: collapse;
  border: solid 3px #999;
}
#reserve .cancel table th {
  background: #3C5E75;
  border: solid 1px #999;
  color: #fff;
  padding: 7px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: normal;
  width: 14.2857142857%;
  white-space: nowrap;
}
#reserve .cancel table td {
  border: solid 1px #999;
  padding: 15px 10px;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
}
#reserve .cancel table td span {
  margin-top: 5px;
  font-size: 1.4rem;
  color: rgb(217, 46, 35);
  display: block;
  white-space: nowrap;
}
#reserve .cancel table th.head,
#reserve .cancel table td:first-of-type {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: rgba(60, 94, 117, 0.2);
}
#reserve .attention {
  width: 100%;
  margin: 0 auto 50px;
}
#reserve .attention p.title {
  font-weight: bold;
  font-size: 1.4rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  padding-left: 5px;
  margin-bottom: 10px;
}
#reserve .attention dl {
  line-height: 1.6;
  font-size: 1.2rem;
  padding: 0 5px;
}
#reserve .attention dl dt {
  float: left;
}
#reserve .attention dl dd {
  margin-left: 2.8rem;
}
#reserve p.agree {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}
#reserve .btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
#reserve .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
  background-color: rgb(217, 46, 35);
}
#reserve .btn a:after {
  content: "reserve";
  display: block;
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#reserve .btn a:hover {
  background-color: rgba(217, 46, 35, 0.8);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #reserve h1 {
    font-size: 4.8rem;
  }
  #reserve h1:after {
    font-size: 1.4rem;
  }
  #reserve .article {
    position: relative;
  }
  #reserve .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 30px;
  }
  #reserve .article p.att {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  #reserve .article h2 {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 30px;
  }
  #reserve .article h2 span {
    display: block;
    font-size: 1.8rem;
  }
  #reserve .article p.explain {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  #reserve .cancel table {
    width: 100%;
  }
  #reserve .cancel table th {
    padding: 10px 10px;
    line-height: 1.6;
  }
  #reserve .cancel table td {
    padding: 15px 10px;
    font-size: 1.8rem;
  }
  #reserve .cancel table td span {
    margin-top: 5px;
    font-size: 1.4rem;
    color: rgb(217, 46, 35);
    display: block;
  }
  #reserve .attention {
    width: 100%;
  }
  #reserve .attention p.title {
    font-weight: bold;
    font-size: 1.6rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    padding-left: 5px;
    margin-bottom: 10px;
  }
  #reserve .attention dl {
    line-height: 1.6;
    font-size: 1.4rem;
    padding: 0 5px;
  }
  #reserve .attention dl dt {
    float: left;
  }
  #reserve .attention dl dd {
    margin-left: 3.5rem;
  }
  #reserve p.agree {
    font-size: 1.8rem;
  }
  #reserve .btn {
    margin-top: 50px;
  }
  #reserve .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #reserve .btn a:after {
    font-size: 1rem;
  }
}
/*----------------------------------
	#privacy
----------------------------------*/
#privacy h1 {
  font-size: 3rem;
}
#privacy h1:after {
  content: "privacy policy";
  font-size: 1.2rem;
}
#privacy .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#privacy .article {
  background-color: #fff;
}
#privacy .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
}
#privacy .article dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
#privacy .article dd {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  #privacy h1 {
    font-size: 4.8rem;
  }
  #privacy h1:after {
    font-size: 1.4rem;
  }
  #privacy .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 30px;
  }
  #privacy .article dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  #privacy .article dd {
    line-height: 1.8;
    margin-bottom: 40px;
  }
}
#special img {
  -webkit-backface-visibility: hidden;
}

/*----------------------------------
	.bl_hero
----------------------------------*/
#special .bl_hero {
  margin-top: 60px;
}
#special .bl_hero video {
  max-width: 100%;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  #special .bl_hero {
    margin-top: 75px;
  }
}
/*----------------------------------
	.bl_specialTitle
----------------------------------*/
.bl_specialTitle {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 15px 10px;
  font-weight: normal;
}
.bl_specialTitle .bl_specialTitle_mark {
  display: flex;
  justify-content: center;
  height: 50px;
  width: 50px;
  text-align: center;
  background-color: #ffff00;
  border-radius: 50%;
  line-height: 50px;
  margin-right: 5px;
  font-size: 1.6rem;
}
.bl_specialTitle .bl_specialTitle_read {
  font-size: 1.2rem;
  border-bottom: 1px solid #333;
  padding: 0 5px 5px 5px;
  letter-spacing: 0.1rem;
}
.bl_specialTitle .bl_specialTitle_catch {
  font-size: 4vw;
  padding: 7px 5px 7px 5px;
  letter-spacing: 0.1rem;
}
.bl_specialTitle .bl_specialTitle_offer {
  font-size: 1rem;
  text-align: right;
  padding-right: 10px;
}

@media screen and (min-width: 768px) {
  .bl_specialTitle {
    padding: 30px 20px;
  }
  .bl_specialTitle .bl_specialTitle_mark {
    height: 95px;
    width: 95px;
    line-height: 95px;
    margin-right: 10px;
    font-size: 3rem;
    letter-spacing: 0.5rem;
    padding-left: 10px;
  }
  .bl_specialTitle .bl_specialTitle_read {
    font-size: 1.4rem;
    padding: 0 10px 7px 10px;
    letter-spacing: 0.5rem;
  }
  .bl_specialTitle .bl_specialTitle_catch {
    font-size: 4vw;
    padding: 10px 5px 10px 10px;
    letter-spacing: 0.1rem;
  }
  .bl_specialTitle .bl_specialTitle_offer {
    font-size: 1.4rem;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .bl_specialTitle .bl_specialTitle_catch {
    font-size: 4.2rem;
  }
}
/*----------------------------------
	.bl_catch
----------------------------------*/
.bl_catch {
  background-color: #fff;
  margin-bottom: 30px;
}
.bl_catch .bl_catch_text {
  text-align: center;
  padding: 15px 0;
}
.bl_catch .bl_catch_text_title {
  font-size: 4.2666666667vw;
  letter-spacing: 0.05rem;
  color: #3C5E75;
  line-height: 1.5;
  margin-bottom: 15px;
}
.bl_catch .bl_catch_text_title span {
  color: #e700a6;
}
.bl_catch .bl_catch_text_english {
  font-size: 1.6rem;
  color: #585858;
}
.bl_catch .bl_catch_pict img {
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .bl_catch .bl_catch_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bl_catch .bl_catch_text {
    width: 55%;
    padding: 0;
  }
  .bl_catch .bl_catch_text_title {
    font-size: 2.4vw;
    margin-bottom: 30px;
  }
  .bl_catch .bl_catch_text_english {
    font-size: 2.1333333333vw;
  }
  .bl_catch .bl_catch_pict {
    width: 45%;
  }
}
@media screen and (min-width: 1200px) {
  .bl_catch .bl_catch_text_title {
    font-size: 3rem;
  }
  .bl_catch .bl_catch_text_english {
    font-size: 2.4rem;
  }
}
/*----------------------------------
	common
----------------------------------*/
.el_article {
  background-color: #fff;
  margin-bottom: 30px;
}

.el_article_inner {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

#special h2 {
  color: #3C5E75;
  text-align: center;
  font-size: 5.3333333333vw;
  line-height: 1.4;
  font-weight: normal;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
#special h2 span {
  font-size: 4.2666666667vw;
}
#special h2 img {
  width: 120px;
  height: auto;
  vertical-align: middle;
  padding-bottom: 10px;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #special h2 {
    font-size: 3.6rem;
    padding-bottom: 15px;
    margin-bottom: 40px;
  }
  #special h2 span {
    font-size: 2.8rem;
  }
  #special h2 img {
    padding-bottom: 0;
    margin-right: 10px;
    display: inline;
  }
}
/*----------------------------------
	.bl_select
----------------------------------*/
.bl_select {
  padding: 30px 0;
}
.bl_select h3 {
  color: #3C5E75;
  text-align: center;
  font-size: 4.8vw;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 30px;
}
.bl_select .bl_select_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.bl_select .bl_select_pict figure {
  max-width: 400px;
  margin: 0 auto;
}
.bl_select .bl_select_pict figure:first-child {
  margin-bottom: 20px;
}

.bl_select_bg {
  background-image: url(../../special/img/select_bg_img.jpg);
  background-size: cover;
  background-position: center;
  height: 300px;
}

.bl_select_second {
  padding: 20px 0 50px;
}
.bl_select_second h3 {
  color: #3C5E75;
  text-align: center;
  font-size: 4.8vw;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 20px;
}
.bl_select_second h4 {
  color: #3C5E75;
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 20px;
}
.bl_select_second .bl_select_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.bl_select_second .bl_select_policy {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.bl_select_second .bl_select_policy ul {
  border: 1px solid #000;
  padding: 15px 20px;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: bold;
}
.bl_select_second .bl_select_policy li {
  text-indent: -2.6rem;
  padding-left: 2.6rem;
}
.bl_select_second .bl_select_exampleTitle {
  text-align: center;
  margin-bottom: 30px;
}
.bl_select_second .bl_select_exampleTitle .bl_select_exampleTitle_inner {
  display: inline-block;
  margin: 0 auto;
  border: 2px solid #808080;
  padding: 2px;
}
.bl_select_second .bl_select_exampleTitle div {
  border: 1px solid #808080;
  padding: 10px 40px;
  font-size: 1.8rem;
}
.bl_select_second .bl_select_exampleList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bl_select_second .bl_select_exampleList ul li {
  font-size: 1.6rem;
  padding-left: 23px;
  background-image: url(../../special/img/select_list_mark.png);
  background-size: 18px auto;
  background-position: 0 2px;
  line-height: 1.4;
  padding-bottom: 10px;
}
.bl_select_second .bl_select_exampleList ul li span {
  font-size: 1.4rem;
}
.bl_select_second .bl_select_exampleList ul li a {
  color: #227dbb;
  text-decoration: none;
  border-bottom: 1px solid #227dbb;
}

@media screen and (min-width: 768px) {
  .bl_select {
    padding: 60px 0;
  }
  .bl_select h3 {
    font-size: 2.4rem;
  }
  .bl_select .bl_select_txt {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 50px;
  }
  .bl_select .bl_select_pict {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .bl_select .bl_select_pict figure {
    max-width: 450px;
    margin: 0;
  }
  .bl_select .bl_select_pict figure:first-child {
    margin-right: 50px;
  }
  .bl_select .bl_select_pict img:first-child {
    margin-bottom: 0;
  }
  .bl_select_bg {
    height: 450px;
  }
  .bl_select_second {
    padding: 30px 0 80px;
  }
  .bl_select_second h3 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  .bl_select_second h4 {
    font-size: 2.1rem;
  }
  .bl_select_second .bl_select_txt {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 50px;
  }
  .bl_select_second {
    padding: 30px 0 80px;
  }
  .bl_select_second h3 {
    font-size: 3rem;
  }
  .bl_select_second h4 {
    font-size: 2.1rem;
  }
  .bl_select_second .bl_select_txt {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 50px;
  }
  .bl_select_second .bl_select_policy {
    margin-bottom: 50px;
  }
  .bl_select_second .bl_select_policy ul {
    padding: 20px 50px;
    font-size: 1.8rem;
    line-height: 2;
  }
  .bl_select_second .bl_select_exampleTitle {
    margin-bottom: 30px;
  }
  .bl_select_second .bl_select_exampleTitle .bl_select_exampleTitle_inner {
    border: 2px solid #808080;
    padding: 3px;
  }
  .bl_select_second .bl_select_exampleTitle div {
    padding: 10px 100px;
    font-size: 2.1rem;
  }
  .bl_select_second .bl_select_exampleList ul {
    line-height: 2;
  }
  .bl_select_second .bl_select_exampleList ul li {
    font-size: 2.1rem;
    padding-left: 35px;
    background-size: 28px auto;
    background-position: 0 7px;
    line-height: 2;
    padding-bottom: 0px;
  }
  .bl_select_second .bl_select_exampleList ul li span {
    font-size: 1.8rem;
  }
}
/*----------------------------------
	.bl_member
----------------------------------*/
.bl_member {
  padding: 30px 0;
  /* .bl_member_doctor
  ----------------------------------*/
  /* .bl_member_director
  ----------------------------------*/
  /* .bl_member_list
  ----------------------------------*/
}
.bl_member h2 {
  color: #3C5E75;
  text-align: center;
  font-size: 5.6vw;
  font-weight: normal;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.bl_member .bl_member_doctor {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}
.bl_member .bl_member_doctor_english {
  color: #3C5E75;
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}
.bl_member .bl_member_doctor_position {
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
}
.bl_member .bl_member_doctor_name {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}
.bl_member .bl_member_doctor_intro {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.bl_member .bl_member_doctor_pict {
  text-align: center;
}
.bl_member .bl_member_director {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
}
.bl_member .bl_member_director_english {
  color: #3C5E75;
  font-size: 2.4rem;
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}
.bl_member .bl_member_director_position {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
}
.bl_member .bl_member_director_name {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}
.bl_member .bl_member_director_intro {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.bl_member .bl_member_director_pict {
  text-align: center;
}
.bl_member .bl_member_director_pict img {
  max-width: 60%;
}
.bl_member .bl_member_list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bl_member .bl_member_list li {
  width: 49%;
  margin-bottom: 20px;
}
.bl_member .bl_member_list li img {
  margin-bottom: 5px;
}
.bl_member .bl_member_list .bl_member_list_english {
  color: #3C5E75;
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 7px;
}
.bl_member .bl_member_list .bl_member_list_positon {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .bl_member {
    padding: 60px 0;
    /* .bl_member_doctor
    ----------------------------------*/
    /* .bl_member_director
    ----------------------------------*/
    /* .bl_member_list
    ----------------------------------*/
  }
  .bl_member h2 {
    font-size: 3.6rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .bl_member .bl_member_doctor {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .bl_member .bl_member_doctor_txt {
    width: 55%;
    padding-right: 30px;
  }
  .bl_member .bl_member_doctor_english {
    font-size: 3.6rem;
    margin-bottom: 20px;
    text-align: left;
  }
  .bl_member .bl_member_doctor_position {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: left;
  }
  .bl_member .bl_member_doctor_name {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: left;
  }
  .bl_member .bl_member_doctor_intro {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .bl_member .bl_member_doctor_pict {
    width: 45%;
    max-width: 500px;
    text-align: right;
  }
  .bl_member .bl_member_director {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .bl_member .bl_member_director_txt {
    width: 70%;
    padding-left: 30px;
  }
  .bl_member .bl_member_director_english {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: left;
  }
  .bl_member .bl_member_director_position {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: left;
  }
  .bl_member .bl_member_director_name {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
  }
  .bl_member .bl_member_director_intro {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 0;
  }
  .bl_member .bl_member_director_pict {
    width: 30%;
    text-align: left;
  }
  .bl_member .bl_member_director_pict img {
    max-width: 100%;
  }
  .bl_member .bl_member_list ul {
    justify-content: flex-start;
  }
  .bl_member .bl_member_list li {
    width: 32%;
    margin-bottom: 30px;
    margin-right: 2%;
  }
  .bl_member .bl_member_list li img {
    margin-bottom: 5px;
  }
  .bl_member .bl_member_list li:nth-of-type(3n) {
    margin-right: 0;
  }
  .bl_member .bl_member_list .bl_member_list_english {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .bl_member .bl_member_list .bl_member_list_positon {
    font-size: 1.8rem;
  }
}
/*----------------------------------
	.bl_treatment
----------------------------------*/
.bl_treatment {
  padding: 30px 0;
}
.bl_treatment h3 {
  color: #B80A1F;
  text-align: center;
  font-size: 4vw;
  line-height: 1.6;
  font-weight: normal;
  margin-bottom: 20px;
}
.bl_treatment .bl_treatment_title {
  text-align: center;
  margin-bottom: 10px;
}
.bl_treatment .bl_treatment_title .bl_treatment_title_ruby {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.bl_treatment .bl_treatment_title .bl_treatment_title_main {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 2.2rem;
  padding: 0 10px 3px;
  background-image: repeating-linear-gradient(-45deg, #fff631, #fff631 3px, #dcd42a 3px, #dcd42a 5px);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: bottom;
}
.bl_treatment .bl_treatment_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.bl_treatment .bl_treatment_txt span {
  color: #B80A1F;
}
.bl_treatment .bl_treatment_txt .hp_tac {
  color: #333;
  font-size: 1.4rem;
}
.bl_treatment h4 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  text-align: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 7px 5px;
  margin-bottom: 15px;
}
.bl_treatment .bl_treatment_pict {
  margin-bottom: 15px;
}
.bl_treatment .bl_treatment_pict img:not(:last-of-type) {
  margin-bottom: 10px;
}
.bl_treatment .bl_treatment_pict_txt {
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
  font-size: 1.4rem;
}
.bl_treatment .bl_treatment_pict_txt a {
  color: #227dbb;
}
.bl_treatment .bl_treatment_pict_one .bl_treatment_pict_inner {
  text-align: center;
}
.bl_treatment .bl_treatment_pict_one img {
  width: 100%;
  max-width: 400px;
}
.bl_treatment .hp_mb_0 {
  margin-bottom: 0;
}
.bl_treatment .hp_mb_small {
  margin-bottom: 20px;
}
.bl_treatment .hp_mb_midium {
  margin-bottom: 40px;
}
.bl_treatment .el_read_txt {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .bl_treatment {
    padding: 60px 0;
  }
  .bl_treatment h3 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .bl_treatment .bl_treatment_title {
    margin-bottom: 20px;
  }
  .bl_treatment .bl_treatment_title .bl_treatment_title_ruby {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .bl_treatment .bl_treatment_title .bl_treatment_title_main {
    margin-bottom: 30px;
    font-size: 3.6rem;
    padding: 0 20px 5px;
  }
  .bl_treatment .bl_treatment_txt {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }
  .bl_treatment .bl_treatment_txt .hp_tac {
    font-size: 1.6rem;
  }
  .bl_treatment h4 {
    font-size: 2.1rem;
    padding: 10px 7px;
    margin-bottom: 30px;
  }
  .bl_treatment .bl_treatment_pict {
    margin-bottom: 30px;
  }
  .bl_treatment .bl_treatment_pict .bl_treatment_pict_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bl_treatment .bl_treatment_pict img {
    width: 49%;
  }
  .bl_treatment .bl_treatment_pict img:not(:last-of-type) {
    margin-bottom: 0;
  }
  .bl_treatment .bl_treatment_pict_txt {
    font-size: 1.8rem;
  }
  .bl_treatment .bl_treatment_pict_one .bl_treatment_pict_inner {
    text-align: center;
  }
  .bl_treatment .bl_treatment_pict_one img {
    max-width: 600px;
  }
  .bl_treatment .hp_mb_0 {
    margin-bottom: 0;
  }
  .bl_treatment .hp_mb_small {
    margin-bottom: 30px;
  }
  .bl_treatment .hp_mb_midium {
    margin-bottom: 60px;
  }
  .bl_treatment .el_read_txt {
    margin-top: 50px;
    font-size: 1.8rem;
  }
}
/*----------------------------------
	.baby_table
----------------------------------*/
.baby_table table {
  margin: 0 auto;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.baby_table table tr {
  border-bottom: 1px solid #b3b3b3;
}
.baby_table table th {
  background-color: #3C5E75;
  color: #fff;
  padding: 10px;
  font-weight: normal;
  font-size: 1.6rem;
}
.baby_table table td {
  padding: 10px 10px;
  background-color: #f6f6f6;
  line-height: 1.4;
  font-size: 1.4rem;
}
.baby_table table td span {
  color: #B80A1F;
}
.baby_table table td:nth-of-type(2) {
  color: #3C5E75;
  padding: 10px 0;
}
.baby_table table td:last-of-type {
  color: #B80A1F;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .baby_table table {
    margin-bottom: 40px;
  }
  .baby_table table th {
    font-size: 1.8rem;
  }
  .baby_table table td {
    padding: 15px 30px;
    font-size: 1.6rem;
  }
  .baby_table table td:nth-of-type(2) {
    padding: 15px 0;
  }
}
/*----------------------------------
	.bl_voice
----------------------------------*/
.bl_voice {
  padding: 30px 0;
}

.bl_voice_box {
  border: 1px solid #3C5E75;
}

.bl_voice_box:not(:last-of-type) {
  margin-bottom: 20px;
}

.bl_voice_title {
  background-color: #3C5E75;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
}
.bl_voice_title img {
  width: 45px;
  height: auto;
  margin-right: 10px;
}
.bl_voice_title h3 {
  font-size: 4.8vw;
  color: #fff;
  font-weight: normal;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.2rem;
}
.bl_voice_title span {
  font-size: 3.7333333333vw;
}

.bl_voice_box_inner {
  padding: 15px;
}

.bl_voice_pict img {
  margin-bottom: 10px;
}

.bl_voice_txt {
  font-size: 1.6rem;
  line-height: 1.8;
}
.bl_voice_txt em {
  font-weight: bold;
  font-style: normal;
}
.bl_voice_txt span {
  color: #B80A1F;
}

@media screen and (min-width: 768px) {
  .bl_voice {
    padding: 60px 0;
  }
  .bl_voice_box:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .bl_voice_title {
    padding: 10px;
  }
  .bl_voice_title img {
    width: 66px;
  }
  .bl_voice_title h3 {
    font-size: 2.8rem;
    letter-spacing: 0.5rem;
  }
  .bl_voice_title span {
    font-size: 1.8rem;
  }
  .bl_voice_box_inner {
    padding: 25px;
  }
  .bl_voice_pict {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .bl_voice_pict img {
    width: 49%;
    height: auto;
  }
  .bl_voice_txt {
    font-size: 1.8rem;
  }
}
/*----------------------------------
	.bl_news
----------------------------------*/
.bl_news {
  padding: 30px 0;
}

.bl_news_inner li {
  margin-bottom: 10px;
}
.bl_news_inner li a {
  display: block;
  border: 1px solid #ccc;
  padding: 7px;
  text-decoration: none;
  transition: 0.5s;
}
.bl_news_inner li a:hover {
  background-color: rgba(60, 94, 117, 0.1);
}
.bl_news_inner .bl_news_box {
  display: flex;
  align-items: center;
}
.bl_news_inner .bl_news_box .bl_news_pict {
  width: 120px;
  height: auto;
  margin-right: 10px;
}
.bl_news_inner .bl_news_box .bl_news_txt {
  width: 80%;
}
.bl_news_inner .bl_news_box .bl_news_txt .bl_news_title {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000;
  margin-bottom: 10px;
}
.bl_news_inner .bl_news_box .bl_news_txt .bl_news_reprint {
  font-size: 1.2rem;
  color: #4d4d4d;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .bl_news {
    padding: 60px 0;
  }
  .bl_news_inner ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .bl_news_inner li {
    width: 49%;
    margin-bottom: 20px;
  }
  .bl_news_inner li a {
    padding: 10px;
  }
  .bl_news_inner .bl_news_box {
    display: flex;
    align-items: center;
  }
  .bl_news_inner .bl_news_box .bl_news_pict {
    margin-right: 15px;
  }
  .bl_news_inner .bl_news_box .bl_news_txt .bl_news_title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .bl_news_inner .bl_news_box .bl_news_txt .bl_news_reprint {
    font-size: 1.2rem;
  }
}
/*----------------------------------
	.bl_movie
----------------------------------*/
.bl_movie {
  padding: 30px 0;
}

.bl_movie_box {
  border: 1px solid #3C5E75;
}

.bl_movie_box:not(:last-of-type) {
  margin-bottom: 20px;
}

.bl_movie_title {
  background-color: #3C5E75;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  font-size: 1.6rem;
  line-height: 1.4;
}

.bl_movie_pict {
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .bl_movie {
    padding: 60px 0;
  }
  .bl_movie_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bl_movie_box {
    width: 49%;
  }
  .bl_movie_box:first-of-type {
    margin-right: 2%;
  }
  .bl_movie_box:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .bl_movie_title {
    padding: 10px;
    font-size: 1.8rem;
  }
}
/*----------------------------------
	.bl_doctor
----------------------------------*/
.bl_doctor {
  padding: 30px 0;
}

.bl_doctor_pict {
  text-align: center;
  margin-bottom: 15px;
}
.bl_doctor_pict img {
  max-width: 300px;
  margin-bottom: 10px;
  text-align: center;
}

.bl_doctor_team {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.bl_doctor_name {
  font-size: 2.4rem;
}

.bl_doctor_intro {
  border-top: 1px dashed #ccc;
}

.bl_doctor_career, .bl_doctor_association {
  font-size: 1.6rem;
  line-height: 1.6;
  border-bottom: 1px dashed #ccc;
  padding: 10px 10px;
}

.bl_doctor_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 10px 10px;
}

@media screen and (min-width: 768px) {
  .bl_doctor {
    padding: 60px 0;
  }
  .bl_doctor_inner {
    padding: 0 30px;
  }
  .bl_doctor_box {
    display: flex;
    justify-content: space-between;
  }
  .bl_doctor_team {
    font-size: 1.4rem;
  }
  .bl_doctor_name {
    font-size: 2.8rem;
  }
  .bl_doctor_intro {
    border-top: none;
    width: calc(100% - 330px);
  }
  .bl_doctor_career, .bl_doctor_association {
    font-size: 2rem;
    line-height: 1.8;
    padding: 10px 20px;
  }
  .bl_doctor_txt {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 10px 20px;
  }
}
/*----------------------------------
	.bl_foot_message
----------------------------------*/
.bl_foot_message {
  padding: 20px 0 10px;
  text-align: center;
  font-size: 3.4666666667vw;
  line-height: 1.6;
}
.bl_foot_message span {
  font-size: 6.4vw;
  color: #B80A1F;
}

@media screen and (min-width: 768px) {
  .bl_foot_message {
    padding: 30px 0 10px;
    font-size: 2.6rem;
  }
  .bl_foot_message span {
    font-size: 4.6rem;
  }
}
/*----------------------------------
	#beauty
----------------------------------*/
#beauty {
  /* ダーマペン4関連
  ----------------------------------*/
  /* ヴァンパイアフェイシャル関連
  ----------------------------------*/
  /*----------------------------------
  	.access
  ----------------------------------*/
}
#beauty .title .inner {
  display: block;
}
#beauty h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.3;
}
#beauty .el_h1Title_eng {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 2rem;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.5rem;
}
#beauty .article:not(:last-of-type) {
  margin-bottom: 20px;
}
#beauty .article {
  background-color: #fff;
}
#beauty .article .inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
}
#beauty .article h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.25rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#beauty .article.access h2 {
  padding-bottom: 0;
  border-bottom: none;
}
#beauty .hp_bgNone {
  background-color: transparent;
}
#beauty .el_pict_top {
  margin-bottom: 3rem;
}
#beauty .el_catch {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.8;
}
#beauty .el_catch strong {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}
#beauty .el_title {
  text-align: center;
}
#beauty .el_title .el_title_head {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 15px;
  letter-spacing: 0.2rem;
  border-bottom: none;
}
#beauty .el_title .el_title_head span {
  font-size: 1.4rem;
  display: block;
}
#beauty .el_title .el_title_eng {
  font-size: 1.2rem;
  color: #7f7f7f;
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
#beauty .el_title_head_sub {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 15px;
  letter-spacing: 0.2rem;
}
#beauty .bl_common_list {
  display: flex;
  justify-content: center;
}
#beauty .bl_common_list ul {
  font-size: 1.6rem;
  padding-left: 20px;
  display: inline-block;
  list-style: disc;
  line-height: 1.8;
}
#beauty .bl_common_list li {
  text-align: left;
}
#beauty .bl_common_list a {
  color: #3C5E75;
  text-decoration: none;
}
#beauty .bl_common_list a:hover {
  text-decoration: underline;
}
#beauty .bl_important_list {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
#beauty .bl_important_list ul {
  font-size: 1.6rem;
  padding-left: 20px;
  display: inline-block;
  list-style: disc;
  line-height: 1.6;
}
#beauty .bl_important_list li {
  text-align: left;
  margin-bottom: 10px;
}
#beauty .bl_important_list li span {
  font-size: 1.4rem;
}
#beauty .bl_important_note_catch {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
#beauty .bl_important_note_tit {
  text-align: center;
  font-size: 1.4rem;
  margin: 20px 0 10px;
}
#beauty .bl_important_note {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
#beauty .bl_important_note ul {
  font-size: 1.4rem;
  padding-left: 20px;
  display: inline-block;
  list-style: disc;
  line-height: 1.8;
}
#beauty .bl_important_note li {
  text-align: left;
}
#beauty .el_note {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 2rem;
}
#beauty .el_text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
#beauty .el_pict_one {
  margin: 0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#beauty .el_pict_one figure {
  width: 100%;
  max-width: 600px;
  text-align: center;
}
#beauty .el_pict_two {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#beauty .el_pict_two figure {
  width: 100%;
  max-width: 400px;
}
#beauty .el_pict_two figure:first-of-type {
  margin-right: 10px;
}
#beauty .el_price_contact {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
#beauty .el_price_table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  margin: 0 auto;
}
#beauty .el_price_table th {
  border: 1px solid #85a1b4;
  background-color: #3C5E75;
  color: #fff;
  font-size: 1.4rem;
  padding: 7px;
  line-height: 1.4;
}
#beauty .el_price_table td {
  text-align: center;
  border: 1px solid #3C5E75;
  padding: 7px 5px;
  font-size: 1.4rem;
  line-height: 1.3;
  background-color: #fff;
}
#beauty .el_price_table span {
  display: block;
}
#beauty .el_price_table .normal {
  text-decoration: line-through;
}
#beauty .el_price_table .special {
  font-size: 2.1rem;
  font-weight: bold;
  color: #B80A1F;
}
#beauty .el_price_table .el_price_table_campaign {
  color: #B80A1F;
  font-weight: bold;
  font-size: 1.4rem;
}
#beauty .el_price_note {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 2rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
}
#beauty .bl_feature {
  display: flex;
  justify-content: center;
  align-items: center;
}
#beauty .bl_feature_illust {
  margin-right: 15px;
  width: 23%;
}
#beauty .bl_feature_illust img {
  width: 100%;
  max-width: 110px;
}
#beauty .bl_feature_text {
  line-height: 1.8;
  font-size: 1.4rem;
}
#beauty .bl_feature_text strong {
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  color: #cb0000;
}
@media screen and (min-width: 768px) {
  #beauty .bl_feature_illust {
    margin-right: 30px;
    width: auto;
  }
  #beauty .bl_feature_illust img {
    max-width: 180px;
  }
  #beauty .bl_feature_text {
    font-size: 2rem;
  }
  #beauty .bl_feature_text strong {
    font-size: 3.4rem;
  }
}
#beauty .el_card_two {
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#beauty .el_card_two .el_card_pict {
  width: 100%;
  margin-bottom: 20px;
}
#beauty .el_card_two .el_card_text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #beauty .el_card_two {
    margin: 0 0 50px;
    flex-direction: row;
  }
  #beauty .el_card_two .el_card_pict {
    width: 300px;
    margin-bottom: 0px;
    margin-right: 30px;
  }
  #beauty .el_card_two .el_card_pict img {
    width: 400px;
  }
  #beauty .el_card_two .el_card_text {
    width: calc(100% - 300px);
    font-size: 1.8rem;
  }
}
#beauty .bl_more {
  text-align: center;
  line-height: 1.8;
}
#beauty .bl_more dt {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
#beauty .bl_more dd {
  font-size: 1.4rem;
}
#beauty .bl_more dd:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #beauty .bl_more dt {
    font-size: 2.4rem;
  }
  #beauty .bl_more dd {
    font-size: 1.6rem;
  }
  #beauty .bl_more dd:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
#beauty .vampire .el_catch {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.8;
}
#beauty .vampire .el_catch strong {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  #beauty .vampire .el_catch {
    font-size: 2.1rem;
  }
  #beauty .vampire .el_catch strong {
    font-size: 3rem;
  }
}
#beauty .bl_gallery {
  text-align: center;
}
#beauty .bl_gallery_txt {
  background-color: #000;
  color: #fff;
  padding: 15px;
  display: inline-block;
  margin-bottom: 0 auto;
}
#beauty .bl_flow_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#beauty .bl_flow_reverse {
  flex-direction: row-reverse;
}
#beauty .bl_flow_pict {
  width: 120px;
  height: auto;
}
#beauty .bl_flow_pict img {
  border-radius: 50%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
#beauty .bl_flow_text {
  width: calc(100% - 130px);
  font-size: 1.6rem;
  line-height: 1.6;
  margin-left: 10px;
  text-indent: -2rem;
  padding-left: 2rem;
  background-color: #000;
  color: #fff;
  padding: 10px 10px 10px 35px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
#beauty .bl_flow_reverse .bl_flow_text {
  margin-right: 10px;
}
#beauty .bl_flow_note {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #beauty .bl_flow_note {
    font-size: 1.8rem;
    margin-top: 50px;
  }
}
#beauty .hp_mb_middle {
  margin-bottom: 30px;
}
#beauty .bl_priceVamp {
  margin: 0 auto;
}
#beauty .bl_priceVamp_title {
  background-color: #000;
  color: #fff;
  padding: 15px 10px 10px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
#beauty .bl_priceVamp_campaign {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
#beauty .bl_priceVamp_name {
  font-size: 2.3rem;
  line-height: 1.4;
}
#beauty .bl_priceVamp_name span {
  display: block;
  font-size: 1.8rem;
}
#beauty .bl_priceVamp_box_wrap {
  background-color: #B80A1F;
  background-image: radial-gradient(rgba(0, 0, 0, 0.7) 10%, transparent 10%);
  background-size: 10px 10px;
  background-repeat: repeat;
  color: #fff;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
#beauty .bl_priceVamp_box_inner {
  display: grid;
  row-gap: 20px;
  margin-bottom: 20px;
  justify-items: center;
  text-align: center;
}
#beauty .bl_priceVamp_box {
  width: 100%;
}
#beauty .bl_priceVamp_box_times {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  background-color: #000;
  padding: 5px;
}
#beauty .bl_priceVamp_box_normal {
  font-size: 1.8rem;
}
#beauty .bl_priceVamp_box_normal span {
  font-size: 3rem;
  text-decoration: line-through;
}
#beauty .bl_priceVamp_box_arrow {
  padding: 10px 0;
}
#beauty .bl_priceVamp_box_special {
  font-size: 5rem;
  font-weight: bold;
  color: yellow;
  white-space: nowrap;
}
#beauty .bl_priceVamp_box_special span {
  font-size: 2.4rem;
}
#beauty .bl_priceVamp_note {
  background-color: #000;
  padding: 10px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
}
#beauty .access .inner {
  max-width: 100%;
  width: 100%;
  padding: 30px 0 50px;
}
#beauty .access .bl_info {
  padding: 0 30px;
  margin-bottom: 20px;
}
#beauty .access .bl_info .bl_info_pict {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 500px;
}
#beauty .access .bl_info .bl_info_map {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}
#beauty .access .txt {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#beauty .access .txt table {
  font-size: 1.4rem;
  line-height: 1.6;
}
#beauty .access .txt table th {
  font-weight: normal;
  text-align: right;
  vertical-align: top;
}
#beauty .access .txt table th, #beauty .access .txt table td {
  padding: 0px 5px;
}
#beauty .access .gmap {
  width: 100%;
}
#beauty .access .btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#beauty .access .btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid #f5dcd2;
  transition: all 0.5s;
}
#beauty .access .btn a:after {
  content: "see google map";
  display: block;
  font-size: 0.8rem;
  color: #cb9757;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
#beauty .access .btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  #beauty {
    /* ヴァンパイアフェイシャル関連
    ----------------------------------*/
    /*----------------------------------
      .access
    ----------------------------------*/
  }
  #beauty h1 {
    font-size: 4.8rem;
  }
  #beauty .el_h1Title_eng {
    font-size: 1.4rem;
  }
  #beauty .article .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
  }
  #beauty .article h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #beauty .el_catch {
    font-size: 2.6rem;
  }
  #beauty .el_catch strong {
    font-size: 3rem;
  }
  #beauty .el_title {
    text-align: center;
  }
  #beauty .el_title .el_title_head {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  #beauty .el_title .el_title_head span {
    font-size: 2rem;
  }
  #beauty .el_title .el_title_eng {
    font-size: 1.8rem;
  }
  #beauty .el_title_head_sub {
    font-size: 2.1rem;
    margin-bottom: 15px;
  }
  #beauty .bl_common_list ul {
    font-size: 2rem;
  }
  #beauty .bl_important_list {
    max-width: 600px;
  }
  #beauty .bl_important_list ul {
    font-size: 2rem;
  }
  #beauty .bl_important_list li span {
    font-size: 1.6rem;
  }
  #beauty .bl_important_note_catch {
    font-size: 1.8rem;
  }
  #beauty .bl_important_note_tit {
    font-size: 1.6rem;
  }
  #beauty .bl_important_note {
    max-width: 600px;
  }
  #beauty .bl_important_note ul {
    font-size: 1.6rem;
  }
  #beauty .bl_important_note li {
    text-align: left;
  }
  #beauty .el_note {
    font-size: 1.6rem;
  }
  #beauty .el_text {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  #beauty .el_pict_one {
    margin: 0 auto;
    margin-bottom: 50px;
  }
  #beauty .el_pict_two {
    margin: 0 auto 30px;
  }
  #beauty .el_pict_two figure:first-of-type {
    margin-right: 20px;
  }
  #beauty .el_price_contact {
    font-size: 2.4rem;
  }
  #beauty .el_price_table th {
    font-size: 1.8rem;
    padding: 10px;
  }
  #beauty .el_price_table td {
    font-size: 1.6rem;
    padding: 10px;
  }
  #beauty .el_price_table .special {
    font-size: 2.4rem;
  }
  #beauty .el_price_table .el_price_table_campaign {
    font-size: 1.8rem;
  }
  #beauty .el_price_note {
    font-size: 1.6rem;
  }
  #beauty .bl_gallery {
    text-align: center;
  }
  #beauty .bl_flow_wrap {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #beauty .bl_flow_pict {
    width: 200px;
    height: auto;
  }
  #beauty .bl_flow_text {
    width: calc(100% - 220px);
    font-size: 2rem;
    margin-left: 20px;
    padding: 20px 20px 20px 40px;
    text-align: center;
  }
  #beauty .bl_flow_reverse .bl_flow_text {
    margin-right: 20px;
  }
  #beauty .bl_priceVamp_title {
    padding: 20px 10px 15px;
  }
  #beauty .bl_priceVamp_campaign {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  #beauty .bl_priceVamp_name {
    font-size: 4rem;
    line-height: 1.4;
  }
  #beauty .bl_priceVamp_name span {
    display: block;
    font-size: 2.5rem;
  }
  #beauty .bl_priceVamp_box_wrap {
    background-color: #B80A1F;
    color: #fff;
    padding: 30px;
  }
  #beauty .bl_priceVamp_box_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    margin-bottom: 20px;
    justify-items: center;
    text-align: center;
  }
  #beauty .bl_priceVamp_box {
    width: 100%;
  }
  #beauty .bl_priceVamp_box_times {
    margin-bottom: 10px;
    font-size: 2.1rem;
    padding: 7px 10px;
  }
  #beauty .bl_priceVamp_box_normal {
    font-size: 1.8rem;
  }
  #beauty .bl_priceVamp_box_normal span {
    font-size: 3.2rem;
  }
  #beauty .bl_priceVamp_box_arrow {
    padding: 10px 0;
  }
  #beauty .bl_priceVamp_box_special {
    font-size: 5.5rem;
  }
  #beauty .bl_priceVamp_box_special span {
    font-size: 2.4rem;
  }
  #beauty .bl_priceVamp_note {
    font-size: 1.8rem;
    line-height: 1;
  }
  #beauty .access .inner {
    max-width: 100%;
    width: 100%;
  }
  #beauty .access .bl_info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  #beauty .access .bl_info .bl_info_pict {
    width: 50%;
    max-width: 500px;
    margin: 0;
    margin-right: 20px;
  }
  #beauty .access .bl_info .bl_info_map {
    margin: 0;
    width: 50%;
    max-width: 500px;
  }
  #beauty .access .txt {
    margin-bottom: 30px;
  }
  #beauty .access .txt table {
    font-size: 1.6rem;
  }
  #beauty .access .btn {
    margin-top: 30px;
  }
  #beauty .access .btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  #beauty .access .btn a:after {
    font-size: 1rem;
  }
  #beauty .access .access .inner {
    max-width: 100%;
    width: 100%;
  }
}
/*----------------------------------
	.banner
----------------------------------*/
#beauty .bl_banner .inner {
  padding: 0 0 4vh;
  text-align: center;
}
#beauty .bl_banner li {
  width: 100%;
  height: auto;
}
#beauty .bl_banner li:not(:last-of-type) {
  margin-bottom: 20px;
}
#beauty .bl_banner img {
  min-height: 0%;
}
#beauty .bl_banner .hp_padding_mid {
  padding: 5vh 20px;
}

@media screen and (min-width: 768px) {
  #beauty .bl_banner ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  #beauty .bl_banner li {
    width: 50%;
    height: auto;
    margin-bottom: 0;
  }
  #beauty .bl_banner li:nth-child(odd) {
    padding-right: 1%;
  }
  #beauty .bl_banner li:nth-child(even) {
    padding-left: 1%;
  }
  #beauty .bl_banner img {
    transition: all 0.5s;
  }
  #beauty .bl_banner img:hover {
    opacity: 0.7;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }
  #beauty .bl_banner .hp_padding_mid {
    padding: 7vh 20px;
  }
}/*# sourceMappingURL=style.css.map */