@charset "UTF-8";

#page_header .sub_title {
  min-width: 150px;
  width: auto;
}

@media (max-width: 950px) {
  #page_header .sub_title {
    min-width: 120px;
    width: auto;
  }
}

@media (max-width: 550px) {
  #page_header .sub_title {
    min-width: 80px;
    width: auto;
  }
}

.service_content3 {
  margin-bottom: 80px;
}

@media (max-width: 1251px) {
  .service_content3 {
    margin-bottom: 70px;
  }
}

@media (max-width: 950px) {
  .service_content3 {
    margin-bottom: 50px;
  }
}

@media (max-width: 750px) {
  .service_content3 {
    margin-bottom: 40px;
  }
}

.row {
  display: flex;
  gap: 20px;
}

.row:not(:last-child) {
  margin-bottom: 20px;
}

.row.reverse {
  flex-direction: row-reverse;
}

.row.v-center {
  align-items: center;
}

.row.no-gap {
  gap: 0;
}

.row>.col {
  flex: 1;
}

.row>.col.flex_0 {
  flex: 0;
}

.row>.col.flex_1 {
  flex: 1;
}

.row>.col.flex_2 {
  flex: 2;
}

.row>.col.flex_3 {
  flex: 3;
}

.row>.col.flex_4 {
  flex: 4;
}

.row>.col.flex_5 {
  flex: 5;
}

.row>.col.flex_6 {
  flex: 6;
}

.row>.col.flex_7 {
  flex: 7;
}

.row>.col.flex_8 {
  flex: 8;
}

.row>.col.flex_9 {
  flex: 9;
}

.row>.col.flex_10 {
  flex: 10;
}

@media (max-width: 750px) {
  .row {
    flex-direction: column;
    row-gap: 20px;
  }

  .row.reverse {
    flex-direction: column;
  }

  .row.no-gap {
    row-gap: 0;
  }

  .row.sp-col2 {
    flex-wrap: wrap;
    flex-direction: row;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }

  .row.sp-col2>.col {
    flex: 0 49%;
  }

  .row.sp-col3 {
    flex-wrap: wrap;
    flex-direction: row;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }

  .row.sp-col3>.col {
    flex: 0 32%;
  }
}

@media (-ms-high-contrast: none) and (min-width: 751px) {
  .row:not(.no-gap):not(.reverse)>.col:not(:first-child) {
    margin-left: 20px;
  }

  .row:not(.no-gap).reverse>.col:not(:first-child) {
    margin-right: 20px;
  }
}

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

.text-red {
  color: red;
}

.text-orage {
  color: #ff6600;
}

.sec_basic ul li {
  list-style: disc;
}

.mb_20 {
  margin-bottom: 20px;
}

.mt_15 {
  margin-top: 15px !important;
}

@media (min-width: 751px) {
  .sp-only {
    display: none !important;
  }

  .pc-text-center {
    text-align: center !important;
  }
}

@media (min-width: 751px) and (max-width: 1000px) {
  .pc-text-center.tab-left {
    text-align: left !important;
  }

  .pc-text-center.tab-left br.pc-only {
    display: none !important;
  }
}

@media (min-width: 751px) {
  .pc-text-right {
    text-align: right !important;
  }
}

@media (max-width: 750px) {
  .pc-only {
    display: none !important;
  }

  .sp-text-center {
    text-align: center !important;
  }
}

.post_content img {
  vertical-align: middle;
}

.post_content p, .post_content ul, .post_content ol {
  margin-bottom: 1em;
  line-height: 1.8;
}

.post_content p:last-child, .post_content ul:last-child, .post_content ol:last-child {
  margin-bottom: 0;
}

.post_content li {
  line-height: 1.8;
}

.post_content .sec_basic {
  margin-bottom: 100px;
}

@media (max-width: 750px) {
  .post_content .sec_basic {
    margin-bottom: 50px;
  }
}

.post_content .highlight {
  padding: 25px 15px;
  background-color: #eeeeee;
}

@media (max-width: 750px) {
  .post_content .highlight {
    padding: 15px;
  }
}

.post_content .highlight_c {
  padding: 25px 15px;
  background-color: #eeeeee;
  text-align: center;
}

@media (max-width: 1200px) {
  .post_content .highlight_c {
    text-align: left;
  }
}

@media (max-width: 750px) {
  .post_content .highlight_c {
    padding: 15px 10px;
    text-align: center;
  }
}

.post_content .highlight_d {
  padding: 25px 15px;
  background-color: #eeeeee;
  text-align: center;
}

@media (max-width: 1200px) {
  .post_content .highlight_d {
    text-align: left;
  }
}

@media (max-width: 750px) {
  .post_content .highlight_d {
    padding: 15px 10px;
    text-align: center;
  }
}

.post_content .highlight_w {
  padding: 60px 40px;
  background-color: #eeeeee;
  position: relative;
  z-index: 2;
}

.post_content .highlight_w:before {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: calc(100% + -40px);
  height: calc(100% + -40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 750px) {
  .post_content .highlight_w {
    padding: 35px 20px;
  }

  .post_content .highlight_w:before {
    width: calc(100% + -20px);
    height: calc(100% + -20px);
  }
}

.post_content .container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.post_content .title_h2, .post_content .title_h3_2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0 60px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.post_content .title_h2 small, .post_content .title_h3_2 small {
  color: #78674f;
  font-size: 14px;
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

@media (max-width: 750px) {
  .post_content .title_h2, .post_content .title_h3_2 {
    margin: 0 0 25px;
    font-size: 22px;
  }

  .post_content .title_h2 small, .post_content .title_h3_2 small {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.post_content .top_headline {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  display: table;
  margin: 0 auto 40px;
  font-weight: bold;
  font-size: 30px;
  border: none;
  position: relative;
  padding-top: 80px;
  text-align: center;
}

.post_content .top_headline:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/h2_bg.png) no-repeat center;
  background-size: contain;
  width: 60px;
  height: 70px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 750px) {
  .post_content .top_headline {
    margin: 0 auto 20px;
    font-size: 20px;
    padding-top: 56px;
  }

  .post_content .top_headline:before {
    height: 50px;
  }
}

.post_content .top_headline_h3 {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  margin-bottom: 20px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 2px solid #eac000;
  font-size: 24px;
}

@media (max-width: 750px) {
  .post_content .top_headline_h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.post_content .top_headline_h4 {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 750px) {
  .post_content .top_headline_h4 {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.post_content .title_h3 {
  font-size: 28px;
  margin: 0 0 20px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 1px;
}

@media (max-width: 750px) {
  .post_content .title_h3 {
    font-size: 22px;
    margin: 0 0 15px;
  }
}

.post_content .link_button a {
  display: inline-block;
  min-width: 280px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  font-size: 16px;
  box-sizing: border-box;
  background: #78674f;
  color: #ffffff;
  font-size: 14px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.post_content .link_button a:hover {
  background: #97856c;
}

@media (max-width: 750px) {
  .post_content .link_button a {
    min-width: 240px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    font-size: 14px;
  }
}

.post_content .table_default {
  width: 100%;
}

@media (max-width: 750px) {
  .post_content .table_default th, .post_content .table_default td {
    box-sizing: border-box;
    display: block;
    width: 100% !important;
  }
}

.post_content .table_menu {
  width: 100%;
}

.post_content .table_menu thead th, .post_content .table_menu thead td {
  text-align: center;
}

.post_content .table_menu tbody th, .post_content .table_menu tbody td {
  text-align: left;
  background: #fff;
}

.post_content .table_menu tbody th:last-child, .post_content .table_menu tbody td:last-child {
  padding-left: 0;
  text-align: right;
  white-space: nowrap;
}

.post_content .table_menu tbody td {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 750px) {
  .post_content .responsive_scroll {
    display: block;
    width: 100%;
    min-height: 0.01%;
    overflow-x: scroll;
  }

  .post_content .responsive_scroll table {
    width: 750px !important;
    font-size: 14px;
  }

  .post_content .responsive_scroll table th, .post_content .responsive_scroll table td {
    padding: 10px 6px;
    line-height: 1.8;
  }
}

@media (max-width: 750px) and (max-width: 750px) {
  .post_content .responsive_scroll table th, .post_content .responsive_scroll table td {
    padding: 10px;
  }
}

.sec_contact dl.required dt::after {
  content: '※必須';
  margin-left: 1em;
  color: #ff0000;
  font-weight: normal;
}

.sec_policy h2 {
  margin-bottom: 1em;
  text-align: center;
}

.sec_policy:not(:last-child) {
  margin-bottom: 4em;
}

.sec_policy .policy_item:not(:last-child) {
  margin-bottom: 2em;
}

.sec_policy dl {
  display: flex;
  margin: 0;
}

.sec_policy dl dt {
  font-weight: normal;
}

.sec_policy dl dt::after {
  content: ':';
  margin-right: 0.5em;
}

.sec_policy dl dd {
  margin: 0;
}

#footer_sns {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

#footer_sns::after {
  display: none;
}

#footer_sns li {
  display: block;
  margin: 0;
}

#footer_sns li a {
  overflow: visible;
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  line-height: 1;
}

#footer_sns li a::before {
  position: static;
  width: 64px;
  height: 64px;
  font-size: 64px;
}

#footer_sns li.facebook a::before {
  font-size: 0;
  background: url(./img/facebook_wh.png) center/contain no-repeat;
}

#footer_sns li.twitter a::before {
  font-size: 0;
  background: url(./img/twitter_bl.png) center/contain no-repeat;
}

#footer_sns li.insta a::before {
  font-size: 0;
  background: url(./img/instagram_wh.png) center/contain no-repeat;
}

#footer_sns li.line a::before {
  content: '';
  font-size: 0;
  background: url(./img/line.png) center/contain no-repeat;
}

@media (max-width: 650px) {
  #footer_sns {
    gap: 16px;
  }

  #footer_sns li a::before {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }
}

@media (-ms-high-contrast: none) {
  #footer_sns li:not(:first-child) {
    margin-left: 24px;
  }
}

@media (-ms-high-contrast: none) and (max-width: 750px) {
  #footer_sns li:not(:first-child) {
    margin-left: 16px;
  }
}

body:not(.home) #header #global_menu>ul>li>a, body:not(.home) #page_header_inner .sub_title, body:not(.home) #footer_banner .title, body:not(.home) #header #global_menu>ul ul a, body:not(.home) .top_headline, body:not(.home) .headline {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}

body:not(.home) #page_header_inner .title {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 40px;
}

@media (max-width: 750px) {
  body:not(.home) #page_header_inner .title {
    font-size: 24px;
  }
}

body.home #header {
  position: relative;
  margin-bottom: 0;
  background: #37332d;
}

#header #menu_button span {
  background: #fff;
}

#header #global_menu>ul ul {
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
}

#header #global_menu>ul ul a {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
}

#header #global_menu>ul>li>a {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: .5px;
}

@media (min-width: 1252px) {
  #header #global_menu>ul>li>a {
    padding: 0 15px;
  }
}

#header #global_menu>ul>li>a:hover {
  color: #97856c !important;
}

#side_button a {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: .5px;
  border: 1px solid #fff;
}

#side_button .item:last-child a {
  border-top: 0;
}

@media (min-width: 750px) {
  #header_slider .catch {
    text-align: right;
    max-width: 1000px;
  }
}

#page_header {
  padding: 0 10px;
}

@media (max-width: 750px) {
  #page_header .sub_title {
    height: 60px;
  }
}

#index_news {
  background: #f5f5f5;
}

#index_news time {
  color: #999999;
}

#index_news .archive_link:after {
  color: #999999;
  font-weight: bold;
}

#index_news .archive_link:hover:after {
  color: #78674f;
}

.index_free_space {
  width: 100% !important;
}

@media (max-width: 1100px) {
  .index_free_space .container {
    max-width: 100%;
    padding: 0 50px;
  }
}

@media (max-width: 750px) {
  .index_free_space .container {
    padding: 0 20px;
  }
}

.index_menu_sec {
  position: relative;
  padding: 115px 0;
  background: #37332d;
  color: #fff;
}

.index_menu_sec .title_h2 {
  margin-bottom: 40px;
}

.index_menu_sec p {
  line-height: 2.4;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 800px) {
  .index_menu_sec p {
    text-align: left;
  }

  .index_menu_sec p br.pc-only {
    display: none;
  }
}

@media (max-width: 750px) {
  .index_menu_sec {
    padding: 40px 0 40px;
  }

  .index_menu_sec .title_h2 {
    margin-bottom: 25px;
  }

  .index_menu_sec p {
    line-height: 1.8;
    font-size: 14px;
    text-align: left;
  }
}

.index_facial_body_sec {
  background: url(/wp-content/uploads/bg_img001.jpg) no-repeat center;
  background-size: cover;
  padding: 110px 0 160px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.index_facial_body_sec:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/bg_img003.png) no-repeat center;
  background-size: contain;
  width: 313px;
  height: 215px;
  top: -14px;
  right: 9%;
  z-index: -2;
}

@media (max-width: 750px) {
  .index_facial_body_sec:before {
    content: none;
  }
}

.index_facial_body_sec:after {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/bg_img004.png) no-repeat center;
  background-size: contain;
  width: 208px;
  height: 248px;
  bottom: 6%;
  left: 9%;
  z-index: -2;
}

@media (max-width: 750px) {
  .index_facial_body_sec:after {
    content: none;
  }
}

.index_facial_body_sec .title_h3_2 {
  align-items: flex-start;
  margin-bottom: 26px;
}

.index_facial_body_sec .row.content_01 {
  position: relative;
}

.index_facial_body_sec .row.content_01:after {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/bg_img005.png) no-repeat center;
  background-size: contain;
  width: 176px;
  height: 263px;
  bottom: -58%;
  right: 6%;
  z-index: -2;
}

@media (max-width: 750px) {
  .index_facial_body_sec .row.content_01:after {
    content: none;
  }
}

.index_facial_body_sec .row:not(:last-child) {
  margin-bottom: 210px;
}

.index_facial_body_sec .row .img_area figure {
  text-align: center;
}

.index_facial_body_sec .row .img_area p {
  margin-top: 20px;
  line-height: 2.2;
}

.index_facial_body_sec .row .btn_area {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.index_facial_body_sec .row .btn_area .link_button {
  width: 48%;
  padding: 0;
  margin: 0;
}

.index_facial_body_sec .row .btn_area .link_button:not(:last-child) {
  margin-bottom: 4%;
}

.index_facial_body_sec .row .btn_area .link_button:nth-child(odd) {
  margin-right: 4%;
}

@media (max-width: 1100px) {
  .index_facial_body_sec .row .btn_area .link_button {
    width: 100%;
    margin-right: 0 !important;
  }
}

.index_facial_body_sec .row .btn_area .link_button a {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 70px;
  line-height: 1.2;
  font-size: 18px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: -2px;
}

@media (min-width: 1101px) {
  .index_facial_body_sec .row .btn_area .link_button a span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .index_facial_body_sec .row .btn_area .link_button a {
    height: 50px;
  }

  .index_facial_body_sec .row .btn_area .link_button a br {
    display: none;
  }
}

@media (max-width: 750px) {
  .index_facial_body_sec {
    padding: 40px 0;
  }

  .index_facial_body_sec .title_h3_2 {
    align-items: center;
    margin-bottom: 25px;
  }

  .index_facial_body_sec .row {
    max-width: 488px;
    margin-left: auto;
    margin-right: auto;
  }

  .index_facial_body_sec .row:not(:last-child) {
    margin-bottom: 40px;
  }

  .index_facial_body_sec .row .img_area p {
    margin-top: 10px;
    line-height: 1.8;
  }

  .index_facial_body_sec .row .btn_area .link_button a {
    height: 50px;
    font-size: 14px;
    letter-spacing: 0px;
  }
}

.index_about_sec {
  background: #eceae6;
  padding: 80px 0 130px;
}

.index_about_sec h3.h3_space {
  letter-spacing: 8px;
}

.index_about_sec .box {
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.index_about_sec .box .btn_area {
  margin-top: -60px;
}

.index_about_sec .box .link_button {
  margin: 0;
  max-height: 60px;
}

.index_about_sec .box .link_button:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.index_about_sec .box .link_button a {
  background: rgba(120, 103, 79, 0.86);
  min-width: 0;
  width: 100%;
  padding: 0 10px;
}

.index_about_sec .box .link_button a:hover {
  background: rgba(151, 133, 108, 0.86);
}

.index_about_sec .box .link_button a.none {
  pointer-events: none;
}

@media (min-width: 751px) {
  .index_about_sec .container {
    max-width: 1350px;
    padding: 0 20px;
  }
}

@media (min-width: 751px) and (max-width: 1000px) {
  .index_about_sec .row {
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
  }

  .index_about_sec .row .col {
    width: 50%;
    flex: auto;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 750px) {
  .index_about_sec {
    padding: 0 0 40px;
  }

  .index_about_sec .box .btn_area {
    margin-top: -50px;
  }
}

.index_content_slider {
  background: #37332d;
  padding: 90px 0 120px !important;
}

.index_content_slider .cb_catch {
  color: #fff;
}

.index_content_slider .carousel_arrow:before, .index_content_slider .carousel_arrow:after {
  color: #78674f;
  font-weight: bold;
}

.index_content_slider .cb_content_slider_wrap a {
  pointer-events: none;
}

.index_content_slider .link_button a {
  font-size: 14px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media (min-width: 751px) {
  .index_content_slider .item {
    height: 467px;
  }

  .index_content_slider .image_wrap {
    height: 267px;
  }

  .index_content_slider .cb_content_slider {
    height: 467px;
  }
}

@media (max-width: 750px) {
  .index_content_slider {
    padding: 40px 0 !important;
  }
}

.index_post_slider {
  padding: 90px 0 120px !important;
}

.index_post_slider .post_list_slider_wrap {
  background: #e7e1d4;
}

.index_post_slider .carousel_arrow:before, .index_post_slider .carousel_arrow:after {
  color: #78674f;
  font-weight: bold;
}

.index_post_slider .title_area {
  border-left: 1px solid #ddd;
}

.index_post_slider .link_button a {
  font-size: 14px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media (max-width: 750px) {
  .index_post_slider {
    padding: 40px 0 !important;
  }
}

.index_access {
  padding: 106px 0 120px !important;
  background: #eceae6;
}

.index_access .link_button a {
  font-size: 14px;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media (min-width: 951px) {
  .index_access .access_info {
    height: 500px;
  }

  .index_access .access_info .post_content p {
    line-height: 2.2;
  }

  .index_access .access_info .post_content p:not(:last-child) {
    margin-bottom: 44px;
  }

  .index_access .access_info .access_google_map {
    height: 500px;
  }

  .index_access .access_info .access_google_map .pb_googlemap_embed {
    height: 500px;
  }
}

@media (max-width: 750px) {
  .index_access {
    padding: 40px 0 !important;
  }
}

.index_contact_sec {
  background: #e7e1d4;
  padding: 55px 0 80px;
}

.index_contact_sec .title_h2 {
  margin-bottom: 18px;
  display: block;
  text-align: center;
}

.index_contact_sec .title_h2 small {
  display: block;
}

.index_contact_sec p {
  text-align: center;
  margin: 0;
}

.index_contact_sec p.txt_01 {
  line-height: 2.2;
}

.index_contact_sec p.tel {
  font-size: 42px;
  font-weight: bold;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
}

.index_contact_sec p.tel a {
  color: #000000;
}

.index_contact_sec p.tel:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/tel_icon.png) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media (max-width: 750px) {
  .index_contact_sec {
    padding: 40px 0;
  }

  .index_contact_sec p.txt_01 {
    line-height: 1.8;
  }

  .index_contact_sec p.tel {
    font-size: 24px;
    padding-left: 30px;
  }

  .index_contact_sec p.tel:before {
    width: 20px;
  }
}

#footer_top {
  display: none;
}

#footer_banner .title {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

#footer_bottom {
  background: #37332d;
  color: #fff;
  padding: 70px 0;
}

#footer_bottom .footer_info {
  line-height: 2.2;
  padding: 0 10px;
}

#footer_bottom .footer_info a {
  color: #fff;
}

@media (max-width: 750px) {
  #footer_bottom {
    padding: 40px 0;
  }
}

#footer_menu {
  height: auto;
}

@media (min-width: 751px) {
  #footer_menu {
    padding: 20px 0;
  }

  #footer_menu li {
    margin: 0;
  }

  #footer_menu li a {
    height: auto;
    line-height: 1.4;
    padding: 5px 10px;
    display: block;
  }
}

@media (max-width: 750px) {
  #copyright {
    padding: 13px 10px;
    height: auto;
    line-height: 2;
  }
}

figure {
  text-align: center;
}

ul.disc li {
  list-style: disc;
}

ul.check {
  margin-left: 0;
}

ul.check li {
  list-style: none;
  position: relative;
  padding-left: 40px;
}

ul.check li:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/check.png) no-repeat center;
  background-size: contain;
  width: 35px;
  height: 21px;
  top: 3.5px;
  left: 0;
}

@media (max-width: 750px) {
  ul.check li:before {
    top: 2px;
  }
}

.sns_default_top ul li.twitter_button {
  width: auto;
}

.access_content2 .top_headline {
  font-family: Arial, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  display: table;
  margin: 0 auto 40px;
  font-weight: bold;
  font-size: 30px;
  border: none;
  position: relative;
  padding-top: 80px;
  text-align: center;
}

.access_content2 .top_headline:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/h2_bg.png) no-repeat center;
  background-size: contain;
  width: 60px;
  height: 70px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 750px) {
  .access_content2 .top_headline {
    margin: 0 auto 20px;
    font-size: 20px;
    padding-top: 56px;
  }

  .access_content2 .top_headline:before {
    height: 50px;
  }
}

.sec_calm_reverse .step_area {
  gap: 0;
}

.sec_calm_reverse .step_area .col:not(:first-child) {
  margin-left: 40px;
  position: relative;
}

.sec_calm_reverse .step_area .col:not(:first-child):before {
  content: "";
  position: absolute;
  display: block;
  background: url(/wp-content/uploads/arrow_right.png) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
}

@media (max-width: 750px) {
  .sec_calm_reverse .step_area .col:not(:first-child) {
    margin-left: 0;
    margin-top: 40px;
  }

  .sec_calm_reverse .step_area .col:not(:first-child):before {
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    top: -35px;
  }
}

.slug-epilation h1 {
  letter-spacing: 8px;
}

.epilation_color_1 {
  color: #e60f1a;
}

.epilation_color_2 {
  color: #009943;
}

.epilation_color_3 {
  color: #1c1f87;
}

.epilation_color_4 {
  color: #00a0e9;
}

.epilation_color_5 {
  color: #e5037f;
}

.epilation_color_6 {
  color: #796a55;
}

.epilation_color_7 {
  color: #f39800;
}

.sec_sauna .faq:not(:last-child) {
  margin-bottom: 1.5em;
}

.sec_sauna .faq:last-child {
  margin-bottom: 0;
}

.sec_sauna .faq dt {
  margin-bottom: 0.5em;
  padding: 0.5em 0.8em;
  background: rgba(120, 103, 79, 0.1);
}

.sec_arouse_reverse .arouse_reverse_box .col.col_1 h3 {
  color: blue;
}

.sec_arouse_reverse .arouse_reverse_box .col.col_2 h3 {
  color: #ff6f88;
}

.sec_arouse_reverse .arouse_reverse_box .col.col_3 h3 {
  color: orange;
}

.sec_arouse_reverse .arouse_reverse_box .col .box {
  border: 1px solid #000000;
  padding: 20px;
  border-radius: 20px;
}

.sec_arouse_reverse .arouse_reverse_box .col .box h3 {
  text-align: center;
}

@media (min-width: 751px) {
  .sec_arouse_reverse .arouse_reverse_box {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .sec_arouse_reverse .arouse_reverse_box .col {
    flex: auto;
    width: 40%;
  }

  .sec_arouse_reverse .arouse_reverse_box .col.col_1 {
    display: inline-block;
    width: 40%;
    margin-left: 27.1%;
    margin-right: 27.1%;
    margin-bottom: 80px;
    position: relative;
  }

  .sec_arouse_reverse .arouse_reverse_box .col.col_1:before {
    content: "";
    position: absolute;
    display: block;
    background: url(/wp-content/uploads/arouse_reverse_icon.png) no-repeat center;
    background-size: contain;
    width: 78px;
    height: 32px;
    left: -100px;
    bottom: -45px;
    transform: rotate(-45deg);
  }

  .sec_arouse_reverse .arouse_reverse_box .col.col_1:after {
    content: "";
    position: absolute;
    display: block;
    background: url(/wp-content/uploads/arouse_reverse_icon.png) no-repeat center;
    background-size: contain;
    width: 78px;
    height: 32px;
    right: -100px;
    bottom: -45px;
    transform: rotate(45deg);
  }

  .sec_arouse_reverse .arouse_reverse_box .col.col_2 {
    margin-right: 85px;
    position: relative;
  }

  .sec_arouse_reverse .arouse_reverse_box .col.col_2:before {
    content: "";
    position: absolute;
    display: block;
    background: url(/wp-content/uploads/arouse_reverse_icon.png) no-repeat center;
    background-size: contain;
    width: 78px;
    height: 32px;
    right: -81.5px;
    top: 50%;
    transform: translateY(-50%);
  }

  .sec_arouse_reverse .arouse_reverse_box .col .box {
    min-height: 200px;
  }
}

@media (min-width: 751px) {
  .sec_rejuvenation .rejuvenation_box p {
    max-width: 85%;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 751px) {
  .sec_no_needle .no_needle_txt {
    max-width: 85%;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 751px) {
  .sec_herb .sec_herb_step {
    gap: 40px;
  }

  .sec_herb .sec_herb_step h3 {
    margin-top: 25px !important;
  }

  .sec_herb .sec_herb_step .step figure {
    position: relative;
  }

  .sec_herb .sec_herb_step .step figure:before {
    content: "";
    position: absolute;
    display: block;
    background: url(/wp-content/uploads/arrow_right.png) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    right: -32px;
  }
}

@media (-ms-high-contrast: none) and (min-width: 751px) {
  .sec_herb .sec_herb_step .col:not(:first-child) {
    margin-left: 40px !important;
  }
}

@media (max-width: 750px) {
  .sec_herb .sec_herb_step {
    gap: 40px;
  }

  .sec_herb .sec_herb_step:not(:last-child) {
    margin-bottom: 40px;
  }

  .sec_herb .sec_herb_step .step, .sec_herb .sec_herb_step .sp_step {
    position: relative;
  }

  .sec_herb .sec_herb_step .step:before, .sec_herb .sec_herb_step .sp_step:before {
    content: "";
    position: absolute;
    display: block;
    background: url(/wp-content/uploads/arrow_right.png) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.sec_order_este .color_primary_border {
  border: 2px solid #78674f;
  padding: 30px;
}

/*20221111*/
.plus {
  display: flex;
  align-items: center;
}

.font_large {
  font-size: 25px;
}

.text_center {
  text-align: center !important;
}

.post_content .highlight_c {
  background-color: #b2d8ff;
}

.post_content .highlight_d {
  background-color: #3cb37a;
}

.post_content .highlight_m {
  padding: 25px 15px;
  background-color: #eeeeee;
  text-align: center;
}

.wrap_en {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.wrap_en .item_en {
  border-radius: 50%;
  padding: 16px;
  width: 125px;
  height: 59px;
  background: #adffd6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrap_en .item_en::before {
  display: block;
  content: '';
  padding-top: 100%;
}

@media screen and (max-width: 359px) {
  .wrap_en {
    gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  }

  .wrap_en .item_en {
    padding: 4px;
  }
}

@media screen and (max-width: 750px) {
  .plus {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*# sourceMappingURL=custom.css.map */
