@charset "UTF-8";


/* font-family: "Poiret One", sans-serif;
font-family: "Zen Maru Gothic", serif; */
/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
}

:root {
  --main-color: #91dad0;
  --main-color01: #d6b6b1;
  --main-color02: #f1faf9;
  --sab-color: #2E1F1D;
  --blak: #333;
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #ddcecd;
  --color-red: #de0e0e;
}

body {
  font-size: 1.5rem;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.6;
  letter-spacing: .05em;
  color: #111;
  background-color: #fff;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

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

a:hover {
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

p {
  margin-bottom: 1em;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

.markker {
  background-image: linear-gradient(rgba(0, 0, 0, 0), 70%, rgba(223, 167, 167, 0.58) 30%);
}

span.red {
  color: var(--color-red);
  font-weight: bold;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
  margin-left: 0;
}

/* section */
section {
  padding-bottom: 7rem;
}

.section {
  padding-top: 7rem;
}

/* タイトル */
h2 {
  text-align: center;
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 200;
  margin-bottom: 30px;
  color: #333;
}

h2.main_title {
  font-weight: 200;
  line-height: 1;
}

h2.main_title span.en {
  font-size: 3.2rem;
  letter-spacing: 2px;
}

h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 25px;
  color: #333;
  font-weight: 200;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.en {
  color: #999;
  font-family: 'Italianno', cursive;
}

.ja {
  color: #333;
  font-size: 2rem;
  font-family: serif;
}

.tax {
  text-align: right;
  margin-right: 34px;
}

/* ボタン */
.linkBtn {
  margin-top: 60px;
  text-align: center;
}

.linkBtn a {
  font-family: 'Noto Serif JP', serif;
  text-transform: uppercase;
  border: 1px solid #5e4e4a;
  padding: 15px 80px;
  border-radius: 50px;
}

.linkBtn.white a {
  background: #fff;
  color: #5e4e4a;
}

.linkBtn.white a:hover {
  background: #5e4e4a;
  color: #fff;
}

.linkBtn.brown a {
  background: #5e4e4a;
  color: #fff;
}

.linkBtn.brown a:hover {
  background: #fff;
  color: #5e4e4a;
}

/* 丸いボタン */
.btn_circle {
  margin-top: 60px;
  text-align: center;
}

.btn_circle a {
  display: inline-block;
  position: relative;
  padding: 1em 110px 1em 0em;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

.btn_circle a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border: 3px solid #aaaaaa;
  border-radius: 50vh;
  transition: 0.3s;
}

.btn_circle a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transition: 0.3s;
}

.btn_circle a:hover {
  text-decoration: underline;
}

.btn_circle a:hover::before {
  background-color: var(--main-color);
}

.btn_circle a:hover::after {
  border-top: 2px solid #f2f2f2;
  border-right: 2px solid #f2f2f2;
}

@media screen and (max-width:821px) {
  .wrap {
    padding: 0 20px;
  }
}

@media screen and (max-width:768px) {

  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }

  body {
    font-size: 14px;
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
  }
}

/* =======================================================
* header
* ======================================================= */
header {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 4rem;
  font-family: 'Italianno', cursive;
  letter-spacing: .08em;
  font-weight: 200;
}

header h1 a span {
  display: inline-block;
  font-size: 6rem;
  color: var(--main-color);
  display: block;
  margin-bottom: -8.5rem;
}

header h1 a p {
  text-align: center;
  line-height: 1.4;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Noto Serif JP', serif;
}

@media screen and (max-width:1024px) {
  header h1 {
    margin-left: 42px;
  }
}

@media screen and (max-width:768px) {
  header h1 {
    margin: 0 auto;
  }

  header h1 a span {
    font-size: 5rem;
  }

  .openbtn1 span {
    width: 30%;
  }
}

/*========= ハンバーガー ボタン ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 35px;
  right: 50px;
  cursor: pointer;
  width: 100px;
  height: 100px;
}

/* ×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* g_nav */
#g_nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #fbf9f8;
  transition: all 0.3s;
}

#g_nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g_nav.panelactive #g_nav_list {
  z-index: 999;
  width: 300px;
  height: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* g_nav_left */
.g_nav_container {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
  margin-top: 100px;
}

.g_nav_left h2 {
  font-size: 8rem;
  font-family: 'Italianno', cursive;
  color: var(--main-color);
  line-height: .1
}

.g_nav_left h2+p {
  font-size: 1.6rem;
  color: var(--main-color);
  text-align: center;
}

.line_box_nav {
  width: 250px;
  display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
}

.nav_insta {
  width: 40px;
}

.g_nav_img {
  width: 30%;
  height: auto;
  display: block;
}

.g_nav_img img {
  width: 100%;
  height: auto;
  max-height: 800px;
  border-radius: 20px;
}

/* g_nav_list */
#g_nav ul {
  list-style-type: none;
  padding: 0;
}

#g_nav ul li {
  margin: 20px 0;
}

#g_nav ul li a {
  position: relative;
  color: #131313;
  text-decoration: none;
  font-size: 1.6rem;
}

#g_nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.5s;
}

#g_nav ul li a:hover::after {
  transform: scale(1, 1);
}

#g_nav_list .submenu_list li a {
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
}

.submenu_list li a:hover {
  background-color: #f0f0f0;
}

.line_box {
  position: absolute;
  top: 240px;
  right: 368px;
}

@media screen and (max-width:1024px) {
  .openbtn1 {
    right: 55px;
  }

  .line_box {
    top: 245px;
    left: 412px;
    right: 0;
  }
}

@media screen and (max-width:768px) {
  .openbtn1 {
    right: 3px;
    top: 20px;
  }

  .g_nav_container {
    margin-top: 180px;
  }

  .g_nav_left h2 {
    font-size: 5rem;
  }

  .g_nav_left h2+p {
    font-size: 1.3rem;
  }

  /* g_nav_left */
  .g_nav_container {
    margin-top: 80px;
    flex-direction: column;
  }

  .g_nav_img {
    position: absolute;
    top: 162px;
    width: 64%;
    opacity: .4;
  }

  #g_nav.panelactive #g_nav_list {
    margin-top: 68px;
  }

  #g_nav ul li {
    margin: 10px 0;
  }

  .g_nav_right {
    margin-top: 10px;
    background-color: #ffffffbd;
    padding: 13px;
    border-radius: 10px;
  }

  .line_box {
    top: 250px;
    right: 0;
    left: 350px;
  }

  .line_box_nav {
    position: absolute;
    top: 635px;
    left: 303px;
    z-index: 5;
  }
}

@media screen and (max-width:720px) {
  #g_nav.panelactive #g_nav_list {
    margin-top: 17px;
  }

  .line_box {
    top: 500px;
    right: -7px;
    left: 0;
  }
}

@media screen and (max-width:432px) {
  #g_nav.panelactive #g_nav_list {
    margin-top: -5px;
}
.line_box_nav {
  top: 573px;
  left: 123px;
}

}

@media screen and (max-width:399px) {
  .line_box_nav {
    top: 573px;
    left: 90px;
  }
}

.frame {
  border: 4px solid #000;
  padding: 30px;
}


/* =======================================================
* main
* ======================================================= */
#main {
  position: relative;
  height: 100vh;
}

.wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#slider {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80vh;
}

/* main_left */
#main .main_left {
  position: relative;
  width: 60%;
  padding-left: 8%;
}

#slider p {
  position: absolute;
  font-size: 2.4rem;
  top: 66%;
  /* left: 0; */
  right: -50px;
  text-align: center;
  color: #ffffff;
  /* writing-mode: vertical-rl; */
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width:768px) {
  #main .main_left {
    width: 100%;
  }

  #slider p {
    font-size: 2.6rem;
    top: 55%;
    right: -36%;
  }
}

/* main_right */
#main .main_right {
  width: 30%;
  opacity: 0;
  animation: fadeInRight 3s ease forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(250px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#main .main_right p {
  position: absolute;
  top: 15%;
  right: 43%;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  letter-spacing: .3em;
}

.main_text {
  position: absolute;
  bottom: 17%;
  left: 11%;
  z-index: 100;
  transform: skewY(-10deg);
  line-height: 1;
}

/*Hair Removal Salonbrアニメーション*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  font-size: 5rem;
  font-family: 'Italianno', cursive;
  color: #89847e;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width:768px) {
  #main .main_right p {
    top: 0;
    right: 43%;
    font-size: 1.6rem;
    background-color: rgb(255 255 255 / .5);
    padding: 10px;
  }


  #main .main_right {
    width: 0;
  }

  .main_text {
    left: 14%;
  }

  .delayed_animation {
    background-color: rgba(255, 255, 255, .6);
    /* 透明な背景を設定 */
    padding: 10px;
    right: 12%;
  }

  .slideAnimeRightLeft {
    font-size: 4rem
  }
}

.scroll_down {
  position: absolute;
  color: #999;
  font-size: 1.2rem;
  letter-spacing: .2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  bottom: 0;
  left: 50px;
  text-transform: uppercase;
  padding-bottom: 90px;
}

.scroll_down .line {
  position: absolute;
  display: inline-block;
  height: 70px;
  width: 1px;
  bottom: 0;
  left: calc(50% - 1px);
  overflow: hidden;
}

.scroll_down .line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  background: #999;
  top: 0;
  left: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: line;
  animation-name: line;
  -webkit-animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  animation-timing-function: cubic-bezier(.785, .135, .15, .86);
}

@keyframes line {
  0% {
    height: 0;
  }

  50% {
    height: 100%;
  }

  100% {
    height: 0;
    top: 100%;
  }
}

@media screen and (max-width:768px) {
  .scroll_down {
    bottom: 15px;
    left: 15px;
  }
}

/* =======================================================
* description
* ======================================================= */
#description h3 {
  text-align: center;
  border-bottom: none;
  margin-bottom: 30px;
}

.description_container {
  background-color: #f2faf9;
  padding: 30px 0;
}


.description_container p {
  text-align: center;
  line-height: 1.7;
}

@media screen and (max-width:768px) {
  #description h3 {
    font-size: 1.8rem;
  }

  .description_container p {
    padding: 0 15px;
    text-align: left;
  }
}

/* =======================================================
* menu_selectin
* ======================================================= */
.selectin_container {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.menu_name a {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
}

.selectin_container .menu_name a img {
  width: 300px;
  height: auto;
}

.selectin_container .menu_name a p {
  margin-left: 10px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width:768px) {
  .selectin_container {
    flex-direction: column;
  }

  .menu_name {
    margin: 0 auto;
    margin-bottom: 20px;
  }

}

/* =======================================================
* commitmentこだわり
* ======================================================= */
.commitment_text {
  background-color: #f1faf9;
  padding: 20px;
}

.commitment_text ul {
  display: flex;
  justify-content: space-between
}

.commitment_text ul li {
  display: inline-block;
  width: 20%;
}

.commitment_btn {
  position: relative;
  text-align: left;
  padding: 20px 30px 20px 20px;
  border-radius: 8px 8px 0 0;
  background: fff;
  color: black;
  cursor: pointer;
  /* width: 100%; */
  margin-bottom: 0;
}

.commitment_btn:after {
  content: "";
  border-top: 1px solid black;
  border-left: 1px solid black;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(-135deg) translateY(9px);
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform .4s;
}

.commitment_body {
  position: relative;
  border-radius: 0 0 8px 8px;
  background: #fff;
  color: black;
  border: transparent;
  padding: 0 20px;
  line-height: 0;
  opacity: 0;
  transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
}

.commitment_body.is-open {
  /* width: 103%; */
  padding: 20px;
  line-height: 1.5;
  opacity: 1;
  border: 1px solid lightblue;
}

.commitment_body.is-open::after {
  transform: rotate(45deg) translateY(-10px);
}

.commitment_text p {
  vertical-align: top;
}

.point {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--main-color);
  color: white;
  border-radius: 50%;
  margin-right: 20px;
}

.commitment_text span {
  font-size: 1.8rem;
  vertical-align: top;
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  .commitment_text ul {
    flex-direction: column;
  }

  .commitment_text ul li {
    width: 100%;
  }

  .commitment_text span {
    font-size: 1.4rem;
  }

  .commitment_body.is-open {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* =======================================================
* profile
* ======================================================= */
#profile {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: auto;
}

#profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/back_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 0%;
  opacity: 0.3;
  z-index: -1;
}

#profile h2.main_title {
  padding-top: 30px;
}

.profile_container {
  width: 100%;
  display: flex;
  justify-content: space-around;

}

.profile_container .owner_img {
  width: 30%;
  line-height: 1;
}

.profile_container img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.profile_container p {
  font-size: 3rem;
  text-align: center;
}

.profile_container .en {
  font-size: 2.2rem;
}

.career {
  border: 1px solid black;
  padding: 10px;
}

.career p {
  font-size: 1.2rem;
  text-align: left;
  padding-left: 5%;
}

.career p:first-child {
  margin-top: 1em;
}

.coment {
  width: 50%;
  background-color: rgb(255 255 255 / 43%);
  padding: 10px 20px;
}

.coment h4 {
  font-size: 2.4rem;
  text-align: center;
  margin: 25px 0;
}

.coment_box {
  position: relative;
  top: 50px;
}

.coment p {
  text-align: center;
  font-size: 1.8rem;
  padding: 0 20px;
}

.coment span.textB {
  font-size: 2rem;
}

@media screen and (max-width:768px) {
  #profile::before {
    background-image: url(../images/sp_bk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .profile_container {
    flex-direction: column;
  }

  .profile_container .owner_img {
    width: 100%;
  }

  .profile_container .owner_img img {
    display: block;
    margin: 0 auto;
    width: 60%;
  }

  .profile_container p {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .owner_img p.owner-name {
    font-size: 2rem;
  }

  .coment {
    width: 100%;
    margin-top: 30px;
  }

  .coment h4 {
    font-size: 1.4rem;
  }

  .coment_box {
    position: static;
  }

  .coment span.textB {
    font-size: 1.6rem;
  }
}

/* =======================================================
* info
* ======================================================= */
#info .info_txt {
  margin-bottom: 60px;
  text-align: center;
  line-height: 2;
}

#info dl.scrollable {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 700px;
  max-height: 200px; 
  margin: 0 auto;
  overflow-y: auto;
}

#info dl dt {
  width: 20%;
  border-bottom: 1px dotted #5e4e4a;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

#info dl dd {
  width: 80%;
  border-bottom: 1px dotted #5e4e4a;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  #info .info_txt {
    text-align: left;
  }

  #info dl dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }

  #info dl dd {
    width: 100%;
  }
}

/* =======================================================
* menu_list/hair_removal
* ======================================================= */
#hair_removal,
#famcare,
#facial,
#photo_therapy {
  background-color: #f6f6f6;
  margin-top: 100px;
  padding: 20px 20px;
}

#hair_removal h2,
#famcare h2,
#facial h2,
#photo_therapy h2 {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
  font-size: 3rem;
  background-color: #e2e9e8;
  padding: 10px;
  border-radius: 50px;
}

.explanatin_text {
  font-size: 2rem;
}

.explanatin_text ul {
  margin: 10px 50px;
}

.explanatin_text li {
  list-style-type: circle;
}

.explanatin_text h4 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: cadetblue;
}

.explanatin_text h4+p {
  font-size: 1.6rem;
}

.hair_removal_contaier,
.famcare_contaier,
.facial_contaier,
.photo_contaier {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.hair_removal_contaier h3,
.famcare_contaier h3,
.facial_contaier h3,
.photo_contaier h3 {
  margin-top: 20px;
  font-size: 2rem;
  text-align: center;
}

.hair_removal_img,
.famcare_img,
.facial_img,
.photo_img {
  width: 250px;
}

.hair_removal_img img,
.famcare_img img,
.facial_img img,
.photo_img img {
  width: 100%;
  border-radius: 50%;
}

.hair_list {
  padding-left: 20px;
}

.special h5 {
  font-size: 2.6rem;
}

.hair_removal_contaier ul li,
.famcare_contaier ul li,
.facial_contaier ul li,
.photo_contaier ul li {
  list-style: disc;
}

@media screen and (max-width:1024px) {
  #hair_removal h2 {
    font-size: 2.4rem;
    padding: 10px;
  }

  .explanatin_text {
    padding: 0 40px;
  }
}

@media screen and (max-width:768px) {
  #hair_removal h2,
  #famcare h2,
  #facial h2,
  #photo_therapy h2 {
    font-size: 2.2rem;
    padding: 5px;
  }

  .hair_removal_contaier h3,
  .famcare_contaier h3,
  .facial_contaier h3,
  .facialr_contaier h3,
  .photo_contaier h3 {
    font-size: 1.8rem;
  }

  .hair_removal_contaier,
  .famcare_contaier,
  .facial_contaier,
  .photo_contaier {
    flex-direction: column;
  }

  .explanatin_text {
    font-size: 1.6rem;
  }

  .explanatin_text h4 {
    font-size: 2rem;
  }

  .explanatin_text ul {
    margin: 9px 7px 0 23px;
  }

  .hair_removal_contaier .w30,
  .famcare_contaier .w30,
  .facial_contaier .w30,
  .photo_contaier .w30 {
    padding: 0 20px;
  }

  .hair_removal_contaier .hair_list {
    margin-bottom: 30px;
  }

  .hair_removal_img,
  .famcare_img,
  .facial_img,
  .photo_img {
    width: 250px;
    margin: 0 auto;
  }

  .hair_list .pat {
    font-size: 2rem;
  }

  .explanatin_text {
    padding: 0;
  }
}

/* =======================================================
* menu_removal/wax_heading/wax_removal
* ======================================================= */
#wax_heading .wax_content {
  background-color: #f2faf9;
  padding: 30px 0;
  text-align: center;
}

#wax_heading .wax_content p {
  font-size: 2rem;
}

.wax_content .freame {
  max-width: 1000px;
  margin: 0 auto;
  border: 2px dotted var(--main-color);
  padding: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width:1024px) {
  #wax_heading .wax_content {
    padding: 30px 30px;
    text-align: left;
  }
}

@media screen and (max-width:768px) {
  #wax_heading .wax_content {
    padding: 30px 20px;
  }

  #wax_heading .wax_content p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* wax_removal */
#wax_removal .removal_container {
  text-align: center;
  justify-content: space-between;
  padding-top: 0;
}

.wax_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.w_yellow_box {
  width: 45%;
  text-align: center;
  font-size: 2rem;
}

.w_pink_box {
  width: 45%;
  text-align: center;
  font-size: 2rem;
}

.w_green_box {
  width: 45%;
  text-align: center;
  font-size: 2rem;
}

.w_yellow_green_box {
  width: 45%;
  text-align: center;
  font-size: 2rem;
}

.w_green_box h4,
.w_pink_box h4,
.w_yellow_box h4,
.w_yellow_green_box h4 {
  margin-bottom: 20px;
}

.w_green_01,
.w_pink_01,
.w_yellow_01,
.w_yellow_green_01 {
  display: flex;
}

.w_green_box ul,
.w_pink_box ul,
.w_yellow_box ul,
.w_yellow_green_box ul {
  text-align: center;
}

.w_green_box ul li,
.w_pink_box ul li,
.w_yellow_box ul li,
.w_yellow_green_box ul li {
  width: 120px;
  padding: 8px;
  margin: 2px;
  font-size: 1.6rem;
  border: 1px solid #dbe6db;
}

.w_yellow_green_box ul li {
  background-color: #ccfe9a;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 30%;
}

.w_green_box ul li {
  background-color: #bbfedc;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}

.w_pink_box ul li {
  background-color: #fed2ff;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}

.w_yellow_box ul li {
  background-color: #f8f98c;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 20%;
}

.select {
  font-size: 2rem;
  border: 1.5px solid var(--main-color);
  padding: 10px;
  margin-top: 30px;
  background-color: aliceblue;
}

.select>p {
  margin-top: 1rem;
}

@media screen and (max-width:1024px) {
  section#wax_removal {
    padding-bottom: 0;
  }

  .parts_list.section {
    padding: 0 20px;
  }

  #wax_removal .select {
    margin: 20px;
  }
}

@media screen and (max-width:768px) {
  .wax_container {
    flex-direction: column;
  }

  .parts_list.section {
    padding-top: 30px;
  }

  .w_yellow_green_box,
  .w_green_box,
  .w_pink_box,
  .w_yellow_box {
    width: 100%;
    margin-bottom: 20px;
  }

  .w_yellow_green_box ul li {
    flex-basis: 32%;
  }

  .w_green_box ul li {
    width: 33%;
  }

  .w_pink_box ul li,
  .w_yellow_box ul li,
  .w_green_box ul li {
    font-size: 1.3rem;
  }

  .w_pink_box ul li {
    width: 24%;
  }

  .w_pink_box li.sp_smoll {
    font-size: 12px;
  }

  .w_yellow_box ul li {
    flex-basis: 23.5%;
  }
}

/* =======================================================
* menu_flash/flash_heading
* ======================================================= */
#flash_heading .flash_content {
  background-color: #f2faf9;
  padding: 30px 0;
  text-align: center;
}

#flash_heading .flash_content p {
  font-size: 2rem;
}

.flash_content_box {
  display: flex;
  justify-content: center;
}

.flash_content_box ul {
  text-align: left;
}

.flash_content_box li {
  list-style-type: circle;
  font-size: 2rem;
  margin-bottom: 10px;
}

.flash_content .freame {
  width: 1000px;
  margin: 0 auto;
  border: 2px dotted var(--main-color);
  padding: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  section#flash_removal {
    padding-bottom: 0;
  }

  .flash_content_box li {
    font-size: 1.6rem;
  }

  #flash_heading .flash_content p {
    padding: 0 20px;
    font-size: 1.7rem;
    text-align: left;
  }
}

/* flash_removal */
#flash_removal .removal_container {
  text-align: center;
  justify-content: space-between;
  padding-top: 0;
}

.flash_container {
  display: flex;
  justify-content: space-around;
}

.green_box,
.pink_box,
.yellow_box {
  width: calc(100% / 3);
  text-align: center;
  font-size: 2rem;
}

.green_box h4,
.pink_box h4,
.yellow_box h4 {
  margin-bottom: 20px;
}

.green_01,
.pink_01,
.yellow_01 {
  display: flex;
}

.green_box ul,
.pink_box ul,
.yellow_box ul {
  text-align: center;
}

.green_box ul li,
.pink_box ul li,
.yellow_box ul li {
  width: 120px;
  padding: 8px;
  margin: 2px;
  font-size: 1.6rem;
  border: 1px solid #dbe6db;
  font-size: 13px;
}

.green_box ul li {
  background-color: #bbfedc;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33%;
}

.pink_box ul li {
  background-color: #fed2ff;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
}

.yellow_box ul li {
  background-color: #f8f98c;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 19%;
}

.select {
  font-size: 2rem;
  border: 1.5px solid var(--main-color);
  padding: 10px;
  margin-top: 30px;
  background-color: aliceblue;
}

.select>p {
  margin-top: 1rem;
}

@media screen and (max-width:1024px) {
  .parts_list.section {
    padding: 0 20px;
  }

  #flash_removal .select {
    margin: 20px;
    text-align: center;
  }

  .yellow_box ul li {
    flex-basis: 18%;
}
}

@media screen and (max-width:768px) {
  .flash_container {
    flex-direction: column;
  }

  .parts_list.section {
    padding-top: 30px;
  }

  .green_box,
  .pink_box,
  .yellow_box {
    width: 100%;
    margin-bottom: 20px;
  }

  .pink_box li.sp_smoll {
    font-size: 12px;
  }

  .yellow_box ul li {
    flex-basis: 23.5%;
  }
}

/* index_menu */
.box_design {
  position: relative;
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #5d627b;
  background: white;
  border-top: solid 5px var(--main-color);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.box_design h3 {
  margin-top: 30px;
  font-weight: bold;
  font-size: 3rem;
  text-align: center;
  border-bottom: none;
  background-color: var(--main-color02);
  color: cadetblue;
}

.box_design .name_vio {
  position: absolute;
  top: 92px;
  left: 94px;
  width: 150px;
  text-align: center;
  font-size: 3rem;
  background-color: #ffeaf7;
}

.box_design p {
  font-size: 2rem;
}

.box_design p.text_lr {
  text-align: center;
}

.text_lr:last-of-type {
  margin-bottom: 30px;
}

.index_01 {
  display: flex;
  justify-content: space-around;
  margin: 50px 0;
}

.index_01 .index_img {
  width: 150px;
}

.index_img_photo {
  display: flex;
  justify-content: space-evenly
}

.index_img_photo img {
  width: 300px;
}

.index_01 li {
  font-size: 2rem;
  height: 60px;
  align-items: center;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}

.index_01 ul li span {
  display: inline-block;
  width: 180px;
  text-align: center;
  line-height: 1.2;
}

.index_01 li:nth-child(odd) {
  background-color: rgb(243, 244, 245);
}

.index_text {
  width: 60%;
}


.index_text.premium {
  width: 80%;
}

.index_text li span.text_size {
  font-size: 16px;
}

.text_specing {
  letter-spacing: 20px;
  text-indent: 20px;
}

.index_text span.text_premium01 {
  width: 480px;
  letter-spacing: 0px;
}

.text_l {
  width: 60%;
  display: inline-block;
  text-align: left;
}

.text_l.w-50 {
  width: 50%;
}

.text_r {
  width: 20%;
  display: inline-block;
}


/* beautiful_butt */
.box_design_pink {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: rgb(137, 124, 124);
  background: white;
  border-top: solid 5px rgb(247, 215, 220);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
  color: #111;
}

.box_design_yellow {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: rgb(137, 124, 124);
  background: white;
  border-top: solid 5px rgb(245 247 215);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
  color: #111;
}

.box_design_pink h3 {
  margin-top: 30px;
  font-weight: bold;
  font-size: 3rem;
  text-align: center;
  border-bottom: none;
  background-color: #fff3f3;
  color: #f47ca6;
}

.box_design_yellow h3 {
  margin-top: 30px;
  font-weight: bold;
  font-size: 3rem;
  text-align: center;
  border-bottom: none;
  background-color: #fafaf1;
  color: #cdb94b;
}

.box_design_yellow .discount {
  text-align: center;
}

.box_design_yellow .discount p {
  font-size: 2rem;
  color: #333;
}

.box_design_yellow .noto {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}

.discount .noto p {
  font-size: 1.6rem;
}

.box_design_pink .text_lr,
.box_design_yellow .text_lr {
  width: 100%;
  height: 60px;
  display: inline-block;
  text-align: center;
}

.box_design_pink .hip p,
.box_design_yellow .hip p {
  padding: 0 20px;
  font-size: 1.8rem;
}

.box_design_pink .bk_pink {
  padding: 50px 0;
  background-color: #faf1f3;
}

.box_design_pink .hip p.hip01 {
  font-size: 2.2rem;
  text-align: center;
}

.box_design_pink .hip p.hip02 span.red {
  text-align: center;
  display: block;
  font-size: 2.2rem;
}

.box_design_pink h4 {
  padding-left: 50px;
  font-size: 2rem;
}

.pop_flash img {
  position: relative;
  top: 8px;
  left: 170px;
  width: 150px;
}

.box_design_pink .pop {
  position: relative;
  display: grid;
  place-items: center;
}

.box_design_pink .pop img {
  position: absolute;
  top: -26px;
  left: 353px;
  width: 165px;
}

.box_design_pink .pad_50 {
  margin-top: -40px;
  padding-left: 50px;
}

.box_design_pink .pad_50 ul {
  margin-top: 50px;
  margin-left: 50px;
  margin-bottom: 30px;
}

.box_design_pink .pad_50 li {
  list-style-type: disc;
  font-size: 1.8rem;
}

span.pink_f {
  font-size: 2rem;
}

span.number_b {
  font-size: 3rem;
}

.select01 {
  text-align: center;
}

.select01 p {
  font-size: 2rem;
  line-height: 1.7;
}


span.flame_p {
  background-color: #fed2ff;
  padding: 2px;
}

span.flame_y {
  background-color: #F8F98C;
  padding: 2px;
}

span.flame_g {
  background-color: #BBFEDC;
  padding: 2px;
}

@media screen and (max-width:1024px) {
  .box_design .name_vio {
    left: 77px;
  }

  .index_img_photo img {
    width: 205px;
  }

  .box_design_pink .pop img {
    left: 300px;
  }
}

@media screen and (max-width:768px) {
  .index_menu {
    padding-bottom: 30px;
  }
  .box_design h3 {
    font-size: 2.2rem;
  }

  .box_design .name_vio {
    top: 81px;
    left: 13px;
    width: 150px;
    font-size: 2.6rem;
  }

  .index_01 li {
    font-size: 1.4rem;
  }

  .index_01 ul li span {
    width: 120px;
  }

  .index_text li .small-text {
    font-size: 10px;
  }

  .index_text {
    width: 65%;
  }

  .index_img_photo img {
    width: 110px;
  }

  .index_text li span.text_size {
    font-size: 12px;
  }

  .index_01 .index_img img:first-child {
    padding-bottom: 45px;
  }

  .text_specing {
    letter-spacing: 9px;
    text-indent: 9px;
  }

  .text_l {
    width: auto;
    font-size: 1.8rem;
  }

  .text_r {
    width: auto;
    font-size: 1.8rem;
  }

  .box_design p.text_lr {
    font-size: 1.4rem;
  }

  .box_design_pink h3 {
    font-size: 2rem;
  }

  .box_design_yellow h3 {
    font-size: 2.2rem;
  }

  span.number_b {
    font-size: 2.4rem;
  }

  .box_design_pink .text_lr {
    width: 100%;
  }

  .box_design_yellow .text_lr {
    padding: 20px;
  }

  .text_l.w-50 {
    width: 100%;
    text-align: center;
  }

  .box_design_pink h4 {
    font-size: 1.8rem;
  }

  .box_design_pink .pad_50 {
    padding-left: 0;
  }

  .box_design_pink .hip p {
    padding: 0;
    font-size: 1.4rem;
  }

  .box_design_pink .hip p.hip02 span.red {
    font-size: 1.4rem;
  }

  .box_design_pink .bk_pink {
    padding: 30px 20px;
  }

  .pop_flash img {
    top: -13px;
    left: 80px;
  }

  .box_design_pink .pad_50 li {
    font-size: 1.4rem;
  }

  .box_design_pink .pop img {
    width: 116px;
    top: -23px;
    left: 104px;
  }

  p.text_lr.sm {
    font-size: 1.4rem;
  }

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

  span.pink_f {
    font-size: 1.4rem;
  }

  span.flame_y,
  span.flame_p,
  span.flame_g {
    padding: 0;
    line-height: 1.7;
  }
}

/* =======================================================
* menu_femcare/femcare_heading.femcare_removal
* ======================================================= */

#femcare_heading .femcare_content {
  background-color: #f2faf9;
  padding: 30px 0;
  text-align: center;
}

#femcare_heading .femcare_content p {
  font-size: 2rem;
}

.femcare_content h3 {
  margin-bottom: 10px;
  border-bottom: none;
}

.femcare_content .pad {
  display: flex;
  justify-content: center;
}

.femcare_content .pad ul {
  text-align: left;
}

.femcare_content .pad li {
  list-style-type: circle;
  font-size: 2rem;
  margin-bottom: 10px;
}

.femcare_content_box {
  display: flex;
  justify-content: center;
}

.femcare_content_box ul {
  text-align: left;
}

.femcare_content_box li {
  list-style-type: circle;
  font-size: 2rem;
  margin-bottom: 10px;
}

.femcare_content .freame {
  width: 1000px;
  margin: 0 auto;
  border: 2px dotted var(--main-color);
  padding: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width:820px) {
  #facial_heading .facial_content p {
    padding: 0 20px;
    text-align: left;
  }
}

@media screen and (max-width:768px) {
  #femcare_heading .femcare_content p {
    font-size: 1.6rem;
    text-align: left;
    padding: 0 20px;
  }

  .femcare_content .pad {
    padding: 0 15px 0 35px;
  }

  .femcare_content h3 {
    font-size: 2.2rem;
  }

  .femcare_content .pad li {
    font-size: 1.6rem;
  }
}

/* =======================================================
* menu_facial/facial_heading.facial_removal
* ======================================================= */
#facial_heading {
  padding-bottom: 0;
}

#facial_heading .facial_content {
  background-color: #f2faf9;
  padding: 30px 0;
  text-align: center;
}

#facial_heading .facial_content p {
  font-size: 2rem;
}

.facial_content h3 {
  margin-bottom: 10px;
  border-bottom: none;
}

@media screen and (max-width:768px) {
  #facial_heading .facial_content p {
    font-size: 1.6rem;
    text-align: left;
    padding: 0 15px;
  }
}

/* =======================================================
* menu_photo/photo_heading.photo_removal
* ======================================================= */
#facial_heading .photo_content {
  background-color: #f2faf9;
  padding: 30px 0;
  text-align: center;
}

#photo_heading .photo_content p {
  font-size: 2rem;
}

.photo_content {
  background-color: #f2faf9;
  padding: 30px 0;
  text-align: center;
}

.photo_content h3 {
  margin-bottom: 10px;
  border-bottom: none;
}

.photo_content h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}


.photo_content .photo_box {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}

.photo_content .photo_box p {
  font-size: 1.6rem;
}

@media screen and (max-width:1024px) {
  #photo_heading .photo_content p {
    padding: 0 20px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width:768px) {
  #photo_heading .photo_content p {
    text-align: left;
  }
}
/* =======================================================
*共通/ 施術の流れ flow
* ======================================================= */

.flow_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 30px;
}

.flow_box h3 {
  border-bottom: none;
}

.flow_box .flow_img {
  width: 200px;
  height: 200px;

}

.flow_box .flow_img img {
  width: 100%;
  border-radius: 50%;
}

.flow_box div {
  width: 60%;
  font-size: 1.8rem;
}

@media screen and (max-width:768px) {
  #flow h2 {
    font-size: 2.4rem;
  }

  .flow_box {
    flex-direction: column;
  }

  .flow_box div {
    width: 100%;
  }

  .flow_box h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .flow_box p {
    font-size: 1.6rem;
  }
}

/* =======================================================
*共通/ 注意事項 precautions
* ======================================================= */
section#precautions {
  background-color: #f6f6f6;
}

section#precautions .wrap {
  max-width: 800px;
}

#precautions h2 span.red {
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}

.precautions_container {
  padding-left: 20px;
}

#precautions h3 {
  margin-bottom: 10px;
  border-bottom: none;
}

.precautions_container h3:nth-of-type(2),
.precautions_container h3:nth-of-type(3) {
  margin-top: 50px;
}

.precautions_container ol li a {
  color: blue;
}

.precautions_container .indnt {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width:768px) {

  #precautions h2 {
    font-size: 2.2rem;
  }

  #precautions h2 span.red {
    font-size: 2rem;
  }

  #precautions h3 {
    font-size: 2rem;
  }
}

/* =======================================================
* question/
* ======================================================= */
.lv1_ttl {
  margin-top: 60px;
}

.toggle {
  display: none;
}

.Label_01 {
  padding: 1em;
  display: block;
  color: #111;
  background: var(--main-color02);
  border-radius: 5px;
  width: 80%;
  margin: 0 auto;
}

.content p {
  margin: 0 10%;
  width: 70%;
  text-indent: -1.4em;
}

.Label_01::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}

.Label_01,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  cursor: pointer;
}

.content {
  /*本文*/
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}

.toggle:checked+.Label_01+.content {
  height: auto;
  padding: 20px;
  transition: all .3s;
  width: 100%;
}

.toggle:checked+.Label_01::before {
  transform: rotate(-45deg) !important;
}

p.qa_text {
  margin-left: 9%;
  margin-top: 15px;
}

@media screen and (max-width:768px) {
  .lv1_ttl {
    margin-top: 0;
  }
  .Label_01 {
    width: 100%;
    padding-right: 30px;
  }

  .content p {
    margin: 0 15px;
    width: 100%;
  }

  #question h2 {
    margin-bottom: 20px;
  }
}

/* =======================================================
* voice
* ======================================================= */
#voice {
  max-width: 980px;
  margin: 0 auto;
}

#voice .voice_content h2 {
  padding: 20px;
  background-color: #fff2f3;
}

#voice ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0;
}

#voice ul li {
  width: 28%;
  padding: 20px;
  background-color: #f1faf9;
  margin-bottom: 10px;
  border-radius: 10px;
}

#voice ul li p {
  font-size: 2rem;
  text-align: center;

}

.menu_choose .frex {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  margin: 0 20px;
}

.menu_item_voice {
  width: 150px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  margin-right: 10px;
  border-radius: 5px;
}

#voice ul li.page-item {
width: 10%;
text-align: center;
padding: 5px;
background-color: #fff;
}

#voice ul.pagination {
  width: 400px;
  max-width: 65%;
  margin: 0 auto;
}

.pagination .active a {
  background-color: #5bb1b7;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
}



@media screen and (max-width:768px) {
  #voice {
    padding-top: 0;
    padding-bottom: 0;
  }

  .voice_content {
    padding: 0 10px;
  }

  #voice .voice_content h2 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 1.6rem;
  }

  #voice ul {
    padding: 0 10px;
    margin: 0;
  }

  #voice ul li {
    width: 49%;
    justify-content: space-evenly
  }

  .menu_item_voice {
    padding: 10px;
    margin: 10px;
  }

  section.menu_choose.frex {
    margin-top: 50px;
    padding-bottom: 0;
  }
}

@media screen and (max-width:720px) {
  #voice ul li {
    padding: 7px;
  }
}

/* =======================================================
* contact
* ======================================================= */

.discussion_box {
  display: block;
  text-align: center;
}

.discussion_box .note {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #ccc;
  padding: 10px;

  font-size: 1.2rem;
}

form {
  max-width: 700px;
  margin: 50px auto;
}

label {
  display: block;
  margin: 35px auto 10px;
  font-weight: bold;
}

label small {
  font-size: 11px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="zipcode"],
input[type="datetime-local"],
input[type="date"],
select,
textarea {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  outline: none;
  height: 50px;
  line-height: 1.8;
  background: #f9f9f9;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
}

textarea {
  height: 300px;
  padding: 10px;
}

form sup {
  background-color: #e65a5a;
  color: #fff;
  font-size: 10px;
  margin-left: 4px;
  padding: 3px 5px;
  border-radius: 3px;
  vertical-align: text-top;
}

form sup.any {
  background-color: #959796;
}

button {
  font-family: 'Poiret One', cursive;
  text-transform: uppercase;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
  padding: 15px 80px;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
}

button:hover {
  background: #fff;
  color: var(--main-color);
}

input[type=checkbox] {
  display: none;
}

/* input[type=checkbox]:checked+.checkbox02::before {
  border-color: #666;
}

input[type=checkbox]:checked+.checkbox02::after {
  opacity: 1;
} */

/* policy */
.policy {
  font-size: 1rem;
  font-weight: normal;
  height: 120px;
  margin-top: 30px;
  margin-bottom: 10px;
  overflow: auto;
  padding: 0 20px 0 20px;
  border: 1px solid #c7c4b5;
  border-radius: 3px;
  background: #fff;
}

.policy h4 {
  font-size: 2rem;
}

.policy h4+p {
  font-size: 1.4rem;
}

.radioBtn {
  position: relative;
  top: 3px;
  cursor: pointer;
  padding-left: 9px;
  display: inline;
  font-weight: normal;
  margin-right: 15px;
  font-size: 15px;
}

@media screen and (max-width:768px) {
  textarea {
    height: 200px;
  }
}

/* =======================================================
* sub_main
* ======================================================= */
#sub_main {
  position: relative;
  display: block;
  max-width: 1600px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
}

#sub_main h1.sub_mainTtl {
  position: absolute;
  top: 20%;
  left: 15%;
  font-size: 8rem;
  font-weight: 100;
  z-index: 5;
}

#sub_main h1.sub_mainTtl span.ja {
  position: absolute;
  top: 90px;
  left: 41px;
  z-index: 5;
}

#sub_main h1.sub_mainTtl.removal {
  left: 5%;
  z-index: 5;
}

#sub_main h1.sub_mainTtl.flash {
  left: 5%;
  z-index: 5;
}

#sub_main h1.sub_mainTtl.facial {
  width: 300px;
  left: 14%;
  z-index: 5;
}

#sub_main h1.sub_mainTtl.femcare {
  left: 14%;
  z-index: 5;
}

#sub_main h1.sub_mainTtl.photo {
  left: 11%;
  z-index: 5;
}

#sub_main h1.sub_mainTtl.question {
  left: 13%;
  z-index: 5;
}

#sub_main h1.sub_mainTtl.contact {
  left: 13%;
}

#sub_main h1.sub_mainTtl.removal span.ja {
  left: 130px;
  font-size: 3rem;
}

#sub_main h1.sub_mainTtl.facial span.ja {
  left: -12px;
  font-size: 3rem;
}

#sub_main h1.sub_mainTtl.flash span.ja {
  left: 163px;
  font-size: 3rem;
}

#sub_main h1.sub_mainTtl.femcare span.ja {
  left: 18px;
  font-size: 3rem;
}

#sub_main h1.sub_mainTtl.photo span.ja {
  left: 30px;
  font-size: 3rem;
}

#sub_main h1.sub_mainTtl.question span.ja {
  left: -13px;
  font-size: 3rem;
  margin-top: 10px;
}

#sub_main h1.sub_mainTtl.contact span.ja {
  width: 300px;
  left: -13px;
  font-size: 3rem;
  margin-top: 10px;
}

#sub_main .s_kv_menu {
  position: absolute;
  max-width: 1000px;
  right: 130px;
  top: 0;
}

#sub_main .s_kv_menu img {
  line-height: 1;
  height: auto;
  /* max-width: 100%; */
}

.background_overlay {
  position: absolute;
  width: 1000px;
  height: 500px;
  top: 15%;
  left: -319px;
  background-color: #eaeaea;
  z-index: -1;
}

/* iPad Proの横 */
@media screen and (max-width:1366px) {
  #sub_main .s_kv_menu {
    max-width: 880px;
    right: 66px;
    top: 0;
  }
}

@media screen and (max-width:1024px) {
  section#femcare_heading {
    padding-bottom: 0;
  }

  #sub_main h1.sub_mainTtl {
    left: 5%;
    font-size: 7rem;
  }

  #sub_main h1.sub_mainTtl.removal {
    top: 92px;
    z-index: 2;
    font-size: 5rem;
  }

  #sub_main h1.sub_mainTtl.removal span.ja {
    top: 63px;
    left: 64px;
    font-size: 2.6rem;
  }

  #sub_main h1.sub_mainTtl.flash {
    font-size: 5rem;
  }

  #sub_main h1.sub_mainTtl.flash span.ja {
    top: 63px;
    left: 76px;
    font-size: 2.6rem;
  }

  #sub_main h1.sub_mainTtl.facial {
    top: 260px;
    left: 71%;
  }

  #sub_main h1.sub_mainTtl.facial span.jp {
    font-size: 2.6rem;
  }

  #sub_main h1.sub_mainTtl.femcare {
    top: 65px;
    left: 49px;
  }

  #sub_main h1.sub_mainTtl.femcare span.ja {
    top: 70px;
    left: 22px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.photo {
    top: 73px;
    left: 50px;
  }

  #sub_main h1.sub_mainTtl.question {
    left: 8%;
  }

  #sub_main h1.sub_mainTtl.question span.ja {
    left: -13px;
    font-size: 2.6rem;
  }

  #sub_main h1.sub_mainTtl.contact {
    left: 8%;
  }

  #sub_main h1.sub_mainTtl.contact span.ja {
    left: -13px;
    font-size: 2.6rem;
  }

  #sub_main .s_kv_menu {
    max-width: 750px;
    right: 30px;
  }

  .background_overlay {
    width: 800px;
    left: -26%;
  }
}

/* iPad mini */
@media screen and (max-width:768px) {
  #sub_main {
    height: 300px;
  }

  #sub_main h1.sub_mainTtl {
    top: 205px;
    left: 67%;
    font-size: 5rem;
  }

  #sub_main h1.sub_mainTtl span.ja {
    position: absolute;
    top: 54px;
    left: 6px;
  }

  #sub_main .s_kv_menu img {
    width: 80%;
    display: block;
    margin-left: auto;
  }

  .background_overlay {
    height: 242px;
    width: 500px;
    top: 13%;
    left: -80px;
  }

  #sub_main h1.sub_mainTtl.removal {
    top: 205px;
    font-size: 47px;
    left: 400px;
  }

  #sub_main h1.sub_mainTtl.removal span.ja {
    top: 61px;
    left: 185px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.flash {
    top: 200px;
    left: 55%;
    font-size: 47px;
  }

  #sub_main h1.sub_mainTtl.flash span.ja {
    top: 61px;
    left: 163px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.facial {
    top: 208px;
    left: 66%;
  }

  #sub_main h1.sub_mainTtl.facial span.ja {
    left: -5px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.femcare {
    top: 200px;
    left: 500px;
  }

  #sub_main h1.sub_mainTtl.femcare span.ja {
    top: 51px;
    font-size: 1.6rem;
  }

  #sub_main h1.sub_mainTtl.photo {
    top: 204px;
    left: 500px;
  }

  #sub_main h1.sub_mainTtl.photo span.ja {
    top: 58px;
    left: 41px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.question {
    top: 199px;
    left: 65%;
  }

  #sub_main h1.sub_mainTtl.question span.ja {
    left: -23px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.contact {
    top: 120px;
    left: 65%;
  }

  #sub_main h1.sub_mainTtl.contact span.ja {
    left: -23px;
    font-size: 2rem;
  }
}

/* 携帯 */
@media screen and (max-width:720px) {
  #hair_removal {
    margin-top: 0;
  }

  #sub_main {
    height: 300px;
  }

  #sub_main h1.sub_mainTtl {
    position: absolute;
    top: 42%;
    bottom: 36px;
    left: 68%;
    font-size: 4rem;
    font-weight: 100;
    z-index: 10;
  }

  #sub_main h1.sub_mainTtl span.ja {
    top: 47px;
    left: -8px;
  }

  #sub_main h1.sub_mainTtl.removal {
    top: 140px;
    left: 33%;
    font-size: 4rem;
  }

  #sub_main h1.sub_mainTtl.flash {
    top: 124px;
    left: 32%;
    font-size: 4rem;
  }

  #sub_main h1.sub_mainTtl.removal span.ja {
    top: 56px;
    left: 95px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.flash span.ja {
    top: 65px;
    left: 106px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.facial {
    top: 128px;
    left: 63%;
  }

  #sub_main h1.sub_mainTtl.femcare {
    top: 122px;
    left: 243px;
  }

  #sub_main h1.sub_mainTtl.femcare span.ja {
    top: 65px;
    left: -5px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.photo {
    font-size: 47px;
    top: 120px;
    left: 180px;
  }

  #sub_main h1.sub_mainTtl.question {
    top: 123px;
    left: 58%;
    font-size: 47px;
  }

  #sub_main h1.sub_mainTtl.question span.ja {
    width: 175px;
    top: 57px;
    font-size: 2rem;
  }

  #sub_main h1.sub_mainTtl.contact span.ja {
    font-size: 2rem;
  }

  #sub_main .s_kv_menu {
    right: 0;
  }

  #sub_main .s_kv_menu img {
    width: 350px;
  }

  .background_overlay {
    height: 228px;
  }

  .select>p {
    font-size: 1.5rem;
  }
}

/* =======================================================
* menu_choose
* ======================================================= */
.menu_contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0 20px;

}

.menu_item {
  width: 250px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-right: 10px;
  border-radius: 5px;
}

.menu_item a {
  display: block;
  text-align: center;
}

@media screen and (max-width:1024px) {
  .menu_item {
    width: 200px;
  }
}

@media screen and (max-width:768px) {
  .menu_item {
    width: 45%;
    margin: 5px;
  }
}

/* =======================================================
*footer
* ======================================================= */
footer {
  position: relative;
  padding: 50px 0;
  background: #f2feff;
}

.footer_name h2 {
  font-size: 8rem;
  font-family: 'Italianno', cursive;
  color: var(--main-color);
  line-height: .1
}

.footer_name h2+p {
  font-size: 1.6rem;
  color: var(--main-color);
  text-align: center;
}

.footer_menu {
  display: flex;
  text-align: center;
  justify-content: center;
  max-width: 20px 0;
}

.footer_menu li {
  display: inline-block;
  padding: 0 10px;
  font-size: 12px;
}

.footer_menu li a {
  font-size: 1.8rem;
}

.footer_menu li.sub_li a {
  font-size: 1.2rem;
}

.submenu_list_footer {
  display: flex;
  flex-direction: column;
}

.submenu_list_footer div.flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start
}

.footer_sns {
  text-align: center;
  margin-bottom: 60px;
}

.footer_sns li {
  width: 40px;
  display: inline-block;
  padding: 20px 10px;
}

.copyright {
  text-align: center;
  font-size: 11px;
}

@media screen and (max-width:800px) {
  .footer_sns li img {
    margin-top: 30px;
    height: 25px;
    object-fit: cover;
  }

  .footer_sns li {
    width: 47px;
  }
}

@media screen and (max-width:769px) {
  .footer_name h2 {
    font-size: 5rem;
  }
}

@media screen and (max-width:720px) {
  .footer_name h2 {
    font-size: 5rem;
  }

  .footer_name h2+p {
    font-size: 1.2rem;
  }

  .footer_menu {

    flex-direction: column;
  }

  .footer_menu li {
    display: block;
    margin-bottom: 10px;
  }

  .submenu_list_footer div.flex {
    position: relative;
    padding-left: 25px;
    align-content: space-around
  }

  .footer_sns li {
    width: 46px;
    margin-top: 47px;
  }

  .footer_sns li img {
    height: 25px;
    object-fit: cover;
  }
}

/*================================================
 *  プライバシーポリシー
 ================================================*/
#policy dt {
  padding-bottom: 5px;
}

#policy dd:nth-child(n+2) {
  padding-bottom: 30px;
}

.article {
  padding: 0 20px;
}

#cancel-policy {
  color: #333;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 800px;
  box-sizing: border-box;
}

#cancel-policy h2,
#cancel-policy h3 {
  color: #d35400;
}

#cancel-policy ul {
  list-style-type: none;
  padding: 0;
}

#cancel-policy ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

#cancel-policy ul li::before {
  content: '•';
  position: absolute;
  left: 0;
}

#cancel-policy p {
  line-height: 1.6;
}

#cancel-policy strong {
  color: #000;
}

@media (min-width: 1024px) {
  #cancel-policy {
    padding: 25px;
    margin: 20px auto;
  }

  #cancel-policy h2 {
    font-size: 24px;
  }

  #cancel-policy h3 {
    font-size: 22px;
  }

  #cancel-policy p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #policy h2 {
    font-size: 2.2rem;
  }

  #cancel-policy {
    padding: 15px;
    margin: 10px;
  }

  #cancel-policy h2 {
    font-size: 20px;
  }

  #cancel-policy h3 {
    font-size: 18px;
  }

  #cancel-policy p {
    font-size: 14px;
  }
}

/*================================================
 *  ページトップへの戻り
================================================*/
#pagetop {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  z-index: 100;
}

#pagetop a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}

#pagetop a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: var(--main-color);
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#pagetop a::after {
  content: 'PAGE TOP';
  font-size: 13px;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: var(--main-color);
}

@media screen and (max-width:767px) {
  #pagetop {
    width: 50px;
    height: 50px;
  }

  #pagetop a::after {
    top: -18px;
    right: 60px;
    display: block;
    margin: 0 auto;
    font-size: 10px;
  }

  #pagetop a::before {
    top: -180px;
    right: 60px;
  }
}