@charset "UTF-8";
/* ====================================================
Base style & container
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

.inner {
  display: block;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1240px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 4%;
  }
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

/*--base style--*/
a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

input input, input button, input textarea, input select, button input, button button, button textarea, button select, textarea input, textarea button, textarea textarea, textarea select, select input, select button, select textarea, select select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

.img100 {
  width: 100%;
}

.rollover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.rollover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-box.content-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-box.content-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-box.content-bw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-box.content-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-box.align-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-box.align-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-box.align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-box.align-st {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Header
==================================================== */
#main-header {
  width: 100%;
  background: #fff;
}

/*--nav--*/
@media screen and (max-width: 768px) {
  nav.navGlobal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #000;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    background: #fff;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    animation-name: fade-in;
    -moz-animation-duration: .35s;
    -moz-animation-name: fade-in;
    -webkit-animation-duration: .35s;
    -webkit-animation-name: fade-in;
    z-index: 2;
  }
}

@media screen and (max-width: 768px) {
  nav.navGlobal .navGlobalIn {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
}

nav.navGlobal.active {
  display: block;
  opacity: 1;
}

.navToggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 3;
    background: #666;
    text-align: center;
  }
  .navToggle span {
    display: block;
    position: absolute;
    margin: 0 auto;
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -o-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0;
    right: 0;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 18px;
  }
  .navToggle span:nth-child(3) {
    top: 27px;
  }
  .navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
  .navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

/* ====================================================
footer
==================================================== */
.pagetop {
  position: fixed;
  /*固定*/
  bottom: 20px;
  /*場所を右下に移動*/
  right: 20px;
  /*場所を右下に移動*/
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  line-height: 60px;
  background: #ccc;
  z-index: 10;
}

.pagetop i {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
}

@media screen and (min-width: 769px) {
  .pagetop:hover {
    opacity: .6;
  }
}

#main-footer {
  padding: 40px 0 70px;
  background: #000;
  -webkit-font-smoothing: subpixel-antialiased;
}

@media screen and (max-width: 640px) {
  #main-footer {
    padding: 30px 0;
  }
}

#main-footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main-footer .inner .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  #main-footer .inner .contact {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    text-align: center;
  }
}

#main-footer .inner .contact .function {
  margin-left: 20px;
  color: #989898;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}

@media screen and (max-width: 640px) {
  #main-footer .inner .contact .function {
    margin: 20px 0;
    width: 100%;
    text-align: center;
  }
}

#main-footer .inner .sns {
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  #main-footer .inner .sns {
    width: 100%;
    text-align: center;
  }
}

#main-footer .inner .sns a {
  margin-left: 20px;
}

@media screen and (max-width: 640px) {
  #main-footer .inner .sns a {
    margin: 0 10px;
  }
}

/* ====================================================
animation
==================================================== */
.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.7s ease-in, -webkit-transform .8s ease;
  transition: opacity 0.7s ease-in, -webkit-transform .8s ease;
  -o-transition: opacity 0.7s ease-in, transform .8s ease;
  transition: opacity 0.7s ease-in, transform .8s ease;
  transition: opacity 0.7s ease-in, transform .8s ease, -webkit-transform .8s ease;
}

.fadeIn.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.fadeIn.delay03s {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fadeIn.delay05s {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn.delay07s {
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.fadeIn.delay09s {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.fadeIn.delay11s {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.fadeIn.delay13s {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.fadeIn.delay15s {
  -webkit-transition-delay: 1.5s;
       -o-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.fadeIn.delay20s {
  -webkit-transition-delay: 2s;
       -o-transition-delay: 2s;
          transition-delay: 2s;
}

/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
/*見出しMODULE*/
.ttlCom01 {
  color: #afafaf;
  font-size: 72px;
  font-size: 7.2rem;
  font-family: "Cinzel", serif;
  font-weight: 400;
  line-height: .8;
}

@media screen and (max-width: 768px) {
  .ttlCom01 {
    font-size: 72px;
    font-size: 9.6vw;
    /* 750 = design width, mobile only */
  }
}

/*テキストMODULE*/
.al-c {
  text-align: center;
}

.al-r {
  text-align: right;
}

.al-l {
  text-align: left;
}

.cinz {
  font-family: "Cinzel", serif;
  font-weight: 400;
}

.cinz.b {
  font-weight: 700;
}

.lato {
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

.min {
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
}

/*リンクMODULE*/
.txtLink {
  text-decoration: none;
}

.txtLink:hover {
  text-decoration: underline;
}

/*ボタンMODULE*/
.btn {
  width: 100px;
  height: 50px;
  border: 2px solid #FFCCCC;
  text-align: center;
  line-height: 50px;
}

.btnRed {
  color: red;
  background-color: #FFCCCC;
}

.btnBlue {
  color: white;
  border-color: blue;
  background-color: blue;
}

/*リストMODULE*/
/*ボックスMODULE*/
/*グリッドMODULE*/
/*フォームMODULE*/
/*--//MODULE--*/
/* ====================================================
index
==================================================== */
.sec-concept {
  position: relative;
  margin-top: 150px;
  padding-top: 30px;
  background: url(../img/img_concept.jpg) no-repeat center top 30px;
  background-size: cover;
  height: 840px;
}

@media screen and (max-width: 1000px) {
  .sec-concept {
    background-position: left 30% top;
  }
}

@media screen and (max-width: 768px) {
  .sec-concept {
    margin-top: 70px;
    padding: 20px 0 75vw;
    background: url(../img/img_concept_sp.jpg) no-repeat center bottom;
    background-size: contain;
    height: auto;
  }
}

.sec-concept .ttlCom01 {
  margin: -30px auto 0;
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
}

@media screen and (max-width: 768px) {
  .sec-concept .ttlCom01 {
    margin: -20px auto 0;
    padding: 0 4vw;
  }
}

@media screen and (min-width: 769px) {
  .sec-concept .txt-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1240px;
  }
}

@media screen and (max-width: 768px) {
  .sec-concept .txt-box {
    margin-top: 40px;
    padding: 0 4vw;
  }
}

.sec-concept .txt-box p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  max-width: 480px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .sec-concept .txt-box p {
    max-width: 100%;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2;
  }
}

.sec-concept .txt-box .ttl-sub {
  margin: 30px 0;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .sec-concept .txt-box .ttl-sub {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-concept .txt-box .lead {
  margin-bottom: 30px;
  max-width: 100%;
  color: #b77a20;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .sec-concept .txt-box .lead {
    margin-bottom: 20px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 380px) {
  .sec-concept .txt-box .lead {
    font-size: 40px;
    font-size: 5.33333vw;
    /* 750 = design width, mobile only */
  }
}

.sec-care {
  padding: 70px 0 85px;
}

@media screen and (max-width: 768px) {
  .sec-care {
    padding: 60px 0;
  }
}

.sec-care .careBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-care .careBox .txt-box {
  width: 44%;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .sec-care .careBox .txt-box {
    margin-bottom: 20px;
    padding: 0 4vw;
    width: 100%;
    text-align: left;
  }
}

.sec-care .careBox .txt-box .ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .sec-care .careBox .txt-box .ttl {
    margin-bottom: 30px;
    color: rgba(196, 179, 168, 0.2);
    font-size: 90px;
    font-size: 12vw;
    /* 750 = design width, mobile only */
    line-height: .8;
  }
}

.sec-care .careBox .txt-box .cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .sec-care .careBox .txt-box .cap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.sec-care .careBox .txt-box .cap .no {
  position: relative;
  padding-bottom: 5px;
  color: #c69861;
  font-size: 60px;
  font-size: 6rem;
  font-style: italic;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .sec-care .careBox .txt-box .cap .no {
    font-size: 40px;
    font-size: 4rem;
  }
}

.sec-care .careBox .txt-box .cap .no:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c69861;
}

.sec-care .careBox .txt-box .cap p {
  padding-left: 30px;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sec-care .careBox .txt-box .cap p {
    padding-left: 20px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 769px) {
  .sec-care .careBox .img {
    width: 55%;
  }
}

@media screen and (min-width: 769px) {
  .sec-care .careBox.care01 {
    margin-bottom: 75px;
  }
  .sec-care .careBox.care01 .txt-box {
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .sec-care .careBox.care01 {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 769px) {
  .sec-care .careBox.care02 .txt-box {
    padding-right: 20px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    z-index: 1;
  }
  .sec-care .careBox.care02 .txt-box .ttl {
    margin-left: -17.5%;
    width: 586px;
    width: 115.38%;
  }
  .sec-care .careBox.care02 .img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 1240px) {
  .sec-care .inner {
    padding: 0;
  }
}

.sec-spec {
  position: relative;
  padding-top: 30px;
  background: url(../img/bg_scalp2.png) no-repeat center top 30px;
  background-size: 100%;
}

.sec-spec:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  height: calc(100% - 30px);
  background: #34271e;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .sec-spec {
    padding-top: 0;
    background: url(../img/bg_scalp2_sp.jpg) no-repeat center top;
    background-size: 100%;
  }
}

.sec-spec .ttlCom01 {
  margin-top: -30px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .sec-spec .ttlCom01 {
    margin-top: -20px;
  }
}

.sec-spec .ttl-item {
  margin: 70px 0 40px;
}

@media screen and (max-width: 768px) {
  .sec-spec .ttl-item {
    margin: 50px auto 40px;
    width: 70%;
  }
}

.sec-spec .box-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-spec .box-top .img-item {
  width: 40.33%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-top .img-item {
    margin-bottom: 30px;
    width: 100%;
  }
  .sec-spec .box-top .img-item img {
    width: 50%;
  }
}

.sec-spec .box-top .txt-box {
  width: 54.25%;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-top .txt-box {
    width: 100%;
  }
}

.sec-spec .box-top .txt-box .mode {
  margin-bottom: 35px;
  background: #eae8e7;
}

.sec-spec .box-top .txt-box .mode .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 15px 10px 15px 7.6%;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  background: #c69861;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .sec-spec .box-top .txt-box .mode .ttl {
    padding: 15px 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-spec .box-top .txt-box .mode .ttl .no {
  position: relative;
  margin-right: 1em;
  font-style: italic;
  line-height: 1;
}

.sec-spec .box-top .txt-box .mode .ttl .no:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

.sec-spec .box-top .txt-box .mode .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 30px 15px 7.6%;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-top .txt-box .mode .desc {
    padding: 20px 4% 30px;
  }
}

.sec-spec .box-top .txt-box .mode .desc .desc-txt {
  padding-top: 6%;
  width: 60%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-top .txt-box .mode .desc .desc-txt {
    margin-bottom: 20px;
    padding-top: 0;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.sec-spec .box-top .txt-box .mode .desc .desc-txt .desc-ttl {
  margin-bottom: 25px;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .sec-spec .box-top .txt-box .mode .desc .desc-txt .desc-ttl {
    margin-bottom: 15px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.sec-spec .box-top .txt-box .mode .desc .desc-txt small {
  margin-top: 10px;
  display: block;
}

.sec-spec .box-top .txt-box .mode .img {
  width: 35.7%;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-top .txt-box .mode .img {
    width: 100%;
    text-align: center;
  }
}

.sec-spec .box-btm {
  padding: 20px 0 60px;
  color: #fff;
  background: #34271e;
}

.sec-spec .box-btm .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-spec .box-btm .design {
  margin-top: 25px;
  width: 41%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .design {
    margin: 0 0 40px;
    width: 100%;
  }
}

.sec-spec .box-btm .design .txt {
  width: 55%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .design .txt {
    width: 74%;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.76923;
  }
}

.sec-spec .box-btm .design .txt .ttl {
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.33333;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .design .txt .ttl {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.sec-spec .box-btm .design .txt .ttl span {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .design .txt .ttl span {
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-spec .box-btm .design .img {
  width: 38.5%;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .design .img {
    width: 25%;
  }
  .sec-spec .box-btm .design .img img {
    width: 100%;
  }
}

.sec-spec .box-btm .design .img02 {
  margin-top: -9.1%;
}

@media screen and (max-width: 1200px) {
  .sec-spec .box-btm .design .img02 {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .design .img02 {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
}

.sec-spec .box-btm .point {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .point {
    width: 100%;
  }
}

.sec-spec .box-btm .point .head {
  margin-bottom: 35px;
  padding: 5px 0;
  font-size: 24px;
  font-size: 2.4rem;
  background: url(../img/bg_ttl_mode.png) repeat-y center center;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .point .head {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
    background-size: 110%;
  }
}

.sec-spec .box-btm .point .point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-spec .box-btm .point .point-list li {
  margin-bottom: 20px;
  width: 47%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 1000px) {
  .sec-spec .box-btm .point .point-list li {
    width: 100%;
  }
}

.sec-spec .box-btm .point .point-list li .ttl {
  margin-bottom: 10px;
  color: #c69861;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .point .point-list li .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-spec .box-btm .point .point-list li .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.sec-spec .box-btm .point .point-list li img {
  width: 77px;
}

.sec-spec .box-btm .point .point-list li p {
  padding-left: 9%;
  width: calc(100% - 77px);
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .sec-spec .box-btm .point .point-list li p {
    padding-left: 4%;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.46154;
  }
}

@media screen and (max-width: 1170px) {
  .sec-spec .box-btm .point .point-list li:nth-child(3) .ttl {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.sec-howto {
  padding: 130px 0 110px;
}

@media screen and (max-width: 768px) {
  .sec-howto {
    padding: 60px 0;
  }
}

.sec-howto .ttlCom01 {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .sec-howto .ttlCom01 {
    margin-bottom: 30px;
  }
}

.sec-howto .ttlCom01 .cap {
  display: block;
  margin-top: 25px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .sec-howto .ttlCom01 .cap {
    margin-top: 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-howto .lead {
  margin-bottom: 50px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667;
}

@media screen and (max-width: 768px) {
  .sec-howto .lead {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    text-align: left;
  }
}

.sec-howto .ready {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 55px;
  padding: 30px;
  background: #d3c6be;
}

@media screen and (max-width: 900px) {
  .sec-howto .ready {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .sec-howto .ready {
    padding: 30px 4%;
  }
}

.sec-howto .ready .img {
  margin-top: -55px;
  width: 140px;
}

@media screen and (max-width: 640px) {
  .sec-howto .ready .img {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
}

.sec-howto .ready .txt-box {
  padding-right: 2%;
  width: 43%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
}

@media screen and (max-width: 900px) {
  .sec-howto .ready .txt-box {
    padding-right: 0;
    width: calc(100% - 140px);
  }
}

@media screen and (max-width: 640px) {
  .sec-howto .ready .txt-box {
    width: 100%;
  }
}

.sec-howto .ready .txt-box .ttl {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

.sec-howto .ready .txt-box .ttl span {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid #000;
}

.sec-howto .ready .img02 {
  width: 42%;
}

@media screen and (max-width: 900px) {
  .sec-howto .ready .img02 {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }
  .sec-howto .ready .img02 img {
    width: 100%;
  }
}

.sec-howto .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-howto .step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
  width: 47.5%;
}

.sec-howto .step-item:first-child, .sec-howto .step-item:nth-child(2) {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .sec-howto .step-item {
    margin-bottom: 40px !important;
    width: 100%;
  }
}

.sec-howto .step-item .img {
  width: 44.65%;
}

@media screen and (max-width: 768px) {
  .sec-howto .step-item .img {
    width: 35%;
  }
}

@media screen and (max-width: 640px) {
  .sec-howto .step-item .img {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  .sec-howto .step-item .img img {
    width: 100%;
    max-width: 400px;
  }
}

.sec-howto .step-item .txt-box {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .sec-howto .step-item .txt-box {
    width: 62%;
  }
}

@media screen and (max-width: 640px) {
  .sec-howto .step-item .txt-box {
    width: 100%;
  }
}

.sec-howto .step-item .txt-box .step-no {
  color: #c69861;
  font-size: 30px;
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .sec-howto .step-item .txt-box .step-no {
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-howto .step-item .txt-box .step-no span {
  font-size: 48px;
  font-size: 4.8rem;
}

@media screen and (max-width: 768px) {
  .sec-howto .step-item .txt-box .step-no span {
    font-size: 30px;
    font-size: 3rem;
  }
}

.sec-howto .step-item .txt-box .ttl {
  margin: 20px 0 25px;
  padding: 5px 15px;
  color: #fff;
  font-size: 21px;
  font-size: 2.1rem;
  background: #c69961;
  background: -webkit-gradient(left top, right top, color-stop(0%, #c69961), color-stop(65%, rgba(198, 153, 97, 0.69)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, #c69961 0%, rgba(198, 153, 97, 0.69) 65%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(#c69961), color-stop(65%, rgba(198, 153, 97, 0.69)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #c69961 0%, rgba(198, 153, 97, 0.69) 65%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c69961', endColorstr='#ffffff', GradientType=1 );
}

@media screen and (max-width: 768px) {
  .sec-howto .step-item .txt-box .ttl {
    margin: 10px 0 15px;
    padding: 6px 10px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.sec-howto .step-item .txt-box p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .sec-howto .step-item .txt-box p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143;
  }
}

.sec-howto .caution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 110px;
  padding: 20px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  border: 1px solid #d2d2d2;
}

@media screen and (max-width: 768px) {
  .sec-howto .caution {
    margin-bottom: 50px;
    padding: 20px 15px;
  }
}

.sec-howto .caution span {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.33333;
}

.sec-howto .mov-box .ttl {
  margin-bottom: 60px;
  padding-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .sec-howto .mov-box .ttl {
    margin-bottom: 20px;
  }
}

.sec-howto .mov-box .ttl span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  line-height: 47px;
  width: 100%;
  max-width: 328px;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  background: #000;
  border-radius: 25px;
}

@media screen and (max-width: 768px) {
  .sec-howto .mov-box .ttl span {
    width: 90%;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 35px;
  }
}

.sec-howto .mov-box .ttl span:before {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 8px 0 8px;
  border-color: #000000 transparent transparent transparent;
}

.sec-howto .mov-box .mov {
  margin: 0 auto;
  max-width: 800px;
}

.sec-howto .mov-box .mov-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.28%;
}

.sec-howto .mov-box .mov-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec-drScalp2 {
  padding: 125px 0 50px;
  background: #edecf0 url(../img/img_scalp2_01.png) no-repeat center top;
  background-size: 100%;
}

@media screen and (max-width: 1000px) {
  .sec-drScalp2 {
    background-size: 120%;
    background-position: left 50% top;
  }
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 {
    padding-top: 90vw;
    background: #edecf0 url(../img/img_scalp2_01_sp.jpg) no-repeat center top;
    background-size: 100%;
  }
}

.sec-drScalp2 .product {
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product {
    padding-bottom: 40px;
    text-align: center;
  }
}

.sec-drScalp2 .product .txt-box {
  margin-right: 7.5%;
  max-width: 430px;
  width: 50%;
  float: right;
}

@media screen and (max-width: 1000px) {
  .sec-drScalp2 .product .txt-box {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    float: none;
  }
}

.sec-drScalp2 .product .txt-box .head {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .head {
    margin-bottom: 30px;
    padding: 0 10%;
  }
}

.sec-drScalp2 .product .txt-box .spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .spec {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sec-drScalp2 .product .txt-box .spec .spec-txt {
  width: 260px;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .spec .spec-txt {
    width: 200px;
  }
}

.sec-drScalp2 .product .txt-box .spec .spec-txt .ttl {
  margin-bottom: 20px;
  width: 111px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 29px;
  text-align: center;
  background: #000;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .spec .spec-txt .ttl {
    font-size: 14px;
    font-size: 1.4rem;
    width: 90px;
    line-height: 25px;
  }
}

.sec-drScalp2 .product .txt-box .spec .img {
  width: calc(100% - 270px);
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .spec .img {
    width: calc(100% - 200px);
    max-width: 130px;
  }
}

.sec-drScalp2 .product .txt-box .spec .spec-table {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .spec .spec-table {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec-drScalp2 .product .txt-box .spec .spec-table th {
  padding: 0 30px 5px 0;
  border-right: 1px solid #000;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .spec .spec-table th {
    padding-right: 15px;
  }
}

.sec-drScalp2 .product .txt-box .spec .spec-table td {
  padding: 0 0 5px 30px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product .txt-box .spec .spec-table td {
    padding-left: 15px;
  }
}

.sec-drScalp2 .product .txt-box .spec .spec-table tr:last-child th, .sec-drScalp2 .product .txt-box .spec .spec-table tr:last-child td {
  padding-bottom: 0;
}

.sec-drScalp2 .product .txt-box .txt-price {
  margin-top: 20px;
}

.sec-drScalp2 .product-essence {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 55px 2.5% 30px 7%;
  background: #fff;
}

@media screen and (max-width: 900px) {
  .sec-drScalp2 .product-essence {
    padding-left: 2.5%;
  }
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence {
    padding: 40px 4% 30px;
  }
}

.sec-drScalp2 .product-essence .box-left {
  padding-right: 5%;
  width: calc(100% - 240px);
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-left {
    margin-bottom: 30px;
    padding: 0;
    width: 100%;
  }
}

.sec-drScalp2 .product-essence .box-left .head {
  margin-bottom: 30px;
}

.sec-drScalp2 .product-essence .box-left .lead {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-left .lead {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143;
  }
}

.sec-drScalp2 .product-essence .box-left .component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0 15px;
}

.sec-drScalp2 .product-essence .box-left .component .img {
  width: 44.6%;
}

@media screen and (max-width: 900px) {
  .sec-drScalp2 .product-essence .box-left .component .img {
    margin-bottom: 40px;
    width: 100%;
  }
}

.sec-drScalp2 .product-essence .box-left .component .img + .img {
  width: 50.51%;
}

@media screen and (max-width: 900px) {
  .sec-drScalp2 .product-essence .box-left .component .img + .img {
    margin-bottom: 0;
    width: 100%;
  }
}

.sec-drScalp2 .product-essence .box-left .note {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
}

@media screen and (max-width: 900px) {
  .sec-drScalp2 .product-essence .box-left .note {
    width: calc(105% + 240px);
  }
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-left .note {
    width: 100%;
  }
}

.sec-drScalp2 .product-essence .box-left .howtoUse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
  padding: 1px;
  border: 2px solid #e4e4e4;
}

@media screen and (max-width: 900px) {
  .sec-drScalp2 .product-essence .box-left .howtoUse {
    width: calc(105% + 240px);
  }
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-left .howtoUse {
    width: 100%;
  }
}

.sec-drScalp2 .product-essence .box-left .howtoUse .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 200px;
  text-align: center;
  background: #f0f0f0;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-left .howtoUse .ttl {
    padding: 5px;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-drScalp2 .product-essence .box-left .howtoUse .ttl strong {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-left .howtoUse .ttl strong {
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-drScalp2 .product-essence .box-left .howtoUse .txt {
  padding: 18px 10px 18px 20px;
  width: calc(100% - 200px);
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-left .howtoUse .txt {
    padding: 20px 4%;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143;
  }
}

.sec-drScalp2 .product-essence .box-right {
  width: 240px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-right {
    width: 100%;
  }
  .sec-drScalp2 .product-essence .box-right img {
    width: 30%;
    max-width: 144px;
  }
}

.sec-drScalp2 .product-essence .box-right .name {
  margin-top: 30px;
  color: #82398f;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-right .name {
    text-align: center;
  }
}

.sec-drScalp2 .product-essence .box-right .name span {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .sec-drScalp2 .product-essence .box-right .txt-price {
    text-align: center;
  }
}

.sec-drScalp2 .product-essence .box-right .txt-price span {
  margin-left: 10px;
}

.txt-price {
  color: #363636;
  font-size: 18px;
  font-size: 1.8rem;
}

.txt-price small {
  font-size: 14px;
  font-size: 1.4rem;
}

.txt-price span {
  font-size: 30px;
  font-size: 3rem;
}

.sec-series {
  padding: 75px 0 100px;
}

@media screen and (max-width: 768px) {
  .sec-series {
    padding: 80px 0;
  }
}

.sec-series .ttl-sec {
  margin-bottom: 25px;
}

.sec-series .series-item {
  padding: 80px 0 75px;
  border-bottom: 2px solid #eeeeee;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item {
    padding: 60px 0 40px;
  }
}

.sec-series .series-item .item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-series .series-item .item-inner .img {
  width: 42.5%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .item-inner .img {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }
}

.sec-series .series-item .item-inner .img img {
  -webkit-box-shadow: 30px 30px 50px -16px rgba(0, 0, 0, 0.1);
          box-shadow: 30px 30px 50px -16px rgba(0, 0, 0, 0.1);
}

.sec-series .series-item .txt-box {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .txt-box {
    width: 100%;
  }
}

.sec-series .series-item .txt-box .ttl-item {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 15px;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
}

.sec-series .series-item .txt-box .ttl-item span {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .txt-box .ttl-item {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .sec-series .series-item .txt-box .ttl-item span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.sec-series .series-item .txt-box .ttl-item:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 50px;
  height: 1px;
}

.sec-series .series-item .txt-box .cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .txt-box .cap {
    margin-bottom: 20px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.sec-series .series-item .txt-box .cap span {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.55556;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .txt-box .cap span {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.sec-series .series-item .txt-box .cap p {
  width: 69.2%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .txt-box .cap p {
    width: 80%;
  }
}

.sec-series .series-item .txt-box .cap .icn {
  display: inline-block;
  width: 30%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .txt-box .cap .icn {
    padding-left: 2%;
    width: 20%;
  }
}

.sec-series .series-item .txt-box .description {
  padding: 25px 20px;
}

@media screen and (max-width: 640px) {
  .sec-series .series-item .txt-box .description {
    padding: 25px 4%;
  }
}

.sec-series .series-item .txt-box .description .desc-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-series .series-item .txt-box .description .desc-box .txt {
  width: 72.7%;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .sec-series .series-item .txt-box .description .desc-box .txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.84615;
  }
}

.sec-series .series-item .txt-box .description .desc-box .txt p {
  margin-bottom: 15px;
}

.sec-series .series-item .txt-box .description .desc-box .img-desc {
  width: 25%;
  text-align: center;
}

.sec-series .series-item .txt-box .description .sub-desc {
  margin-top: 20px;
  padding: 20px 4.5%;
  font-size: 12px;
  font-size: 1.2rem;
  background: #fff;
  border-radius: 4px;
}

.sec-series .series-item .txt-box .description .sub-desc .ttl-point {
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 1.5rem;
}

.sec-series .series-item .txt-box .description .sub-desc .ttl-point small {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
}

.sec-series .series-item .txt-box .price {
  margin-top: 40px;
}

.sec-series .series-item .txt-box .price .name {
  margin-bottom: 4px;
  font-size: 18px;
  font-size: 1.8rem;
}

.sec-series .series-item .txt-box .price .name small {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}

.sec-series .series-item .txt-box .price .txt-price .icn-salon {
  display: inline-block;
  margin-left: .5em;
  width: 102px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  text-align: center;
  border: 1px solid #0c0408;
}

.sec-series .series-item .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 75px auto 0;
  max-width: 1145px;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .point {
    margin: 50px auto 0;
  }
}

.sec-series .series-item .point .left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 44.9%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .point .left-box {
    margin-bottom: 30px;
    width: 100%;
  }
}

.sec-series .series-item .point .left-box .txt-box {
  width: 59%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .point .left-box .txt-box {
    width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .sec-series .series-item .point .left-box .txt-box {
    margin-bottom: 20px;
    width: 100%;
  }
}

.sec-series .series-item .point .left-box .img {
  width: 38%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .point .left-box .img {
    width: 26%;
  }
  .sec-series .series-item .point .left-box .img img {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .sec-series .series-item .point .left-box .img {
    width: 100%;
  }
}

.sec-series .series-item .point .left-box .img02 {
  margin-top: 15px;
  width: 100%;
}

.sec-series .series-item .point .right-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .point .right-box {
    width: 100%;
  }
}

.sec-series .series-item .point .right-box .txt-box {
  width: 65%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .point .right-box .txt-box {
    width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .sec-series .series-item .point .right-box .txt-box {
    margin-bottom: 20px;
    width: 100%;
  }
}

.sec-series .series-item .point .right-box .txt-box .ttl:last-of-type {
  margin-top: 30px;
}

.sec-series .series-item .point .right-box .img {
  width: 34%;
}

@media screen and (max-width: 768px) {
  .sec-series .series-item .point .right-box .img {
    width: 26%;
  }
  .sec-series .series-item .point .right-box .img img {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .sec-series .series-item .point .right-box .img {
    width: 100%;
  }
}

.sec-series .series-item .point .txt-box {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.53846;
}

.sec-series .series-item .point .txt-box .ttl {
  margin-bottom: 10px;
  color: #a48323;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 380px) {
  .sec-series .series-item .point .txt-box .ttl {
    font-size: 34px;
    font-size: 4.53333vw;
    /* 750 = design width, mobile only */
  }
}

.sec-series .series-item .point .txt-box .ttl small {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 380px) {
  .sec-series .series-item .point .txt-box {
    font-size: 25px;
    font-size: 3.33333vw;
    /* 750 = design width, mobile only */
  }
}

.sec-series .series-item.item-brashu .txt-box .ttl-item {
  color: #be8986;
}

.sec-series .series-item.item-brashu .txt-box .ttl-item:before {
  background: #be8986;
}

.sec-series .series-item.item-brashu .txt-box .cap span {
  color: #be8986;
}

.sec-series .series-item.item-brashu .txt-box .description {
  background: #f2e1e0;
}

.sec-series .series-item.item-stemcell .txt-box .ttl-item {
  color: #0159a1;
}

.sec-series .series-item.item-stemcell .txt-box .ttl-item:before {
  background: #0159a1;
}

.sec-series .series-item.item-stemcell .txt-box .cap span {
  color: #0159a1;
}

.sec-series .series-item.item-stemcell .txt-box .description {
  color: #fff;
  background: #0159a1;
}

.sec-series .series-item.item-stemcell .txt-box .description .img-desc {
  margin-top: -45px;
}

.sec-series .series-item.item-nano .txt-box .ttl-item {
  color: #bf3a7b;
}

.sec-series .series-item.item-nano .txt-box .ttl-item:before {
  background: #bf3a7b;
}

.sec-series .series-item.item-nano .txt-box .cap span {
  color: #bf3a7b;
}

.sec-series .series-item.item-nano .txt-box .description {
  color: #fff;
  background: #c7538c;
}

.sec-series .series-item.item-nano .txt-box .description .img-desc {
  margin-top: -35px;
}

.sec-series .series-item.item-eyelash .txt-box .ttl-item {
  color: #d392a8;
}

.sec-series .series-item.item-eyelash .txt-box .ttl-item:before {
  background: #bf3a7b;
}

.sec-series .series-item.item-eyelash .txt-box .cap span {
  color: #d392a8;
}

.sec-series .series-item.item-eyelash .txt-box .description {
  color: #fff;
  background: #d392a8;
}

.sec-series .series-item.item-eyelash .txt-box .description .img-desc {
  margin-top: -40px;
}

.sec-series .series-item.item-seepe .txt-box .ttl-item {
  color: #e9a279;
}

.sec-series .series-item.item-seepe .txt-box .ttl-item:before {
  background: #e9a279;
}

.sec-series .series-item.item-seepe .txt-box .cap span {
  color: #e9a279;
}

.sec-series .series-item.item-seepe .txt-box .description {
  color: #fff;
  background: #e9a279;
}

.sec-series .series-item.item-seepe .txt-box .description .img-desc {
  margin-top: -45px;
}

.sec-series .note {
  margin-top: 30px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
}

/*# sourceMappingURL=maps/styles.css.map */



.mov-box + .mov-box {
   margin-top: 150px;
}


@media screen and (max-width: 768px) {
.mov-box + .mov-box {
   margin-top: 80px;
}
}




.sec-series .mov-box .ttl {
  margin-bottom: 60px;
  padding-bottom: 14px;
}

@media screen and (max-width: 768px) {
.sec-series .mov-box .ttl {
    margin-bottom: 20px;
  }
}

.sec-series .mov-box .ttl span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  line-height: 47px;
  width: 100%;
  max-width: 328px;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  background: #000;
  border-radius: 25px;
}

@media screen and (max-width: 768px) {
.sec-series .mov-box .ttl span {
    width: 90%;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 35px;
  }
}

.sec-series .mov-box .ttl span:before {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 8px 0 8px;
  border-color: #000000 transparent transparent transparent;
}

.sec-series .mov-box .mov {
  margin: 80px auto 10px;
  max-width: 800px;
}

.sec-series .mov-box .mov-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.28%;
}

.sec-series .mov-box .mov-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .sec-series .mov-box .mov {
  margin: 40px auto 0;
}
}