@charset "UTF-8";
#esthederm {
  width: 100%;
  min-width: 100px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
}

#esthederm .cf:before,
#esthederm .cf:after {
  content: "";
  display: block;
  clear: both;
}

#esthederm a {
  text-decoration: none;
  overflow: hidden;
  transition: 1s;
}
#esthederm a:hover {
  text-decoration: underline;
}
#esthederm a:hover img {
  transition: 1s;
  opacity: 0.7;
}

#esthederm h2,
#esthederm h3,
#esthederm h4,
#esthederm p,
#esthederm ul li,
#esthederm ol li {
  text-align: center;
  font-size: 1em;
}
#esthederm img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}

#esthederm .pc {
  display: block !important;
}

#esthederm .sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  #esthederm .pc {
    display: none !important;
  }
  #esthederm .sp {
    display: block !important;
  }
}
#esthederm .fw_b {
  font-weight: 900;
}

#esthederm #navbar {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 1.5em 0;
  border-top: 1px solid #555;
}
#esthederm #navbar ul {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
#esthederm #navbar ul li {
  display: inline-block;
  text-align: center;
  font-size: 1em;
}
#esthederm #navbar ul li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
}
#esthederm #navbar ul li a {
  padding: 0 2.6em;
  color: #fff;
}
#esthederm #navbar ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#esthederm #navbar ul li:first-child::before {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
}

#esthederm #navbar.sticky-visible {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  background-color: rgba(0, 0, 0, 0.7);
  animation: slideDown 0.3s ease-out forwards;
  border-top: none;
  padding: 1em 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0%);
  }
}
@media (max-width: 1023px) {
  #esthederm #navbar.sticky-visible {
    top: 114px;
    animation: slideDownTB 0.3s ease-out forwards;
  }
}
@keyframes slideDownTB {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  #esthederm #navbar {
    padding: 1em 0;
  }
  #esthederm #navbar ul li {
    font-size: clamp(12px, 3.3333333333vw, 25px);
    margin: 0 0.4em;
  }
  #esthederm #navbar ul li::after {
    content: none;
  }
  #esthederm #navbar ul li a {
    padding: 0 0.8em;
  }
  #esthederm #navbar ul li:first-child::before {
    content: none;
  }
  #esthederm #navbar.sticky-visible {
    padding: 0.8em 0;
    top: 59px;
    animation: slideDownSP 0.3s ease-out forwards;
  }
}
@keyframes slideDownSP {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 360px) {
  #esthederm #navbar ul li {
    font-size: clamp(11px, 3.3333333333vw, 25px);
  }
}
#esthederm .fade_in {
  opacity: 0;
  transition: 2s;
}

#esthederm .fade_in.is-show {
  opacity: 1;
}

#esthederm .more {
  display: none;
}

#esthederm .toggleButton {
  width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 1em;
  line-height: 1;
  box-sizing: border-box;
  font-size: 1.0625em;
  position: relative;
  transition: 1s;
}
#esthederm .toggleButton:hover {
  cursor: pointer;
  background: #ccc;
}
#esthederm .toggleButton:after {
  content: "＋";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
}

#esthederm .toggleButton.open::after {
  content: "−";
}

@media (max-width: 767px) {
  #esthederm .toggleButton {
    width: calc(90% - 20px);
    min-width: auto;
    font-size: clamp(16px, 4.1333333333vw, 31px);
    padding: 1em 0;
  }
}
#esthederm .tab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5em;
  gap: 0 10px;
}
#esthederm .tab-container .tab {
  font-size: 1.25em;
  text-align: center;
  width: 33.3333333333%;
  padding: 10px;
  border-bottom: 3px solid #ccc;
  cursor: pointer;
}
#esthederm .tab-container .tab.active {
  border-bottom: 3px solid #000;
}

#esthederm .content {
  display: none;
}

#esthederm .content.show {
  display: block;
}

@media (max-width: 767px) {
  #esthederm .tab-container .tab {
    font-size: clamp(18px, 4.1333333333vw, 31px);
    width: calc(50% - 20px);
  }
}
#esthederm .sp_tab-container {
  display: none;
}

@media (max-width: 767px) {
  #esthederm .sp_tab-container {
    display: flex;
    justify-content: center;
    gap: 0 10px;
    margin-bottom: 2em;
  }
  #esthederm .sp_tab-container .sp_tab {
    font-size: clamp(15px, 3.8666666667vw, 29px);
    letter-spacing: -0.1em;
    text-align: center;
    width: calc(50% - 20px);
    padding: 10px;
    border-bottom: 3px solid #ccc;
    cursor: pointer;
    box-sizing: border-box;
  }
  #esthederm .sp_tab-container .sp_tab.active {
    border-bottom: 3px solid #000;
  }
  #esthederm .sp_content {
    display: none;
  }
  #esthederm .sp_content.show {
    display: block;
  }
}
@media (max-width: 360px) {
  #esthederm .sp_tab-container .sp_tab {
    font-size: clamp(13px, 3.8666666667vw, 29px);
    width: calc(50% - 10px);
    padding: 5px;
  }
}
#esthederm .btn_a {
  text-align: center;
}
#esthederm .btn_a a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #000;
  position: relative;
  min-width: 400px;
  padding: 1em;
  line-height: 1;
  box-sizing: border-box;
  font-size: 1.125em;
}
#esthederm .btn_a a:hover {
  background: #666;
}
#esthederm .btn_a a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media (max-width: 767px) {
  #esthederm .btn_a a {
    width: calc(90% - 20px);
    min-width: auto;
    font-size: clamp(16px, 4.1333333333vw, 31px);
  }
}
#esthederm .btn_b {
  text-align: center;
}
#esthederm .btn_b a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  background: #fff;
  position: relative;
  min-width: 400px;
  padding: 1em;
  line-height: 1;
  box-sizing: border-box;
  font-size: 1.125em;
}
#esthederm .btn_b a:hover {
  background: #ccc;
}
#esthederm .btn_b a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media (max-width: 767px) {
  #esthederm .btn_b a {
    width: calc(90% - 20px);
    min-width: auto;
    font-size: clamp(16px, 4.1333333333vw, 31px);
    padding: 1em 0;
  }
}
#esthederm .inner {
  width: 910px;
  margin: 0 auto;
}

#esthederm .inner_l {
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  #esthederm .inner,
  #esthederm .inner_l {
    width: 100%;
  }
}
#esthederm #catch {
  background: #000;
}

@media (max-width: 767px) {
  #esthederm #catch img {
    width: 100%;
  }
}
#esthederm #intro {
  min-height: 550px;
  background: url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/bg_intro.png") no-repeat center bottom, linear-gradient(to bottom, #e2c2a1, #f9efe0);
  background-size: 1400px auto;
}
#esthederm #intro .txt_area {
  width: 450px;
  float: left;
  box-sizing: border-box;
}
#esthederm #intro .txt_area p {
  font-size: 1em;
  line-height: 1.75;
  padding-top: 5em;
  margin: 0 0 1.6em;
}
#esthederm #intro .txt_area .pt_0 {
  padding-top: 0;
}
#esthederm #intro .txt_area sup {
  font-size: 0.625em;
}
#esthederm #intro .txt_area .comments {
  font-size: 0.75em;
  margin: 0 0 2.6em;
  padding-top: 0;
}
#esthederm #intro ul {
  padding: 0 0 3em;
}
#esthederm #intro ul li {
  width: 48%;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 1%;
}
#esthederm #intro ul li a {
  line-height: 1.2;
  width: 100%;
  font-size: 0.875em;
  display: block;
  min-width: auto;
}
#esthederm #intro ul li a:after {
  right: 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #intro ul {
    padding: 0 15px 3em;
  }
}
@media (max-width: 767px) {
  #esthederm #intro {
    background: url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/sp_bg_intro.png") no-repeat center bottom, linear-gradient(to bottom, #e2c2a1, #f9efe0);
    background-size: 100%;
    padding-bottom: 146.67%;
  }
  #esthederm #intro .txt_area {
    width: 100%;
    float: none;
  }
  #esthederm #intro .txt_area p {
    font-size: clamp(15px, 3.6vw, 27px);
    line-height: 1.7;
  }
  #esthederm #intro .txt_area .comments {
    font-size: clamp(11px, 2.5333333333vw, 19px);
  }
  #esthederm #intro ul {
    padding: 0;
  }
  #esthederm #intro ul li {
    width: 100%;
    display: block;
    margin: 0 auto 1em;
  }
  #esthederm #intro ul li a {
    width: calc(90% - 20px);
    font-size: clamp(15px, 4vw, 30px);
    margin: 0 auto;
  }
  #esthederm #intro ul li a:after {
    right: 15px;
  }
}
@media (max-width: 360px) {
  #esthederm #intro .txt_area p {
    font-size: clamp(13px, 3.6vw, 27px);
  }
  #esthederm #intro ul li a {
    font-size: clamp(13px, 4vw, 30px);
  }
}
#esthederm #movie {
  margin-block: 3em;
  padding: 0 15px;
  max-width: 1280px;
  height: auto;
  margin: 3em auto;
}
#esthederm #movie .movie_inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 = 9 ÷ 16 = 0.5625 */
  height: 0;
  overflow: hidden;
}
#esthederm #movie .movie_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#esthederm #about {
  margin-bottom: 3em;
}
#esthederm #about > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#esthederm #about .txt_area {
  padding-right: 30px;
}
#esthederm #about .txt_area h3 {
  color: #c27428;
  font-size: 1.375em;
  line-height: 1.5454545455;
  margin: 1em auto;
}
#esthederm #about .txt_area p {
  font-size: 1.125em;
  line-height: 1.8333333333;
}
#esthederm #about .ph {
  width: 465px;
}
#esthederm #about .ph p {
  margin-top: 1em;
  font-size: 1.0625em;
  font-weight: 900;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #about .inner {
    padding: 0 15px;
  }
  #esthederm #about .txt_area p {
    font-size: clamp(15px, 2.1333333333vw, 18px);
  }
  #esthederm #about .ph {
    width: 45%;
  }
  #esthederm #about .ph p {
    font-size: clamp(14px, 2.1333333333vw, 17px);
  }
}
@media (max-width: 767px) {
  #esthederm #about {
    padding: 0 10px;
  }
  #esthederm #about .inner {
    padding: 0;
  }
  #esthederm #about > div {
    display: block;
  }
  #esthederm #about .txt_area {
    padding-right: 0;
  }
  #esthederm #about .txt_area h3 {
    font-size: clamp(16px, 4.5333333333vw, 34px);
    line-height: 1.5;
  }
  #esthederm #about .txt_area p {
    font-size: clamp(15px, 4vw, 30px);
    line-height: 1.7;
    margin-bottom: 1em;
  }
  #esthederm #about .ph {
    width: 100%;
  }
  #esthederm #about .ph p {
    margin-top: 0.5em;
    font-size: clamp(15px, 3.6vw, 27px);
    font-weight: 700;
  }
}
@media (max-width: 360px) {
  #esthederm #about .txt_area p {
    font-size: clamp(13px, 4vw, 30px);
  }
}
#esthederm #oil {
  background: #000;
  padding-bottom: 3em;
}

#esthederm #new_oil {
  min-height: 500px;
  background: #000 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/bg_newoil.jpg") no-repeat center center;
  background-size: 1400px auto;
}
#esthederm #new_oil .txt_area {
  width: 460px;
  float: right;
}
#esthederm #new_oil .txt_area img {
  max-width: 370px;
}
#esthederm #new_oil .txt_area h2 {
  font-size: 1.375em;
  margin-bottom: 1.4em;
  padding-top: 4.5em;
}
#esthederm #new_oil .txt_area h3 {
  font-size: 1em;
  margin: 1.4em auto 3em;
}
#esthederm #new_oil .txt_area .btn_b a {
  font-size: 1em;
  min-width: 320px;
}

@media (max-width: 767px) {
  #esthederm #new_oil {
    background: #000 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/sp_bg_newoil.jpg") no-repeat bottom center;
    background-size: 100%;
    padding-bottom: 104.67%;
    position: relative;
  }
  #esthederm #new_oil .txt_area {
    width: 100%;
    float: none;
    padding: 0 10px;
  }
  #esthederm #new_oil .txt_area img {
    max-width: 100%;
  }
  #esthederm #new_oil .txt_area h2 {
    font-size: clamp(21px, 5.4666666667vw, 41px);
    padding-top: 3em;
  }
  #esthederm #new_oil .txt_area h3 {
    margin-bottom: 0;
    font-size: clamp(16px, 4.1333333333vw, 31px);
  }
  #esthederm #new_oil .txt_area .btn_b a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3.74%;
    width: calc(90% - 20px);
    font-size: clamp(16px, 4.1333333333vw, 31px);
  }
}
@media (max-width: 360px) {
  #esthederm #new_oil .txt_area .btn_b a {
    min-width: auto;
    font-size: clamp(14px, 4.1333333333vw, 31px);
  }
}
#esthederm #ex_oil {
  min-height: 570px;
  background: #000 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/bg_exoil.jpg") no-repeat center center;
  background-size: 1400px auto;
}
#esthederm #ex_oil .txt_area {
  width: 460px;
}
#esthederm #ex_oil .txt_area img {
  max-width: 370px;
}
#esthederm #ex_oil .txt_area h3 {
  font-size: 1em;
  margin: 0 auto 3em;
  padding-top: 11.4em;
}
#esthederm #ex_oil .txt_area .btn_b a {
  font-size: 1em;
  min-width: 320px;
}

@media (max-width: 767px) {
  #esthederm #ex_oil {
    background: #000 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/sp_bg_exoil.jpg") no-repeat bottom center;
    background-size: 100%;
    padding-bottom: 120%;
    position: relative;
  }
  #esthederm #ex_oil .txt_area {
    width: 100%;
    float: none;
    padding: 0 10px;
  }
  #esthederm #ex_oil .txt_area img {
    max-width: 100%;
  }
  #esthederm #ex_oil .txt_area h3 {
    font-size: clamp(16px, 4.1333333333vw, 31px);
    margin-bottom: 0;
    padding-top: 1.6em;
  }
  #esthederm #ex_oil .txt_area .btn_b a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 9.13%;
    width: calc(90% - 20px);
    font-size: clamp(16px, 4.1333333333vw, 31px);
  }
}
@media (max-width: 360px) {
  #esthederm #ex_oil .txt_area .btn_b a {
    min-width: auto;
    font-size: clamp(14px, 4.1333333333vw, 31px);
  }
}
#esthederm #oil_features {
  background: #0c0606;
}
#esthederm #oil_features h2 {
  color: #fff;
  font-size: 1.375em;
  line-height: 1.8181818182;
  padding-top: 2em;
}
#esthederm #oil_features .section_lead {
  font-size: 1em;
  line-height: 2.0625;
  margin: 0.4em 0 2.6em;
  color: #fff;
}
#esthederm #oil_features #features_box > div {
  position: relative;
  min-height: 1px;
  width: 33.33333333%;
  float: left;
}
#esthederm #oil_features #features_box h3 {
  font-size: 0.9375em;
}
#esthederm #oil_features #features_box p {
  color: #fff;
  font-size: 0.8125em;
  line-height: 1.5384615385;
  margin-top: 0.8em;
}
#esthederm #oil_features sup {
  font-size: 0.5625em;
}
#esthederm #oil_features .comments {
  color: #fff;
  padding: 4em 0;
  font-size: 0.5625em;
  line-height: 1.6666666667;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #oil_features #features_box {
    padding: 0 15px;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  #esthederm #oil_features {
    padding: 0 10px;
  }
  #esthederm #oil_features h2 {
    font-size: clamp(20px, 5.0666666667vw, 38px);
    line-height: 1.7;
    padding-top: 0;
  }
  #esthederm #oil_features .section_lead {
    font-size: clamp(15px, 3.4666666667vw, 26px);
    line-height: 2.1;
    margin: 2em 0 2.6em;
  }
  #esthederm #oil_features #features_box {
    padding: 0;
  }
  #esthederm #oil_features #features_box > div {
    width: 100%;
  }
  #esthederm #oil_features #features_box .sp_mb_0 {
    margin-bottom: 0;
  }
  #esthederm #oil_features #features_box h3 {
    font-size: clamp(16px, 4vw, 30px);
  }
  #esthederm #oil_features #features_box p {
    font-size: clamp(15px, 3.4666666667vw, 26px);
    line-height: 1.5;
    margin-bottom: 3.5em;
  }
  #esthederm #oil_features #features_box div:last-child p {
    margin-bottom: 2em;
  }
  #esthederm #oil_features .comments {
    font-size: clamp(10px, 2vw, 15px);
    line-height: 1.6;
    padding: 0 0 2em;
    font-weight: 500;
  }
}
@media (max-width: 360px) {
  #esthederm #oil_features h2 {
    font-size: clamp(18px, 5.0666666667vw, 38px);
  }
  #esthederm #oil_features #features_box p {
    font-size: clamp(13px, 3.4666666667vw, 26px);
  }
}
#esthederm #fragrance {
  background: #fff;
  padding: 5em 0;
}
#esthederm #fragrance .txt_area {
  float: left;
  width: 46.7%;
}
#esthederm #fragrance .txt_area h2 {
  color: #c27428;
  font-size: 1.3125em;
  margin-bottom: 1em;
}
#esthederm #fragrance .txt_area p {
  font-size: 1.0625em;
  line-height: 1.3529411765;
  margin-bottom: 1.2em;
}
#esthederm #fragrance .txt_area .pc {
  color: #666666;
  margin-bottom: 0;
  font-size: 0.9375em;
  line-height: 1.8;
}
#esthederm #fragrance .ph {
  float: right;
  width: 53.3%;
  padding: 0 30px 0 0;
  box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #fragrance {
    padding: 5em 15px;
    box-sizing: border-box;
  }
  #esthederm #fragrance .txt_area {
    width: 50%;
  }
  #esthederm #fragrance .ph {
    width: 50%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  #esthederm #fragrance {
    padding: 2.6em 10px 2.6em;
  }
  #esthederm #fragrance .txt_area {
    float: none;
    width: 100%;
  }
  #esthederm #fragrance .txt_area h2 {
    font-size: clamp(17px, 4.4vw, 33px);
  }
  #esthederm #fragrance .txt_area p {
    font-size: clamp(15px, 4vw, 30px);
    line-height: 1.3;
    margin-bottom: 1.8em;
  }
  #esthederm #fragrance .ph {
    float: none;
    width: 100%;
    padding: 0;
  }
  #esthederm #fragrance .ph p {
    font-size: clamp(15px, 3.6vw, 27px);
    line-height: 1.7;
    margin: 3em 0 2em;
  }
}
@media (max-width: 360px) {
  #esthederm #fragrance .ph p {
    font-size: clamp(12px, 3.6vw, 27px);
  }
}
#esthederm #technology {
  min-height: 570px;
  background: #000 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/bg_tec.jpg") no-repeat center center;
  background-size: 1400px auto;
}
#esthederm #technology .txt_area {
  width: 540px;
  float: right;
}
#esthederm #technology .txt_area img {
  max-width: 370px;
}
#esthederm #technology .txt_area h2 {
  font-size: 1.5em;
  padding-top: 4.8em;
  margin-bottom: 1.5em;
}
#esthederm #technology .txt_area p {
  color: #fff;
  font-size: 1em;
  line-height: 2.0625;
  margin: 1.6em 0 1.6em;
}
#esthederm #technology .txt_area .comments {
  font-size: 0.75em;
}

@media (max-width: 767px) {
  #esthederm #technology {
    background: #000 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/sp_bg_tec.jpg") no-repeat center center;
    background-size: 100%;
  }
  #esthederm #technology .txt_area {
    width: 100%;
    float: none;
  }
  #esthederm #technology .txt_area img {
    max-width: 100%;
  }
  #esthederm #technology .txt_area h2 {
    padding-top: 7em;
    margin-bottom: 4em;
    font-size: clamp(18px, 3.6vw, 27px);
  }
  #esthederm #technology .txt_area h3 {
    margin-bottom: 78%;
  }
  #esthederm #technology .txt_area p {
    margin-bottom: 2em;
    font-size: clamp(15px, 3.7333333333vw, 28px);
    line-height: 1.9;
  }
  #esthederm #technology .txt_area .comments {
    font-size: clamp(11px, 2.5333333333vw, 19px);
    margin-bottom: 0;
    font-weight: 500;
  }
}
@media (max-width: 360px) {
  #esthederm #technology .txt_area p {
    padding: 0 10px;
    box-sizing: border-box;
    font-size: clamp(14px, 3.7333333333vw, 28px);
  }
}
#esthederm #movie2 {
  margin-block: 3em;
  padding: 0 15px;
  box-sizing: border-box;
  max-width: 1280px;
  height: auto;
  margin: 3em auto;
}
#esthederm #movie2 .movie_inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 = 9 ÷ 16 = 0.5625 */
  height: 0;
  overflow: hidden;
}
#esthederm #movie2 .movie_inner iframe,
#esthederm #movie2 .movie_inner div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#esthederm #lineup {
  padding-block-end: 6em;
}
#esthederm #lineup h2 {
  color: #c27428;
  font-size: 1.9375em;
  margin-bottom: 1.4em;
  padding-top: 1.8em;
}
#esthederm #lineup h3 {
  font-size: 1.375em;
  background: #f1f1f1;
  margin-bottom: 3em;
  padding: 0.4em;
}
#esthederm #lineup .flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
}
#esthederm #lineup .flex > div {
  width: 33.33333%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5em;
}
#esthederm #lineup .flex div:nth-child(4),
#esthederm #lineup .flex div:nth-child(5),
#esthederm #lineup .flex div:nth-child(6) {
  margin-bottom: 0px;
}
#esthederm #lineup .business_use > div {
  margin-bottom: 2.5em;
}
#esthederm #lineup .subttl {
  font-size: 0.8125em;
  margin-bottom: 0.2em;
  font-weight: 900;
}
#esthederm #lineup .ttl {
  color: #c27428;
  font-size: 1.0625em;
  line-height: 1em;
  letter-spacing: -0.05em;
}
#esthederm #lineup .ttl span {
  font-size: 0.6875em;
  margin-left: -0.2em;
  font-weight: 900;
}
#esthederm #lineup .size {
  font-size: 0.75em;
  margin: 0.4em 0 1em;
  font-weight: 900;
}
#esthederm #lineup .size span {
  font-size: 0.75em;
}
#esthederm #lineup img {
  margin-bottom: 1em;
}
#esthederm #lineup .btn_a a {
  min-width: auto;
  width: 100%;
  padding: 0.8em 10px;
  font-size: 0.875em;
}
#esthederm #lineup .comments {
  font-size: 0.625em;
  line-height: 1.7;
  max-width: 530px;
  margin: 0 auto;
  text-align: left;
  font-weight: 900;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #lineup h2 {
    padding-top: 2.8em;
  }
  #esthederm #lineup .content {
    padding: 0 15px;
  }
  #esthederm #lineup .flex {
    margin-left: -10px;
    margin-right: -10px;
  }
  #esthederm #lineup .flex > div {
    padding-left: 10px;
    padding-right: 10px;
  }
  #esthederm #lineup .ttl {
    font-size: clamp(15px, 2.1333333333vw, 16px);
    letter-spacing: -0.1em;
  }
}
@media (max-width: 767px) {
  #esthederm #lineup {
    padding-block-end: 4em;
  }
  #esthederm #lineup .content {
    padding: 0;
  }
  #esthederm #lineup h2 {
    font-size: clamp(21px, 5.3333333333vw, 40px);
    margin-bottom: 1em;
  }
  #esthederm #lineup h3 {
    font-size: clamp(21px, 5.3333333333vw, 40px);
  }
  #esthederm #lineup .flex {
    margin: 0;
  }
  #esthederm #lineup .flex > div {
    width: 100%;
    padding: 0;
    margin-bottom: 5em;
  }
  #esthederm #lineup .flex div:nth-child(4),
  #esthederm #lineup .flex div:nth-child(5) {
    margin-bottom: 5em;
  }
  #esthederm #lineup .flex div:nth-child(6) {
    margin-bottom: 0px;
  }
  #esthederm #lineup .subttl {
    font-size: clamp(16px, 4.1333333333vw, 31px);
    margin-bottom: 0.5em;
    font-weight: 700;
  }
  #esthederm #lineup .ttl {
    font-size: clamp(21px, 5.3333333333vw, 40px);
    letter-spacing: normal;
  }
  #esthederm #lineup .ttl span {
    font-size: clamp(15px, 3.3333333333vw, 25px);
    font-weight: 700;
  }
  #esthederm #lineup .size {
    font-size: clamp(15px, 3.3333333333vw, 25px);
  }
  #esthederm #lineup img {
    margin-bottom: 3em;
  }
  #esthederm #lineup .btn_a a {
    width: calc(90% - 20px);
    min-width: auto;
    font-size: clamp(16px, 4.1333333333vw, 31px);
  }
  #esthederm #lineup .comments {
    padding: 0 20px;
    font-size: clamp(14px, 2.8vw, 21px);
    line-height: 1.7;
    max-width: 100%;
    margin-top: 1em;
    font-weight: 700;
  }
  .sp_mb_0 {
    margin-bottom: 0 !important;
  }
}
#esthederm #kit_intro {
  padding: 6.5em 0 0;
  min-height: 575px;
  background: #f2f2f2 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/bg_set.png") no-repeat center center;
  background-size: 1400px auto;
}
#esthederm #kit_intro .txt_area {
  width: 440px;
  padding: 0 20px;
  box-sizing: border-box;
}
#esthederm #kit_intro .txt_area h2 {
  margin-bottom: 2em;
  font-size: 1.625em;
  line-height: 1.3076923077;
  margin-bottom: 1.5em;
  font-weight: 900;
}
#esthederm #kit_intro .txt_area h2 span {
  font-size: 19px;
  margin-bottom: 1em;
  display: inline-block;
}
#esthederm #kit_intro .txt_area p {
  font-size: 1.3125em;
  line-height: 1.619047619;
  margin-bottom: 0.8em;
  font-weight: 900;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #kit_intro .txt_area {
    width: 50%;
    box-sizing: border-box;
  }
  #esthederm #kit_intro .txt_area p {
    font-size: clamp(15px, 2.4vw, 18px);
  }
}
@media (max-width: 767px) {
  #esthederm #kit_intro {
    background: #f2f2f2 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/sp_bg_set.jpg") no-repeat center center;
    padding: 0 0 113.33%;
    min-height: auto;
    background-size: cover;
    margin-bottom: 1em;
  }
  #esthederm #kit_intro .txt_area {
    width: 100%;
  }
  #esthederm #kit_intro .txt_area h2 {
    font-size: clamp(19px, 4.9333333333vw, 37px);
    padding-top: 2.8em;
    font-weight: 700;
  }
  #esthederm #kit_intro .txt_area h2 span {
    font-size: clamp(15px, 3.7333333333vw, 28px);
  }
  #esthederm #kit_intro .txt_area p {
    font-size: clamp(16px, 4vw, 30px);
    line-height: 1.6;
    font-weight: 700;
  }
}
@media (max-width: 360px) {
  #esthederm #kit_intro .txt_area p {
    font-size: clamp(14px, 4.1333333333vw, 31px);
  }
}
#esthederm #oil_kit {
  padding-top: 0.1em;
}
#esthederm #oil_kit .btn_a a {
  min-width: 460px;
}

#esthederm #oil_kit .toggleButton {
  margin: 1em auto;
  line-height: 1.3em;
  background: #fff;
  border: 1px solid #000;
  color: #000;
  min-width: 460px;
}
#esthederm #oil_kit .toggleButton:hover {
  background: #ccc;
}

@media (max-width: 767px) {
  #esthederm #oil_kit .btn_a a {
    min-width: auto;
    width: calc(90% - 20px);
    line-height: 1.2;
  }
  #esthederm #oil_kit .toggleButton {
    min-width: auto;
    width: calc(90% - 40px);
    width: calc(90% - 20px);
  }
  #esthederm #oil_kit .toggleButton:after {
    right: 10px;
  }
}
@media (max-width: 360px) {
  #esthederm #oil_kit .toggleButton {
    font-size: clamp(14px, 4vw, 30px);
    width: calc(90% - 20px);
  }
}
#esthederm #special_kit h2 {
  font-size: 1.5625em;
  background: #f1f1f1;
  padding: 0.2em 0;
  margin-top: 3em;
  font-weight: 900;
}
#esthederm #special_kit h3 {
  font-size: 2em;
  color: #c27428;
  margin: 0.2em 0 1em;
  font-weight: 900;
}
#esthederm #special_kit p {
  font-size: 1.125em;
  line-height: 1.7777777778;
}
#esthederm #special_kit .btn_a {
  margin-top: 2em;
  line-height: 1;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #special_kit img {
    padding: 0 15px;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  #esthederm #special_kit h2 {
    font-size: clamp(19px, 4.9333333333vw, 37px);
    margin-top: 0;
    font-weight: 700;
  }
  #esthederm #special_kit h3 {
    font-size: clamp(22px, 6.1333333333vw, 46px);
    line-height: 1.4;
    font-weight: 700;
  }
  #esthederm #special_kit p {
    font-size: clamp(16px, 4vw, 30px);
    line-height: 1.6;
    margin-bottom: 2.5em;
  }
  #esthederm #special_kit .btn_a {
    margin-bottom: 0;
  }
  #esthederm #special_kit img {
    padding: 0;
  }
}
@media (max-width: 360px) {
  #esthederm #special_kit h2 {
    font-size: clamp(16px, 4.9333333333vw, 37px);
  }
  #esthederm #special_kit h3 {
    font-size: clamp(18px, 5.8666666667vw, 44px);
  }
  #esthederm #special_kit p {
    font-size: clamp(14px, 4vw, 30px);
  }
}
#esthederm #aging_care {
  padding-top: 3em;
}
#esthederm #aging_care h3 {
  font-size: 2.0625em;
  color: #c27428;
  margin-bottom: 1em;
  font-weight: 900;
}
#esthederm #aging_care .note {
  max-width: 600px;
  margin: 0 auto;
}
#esthederm #aging_care .note .subttl {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1em;
  padding: 0.5em 0;
  margin-bottom: 1em;
  font-weight: 900;
}
#esthederm #aging_care .note .lead {
  font-size: 1.1875em;
  line-height: 1.4736842105;
  color: #c27428;
  margin-bottom: 1em;
  font-weight: 900;
}
#esthederm #aging_care .note ul {
  margin: 0 0 3em;
  padding: 0;
}
#esthederm #aging_care .note ul li {
  text-align: left;
  background: url(../img/icon_check.png) left top 3px no-repeat;
  background-size: 10px 14px;
  padding-left: 15px;
  margin-bottom: 0.5em;
  font-weight: 900;
}
#esthederm #aging_care .comments {
  font-size: 0.75em;
  line-height: 4.0833333333;
  font-weight: 900;
}
#esthederm #aging_care .flex {
  display: flex;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}
#esthederm #aging_care .flex > div {
  width: 33.33333%;
  box-sizing: border-box;
  margin-bottom: 2em;
}
#esthederm #aging_care .flex img {
  margin-bottom: 0.6em;
}
#esthederm #aging_care .flex ol {
  margin: 0;
  padding: 0;
}
#esthederm #aging_care .flex ol li {
  text-align: left;
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.8125em;
  line-height: 1.5384615385;
  margin-bottom: 0.3em;
  letter-spacing: -0.01em;
  font-weight: 900;
}
#esthederm #aging_care .flex ol li span {
  font-size: 0.8em;
}
#esthederm #aging_care .flex p {
  font-size: 0.8125em;
  line-height: 1.5384615385;
  margin: 0;
}
#esthederm #aging_care .flex p span {
  font-size: 0.7em;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #aging_care .flex {
    padding: 0 15px;
    margin-left: -10px;
    margin-right: -10px;
  }
  #esthederm #aging_care .flex > div {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  #esthederm #aging_care h3 {
    font-size: clamp(22px, 6.2666666667vw, 47px);
    line-height: 1.4;
    font-weight: 700;
  }
  #esthederm #aging_care .note {
    max-width: 100%;
    width: calc(100% - 40px);
  }
  #esthederm #aging_care .note .lead {
    font-size: clamp(16px, 4.1333333333vw, 31px);
    line-height: 1.8;
    font-weight: 700;
  }
  #esthederm #aging_care .note ul {
    margin: 0 0 5em;
  }
  #esthederm #aging_care .note ul li {
    font-size: clamp(15px, 3.6vw, 27px);
    line-height: 1.5;
    background-size: 2.4vw 3.3333333333vw;
    padding-left: 3.4666666667vw;
    background-position: left top 0.4vw;
    font-weight: 700;
  }
  #esthederm #aging_care .comments {
    width: calc(100% - 15px);
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.6;
    margin: 0 auto;
  }
  #esthederm #aging_care .flex {
    padding: 0 20px;
  }
  #esthederm #aging_care .flex > div {
    width: 100%;
    margin-bottom: 4em;
  }
  #esthederm #aging_care .flex img {
    margin-bottom: 1em;
  }
  #esthederm #aging_care .flex ol {
    margin-top: 1em;
  }
  #esthederm #aging_care .flex ol li {
    font-size: clamp(16px, 4vw, 30px);
    line-height: 1.3;
    margin-bottom: 0.5em;
    font-weight: 700;
  }
  #esthederm #aging_care .flex ol li span {
    font-size: clamp(14px, 2.6666666667vw, 20px);
  }
  #esthederm #aging_care .flex p {
    font-size: clamp(16px, 4vw, 30px);
    line-height: 1.3;
    margin-top: 1em;
  }
  #esthederm #aging_care .flex p span {
    font-size: clamp(14px, 2.6666666667vw, 20px);
  }
}
#esthederm #treatment_kit {
  margin: 6em 0;
}
#esthederm #treatment_kit h2 {
  background: #f1f1f1;
  font-size: 1.625em;
  padding: 0.5em 0;
  line-height: 1em;
  font-weight: 900;
}
#esthederm #treatment_kit h3 {
  font-size: 1.9375em;
  color: #c27428;
  margin: 0.4em 0 1.2em;
  font-weight: 900;
}
#esthederm #treatment_kit .kit_txt {
  font-size: 1.1875em;
  line-height: 2.2631578947;
  margin-bottom: 2.2em;
}
#esthederm #treatment_kit h4 {
  margin-bottom: 2em;
}
#esthederm #treatment_kit h4 span {
  background: #c27428;
  color: #fff;
  font-size: 1.75em;
  padding: 0 2em;
  display: inline-block;
}
#esthederm #treatment_kit .comments {
  font-size: 0.9375em;
  line-height: 1.8;
  margin-top: 2.4em;
  font-weight: 900;
}
#esthederm #treatment_kit .comments span {
  font-size: 0.75em;
  margin-left: -0.2em;
}
#esthederm #treatment_kit #treatment_kit_cat {
  display: flex;
  justify-content: center;
  margin-top: 5em;
  flex-wrap: wrap;
}
#esthederm #treatment_kit #treatment_kit_cat > div {
  width: 50%;
  box-sizing: border-box;
  padding: 0 30px;
}
#esthederm #treatment_kit #treatment_kit_cat h4 {
  margin-bottom: 1.4em;
}
#esthederm #treatment_kit #treatment_kit_cat h4 span {
  font-size: 1.25em;
  padding: 0 1em;
  min-width: 230px;
  display: inline-block;
}
#esthederm #treatment_kit #treatment_kit_cat p {
  font-size: 1.0625em;
  line-height: 1.6470588235;
  text-align: left;
  font-weight: 900;
  margin-top: 1.6em;
}
#esthederm #treatment_kit .btn_a {
  margin-top: 5em;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #esthederm #treatment_kit .pc img {
    padding: 0 15px;
    box-sizing: border-box;
  }
  #esthederm #treatment_kit .comments {
    letter-spacing: -0.1em;
  }
}
@media (max-width: 767px) {
  #esthederm #treatment_kit {
    margin: 0;
  }
  #esthederm #treatment_kit h2 {
    font-size: clamp(19px, 4.9333333333vw, 37px);
    font-weight: 700;
  }
  #esthederm #treatment_kit h3 {
    font-size: clamp(22px, 5.8666666667vw, 44px);
    font-weight: 700;
  }
  #esthederm #treatment_kit .kit_txt {
    font-size: clamp(16px, 4vw, 30px);
    line-height: 1.8;
  }
  #esthederm #treatment_kit h4 span {
    font-size: clamp(21px, 5.3333333333vw, 40px);
  }
  #esthederm #treatment_kit .comments {
    letter-spacing: normal;
    font-weight: 700;
  }
  #esthederm #treatment_kit .sp_product {
    padding: 0 15px;
  }
  #esthederm #treatment_kit .sp_product img {
    margin-bottom: 1.6em;
  }
  #esthederm #treatment_kit .sp_product > div {
    margin-bottom: 6em;
  }
  #esthederm #treatment_kit .sp_product > div p {
    text-align: left;
    font-size: clamp(16px, 4vw, 30px);
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 0.5em;
  }
  #esthederm #treatment_kit .sp_product > div p span {
    font-size: clamp(14px, 2.6666666667vw, 20px);
  }
  #esthederm #treatment_kit .sp_product div:last-child {
    margin-bottom: 0;
  }
  #esthederm #treatment_kit #treatment_kit_cat {
    margin-top: 0;
  }
  #esthederm #treatment_kit #treatment_kit_cat > div {
    width: 100%;
    padding: 0;
  }
  #esthederm #treatment_kit #treatment_kit_cat h4 {
    margin-top: 4em;
  }
  #esthederm #treatment_kit #treatment_kit_cat h4 span {
    font-size: clamp(21px, 5.3333333333vw, 40px);
  }
  #esthederm #treatment_kit #treatment_kit_cat p {
    padding: 0 15px;
    font-size: clamp(17px, 4.4vw, 33px);
    line-height: 1.6;
    font-weight: 700;
  }
  #esthederm #treatment_kit .btn_a {
    margin-top: 2em;
  }
}
@media (max-width: 360px) {
  #esthederm #treatment_kit h2 {
    font-size: clamp(16px, 4.9333333333vw, 37px);
  }
  #esthederm #treatment_kit h3 {
    font-size: clamp(18px, 5.8666666667vw, 44px);
  }
  #esthederm #treatment_kit .kit_txt {
    font-size: clamp(14px, 4vw, 30px);
  }
  #esthederm #treatment_kit #treatment_kit_cat h4 span {
    font-size: clamp(18px, 5.3333333333vw, 40px);
  }
}
#esthederm #cyclo {
  padding: 6em 0 0;
  background: #231815 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/bg_cyclo.jpg") no-repeat center bottom;
  background-size: 1400px auto;
  position: relative;
  min-height: 680px;
}
#esthederm #cyclo h2 img {
  max-width: 340px;
}
#esthederm #cyclo .btn_b a {
  min-width: 400px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14.71%;
}

@media (max-width: 767px) {
  #esthederm #cyclo {
    background: #231815 url("/_ui/responsive/common/ui_assets/online/bg/pickup/esthederm/img/sp_bg_cyclo.jpg") no-repeat center bottom;
    min-height: auto;
    background-size: contain;
    padding-bottom: 106.67%;
    margin-top: 2em;
  }
  #esthederm #cyclo h2 {
    width: calc(90% - 20px);
    margin: 0 auto;
  }
  #esthederm #cyclo h2 img {
    padding-top: 3em;
    max-width: 100%;
  }
  #esthederm #cyclo .btn_b a {
    min-width: auto;
    bottom: 11.65%;
    width: calc(90% - 20px);
    font-size: clamp(16px, 4.1333333333vw, 31px);
    padding: 1em 0;
  }
}
@media (max-width: 360px) {
  #esthederm #cyclo .btn_b a {
    font-size: clamp(13px, 4.1333333333vw, 31px);
  }
  #esthederm #cyclo .btn_b a::after {
    right: 10px;
  }
}
#esthederm #foot_btn .btn_a {
  margin-top: 3em;
}

@media (max-width: 360px) {
  #esthederm #foot_btn .btn_a a {
    font-size: clamp(13px, 4.1333333333vw, 31px);
  }
}/*# sourceMappingURL=page.css.map */