@charset "UTF-8";
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    reset
===================================================================*/
html {
  overflow-x: hidden;
  background: #fff;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

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

fieldset,
img {
  border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: super;
  font-size: 50%;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

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

object,
embed {
  height: 100%;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

div {
  vertical-align: top;
}

strong {
  font-weight: bold;
}

em {
  font-style: normal;
}

select,
input,
button,
textarea,
button {
  font: 99% arial, sans-serif;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/*  touch
---------------------------------------------*/
a,
img,
button,
input[type=button],
input[type=submit],
.touch-hover {
  -webkit-tap-highlight-color: transparent;
}

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

/*  table
---------------------------------------------*/
table {
  empty-cells: show;
  font-size: inherit;
  font: 100%;
}

/*  main
---------------------------------------------*/
/* IE10,11対策 main要素の高さと幅を認識させる */
@media all and (-ms-high-contrast: none) {
  main {
    display: block;
  }
}
/*  list
---------------------------------------------*/
li {
  list-style: none;
  line-height: 1;
}

/*  form
---------------------------------------------*/
input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

legend {
  display: none;
}

input,
select,
textarea,
button {
  font-size: 1.5rem;
  vertical-align: middle;
  color: #000;
  height: auto;
}

textarea {
  height: auto;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  -webkit-appearance: none;
  font-size: 1.2rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: normal;
  border-radius: 4px;
}

/* ======= outline ======= */
input[type=email],
input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  outline: none;
}

/* ======= label ======= */
label {
  margin-right: 1em;
  line-height: 1;
}

/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .tbNone {
    display: none !important;
  }
  .tbBlock {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}
/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

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

.clear {
  clear: both !important;
}

/* IE6 */
* html .clearfix {
  zoom: 1;
}

/* IE7 */
*:first-child + html .clearfix {
  zoom: 1;
}

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

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

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

/* ------------------------------------------------------------------
  border utility
-------------------------------------------------------------------*/
.btNone {
  border-top: none !important;
}

.brNone {
  border-right: none !important;
}

.bbNone {
  border-bottom: none !important;
}

.blNone {
  border-left: none !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.note {
  color: #b7b7b7;
  margin-left: 1em;
  text-indent: -1em;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: "Work Sans", sans-serif !important;
}

.font2 {
  font-family: "Montserrat", sans-serif !important;
}

/*  font-size+line-height
---------------------------------------------*/
.fzS {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .fzS {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.fz {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .fz {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.fzM {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .fzM {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.fzL {
  font-size: 1.8rem;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .fzL {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}

/*  color
---------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.g1 {
  color: #b7b7b7;
}

.g2 {
  color: #3b3b3b;
}

.g3 {
  color: #e0e0e0;
}

.g4 {
  color: #535353;
}

.g5 {
  color: #292929;
}

.g6 {
  color: #808080;
}

.c1 {
  color: #292f30;
}

.c2 {
  color: #414141;
}

.c3 {
  color: #a79b9b;
}

.c4 {
  color: #1f2124;
}

.c5 {
  color: #343d41;
}

.c6 {
  color: #6e6464;
}

.c-caution {
  color: #e20c0c;
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

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

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

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

/* font-size
---------------------------------------------*/
.fz {
  font-size: 1.5rem;
}

.fz--s {
  font-size: 1.2rem;
  line-height: 1.6;
}

.fz--l {
  font-size: 1.8rem;
  line-height: 2.4;
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  color: #000;
  background-color: #292f30;
  font-weight: 500;
  line-height: 1;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
    line-height: 1;
  }
}

/* -----------------------------------------------
    hiragino sansのウェイトズレを調整
------------------------------------------------*/
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0), local(メイリオ);
  font-weight: 100;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1), local(メイリオ);
  font-weight: 200;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2), local(メイリオ);
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3), local(メイリオ);
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4), local(メイリオ);
  font-weight: 500;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5), local(メイリオ ボールド);
  font-weight: 600;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6), local(メイリオ ボールド);
  font-weight: 700;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7), local(メイリオ ボールド);
  font-weight: 800;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8), local(メイリオ ボールド);
  font-weight: 900;
}
@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9), local(メイリオ ボールド);
  font-weight: 900;
}
/* -----------------------------------------------
    p
------------------------------------------------*/
p {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* ======= hiwrite ======= */
::selection {
  background: #ededed;
}

/* ======= テキストの下線スタイル ======= */
.underHiwrite {
  position: relative;
  z-index: 1;
}
.underHiwrite::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 20%;
  background-color: #ff0;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
}

/* ======= 上付き文字、下付き文字 ======= */
.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.subText {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

/* ======= 注釈 ======= */
.annotation {
  color: #666;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .annotation {
    font-size: 1.1rem;
  }
}

/* -----------------------------------------------
    link
------------------------------------------------*/
a {
  text-decoration: none;
  transition: all 200ms ease;
  color: #fff;
}

.pc a:hover {
  text-decoration: none;
}

/*  a img
---------------------------------------------*/
a img {
  transition: all 200ms ease;
}

a[href^="tel:"] {
  cursor: default;
}

/* ======= hover ======= */
a[href^="tel:"]:hover img {
  opacity: 1;
}

/*  .link - decoration underline
---------------------------------------------*/
a.link {
  color: #292f30;
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: #292f30;
}

/* -----------------------------------------------
    list - ul,ol
------------------------------------------------*/
/*==================================================================
    layout
===================================================================*/
/*  main
---------------------------------------------*/
.ul main {
  position: relative;
}
.ul main::before {
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  right: 3.125vw;
  top: 23.4375vw;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .ul main::before {
    right: 1.3333333333vw;
    top: 13.3333333333vw;
    opacity: 0.6;
  }
}

#faq main::before {
  width: 8px;
  height: 130px;
  background-image: url(../img/qa/qa_icon_side.svg);
}

#topics main::before {
  width: 10px;
  height: 134px;
  background-image: url(../img/topics/topix_icon_01.svg);
}

#voice main::before {
  width: 8px;
  height: 173px;
  background-image: url(../img/support/voice_icon_01.svg);
}

#products main::before {
  width: 8px;
  height: 153px;
  background-image: url(../img/products/common/products_icon_side.svg);
}

#about main::before {
  width: 11px;
  height: 171px;
  background-image: url(../img/about/about_icon_01.svg);
}

/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1030px;
  padding-right: 5vw;
  padding-left: 5vw;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: unset;
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
.container.-liquid {
  max-width: 100%;
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  .container.-liquid {
    padding: 0 6.6666666667vw;
  }
}
.container.-large {
  max-width: calc(1200px + 10vw);
}
@media screen and (max-width: 768px) {
  .container.-large {
    max-width: unset;
  }
}
.container.-medium {
  max-width: calc(1100px + 10vw);
}
@media screen and (max-width: 768px) {
  .container.-medium {
    max-width: unset;
  }
}
.container.-small {
  max-width: calc(900px + 10vw);
}
@media screen and (max-width: 768px) {
  .container.-small {
    max-width: unset;
  }
}
.container.-min {
  max-width: 690px;
}
@media screen and (max-width: 768px) {
  .container.-min {
    max-width: unset;
  }
}
.container.-fluid {
  max-width: unset;
  padding-right: 0;
  padding-left: 0;
}

.container--fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.notice-area {
  width: 300px;
  margin: 0px auto;
  padding: 0px 0px 40px;
}
.notice-area.-bottom {
  padding-top: 40px;
}

.banner-area {
  background-color: #1f1f1f;
  padding: 40px 0px;
  z-index: 1;
}
.banner-area_box {
  max-width: 600px;
  margin: 0px auto;
}

#top .notice-info {
  background: #292f30;
  z-index: 2;
  position: relative;
}
#top .notice-info .notice-area {
  padding: 50px 0 !important;
}
@media screen and (max-width: 768px) {
  #top .notice-info .notice-area {
    padding: 30px 0 !important;
  }
}

.fact {
  padding: 60px 0;
}
.fact_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .fact_list {
    flex-flow: column;
  }
}
.fact_list .emblem {
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .fact_list .emblem {
    max-width: 200px;
  }
}
.fact_list .support {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .fact_list .support {
    padding-left: 0;
    padding-top: 30px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}
.fact_list .support .annotation {
  padding-top: 20px;
  color: #fff;
  font-size: 1.1rem !important;
}

.factarea {
  padding: 0px 0 80px;
}
.factarea_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .factarea_list {
    flex-flow: column;
  }
}
.factarea dl {
  padding: 20px;
  width: 100%;
  max-width: 340px;
}
@media screen and (max-width: 768px) {
  .factarea dl {
    max-width: 400px;
    margin: 0px auto;
  }
}
.factarea dl dt {
  text-align: center;
  margin-bottom: 20px;
}
.factarea dl dt img {
  max-height: 160px;
  width: auto;
  margin: 0px auto;
}
.factarea dl dd p {
  font-weight: bold;
  font-size: 1.6rem !important;
  text-align: center;
  line-height: 1.5;
}
.factarea dl dd p:first-child {
  margin-bottom: 10px;
}
.factarea dl dd .annotation {
  font-size: 1.2rem !important;
  color: #fff;
  font-weight: normal;
}

/*==================================================================
    form
===================================================================*/
/*  autofill
---------------------------------------------*/
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgb(250, 250, 250) inset;
}

/*  hover
---------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  transition: all 200ms ease;
}

.pc input[type=text]:hover,
.pc input[type=tel]:hover,
.pc input[type=email]:hover,
.pc input[type=password]:hover,
.pc select:hover,
.pc textarea:hover {
  border: 1px solid #292f30;
  background-color: #fff;
}

/*  focus
---------------------------------------------*/
input:focus,
select:focus,
textarea:focus {
  color: #000000;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  border: 1px solid #292f30;
}

input[type=button]:focus,
input[type=submit]:focus,
button[type=submit]:focus,
input[type=file],
input[type=text]:focus,
input[type=tel]:focus,
input[type=password]:focus,
button:focus {
  outline: none;
}

/*  input.short
---------------------------------------------*/
input.short,
select.short,
textarea.short {
  width: 40%;
}

@media screen and (max-width: 768px) {
  input.short,
  select.short,
  textarea.short {
    width: 100%;
  }
}
/*  must 必須項目の※
---------------------------------------------*/
.must {
  color: #e20c0c;
  font-size: 80%;
  vertical-align: top;
  position: relative;
  top: -0.4em;
  right: -0.2rem;
}

/*  button submit
---------------------------------------------*/
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  display: inline-block;
  color: #fff;
  background-color: #292f30;
  border: 0;
  padding: 0rem 3rem;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  height: 50px;
  position: relative;
  transition: all 200ms ease;
}

/* ======= hover ======= */
.pc input[type=button]:hover,
.pc input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

/*  checkbox radio
---------------------------------------------*/
/* ======= common ======= */
input[type=checkbox],
input[type=radio] {
  -moz-transform-origin: right bottom;
  -moz-transform: scale(1, 1);
  -webkit-transform-origin: right bottom;
  -webkit-transform: scale(1, 1);
  cursor: pointer;
  transition: 0s;
}

label.checkbox,
label.radio {
  padding-left: 0.7em;
  margin-bottom: 0.5em;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: 0s;
}

label.checkbox input,
label.radio input {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  height: inherit;
}

/* ======= checkbox ======= */
label.checkbox::before,
label.checkbox::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 200ms ease;
}

label.checkbox::before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

label.checkbox.-checked::before {
  background: #414141;
  border: 1px solid #414141;
}

label.checkbox.-checked::after {
  position: absolute;
  content: "";
  display: block;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ======= radio ======= */
label.radio::before,
label.radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0s;
}
@media screen and (max-width: 768px) {
  label.radio::before,
  label.radio::after {
    transition: 0s;
  }
}

label.radio::before {
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #bcc2ba;
  border-radius: 100%;
}

label.radio::after {
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
}

label.radio.-checked::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  left: 3px;
  width: 12px;
  height: 12px;
  background: #414141;
  border-radius: 100%;
}

/*  input file
---------------------------------------------*/
input[type=file] {
  -webkit-appearance: none;
  display: none;
}

label.file {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  background-color: #292f30;
  padding: 1rem 2.5rem;
  margin-bottom: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 200ms ease;
}

/* ======= hover ======= */
.pc label.file:hover {
  background-color: #414141;
}

/*  select
---------------------------------------------*/
select {
  -webkit-appearance: none;
  width: 100%;
  position: relative;
  height: 40px;
  padding-left: 1rem;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
}

label.select {
  position: relative;
  display: block;
}

label.select::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 1px;
  width: 38px;
  height: 38px;
}

label.select::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  border-top: 6px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  font-size: 1.4rem;
}

/*
表示確認済みPC : chrome,safari,edge,firefoxはアップデードでselectの疑似要素がOKになりました。
※ IE11~9はデフォルト表示
確認済みSP : 【ios12】 Safari/chrome 【android7】chrome
*/
/* IE9以下はデフォルト */
label.select::after,
label.select::before {
  display: none\9 ;
}

/* IE10,11はデフォルト */
@media all and (-ms-high-contrast: none) {
  label.select::after,
  label.select::before {
    display: none;
  }
}
/* ======= sp ======= */
@media screen and (max-width: 768px) {
  label.select::after {
    right: 10px;
    border-top: 5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    font-size: 1.4rem;
  }
}
/*==================================================================
    .h01
===================================================================*/
.h01 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 300;
  color: #fff;
  background-image: url(../img/common/icon_arrow_01.svg);
  background-position: 0 30%;
  background-repeat: no-repeat;
  padding-left: 35px;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .h01 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.h01 span {
  display: inline-block;
  padding-bottom: 0.3em;
  position: relative;
}
.h01 span.jp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
}
.h01 span::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.h01 span:nth-child(1) {
  padding-right: 0.6em;
}
.h01 span:nth-child(1)::before {
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .h01 span:nth-child(2) {
    width: auto;
    padding-right: 0.6em;
  }
}
.h01 span:nth-child(2)::before {
  background-color: #fff;
}
.h01.-w {
  color: #000;
  background-image: url(../img/common/icon_arrow_02.svg);
}
.h01.-w span:nth-child(2)::before {
  background-color: #e0e0e0;
}
.h01.-ul {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .h01.-ul {
    margin-bottom: 30px;
  }
}
.h01.-ul span {
  width: 230px;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .h01.-ul span {
    width: auto;
    padding-right: 0.6em;
  }
}
.h01.-ul span::after {
  display: block;
  content: "";
  width: 195px;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .h01.-ul span::after {
    width: 80%;
  }
}

.h02 {
  font-size: 4rem !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .h02 {
    font-size: 3rem !important;
  }
}
.h02 span {
  display: block;
  font-size: 1.6rem;
  padding-top: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.h03 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .h03 {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }
}
.h03 span {
  display: inline-block;
  font-size: 1.4rem;
  border: 1px solid #fff;
  padding: 0.2em 1em;
  margin-top: 10px;
}
.h03::after {
  content: "";
  width: 4em;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section_ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .section_ttl {
    display: block;
    margin-bottom: 30px;
  }
}
.section_ttl .h01 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section_ttl .h01 {
    margin-bottom: 30px;
  }
}

.h04 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .h04 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

/*==================================================================
    .btn01
===================================================================*/
.btn01 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  line-height: 58px;
  font-size: 1.4rem;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
  border: solid 1px #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn01 {
    height: 50px;
    line-height: 48px;
    font-size: 1.3rem;
  }
}
.btn01::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_list_01.svg);
  margin-right: 0.8em;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .btn01::before {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}
.btn01::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 200ms ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.btn01:hover::before {
  transform: rotate(45deg);
}
.btn01:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.btn01.-sin::before {
  display: none;
}

/*==================================================================
    .btn02
===================================================================*/
.btn02 {
  display: block;
  width: 100%;
  height: 48px;
  font-size: 1.4rem;
  line-height: 48px;
  color: #fff;
  text-align: center;
  background-color: #292929;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.16);
  background-image: url(../img/common/icon_arrow_03.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn02 {
    height: 42px;
    font-size: 1.3rem;
    line-height: 40px;
  }
}
.btn02:hover {
  background-position: top 50% right 5px;
}
.btn02.-pt01 {
  font-size: 1.3rem;
  background-color: #a79b9b;
  background-position: top 50% right 15px;
}
.btn02.-pt01:hover {
  background-position: top 50% right 10px;
}
.btn02.-pt02 {
  height: 60px;
  font-size: 1.3rem;
  line-height: 58px;
  border: solid 1px #000;
  color: #000;
  background-color: #fff;
  background-image: url(../img/common/icon_arrow_04.svg);
  background-position: top 50% right 15px;
}
@media screen and (max-width: 768px) {
  .btn02.-pt02 {
    height: 42px;
    line-height: 40px;
  }
}
.btn02.-pt02:hover {
  background-position: top 50% right 10px;
}
.btn02.-pt03 {
  height: 50px;
  font-size: 1.4rem;
  line-height: 48px;
  border: solid 1px #fff;
  color: #fff;
  background-color: inherit;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .btn02.-pt03 {
    height: 40px;
    font-size: 1.3rem;
    line-height: 38px;
  }
}
.btn02.-pt04 {
  height: 60px;
  font-size: 1.8rem;
  line-height: 60px;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  box-shadow: none;
  background-color: #1f2227;
  background-position: top 50% right 15px;
  background-size: 9px 9px;
}
@media screen and (max-width: 768px) {
  .btn02.-pt04 {
    height: 42px;
    font-size: 1.6rem;
    line-height: 42px;
  }
}
.btn02.-pt04:hover {
  background-position: top 50% right 10px;
}
.btn02.-pt05 {
  height: 60px;
  line-height: 60px;
  box-shadow: none;
  background-color: #3a3e45;
  background-position: top 50% right 15px;
  background-size: 9px 9px;
}
@media screen and (max-width: 768px) {
  .btn02.-pt05 {
    height: 42px;
    line-height: 42px;
  }
}
.btn02.-pt05 span {
  font-size: 1.1rem;
}
.btn02.-pt05:hover {
  background-position: top 50% right 10px;
}

/*==================================================================
    .btn03
===================================================================*/
.btn03 {
  display: block;
  width: 100%;
  height: 60px;
  font-size: 1.4rem;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background-color: #808080;
  background-image: url(../img/common/icon_arrow_01.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn03 {
    height: 42px;
    font-size: 1.3rem;
    line-height: 40px;
  }
}
.btn03:hover {
  background-position: top 50% right 10px;
}

/*==================================================================
    .btn04
===================================================================*/
.btn04 {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 80px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 80px;
  color: #fff;
  text-align: center;
  background-color: #655959;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.16);
  background-image: url(../img/common/icon_arrow_05.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn04 {
    height: 48px;
    font-size: 1.3rem;
    line-height: 48px;
  }
}
.btn04.-hair, .btn04.-esthe {
  height: 60px;
  line-height: 60px;
  background-size: 16px;
}
@media screen and (max-width: 768px) {
  .btn04.-hair, .btn04.-esthe {
    height: 46px;
    line-height: 46px;
  }
}
.btn04.-hair {
  background-color: #414141;
}
.btn04::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(0, 0);
  opacity: 0;
  transition: transform 0.3s, opacity 1s;
}
.btn04:hover {
  background-position: top 50% right 5px;
}
.btn04:hover::after {
  transform: scale(10, 10);
  transition: 0.3s;
  opacity: 0.1;
}

/*==================================================================
    .btn05
===================================================================*/
.btn05 {
  overflow: hidden;
  width: 100%;
  height: 60px;
  font-size: 1.4rem;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background-color: #3b3b3b;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .btn05 {
    height: 48px;
    font-size: 1.3rem;
    line-height: 48px;
  }
}
.btn05 img {
  width: 18px;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .btn05 img {
    margin-right: 10px;
  }
}
.btn05::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(0, 0);
  opacity: 0;
  transition: transform 0.3s, opacity 1s;
}
.btn05:hover {
  background-position: top 50% right 5px;
}
.btn05:hover::after {
  transform: scale(10, 10);
  transition: 0.3s;
  opacity: 0.1;
}

/*==================================================================
    .btn06
===================================================================*/
.btn06 {
  margin: 0 auto;
  display: block;
  overflow: hidden;
  width: 70%;
  height: 46px;
  font-size: 1.4rem;
  line-height: 46px;
  color: #fff;
  text-align: center;
  background-color: transparent;
  border: 1px solid #fff;
  background-image: url(../img/common/icon_arrow_06.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn06 {
    width: 90%;
    height: 42px;
    font-size: 1.3rem;
    line-height: 42px;
  }
}
.btn06::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(0, 0);
  opacity: 0;
  transition: transform 0.3s, opacity 1s;
}
.btn06:hover {
  background-position: top 50% right 5px;
}
.btn06:hover::after {
  transform: scale(10, 10);
  transition: 0.3s;
  opacity: 0.1;
}
.btn06.-ck {
  width: 160px;
  margin: 20px 0;
  color: #000;
  border: 1px solid #000;
  background-image: url(../img/common/icon_arrow_04.svg);
}
.btn06.-ck::after {
  content: "";
  background: radial-gradient(circle, #000 10%, transparent 10%) no-repeat 50%;
}

/*==================================================================
    .btn07
===================================================================*/
.btn07 {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 60px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background-color: #000;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  background-image: url(../img/common/icon_arrow_05.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn07 {
    height: 48px;
    font-size: 1.3rem;
    line-height: 48px;
  }
}
.btn07::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(0, 0);
  opacity: 0;
  transition: transform 0.3s, opacity 1s;
}
.btn07:hover {
  background-position: top 50% right 5px;
}
.btn07:hover::after {
  transform: scale(10, 10);
  transition: 0.3s;
  opacity: 0.1;
}

/*==================================================================
    .btn08
===================================================================*/
.btn08 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 80px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 80px;
  color: #fff;
  text-align: center;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.16);
  background: linear-gradient(180deg, rgb(72, 89, 105) 0%, rgb(47, 62, 75) 100%);
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn08 {
    height: 48px;
    font-size: 1.3rem;
    line-height: 48px;
  }
}
.btn08.wrapping {
  padding-right: 130px;
}
.btn08 img {
  width: 18px;
  margin-right: 10px;
}
.btn08::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(0, 0);
  opacity: 0;
  transition: transform 0.3s, opacity 1s;
}
.btn08:hover::after {
  transform: scale(10, 10);
  transition: 0.3s;
  opacity: 0.1;
}
.btn08 .eyecatch {
  position: absolute;
  right: 0px;
  top: -20px;
}
@media screen and (max-width: 768px) {
  .btn08 .eyecatch {
    top: -37px;
  }
}
.btn08 .eyecatch img {
  height: 130px;
  width: 130px;
}

/*==================================================================
    .btn09
===================================================================*/
.btn09 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  line-height: 58px;
  font-size: 1.4rem;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
  border: solid 1px #867D64;
  position: relative;
  background-color: #090A0A;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .btn09 {
    height: 50px;
    line-height: 48px;
    font-size: 1.3rem;
  }
}
.btn09::before {
  display: block;
  content: "";
  width: 22px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/common/icon_store.svg);
  margin-right: 0.8em;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .btn09::before {
    width: 18px;
    height: 14px;
  }
}
.btn09::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 200ms ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.btn09:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.btn09.noicon::before {
  display: none;
}

/*==================================================================
    .-hover
===================================================================*/
.-hover::before {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 200ms ease;
}
.-hover:hover::before {
  width: 100%;
}
.-hover.-hover01::before {
  background-color: rgba(0, 0, 0, 0.2);
}

.promark {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
  margin-top: 30px;
}
.promark .salon-message {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B2A356;
  color: #fff;
  line-height: 24px !important;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.promark .salon-message::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 5px 0 0;
  border-color: #B2A356 transparent transparent transparent;
}
.promark .salon-message::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 5px 0 0;
  border-color: transparent #B2A356 transparent transparent;
}

/*==================================================================
    .tbl01
===================================================================*/
/*==================================================================
    .storemodal
===================================================================*/
.storemodal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 901;
  display: none;
}
.storemodal.close {
  display: none;
}
.storemodal.active {
  display: block;
}
.storemodal .btn-modal-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
}
.storemodal .btn-modal-close:hover {
  opacity: 0.7;
}
.storemodal .btn-modal-close::before, .storemodal .btn-modal-close::after {
  position: absolute;
  top: 15px;
  right: 0;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #000;
  transform: rotate(45deg);
}
.storemodal .btn-modal-close::after {
  transform: rotate(-45deg);
}
.storemodal .modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 480px;
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 768px) {
  .storemodal .modal_content {
    padding: 40px 20px 20px;
  }
}
.storemodal .questionnaire h6 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .storemodal .questionnaire h6 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.storemodal .questionnaire ul {
  margin-bottom: 30px;
}
.storemodal .questionnaire ul li {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .storemodal .questionnaire ul li {
    width: 100%;
    font-size: 1.5rem;
  }
}
.storemodal .questionnaire .externallink .btn01 {
  border: 1px solid #000;
  color: #000;
  flex-flow: row-reverse nowrap;
}
.storemodal .questionnaire .externallink .btn01::before {
  background-image: url(../img/common/icon-external-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
  margin-right: 0px;
  width: 15px;
  height: 15px;
}
.storemodal .questionnaire .externallink .btn01:hover::before {
  transform: unset;
}

@keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
.maskbox-inner {
  position: relative;
  visibility: hidden;
}
.maskbox-inner::after {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s cubic-bezier(0.36, 0.14, 0, 1) 0s;
  visibility: visible;
}
.maskbox-inner.isplay {
  animation-name: animate-content;
  opacity: 1;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.maskbox-inner.isplay::after {
  animation-name: animate-panel;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*==================================================================
    .pagenation
===================================================================*/
.pagenation {
  text-align: center;
}
.pagenation__inner {
  display: inline-block;
}
.pagenation__inner a,
.pagenation__inner span {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 1.6rem;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
  background-color: #292f30;
  margin: 0 7px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pagenation__inner a,
  .pagenation__inner span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1.4rem;
    margin: 0 2px;
  }
}
.pagenation__inner a.prev, .pagenation__inner a.next {
  color: #fff;
}
.pagenation__inner a:hover {
  background-color: #fff;
  color: #000;
}
.pagenation__inner span.current {
  color: #000;
  background-color: #fff;
}
.pagenation__inner span.dots {
  background: none;
  border: none;
  color: #fff;
  margin: 0;
  width: 1em;
  vertical-align: top;
}

.pageLink {
  padding: 70px 0 0;
}
@media screen and (max-width: 768px) {
  .pageLink {
    padding: 40px 0;
  }
}
.pageLink .links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.pageLink .links__prev a, .pageLink .links__next a, .pageLink .links__list a {
  display: inline-block;
  padding: 55px 10px 0;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 19px 34px;
  font-size: 1.1rem;
  color: #fff;
  position: relative;
}
.pageLink .links__prev a {
  background-image: url(../img/common/icon_article_prev.svg);
}
.pageLink .links__prev a:hover {
  background-position: 20% 0;
}
.pageLink .links__next a {
  background-image: url(../img/common/icon_article_next.svg);
}
.pageLink .links__next a:hover {
  background-position: 80% 0;
}
.pageLink .links__list {
  padding: 0 140px;
}
@media screen and (max-width: 768px) {
  .pageLink .links__list {
    padding: 0 20px;
  }
}
.pageLink .links__list a::before {
  display: block;
  content: "";
  width: 50px;
  height: 30px;
  background-image: url(../img/common/icon_article_list.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50px 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 200ms ease;
}
.pageLink .links__list a:hover::before {
  transform: translate(-50%, 0) rotate(360deg);
}
.pageLink.-k a {
  color: #000;
}
.pageLink.-k .links__prev a {
  background-image: url(../img/common/icon_article_prev_black.svg);
}
.pageLink.-k .links__next a {
  background-image: url(../img/common/icon_article_next_black.svg);
}
.pageLink.-k .links__list a::before {
  background-image: url(../img/common/icon_article_list_black.svg);
}

/*==================================================================
    .header
===================================================================*/
.header {
  width: 220px;
  height: 220px;
  background-color: #0f1010;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header {
    width: 18vw;
    height: 18vw;
  }
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 60px;
  }
}
.header_logo {
  width: 220px;
  text-align: center;
  position: fixed;
  transition: all 200ms ease;
}
@media screen and (max-width: 1200px) {
  .header_logo {
    width: 18vw;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 120px;
    height: 60px;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding-left: 10px;
  }
}
.header_logo a {
  display: block;
}
.header_logo a:hover {
  opacity: 0.6;
}
.header_logo a img {
  width: 60%;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  .header_logo a img {
    width: 90%;
    max-width: 90px;
  }
}
.header_trigger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_trigger {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 9999;
    transition: all 200ms ease;
  }
}
.header_nav {
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .header_nav {
    display: none;
  }
}
.header_nav .nav {
  padding: 25px 3.125vw;
}
.header_nav .nav_list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.header_nav .nav_item a {
  height: 35px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1;
  font-family: "Work Sans", sans-serif;
  color: #fff;
  position: relative;
}
.header_nav .nav_item a::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.header_nav .nav_item a span {
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}
.header_nav .nav_item a em {
  position: relative;
  z-index: 2;
}
.header_nav .nav_item a:hover::before {
  animation: circle 0.5s ease forwards;
  transform: translate(-50%, -50%) scale(1);
}
.header_nav .nav_item a i {
  position: absolute;
  right: -12px;
  top: -10px;
  background-color: #fff;
  color: #000;
  border-radius: 3px;
  padding: 0.5em;
  text-align: center;
}
.header_nav .nav_item:nth-child(1) {
  margin-right: 5.078125vw;
}
.header_nav .nav_item:nth-child(2) {
  margin-right: 5.078125vw;
}
.header_nav .nav_item:nth-child(3) {
  margin-right: 3.515625vw;
}
.header_nav .nav_item:nth-child(4) {
  margin-right: 2.734375vw;
}
.header_nav .nav_item:nth-child(5) {
  margin-right: 3.125vw;
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  100% {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    opacity: 0;
  }
}
.header.fixed {
  width: 100%;
  height: 85px;
  background-color: #000;
  display: unset;
  align-items: unset;
  justify-content: unset;
}
@media screen and (max-width: 768px) {
  .header.fixed {
    height: 60px;
  }
}
.header.fixed .header_logo {
  top: 25px;
}
@media screen and (max-width: 768px) {
  .header.fixed .header_logo {
    top: 0;
  }
}
.header_fixnav {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .header_fixnav {
    display: none;
  }
}
.header_fixnav .fixnav {
  display: flex;
  flex-flow: column nowrap;
}
.header_fixnav .fixnav_item {
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
}
.header_fixnav .fixnav_item a {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #767676;
}
.header_fixnav .fixnav_item a:hover {
  opacity: 0.6;
}
.header_fixnav .fixnav_item:nth-child(2) a {
  background-color: #222222;
}
.header_fixnav .fixnav_item:nth-child(3) a {
  background-color: #485969;
}
.header_nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_nav-sp {
    display: block;
    width: 100vw;
    min-height: 100vh;
    background-color: #292f30;
    padding: 0 0 12vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    transform: translateX(100vw);
    transition: all 200ms ease;
  }
  .header_nav-sp.open {
    transform: translateX(0);
  }
}
.header_nav-sp .nav-sp_logo {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.header_nav-sp .nav-sp_logo img {
  width: 100px;
}
.header_nav-sp .nav-sp_ttl {
  text-align: center;
  color: #FFECCE;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.5rem;
}
.header_nav-sp .nav-sp_list {
  padding: 4vw 0 8vw;
}
.header_nav-sp .nav-sp_item {
  position: relative;
}
.header_nav-sp .nav-sp_item::before, .header_nav-sp .nav-sp_item::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
}
.header_nav-sp .nav-sp_item::before {
  bottom: 0;
  background-color: #000;
}
.header_nav-sp .nav-sp_item::after {
  bottom: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}
.header_nav-sp .nav-sp_item a,
.header_nav-sp .nav-sp_item div {
  display: block;
  font-size: 1.3rem;
  color: #fff;
  padding: 1em;
  border-bottom: solid 1px rgba(255, 255, 255, 0.06);
  position: relative;
}
.header_nav-sp .nav-sp_item a .ja,
.header_nav-sp .nav-sp_item div .ja {
  display: inline-block;
  font-weight: bold;
  margin-right: 0.4em;
}
.header_nav-sp .nav-sp_item a .en,
.header_nav-sp .nav-sp_item div .en {
  display: inline-block;
  font-size: 1rem;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
}
.header_nav-sp .nav-sp_item a i,
.header_nav-sp .nav-sp_item div i {
  background-color: #fff;
  color: #000;
  border-radius: 3px;
  padding: 0.3em;
  text-align: center;
  font-size: 1.1rem;
  margin-left: 10px;
}
.header_nav-sp .nav-sp_item div {
  background-image: url(../img/common/icon_close.svg);
  background-size: 10px 5px;
  background-repeat: no-repeat;
  background-position: top 50% right 1em;
  border-bottom: none;
}
.header_nav-sp .nav-sp_item div::before, .header_nav-sp .nav-sp_item div::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
}
.header_nav-sp .nav-sp_item div::before {
  bottom: 0;
  background-color: #000;
}
.header_nav-sp .nav-sp_item div::after {
  bottom: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}
.header_nav-sp .nav-sp_item div.active {
  background-image: url(../img/common/icon_open.svg);
}
.header_nav-sp .nav-sp_item:last-child a,
.header_nav-sp .nav-sp_item:last-child div {
  border-bottom: none;
}
.header_nav-sp .nav-sp_item .child {
  background-color: rgba(255, 255, 255, 0.06);
}
.header_nav-sp .nav-sp_item .child_item a {
  padding: 1em 2em;
}
.header_nav-sp .nav-sp_social {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-bottom: 8vw;
}
.header_nav-sp .nav-sp_icons a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: solid 1px rgba(255, 255, 255, 0.6);
  border-radius: 15px;
}
.header_nav-sp .nav-sp_fixnav {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0 5vw 8vw;
}
.header_nav-sp .nav-sp_fix {
  width: 50%;
}
.header_nav-sp .nav-sp_fix a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 54px;
  border: solid 1px rgba(255, 255, 255, 0.6);
}
.header_nav-sp .nav-sp_fix:last-child a {
  border-left: none;
}
.header_nav-sp .nav-sp_form {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0 5vw;
  margin-bottom: 30px;
}
.header_nav-sp .nav-sp_url {
  width: 100%;
  margin-bottom: 10px;
}
.header_nav-sp .nav-sp_url:last-child a {
  background-color: #414141 !important;
}
.header_nav-sp .nav-sp_url a {
  box-shadow: none !important;
  height: 54px;
  line-height: 54px;
}
.header_nav-sp .nav-sp_tel {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0 5vw;
  margin-bottom: 30px;
}
.header_nav-sp .nav-sp_num {
  width: 100%;
  color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.header_nav-sp .nav-sp_num:last-child {
  margin-bottom: 0px;
}
.header_nav-sp .nav-sp_num em {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.header_nav-sp .nav-sp_num a {
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
  font-size: 2rem;
  display: block;
  border: solid 1px rgba(255, 255, 255, 0.6);
  height: 54px;
  line-height: 54px;
  width: 100%;
  text-align: center;
}

.ul .header {
  width: 100%;
  height: 85px;
  background-color: #292f30;
  display: unset;
}
@media screen and (max-width: 768px) {
  .ul .header {
    height: 60px;
  }
}
.ul .header .header_logo {
  top: 25px;
}
@media screen and (max-width: 768px) {
  .ul .header .header_logo {
    top: 0;
  }
}

/*==================================================================
    .menu-trigger
===================================================================*/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
}

.menu-trigger {
  width: 42px;
  height: 38px;
  cursor: pointer;
  position: absolute;
  top: 21px;
  left: 19px;
}
@media screen and (max-width: 768px) {
  .menu-trigger {
    width: 30px;
    height: 21px;
    top: 20px;
    left: 15px;
  }
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background-color: #fff;
  transition: all 200ms ease;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 24px;
}
@media screen and (max-width: 768px) {
  .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(24px) rotate(-325deg);
  transform: translateY(24px) rotate(-325deg);
}
@media screen and (max-width: 768px) {
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-325deg);
    transform: translateY(9px) rotate(-325deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  bottom: 0;
  -webkit-transform: translateY(-24px) rotate(325deg);
  transform: translateY(-24px) rotate(325deg);
}
@media screen and (max-width: 768px) {
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(325deg);
    transform: translateY(-9px) rotate(325deg);
  }
}

/*==================================================================
    .footer
===================================================================*/
.footer {
  width: 100%;
  color: #fff;
  background-color: #000;
  position: relative;
  z-index: 2;
}
.footer_upper {
  padding: 40px 0;
  display: flex;
  flex-flow: row wrap;
  max-width: 1440px;
  margin: 0px auto;
}
@media screen and (max-width: 991px) {
  .footer_upper {
    padding: 45px 7.03125vw;
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer_upper {
    padding: 0;
  }
}
.footer_upper-container {
  background-color: #292f30;
}
.footer_child {
  width: 25%;
  padding: 20px 25px;
}
@media screen and (max-width: 991px) {
  .footer_child {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .footer_child {
    width: 100%;
    padding: 0;
  }
}
.footer_child h5 {
  color: antiquewhite;
  margin-bottom: 25px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .footer_child h5 {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    padding: 20px 10px;
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1);
    position: relative;
  }
  .footer_child h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.24);
  }
}
.footer_child ul {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer_child ul {
    margin-bottom: 0px;
  }
}
.footer_child li {
  line-height: 1.4;
  margin-bottom: 10px;
  font-size: 1.3rem;
  padding-left: 10px;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .footer_child li {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    padding: 0;
    padding-bottom: 1px;
    margin: 0;
  }
}
.footer_child li.category {
  font-size: 1.5;
  margin-bottom: 15px;
  font-weight: bold;
  color: #a79b9b;
  padding-left: 10px;
  border-left: 2px solid #a79b9b;
}
@media screen and (max-width: 768px) {
  .footer_child li.category {
    margin: 0;
    display: flex;
    align-items: center;
    padding: 10px;
  }
}
.footer_child li.category:hover {
  transform: none !important;
}
.footer_child li:hover {
  transform: translateX(10px);
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .footer_child li:hover {
    transform: unset;
  }
}
.footer_child li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer_child li a {
    padding: 14px;
    background-color: #3b3b3b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.14);
    position: relative;
  }
  .footer_child li a::after {
    content: "";
    width: 7px;
    height: 7px;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    border-top: 1px solid #676767;
    border-right: 1px solid #676767;
    transition: all 0.5s;
  }
}
.footer_child li a .external {
  display: flex;
  margin-left: 5px;
}
.footer_inner {
  padding: 65px 0;
  display: flex;
  flex-flow: row wrap;
  max-width: 1920px;
  margin: 0px auto;
}
@media screen and (max-width: 991px) {
  .footer_inner {
    padding: 45px 7.03125vw;
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer_inner {
    padding: 45px 6.6666666667vw;
  }
}
.footer_logo {
  width: 33.3333%;
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .footer_logo {
    width: 100%;
    margin-bottom: 60px;
  }
}
.footer_logo .ttl {
  margin-bottom: 1.2em;
}
@media screen and (max-width: 991px) {
  .footer_logo .ttl {
    width: auto;
    text-align: center;
  }
}
.footer_logo .ttl a {
  display: block;
}
.footer_logo .ttl a:hover {
  opacity: 0.6;
}
.footer_logo .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2em;
}
@media screen and (max-width: 991px) {
  .footer_logo .lead {
    width: auto;
    text-align: center;
    margin-bottom: 1em;
  }
}
.footer_logo .social {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .footer_logo .social {
    width: auto;
    text-align: center;
  }
}
.footer_logo .social_item {
  margin-right: 18px;
}
.footer_logo .social_item:last-child {
  margin-right: 0;
}
.footer_logo .social_item a {
  display: block;
  width: 30px;
}
.footer_logo .social_item a:hover {
  opacity: 0.6;
}
.footer_logo .social_item a img {
  width: 100%;
}
.footer_info {
  width: 33.3333%;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}
@media screen and (max-width: 991px) {
  .footer_info {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .footer_info {
    flex-flow: column nowrap;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }
}
.footer_info::before {
  display: block;
  content: "";
  width: 1px;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.14);
  position: absolute;
  left: 0;
  top: 5%;
}
@media screen and (max-width: 768px) {
  .footer_info::before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .footer_info.-form::before {
    display: none;
  }
}
.footer_info .box {
  position: relative;
  width: 100%;
  padding: 0px 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.footer_info .box .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer_info .box .ttl {
    font-size: 1.6rem;
    margin-bottom: 15px;
    padding-bottom: 0px;
  }
}
.footer_info .box .ttl::before {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .footer_info .box .ttl::before {
    display: none;
  }
}
.footer_info .box .info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 5px;
}
.footer_info .box .info .txt {
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  padding-left: 15px;
}
.footer_info .box .info .txt a {
  color: #fff;
}
.footer_info .box .btn {
  max-width: 240px;
  width: 100%;
  margin: 0px auto 10px;
}
.footer_info .box .btn:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .footer_info .box .btn {
    max-width: 640px;
  }
}
.footer_info .box .btn a {
  color: #fff;
  width: 100%;
  display: block;
  font-size: 1.4rem;
  line-height: 46px;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
  position: relative;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer_info .box .btn a {
    height: 46px;
    font-size: 1.3rem;
  }
}
.footer_info .box .time {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.footer_info .box .caution {
  font-size: 1rem;
  line-height: 1.4;
}
.footer_foot {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 20px 3.90625vw;
}
@media screen and (max-width: 768px) {
  .footer_foot {
    display: block;
    padding: 0 6.6666666667vw 40px;
  }
}
.footer_foot .links {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_foot .links {
    justify-content: center;
    margin-bottom: 20px;
  }
}
.footer_foot .links_item {
  padding-right: 0.5em;
  margin-right: 0.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer_foot .links_item {
    font-size: 1.2rem;
  }
}
.footer_foot .links_item::after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
.footer_foot .links_item a {
  color: #fff;
}
.footer_foot .links_item a:hover {
  opacity: 0.6;
}
.footer_foot .links_item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.footer_foot .links_item:last-child::after {
  display: none;
}
.footer_foot small {
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: "Red Hat Display", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer_foot small {
    display: block;
    text-align: center;
  }
}

/*==================================================================
    .mainView
===================================================================*/
/*==================================================================
    .slider01
===================================================================*/
/*==================================================================
    .slick-dots
===================================================================*/
.slick-dots {
  z-index: 2;
  bottom: -45px !important;
}
.slick-dots li {
  width: 50px !important;
  height: 3px !important;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    width: 40px !important;
    height: 4px !important;
  }
}
.slick-dots li button {
  width: 50px !important;
  height: 3px !important;
  padding: 0 !important;
  background-color: #e0e0e0 !important;
}
.slick-dots li button::before {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    width: 40px !important;
    height: 4px !important;
  }
}
.slick-dots li.slick-active button {
  background-color: #a88485 !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/*==================================================================
    .mainViewUl
===================================================================*/
.mainViewUl {
  width: 100vw;
  position: relative;
  background-color: #343d41;
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .mainViewUl {
    margin-top: 70px;
  }
}
.mainViewUl_inner {
  height: 160px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  .mainViewUl_inner {
    height: 140px;
    padding: 0 6.6666666667vw;
  }
}
.mainViewUl_ttl {
  font-size: 1.3rem;
  line-height: 1.2;
  color: #fff;
  font-weight: normal;
}
.mainViewUl_ttl span {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  margin-bottom: 0.25em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mainViewUl_ttl span {
    font-size: 2.2rem;
  }
}

.mainView {
  width: 100%;
  position: relative;
  background-color: #161616;
  z-index: 2;
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  .mainView {
    padding: 60px 0 0px;
  }
}

.slider01_item {
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .slider01_item {
    padding: 0;
  }
}
.slider01_item a {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  display: block;
}
.slider01_item a.nolink {
  touch-action: none;
  pointer-events: none;
}

/*==================================================================
    .loading
===================================================================*/
.loading {
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #292f30;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  animation: layer 0.5s ease 3s 1 normal forwards;
}
.loading_logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: logo 2s ease 1s 1 normal forwards;
}
.loading_be {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: logo 2s ease 0.5s 1 normal forwards;
}
.loading_be img {
  opacity: 0.4;
}

@keyframes logo {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes layer {
  0% {
    z-index: 99999;
    opacity: 1;
    visibility: visible;
  }
  100% {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.blur.-fast {
  animation-duration: 1s;
}

@keyframes blurAnime {
  from {
    filter: blur(50px);
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/*==================================================================
    .pankuz
===================================================================*/
.pankuz {
  padding: 1.285em 7.03125vw;
}
@media screen and (max-width: 768px) {
  .pankuz {
    display: none;
  }
}
.pankuz ul {
  display: flex;
  flex-flow: row nowrap;
}
.pankuz ul li {
  font-size: 1.4rem;
  line-height: 1.1;
  color: #fff;
  margin-right: 0.2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pankuz ul li {
    font-size: 1.3rem;
  }
  .pankuz ul li:nth-child(1), .pankuz ul li:nth-child(2) {
    white-space: nowrap;
  }
}
.pankuz ul li a {
  color: #fff;
}
.pankuz ul li::after {
  display: inline-block;
  content: "/";
  padding-left: 0.2em;
}
.pankuz ul li:last-child::after {
  display: none;
}

/*==================================================================
    .cta
===================================================================*/
.cta {
  color: #fff;
  padding: 50px 0;
  background-color: #1f2124;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 30px 0 50px;
  }
}
.cta.-sub {
  background-color: #444;
}
.cta_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  .cta_inner {
    padding: 0 6.6666666667vw;
  }
}
.cta_ttl {
  transform: translateY(-50px);
  text-align: center;
}
.cta_blocks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta_blocks {
    display: block;
  }
}
.cta_blocks .box {
  width: 100%;
  padding: 0 px 30 px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta_blocks .box {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cta_blocks .box:nth-child(1) {
    margin-bottom: 30px;
  }
}
.cta_blocks .box:nth-child(1) .ttl {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cta_blocks .box:nth-child(1) .ttl {
    font-size: 2rem;
    margin-bottom: 0.8em;
  }
}
.cta_blocks .box:nth-child(1) .lead {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .cta_blocks .box:nth-child(1) .lead {
    line-height: 1.6;
    text-align: left;
  }
}
.cta_blocks .box .mail {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Red Hat Display", sans-serif;
  line-height: 1;
  padding: 1em 1.5em;
  border: solid 1px #917171;
  background-color: #4b4248;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  .cta_blocks .box .mail {
    font-size: 1.6rem;
    padding: 0.8em;
  }
}
.cta_blocks .box .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
.cta_btn {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 30px auto 0px;
}
@media screen and (max-width: 768px) {
  .cta_btn {
    margin: 20px auto 0px;
    flex-flow: column;
  }
}
.cta_btn li {
  max-width: 340px;
  width: 50%;
  padding: 0px 15px;
}
@media screen and (max-width: 768px) {
  .cta_btn li {
    padding: 0px;
    max-width: none;
    width: 100%;
  }
  .cta_btn li:first-child {
    margin-bottom: 15px;
  }
}
.cta_btn a {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
}
.cta_forpro_btn {
  margin: 50px auto 0;
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta_forpro_btn {
    margin: 35px auto 0;
  }
}
.cta_forpro_btn .btn09 {
  height: 80px;
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(180deg, rgb(72, 89, 105) 0%, rgb(47, 62, 75) 100%);
}
@media screen and (max-width: 768px) {
  .cta_forpro_btn .btn09 {
    height: 70px;
    font-size: 1.6rem;
  }
}

.externallinks {
  position: relative;
  z-index: 2;
  padding: 80px 0px;
  background-color: #292F30;
}
@media screen and (max-width: 768px) {
  .externallinks {
    padding: 40px 0px;
  }
}
.externallinks_inner {
  max-width: 1100px;
  margin: 0px auto;
}
.externallinks_inner ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .externallinks_inner ul {
    flex-flow: column;
  }
}
.externallinks_inner ul li {
  max-width: 440px;
  padding: 15px;
  width: 33.3333333333%;
}
@media screen and (max-width: 991px) {
  .externallinks_inner ul li {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .externallinks_inner ul li {
    width: 100%;
    max-width: 460px;
    margin: 0px auto;
  }
}
.externallinks_inner ul li a {
  display: block;
}
.externallinks_inner ul li a:hover img {
  opacity: 0.8;
}

/*==================================================================
    .lead-sec
===================================================================*/
.lead-sec {
  color: #fff;
  padding: 0 0 70px;
}
@media screen and (max-width: 768px) {
  .lead-sec {
    padding: 0 0 50px;
  }
}
.lead-sec_ttl {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .lead-sec_ttl {
    font-size: 2.2rem;
    margin-bottom: 0.6em;
  }
}
.lead-sec_txt {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .lead-sec_txt {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  transition: all 200ms ease;
  animation-duration: 200ms;
  animation-fill-mode: both;
}

.animate.animated {
  visibility: visible;
}

.aInfinite {
  animation-iteration-count: infinite;
}

.aEx {
  transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.a0 {
  animation-duration: 0s;
  animation-fill-mode: both;
}

.a1 {
  animation-duration: 0.1s;
  animation-fill-mode: both;
}

.a2 {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

.a3 {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.a4 {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.a5 {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.a6 {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.a7 {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.a8 {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.a9 {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.a10 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.a11 {
  animation-duration: 1.1s;
  animation-fill-mode: both;
}

.a12 {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.a13 {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.a14 {
  animation-duration: 1.4s;
  animation-fill-mode: both;
}

.a15 {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.a16 {
  animation-duration: 1.6s;
  animation-fill-mode: both;
}

.a17 {
  animation-duration: 1.7s;
  animation-fill-mode: both;
}

.a18 {
  animation-duration: 1.8s;
  animation-fill-mode: both;
}

.a19 {
  animation-duration: 1.9s;
  animation-fill-mode: both;
}

.a20 {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.a21 {
  animation-duration: 2.1s;
  animation-fill-mode: both;
}

.a22 {
  animation-duration: 2.2s;
  animation-fill-mode: both;
}

.a23 {
  animation-duration: 2.3s;
  animation-fill-mode: both;
}

.a24 {
  animation-duration: 2.4s;
  animation-fill-mode: both;
}

.a25 {
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.a26 {
  animation-duration: 2.6s;
  animation-fill-mode: both;
}

.a27 {
  animation-duration: 2.7s;
  animation-fill-mode: both;
}

.a28 {
  animation-duration: 2.8s;
  animation-fill-mode: both;
}

.a29 {
  animation-duration: 2.9s;
  animation-fill-mode: both;
}

.a30 {
  animation-duration: 3s;
  animation-fill-mode: both;
}

.a31 {
  animation-duration: 3.1s;
  animation-fill-mode: both;
}

.a32 {
  animation-duration: 3.2s;
  animation-fill-mode: both;
}

.a33 {
  animation-duration: 3.3s;
  animation-fill-mode: both;
}

.a34 {
  animation-duration: 3.4s;
  animation-fill-mode: both;
}

.a35 {
  animation-duration: 3.5s;
  animation-fill-mode: both;
}

.a36 {
  animation-duration: 3.6s;
  animation-fill-mode: both;
}

.a37 {
  animation-duration: 3.7s;
  animation-fill-mode: both;
}

.a38 {
  animation-duration: 3.8s;
  animation-fill-mode: both;
}

.a39 {
  animation-duration: 3.9s;
  animation-fill-mode: both;
}

.a40 {
  animation-duration: 4s;
  animation-fill-mode: both;
}

.a41 {
  animation-duration: 4.1s;
  animation-fill-mode: both;
}

.a42 {
  animation-duration: 4.2s;
  animation-fill-mode: both;
}

.a43 {
  animation-duration: 4.3s;
  animation-fill-mode: both;
}

.a44 {
  animation-duration: 4.4s;
  animation-fill-mode: both;
}

.a45 {
  animation-duration: 4.5s;
  animation-fill-mode: both;
}

.a46 {
  animation-duration: 4.6s;
  animation-fill-mode: both;
}

.a47 {
  animation-duration: 4.7s;
  animation-fill-mode: both;
}

.a48 {
  animation-duration: 4.8s;
  animation-fill-mode: both;
}

.a49 {
  animation-duration: 4.9s;
  animation-fill-mode: both;
}

.a50 {
  animation-duration: 5s;
  animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.aD0 {
  animation-delay: 0s;
}

.aD1 {
  animation-delay: 0.1s;
}

.aD2 {
  animation-delay: 0.2s;
}

.aD3 {
  animation-delay: 0.3s;
}

.aD4 {
  animation-delay: 0.4s;
}

.aD5 {
  animation-delay: 0.5s;
}

.aD6 {
  animation-delay: 0.6s;
}

.aD7 {
  animation-delay: 0.7s;
}

.aD8 {
  animation-delay: 0.8s;
}

.aD9 {
  animation-delay: 0.9s;
}

.aD10 {
  animation-delay: 1s;
}

.aD11 {
  animation-delay: 1.1s;
}

.aD12 {
  animation-delay: 1.2s;
}

.aD13 {
  animation-delay: 1.3s;
}

.aD14 {
  animation-delay: 1.4s;
}

.aD15 {
  animation-delay: 1.5s;
}

.aD16 {
  animation-delay: 1.6s;
}

.aD17 {
  animation-delay: 1.7s;
}

.aD18 {
  animation-delay: 1.8s;
}

.aD19 {
  animation-delay: 1.9s;
}

.aD20 {
  animation-delay: 2s;
}

.aD21 {
  animation-delay: 2.1s;
}

.aD22 {
  animation-delay: 2.2s;
}

.aD23 {
  animation-delay: 2.3s;
}

.aD24 {
  animation-delay: 2.4s;
}

.aD25 {
  animation-delay: 2.5s;
}

.aD26 {
  animation-delay: 2.6s;
}

.aD27 {
  animation-delay: 2.7s;
}

.aD28 {
  animation-delay: 2.8s;
}

.aD29 {
  animation-delay: 2.9s;
}

.aD30 {
  animation-delay: 3s;
}

.aD31 {
  animation-delay: 3.1s;
}

.aD32 {
  animation-delay: 3.2s;
}

.aD33 {
  animation-delay: 3.3s;
}

.aD34 {
  animation-delay: 3.4s;
}

.aD35 {
  animation-delay: 3.5s;
}

.aD36 {
  animation-delay: 3.6s;
}

.aD37 {
  animation-delay: 3.7s;
}

.aD38 {
  animation-delay: 3.8s;
}

.aD39 {
  animation-delay: 3.9s;
}

.aD40 {
  animation-delay: 4s;
}

.aD41 {
  animation-delay: 4.1s;
}

.aD42 {
  animation-delay: 4.2s;
}

.aD43 {
  animation-delay: 4.3s;
}

.aD44 {
  animation-delay: 4.4s;
}

.aD45 {
  animation-delay: 4.5s;
}

.aD46 {
  animation-delay: 4.6s;
}

.aD47 {
  animation-delay: 4.7s;
}

.aD48 {
  animation-delay: 4.8s;
}

.aD49 {
  animation-delay: 4.9s;
}

.aD50 {
  animation-delay: 5s;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/*==================================================================
    #top .topics
===================================================================*/
#top .topics {
  padding: 0px 0 80px;
  color: #fff;
  position: relative;
  z-index: 2;
  background-color: #292f30;
}
@media screen and (max-width: 768px) {
  #top .topics {
    padding: 0px 0 40px;
  }
}
#top .topics::before {
  display: block;
  content: "";
  width: 10px;
  height: 284px;
  background-image: url(../img/top/topix_icon_01.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 3.125vw;
  top: -30px;
}
@media screen and (max-width: 768px) {
  #top .topics::before {
    right: 1.3333333333vw;
    top: -20px;
  }
}
#top .topics_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #top .topics_inner {
    padding: 0 6.6666666667vw;
  }
}
#top .topics_ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #top .topics_ttl {
    display: block;
    margin-bottom: 30px;
  }
}
#top .topics_ttl .h01 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #top .topics_ttl .h01 {
    margin-bottom: 30px;
  }
}
#top .topics_ttl .lead {
  font-size: 1.4rem;
}
@media screen and (max-width: 991px) {
  #top .topics_ttl .lead {
    font-size: 1.3rem;
  }
}
#top .topics .list {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 3.125vw);
  margin-left: -1.5625vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #top .topics .list {
    flex-flow: column wrap;
    width: 100%;
    align-items: center;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
#top .topics .list_item {
  width: 33.333%;
  padding: 0 1.5625vw;
  margin-bottom: 3.64em;
}
@media screen and (max-width: 768px) {
  #top .topics .list_item {
    width: 100%;
    padding: 0;
  }
}
#top .topics .list_item a {
  display: block;
  color: #fff;
}
#top .topics .list_item a:hover {
  opacity: 0.6;
}
#top .topics .list_item a:hover .img img {
  transform: translate(-50%, -50%) scale(1.1);
}
#top .topics .list_item .img {
  margin-bottom: 1em;
  overflow: hidden;
  padding-top: 56.25%;
  height: 0;
  position: relative;
}
#top .topics .list_item .img img {
  transition: all 200ms ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top .topics .list_item .img span {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  height: 24px;
  background-color: #292f30;
  line-height: 24px;
}
#top .topics .list_item .img span::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 10px 0 0;
  border-color: transparent transparent transparent transparent;
}
#top .topics .list_item .img span.for-saloninfo {
  background-color: #677D81;
}
#top .topics .list_item .img span.for-saloninfo::after {
  border-color: #677D81 transparent transparent transparent;
}
#top .topics .list_item .img span.for-storeinfo {
  background-color: #867D64;
}
#top .topics .list_item .img span.for-storeinfo::after {
  border-color: #867D64 transparent transparent transparent;
}
#top .topics .list_item .img span.for-news {
  background-color: #3b3b3b;
}
#top .topics .list_item .img span.for-news::after {
  border-color: #3b3b3b transparent transparent transparent;
}
#top .topics .list_item .date {
  font-size: 1.2rem;
  line-height: 1.1;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
#top .topics .list_item .ttl {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1em;
}
@media screen and (max-width: 991px) {
  #top .topics .list_item .ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #top .topics .list_item .ttl {
    height: auto !important;
  }
}
#top .topics .list_item .cat {
  display: flex;
  flex-flow: row wrap;
  padding-left: 12px;
  border-left: solid 1px #b7b7b7;
}
#top .topics .list_item .cat li {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #b7b7b7;
  position: relative;
  margin-right: 0.2em;
}
#top .topics .list_item .cat li::after {
  display: inline-block;
  content: ",";
}
#top .topics .list_item .cat li:last-child::after {
  display: none;
}
#top .topics_btn {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .topics_btn {
    width: 100%;
  }
}

/*==================================================================
    #top .product
===================================================================*/
#top .product {
  color: #fff;
  position: relative;
  z-index: 2;
  background-color: #292f30;
}
#top .product_upper {
  padding: 85px 0;
  background-color: #414141;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .product_upper {
    padding: 50px 0;
  }
}
#top .product_upper::before {
  display: block;
  content: "";
  width: 9px;
  height: 80px;
  background-image: url(../img/top/product_icon_01.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 25px;
  right: 3.125vw;
}
@media screen and (max-width: 768px) {
  #top .product_upper::before {
    right: 1.3333333333vw;
  }
}
#top .product_under {
  padding: 75px 0 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .product_under {
    padding: 50px 0;
  }
}
#top .product_under .largebanner {
  padding: 20px 0 50px;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}
#top .product_under .largebanner img {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
#top .product_under .largebanner a:hover {
  opacity: 0.8;
}
#top .product_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #top .product_inner {
    padding: 0 6.6666666667vw;
  }
}
#top .product .content_ttl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #top .product .content_ttl {
    font-size: 2rem;
  }
}
#top .product .content_ttl::after {
  content: "";
  width: 4em;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#top .product .content_ttl .name {
  font-size: 2.3rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #top .product .content_ttl .name {
    font-size: 1.8rem;
  }
}
#top .product .content_ttl .name .for {
  font-weight: 400;
}
#top .product .content_ttl .icon {
  display: inline-block;
  line-height: 38px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #top .product .content_ttl .icon {
    width: auto;
    line-height: 1.2;
    font-size: 1.2rem;
    padding: 0.4em;
    margin-left: 1em;
  }
}
#top .product .content_lead {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top .product .content_lead {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 30px;
  }
}
#top .product .content_slider {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #top .product .content_slider {
    margin-bottom: 35px;
  }
}
#top .product .content .slider_item {
  width: 16.40625vw;
  padding: 0 1.171875vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider_item {
    width: 100%;
    padding: 0;
  }
}
#top .product .content .slider_item a {
  display: block;
  color: #fff;
}
#top .product .content .slider_item a:hover {
  opacity: 0.6;
}
#top .product .content .slider_item a:hover .img img {
  transform: scale(1.05);
}
#top .product .content .slider_item a .icon {
  text-align: center;
  margin-bottom: 15px;
}
#top .product .content .slider_item a .icon span {
  font-size: 1.1rem;
  padding: 5px 10px;
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: normal;
  margin-right: 10px;
}
#top .product .content .slider_item a .icon span:last-child {
  margin: 0px;
}
#top .product .content .slider_item a .icon.-salon span {
  background-color: #292f30;
}
#top .product .content .slider_item a .icon.-pro span {
  background-color: #464646;
}
#top .product .content .slider_item .img {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider_item .img {
    text-align: center;
    margin-bottom: 1em;
  }
}
#top .product .content .slider_item .img img {
  width: 100%;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider_item .img img {
    display: inline-block;
    width: 180px;
  }
}
#top .product .content .slider_item .ttl {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider_item .ttl {
    font-size: 1.4rem;
    margin-bottom: 0.5em;
  }
}
#top .product .content .slider_item .ttl em {
  display: inline-block;
  margin-right: 5px;
  background-color: #9A5761;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  text-align: center;
  height: 20px;
  font-size: 1.1rem;
  padding: 0px 4px;
  line-height: 20px;
}
#top .product .content .slider_item .txt {
  font-size: 1.1rem;
  line-height: 1.4;
  font-family: "Red Hat Display", sans-serif;
  color: #979797;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider_item .txt {
    font-size: 1rem;
  }
}
#top .product .content .slider .prev-arrow,
#top .product .content .slider .next-arrow {
  display: block;
  width: 23px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 200ms ease;
  z-index: 9;
}
#top .product .content .slider .prev-arrow {
  background-image: url(../img/common/icon_prev_01.svg);
  left: -25px;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider .prev-arrow {
    left: -15px;
  }
}
#top .product .content .slider .prev-arrow:hover {
  left: -30px;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider .prev-arrow:hover {
    left: -15px;
  }
}
#top .product .content .slider .next-arrow {
  background-image: url(../img/common/icon_next_01.svg);
  right: -25px;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider .next-arrow {
    right: -15px;
  }
}
#top .product .content .slider .next-arrow:hover {
  right: -30px;
}
@media screen and (max-width: 768px) {
  #top .product .content .slider .next-arrow:hover {
    right: -15px;
  }
}
#top .product .content_btn {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .product .content_btn {
    width: 100%;
  }
}
#top .product .content_btn a {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #top .product .content_btn a {
    margin-bottom: 10px;
  }
}

/*==================================================================
    #top .support
===================================================================*/
#top .support {
  padding: 80px 0 100px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .support {
    padding: 50px 0 80px;
  }
}
#top .support::before {
  display: block;
  content: "";
  width: 9px;
  height: 132px;
  background-image: url(../img/top/support_icon_01.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 3.125vw;
  bottom: 15px;
}
@media screen and (max-width: 768px) {
  #top .support::before {
    left: 1.3333333333vw;
  }
}
#top .support_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #top .support_inner {
    padding: 0 6.6666666667vw;
  }
}
#top .support_ttl {
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  #top .support_ttl {
    display: block;
    margin-bottom: 30px;
  }
}
#top .support_ttl .h01 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #top .support_ttl .h01 {
    margin-bottom: 30px;
  }
}
#top .support_ttl .txt {
  font-size: 1.2rem;
  color: #535353;
}
#top .support_container {
  padding: 0 8.59375vw 0 4.296875vw;
}
@media screen and (max-width: 768px) {
  #top .support_container {
    padding: 0 6.6666666667vw;
  }
}
#top .support_slider {
  position: relative;
}
#top .support .slider {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #top .support .slider {
    margin-bottom: 30px;
  }
}
#top .support .slider .slick-dots {
  bottom: -15px !important;
}
@media screen and (max-width: 768px) {
  #top .support .slider .slick-dots {
    bottom: -30px !important;
  }
}
#top .support .slider_item .blocks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top .support .slider_item .blocks {
    flex-flow: column nowrap;
  }
}
#top .support .slider_item .img {
  width: 48.4375vw;
  padding: 2.734375vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .support .slider_item .img {
    width: 100%;
    padding: 4vw;
    margin-bottom: 10px;
  }
}
#top .support .slider_item .img_inner {
  position: relative;
}
#top .support .slider_item .img_inner img {
  width: 100%;
  position: relative;
  z-index: 2;
}
#top .support .slider_item .img_inner::before, #top .support .slider_item .img_inner::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
#top .support .slider_item .img_inner::before {
  background-image: url(../img/top/support_bg_02.png);
  top: -2.734375vw;
  left: -2.734375vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .support .slider_item .img_inner::before {
    top: -4vw;
    left: -4vw;
  }
}
#top .support .slider_item .img_inner::after {
  background-image: url(../img/top/support_bg_01.png);
  top: 0;
  left: 0;
  z-index: 3;
}
#top .support .slider_item .content {
  width: 38.671875vw;
  padding: 0 4.296875vw 0 1.171875vw;
}
@media screen and (max-width: 768px) {
  #top .support .slider_item .content {
    width: 100%;
  }
}
#top .support .slider_item .content .ttl {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  #top .support .slider_item .content .ttl {
    text-align: center;
  }
  #top .support .slider_item .content .ttl img {
    max-width: 100%;
    display: inline-block;
  }
}
#top .support .slider_item .content .txt {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 0.9em;
}
@media screen and (max-width: 768px) {
  #top .support .slider_item .content .txt {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.2em;
  }
}
#top .support .slider_item .content .btn {
  width: 220px;
}
@media screen and (max-width: 768px) {
  #top .support .slider_item .content .btn {
    width: 100%;
  }
}
#top .support .slider .prev-arrow,
#top .support .slider .next-arrow {
  display: block;
  width: 23px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: all 200ms ease;
}
#top .support .slider .prev-arrow {
  background-image: url(../img/common/icon_prev_02.svg);
  left: -25px;
}
@media screen and (max-width: 768px) {
  #top .support .slider .prev-arrow {
    left: -15px;
  }
}
#top .support .slider .prev-arrow:hover {
  left: -30px;
}
@media screen and (max-width: 768px) {
  #top .support .slider .prev-arrow:hover {
    left: -15px;
  }
}
#top .support .slider .next-arrow {
  background-image: url(../img/common/icon_next_02.svg);
  right: -25px;
}
@media screen and (max-width: 768px) {
  #top .support .slider .next-arrow {
    right: -15px;
  }
}
#top .support .slider .next-arrow:hover {
  right: -30px;
}
@media screen and (max-width: 768px) {
  #top .support .slider .next-arrow:hover {
    right: -15px;
  }
}

/*==================================================================
    #top .brand-block
===================================================================*/
#top .brand-block {
  width: 100vw;
  height: calc(100vh - 85px);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #top .brand-block {
    height: 100vh;
  }
}

/*==================================================================
    #top .brand
===================================================================*/
#top .brand {
  width: 100vw;
  background-color: #000;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #top .brand {
    padding: 40px 0px;
  }
}
#top .brand_inner {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .brand_inner {
    padding-top: 30px;
  }
}
#top .brand_sub img {
  margin: 30px auto 0px;
  display: block;
  width: 100%;
}
#top .brand_bg {
  display: block;
  content: "";
  width: 100%;
  height: calc(100% + 160px);
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .brand_bg {
    height: 100%;
    top: 0px;
  }
}
#top .brand_movie {
  width: 58.203125vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #top .brand_movie {
    width: 100%;
    height: 46.511627907vw;
    top: 50%;
  }
}
#top .brand_movie_box {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
#top .brand_movie_box video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#top .brand_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  #top .brand_content {
    align-items: center;
    justify-content: flex-start;
  }
}
#top .brand .content_inner {
  color: #fff;
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #top .brand .content_inner {
    padding: 0 6.6666666667vw;
  }
}
#top .brand .content_inner .h01 {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  #top .brand .content_inner .h01 {
    margin-bottom: 40px;
  }
}
#top .brand .content_inner .ttl {
  margin-bottom: 2.9em;
}
@media screen and (max-width: 1200px) {
  #top .brand .content_inner .ttl {
    max-width: 400px;
  }
}
@media screen and (max-width: 991px) {
  #top .brand .content_inner .ttl {
    max-width: 320px;
  }
}
@media screen and (max-width: 768px) {
  #top .brand .content_inner .ttl {
    margin-bottom: 2em;
  }
}
#top .brand .content_inner .txt {
  margin-bottom: 3.7em;
}
@media screen and (max-width: 768px) {
  #top .brand .content_inner .txt {
    margin-bottom: 1em;
  }
}
#top .brand .content_inner .txt dt {
  font-size: 1.9rem;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
#top .brand .content_inner .txt dt br {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  #top .brand .content_inner .txt dt br {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  #top .brand .content_inner .txt dt {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
#top .brand .content_inner .txt dt span {
  font-family: "Red Hat Display", sans-serif;
}
#top .brand .content_inner .txt dd {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #top .brand .content_inner .txt dd {
    font-size: 1.3rem;
  }
}
#top .brand .content_inner .btn {
  width: 230px;
}
@media screen and (max-width: 768px) {
  #top .brand .content_inner .btn {
    width: 100%;
  }
}

#top .howto {
  padding: 80px 0 60px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .howto {
    padding: 50px 0;
  }
}
#top .howto_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #top .howto_inner {
    padding: 0 6.6666666667vw;
  }
}
#top .howto_lead {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #535353;
  margin-bottom: 3.75em;
}
#top .howto_lead b {
  display: inline;
  margin-bottom: 10px;
  font-size: 1.8rem;
  background: linear-gradient(transparent 70%, rgba(167, 195, 208, 0.2) 0%);
}
@media screen and (max-width: 768px) {
  #top .howto_lead {
    margin-bottom: 1em;
  }
}
#top .howto_list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  #top .howto_list {
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
  }
}
#top .howto_item {
  width: 40.625vw;
}
@media screen and (max-width: 768px) {
  #top .howto_item {
    width: 100%;
  }
}
#top .howto_item a {
  display: block;
  color: #000;
}
#top .howto_item a:hover {
  opacity: 0.6;
}
#top .howto_item a:hover .img img {
  transform: scale(1.05);
}
#top .howto_item .img {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #top .howto_item .img {
    margin-bottom: 0.5em;
  }
}
#top .howto_item .img img {
  width: 100%;
  transition: all 200ms ease;
}
#top .howto_item .outline {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #top .howto_item .outline {
    display: block;
  }
}
#top .howto_item .outline .ttl {
  width: 145px;
  font-size: 1.7rem;
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .howto_item .outline .ttl {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0.5em;
  }
}
#top .howto_item .outline .ttl::before {
  display: block;
  content: "";
  width: 1px;
  height: 35px;
  background-color: #000;
  position: absolute;
  top: -2.5em;
  left: 1.5em;
}
@media screen and (max-width: 768px) {
  #top .howto_item .outline .ttl::before {
    height: 20px;
    top: -1.2em;
  }
}
#top .howto_item .outline .ttl span {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Red Hat Display", sans-serif;
  font-weight: normal;
}
#top .howto_item .outline .txt {
  width: calc(100% - 145px);
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #top .howto_item .outline .txt {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
#top .howto_blocks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks {
    display: block;
  }
}
#top .howto_blocks .img {
  width: 42.96875vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .img {
    width: 100%;
  }
}
#top .howto_blocks .img .btn {
  width: 230px;
  position: absolute;
  top: 1.171875vw;
  left: 1.5625vw;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .img .btn {
    width: 200px;
    top: 0;
    left: 0;
  }
}
#top .howto_blocks .outline {
  width: calc(100% - 42.96875vw);
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .outline {
    width: 100%;
  }
}
#top .howto_blocks .outline .ttl {
  font-size: 3.2rem;
  font-family: "Red Hat Display", sans-serif;
  line-height: 1.125;
  margin-bottom: 0.56em;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .outline .ttl {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
#top .howto_blocks .outline .txt {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5em;
}
#top .howto_blocks .outline .btn {
  width: 280px;
}
@media screen and (max-width: 768px) {
  #top .howto_blocks .outline .btn {
    width: 100%;
  }
}

#top .bannerblock {
  z-index: 2;
  background-color: #292f30;
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .bannerblock {
    padding: 30px 0;
  }
}

#top .banner_area {
  margin: 0px -20px 60px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1480px) {
  #top .banner_area {
    padding: 0px 7.03125vw;
  }
}
@media screen and (max-width: 991px) {
  #top .banner_area {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #top .banner_area {
    padding: 6.6666666667vw;
    margin: 0px -10px 40px;
  }
}
#top .banner_area li {
  width: 50%;
  max-width: 580px;
  padding: 20px;
}
@media screen and (max-width: 991px) {
  #top .banner_area li {
    width: 100%;
    padding: 10px;
    margin-bottom: 0px;
  }
}
#top .banner_area li .brd {
  box-shadow: 0px 0px 1px #b3b3b3;
}

#top .content_ttl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  font-size: 2.4rem;
  position: relative;
  padding-bottom: 25px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top .content_ttl {
    font-size: 2rem;
  }
}
#top .content_ttl::after {
  content: "";
  width: 4em;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*==================================================================
    #faq .list
===================================================================*/
#faq .list {
  padding: 70px 0 130px;
}
@media screen and (max-width: 768px) {
  #faq .list {
    padding: 30px 0 80px;
  }
}
#faq .list_list {
  display: flex;
  flex-flow: row wrap;
}
#faq .list_list:hover li .img {
  opacity: 0.2;
}
#faq .list_list:hover li:hover {
  transform: scale(1.1);
}
#faq .list_list:hover li:hover .img {
  opacity: 1;
}
#faq .list_item {
  width: 25%;
  padding: 0 4.3181818182%;
  margin-bottom: 70px;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #faq .list_item {
    width: 46.1538461538%;
    padding: 0;
    margin-right: 7.6923076923%;
    margin-bottom: 40px;
  }
  #faq .list_item:nth-child(even) {
    margin-right: 0;
  }
}
#faq .list_item a {
  display: block;
  color: #fff;
}
#faq .list_item a .img {
  text-align: center;
  margin-bottom: 2.14em;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #faq .list_item a .img {
    margin-bottom: 1.6em;
  }
}
#faq .list_item a .img img {
  width: 100%;
}
#faq .list_item a .icon {
  text-align: center;
  margin-bottom: 15px;
}
#faq .list_item a .icon span {
  font-size: 1.1rem;
  background-color: #464646;
  padding: 5px 10px;
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: normal;
  margin-right: 10px;
}
#faq .list_item a .icon span:last-child {
  margin: 0px;
}
#faq .list_item a dl {
  text-align: center;
}
#faq .list_item a dl dt {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1.1em;
}
@media screen and (max-width: 768px) {
  #faq .list_item a dl dt {
    margin-bottom: 0.8em;
    font-size: 1.3rem;
  }
}
#faq .list_item a dl dt .external {
  display: inline-flex;
  width: 12px;
  margin-left: 5px;
}
#faq .list_item a dl dd {
  font-size: 1.1rem;
  line-height: 1.4;
  font-family: "Red Hat Display", sans-serif;
  color: #979797;
}
@media screen and (max-width: 768px) {
  #faq .list_item a dl dd {
    font-size: 1rem;
  }
}

@keyframes frfr {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-15px);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
/*==================================================================
    #faq .detail
===================================================================*/
#faq .detail {
  padding: 40px 0 180px;
}
@media screen and (max-width: 768px) {
  #faq .detail {
    padding: 30px 0 80px;
  }
}
#faq .detail_inner {
  max-width: 990px;
}
@media screen and (max-width: 768px) {
  #faq .detail_inner {
    max-width: 100%;
  }
}
#faq .detail_head {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #faq .detail_head {
    margin-bottom: 2em;
    flex-flow: column nowrap;
    justify-content: center;
  }
}
#faq .detail_head .head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #faq .detail_head .head {
    margin-bottom: 1.2em;
  }
}
#faq .detail_head .head .ttl {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #faq .detail_head .head .ttl {
    font-size: 1.8rem;
  }
}
#faq .detail_head .head .ttl br {
  display: none;
}
#faq .detail_head .head .ttl span {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: "Red Hat Display", sans-serif;
  color: #898989;
  letter-spacing: 0.05em;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  #faq .detail_head .head .ttl span {
    margin-top: 0.4em;
  }
}
#faq .detail_head .head img {
  width: 100px;
}
@media screen and (max-width: 768px) {
  #faq .detail_head .head img {
    width: 75px;
  }
}
#faq .detail_head .menu_btn {
  width: 100px;
}
#faq .detail_head .menu_btn a {
  display: flex;
  flex-flow: row-reverse nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 1.1rem;
  color: #fff;
  border: solid 1px #fff;
  position: relative;
}
#faq .detail_head .menu_btn a::after {
  display: block;
  content: "";
  width: 12px;
  height: 16px;
  background-image: url(../img/common/icon_cycle.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-right: 0.5em;
  transition: all 200ms ease;
}
#faq .detail_head .menu_btn a:hover::after {
  transform: rotate(180deg);
}
#faq .detail_toggle {
  padding: 0 0 55px;
}
@media screen and (max-width: 768px) {
  #faq .detail_toggle {
    padding: 0 0 35px;
  }
}
#faq .detail_toggle .toggle {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #faq .detail_toggle .toggle {
    margin-bottom: 15px;
  }
}
#faq .detail_toggle .toggle span {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 768px) {
  #faq .detail_toggle .toggle span {
    margin-bottom: 0.2em;
  }
}
#faq .detail_toggle .toggle_q {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  color: #fff;
  padding: 20px 30px;
  background-color: #393e43;
}
@media screen and (max-width: 768px) {
  #faq .detail_toggle .toggle_q {
    padding: 4vw;
  }
}
#faq .detail_toggle .toggle_a {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 20px 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #faq .detail_toggle .toggle_a {
    padding: 4vw;
  }
}
#faq .detail_toggle .toggle_a a {
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}
#faq .detail_contact {
  color: #fff;
}
#faq .detail .contact_lead {
  padding: 25px 0;
  border-top: solid 1px rgba(0, 0, 0, 0.4);
  border-bottom: solid 1px rgba(0, 0, 0, 0.4);
  position: relative;
  margin-bottom: 20px;
}
#faq .detail .contact_lead::before, #faq .detail .contact_lead::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
}
#faq .detail .contact_lead::before {
  top: -2px;
}
#faq .detail .contact_lead::after {
  bottom: 0;
}
#faq .detail .contact_lead .ttl {
  font-size: 1.8rem;
  line-height: 1.55;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  #faq .detail .contact_lead .ttl {
    font-size: 1.6rem;
  }
}
#faq .detail .contact_lead .caution {
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
}
#faq .detail .contact_info dl {
  width: 300px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #faq .detail .contact_info dl {
    width: 100%;
  }
}
#faq .detail .contact_info dl dt {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #faq .detail .contact_info dl dt {
    margin-bottom: 0.6em;
  }
}
#faq .detail .contact_upper {
  margin-bottom: 45px;
}
#faq .detail .contact_upper .blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #faq .detail .contact_upper .blocks {
    flex-flow: column nowrap;
  }
}
#faq .detail .contact_upper .blocks dl:first-of-type {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #faq .detail .contact_upper .blocks dl:first-of-type {
    margin-right: 0;
  }
}
#faq .detail .contact_upper .caution {
  font-size: 1rem;
  text-align: center;
}
#faq .detail .contact_under .blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
#faq .detail .contact_under .caution {
  font-size: 1.1rem;
  text-align: center;
}

/*==================================================================
    #topics .topics
===================================================================*/
#topics .topics {
  padding: 50px 0 160px;
  color: #fff;
  position: relative;
  z-index: 2;
  background-color: #292f30;
}
@media screen and (max-width: 768px) {
  #topics .topics {
    padding: 30px 0 100px;
  }
}
#topics .topics_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #topics .topics_inner {
    padding: 0 6.6666666667vw;
  }
}
#topics .topics_select {
  margin-bottom: 25px;
}
#topics .topics_select .select-box {
  min-width: 140px;
  display: inline-block;
  position: relative;
}
#topics .topics_select .select-box select {
  width: 100%;
  height: 46px;
  font-size: 1.4rem;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1em 2em 1em 1em;
  border: solid 1px #fff;
  border-radius: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
#topics .topics_select .select-box::before {
  display: block;
  content: "";
  width: 10px;
  height: 5px;
  background-image: url(../img/common/icon_select_01.svg);
  background-size: 10px 5px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
#topics .topics .list {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 3.125vw);
  margin-left: -1.5625vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #topics .topics .list {
    flex-flow: column wrap;
    width: 100%;
    align-items: center;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
#topics .topics .list_item {
  width: 33.333%;
  padding: 0 1.5625vw;
  margin-bottom: 3.64em;
}
@media screen and (max-width: 768px) {
  #topics .topics .list_item {
    width: 100%;
    padding: 0;
  }
}
#topics .topics .list_item a {
  display: block;
  color: #fff;
}
#topics .topics .list_item a:hover {
  opacity: 0.6;
}
#topics .topics .list_item a:hover .img img {
  transform: scale(1.05);
}
#topics .topics .list_item .img {
  margin-bottom: 1em;
  position: relative;
}
#topics .topics .list_item .img img {
  transition: all 200ms ease;
}
#topics .topics .list_item .img span {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  height: 24px;
  background-color: #292f30;
  line-height: 24px;
}
#topics .topics .list_item .img span::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 10px 0 0;
  border-color: transparent transparent transparent transparent;
}
#topics .topics .list_item .img span.for-saloninfo {
  background-color: #677D81;
}
#topics .topics .list_item .img span.for-saloninfo::after {
  border-color: #677D81 transparent transparent transparent;
}
#topics .topics .list_item .img span.for-storeinfo {
  background-color: #867D64;
}
#topics .topics .list_item .img span.for-storeinfo::after {
  border-color: #867D64 transparent transparent transparent;
}
#topics .topics .list_item .img span.for-news {
  background-color: #3b3b3b;
}
#topics .topics .list_item .img span.for-news::after {
  border-color: #3b3b3b transparent transparent transparent;
}
#topics .topics .list_item .date {
  font-size: 1.2rem;
  line-height: 1.1;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
#topics .topics .list_item .ttl {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1em;
}
@media screen and (max-width: 991px) {
  #topics .topics .list_item .ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #topics .topics .list_item .ttl {
    height: auto !important;
  }
}
#topics .topics .list_item .cat {
  display: flex;
  flex-flow: row wrap;
  padding-left: 12px;
  border-left: solid 1px #b7b7b7;
}
#topics .topics .list_item .cat li {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #b7b7b7;
  position: relative;
  margin-right: 0.2em;
}
#topics .topics .list_item .cat li::after {
  display: inline-block;
  content: ",";
}
#topics .topics .list_item .cat li:last-child::after {
  display: none;
}
#topics .topics_btn {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #topics .topics_btn {
    width: 100%;
  }
}

/*==================================================================
    #topics .article
===================================================================*/
#topics .article {
  padding: 70px 0 200px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #topics .article {
    padding: 30px 0 100px;
  }
}
#topics .article_inner {
  max-width: 930px;
}
@media screen and (max-width: 768px) {
  #topics .article_inner {
    max-width: 100%;
  }
}
#topics .article_ttl {
  margin-bottom: 3.8em;
}
@media screen and (max-width: 768px) {
  #topics .article_ttl {
    margin-bottom: 2.5em;
  }
}
#topics .article_ttl .sub {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  #topics .article_ttl .sub {
    margin-bottom: 0.8em;
  }
}
#topics .article_ttl .sub em {
  font-size: 1.9rem;
  font-weight: 500;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
  margin-right: 0.8em;
}
@media screen and (max-width: 768px) {
  #topics .article_ttl .sub em {
    font-size: 1.6rem;
  }
}
#topics .article_ttl .sub ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
#topics .article_ttl .sub ul li {
  font-size: 1.1rem;
  padding: 0.2em 0.6em;
  border: solid 1px #fff;
  margin-right: 0.2em;
}
@media screen and (max-width: 768px) {
  #topics .article_ttl .sub ul li {
    font-size: 1rem;
  }
}
#topics .article_ttl .ttl {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #topics .article_ttl .ttl {
    font-size: 1.6rem;
    margin-bottom: 0.8em;
  }
}
#topics .article_ttl ul {
  display: flex;
  padding-left: 0.8em;
  border-left: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  #topics .article_ttl ul {
    padding-left: 0.6em;
  }
}
#topics .article_ttl ul li {
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #topics .article_ttl ul li {
    font-size: 1.1rem;
  }
}
#topics .article_ttl ul li::after {
  display: inline-block;
  content: ",";
  margin-right: 0.2em;
}
#topics .article_ttl ul li:last-child::after {
  display: none;
}
#topics .article_thumb {
  text-align: center;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  #topics .article_thumb {
    margin-bottom: 1.8em;
  }
}
#topics .article_thumb img {
  width: 100%;
}
#topics .article_content p {
  line-height: 2.2;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 768px) {
  #topics .article_content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
  }
}
#topics .article_content p strong {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #topics .article_content p strong {
    font-size: 1.6rem;
  }
}
#topics .article_content p img.aligncenter {
  display: block;
  margin: 15px auto;
}

/*==================================================================
    #voice .lead-sec
===================================================================*/
#voice .lead-sec {
  padding: 0 0 40px;
}

/*==================================================================
    #voice .report　一覧
===================================================================*/
#voice .report {
  padding: 50px 0 160px;
  color: #fff;
  position: relative;
  z-index: 2;
  background-color: #292f30;
}
@media screen and (max-width: 768px) {
  #voice .report {
    padding: 30px 0 80px;
  }
}
#voice .report_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #voice .report_inner {
    padding: 0 6.6666666667vw;
  }
}
#voice .report_nav {
  padding: 0 0 65px;
}
@media screen and (max-width: 768px) {
  #voice .report_nav {
    padding: 0 0 30px;
  }
}
#voice .report_nav ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #voice .report_nav ul {
    justify-content: space-between;
  }
}
#voice .report_nav ul li {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #voice .report_nav ul li {
    margin-right: 0;
  }
}
#voice .report_nav ul li:last-child {
  margin-right: 0;
}
#voice .report_nav ul li a {
  display: block;
  width: 140px;
  height: 46px;
  line-height: 44px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
  text-align: center;
  border: solid 1px #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #voice .report_nav ul li a {
    width: 27.1111111111vw;
    height: 40px;
    line-height: 38px;
    font-size: 1.3rem;
  }
}
#voice .report_nav ul li a::before {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 200ms ease;
}
#voice .report_nav ul li a span {
  position: relative;
  z-index: 2;
}
#voice .report_nav ul li a:hover::before, #voice .report_nav ul li a.current::before {
  width: 100%;
  height: 100%;
}
#voice .report .list {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 3.125vw);
  margin-left: -1.5625vw;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #voice .report .list {
    flex-flow: column wrap;
    width: 100%;
    align-items: center;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
#voice .report .list_item {
  width: 33.333%;
  padding: 0 1.5625vw;
  margin-bottom: 5.3em;
}
@media screen and (max-width: 768px) {
  #voice .report .list_item {
    width: 100%;
    padding: 0;
  }
}
#voice .report .list_item a {
  display: block;
  color: #fff;
}
#voice .report .list_item a:hover .img::after {
  background-color: rgba(255, 255, 255, 0.4);
}
#voice .report .list_item a:hover .img img {
  transform: scale(1.05);
}
#voice .report .list_item .img {
  position: relative;
}
#voice .report .list_item .img::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 200ms ease;
}
#voice .report .list_item .img img {
  width: 100%;
  transition: all 200ms ease;
}
#voice .report .list_item .cat {
  width: 90px;
  height: 26px;
  font-size: 1.3rem;
  line-height: 26px;
  text-align: center;
  margin-bottom: 0.5em;
  transform: translateY(-50%);
}
#voice .report .list_item .cat.-hairsalon {
  background-color: #808080;
}
#voice .report .list_item .cat.-esthetic {
  background-color: #6e6464;
}
#voice .report .list_item .ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #voice .report .list_item .ttl {
    height: auto !important;
  }
}
#voice .report .list_item .outline {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  #voice .report .list_item .outline {
    height: auto !important;
  }
}
#voice .report .list_item .outline br {
  display: none;
}
#voice .report .list_item .product {
  display: flex;
  flex-flow: row wrap;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: bold;
  padding-left: 40px;
  position: relative;
}
#voice .report .list_item .product::before {
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
}
#voice .report_btn {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #voice .report_btn {
    width: 100%;
  }
}
#voice .report.-other {
  padding: 0 0 120px;
}
@media screen and (max-width: 768px) {
  #voice .report.-other {
    padding: 0 0 100px;
  }
}

/*==================================================================
    #voice .introduce　詳細
===================================================================*/
#voice .introduce {
  padding: 50px 0 120px;
  color: #fff;
  position: relative;
  z-index: 2;
  background-color: #292f30;
}
@media screen and (max-width: 768px) {
  #voice .introduce {
    padding: 30px 0 60px;
  }
}
#voice .introduce_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #voice .introduce_inner {
    padding: 0 6.6666666667vw;
  }
}
#voice .introduce_ttl {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #voice .introduce_ttl {
    font-size: 1.7rem;
  }
}
#voice .introduce_ttl span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  #voice .introduce_ttl span {
    font-size: 1.3rem;
  }
}
#voice .introduce_sub {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3.4em;
}
@media screen and (max-width: 768px) {
  #voice .introduce_sub {
    font-size: 1.3rem;
  }
}
#voice .introduce_blocks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #voice .introduce_blocks {
    flex-flow: column nowrap;
  }
}
#voice .introduce_blocks .img {
  width: 160px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #voice .introduce_blocks .img {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#voice .introduce_blocks .img img {
  border-radius: 80px;
}
#voice .introduce_blocks .prof {
  width: 375px;
}
@media screen and (max-width: 768px) {
  #voice .introduce_blocks .prof {
    width: 100%;
  }
}
#voice .introduce_blocks .prof .ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #voice .introduce_blocks .prof .ttl {
    font-size: 1.6rem;
    text-align: center;
  }
}
#voice .introduce_blocks .prof .txt {
  font-size: 1.4rem;
  line-height: 2;
}

/*==================================================================
    #voice .detail　詳細
===================================================================*/
#voice .txt-box_ttl {
  font-size: 2.2rem;
  line-height: 1.45;
  font-weight: bold;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #voice .txt-box_ttl {
    font-size: 1.6rem;
  }
}
#voice .txt-box_txt p {
  line-height: 1.8;
  margin-bottom: 1.8em;
}
@media screen and (max-width: 768px) {
  #voice .txt-box_txt p {
    font-size: 1.3rem;
  }
}
#voice .txt-box_txt p:last-of-type {
  margin-bottom: 0;
}

#voice .detail {
  padding: 0 0 90px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #voice .detail {
    padding: 0 0 50px;
  }
}
#voice .detail_inner {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 10.546875vw 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #voice .detail_inner {
    flex-flow: column-reverse nowrap;
    justify-content: center;
    padding: 0 6.6666666667vw;
  }
}
#voice .detail_txt {
  width: 41.40625vw;
}
@media screen and (max-width: 768px) {
  #voice .detail_txt {
    width: 100%;
  }
}
#voice .detail_txt .txt-box:first-of-type {
  margin-bottom: 5em;
}
@media screen and (max-width: 768px) {
  #voice .detail_txt .txt-box:first-of-type {
    margin-bottom: 2em;
  }
}
#voice .detail_img {
  width: 35.15625vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #voice .detail_img {
    width: 100%;
    margin-bottom: 3em;
  }
}
#voice .detail_ttl span {
  display: inline-block;
  width: 115px;
  font-size: 1.2rem;
  line-height: 2.1;
  text-align: center;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #voice .detail_ttl span {
    display: block;
    width: 100%;
    font-size: 1.6rem;
  }
}
#voice .detail_goods {
  margin-bottom: 1em;
}
#voice .detail_goods img {
  width: 100%;
  max-width: 450px;
}
#voice .detail_links .name {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.4em;
}
@media screen and (max-width: 768px) {
  #voice .detail_links .name {
    margin-bottom: 2em;
  }
}
#voice .detail_links .name span {
  display: block;
  font-size: 1.8rem;
  font-family: "Red Hat Display", sans-serif;
  line-height: 1.4;
  margin-bottom: 0.2em;
}
#voice .detail_links .btn {
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #voice .detail_links .btn {
    width: 100%;
  }
}

/*==================================================================
    #voice .course　詳細
===================================================================*/
#voice .course {
  color: #fff;
}
#voice .course_inner {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #voice .course_inner {
    flex-flow: column nowrap;
  }
}
#voice .course_img {
  width: 43.75vw;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #voice .course_img {
    width: 100%;
    height: 80vw;
  }
}
#voice .course_txt {
  width: 56.25vw;
  padding: 7.03125vw 7.03125vw 5.46875vw;
  background-color: #556065;
}
@media screen and (max-width: 768px) {
  #voice .course_txt {
    width: 100%;
    padding: 6.6666666667vw 6.6666666667vw;
  }
}

/*==================================================================
    #voice .shop　詳細
===================================================================*/
#voice .shop {
  color: #fff;
  padding: 110px 0;
}
@media screen and (max-width: 768px) {
  #voice .shop {
    padding: 50px 0;
  }
}
#voice .shop_inner {
  padding: 0 7.03125vw;
}
@media screen and (max-width: 768px) {
  #voice .shop_inner {
    padding: 0 6.6666666667vw;
  }
}
#voice .shop .txt-box {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  #voice .shop .txt-box {
    margin-bottom: 40px;
  }
}
#voice .shop_blocks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #voice .shop_blocks {
    flex-flow: column nowrap;
  }
}
#voice .shop_blocks .img {
  width: 390px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #voice .shop_blocks .img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#voice .shop_blocks .img img {
  width: 100%;
}
#voice .shop_blocks .txt .ttl {
  font-size: 1.3rem;
  line-height: 1.45;
  margin-bottom: 1.8em;
}
@media screen and (max-width: 768px) {
  #voice .shop_blocks .txt .ttl {
    text-align: center;
    margin-bottom: 1.2em;
  }
}
#voice .shop_blocks .txt .ttl span {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 0.6em;
}
@media screen and (max-width: 768px) {
  #voice .shop_blocks .txt .ttl span {
    font-size: 1.6rem;
    margin-top: 0.2em;
  }
}
#voice .shop_blocks .txt .add {
  line-height: 1.8;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #voice .shop_blocks .txt .add {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1.6rem;
  }
}
#voice .shop_blocks .txt .caution {
  font-size: 1.1rem;
}

/*==================================================================
    #download
===================================================================*/
#download .list {
  padding: 70px 0 0px;
}
@media screen and (max-width: 768px) {
  #download .list {
    padding: 30px 0 0px;
  }
}
#download .list .notice {
  border-radius: 4px;
  background: #DEDEDE;
  color: #e20c0c;
  padding: 25px;
  margin-bottom: 30px;
}
#download .list .goods_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -20px;
}
@media screen and (max-width: 768px) {
  #download .list .goods_list {
    margin: 0px;
  }
}
#download .list .goods_item {
  width: 33.3333333333%;
  padding: 20px;
  margin-bottom: 30px;
  transition: all 200ms ease;
}
@media screen and (max-width: 991px) {
  #download .list .goods_item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #download .list .goods_item {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
#download .list .goods_item h4 {
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  font-weight: normal;
  margin-bottom: 20px;
}
#download .list .goods_item h4 span {
  font-family: "Work Sans", sans-serif;
  font-size: 3rem;
  display: block;
  line-height: 1.5;
}
#download .list .goods_item dt {
  margin-bottom: 10px;
}
#download .list .goods_item dt img {
  width: 100%;
}
#download .list .goods_item ul {
  margin: 0px -5px;
  display: flex;
  flex-flow: row wrap;
}
#download .list .goods_item ul li {
  padding: 5px;
  width: 50%;
}
#download .list .goods_item ul li a {
  border: 1px solid #878787;
  line-height: 36px;
  display: block;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 15px;
}
#download .list .goods_item ul li a:hover {
  background-color: #fff;
  color: #292f30;
}
#download .list .goods_item ul li a.-image {
  background-image: url(../img/download/icon-image.svg);
}
#download .list .goods_item ul li a.-preview {
  background-image: url(../img/download/icon-preview.svg);
}
#download .list .goods_item ul li a.-movie {
  background-image: url(../img/download/icon-movie.svg);
}
#download .list .goods_item ul li a.-pdf {
  background-image: url(../img/download/icon-pdf.svg);
}

#download .docs {
  padding: 70px 0 130px;
}
@media screen and (max-width: 768px) {
  #download .docs {
    padding: 30px 0 80px;
  }
}
#download .docs ul {
  margin: 0px -15px;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #download .docs ul {
    margin: 0px;
    flex-flow: column;
  }
}
#download .docs ul li {
  padding: 15px 10px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #download .docs ul li {
    width: 100%;
    padding: 5px 0px;
  }
}
#download .docs ul li a {
  border: 1px solid #878787;
  line-height: 70px;
  display: block;
  color: #fff;
  text-align: center;
  background-image: url(../img/common/icon_arrow_01.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 20px;
  font-size: 1.6rem;
}
#download .docs ul li a:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  background-position: right 15px center;
}

#download .footer_foot {
  display: block;
  padding: 40px 15px;
}

/*==================================================================
    #products slider
===================================================================*/
.detail-slider_thumb01 .slick-track {
  -webkit-transform: unset !important;
  transform: unset !important;
}
.detail-slider_thumb01 .slick-list {
  width: 100% !important;
  padding: 0 !important;
}
.detail-slider_thumb01 .item {
  cursor: pointer;
  opacity: 0.4;
}
.detail-slider_thumb01 .item.slick-current {
  opacity: 1;
}

.slick-prev,
.slick-next {
  width: 23px !important;
  height: 46px !important;
  background-size: 23px 46px;
  background-repeat: no-repeat !important;
  text-indent: -9999px;
  z-index: 9;
}

.slick-next {
  right: 10px !important;
  background-image: url(../img/common/icon_next_01.svg) !important;
}

.slick-prev {
  left: 10px !important;
  background-image: url(../img/common/icon_prev_01.svg) !important;
}

/*==================================================================
    #products 共通
===================================================================*/
#products main {
  color: #fff;
}
#products main h2,
#products main h3,
#products main h4,
#products main h5 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products main h2,
  #products main h3,
  #products main h4,
  #products main h5 {
    font-size: 1.7rem;
  }
}
#products main p {
  font-size: 1.4rem;
}
#products main .center {
  text-align: center;
}
#products main .left {
  text-align: left;
}
#products main .ttl01 {
  text-align: center;
}
#products main .ttl01_item {
  font-size: 2.2rem;
  font-weight: 600;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px 40px;
  text-align: center;
  display: inline-block;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #products main .ttl01_item {
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 1.7rem;
  }
}
#products main .ttl01_item.-mb30 {
  margin-bottom: 30px;
}
#products main .ttl02 {
  text-align: center;
}
#products main .ttl02_item {
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products main .ttl02_item {
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 1.5rem;
  }
}
#products main .ttl02_item::after {
  content: "";
  width: 2em;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#products main .award {
  background-color: #393E41;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  #products main .award {
    margin: 40px auto 0;
  }
}
#products main .award_list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products main .award_list {
    flex-flow: column;
  }
}
#products main .award_img {
  max-width: 200px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products main .award_img {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products main .award_txt {
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  #products main .award_txt {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    padding-left: 0px;
  }
}
#products main .award_txt h4 span {
  font-size: 1.4rem;
  display: block;
}
#products main .award_txt h4 em {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  display: inline-block;
  line-height: 1.4;
}
#products main .award_txt h4 em.large {
  font-size: 4rem !important;
}
#products main .bihadako {
  background-image: url(../img/products/common/bg-bihadako.jpg);
  background-position: top center;
  background-size: cover;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products main .bihadako {
    padding: 40px 0;
  }
}
#products main .bihadako-ttl {
  max-width: 640px;
  margin: 0px auto;
  width: 100%;
  margin-bottom: 30px;
}
#products main .bihadako-ttl .copy {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
}
#products main .bihadako-box {
  max-width: 500px;
  margin: 0px auto 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products main .bihadako-box {
    width: 80%;
  }
}
#products main .bihadako-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(72, 72, 72, 0.4);
  padding: 30px;
  max-width: 600px;
  margin: 0px auto;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  #products main .bihadako-list {
    padding: 20px 30px;
  }
}
#products main .bihadako-list li {
  width: 50%;
}
#products main .flex-box-common {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products main .flex-box-common {
    flex-flow: column;
  }
}
#products main .flex-box-common.flex-start {
  align-items: flex-start;
}
#products main .flex-box-item {
  width: 50%;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  #products main .flex-box-item {
    width: 100%;
    max-width: 640px;
    margin: 0px auto;
    padding: 20px 10px;
  }
}
#products main .flex-box-item.bg-white,
#products main .flex-box-item .bg-white {
  background-color: #fff;
}
#products main .flex-box-item .bg-white-pad {
  background-color: #fff;
  padding: 20px;
}
#products main .bestproduct {
  padding: 60px 0;
  background-color: #4b4b4b;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products main .bestproduct {
    padding: 40px 0;
  }
}
#products main .bestproduct-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products main .bestproduct-list {
    flex-flow: column;
  }
}
#products main .bestproduct .img {
  width: 40%;
  max-width: 220px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  #products main .bestproduct .img {
    width: 80%;
    max-width: 140px;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
#products main .bestproduct .txt {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products main .bestproduct .txt {
    width: 100%;
  }
}
#products main .bestproduct .txt h2 {
  margin-bottom: 20px;
  font-size: 2.6rem;
  line-height: 1.6;
  color: #c1b373;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products main .bestproduct .txt h2 {
    font-size: 2rem;
  }
}
#products main .bestproduct .txt h2 span {
  display: block;
  padding-bottom: 10px;
  font-size: 1.4rem;
  color: #fff;
  width: 100%;
}
#products main .bestproduct .txt h2 em {
  display: inline-block;
  border: 1px solid #fff;
  padding: 0.2em 1em;
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff;
  margin-right: 10px;
  line-height: 1.6;
}
#products main .bestproduct .txt p {
  margin-bottom: 1em;
}
#products main .bestproduct .txt p.annotation {
  color: #fff;
}
#products main .bestproduct a {
  color: #fff;
  text-decoration: underline;
}
#products main .detail {
  margin: 40px auto 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products main .detail {
    margin: 40px auto 50px;
  }
}
#products main .detail_ttl {
  font-size: 3rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 20px;
  padding-top: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products main .detail_ttl {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 40px;
  }
}
#products main .detail_ttl em {
  font-size: 1.4rem;
  padding: 3px 6px;
  display: block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: normal;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #products main .detail_ttl em {
    margin-top: 5px;
  }
}
#products main .detail_ttl_spBlock {
  display: none;
}
@media screen and (max-width: 768px) {
  #products main .detail_ttl_spBlock {
    display: block;
  }
}
#products main .detail_ttl_line {
  display: inline-block;
  border-top: 4px solid #fff;
  width: 40px;
  margin: 0 auto;
}
#products main .detail_ttl::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: #fff;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}
#products main .detail_ttlBox {
  text-align: center;
}
#products main .detail_ttlBox span {
  font-size: 1.1rem;
  background-color: #464646;
  padding: 5px 10px;
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: normal;
  margin-right: 10px;
}
#products main .detail_ttlBox span:last-child {
  margin: 0px;
}
#products main .detail_ttlBox span.category {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  transform: translateY(-5px);
  background-color: #8f852e;
  font-weight: bold;
  padding: 3px 8px;
}
@media screen and (max-width: 768px) {
  #products main .detail_ttlBox span.category {
    font-size: 1.5rem;
  }
}
#products main .detail .detail-slider_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_wrapper {
    flex-flow: column wrap;
  }
}
#products main .detail .detail-slider_spec dt {
  font-size: 1.6rem;
  padding: 20px 0;
  margin-bottom: 20px;
  border: 1px solid #fff;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_spec dt {
    font-size: 1.4rem;
  }
}
#products main .detail .detail-slider_spec dt::before {
  content: url(../img/common/icon_plus.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#products main .detail .detail-slider_spec dt:hover {
  cursor: pointer;
}
#products main .detail .detail-slider_spec dt.active dd {
  display: block;
}
#products main .detail .detail-slider_spec dd {
  font-size: 1.4rem;
  display: none;
  padding: 20px 30px;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_spec dd {
    padding: 20px;
  }
}
#products main .detail .detail-slider_left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_left {
    width: 100%;
  }
}
#products main .detail .detail-slider_left .detail-photo {
  padding: 0 10%;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_left .detail-photo {
    padding: 0 15% 5%;
  }
}
#products main .detail .detail-slider_left .detail-photo img {
  width: 100%;
}
#products main .detail .detail-slider_left .notice-area {
  margin-top: 30px;
}
#products main .detail .detail-slider_right {
  width: 50%;
  max-width: 500px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_right {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
#products main .detail .detail-slider_right h2,
#products main .detail .detail-slider_right h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_right h2,
  #products main .detail .detail-slider_right h3 {
    font-size: 1.8rem;
  }
}
#products main .detail .detail-slider_right p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_right p {
    font-size: 1.4rem;
  }
}
#products main .detail .detail-slider_right p.-price {
  font-size: 3rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_right p.-price {
    margin-top: 20px;
    font-size: 2.4rem;
  }
}
#products main .detail .detail-slider_right p.-price span {
  font-weight: normal;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_right p.-price span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 640px) {
  #products main .detail .detail-slider_right p.-price span {
    display: block;
  }
}
#products main .detail .detail-slider_right p.-subtxt {
  margin-top: -10px;
}
#products main .detail .detail-slider_right span {
  font-size: 1.2rem;
  line-height: 1.5;
}
#products main .detail .detail-slider_right.-pad {
  padding: 0;
}
#products main .detail .detail-slider_right .btnarea li {
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  #products main .detail .detail-slider_right .btnarea li {
    margin-bottom: 10px;
  }
}
#products main .detail .detail-slider_right .btnarea_forpro_btn {
  margin: 20px auto 0;
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_right .btnarea_forpro_btn {
    margin: 35px auto 0;
  }
}
#products main .detail .detail-slider_right .btnarea_forpro_btn .btn09 {
  height: 80px;
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(180deg, rgb(72, 89, 105) 0%, rgb(47, 62, 75) 100%);
}
@media screen and (max-width: 768px) {
  #products main .detail .detail-slider_right .btnarea_forpro_btn .btn09 {
    height: 70px;
    font-size: 1.6rem;
  }
}
#products main .detail .detail-slider_right .btn-ttl {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
#products main .detail .detail-slider_right .previouslink {
  margin-top: 30px;
}
#products main .detail .detail-slider_right .previouslink a {
  text-decoration: underline;
  padding-right: 20px;
  position: relative;
  display: inline-block;
  line-height: 1.4;
}
#products main .detail .detail-slider_right .previouslink a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(/biz/professional/asset/img/common/icon_arrow_03.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#products main .detail .detail-slider_box {
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  #products main .detail .detail-slider_box {
    padding: 0 10% 6%;
  }
}
@media screen and (max-width: 640px) {
  #products main .detail .detail-slider_box {
    padding: 0 0 10% 0;
  }
}
#products main .detail .detail-slider_slide01 {
  margin-bottom: 20px;
}
#products main .features {
  margin: 80px auto;
  width: 84vw;
  max-width: 1440px;
  position: relative;
}
@media screen and (max-width: 991px) {
  #products main .features {
    width: 100%;
    margin: 0 auto 50px;
  }
}
#products main .features.-mbpt01 {
  margin: 60px auto 80px;
}
@media screen and (max-width: 991px) {
  #products main .features.-mbpt01 {
    margin: 40px auto 50px;
  }
}
#products main .features img {
  width: 100%;
}
#products main .features_box {
  position: relative;
  width: 75%;
  display: flex;
  align-items: center;
  background-color: #1f2124;
  padding: 30px 0;
  margin-right: 0;
  margin-left: auto;
  margin-top: -58px;
}
@media screen and (max-width: 991px) {
  #products main .features_box {
    margin-top: -45.6px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #products main .features_box {
    width: 90%;
    margin: -20px auto 0;
    flex-flow: column wrap;
  }
}
#products main .features_ttl {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  padding: 10px 5% 10px 10%;
  position: relative;
}
@media screen and (max-width: 991px) {
  #products main .features_ttl {
    font-size: 2.4rem;
    padding: 0 5% 0 10%;
  }
}
@media screen and (max-width: 768px) {
  #products main .features_ttl {
    padding: 0;
    font-size: 2rem;
  }
}
#products main .features_ttl::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 46px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products main .features_ttl::before {
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
  }
}
#products main .features_txt {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0 5%;
}
#products main .features_txt span {
  font-size: 1.3rem;
  font-weight: normal;
}
#products main .features_txt em {
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  #products main .features_txt {
    font-size: 1.8rem;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #products main .features_txt {
    font-size: 1.6rem;
    margin-top: 35px;
  }
}
@media screen and (max-width: 640px) {
  #products main .features_txt {
    font-size: 1.5rem;
    padding: 0 10px;
  }
}
#products main .features .caution p {
  font-size: 1rem;
  padding: 0.5em;
}
#products main .list {
  margin: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products main .list {
    margin: 40px 0px;
  }
}
#products main .list h3 img {
  height: 78px;
}
@media screen and (max-width: 768px) {
  #products main .list h3 img {
    height: 60px;
  }
}
#products main .list_box {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products main .list_box {
    flex-flow: column-reverse;
    padding-right: 0;
  }
}
#products main .list_box.-reverse {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #products main .list_box.-reverse {
    flex-flow: column-reverse;
    padding-left: 0;
  }
}
#products main .list_box.-full {
  display: flex;
  flex-flow: column;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  #products main .list_box.-ratio {
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 768px) {
  #products main .list_box.-return {
    flex-flow: column;
  }
}
#products main .list_box.-bgChange {
  background-color: #343d41;
  padding: 40px 30px;
  color: #FFECCE;
}
#products main .list_img {
  width: 50%;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products main .list_img {
    width: 100%;
  }
}
#products main .list_img img {
  width: 100%;
}
#products main .list_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/products/cavispa-for-pro-premiere/dot01.svg);
  background-repeat: repeat;
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.1;
  z-index: -1;
}
#products main .list_img.-full {
  width: 100%;
  max-width: 100%;
  margin-bottom: 60px;
}
#products main .list_img.-full img {
  width: 100%;
}
#products main .list_img.-full::before {
  display: none;
}
@media screen and (max-width: 768px) {
  #products main .list_img.-full {
    margin-bottom: 40px;
  }
}
#products main .list_img.-ratio {
  flex-basis: 25%;
}
@media screen and (max-width: 768px) {
  #products main .list_img.-ratio {
    flex-basis: 50%;
    margin-bottom: 40px;
  }
}
#products main .list_img.-ratio h4 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 20px;
}
#products main .list_img.-ratio img {
  padding: 0 15%;
}
#products main .list_img.-bgNone::before {
  display: none;
}
#products main .list_txt {
  width: 50%;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #products main .list_txt {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin-bottom: 40px;
  }
}
#products main .list_txt.-reverse {
  padding-left: 0;
  padding-right: 50px;
}
#products main .list_txt.-full {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  #products main .list_txt.-full {
    margin-bottom: 0;
    padding: 0;
  }
}
#products main .list h4 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products main .list h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  #products main .list h4 {
    font-size: 1.7rem;
  }
}
#products main .list_caution {
  font-size: 11px;
  margin-top: 20px;
}
#products main .plus {
  position: relative;
}
#products main .plus_fix {
  position: absolute;
  left: -50px;
  top: 0;
  transform: translate(-50%, -50%);
  transform: rotate(-90deg);
  display: inline-flex;
  align-items: flex-end;
  z-index: 11;
}
@media screen and (max-width: 768px) {
  #products main .plus_fix {
    display: none;
  }
}
#products main .plus_arrow {
  width: 26px;
  margin-right: 10px;
}
#products main .plus_arrow img {
  width: 100%;
}
#products main .plus_txt {
  font-family: "Red Hat Display", sans-serif;
  font-size: 11px;
}
#products main .iBoxV {
  padding: 2%;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products main .iBoxV {
    margin-bottom: 30px;
    padding: 0;
  }
}
#products main .iBoxV_img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products main .iBoxV_img img {
    width: 80%;
  }
}
#products main .iBoxV_ttl {
  font-size: 1.3rem;
  margin: 10px auto;
}
#products main .iBoxV_ttl.-reverse {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 10px auto 0;
}
#products main .iBoxV_txt {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
#products main .iBoxV_txt.-reverse {
  font-size: 1.3rem;
  font-weight: normal;
  margin: 0;
}
#products main .iBoxV_txt span {
  font-size: 11px;
}
#products main .iBoxV_ttl02 {
  font-size: 2.8rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  margin: 30px auto 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #products main .iBoxV_ttl02 {
    font-size: 2.2rem;
  }
}
#products main .iBoxV_txt02 {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
#products main .iBoxV_icon {
  display: flex;
  width: 40px;
}
#products main .iBoxV_icon img {
  width: 100%;
  margin-right: 10px;
}
#products main .iBoxV_ttl03 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 30px auto 10px;
}
#products main .iBoxV_ttl03 span {
  font-size: 1.4rem;
  display: block;
}
@media screen and (max-width: 768px) {
  #products main .iBoxV_ttl03 {
    font-size: 1.8rem;
  }
}
#products main .iBoxV .-m5 {
  margin: 5px auto;
}
#products main .iBoxV .-fz18 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 20px auto;
  line-height: 1.6;
}
#products main .iBoxV .-fz16 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
#products main .iBoxV .-fz15 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}
#products main .iBoxV .-fzN {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
}
#products main .notice {
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #products main .notice {
    padding-bottom: 40px;
  }
}
#products main .notice p {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 50px;
  border: 1px solid #fff;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products main .notice p {
    font-size: 1.3rem;
    padding: 15px 30px;
  }
}
#products main .notice.-declare p {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 15px 50px;
  border-bottom: 1px solid #979797;
  border-top: 1px solid #979797;
  border-right: none;
  border-left: none;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products main .notice.-declare p {
    font-size: 1.3rem;
    padding: 15px 30px;
  }
}
#products main .notice.-declare p span {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: top;
  line-height: 1.2;
}

#products .info-area .notice {
  padding-bottom: 0;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #products .info-area .notice {
    padding-bottom: 0;
  }
}

#products .cosmelead {
  padding: 80px 0;
  background-color: #5f5f5f;
}
@media screen and (max-width: 768px) {
  #products .cosmelead {
    padding: 50px 0;
  }
}
#products .cosmelead .list {
  margin: 0px;
}
@media screen and (max-width: 768px) {
  #products .cosmelead .list {
    margin-bottom: 0px;
  }
}
#products .cosmelead .list_txt h3 {
  font-size: 1.4rem;
  color: #A5894B;
  margin-bottom: 5px;
}
#products .cosmelead .list_txt h3 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.1rem;
}
#products .cosmelead .list_img::before {
  display: none;
}
@media screen and (max-width: 768px) {
  #products .cosmelead .list_img.-small {
    max-width: 140px;
  }
}
#products .cosmelead .point_list {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  flex-flow: row wrap;
  background-color: #fff;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #products .cosmelead .point_list {
    margin-bottom: 15px;
    flex-flow: column;
  }
}
#products .cosmelead .point_list:last-child {
  margin-bottom: 0;
}
#products .cosmelead .point_list dt {
  margin-right: 10px;
  font-size: 2.8rem;
  font-family: "Red Hat Display", sans-serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  #products .cosmelead .point_list dt {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-right: 0px;
  }
}
#products .cosmelead .point_list dd {
  font-size: 1.8rem;
  font-weight: bold;
  color: #665954;
}
@media screen and (max-width: 768px) {
  #products .cosmelead .point_list dd {
    font-size: 1.5rem;
  }
}

/*==================================================================
    #products .compare
===================================================================*/
#products .compare {
  padding: 80px 0;
  background-color: #d7d7d7;
}
#products .compare h2 {
  text-align: center;
  margin-bottom: 50px;
  background-color: #242323;
  padding: 10px 0;
}
#products .compare h2 span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products .compare h2 {
    margin-bottom: 20px;
  }
}
#products .compare h3 {
  text-align: center;
  color: #242323;
  line-height: 1.4;
}
#products .compare_table_wrap {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products .compare_table_wrap {
    margin-bottom: 25px;
  }
}
#products .compare_over_wrap {
  overflow-x: scroll;
}
@media screen and (max-width: 768px) {
  #products .compare_over_wrap {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  #products .compare_over_wrap.-three {
    width: 600px;
  }
}
#products .compare_list {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products .compare_list {
    min-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  #products .compare_list.-three {
    min-width: 600px;
  }
}
#products .compare_box {
  width: calc(100% - 150px);
  position: relative;
  overflow-x: auto;
  margin-bottom: -20px;
}
@media screen and (max-width: 768px) {
  #products .compare_box {
    width: calc(100% - 80px);
  }
}
#products .compare_lock {
  width: 150px;
}
@media screen and (max-width: 768px) {
  #products .compare_lock {
    width: 80px;
  }
}
#products .compare_lock td {
  padding: 0 1em;
  height: 80px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #484848;
  border-top: 1px solid #d8d8d8;
  text-align: right;
  line-height: 1.4;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products .compare_lock td {
    font-size: 1.1rem;
    text-align: center;
    padding: 0 0.6em;
    height: 60px;
  }
}
#products .compare_lock td.nobd {
  border: none;
}
#products .compare_lock tr:last-of-type td {
  border-bottom: 1px solid #d8d8d8;
}
#products .compare_ttl {
  border: none !important;
  position: relative;
}
#products .compare_ttl h3 {
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products .compare_ttl h3 {
    font-size: 1.5rem;
  }
}
#products .compare_ttl span {
  padding: 5px 1em;
  background: #007ce9;
  border-radius: 2px;
  position: absolute;
  white-space: nowrap;
  top: 10px;
  left: 50%;
  font-size: 1.4rem;
  transform: translateX(-50%);
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #products .compare_ttl span {
    font-size: 1.1rem;
    padding: 2px 1em;
  }
}
#products .compare_item {
  text-align: center;
  width: calc((100% - 20px) / 2);
  position: relative;
  margin: 0px 5px;
}
@media screen and (max-width: 768px) {
  #products .compare_item {
    margin: 0px 2px;
  }
}
#products .compare_item.-three {
  width: calc((100% - 30px) / 3);
}
@media screen and (max-width: 768px) {
  #products .compare_item.-three {
    width: calc((100% - 12px) / 3);
  }
}
#products .compare_item td {
  padding: 15px;
  height: 80px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #484848;
  border-top: 1px dotted #f3f3f3;
  text-align: center;
  z-index: 1;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products .compare_item td {
    height: 60px;
  }
}
#products .compare_item td.nobd {
  border: none;
}
#products .compare_item td i {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  font-style: normal;
  padding-right: 2px;
}
@media screen and (max-width: 768px) {
  #products .compare_item td i {
    font-size: 1.8rem;
  }
}
#products .compare_item td b {
  font-weight: 900;
  font-size: 1.6rem;
}
#products .compare_item tr {
  background-color: #fff;
}
#products .compare_item tr:nth-child(odd) {
  background-color: #f7f7f7;
}
#products .compare_item::after {
  content: "";
  background-color: rgba(72, 72, 72, 0.02);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 0;
}
#products .compare_item.recommend::after {
  background-color: rgba(167, 155, 155, 0.1);
}
#products .compare_item .space td {
  height: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
}
#products .compare #design .price_item::after {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
#products .compare .scroll_notice {
  display: none;
  text-align: right;
  padding-bottom: 10px;
}
@media screen and (max-width: 600px) {
  #products .compare .scroll_notice {
    display: block;
    color: #000;
  }
}
#products .compare #logo td {
  height: 140px;
}
@media screen and (max-width: 768px) {
  #products .compare #logo td {
    height: 100px;
  }
}
#products .compare .l01 {
  height: 110px !important;
  padding: 10px !important;
}
#products .compare .l02 {
  height: 60px !important;
  padding: 10px !important;
}
#products .compare .l03 {
  height: 200px !important;
  padding: 10px !important;
}
#products .compare .l03 img {
  height: 100%;
}
#products .compare .l04 {
  height: 60px !important;
  padding: 10px !important;
}
@media screen and (max-width: 991px) {
  #products .compare .l04 {
    height: 80px !important;
  }
}
#products .compare .l04 em {
  font-size: 0.9rem;
  display: block;
}
#products .compare .l05 {
  height: 140px !important;
  padding: 10px !important;
}
@media screen and (max-width: 768px) {
  #products .compare .l05 {
    height: 180px !important;
  }
}

#products .salonvoice {
  background-color: #414141;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products .salonvoice {
    padding: 40px 0;
  }
}
#products .salonvoice h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products .salonvoice h3 {
    font-size: 1.8rem;
  }
}
#products .salonvoice .list {
  margin-bottom: 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #products .salonvoice .list {
    margin-top: 20px;
  }
}
#products .salonvoice .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products .salonvoice .list_box {
    flex-flow: column wrap;
  }
}
#products .salonvoice .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products .salonvoice .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products .salonvoice .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products .salonvoice .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products .salonvoice .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products .salonvoice .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products .salonvoice .list_txt span {
  font-size: 1.6rem;
}

/*==================================================================
    #products.cavispa-for-pro-premiere
===================================================================*/
#products.cavispa-for-pro-premiere .sec01 {
  margin: 80px auto;
}
@media screen and (max-width: 991px) {
  #products.cavispa-for-pro-premiere .sec01 {
    margin: 40px auto;
  }
}
#products.cavispa-for-pro-premiere .sec01 h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .sec01 h3 {
    flex-flow: column-reverse wrap;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-premiere .sec01 h3 {
    font-size: 1.4rem;
  }
}
#products.cavispa-for-pro-premiere .sec01 h3 span {
  font-size: 2.7rem;
  font-family: "Red Hat Display", sans-serif;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .sec01 h3 span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-premiere .sec01 h3 span {
    font-size: 1.9rem;
  }
}
#products.cavispa-for-pro-premiere .features-list {
  position: relative;
  padding: 0px 0 120px;
}
#products.cavispa-for-pro-premiere .features-list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 0 0 50vw;
  border-color: transparent transparent transparent #303946;
  z-index: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .features-list::before {
    border-width: 60px 0 0 50vw;
  }
}
#products.cavispa-for-pro-premiere .features-list::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 150px 50vw;
  border-color: transparent transparent #303946 transparent;
  z-index: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .features-list::after {
    border-width: 0 0 60px 50vw;
  }
}
#products.cavispa-for-pro-premiere .features-list-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .features-list-box {
    flex-flow: column;
  }
}
#products.cavispa-for-pro-premiere .features-list-item {
  margin-right: 30px;
  width: calc((100% - 60px) / 3);
  padding: 2vw;
  background-color: #8d897c;
  border: 2px solid #bcb192;
}
@media screen and (min-width: 1481px) {
  #products.cavispa-for-pro-premiere .features-list-item {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .features-list-item {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px;
  }
}
#products.cavispa-for-pro-premiere .features-list-item:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .features-list-item:nth-child(3n) {
    margin-right: auto;
  }
}
#products.cavispa-for-pro-premiere .features-list-item h4 {
  text-align: center;
  margin-bottom: 15px;
}
#products.cavispa-for-pro-premiere .features-list-item h4 span {
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "Red Hat Display", sans-serif;
  display: block;
}
#products.cavispa-for-pro-premiere .features-list-item dt {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #bcb192;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .features-list-item dt {
    font-size: 1.7rem;
  }
}
#products.cavispa-for-pro-premiere .features-list-item dd {
  line-height: 1.5;
  text-align: left;
}
#products.cavispa-for-pro-premiere .features-list .list_caution {
  position: relative;
  z-index: 2;
}
#products.cavispa-for-pro-premiere .features-mixed {
  position: relative;
  padding: 40px 0;
  background-color: #303946;
}
#products.cavispa-for-pro-premiere .features-mixed h3 {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #dbcfad;
  font-size: 2.4rem;
  border: 1px solid #dbcfad;
  transform: skewX(-10deg);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .features-mixed h3 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
#products.cavispa-for-pro-premiere .features-mixed h3 span {
  display: block;
  transform: skewX(10deg);
}
#products.cavispa-for-pro-premiere .treatment {
  padding-bottom: 40px;
}
#products.cavispa-for-pro-premiere .treatment-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .treatment-list {
    flex-flow: column-reverse;
  }
}
#products.cavispa-for-pro-premiere .treatment-item {
  width: 50%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .treatment-item {
    width: 100%;
    padding: 0;
  }
  #products.cavispa-for-pro-premiere .treatment-item:last-child {
    margin-bottom: 30px;
  }
}
#products.cavispa-for-pro-premiere .treatment-item h3 {
  line-height: 1.7;
  margin-bottom: 30px;
}
#products.cavispa-for-pro-premiere .treatment-item img {
  margin: 0 auto;
  display: block;
}
#products.cavispa-for-pro-premiere .points {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere .points {
    padding: 40px 0;
  }
}

/*==================================================================
    #products.cavispa-for-pro-lm
===================================================================*/
#products.cavispa-for-pro-lm .sec01 {
  margin: 80px auto;
}
@media screen and (max-width: 991px) {
  #products.cavispa-for-pro-lm .sec01 {
    margin: 40px auto;
  }
}
#products.cavispa-for-pro-lm .sec01 h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec01 h3 {
    flex-flow: column-reverse wrap;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-lm .sec01 h3 {
    font-size: 1.4rem;
  }
}
#products.cavispa-for-pro-lm .sec01 h3 span {
  font-size: 2.7rem;
  font-family: "Red Hat Display", sans-serif;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec01 h3 span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-lm .sec01 h3 span {
    font-size: 1.9rem;
  }
}
#products.cavispa-for-pro-lm .sec02 {
  background-color: #556065;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec02 {
    padding: 40px 0;
  }
}
#products.cavispa-for-pro-lm .sec02_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec02_box {
    flex-flow: column-reverse wrap;
  }
}
#products.cavispa-for-pro-lm .sec02_img {
  width: 50%;
  max-width: 514px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec02_img {
    width: 100%;
  }
}
#products.cavispa-for-pro-lm .sec02_img img {
  width: 100%;
}
#products.cavispa-for-pro-lm .sec02_txt {
  width: 50%;
  max-width: 420px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec02_txt {
    width: 100%;
    max-width: 100%;
  }
}
#products.cavispa-for-pro-lm .sec02_txt h4 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec02_txt h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-lm .sec02_txt h4 {
    font-size: 1.7rem;
  }
}
#products.cavispa-for-pro-lm .sec02_caution {
  font-size: 11px;
  margin-top: 20px;
}
#products.cavispa-for-pro-lm .sec03 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec03 {
    margin: 40px auto;
  }
}
#products.cavispa-for-pro-lm .sec03_ttl {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec03_ttl {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-lm .sec03_ttl {
    font-size: 1.7rem;
  }
}
#products.cavispa-for-pro-lm .sec03_ttl span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: -10px;
}
#products.cavispa-for-pro-lm .sec03_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec03_box {
    flex-flow: column wrap;
    padding-right: 0;
  }
}
#products.cavispa-for-pro-lm .sec03_txt {
  width: 50%;
  max-width: 510px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec03_txt {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2em;
    padding: 0;
  }
}
#products.cavispa-for-pro-lm .sec03_svg {
  padding: 40px;
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-lm .sec03_svg {
    padding: 20px;
  }
}
#products.cavispa-for-pro-lm .sec03_img {
  width: 50%;
  max-width: 530px;
}
#products.cavispa-for-pro-lm .sec03_img img {
  width: 100%;
}
#products.cavispa-for-pro-lm .sec03_img p:first-child {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec03_img {
    width: 100%;
    max-width: 100%;
    display: inline-flex;
  }
  #products.cavispa-for-pro-lm .sec03_img p {
    padding: 0 10px;
    margin: 0 !important;
  }
}
#products.cavispa-for-pro-lm .sec04 {
  background-color: #393E41;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec04 {
    padding: 40px 0;
  }
}
#products.cavispa-for-pro-lm .sec04_box {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec04_box {
    flex-flow: column wrap;
    padding: 0;
  }
}
#products.cavispa-for-pro-lm .sec04_img {
  width: 50%;
  max-width: 530px;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-lm .sec04_img {
    width: 100%;
    margin: 0 auto 40px;
    padding: 0;
  }
}
#products.cavispa-for-pro-lm .sec04_img img {
  width: 100%;
}

/*==================================================================
    #products.cavispa-prestige-for-salon
===================================================================*/
#products.cavispa-prestige-for-salon .sec01 {
  margin: 80px auto;
}
@media screen and (max-width: 991px) {
  #products.cavispa-prestige-for-salon .sec01 {
    margin: 40px auto;
  }
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec01 .list {
    margin: 40px auto 60px;
  }
}
#products.cavispa-prestige-for-salon .sec01 h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8B8B8B;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec01 h3 {
    flex-flow: column-reverse wrap;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-prestige-for-salon .sec01 h3 {
    font-size: 1.4rem;
  }
}
#products.cavispa-prestige-for-salon .sec01 h3 span {
  font-size: 2.7rem;
  font-family: "Red Hat Display", sans-serif;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec01 h3 span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-prestige-for-salon .sec01 h3 span {
    font-size: 1.9rem;
  }
}
#products.cavispa-prestige-for-salon .sec02 {
  background-color: #556065;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec02 {
    padding: 40px 0;
  }
}
#products.cavispa-prestige-for-salon .sec02_ttl {
  margin-bottom: 20px;
}
#products.cavispa-prestige-for-salon .sec02_caution {
  font-size: 11px;
  margin-top: 20px;
}
#products.cavispa-prestige-for-salon .sec03 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec03 {
    margin: 40px auto 0;
  }
}
#products.cavispa-prestige-for-salon .sec03 .point_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -25px;
}
#products.cavispa-prestige-for-salon .sec03 .point_box {
  width: 50%;
  padding: 0px 25px;
}
#products.cavispa-prestige-for-salon .sec03 .point_box h4 {
  text-align: center;
  margin-bottom: 20px;
}
#products.cavispa-prestige-for-salon .sec03 .point_box img {
  margin-bottom: 15px;
}
#products.cavispa-prestige-for-salon .sec04 {
  background-color: #393E41;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec04 {
    padding: 40px 0;
  }
}
#products.cavispa-prestige-for-salon .sec04 .list {
  margin: 0 auto;
}
#products.cavispa-prestige-for-salon .sec04 .list_img.-imgW {
  max-width: 520px;
}
#products.cavispa-prestige-for-salon .sec05 {
  color: #000;
  background-color: #F4F4F4;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec05 {
    padding: 20px 0;
  }
}
#products.cavispa-prestige-for-salon .sec05 .list {
  margin: 40px auto;
}
@media screen and (max-width: 640px) {
  #products.cavispa-prestige-for-salon .sec05 .list {
    margin: 20px auto;
  }
}
#products.cavispa-prestige-for-salon .sec05 .list_box {
  justify-content: center;
}
#products.cavispa-prestige-for-salon .sec05 .list_img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec05 .list_img {
    margin-bottom: 20px;
  }
}
#products.cavispa-prestige-for-salon .sec05 .list_txt em {
  font-weight: 600;
  font-size: 1.6rem;
}
#products.cavispa-prestige-for-salon .sec05 .list_txt span {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #products.cavispa-prestige-for-salon .sec05 .list_txt {
    padding: 0;
  }
}

/*==================================================================
    #products.elenage-for-pro2
===================================================================*/
#products.elenage-for-pro2 .list_box.-chang {
  align-items: flex-start;
  padding: 0;
}
#products.elenage-for-pro2 .list_img.-imgW {
  max-width: 520px;
}
#products.elenage-for-pro2 .list_img img {
  margin-bottom: 20px;
}
#products.elenage-for-pro2 .list_img::before {
  display: none;
}
#products.elenage-for-pro2 .sec01 img {
  width: 100%;
  max-width: 757px;
  margin: 0 auto -80px;
  display: block;
  position: relative;
}
#products.elenage-for-pro2 .sec01_ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec01_ttl {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
#products.elenage-for-pro2 .sec01_txt {
  margin-bottom: 40px;
}
#products.elenage-for-pro2 .sec01_txt span {
  font-weight: 600;
}
#products.elenage-for-pro2 .sec01 .group {
  margin: 20px auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec01 .group {
    flex-flow: column wrap;
  }
}
#products.elenage-for-pro2 .sec01 .group_outer {
  width: 50%;
  max-width: 520px;
  background-color: #9D9D9D;
  padding: 60px 0 20px;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec01 .group_outer {
    padding: 60px 10px 20px;
  }
}
#products.elenage-for-pro2 .sec01 .group_outer.-bgBrwn {
  background-color: #847E7E;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec01 .group_outer {
    width: 100%;
    max-width: 100%;
  }
}
#products.elenage-for-pro2 .sec01 .group_box {
  max-width: 350px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec01 .group_box {
    max-width: 330px;
  }
}
@media screen and (max-width: 640px) {
  #products.elenage-for-pro2 .sec01 .group_box {
    max-width: 100%;
  }
}
#products.elenage-for-pro2 .sec01 .group_ttl {
  font-size: 1.2rem;
  text-align: center;
}
#products.elenage-for-pro2 .sec01 .group_ttl span {
  font-size: 2.6rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  display: block;
}
#products.elenage-for-pro2 .sec01 .group_txt {
  color: #fff;
  margin-bottom: 20px;
}
#products.elenage-for-pro2 .sec01 .group_txt em {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 5px;
}
#products.elenage-for-pro2 .sec01 .group_txt span {
  font-size: 2.2rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  background-color: #fff;
  width: 30px;
  color: #000;
  display: inline-block;
  text-align: center;
  padding: 3px 0;
  margin-right: 5px;
}
#products.elenage-for-pro2 .sec01 .group_txt p {
  color: #000;
  margin-top: 5px;
}
#products.elenage-for-pro2 .sec01 .group_txt::last-child {
  margin-bottom: 0;
}
#products.elenage-for-pro2 .sec02 {
  margin: 100px auto 80px;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec02 {
    margin: 40px auto;
  }
}
#products.elenage-for-pro2 .sec02 .list {
  margin: 20px -25px;
}
#products.elenage-for-pro2 .sec02 .list_img {
  padding: 0px 25px;
  max-width: none;
}
#products.elenage-for-pro2 .sec03 {
  background-color: #393E41;
  padding: 80px 0 10px;
}
#products.elenage-for-pro2 .sec03 .list {
  margin: 20px -25px 80px;
}
#products.elenage-for-pro2 .sec03 .list_img {
  padding: 0px 25px;
  max-width: none;
}
#products.elenage-for-pro2 .sec04 {
  color: #000;
  background-color: #F4F4F4;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec04 {
    padding: 20px 0;
  }
}
#products.elenage-for-pro2 .sec04 .list {
  margin: 40px auto;
}
#products.elenage-for-pro2 .sec04 .list_box {
  justify-content: center;
}
#products.elenage-for-pro2 .sec04 .list_img {
  max-width: 300px;
}
#products.elenage-for-pro2 .sec04 .list_txt em {
  font-weight: 600;
  font-size: 1.6rem;
}
#products.elenage-for-pro2 .sec04 .list_txt span {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #products.elenage-for-pro2 .sec04 .list_txt {
    padding: 0;
  }
}

/*==================================================================
    #products.airlage-for-pro
===================================================================*/
#products.airlage-for-pro .sec01 {
  margin-top: 40px;
}
#products.airlage-for-pro .sec01_img {
  margin: 40px auto;
  width: 100%;
  max-width: 757px;
  display: block;
}
#products.airlage-for-pro .sec01 .tile {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.airlage-for-pro .sec01 .tile {
    flex-flow: column wrap;
  }
}
#products.airlage-for-pro .sec01 .tile_box {
  width: 30%;
  margin: 0 auto;
  padding: 30px;
  background-color: #4A4A4A;
}
@media screen and (max-width: 768px) {
  #products.airlage-for-pro .sec01 .tile_box {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  #products.airlage-for-pro .sec01 .tile_box {
    padding: 10px;
  }
}
#products.airlage-for-pro .sec01 .tile_ttl {
  margin-bottom: 10px;
  text-align: center;
}
#products.airlage-for-pro .sec01 .tile_ttl img {
  width: 58px;
}
@media screen and (max-width: 768px) {
  #products.airlage-for-pro .sec01 .tile_ttl img {
    width: 46px;
  }
}
#products.airlage-for-pro .sec02 {
  margin: 80px auto 120px;
}
@media screen and (max-width: 768px) {
  #products.airlage-for-pro .sec02 {
    margin: 40px auto 100px;
  }
}
#products.airlage-for-pro .sec02 h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.airlage-for-pro .sec02 h3 {
    font-size: 1.8rem;
    text-align: left;
  }
}
#products.airlage-for-pro .sec02 .list {
  margin-bottom: 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #products.airlage-for-pro .sec02 .list {
    margin-top: 20px;
  }
}
#products.airlage-for-pro .sec02 .list_txt h4 {
  line-height: 1.6;
  font-size: 1.6rem;
}
#products.airlage-for-pro .sec02 .list_txt h4 em {
  font-size: 1.2rem;
}
#products.airlage-for-pro .sec02 .list_txt h4 span {
  font-size: 1.4rem;
}

/*==================================================================
    #products.queen-lift-for-pro-clearplus
===================================================================*/
#products.queen-lift-for-pro-clearplus .list_box {
  margin: 20px auto 60px;
}
#products.queen-lift-for-pro-clearplus .list_img.-imgW {
  max-width: 440px;
}
#products.queen-lift-for-pro-clearplus .list_txt.-txtW {
  max-width: 100%;
}
#products.queen-lift-for-pro-clearplus .features-list {
  padding: 0 0 80px;
}
#products.queen-lift-for-pro-clearplus .features-list ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .features-list ul {
    flex-flow: column;
  }
}
#products.queen-lift-for-pro-clearplus .features-list ul li {
  width: calc((100% - 30px) / 3);
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #909090;
  border: 1px solid #292f30;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-clearplus .features-list ul li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .features-list ul li {
    width: 100%;
    max-width: 640px;
    margin: 0px auto 10px;
  }
}
#products.queen-lift-for-pro-clearplus .features-list ul li sup {
  display: contents;
}
#products.queen-lift-for-pro-clearplus .features-list ul li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-clearplus .features-list ul li:nth-child(3n) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .features-list ul li:nth-child(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-clearplus .features-list ul li:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .features-list ul li:nth-child(even) {
    margin-right: auto;
  }
}
#products.queen-lift-for-pro-clearplus .flow {
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .flow {
    padding: 40px 0 0;
  }
}
#products.queen-lift-for-pro-clearplus .flow i {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  padding-right: 5px;
}
#products.queen-lift-for-pro-clearplus .flow-start {
  padding-top: 30px;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #ffecce;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .flow-start {
    font-size: 1.8rem;
  }
}
#products.queen-lift-for-pro-clearplus .flow-list {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .flow-list {
    flex-flow: column;
  }
}
#products.queen-lift-for-pro-clearplus .flow-list li {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-clearplus .flow-list li {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .flow-list li {
    width: 100%;
    max-width: 640px;
    margin: 0px auto 40px;
  }
}
#products.queen-lift-for-pro-clearplus .flow-list li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-clearplus .flow-list li:nth-child(3n) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .flow-list li:nth-child(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-clearplus .flow-list li:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-clearplus .flow-list li:nth-child(even) {
    margin-right: auto;
  }
}
#products.queen-lift-for-pro-clearplus .flow-img {
  margin-bottom: 20px;
  position: relative;
}
#products.queen-lift-for-pro-clearplus .flow-img .partsname {
  display: block;
  margin-top: -10px;
  position: relative;
}
#products.queen-lift-for-pro-clearplus .flow-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #ffecce;
  margin-bottom: 10px;
}

/*==================================================================
    #products.rei-beaute-for-salon-previous
===================================================================*/
#products.rei-beaute-for-salon-previous .sec01 .list_box {
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec01 .list_box {
    margin: 80px auto;
  }
}
@media screen and (max-width: 640px) {
  #products.rei-beaute-for-salon-previous .sec01 .list_box {
    margin: 60px auto;
  }
}
#products.rei-beaute-for-salon-previous .sec02 {
  background-color: #556065;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec02 {
    padding: 50px 0 30px;
  }
}
#products.rei-beaute-for-salon-previous .sec02_ttl {
  text-align: center;
  margin-bottom: 20px;
}
#products.rei-beaute-for-salon-previous .sec02_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px;
}
#products.rei-beaute-for-salon-previous .sec02_box li {
  width: 25%;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec02_box li {
    width: 50%;
  }
}
#products.rei-beaute-for-salon-previous .sec02 .iBoxV {
  padding: 0px;
  margin-bottom: 0px;
}
#products.rei-beaute-for-salon-previous .sec02 .iBoxV img {
  width: 100%;
}
#products.rei-beaute-for-salon-previous .sec03 {
  background-color: #C3C3C3;
  padding: 50px 0px;
  color: #000;
}
#products.rei-beaute-for-salon-previous .sec03_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec03_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products.rei-beaute-for-salon-previous .sec03_item {
  width: 50%;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec03_item {
    width: 100%;
    margin-bottom: 40px;
    padding: 0px 20px;
  }
  #products.rei-beaute-for-salon-previous .sec03_item:last-child {
    margin-bottom: 0px;
  }
}
#products.rei-beaute-for-salon-previous .sec03_item img {
  margin-bottom: 20px;
}
#products.rei-beaute-for-salon-previous .sec03_item h4 {
  margin-bottom: 15px;
}
#products.rei-beaute-for-salon-previous .sec04 {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec04 {
    padding: 40px 0px;
  }
}
@media screen and (max-width: 640px) {
  #products.rei-beaute-for-salon-previous .sec04 .ttl01_item {
    font-size: 1.7rem;
  }
}
#products.rei-beaute-for-salon-previous .sec04 .ttl01_txt {
  font-size: 1.6rem;
  margin-bottom: 40px;
}
#products.rei-beaute-for-salon-previous .sec04_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec04_box {
    flex-flow: row wrap;
    margin-bottom: 20px;
  }
}
#products.rei-beaute-for-salon-previous .sec04_bottom dl {
  display: flex;
  flex-flow: row wrap-reverse;
  align-items: center;
  justify-content: center;
}
#products.rei-beaute-for-salon-previous .sec04_bottom dl dt {
  max-width: 200px;
  width: 100%;
}
#products.rei-beaute-for-salon-previous .sec04_bottom dl dd {
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
}
#products.rei-beaute-for-salon-previous .sec04_img01 {
  width: 33.3333333333%;
  padding: 2%;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec04_img01 {
    width: 50%;
  }
}
#products.rei-beaute-for-salon-previous .sec04_img01 .iBoxV_img img {
  width: 100%;
}
#products.rei-beaute-for-salon-previous .sec04_img02 {
  max-width: 330px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec04_img02 {
    margin-bottom: 40px;
    max-width: 60%;
  }
}
@media screen and (max-width: 640px) {
  #products.rei-beaute-for-salon-previous .sec04_img02 {
    max-width: 80%;
  }
}
#products.rei-beaute-for-salon-previous .sec04_img03 {
  max-width: 160px;
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec04_img03 {
    margin-left: 0;
    max-width: 100%;
  }
}
#products.rei-beaute-for-salon-previous .sec04_img03 img {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-for-salon-previous .sec04_img03 img {
    max-width: 120px;
  }
}
#products.rei-beaute-for-salon-previous .sec04_img03 .-full {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/*==================================================================
    #products.rei-beaute-hyper-for-salon
===================================================================*/
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec01 {
    margin-bottom: 60px;
  }
}
#products.rei-beaute-hyper-for-salon .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products.rei-beaute-hyper-for-salon .sec01_box li {
  width: 20%;
  padding: 0 7px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec01_box li {
    width: 33.3333333333%;
    max-width: 200px;
    padding: 0px 10px;
  }
}
#products.rei-beaute-hyper-for-salon .sec01 .list_box {
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec01 .list_box {
    margin: 40px auto;
  }
}
#products.rei-beaute-hyper-for-salon .sec01 .list_box.-start {
  align-items: flex-start;
}
#products.rei-beaute-hyper-for-salon .sec01 .iBoxV_ttl {
  font-size: 1.6rem;
  font-weight: 600;
}
#products.rei-beaute-hyper-for-salon .sec01 .iBoxV_img img {
  width: 100%;
}
#products.rei-beaute-hyper-for-salon .sec02 {
  background-color: #3B3B3B;
  padding: 80px 0 10px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec02 {
    padding: 40px 0 10px;
  }
}
#products.rei-beaute-hyper-for-salon .sec02_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec02_box {
    justify-content: center;
    flex-flow: column wrap;
    margin-bottom: 20px;
  }
}
#products.rei-beaute-hyper-for-salon .sec02_img01 {
  max-width: 350px;
  width: 33.3333333333%;
  padding: 0px 15px;
}
#products.rei-beaute-hyper-for-salon .sec02_img01:last-child {
  background-color: #4a4948;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec02_img01 {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  #products.rei-beaute-hyper-for-salon .sec02_img01 {
    max-width: 100%;
  }
}
#products.rei-beaute-hyper-for-salon .sec02_img01 dt {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#products.rei-beaute-hyper-for-salon .sec02_img01 dt span {
  background-color: #000;
  color: #fff;
  display: inline-block;
  padding: 0em 1.5em;
  font-size: 1.4rem;
  line-height: 36px;
  margin-bottom: 20px;
  margin-top: -56px;
  position: relative;
}
#products.rei-beaute-hyper-for-salon .sec02_img01 dt span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  bottom: -10px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec02_img01 dt span {
    margin-top: 0;
  }
}
#products.rei-beaute-hyper-for-salon .sec02_img01 dt.-pro {
  color: #d0caa6;
}
#products.rei-beaute-hyper-for-salon .sec03 {
  background-color: #C3C3C3;
  padding: 50px 0px;
  color: #000;
}
#products.rei-beaute-hyper-for-salon .sec03_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec03_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products.rei-beaute-hyper-for-salon .sec03_item {
  width: 50%;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec03_item {
    width: 100%;
    margin-bottom: 40px;
    padding: 0px 20px;
  }
  #products.rei-beaute-hyper-for-salon .sec03_item:last-child {
    margin-bottom: 0px;
  }
}
#products.rei-beaute-hyper-for-salon .sec03_item img {
  margin-bottom: 20px;
}
#products.rei-beaute-hyper-for-salon .sec03_item h4 {
  margin-bottom: 15px;
}
#products.rei-beaute-hyper-for-salon .sec04 {
  padding: 50px 0px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec04 {
    padding: 30px 0px;
  }
}
#products.rei-beaute-hyper-for-salon .sec04_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec04_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products.rei-beaute-hyper-for-salon .sec04_item {
  width: 50%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #products.rei-beaute-hyper-for-salon .sec04_item {
    width: 100%;
    margin-bottom: 40px;
  }
  #products.rei-beaute-hyper-for-salon .sec04_item:last-child {
    margin-bottom: 0px;
  }
}
#products.rei-beaute-hyper-for-salon .sec04_item h4 {
  margin-bottom: 20px;
}
#products.rei-beaute-hyper-for-salon .sec04_item img {
  max-width: 600px;
  width: 100%;
}

/*==================================================================
    #products.photoplus-prestige-for-salon
===================================================================*/
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec01 {
    margin: 40px auto;
  }
}
#products.photoplus-prestige-for-salon .sec01 img {
  width: 100%;
}
#products.photoplus-prestige-for-salon .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec01_box {
    flex-flow: column wrap;
  }
}
#products.photoplus-prestige-for-salon .sec01_group01 {
  width: 50%;
  max-width: 500px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec01_group01 {
    width: 100%;
    margin: 20px auto 0;
  }
}
#products.photoplus-prestige-for-salon .sec01_group02 {
  width: 33.3333333333%;
  max-width: 320px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec01_group02 {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
  }
}
#products.photoplus-prestige-for-salon .sec01_caution {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec01_caution {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec02 {
    margin: 20px auto 60px;
  }
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec02 .list_txt {
    margin-top: 20px;
  }
}
#products.photoplus-prestige-for-salon .sec03_img {
  width: 90%;
  max-width: 890px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec03_img {
    margin: 0 auto 40px;
  }
}
#products.photoplus-prestige-for-salon .sec03_img img {
  width: 100%;
}
#products.photoplus-prestige-for-salon .sec04 {
  color: #000;
  background-color: #F4F4F4;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec04 {
    padding: 20px 0;
  }
}
#products.photoplus-prestige-for-salon .sec04 .list {
  margin: 40px auto;
}
@media screen and (max-width: 640px) {
  #products.photoplus-prestige-for-salon .sec04 .list {
    margin: 20px auto;
  }
}
#products.photoplus-prestige-for-salon .sec04 .list_box {
  justify-content: center;
}
#products.photoplus-prestige-for-salon .sec04 .list_img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec04 .list_img {
    margin-bottom: 20px;
  }
}
#products.photoplus-prestige-for-salon .sec04 .list_txt em {
  font-weight: 600;
  font-size: 1.6rem;
}
#products.photoplus-prestige-for-salon .sec04 .list_txt p {
  font-weight: 600;
  color: #696969;
}
#products.photoplus-prestige-for-salon .sec04 .list_txt span {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #products.photoplus-prestige-for-salon .sec04 .list_txt {
    padding: 0;
  }
}
#products.photoplus-prestige-for-salon .sec04 .list_caution {
  color: #000 !important;
}

/*==================================================================
    #products.wavy-mini
===================================================================*/
#products.wavy-mini .sec01 {
  padding: 0 0px 80px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec01 {
    padding: 0px 0 50px;
  }
}
#products.wavy-mini .sec01 .list {
  margin: 0px 0px 100px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec01 .list {
    margin-bottom: 50px;
  }
}
#products.wavy-mini .sec01 .list_txt h3 {
  font-size: 1.4rem;
  color: #A5894B;
  margin-bottom: 5px;
}
#products.wavy-mini .sec01 .list_txt h3 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.1rem;
}
#products.wavy-mini .sec02 {
  background-color: #3B3B3B;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 {
    padding: 40px 0;
  }
}
#products.wavy-mini .sec02 .list {
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_box {
    flex-flow: column;
  }
}
#products.wavy-mini .sec02 .list_img {
  max-width: 440px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_img {
    margin-bottom: 30px;
  }
}
#products.wavy-mini .sec02 .list_txt {
  max-width: 100%;
  width: 60%;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_txt {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 0;
  }
}
#products.wavy-mini .sec02 .list_txt li {
  margin-bottom: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_txt li {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products.wavy-mini .sec02 .list_txt li:last-child {
  margin-bottom: 0px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_txt li:last-child {
    text-align: center;
    margin-top: 40px;
  }
}
#products.wavy-mini .sec02 .list_txt li.-forpro {
  padding: 40px 30px !important;
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_txt li.-forpro {
    max-width: unset;
    padding: 40px 20px 30px !important;
  }
}
#products.wavy-mini .sec02 .list_txt li.-forpro span {
  font-size: 1.6rem;
  background-color: #000000;
  color: #fff;
  display: inline-block;
  padding: 0px 1.5em;
  margin-bottom: 15px;
  position: absolute;
  top: -20px;
  left: 0;
  line-height: 40px;
  font-weight: bold;
}
#products.wavy-mini .sec02 .list_txt li.-forpro h4 + p {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_txt li.-forpro h4 + p {
    text-align: left;
  }
}
#products.wavy-mini .sec02 .list_txt li.-forpro::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent #3b3b3b transparent transparent;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_txt li.-forpro::after {
    border-width: 0 15px 15px 0;
  }
}
#products.wavy-mini .sec02 .list_txt li.-forpro::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 0 30px;
  border-color: transparent transparent transparent #3b3b3b;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec02 .list_txt li.-forpro::before {
    border-width: 15px 0 0 15px;
  }
}
#products.wavy-mini .sec02 .list_txt h4 {
  color: #FFECCE;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}
#products.wavy-mini .sec02 .list_txt h4 img {
  height: 46px;
  margin-right: 10px;
}
#products.wavy-mini .sec03 .list_box {
  margin-bottom: 20px;
}
#products.wavy-mini .sec03 .list_img {
  width: 33.3333333333%;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec03 .list_img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
  }
}
#products.wavy-mini .sec04 {
  background-color: #393E41;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec04 {
    padding: 40px 0;
  }
}
#products.wavy-mini .sec04_outer {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products.wavy-mini .sec04_inner {
  width: 42%;
  margin: 2%;
  flex-flow: row wrap;
  border: 1px solid #808080;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec04_inner {
    width: 100%;
    max-width: 440px;
    flex-flow: column wrap;
  }
}
#products.wavy-mini .sec04_imgBox {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}
#products.wavy-mini .sec04_img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec04_img {
    width: 40%;
  }
}
#products.wavy-mini .sec04_ttl {
  background-color: #808080;
  width: 50%;
  display: flex;
  align-items: center;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec04_ttl {
    width: 60%;
  }
}
#products.wavy-mini .sec04_ttl h4 {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec04_ttl h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  #products.wavy-mini .sec04_ttl h4 {
    margin-left: 10px;
  }
}
#products.wavy-mini .sec04_ttl h4 span {
  color: #FFECCE;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 768px) {
  #products.wavy-mini .sec04_ttl h4 span {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
#products.wavy-mini .sec04_txtBox {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  padding: 20px;
}
#products.wavy-mini .sec04_txt {
  width: 100%;
  line-height: 1.8;
}

/*==================================================================
    #products.vedalift-bs-for-salon
===================================================================*/
#products.vedalift-bs-for-salon .sec01 {
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  #products.vedalift-bs-for-salon .sec01 {
    margin: 40px auto;
  }
}
@media screen and (max-width: 768px) {
  #products.vedalift-bs-for-salon .sec01 .list {
    margin: 40px auto 60px;
  }
}
#products.vedalift-bs-for-salon .sec02 {
  padding: 40px 0px;
}
#products.vedalift-bs-for-salon .sec02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.vedalift-bs-for-salon .sec02_list {
    flex-flow: column;
  }
}
#products.vedalift-bs-for-salon .sec02_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products.vedalift-bs-for-salon .sec02_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products.vedalift-bs-for-salon .sec02_item:last-child {
    margin-bottom: 0px;
  }
}
#products.vedalift-bs-for-salon .sec02_item h4 {
  text-align: center;
  margin-bottom: 20px;
}
#products.vedalift-bs-for-salon .sec02_item img {
  margin-bottom: 10px;
}

/*==================================================================
    #products.vedabright-bs-for-salon-previous
===================================================================*/
#products.vedabright-bs-for-salon-previous .sec01 {
  margin: 80px auto;
}
#products.vedabright-bs-for-salon-previous .sec01 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec01 {
    margin: 40px auto 0;
  }
}
#products.vedabright-bs-for-salon-previous .sec01 .list_txt h4 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec01 .list_txt h4 {
    margin-bottom: 10px;
  }
}
#products.vedabright-bs-for-salon-previous .sec01 .list_txt h4 em {
  font-size: 1.4rem;
  font-weight: 600;
}
#products.vedabright-bs-for-salon-previous .sec01 .list_txt h4 span {
  font-size: 1.4rem;
}
#products.vedabright-bs-for-salon-previous .sec01 .list.-mb0 {
  margin-bottom: 0;
}
#products.vedabright-bs-for-salon-previous .sec01 .list.-mgn {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec01 .list.-mgn {
    margin: 40px auto 60px;
  }
}
#products.vedabright-bs-for-salon-previous .sec01_img01 {
  position: relative;
  max-width: 320px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec01_img01 {
    max-width: 640px;
    margin: 20px auto 0px;
  }
}
#products.vedabright-bs-for-salon-previous .sec01_img02 {
  position: relative;
  max-width: 640px;
  margin: 40px auto 0px;
  width: 100%;
}
#products.vedabright-bs-for-salon-previous .sec01_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec01_box {
    flex-flow: column wrap;
    margin: 40px auto 20px;
  }
}
#products.vedabright-bs-for-salon-previous .sec01_box li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec01_box li {
    width: 100%;
  }
}
#products.vedabright-bs-for-salon-previous .sec01 .iBoxV_txt02 {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec01 .iBoxV_txt02 {
    padding: 10px 20px;
  }
}
#products.vedabright-bs-for-salon-previous .sec01 .iBoxV_img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
#products.vedabright-bs-for-salon-previous .sec01 .jstreambox {
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
  overflow: hidden;
}
#products.vedabright-bs-for-salon-previous .sec01 .jstreambox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
#products.vedabright-bs-for-salon-previous .sec02 {
  background-color: #556065;
  padding: 20px 0 40px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec02 {
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec02 .list {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec02 .list_box {
    flex-flow: column-reverse wrap;
  }
}
#products.vedabright-bs-for-salon-previous .sec02 .list_img {
  max-width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec02 .list_img {
    margin-bottom: 40px;
  }
}
#products.vedabright-bs-for-salon-previous .sec02 .list_img img {
  width: 100%;
}
#products.vedabright-bs-for-salon-previous .sec02 .list_txt span {
  font-size: 1.4rem;
}
#products.vedabright-bs-for-salon-previous .sec03 {
  margin: 80px auto 40px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec03 {
    margin: 40px auto 0;
  }
}
#products.vedabright-bs-for-salon-previous .sec03 span {
  font-size: 1.4rem;
}
#products.vedabright-bs-for-salon-previous .sec03_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec03_box {
    flex-flow: column wrap;
    margin: 40px auto 0;
  }
}
#products.vedabright-bs-for-salon-previous .sec03_box li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec03_box li {
    width: 100%;
  }
}
#products.vedabright-bs-for-salon-previous .sec03 .iBoxV_txt02 {
  padding: 20px 0;
  max-width: 400px;
  margin: 0 auto;
}
#products.vedabright-bs-for-salon-previous .sec03 .iBoxV_img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
#products.vedabright-bs-for-salon-previous .sec04 {
  background-color: #393E41;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec04 {
    padding: 40px 0;
  }
}
#products.vedabright-bs-for-salon-previous .sec04 h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec04 h3 {
    font-size: 1.8rem;
  }
}
#products.vedabright-bs-for-salon-previous .sec04 .list {
  margin-bottom: 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec04 .list {
    margin-top: 20px;
  }
}
#products.vedabright-bs-for-salon-previous .sec04 .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec04 .list_box {
    flex-flow: column wrap;
  }
}
#products.vedabright-bs-for-salon-previous .sec04 .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec04 .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products.vedabright-bs-for-salon-previous .sec04 .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec04 .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-bs-for-salon-previous .sec04 .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products.vedabright-bs-for-salon-previous .sec04 .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products.vedabright-bs-for-salon-previous .sec04 .list_txt span {
  font-size: 1.6rem;
}

/*==================================================================
    #products.meso-style-gel-premiere
===================================================================*/
#products.meso-style-gel-premiere .sec01 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.meso-style-gel-premiere .sec01 {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 768px) {
  #products.meso-style-gel-premiere .sec01 .list {
    margin-bottom: 0;
  }
}
#products.meso-style-gel-premiere .sec01 .list_img::before {
  display: none;
}
#products.meso-style-gel-premiere .sec01 .-center {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.meso-style-gel-premiere .sec01 .-center {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
  }
}
#products.meso-style-gel-premiere .sec02 {
  background-color: #556065;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.meso-style-gel-premiere .sec02 {
    padding: 40px 0 60px;
  }
}
#products.meso-style-gel-premiere .sec02 .list {
  margin: 0;
}
#products.meso-style-gel-premiere .sec02 .list_img::before {
  display: none;
}
#products.meso-style-gel-premiere .sec02 .list h4 .icon {
  background: linear-gradient(135deg, rgb(131, 123, 105) 0%, rgb(177, 177, 163) 100%);
  font-size: 1.6rem;
  height: 34px;
  line-height: 34px;
  padding: 0 1em;
  display: inline-block;
  margin-bottom: 20px;
}

/*==================================================================
    #products.meso-style-cream
===================================================================*/
#products.meso-style-cream .sec01 .-full {
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  #products.meso-style-cream .sec01 .-full {
    margin: 20px auto;
  }
}
#products.meso-style-cream .sec02 {
  background-color: #556065;
  padding: 20px 0 40px;
}
@media screen and (max-width: 768px) {
  #products.meso-style-cream .sec02 {
    padding: 40px 0;
  }
}
#products.meso-style-cream .sec02 .list_img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #products.meso-style-cream .sec02 .list_img {
    margin-bottom: 40px;
  }
}
#products.meso-style-cream .sec02 .list_img img {
  width: 100%;
}

/*==================================================================
    #products.top
===================================================================*/
#products.top main {
  padding: 70px 0 100px;
}
@media screen and (max-width: 768px) {
  #products.top main {
    padding: 30px 0 80px;
  }
}

#products.top .products {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #products.top .products {
    padding: 0 0 80px;
  }
}
#products.top .products:last-of-type {
  padding: 0;
}
#products.top .products_ttl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  color: #ccc2ac;
  font-size: 2.6rem;
}
#products.top .products_ttl .name {
  font-size: 2.3rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #products.top .products_ttl .name {
    font-size: 1.8rem;
  }
}
#products.top .products_ttl .name .for {
  font-weight: 400;
}
#products.top .products_ttl .icon {
  display: inline-block;
  line-height: 38px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #products.top .products_ttl .icon {
    width: auto;
    line-height: 1.2;
    font-size: 1.2rem;
    padding: 0.4em;
    margin-left: 1em;
  }
}
#products.top .products_lead {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.top .products_lead {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 30px;
  }
}
#products.top .products_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products.top .products_list:hover li .img {
  opacity: 0.2;
}
#products.top .products_list:hover li:hover {
  transform: scale(1.1);
}
#products.top .products_list:hover li:hover .img {
  opacity: 1;
}
#products.top .products_item {
  width: 25%;
  padding: 0 3.5%;
  margin-bottom: 70px;
  transition: all 200ms ease;
}
@media screen and (max-width: 991px) {
  #products.top .products_item {
    width: 28.5714285714%;
    padding: 0;
    margin-right: 4.7619047619%;
    margin-bottom: 40px;
  }
  #products.top .products_item:nth-child(3n) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 768px) {
  #products.top .products_item {
    width: 46.1538461538%;
    padding: 0;
    margin-right: 7.6923076923%;
    margin-bottom: 40px;
  }
  #products.top .products_item:nth-child(3n) {
    margin-right: 7.6923076923%;
  }
  #products.top .products_item:nth-child(even) {
    margin-right: 0;
  }
}
#products.top .products_item a {
  display: block;
  color: #fff;
}
#products.top .products_item a .img {
  text-align: center;
  margin-bottom: 2.14em;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #products.top .products_item a .img {
    margin-bottom: 1.6em;
  }
}
#products.top .products_item a .img img {
  width: 100%;
}
#products.top .products_item a .icon {
  text-align: center;
  margin-bottom: 15px;
}
#products.top .products_item a .icon span {
  font-size: 1.1rem;
  background-color: #464646;
  padding: 5px 10px;
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
  font-weight: normal;
  margin-right: 10px;
}
#products.top .products_item a .icon span:last-child {
  margin: 0px;
}
#products.top .products_item a dl {
  text-align: center;
}
#products.top .products_item a dl dt {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1.1em;
}
@media screen and (max-width: 768px) {
  #products.top .products_item a dl dt {
    margin-bottom: 0.8em;
    font-size: 1.3rem;
  }
}
#products.top .products_item a dl dt .external {
  display: inline-flex;
  width: 12px;
  margin-left: 5px;
}
#products.top .products_item a dl dt em {
  display: inline-block;
  margin-right: 5px;
  background-color: #9a5761;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  text-align: center;
  height: 20px;
  font-size: 1.1rem;
  padding: 0px 4px;
  line-height: 20px;
}
#products.top .products_item a dl dd {
  font-size: 1.1rem;
  line-height: 1.4;
  font-family: "Red Hat Display", sans-serif;
  color: #979797;
}
@media screen and (max-width: 768px) {
  #products.top .products_item a dl dd {
    font-size: 1rem;
  }
}

/*==================================================================
#products.vedascalp-bs-for-salon
===================================================================*/
#products.vedascalp-bs-for-salon .ttl01 p {
  font-weight: 600;
}
#products.vedascalp-bs-for-salon .sec01 {
  background-color: #3B3B3B;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec01 {
    padding: 40px 0 10px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec01 .list {
    margin: 40px auto 60px;
  }
}
#products.vedascalp-bs-for-salon .sec01 .list .-space {
  justify-content: space-around;
}
#products.vedascalp-bs-for-salon .sec01 .list_txt h3 {
  font-size: 1.4rem;
  color: #A5894B;
  margin-bottom: 5px;
}
#products.vedascalp-bs-for-salon .sec01 .list_txt h3 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.1rem;
}
#products.vedascalp-bs-for-salon .sec01 .list_group {
  display: flex;
  flex-flow: row wrap;
  margin-top: 20px;
}
#products.vedascalp-bs-for-salon .sec01 .list_item {
  padding: 8px 0;
  color: #FFECCE;
  font-size: 1.3rem;
  border: 1px solid #FFECCE;
  width: 45%;
  text-align: center;
  margin-bottom: 10px;
  margin-right: 10px;
}
#products.vedascalp-bs-for-salon .sec02 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec02 {
    margin: 40px auto 60px;
  }
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec02 .list {
    margin: 40px auto 60px;
  }
}
#products.vedascalp-bs-for-salon .sec02 .list .-space {
  justify-content: space-around;
}
#products.vedascalp-bs-for-salon .sec02_ttl {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec02_ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  #products.vedascalp-bs-for-salon .sec02_ttl {
    font-size: 2rem;
  }
}
#products.vedascalp-bs-for-salon .sec02_ttl img {
  width: 50px;
  height: 100%;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  #products.vedascalp-bs-for-salon .sec02_ttl img {
    width: 40px;
  }
}
#products.vedascalp-bs-for-salon .sec02_ttl em {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
}
#products.vedascalp-bs-for-salon .sec02_ttl span {
  font-size: 1.3rem;
  font-weight: normal;
  border: 1px solid #fff;
  padding: 5px 10px;
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec02_ttl span {
    font-size: 1.1rem;
    padding: 5px 8px;
  }
}
#products.vedascalp-bs-for-salon .sec03 {
  margin: 80px auto 160px;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec03 {
    margin: 40px auto 80px;
  }
}
#products.vedascalp-bs-for-salon .sec04 {
  color: #000;
  background-color: #F4F4F4;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec04 {
    padding: 20px 0;
  }
}
#products.vedascalp-bs-for-salon .sec04 h4 em,
#products.vedascalp-bs-for-salon .sec04 h4 span {
  display: block;
}
#products.vedascalp-bs-for-salon .sec04 .list {
  margin: 40px auto;
}
@media screen and (max-width: 640px) {
  #products.vedascalp-bs-for-salon .sec04 .list {
    margin: 20px auto;
  }
}
#products.vedascalp-bs-for-salon .sec04 .list_box {
  justify-content: center;
}
#products.vedascalp-bs-for-salon .sec04 .list_img {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec04 .list_img {
    margin-bottom: 20px;
  }
}
#products.vedascalp-bs-for-salon .sec04 .list_txt em {
  font-weight: 600;
  font-size: 1.6rem;
}
#products.vedascalp-bs-for-salon .sec04 .list_txt p {
  font-weight: 600;
  color: #696969;
}
#products.vedascalp-bs-for-salon .sec04 .list_txt span {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #products.vedascalp-bs-for-salon .sec04 .list_txt {
    padding: 0;
  }
}
#products.vedascalp-bs-for-salon .sec04 .list_caution {
  color: #000 !important;
}

/*==================================================================
    #products.lumia-beaute
===================================================================*/
#products.lumia-beaute .sec01 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec01 {
    margin: 40px auto 0;
  }
}
#products.lumia-beaute .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -15px;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec01_box {
    justify-content: center;
    margin-top: 60px;
  }
}
#products.lumia-beaute .sec01_box li {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec01_box li {
    width: 100%;
    padding: 0 2%;
  }
}
#products.lumia-beaute .sec01 .list_box {
  margin: 60px auto 80px;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec01 .list_box {
    margin: 40px auto;
  }
}
#products.lumia-beaute .sec01 .iBoxV {
  padding: 15px;
}
#products.lumia-beaute .sec01 .iBoxV_ttl {
  font-size: 2rem;
  font-weight: 600;
  border: 1px solid #a79b9b;
  padding: 20px 0;
  margin-bottom: 40px;
  color: #a79b9b;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec01 .iBoxV_ttl {
    font-size: 1.8rem;
  }
}
#products.lumia-beaute .sec01 .iBoxV_ttl span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec01 .iBoxV_ttl span {
    font-size: 2.2rem;
  }
}
#products.lumia-beaute .sec01 .iBoxV_ttl em {
  display: inline-block;
  padding: 5px 10px;
  background-color: #393E41;
  border-radius: 12px;
  font-size: 1.3rem;
  margin-top: 10px;
}
#products.lumia-beaute .sec01 .iBoxV_img {
  max-width: 280px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec01 .iBoxV_img {
    max-width: 400px;
  }
}
#products.lumia-beaute .sec01 .iBoxV_txt {
  font-weight: normal;
  text-align: left;
}
#products.lumia-beaute .sec01 .iBoxV_txt span {
  font-size: 1.2rem;
  display: block;
  padding-top: 5px;
}
#products.lumia-beaute .sec02 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02 {
    margin: 0 auto 60px;
  }
}
#products.lumia-beaute .sec02_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0px -15px 0px;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02_box {
    justify-content: center;
    flex-flow: row wrap;
    margin-bottom: 20px;
  }
}
#products.lumia-beaute .sec02_box_inner {
  border: 1px solid #fff;
  padding: 20px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02_box_inner {
    padding: 15px 10px;
  }
}
#products.lumia-beaute .sec02_box li {
  width: 33.3333333333%;
  padding: 0px 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  #products.lumia-beaute .sec02_box li {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02_box li {
    width: 100%;
    padding: 0 2%;
  }
  #products.lumia-beaute .sec02_box li:last-child {
    margin-bottom: 0px;
  }
}
#products.lumia-beaute .sec02_box p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02_box p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 640px) {
  #products.lumia-beaute .sec02_box p {
    font-size: 1.6rem;
  }
}
#products.lumia-beaute .sec02_box span {
  font-size: 1.4rem;
}
#products.lumia-beaute .sec02_box em {
  font-size: 2.8rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02_box em {
    font-size: 2.2rem;
  }
}
#products.lumia-beaute .sec02_box .-font {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#products.lumia-beaute .sec02 .boxH01 {
  height: 140px;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02 .boxH01 {
    height: 120px;
  }
}
#products.lumia-beaute .sec02 .boxH02 {
  height: 110px;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec02 .boxH02 {
    height: 90px;
  }
}
#products.lumia-beaute .sec02_caution {
  font-size: 1.1rem;
}
#products.lumia-beaute .sec03 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03 {
    margin: 40px auto 20px;
  }
}
#products.lumia-beaute .sec03_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03_box {
    flex-flow: column wrap;
    justify-content: center;
  }
}
#products.lumia-beaute .sec03_box li {
  width: 75%;
  padding: 0 2%;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03_box li {
    width: 100%;
    padding: 0;
  }
}
#products.lumia-beaute .sec03_box li:last-child {
  width: 25%;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03_box li:last-child {
    width: 100%;
  }
}
#products.lumia-beaute .sec03_ttl {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
#products.lumia-beaute .sec03_ttl span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background-color: #292f30;
}
#products.lumia-beaute .sec03_ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03_ttl:before {
    transform: translate(-50%, -50%);
    left: 50%;
    width: 80%;
  }
}
#products.lumia-beaute .sec03_groupL {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03_groupL {
    justify-content: space-around;
    flex-flow: row wrap;
  }
}
#products.lumia-beaute .sec03_groupR {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03_groupR {
    display: flex;
    justify-content: center;
  }
}
#products.lumia-beaute .sec03 .iBoxV {
  width: 100%;
  max-width: 260px;
  margin-bottom: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03 .iBoxV {
    max-width: 230px;
    margin-bottom: 20px;
  }
}
#products.lumia-beaute .sec03 .iBoxV img {
  max-width: 160px;
}
#products.lumia-beaute .sec03 .iBoxV_ttl {
  font-size: 2.2rem;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec03 .iBoxV_ttl {
    font-size: 1.8rem;
  }
}
#products.lumia-beaute .sec03 .iBoxV_ttl span {
  padding: 5px 10px;
  background-color: #393E41;
  border-radius: 3px;
  font-size: 1.3rem;
  margin-left: 10px;
}
#products.lumia-beaute .sec03 .iBoxV_txt {
  font-weight: normal;
  font-size: 1.4rem;
}
#products.lumia-beaute .sec03 .iBoxV.-w100 {
  width: 100%;
}
#products.lumia-beaute .sec04 {
  background-color: #C3C3C3;
  padding: 50px 0px;
  color: #000;
}
#products.lumia-beaute .sec04_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec04_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products.lumia-beaute .sec04_item {
  width: 50%;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.lumia-beaute .sec04_item {
    width: 100%;
    margin-bottom: 40px;
    padding: 0px 20px;
  }
  #products.lumia-beaute .sec04_item:last-child {
    margin-bottom: 0px;
  }
}
#products.lumia-beaute .sec04_item img {
  margin-bottom: 20px;
  max-width: 600px;
  width: 100%;
}
#products.lumia-beaute .sec04_item h4 {
  margin-bottom: 15px;
}

/*==================================================================
    #products.luminous-lift
===================================================================*/
#products.luminous-lift .sec01 {
  background-color: #393E41;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec01 {
    margin: 40px auto 0;
  }
}
#products.luminous-lift .sec01_list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec01_list {
    flex-flow: column;
  }
}
#products.luminous-lift .sec01_img {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec01_img {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products.luminous-lift .sec01_txt {
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec01_txt {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    padding-left: 0px;
  }
}
#products.luminous-lift .sec01_txt h4 span {
  font-size: 1.4rem;
  display: block;
}
#products.luminous-lift .sec01_txt h4 em {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Red Hat Display", sans-serif;
  display: inline-block;
  line-height: 1.4;
}
#products.luminous-lift .sec01_txt h4 em.large {
  font-size: 4rem !important;
}
#products.luminous-lift .sec02 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec02 {
    margin: 40px auto 0;
  }
}
#products.luminous-lift .sec02_box {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec02_box {
    justify-content: center;
    margin-top: 60px;
  }
}
#products.luminous-lift .sec02 .list {
  margin-bottom: 0px;
}
#products.luminous-lift .sec02 .list_box {
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec02 .list_img {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec02 .list_txt {
    max-width: 100%;
  }
}
#products.luminous-lift .sec02 .list_txt li {
  margin-bottom: 30px;
}
#products.luminous-lift .sec02 .list_txt li:last-child {
  margin-bottom: 0;
}
#products.luminous-lift .sec02 .list_txt h4 {
  font-size: 1.3rem;
  color: #e5dfc1;
  margin-bottom: 10px;
  line-height: 1.4;
}
#products.luminous-lift .sec02 .list_txt h4 span {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec02 .list_txt h4 span {
    font-size: 2rem;
  }
}
#products.luminous-lift .sec03 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec03 {
    margin: 40px auto;
  }
}
#products.luminous-lift .sec03 .list {
  margin: 80px auto 40px;
}
#products.luminous-lift .sec03 .list_txt h3 {
  color: #A5894B;
  margin-bottom: 30px;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec03 .list_txt h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
#products.luminous-lift .sec03_box {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec03_box {
    flex-flow: column;
  }
}
#products.luminous-lift .sec03_box li {
  width: 50%;
  padding: 0 2%;
}
#products.luminous-lift .sec03_box li span {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec03_box li {
    width: 100%;
    margin-bottom: 30px;
  }
  #products.luminous-lift .sec03_box li:last-child {
    margin-bottom: 0px;
  }
}
#products.luminous-lift .sec03_ttl {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec03_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
#products.luminous-lift .sec03_ttl span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background-color: #292f30;
}
#products.luminous-lift .sec03_ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec03_ttl:before {
    transform: translate(-50%, -50%);
    left: 50%;
    width: 80%;
  }
}
#products.luminous-lift .sec04 {
  margin: 80px auto;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 {
    margin: 40px auto 80px;
  }
}
#products.luminous-lift .sec04_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04_box {
    justify-content: center;
    margin-top: 60px;
  }
}
#products.luminous-lift .sec04 .list_box {
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .list_box {
    margin: 40px auto;
  }
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .list_img {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .list_txt {
    max-width: 100%;
  }
}
#products.luminous-lift .sec04 .list_txt h3 {
  font-size: 2.8rem;
  color: #A5894B;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .list_txt h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}
#products.luminous-lift .sec04 .list_txt h3 span {
  font-family: "Red Hat Display", sans-serif;
}
#products.luminous-lift .sec04 .plusfunction {
  background-color: #8b867c;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  max-width: 900px;
  margin: 0px auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .plusfunction {
    padding: 30px 15px;
    flex-flow: column;
    margin-top: 80px;
  }
}
#products.luminous-lift .sec04 .plusfunction h5 {
  width: 100%;
  margin-bottom: 30px;
  margin-top: -70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .plusfunction h5 {
    margin-top: -50px;
  }
}
#products.luminous-lift .sec04 .plusfunction h5 span {
  line-height: 40px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 2rem;
  padding: 0px 2em;
  display: inline-block;
  transform: skewX(-5deg);
}
#products.luminous-lift .sec04 .plusfunction dl {
  width: 50%;
  max-width: 440px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .plusfunction dl {
    width: 100%;
    max-width: unset;
    padding: 0 4vw;
    margin-bottom: 40px;
  }
  #products.luminous-lift .sec04 .plusfunction dl:last-of-type {
    margin-bottom: 20px;
  }
}
#products.luminous-lift .sec04 .plusfunction dl dt {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .plusfunction dl dt {
    text-align: left;
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
#products.luminous-lift .sec04 .plusfunction .annotation {
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec04 .plusfunction .annotation {
    text-align: left;
    font-size: 1.1rem;
    padding-left: 4vw;
  }
}
#products.luminous-lift .sec05 {
  background-color: #393E41;
  padding: 80px 0 20px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec05 {
    padding: 40px 0 10px;
  }
}
#products.luminous-lift .sec05 .list {
  margin: 0px auto 80px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec05 .list {
    margin: 40px auto 0;
  }
}
#products.luminous-lift .sec05 .list_box {
  padding-bottom: 80px;
}
#products.luminous-lift .sec05 .list_img {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec05 .list_img {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec05 .list_txt {
    max-width: 100%;
  }
}
#products.luminous-lift .sec05 .list_txt h3 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec05 .list_txt h3 {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}
#products.luminous-lift .sec05 .list_txt h3 span {
  font-family: "Red Hat Display", sans-serif;
}
#products.luminous-lift .sec05 .list_txt p {
  margin-bottom: 20px;
}
#products.luminous-lift .sec05 .list_icon {
  display: inline-flex;
  flex-flow: row wrap;
}
#products.luminous-lift .sec05 .list_icon li {
  padding: 5px 15px;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.3rem;
  border: 1px solid #FFECCE;
  margin: 5px;
  color: #FFECCE;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec05 .list_icon li {
    font-size: 1.1rem;
  }
}
#products.luminous-lift .sec06 {
  color: #000;
  background-color: #F4F4F4;
  padding: 40px 0 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec06 {
    padding: 20px 0 40px;
  }
}
#products.luminous-lift .sec06 .list {
  margin: 40px auto;
}
@media screen and (max-width: 640px) {
  #products.luminous-lift .sec06 .list {
    margin: 20px auto;
  }
}
#products.luminous-lift .sec06 .list_box {
  justify-content: center;
}
#products.luminous-lift .sec06 .list_img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec06 .list_img {
    margin-bottom: 20px;
  }
}
#products.luminous-lift .sec06 .list_txt em {
  font-weight: 600;
  font-size: 1.6rem;
}
#products.luminous-lift .sec06 .list_txt p {
  font-weight: 600;
  color: #696969;
}
#products.luminous-lift .sec06 .list_txt span {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #products.luminous-lift .sec06 .list_txt {
    padding: 0;
  }
}
#products.luminous-lift .sec06 .list_caution {
  color: #000 !important;
}

/*==================================================================
    #products.needle-cream
===================================================================*/
#products.needle-cream .sec01 {
  padding: 0px 0 60px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec01 {
    padding-bottom: 40px;
  }
}
#products.needle-cream .sec01 .list_img {
  width: 30%;
}
#products.needle-cream .sec01 .list_img::before {
  display: none;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec01 .list_img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  #products.needle-cream .sec01 .list_img {
    width: 100%;
    max-width: 260px;
  }
}
#products.needle-cream .sec01 .list_txt {
  width: 70%;
  padding-left: 0px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec01 .list_txt {
    width: 100%;
  }
}
#products.needle-cream .sec01 .list_txt h3 {
  margin-bottom: 30px;
}
#products.needle-cream .sec01 h4 {
  margin-bottom: 40px;
  text-align: center;
}
#products.needle-cream .sec01 ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec01 ul {
    padding-bottom: 0;
  }
}
#products.needle-cream .sec01 ul li {
  width: 20%;
  max-width: 200px;
  margin: 0px auto;
  padding: 0px 15px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec01 ul li {
    width: 50%;
    max-width: none;
    padding: 0px 5px;
    margin-bottom: 20px;
  }
}
#products.needle-cream .sec01 ul li dl {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#products.needle-cream .sec01 ul li dt {
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
#products.needle-cream .sec01 ul li dd {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
}

#products.needle-cream .sec02 {
  padding: 0px 0 60px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec02 {
    padding-bottom: 40px;
  }
}
#products.needle-cream .sec02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec02_list {
    flex-flow: column;
  }
}
#products.needle-cream .sec02_list dl {
  width: 33.3333333333%;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec02_list dl {
    width: 100%;
    max-width: 400px;
    margin: 0px auto 40px;
  }
}
#products.needle-cream .sec02_list dl dt {
  text-align: center;
  margin-bottom: 15px;
}
#products.needle-cream .sec02_list dl dd {
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
  font-size: 1.5rem;
}
#products.needle-cream .sec02_list dl dd img {
  max-width: 240px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec02_list dl dd img {
    max-width: 80%;
  }
}

#products.needle-cream .sec03 {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec03 {
    padding-bottom: 40px;
  }
}
#products.needle-cream .sec03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec03_list {
    flex-flow: column;
  }
}
#products.needle-cream .sec03_list dl {
  width: 33.3333333333%;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec03_list dl {
    width: 100%;
    padding: 0px;
    margin: 0px auto 30px;
  }
  #products.needle-cream .sec03_list dl:last-child {
    margin-bottom: 0px;
  }
}
#products.needle-cream .sec03_list dl dt {
  text-align: center;
  margin-bottom: 15px;
}
#products.needle-cream .sec03_list dl dt span {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  text-align: center;
}
#products.needle-cream .sec03_list dl dd {
  margin-bottom: 20px;
  line-height: 1.5;
}
#products.needle-cream .sec03_list dl dd img {
  margin: 0px auto;
}
#products.needle-cream .sec03_list dl dd span {
  text-align: right;
  padding-top: 5px;
  font-size: 1.2rem;
  display: block;
}
#products.needle-cream .sec03_list dl dd em {
  font-weight: bold;
  font-size: 1.6rem;
  display: block;
}
#products.needle-cream .sec03 .needle_detail {
  background-color: #414141;
  border-radius: 5px;
  padding: 30px;
  max-width: 840px;
  margin: 0px auto 40px;
}
@media screen and (max-width: 768px) {
  #products.needle-cream .sec03 .needle_detail {
    padding: 15px;
  }
}

#products.needle-cream .sec04 {
  padding: 0px 0 80px;
}
#products.needle-cream .sec04 ul {
  margin-bottom: 50px;
}
#products.needle-cream .sec04 ul li {
  line-height: 1.4;
  margin-bottom: 5px;
}
#products.needle-cream .sec04 h5 {
  margin-bottom: 15px;
}

/*==================================================================
    #products.nano-lift-serum
===================================================================*/
#products.nano-lift-serum .sec01 {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 {
    padding: 0px 0 50px;
  }
}
#products.nano-lift-serum .sec01 .list {
  margin: 0px 0px 100px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .list {
    margin-bottom: 50px;
  }
}
#products.nano-lift-serum .sec01 .list_txt h3 {
  font-size: 1.4rem;
  color: #A5894B;
  margin-bottom: 5px;
}
#products.nano-lift-serum .sec01 .list_txt h3 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.1rem;
}
#products.nano-lift-serum .sec01 .list_img::before {
  display: none;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .list_img.-small {
    max-width: 140px;
  }
}
#products.nano-lift-serum .sec01 .point_list {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  flex-flow: row wrap;
  background-color: #fff;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .point_list {
    margin-bottom: 15px;
    flex-flow: column;
  }
}
#products.nano-lift-serum .sec01 .point_list dt {
  margin-right: 10px;
  font-size: 2.8rem;
  font-family: "Red Hat Display", sans-serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .point_list dt {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-right: 0px;
  }
}
#products.nano-lift-serum .sec01 .point_list dd {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a79b9b;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .point_list dd {
    font-size: 1.5rem;
  }
}
#products.nano-lift-serum .sec01 .capsule_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .capsule_list {
    flex-flow: column;
  }
}
#products.nano-lift-serum .sec01 .capsule_list h3 {
  width: 100%;
  text-align: center;
  color: #a79b9b;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .capsule_list h3 {
    margin-bottom: 20px;
  }
}
#products.nano-lift-serum .sec01 .capsule_item {
  padding: 15px;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .capsule_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 25px;
  }
}
#products.nano-lift-serum .sec01 .capsule_item dt {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .capsule_item dt {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
#products.nano-lift-serum .sec01 .capsule_item dt em {
  margin-right: 10px;
  display: block;
  line-height: 30px;
  min-width: 30px;
  width: 30px;
  height: 30px;
  font-family: "Red Hat Display", sans-serif;
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .capsule_item dt em {
    width: 25px;
    height: 25px;
    line-height: 25px;
    min-width: 25px;
  }
}
#products.nano-lift-serum .sec01 .capsule_item dt em.i1 {
  background-color: #a8bdca;
  color: #fff;
}
#products.nano-lift-serum .sec01 .capsule_item dt em.i2 {
  background-color: #cfcbb0;
  color: #fff;
}
#products.nano-lift-serum .sec01 .capsule_item dt em.i3 {
  background-color: #c9b1bd;
  color: #fff;
}
#products.nano-lift-serum .sec01 .capsule_item dt em.i4 {
  background-color: #a7a2b7;
  color: #fff;
}
#products.nano-lift-serum .sec01 .capsule_item dd {
  line-height: 1.5;
}
#products.nano-lift-serum .sec01 .skincare_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .skincare_list {
    margin: 0px -8px 40px;
  }
}
#products.nano-lift-serum .sec01 .skincare_list h3 {
  width: 100%;
  text-align: center;
  color: #a79b9b;
  margin-bottom: 30px;
}
#products.nano-lift-serum .sec01 .skincare_item {
  padding: 15px;
  width: 33.3333333333%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec01 .skincare_item {
    width: 50%;
    padding: 0px 8px 20px;
  }
}
#products.nano-lift-serum .sec01 .skincare_item dt {
  font-size: 1.6rem;
  font-weight: bold;
  border: 1px solid #fff;
  text-align: center;
  line-height: 40px;
  margin-bottom: 10px;
  color: #fff;
}
#products.nano-lift-serum .sec01 .skincare_item dd {
  line-height: 1.5;
}
#products.nano-lift-serum .sec01 .skincare_item dd span {
  display: block;
  font-size: 1.2rem;
  padding-top: 10px;
}
#products.nano-lift-serum .sec02 {
  background-color: #3B3B3B;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec02 {
    padding: 40px 0;
  }
}
#products.nano-lift-serum .sec02 .list {
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec02 .list_box {
    flex-flow: column;
  }
}
#products.nano-lift-serum .sec02 .list_img {
  max-width: 440px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-serum .sec02 .list_img {
    margin-bottom: 50px;
    width: 100%;
  }
}
#products.nano-lift-serum .sec02 .howto_list {
  display: flex;
  margin-bottom: 25px;
  flex-flow: column;
}
#products.nano-lift-serum .sec02 .howto_list dt {
  margin-bottom: 5px;
  font-size: 2.3rem;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
}
#products.nano-lift-serum .sec02 .howto_list dd {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}

/*==================================================================
    #products.needlekillerserum-for-salon
===================================================================*/
#products.needlekillerserum-for-salon .tbNone {
  display: block;
}
@media screen and (max-width: 991px) {
  #products.needlekillerserum-for-salon .tbNone {
    display: none;
  }
}
#products.needlekillerserum-for-salon .sec01 {
  padding: 0px 0 60px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec01 {
    padding-bottom: 40px;
  }
}
#products.needlekillerserum-for-salon .sec01 .list_img {
  width: 30%;
}
#products.needlekillerserum-for-salon .sec01 .list_img::before {
  display: none;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec01 .list_img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  #products.needlekillerserum-for-salon .sec01 .list_img {
    width: 100%;
    max-width: 260px;
  }
}
#products.needlekillerserum-for-salon .sec01 .list_txt {
  width: 70%;
  padding-left: 0px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec01 .list_txt {
    width: 100%;
  }
}
#products.needlekillerserum-for-salon .sec01 .list_txt h3 {
  margin-bottom: 30px;
}
#products.needlekillerserum-for-salon .sec01 h4 {
  margin-bottom: 40px;
  text-align: center;
}
#products.needlekillerserum-for-salon .sec01 ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec01 ul {
    padding-bottom: 0;
  }
}
#products.needlekillerserum-for-salon .sec01 ul li {
  width: 20%;
  max-width: 200px;
  margin: 0px auto;
  padding: 0px 15px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec01 ul li {
    width: 50%;
    max-width: none;
    padding: 0px 5px;
    margin-bottom: 20px;
  }
}
#products.needlekillerserum-for-salon .sec01 ul li dl {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#products.needlekillerserum-for-salon .sec01 ul li dt {
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
#products.needlekillerserum-for-salon .sec01 ul li dd {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
}

#products.needlekillerserum-for-salon .sec02 {
  padding: 0px 0 60px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec02 {
    padding-bottom: 40px;
  }
}
#products.needlekillerserum-for-salon .sec02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec02_list {
    flex-flow: column;
  }
}
#products.needlekillerserum-for-salon .sec02_list dl {
  width: 33.3333333333%;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec02_list dl {
    width: 100%;
    max-width: 400px;
    margin: 0px auto 40px;
  }
}
#products.needlekillerserum-for-salon .sec02_list dl dt {
  text-align: center;
  margin-bottom: 15px;
}
#products.needlekillerserum-for-salon .sec02_list dl dd {
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
  font-size: 1.5rem;
}
#products.needlekillerserum-for-salon .sec02_list dl dd img {
  max-width: 240px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec02_list dl dd img {
    max-width: 80%;
  }
}

#products.needlekillerserum-for-salon .sec03 {
  padding: 60px 0;
  background-color: #343d41;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec03 {
    padding-bottom: 40px;
  }
}
#products.needlekillerserum-for-salon .sec03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec03_list {
    flex-flow: column;
  }
}
#products.needlekillerserum-for-salon .sec03_list dl {
  width: 50%;
  max-width: 400px;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec03_list dl {
    width: 100%;
    max-width: 400px;
    margin: 0px auto 40px;
  }
}
#products.needlekillerserum-for-salon .sec03_list dl dt {
  text-align: center;
  margin-bottom: 15px;
}
#products.needlekillerserum-for-salon .sec03_list dl .text01 {
  background-color: #FFECCE;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 15px 80px;
  margin: 20px auto;
  color: #000;
}
#products.needlekillerserum-for-salon .sec03_list dl .text02 {
  font-size: 1.5rem;
  color: #FFECCE;
  line-height: 1.8;
}
#products.needlekillerserum-for-salon .sec03_list dl .text02 span {
  display: block;
  line-height: 1.5;
  padding-top: 10px;
  font-size: 1.2rem;
}

#products.needlekillerserum-for-salon .sec04 {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec04 {
    padding-bottom: 40px;
  }
}
#products.needlekillerserum-for-salon .sec04_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec04_list {
    flex-flow: column;
  }
}
#products.needlekillerserum-for-salon .sec04_list dl {
  width: 33.3333333333%;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec04_list dl {
    width: 100%;
    padding: 0px;
    margin: 0px auto 30px;
  }
  #products.needlekillerserum-for-salon .sec04_list dl:last-child {
    margin-bottom: 0px;
  }
}
#products.needlekillerserum-for-salon .sec04_list dl dt {
  text-align: center;
  margin-bottom: 15px;
}
#products.needlekillerserum-for-salon .sec04_list dl dt span {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  text-align: center;
}
#products.needlekillerserum-for-salon .sec04_list dl dd {
  margin-bottom: 20px;
  line-height: 1.5;
}
#products.needlekillerserum-for-salon .sec04_list dl dd img {
  margin: 0px auto;
}
#products.needlekillerserum-for-salon .sec04_list dl dd span {
  text-align: right;
  padding-top: 5px;
  font-size: 1.2rem;
  display: block;
}
#products.needlekillerserum-for-salon .sec04_list dl dd em {
  font-weight: bold;
  font-size: 1.6rem;
  display: block;
}
#products.needlekillerserum-for-salon .sec04 .needle_detail {
  background-color: #414141;
  border-radius: 5px;
  padding: 30px;
  max-width: 840px;
  margin: 0px auto 40px;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec04 .needle_detail {
    padding: 15px;
  }
}

#products.needlekillerserum-for-salon .sec05 {
  padding: 60px 0;
  background-color: #343d41;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec05 {
    padding-bottom: 40px;
  }
}
#products.needlekillerserum-for-salon .sec05_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec05_list {
    flex-flow: column;
  }
}
#products.needlekillerserum-for-salon .sec05_box {
  width: 50%;
  padding: 0 40px;
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 991px) {
  #products.needlekillerserum-for-salon .sec05_box {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #products.needlekillerserum-for-salon .sec05_box {
    width: 100%;
    padding-bottom: 20px;
  }
}
#products.needlekillerserum-for-salon .sec05_box img {
  width: 169px;
}
#products.needlekillerserum-for-salon .sec05_box p {
  padding-left: 40px;
}
@media screen and (max-width: 991px) {
  #products.needlekillerserum-for-salon .sec05_box p {
    padding-left: 0;
    padding-top: 20px;
  }
}
#products.needlekillerserum-for-salon .sec05_box span {
  display: block;
  font-size: 2rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  padding-bottom: 10px;
}

#products.needlekillerserum-for-salon .sec06 {
  padding: 60px 0 80px;
}
#products.needlekillerserum-for-salon .sec06 ul {
  margin-bottom: 50px;
}
#products.needlekillerserum-for-salon .sec06 ul li {
  line-height: 1.4;
  margin-bottom: 5px;
}
#products.needlekillerserum-for-salon .sec06 h5 {
  margin-bottom: 15px;
}

/*==================================================================
    #products.vedabright-plus-bs-for-salon
===================================================================*/
#products.vedabright-plus-bs-for-salon .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedabright-plus-bs-for-salon .tbBlock {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01 {
    padding-bottom: 50px;
  }
}
#products.vedabright-plus-bs-for-salon .sec01 .-pTop {
  align-items: flex-start;
}
#products.vedabright-plus-bs-for-salon .sec01 img {
  width: 100%;
}
#products.vedabright-plus-bs-for-salon .sec01 .list_txt h4 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01 .list_txt h4 {
    margin-bottom: 10px;
  }
}
#products.vedabright-plus-bs-for-salon .sec01 .list_txt h4 em {
  font-size: 1.4rem;
  font-weight: 600;
}
#products.vedabright-plus-bs-for-salon .sec01 .list_txt h4 span {
  font-size: 1.4rem;
}
#products.vedabright-plus-bs-for-salon .sec01 .list.-mb0 {
  margin-bottom: 0;
}
#products.vedabright-plus-bs-for-salon .sec01 .list.-mgn {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01 .list.-mgn {
    margin: 40px auto 60px;
  }
}
#products.vedabright-plus-bs-for-salon .sec01_img01 {
  position: relative;
  max-width: 320px;
  padding-top: 60px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01_img01 {
    max-width: 640px;
    padding: 20px 0 0;
  }
}
#products.vedabright-plus-bs-for-salon .sec01_img02 {
  position: relative;
  max-width: 500px;
  width: 100%;
  padding-top: 20px;
  margin: 0 auto;
}
#products.vedabright-plus-bs-for-salon .sec01_img03 {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 60px 20px 0 60px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01_img03 {
    flex-flow: column;
    padding: 20px 0;
  }
}
#products.vedabright-plus-bs-for-salon .sec01_img03 img {
  max-width: 158px;
}
#products.vedabright-plus-bs-for-salon .sec01_img03 p {
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01_img03 p {
    padding: 20px 20px 0;
  }
}
#products.vedabright-plus-bs-for-salon .sec01_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 20px 0 60px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01_box {
    flex-flow: column wrap;
    padding: 40px 0 0;
  }
}
#products.vedabright-plus-bs-for-salon .sec01_box li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01_box li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01_box li:first-child {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01 .iBoxV_ttl03 {
    margin-top: 0 !important;
  }
}
#products.vedabright-plus-bs-for-salon .sec01 .iBoxV_txt02 {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec01 .iBoxV_txt02 {
    padding: 10px 20px;
  }
}
#products.vedabright-plus-bs-for-salon .sec01 .iBoxV_img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
#products.vedabright-plus-bs-for-salon .sec01 .jstreambox {
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
  overflow: hidden;
}
#products.vedabright-plus-bs-for-salon .sec01 .jstreambox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
#products.vedabright-plus-bs-for-salon .sec02 {
  background-color: #556065;
  padding: 20px 0 40px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec02 {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec02 .list {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec02 .list_box {
    flex-flow: column-reverse wrap;
  }
}
#products.vedabright-plus-bs-for-salon .sec02 .list_img {
  max-width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec02 .list_img {
    margin-bottom: 40px;
  }
}
#products.vedabright-plus-bs-for-salon .sec02 .list_img img {
  width: 100%;
}
#products.vedabright-plus-bs-for-salon .sec02 .list_txt span {
  font-size: 1.4rem;
}
#products.vedabright-plus-bs-for-salon .sec03 {
  margin: 80px auto 40px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec03 {
    margin: 40px auto 0;
  }
}
#products.vedabright-plus-bs-for-salon .sec03 span {
  font-size: 1.4rem;
}
#products.vedabright-plus-bs-for-salon .sec03_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec03_box {
    flex-flow: column wrap;
    margin: 40px auto 0;
  }
}
#products.vedabright-plus-bs-for-salon .sec03_box li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec03_box li {
    width: 100%;
  }
}
#products.vedabright-plus-bs-for-salon .sec03 .iBoxV_txt02 {
  padding: 20px 0;
  max-width: 400px;
  margin: 0 auto;
}
#products.vedabright-plus-bs-for-salon .sec03 .iBoxV_img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
#products.vedabright-plus-bs-for-salon .sec04 {
  background-color: #807A72;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec04 {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec04 .list {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec04 .list_box {
    flex-flow: column-reverse wrap;
  }
}
#products.vedabright-plus-bs-for-salon .sec04 .list_img {
  max-width: 572px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec04 .list_img {
    margin-bottom: 40px;
  }
}
#products.vedabright-plus-bs-for-salon .sec04 .list_img img {
  width: 100%;
}
#products.vedabright-plus-bs-for-salon .sec04 .list_txt span {
  font-size: 1.4rem;
}
#products.vedabright-plus-bs-for-salon .sec04 .list_txt h4 em {
  font-size: 3rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
#products.vedabright-plus-bs-for-salon .sec05 {
  background-color: #393E41;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec05 {
    padding: 40px 0;
  }
}
#products.vedabright-plus-bs-for-salon .sec05 h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec05 h3 {
    font-size: 1.8rem;
  }
}
#products.vedabright-plus-bs-for-salon .sec05 .list {
  margin-bottom: 0;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec05 .list {
    margin-top: 20px;
  }
}
#products.vedabright-plus-bs-for-salon .sec05 .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec05 .list_box {
    flex-flow: column wrap;
  }
}
#products.vedabright-plus-bs-for-salon .sec05 .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec05 .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products.vedabright-plus-bs-for-salon .sec05 .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec05 .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedabright-plus-bs-for-salon .sec05 .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products.vedabright-plus-bs-for-salon .sec05 .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products.vedabright-plus-bs-for-salon .sec05 .list_txt span {
  font-size: 1.6rem;
}

/*==================================================================
    #products.heatsonicpeeling-for-salon
===================================================================*/
#products.heatsonicpeeling-for-salon .tbNone {
  display: block;
}
@media screen and (max-width: 991px) {
  #products.heatsonicpeeling-for-salon .tbNone {
    display: none;
  }
}
#products.heatsonicpeeling-for-salon .sec01 .list_box {
  margin: 100px auto;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec01 .list_box {
    margin: 80px auto;
  }
}
@media screen and (max-width: 640px) {
  #products.heatsonicpeeling-for-salon .sec01 .list_box {
    margin: 60px auto;
  }
}
#products.heatsonicpeeling-for-salon .sec01 .list_txt h4 {
  font-size: 2.8rem;
  font-family: "Red Hat Display", sans-serif;
}
#products.heatsonicpeeling-for-salon .sec01 .list_txt h4 span {
  font-family: "Work Sans", sans-serif;
  display: block;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec02.-sub {
    padding: 80px 0 20px;
  }
}
#products.heatsonicpeeling-for-salon .sec02 .list_box img {
  max-width: 480px;
}
#products.heatsonicpeeling-for-salon .sec02 .list_txt {
  color: #FFECCE;
}
#products.heatsonicpeeling-for-salon .sec02 .-bgC {
  background-color: #343d41;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec02 .-bgC {
    padding: 40px 20px;
    margin: 0 -15px;
  }
}
#products.heatsonicpeeling-for-salon .sec02 .-forpro {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
#products.heatsonicpeeling-for-salon .sec02 .-forpro h4 {
  position: relative;
  margin-bottom: 20px;
  color: #e3debe;
  font-size: 2.2rem;
  text-align: center;
}
#products.heatsonicpeeling-for-salon .sec02 .-forpro h4 + p {
  font-size: 1.6rem;
}
#products.heatsonicpeeling-for-salon .sec02 .-forpro span {
  display: inline-block;
  background-color: #000;
  color: #fff;
  line-height: 40px;
  padding: 0 1em;
  position: absolute;
  top: -20px;
}
#products.heatsonicpeeling-for-salon .sec03 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec03 {
    padding: 40px 0 80px;
  }
}
#products.heatsonicpeeling-for-salon .sec03_ttl {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec03_ttl {
    padding-bottom: 10px;
  }
}
#products.heatsonicpeeling-for-salon .sec03_ttl img {
  padding: 20px 0;
  max-width: 100% !important;
  margin-bottom: 0 !important;
  width: auto !important;
}
#products.heatsonicpeeling-for-salon .sec03_ttl h4 {
  color: #FFECCE;
}
#products.heatsonicpeeling-for-salon .sec03_ttl h4.-match {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec03_ttl h4.-match {
    padding-top: 30px;
  }
}
#products.heatsonicpeeling-for-salon .sec03_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec03_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products.heatsonicpeeling-for-salon .sec03_item {
  width: 50%;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec03_item {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
  }
  #products.heatsonicpeeling-for-salon .sec03_item:first-child {
    margin-bottom: 30px;
  }
  #products.heatsonicpeeling-for-salon .sec03_item:last-child {
    margin-bottom: 0px;
  }
}
#products.heatsonicpeeling-for-salon .sec03_item img {
  margin-bottom: 20px;
  max-width: 520px;
  width: 100%;
}
#products.heatsonicpeeling-for-salon .sec03_item p {
  text-align: left;
}
#products.heatsonicpeeling-for-salon .sec03_item p.-pad {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec03_item p.-pad {
    padding: 0 0 20px;
  }
}
#products.heatsonicpeeling-for-salon .sec03_item h5 {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #products.heatsonicpeeling-for-salon .sec03_item .list_caution {
    margin-top: 0;
  }
}

/*==================================================================
    #products.vedasmoothiron-bs-for-salon
===================================================================*/
#products.vedasmoothiron-bs-for-salon .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedasmoothiron-bs-for-salon .tbBlock {
    display: block;
  }
}
#products.vedasmoothiron-bs-for-salon .dpsdw {
  box-shadow: 0px 10px 15px #000;
}
#products.vedasmoothiron-bs-for-salon .photo {
  max-width: 1100px;
  padding: 80px 0;
  width: 84vw;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .photo {
    padding: 20px 0;
    width: 100%;
  }
  #products.vedasmoothiron-bs-for-salon .photo img {
    padding-left: 20px;
  }
}
#products.vedasmoothiron-bs-for-salon .sec01 {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec01 {
    padding-bottom: 40px;
  }
}
#products.vedasmoothiron-bs-for-salon .sec01 img {
  width: 100%;
}
#products.vedasmoothiron-bs-for-salon .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec01_box {
    flex-flow: column wrap;
    padding: 0;
  }
}
#products.vedasmoothiron-bs-for-salon .sec01 dl {
  margin: 2%;
  padding: 4%;
  max-width: 46%;
  background-color: #343d41;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec01 dl {
    max-width: 100%;
  }
}
#products.vedasmoothiron-bs-for-salon .sec01 dl em {
  font-weight: bold;
  background: linear-gradient(180deg, transparent 0% 60%, #7e785d 60% 100%);
}
#products.vedasmoothiron-bs-for-salon .sec01 dt {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec01 dt {
    font-size: 1.7rem;
  }
}
#products.vedasmoothiron-bs-for-salon .sec01 dt.icon {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: clamp(50px, 6.25vw, 80px);
  height: clamp(50px, 6.25vw, 80px);
  border-radius: 99px;
  background-color: #000000;
  font-size: clamp(1.3rem, 1.5625vw, 2rem);
  font-weight: bold;
  line-height: 1;
  color: #A5894B;
  position: absolute;
  top: 2%;
  right: 2%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
#products.vedasmoothiron-bs-for-salon .sec01 .imgW {
  width: 50px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec01 .imgW {
    width: 40px;
  }
}
#products.vedasmoothiron-bs-for-salon .sec01_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 10px 0 20px;
}
#products.vedasmoothiron-bs-for-salon .sec01_img {
  max-width: 380px;
  margin: 0 auto;
}
#products.vedasmoothiron-bs-for-salon .sec02 {
  padding: 80px 0 20px;
  background-color: #414141;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec02 {
    padding: 40px 0;
  }
}
#products.vedasmoothiron-bs-for-salon .sec02_box {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec02_box {
    flex-flow: column wrap;
  }
}
#products.vedasmoothiron-bs-for-salon .sec02 .iBoxV {
  width: 50%;
  max-width: 520px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec02 .iBoxV {
    width: 100%;
  }
}
#products.vedasmoothiron-bs-for-salon .sec02 .iBoxV img {
  width: 100%;
}
#products.vedasmoothiron-bs-for-salon .sec02 .iBoxV_title01 {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #FFECCE;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec02 .iBoxV_title01 {
    font-size: 1.9rem;
  }
}
#products.vedasmoothiron-bs-for-salon .sec02 .iBoxV_title02 {
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec02 .iBoxV_title02 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec02 .iBoxV_txt02 {
    margin-bottom: 0;
  }
}
#products.vedasmoothiron-bs-for-salon .sec02 h3 .line {
  background: linear-gradient(180deg, transparent 0% 60%, #7e785d 60% 100%);
}
#products.vedasmoothiron-bs-for-salon .sec03 {
  background-color: #393E41;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec03 {
    padding: 40px 0;
  }
}
#products.vedasmoothiron-bs-for-salon .sec03 h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec03 h3 {
    font-size: 1.8rem;
  }
}
#products.vedasmoothiron-bs-for-salon .sec03 .list {
  margin-bottom: 0;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec03 .list {
    margin-top: 20px;
  }
}
#products.vedasmoothiron-bs-for-salon .sec03 .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec03 .list_box {
    flex-flow: column wrap;
  }
}
#products.vedasmoothiron-bs-for-salon .sec03 .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec03 .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products.vedasmoothiron-bs-for-salon .sec03 .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec03 .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec03 .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products.vedasmoothiron-bs-for-salon .sec03 .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products.vedasmoothiron-bs-for-salon .sec03 .list_txt span {
  font-size: 1.6rem;
}
#products.vedasmoothiron-bs-for-salon .sec04 {
  background-color: #807A72;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec04 {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec04 .list {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec04 .list_box {
    flex-flow: column-reverse wrap;
  }
}
#products.vedasmoothiron-bs-for-salon .sec04 .list_img {
  max-width: 572px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .sec04 .list_img {
    margin-bottom: 40px;
  }
}
#products.vedasmoothiron-bs-for-salon .sec04 .list_img img {
  width: 100%;
}
#products.vedasmoothiron-bs-for-salon .sec04 .list_txt span {
  font-size: 1.4rem;
}
#products.vedasmoothiron-bs-for-salon .sec04 .list_txt h4 em {
  font-size: 3rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
#products.vedasmoothiron-bs-for-salon .evidence {
  background-color: #545555;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence {
    padding: 50px 0;
  }
}
#products.vedasmoothiron-bs-for-salon .evidence_block {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence_block {
    flex-flow: column-reverse;
    margin-bottom: 50px;
  }
}
#products.vedasmoothiron-bs-for-salon .evidence_block.-reverse {
  flex-flow: row-reverse wrap;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence_block.-reverse {
    flex-flow: column-reverse;
  }
}
#products.vedasmoothiron-bs-for-salon .evidence_block:last-child {
  margin-bottom: 0;
}
#products.vedasmoothiron-bs-for-salon .evidence_block .img {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence_block .img {
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    padding: 0px;
  }
}
#products.vedasmoothiron-bs-for-salon .evidence_block .img .cut {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence_block .img .cut {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
#products.vedasmoothiron-bs-for-salon .evidence_block .img h4 {
  text-align: center;
}
#products.vedasmoothiron-bs-for-salon .evidence_block .img h4 span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #fff;
  line-height: 36px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 20px;
}
#products.vedasmoothiron-bs-for-salon .evidence_block .txt {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence_block .txt {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 40px;
    padding: 0px;
  }
}
#products.vedasmoothiron-bs-for-salon .evidence_block .txt h5 {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #ffecce;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence_block .txt h5 {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
#products.vedasmoothiron-bs-for-salon .evidence_block .txt h5 em {
  font-weight: bold;
  font-size: 2.8rem;
}
#products.vedasmoothiron-bs-for-salon .evidence_block .txt h5 span {
  display: inline-block;
  text-transform: uppercase;
  background-color: #000;
  color: #FFECCE;
  font-size: 2rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  padding: 0.3em 1em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  #products.vedasmoothiron-bs-for-salon .evidence_block .txt h5 span {
    font-size: 1.6rem;
  }
}
#products.vedasmoothiron-bs-for-salon .award_txt img {
  width: 100%;
  max-width: 640px;
}

.-forpro {
  background: linear-gradient(135deg, rgb(131, 123, 105) 0%, rgb(177, 177, 163) 100%);
  padding: 60px 40px !important;
  position: relative;
}
@media screen and (max-width: 768px) {
  .-forpro {
    padding: 40px 15px !important;
  }
}
.-forpro.-nocut::after, .-forpro.-nocut::before {
  display: none;
}
.-forpro::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #292f30 transparent transparent;
}
@media screen and (max-width: 768px) {
  .-forpro::after {
    border-width: 0 20px 20px 0;
  }
}
.-forpro::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 0 50px;
  border-color: transparent transparent transparent #292f30;
}
@media screen and (max-width: 768px) {
  .-forpro::before {
    border-width: 20px 0 0 20px;
  }
}
.-forpro_lead {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .-forpro_lead {
    padding: 0px 0 40px;
  }
}
.-forpro_lead p {
  font-size: 2rem !important;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .-forpro_lead p {
    font-size: 1.6rem !important;
    text-align: left;
  }
}
.-forpro_lead p.annotation {
  font-size: 1.2rem !important;
  color: #fff !important;
  font-weight: normal;
}

/*==================================================================
    #products.vedashinepro-bs-for-salon
===================================================================*/
#products.vedashinepro-bs-for-salon .award_txt {
  text-align: center;
  padding-left: 0;
}
#products.vedashinepro-bs-for-salon .sec04 {
  padding: 0 0 80px;
  background-color: #414141;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 {
    padding: 0 0 50px;
  }
}
#products.vedashinepro-bs-for-salon .sec04 h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  color: #ffecce;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 h3 {
    font-size: 1.8rem;
  }
}
#products.vedashinepro-bs-for-salon .sec04 h3 span {
  display: block;
  max-width: 320px;
  margin: 0px auto;
  padding-bottom: 10px;
  width: 100%;
}
#products.vedashinepro-bs-for-salon .sec04 h3 + p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 h3 + p {
    font-size: 1.4rem;
    text-align: left;
  }
}
#products.vedashinepro-bs-for-salon .sec04 .headimg {
  width: 90%;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 .headimg {
    width: 100%;
  }
}
#products.vedashinepro-bs-for-salon .sec04_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 80%;
  margin: -100px auto 0;
}
@media screen and (max-width: 991px) {
  #products.vedashinepro-bs-for-salon .sec04_list {
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04_list {
    margin-top: 40px;
    width: 100%;
  }
}
#products.vedashinepro-bs-for-salon .sec04_list .txt {
  width: 60%;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04_list .txt {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 30px;
  }
}
#products.vedashinepro-bs-for-salon .sec04_list .txt h4 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
#products.vedashinepro-bs-for-salon .sec04_list .txt p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04_list .txt p {
    font-size: 1.4rem;
  }
}
#products.vedashinepro-bs-for-salon .sec04_list .img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04_list .img {
    width: 100%;
    max-width: 520px;
    margin: 0px auto 0;
  }
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV {
  width: 50%;
  max-width: 520px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 .iBoxV {
    width: 100%;
  }
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV img {
  width: 100%;
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV_title01 {
  padding: 40px 0 30px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  color: #FFECCE;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 .iBoxV_title01 {
    font-size: 1.9rem;
  }
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV_title01 span {
  font-size: 1.5rem;
  display: block;
  text-align: center;
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV_title01 + p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 .iBoxV_title01 + p {
    font-size: 1.4rem;
    text-align: left;
  }
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV_title02 {
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec04 .iBoxV_title02 {
    font-size: 1.7rem;
  }
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV_txt02 {
  font-size: 1.5rem;
}
#products.vedashinepro-bs-for-salon .sec04 .iBoxV_img {
  margin-bottom: 40px;
}
#products.vedashinepro-bs-for-salon .sec05 {
  background-color: #000;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec05 {
    padding: 40px 0;
  }
}
#products.vedashinepro-bs-for-salon .sec05 .point_ttl01 {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 40px;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec05 .point_ttl01 {
    font-size: 2rem;
  }
}
#products.vedashinepro-bs-for-salon .sec05 .point_ttl01 span {
  margin-bottom: 30px;
}
#products.vedashinepro-bs-for-salon .sec05 p {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec05 p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: left;
  }
}
#products.vedashinepro-bs-for-salon .sec05 p.annotation {
  font-size: 1.1rem;
}
#products.vedashinepro-bs-for-salon .sec05 .img_wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec05 .img_wrap {
    flex-flow: column;
    margin-bottom: 15px;
  }
}
#products.vedashinepro-bs-for-salon .sec05 .img_wrap .twentytwenty-wrapper {
  width: calc((100% - 40px) / 2);
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec05 .img_wrap .twentytwenty-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 30px;
  }
}
#products.vedashinepro-bs-for-salon .sec05 .img_wrap .twentytwenty-wrapper:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec05 .img_wrap .twentytwenty-wrapper:last-child {
    margin-bottom: 0;
    margin-right: auto;
  }
}
#products.vedashinepro-bs-for-salon .evidence {
  background-color: #545555;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence {
    padding: 50px 0;
  }
}
#products.vedashinepro-bs-for-salon .evidence_block {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence_block {
    flex-flow: column-reverse;
    margin-bottom: 50px;
  }
}
#products.vedashinepro-bs-for-salon .evidence_block.-reverse {
  flex-flow: row-reverse wrap;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence_block.-reverse {
    flex-flow: column-reverse;
  }
}
#products.vedashinepro-bs-for-salon .evidence_block:last-child {
  margin-bottom: 0;
}
#products.vedashinepro-bs-for-salon .evidence_block .img {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence_block .img {
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    padding: 0px;
  }
}
#products.vedashinepro-bs-for-salon .evidence_block .img .cut {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence_block .img .cut {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
#products.vedashinepro-bs-for-salon .evidence_block .img h4 {
  text-align: center;
}
#products.vedashinepro-bs-for-salon .evidence_block .img h4 span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #fff;
  line-height: 36px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 20px;
}
#products.vedashinepro-bs-for-salon .evidence_block .txt {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence_block .txt {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 40px;
    padding: 0px;
  }
}
#products.vedashinepro-bs-for-salon .evidence_block .txt h5 {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #ffecce;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence_block .txt h5 {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
#products.vedashinepro-bs-for-salon .evidence_block .txt h5 em {
  font-weight: bold;
  font-size: 2.8rem;
}
#products.vedashinepro-bs-for-salon .evidence_block .txt h5 span {
  display: inline-block;
  text-transform: uppercase;
  background-color: #000;
  color: #FFECCE;
  font-size: 2rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  padding: 0.3em 1em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .evidence_block .txt h5 span {
    font-size: 1.6rem;
  }
}
#products.vedashinepro-bs-for-salon .dpsdw {
  box-shadow: 0px 10px 15px #000;
}
#products.vedashinepro-bs-for-salon .sec02 {
  padding: 80px 0 20px;
  background-color: #414141;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec02 {
    padding: 40px 0;
  }
}
#products.vedashinepro-bs-for-salon .sec02_box {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec02_box {
    flex-flow: column wrap;
  }
}
#products.vedashinepro-bs-for-salon .sec02 .iBoxV {
  width: 50%;
  max-width: 520px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec02 .iBoxV {
    width: 100%;
  }
}
#products.vedashinepro-bs-for-salon .sec02 .iBoxV img {
  width: 100%;
}
#products.vedashinepro-bs-for-salon .sec02 .iBoxV_title01 {
  padding: 40px 0 30px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  color: #FFECCE;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec02 .iBoxV_title01 {
    font-size: 1.9rem;
  }
}
#products.vedashinepro-bs-for-salon .sec02 .iBoxV_title01 span {
  font-size: 1.5rem;
  display: block;
  text-align: center;
}
#products.vedashinepro-bs-for-salon .sec02 .iBoxV_title02 {
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .sec02 .iBoxV_title02 {
    font-size: 1.7rem;
  }
}
#products.vedashinepro-bs-for-salon .sec02 .iBoxV_txt02 {
  font-size: 1.5rem;
}
#products.vedashinepro-bs-for-salon .sec02 .iBoxV_img {
  margin-bottom: 40px;
}
#products.vedashinepro-bs-for-salon .sec02 h3 .line {
  background: linear-gradient(180deg, transparent 0% 60%, #7e785d 60% 100%);
}
#products.vedashinepro-bs-for-salon .provoice {
  background-color: #393E41;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .provoice {
    padding: 40px 0;
  }
}
#products.vedashinepro-bs-for-salon .provoice h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .provoice h3 {
    font-size: 1.8rem;
  }
}
#products.vedashinepro-bs-for-salon .provoice .list {
  margin-bottom: 0;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .provoice .list {
    margin-top: 20px;
  }
}
#products.vedashinepro-bs-for-salon .provoice .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .provoice .list_box {
    flex-flow: column wrap;
  }
}
#products.vedashinepro-bs-for-salon .provoice .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .provoice .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products.vedashinepro-bs-for-salon .provoice .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .provoice .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedashinepro-bs-for-salon .provoice .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products.vedashinepro-bs-for-salon .provoice .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products.vedashinepro-bs-for-salon .provoice .list_txt span {
  font-size: 1.6rem;
}

/*==================================================================
    #products.nano-lift-scalpcare-essence
===================================================================*/
#products.nano-lift-scalpcare-essence .sec01 {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec01 {
    padding: 50px 0;
  }
}
#products.nano-lift-scalpcare-essence .sec01 .list {
  margin: 0px 0px 100px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec01 .list {
    margin-bottom: 50px;
  }
}
#products.nano-lift-scalpcare-essence .sec01 .list_txt h3 {
  font-size: 1.4rem;
  color: #A5894B;
  margin-bottom: 5px;
}
#products.nano-lift-scalpcare-essence .sec01 .list_txt h3 span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.1rem;
}
#products.nano-lift-scalpcare-essence .sec01 .list_img::before {
  display: none;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec01 .list_img.-small {
    max-width: 140px;
  }
}
#products.nano-lift-scalpcare-essence .sec01 .point_list {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  flex-flow: row wrap;
  background-color: #fff;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec01 .point_list {
    margin-bottom: 15px;
    flex-flow: column;
  }
}
#products.nano-lift-scalpcare-essence .sec01 .point_list:last-child {
  margin-bottom: 0;
}
#products.nano-lift-scalpcare-essence .sec01 .point_list dt {
  margin-right: 10px;
  font-size: 2.8rem;
  font-family: "Red Hat Display", sans-serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec01 .point_list dt {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-right: 0px;
  }
}
#products.nano-lift-scalpcare-essence .sec01 .point_list dd {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a79b9b;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec01 .point_list dd {
    font-size: 1.5rem;
  }
}
#products.nano-lift-scalpcare-essence .sec02 {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec02 {
    padding: 40px 0;
  }
}
#products.nano-lift-scalpcare-essence .sec02 .ttl01_txt {
  margin-bottom: 50px;
}
#products.nano-lift-scalpcare-essence .sec02 .ttl01_txt p {
  text-align: left;
}
#products.nano-lift-scalpcare-essence .sec02 .capsule_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec02 .capsule_list {
    flex-flow: column;
    justify-content: center;
  }
}
#products.nano-lift-scalpcare-essence .sec02 .capsule_list dl {
  width: 50%;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec02 .capsule_list dl {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 40px;
    padding: 0;
  }
}
#products.nano-lift-scalpcare-essence .sec02 .capsule_list dl dt {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec02 .capsule_list dl dt {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
#products.nano-lift-scalpcare-essence .sec02 .capsule_list dl dd {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec02 .capsule_list dl dd {
    margin: 0px auto;
  }
}
#products.nano-lift-scalpcare-essence .sec03 {
  background-color: #000;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec03 {
    padding: 40px 0;
  }
}
#products.nano-lift-scalpcare-essence .sec03 h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec03 h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
#products.nano-lift-scalpcare-essence .sec03 .component_list {
  display: flex;
  flex-flow: row wrap;
}
#products.nano-lift-scalpcare-essence .sec03 .component_list dl {
  width: 25%;
  padding: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec03 .component_list dl {
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
  }
}
#products.nano-lift-scalpcare-essence .sec03 .component_list dl dt {
  margin-bottom: 15px;
  text-align: center;
}
#products.nano-lift-scalpcare-essence .sec03 .component_list dl dt img {
  border-radius: 50%;
  width: 80%;
  max-width: 200px;
  margin: 0px auto;
}
#products.nano-lift-scalpcare-essence .sec03 .component_list dl dd {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec03 .component_list dl dd {
    font-size: 1.4rem;
  }
}
#products.nano-lift-scalpcare-essence .sec04 {
  background-color: #393434;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec04 {
    padding: 40px 0;
  }
}
#products.nano-lift-scalpcare-essence .sec04 h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec04 h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
#products.nano-lift-scalpcare-essence .sec04 .component_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 50px;
}
#products.nano-lift-scalpcare-essence .sec04 .component_list dl {
  width: 33.3333333333%;
  padding: 20px;
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec04 .component_list dl {
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
  }
}
#products.nano-lift-scalpcare-essence .sec04 .component_list dl dt {
  margin-bottom: 15px;
}
#products.nano-lift-scalpcare-essence .sec04 .component_list dl dd {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec04 .component_list dl dd {
    font-size: 1.4rem;
  }
}
#products.nano-lift-scalpcare-essence .sec04 .frees {
  max-width: 600px;
  margin: 40px auto 50px;
}
#products.nano-lift-scalpcare-essence .sec04 .frees dl {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
}
#products.nano-lift-scalpcare-essence .sec04 .frees dl dt {
  width: 150px;
  padding-right: 20px;
}
#products.nano-lift-scalpcare-essence .sec04 .frees dl h4 {
  color: #968662;
  margin-bottom: 10px;
}
#products.nano-lift-scalpcare-essence .sec05 {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec05 {
    padding: 40px 0;
  }
}
#products.nano-lift-scalpcare-essence .sec05 .list {
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec05 .list_box {
    flex-flow: column;
  }
}
#products.nano-lift-scalpcare-essence .sec05 .list_img {
  max-width: 340px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec05 .list_img {
    margin-bottom: 50px;
    width: 100%;
  }
}
#products.nano-lift-scalpcare-essence .sec05 .list_txt {
  width: 60%;
  max-width: 800px;
  margin: 0px auto;
  padding-left: 0;
}
#products.nano-lift-scalpcare-essence .sec05 .howto_list {
  display: flex;
  margin-bottom: 25px;
  flex-flow: column;
}
#products.nano-lift-scalpcare-essence .sec05 .howto_list dt {
  margin-bottom: 5px;
  font-size: 2.3rem;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
}
#products.nano-lift-scalpcare-essence .sec05 .howto_list dd {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}
#products.nano-lift-scalpcare-essence .sec06 {
  padding: 80px 0;
  background-color: #464646;
}
@media screen and (max-width: 768px) {
  #products.nano-lift-scalpcare-essence .sec06 {
    padding: 40px 0;
  }
}

/*==================================================================
    #products.vedaneedlespa
===================================================================*/
#products.vedaneedlespa .-mt30 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .-mt30 {
    margin-top: 0;
  }
}
#products.vedaneedlespa .-bgc01 {
  background-color: #535353;
}
#products.vedaneedlespa .-bgc02 {
  background-color: #3b3b3b;
}
#products.vedaneedlespa .sec01 {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec01 {
    padding-bottom: 40px;
  }
}
#products.vedaneedlespa .sec01_sub {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec01_sub {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec01 .-majst {
    margin-top: 20px;
  }
}
#products.vedaneedlespa .sec02 {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec02 {
    padding: 40px 0 10px;
  }
}
#products.vedaneedlespa .sec02_imgbox {
  max-width: calc(1100px + 10vw);
  text-align: center;
  margin: 0 auto;
}
#products.vedaneedlespa .sec02_imgbox h5 {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#products.vedaneedlespa .sec02_imgbox h5 img {
  margin-bottom: 20px;
}
#products.vedaneedlespa .sec02_imgbox p {
  padding-bottom: 40px;
}
#products.vedaneedlespa .sec02_imgbox ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec02_imgbox ul {
    flex-flow: row wrap;
    justify-content: space-evenly;
    padding: 0 10px;
  }
}
#products.vedaneedlespa .sec02_imgbox ul li {
  width: 25%;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec02_imgbox ul li {
    width: 50%;
    max-width: 300px;
    padding: 0 8px;
  }
}
#products.vedaneedlespa .sec02_imgbox figcaption {
  text-align: center;
  padding-top: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec02_imgbox figcaption {
    padding-bottom: 30px;
    font-size: 1.6rem;
  }
}
#products.vedaneedlespa .sec03 {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec03 {
    padding: 40px 0;
  }
}
#products.vedaneedlespa .sec03-ttl-box {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec03-ttl-box {
    flex-flow: column;
  }
}
#products.vedaneedlespa .sec03-ttl-box .txt {
  text-align: left;
  padding-left: 40px;
  width: calc(100% - 300px);
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec03-ttl-box .txt {
    width: 100%;
    padding-left: 0;
  }
}
#products.vedaneedlespa .sec03-ttl-box .img {
  transform: skewX(-5deg);
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec03-ttl-box .img {
    width: 80%;
    max-width: 240px;
    margin: 0px auto 20px;
  }
}
#products.vedaneedlespa .sec03-ttl-box .img span {
  overflow: hidden;
  display: block;
}
#products.vedaneedlespa .sec03-ttl-box .img img {
  transform: skewX(5deg) scale(1.1);
}
#products.vedaneedlespa .sec03 h6 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFECCE;
  background-color: #847E7E;
  display: inline-block;
  padding: 5px 10px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec03 h6 {
    font-size: 1.6rem;
    margin: 40px auto 30px;
  }
}
@media screen and (max-width: 640px) {
  #products.vedaneedlespa .sec03 h6 {
    font-size: 1.5rem;
    padding: 5px;
  }
}
#products.vedaneedlespa .sec03 ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec03 ul {
    flex-flow: row wrap;
  }
}
#products.vedaneedlespa .sec03 ul li {
  width: 50%;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec03 ul li {
    width: 100%;
    max-width: 420px;
    padding: 0 0 40px;
  }
}
#products.vedaneedlespa .sec04 {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec04 {
    padding: 40px 0;
  }
}
#products.vedaneedlespa .sec04 .list {
  margin: 0;
}
#products.vedaneedlespa .sec04 .list h4 {
  color: #FFECCE;
}
#products.vedaneedlespa .sec04 .list_img {
  width: 40%;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec04 .list_img {
    width: 100%;
  }
}
#products.vedaneedlespa .sec04 .list_img::before {
  display: none;
}
#products.vedaneedlespa .sec05 {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec05 {
    padding: 40px 0;
  }
}
#products.vedaneedlespa .sec05_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec05_list {
    flex-flow: column;
  }
}
#products.vedaneedlespa .sec05_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec05_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products.vedaneedlespa .sec05_item:last-child {
    margin-bottom: 0px;
  }
}
#products.vedaneedlespa .sec05_item h4 {
  text-align: center;
  margin-bottom: 20px;
}
#products.vedaneedlespa .sec05_item img {
  margin-bottom: 10px;
}
#products.vedaneedlespa .sec05-announce {
  padding: 30px;
  background-color: rgba(65, 65, 65, 0.6);
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec05-announce {
    padding: 15px;
    margin-top: 0px;
  }
}
#products.vedaneedlespa .sec05 dl dt {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec05 dl dt {
    font-size: 1.8rem;
  }
}
#products.vedaneedlespa .sec05 dl dt img {
  margin-bottom: 0 !important;
  margin-right: 10px;
}
#products.vedaneedlespa .sec05 dl dt sup {
  display: contents;
}
#products.vedaneedlespa .sec05 dl dd {
  font-size: 1.6rem;
  color: #fff !important;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec05 dl dd {
    font-size: 1.4rem;
  }
}
#products.vedaneedlespa .sec05 dl dd .annotation {
  color: #fff;
  padding-top: 10px;
  font-size: 1.2rem;
}
#products.vedaneedlespa .sec06 {
  color: #000;
  background-color: #F4F4F4;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec06 {
    padding: 20px 0;
  }
}
#products.vedaneedlespa .sec06 h4 em,
#products.vedaneedlespa .sec06 h4 span {
  display: block;
}
#products.vedaneedlespa .sec06 .list {
  margin: 40px auto;
}
@media screen and (max-width: 640px) {
  #products.vedaneedlespa .sec06 .list {
    margin: 20px auto;
  }
}
#products.vedaneedlespa .sec06 .list_box {
  justify-content: center;
}
#products.vedaneedlespa .sec06 .list_img {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec06 .list_img {
    margin-bottom: 20px;
  }
}
#products.vedaneedlespa .sec06 .list_txt em {
  font-weight: 600;
  font-size: 1.6rem;
}
#products.vedaneedlespa .sec06 .list_txt p {
  font-weight: 600;
  color: #696969;
}
#products.vedaneedlespa .sec06 .list_txt span {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #products.vedaneedlespa .sec06 .list_txt {
    padding: 0;
  }
}
#products.vedaneedlespa .sec06 .list_caution {
  color: #000 !important;
}

/*==================================================================
    #products.freshmoist-cleansing-gel
===================================================================*/
#products.freshmoist-cleansing-gel .component {
  background-color: #414141;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .component {
    padding: 40px 0;
  }
}
#products.freshmoist-cleansing-gel .component h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .component h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
#products.freshmoist-cleansing-gel .component .featured {
  padding: 0 0 100px;
}
#products.freshmoist-cleansing-gel .component .sub-ttl {
  padding-bottom: 40px;
  text-align: center;
}
#products.freshmoist-cleansing-gel .component .sub-ttl h4 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
#products.freshmoist-cleansing-gel .component .sub-ttl p {
  font-size: 1.5rem;
}
#products.freshmoist-cleansing-gel .component .tile {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .component .tile {
    flex-flow: column wrap;
  }
}
#products.freshmoist-cleansing-gel .component .tile_box {
  width: 30%;
  margin: 0 auto;
  padding: 30px;
  background-color: #4A4A4A;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .component .tile_box {
    width: 100%;
    max-width: 400px;
    margin: 0px auto 20px;
  }
}
@media screen and (max-width: 640px) {
  #products.freshmoist-cleansing-gel .component .tile_box {
    padding: 10px;
  }
}
#products.freshmoist-cleansing-gel .component .tile_ttl {
  margin-bottom: 10px;
  text-align: center;
}
#products.freshmoist-cleansing-gel .component .tile_ttl img {
  width: 58px;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .component .tile_ttl img {
    width: 46px;
  }
}
#products.freshmoist-cleansing-gel .component_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products.freshmoist-cleansing-gel .component_list dl {
  width: 20%;
  padding: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  #products.freshmoist-cleansing-gel .component_list dl {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .component_list dl {
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
  }
}
#products.freshmoist-cleansing-gel .component_list dl dt {
  margin-bottom: 15px;
  text-align: center;
}
#products.freshmoist-cleansing-gel .component_list dl dt img {
  border-radius: 50%;
  width: 80%;
  max-width: 200px;
  margin: 0px auto;
}
#products.freshmoist-cleansing-gel .component_list dl dd {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .component_list dl dd {
    font-size: 1.4rem;
  }
}
#products.freshmoist-cleansing-gel .component_list dl dd span {
  font-weight: normal;
  display: block;
  font-size: 1.3rem;
  padding-top: 5px;
}
#products.freshmoist-cleansing-gel .liquid {
  background-color: #393434;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .liquid {
    padding: 40px 0;
  }
}
#products.freshmoist-cleansing-gel .liquid h3 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .liquid h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
#products.freshmoist-cleansing-gel .liquid .frees {
  margin: 0px auto 50px;
}
#products.freshmoist-cleansing-gel .liquid .frees dl {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin: 0px auto;
}
#products.freshmoist-cleansing-gel .liquid .frees dl dt {
  width: 220px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .liquid .frees dl dt {
    width: 140px;
    padding-right: 10px;
  }
}
#products.freshmoist-cleansing-gel .liquid .frees dl dd {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .liquid .frees dl dd {
    width: calc(100% - 140px);
  }
}
#products.freshmoist-cleansing-gel .liquid .frees dl dd h4 {
  font-size: 2.4rem;
  color: #968662;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .liquid .frees dl dd h4 {
    font-size: 2rem;
  }
}
#products.freshmoist-cleansing-gel .liquid .frees dl dd p {
  font-size: 1.6rem;
}
#products.freshmoist-cleansing-gel .liquid .freetitle {
  font-size: 2.6rem;
  margin-bottom: 15px;
  color: #968662;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .liquid .freetitle {
    font-size: 2.2rem;
  }
}
#products.freshmoist-cleansing-gel .liquid .freetitle + p {
  text-align: center;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .liquid .freetitle + p {
    font-size: 1.8rem;
  }
}
#products.freshmoist-cleansing-gel .sec05 {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .sec05 {
    padding: 40px 0;
  }
}
#products.freshmoist-cleansing-gel .sec05 .list {
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .sec05 .list_box {
    flex-flow: column;
  }
}
#products.freshmoist-cleansing-gel .sec05 .list_img {
  max-width: 340px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .sec05 .list_img {
    margin-bottom: 50px;
    width: 100%;
  }
}
#products.freshmoist-cleansing-gel .sec05 .list_txt {
  width: 60%;
  max-width: 800px;
  margin: 0px auto;
  padding-left: 0;
}
#products.freshmoist-cleansing-gel .sec05 .howto_list {
  display: flex;
  margin-bottom: 25px;
  flex-flow: column;
}
#products.freshmoist-cleansing-gel .sec05 .howto_list dt {
  margin-bottom: 5px;
  font-size: 2.3rem;
  font-family: "Red Hat Display", sans-serif;
  color: #fff;
}
#products.freshmoist-cleansing-gel .sec05 .howto_list dd {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}
#products.freshmoist-cleansing-gel .sec06 {
  padding: 80px 0;
  background-color: #464646;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .sec06 {
    padding: 40px 0;
  }
}
#products.freshmoist-cleansing-gel .howto {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .howto {
    padding: 40px 0;
  }
}
#products.freshmoist-cleansing-gel .howto-box {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0px auto;
  width: 100%;
}
#products.freshmoist-cleansing-gel .howto-list li {
  margin-bottom: 10px;
}
#products.freshmoist-cleansing-gel .howto-list p {
  font-size: 1.8rem;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .howto-list p {
    font-size: 1.5rem;
  }
}
#products.freshmoist-cleansing-gel .howto-list p span {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  padding-right: 10px;
  width: 60px;
}
@media screen and (max-width: 768px) {
  #products.freshmoist-cleansing-gel .howto-list p span {
    font-size: 2rem;
    width: 50px;
  }
}

/*==================================================================
    #products.cavispa-for-pro-premiere2
===================================================================*/
#products.cavispa-for-pro-premiere2 .sec01 {
  margin: 80px auto;
}
@media screen and (max-width: 991px) {
  #products.cavispa-for-pro-premiere2 .sec01 {
    margin: 40px auto;
  }
}
#products.cavispa-for-pro-premiere2 .sec01 h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .sec01 h3 {
    flex-flow: column-reverse wrap;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-premiere2 .sec01 h3 {
    font-size: 1.4rem;
  }
}
#products.cavispa-for-pro-premiere2 .sec01 h3 span {
  font-size: 2.7rem;
  font-family: "Red Hat Display", sans-serif;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .sec01 h3 span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  #products.cavispa-for-pro-premiere2 .sec01 h3 span {
    font-size: 1.9rem;
  }
}
#products.cavispa-for-pro-premiere2 .features-list {
  position: relative;
  padding: 0px 0 120px;
}
#products.cavispa-for-pro-premiere2 .features-list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 0 0 50vw;
  border-color: transparent transparent transparent #303946;
  z-index: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-list::before {
    border-width: 60px 0 0 50vw;
  }
}
#products.cavispa-for-pro-premiere2 .features-list::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 150px 50vw;
  border-color: transparent transparent #303946 transparent;
  z-index: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-list::after {
    border-width: 0 0 60px 50vw;
  }
}
#products.cavispa-for-pro-premiere2 .features-list-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-list-box {
    flex-flow: column;
  }
}
#products.cavispa-for-pro-premiere2 .features-list-item {
  margin-right: 30px;
  width: calc((100% - 60px) / 3);
  padding: 2vw;
  background-color: #8d897c;
  border: 2px solid #bcb192;
}
@media screen and (min-width: 1481px) {
  #products.cavispa-for-pro-premiere2 .features-list-item {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-list-item {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px;
  }
  #products.cavispa-for-pro-premiere2 .features-list-item:last-child {
    margin-bottom: 10px;
  }
}
#products.cavispa-for-pro-premiere2 .features-list-item:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-list-item:nth-child(3n) {
    margin-right: auto;
  }
}
#products.cavispa-for-pro-premiere2 .features-list-item h4 {
  text-align: center;
  margin-bottom: 15px;
}
#products.cavispa-for-pro-premiere2 .features-list-item h4 span {
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "Red Hat Display", sans-serif;
  display: block;
}
#products.cavispa-for-pro-premiere2 .features-list-item dt {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #bcb192;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-list-item dt {
    font-size: 1.7rem;
  }
}
#products.cavispa-for-pro-premiere2 .features-list-item dt span {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 100px;
}
@media screen and (max-width: 991px) {
  #products.cavispa-for-pro-premiere2 .features-list-item dt span {
    width: 85px;
  }
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-list-item dt span {
    width: 100px;
    right: -20px;
  }
}
#products.cavispa-for-pro-premiere2 .features-list-item dd {
  line-height: 1.5;
  text-align: left;
}
#products.cavispa-for-pro-premiere2 .features-list .list_caution {
  position: relative;
  z-index: 2;
}
#products.cavispa-for-pro-premiere2 .features-mixed {
  position: relative;
  padding: 40px 0;
  background-color: #303946;
}
#products.cavispa-for-pro-premiere2 .features-mixed h3 {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #dbcfad;
  font-size: 2.4rem;
  border: 1px solid #dbcfad;
  transform: skewX(-10deg);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .features-mixed h3 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
#products.cavispa-for-pro-premiere2 .features-mixed h3 span {
  display: block;
  transform: skewX(10deg);
}
#products.cavispa-for-pro-premiere2 .treatment {
  padding-bottom: 40px;
}
#products.cavispa-for-pro-premiere2 .treatment-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .treatment-list {
    flex-flow: column-reverse;
  }
}
#products.cavispa-for-pro-premiere2 .treatment-item {
  width: 50%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .treatment-item {
    width: 100%;
    padding: 0;
  }
  #products.cavispa-for-pro-premiere2 .treatment-item:last-child {
    margin-bottom: 30px;
  }
}
#products.cavispa-for-pro-premiere2 .treatment-item h3 {
  line-height: 1.7;
  margin-bottom: 30px;
}
#products.cavispa-for-pro-premiere2 .treatment-item img {
  margin: 0 auto;
  display: block;
}
#products.cavispa-for-pro-premiere2 .points {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .points {
    padding: 40px 0;
  }
}
#products.cavispa-for-pro-premiere2 .history {
  padding: 80px 0;
  background-color: #292929;
}
#products.cavispa-for-pro-premiere2 .history-img {
  margin: 0px auto 50px;
  text-align: center;
}
#products.cavispa-for-pro-premiere2 .history h3 {
  color: #ffecce;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .history h3 {
    margin-bottom: 30px;
  }
}
#products.cavispa-for-pro-premiere2 .history p {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .history p {
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  #products.cavispa-for-pro-premiere2 .history img {
    max-width: 500px;
    width: 100%;
    margin: 0px auto;
  }
}

/*==================================================================
    #products.vedasmoothcurl
===================================================================*/
#products.vedasmoothcurl .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedasmoothcurl .tbBlock {
    display: block;
  }
}
#products.vedasmoothcurl .dpsdw {
  box-shadow: 0px 10px 15px #000;
}
#products.vedasmoothcurl .photo {
  max-width: 1100px;
  padding: 80px 0;
  width: 84vw;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .photo {
    padding: 20px 0;
    width: 100%;
  }
  #products.vedasmoothcurl .photo img {
    padding-left: 20px;
  }
}
#products.vedasmoothcurl .sec01 {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec01 {
    padding-bottom: 40px;
  }
}
#products.vedasmoothcurl .sec01 img {
  width: 100%;
}
#products.vedasmoothcurl .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec01_box {
    flex-flow: column wrap;
    padding: 0;
  }
}
#products.vedasmoothcurl .sec01 dl {
  margin: 2%;
  padding: 4%;
  max-width: 46%;
  background-color: #343d41;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec01 dl {
    max-width: 100%;
  }
}
#products.vedasmoothcurl .sec01 dt {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec01 dt {
    font-size: 1.7rem;
  }
}
#products.vedasmoothcurl .sec01 .imgW {
  width: 50px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec01 .imgW {
    width: 40px;
  }
}
#products.vedasmoothcurl .sec01_txt {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 10px 0 20px;
}
#products.vedasmoothcurl .sec01_img {
  margin: 0 auto;
}
#products.vedasmoothcurl .sec02 {
  padding: 80px 0 20px;
  background-color: #414141;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec02 {
    padding: 40px 0;
  }
}
#products.vedasmoothcurl .sec02_box {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec02_box {
    flex-flow: column wrap;
  }
}
#products.vedasmoothcurl .sec02 .iBoxV {
  width: 50%;
  max-width: 520px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec02 .iBoxV {
    width: 100%;
  }
}
#products.vedasmoothcurl .sec02 .iBoxV img {
  width: 100%;
}
#products.vedasmoothcurl .sec02 .iBoxV_title01 {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #FFECCE;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec02 .iBoxV_title01 {
    font-size: 1.9rem;
  }
}
#products.vedasmoothcurl .sec02 .iBoxV_title02 {
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec02 .iBoxV_title02 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec02 .iBoxV_txt02 {
    margin-bottom: 0;
  }
}
#products.vedasmoothcurl .sec02 h3 .line {
  background: linear-gradient(180deg, transparent 0% 60%, #7e785d 60% 100%);
}
#products.vedasmoothcurl .sec03 {
  background-color: #393E41;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec03 {
    padding: 40px 0;
  }
}
#products.vedasmoothcurl .sec03 h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec03 h3 {
    font-size: 1.8rem;
  }
}
#products.vedasmoothcurl .sec03 .list {
  margin-bottom: 0;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec03 .list {
    margin-top: 20px;
  }
}
#products.vedasmoothcurl .sec03 .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec03 .list_box {
    flex-flow: column wrap;
  }
}
#products.vedasmoothcurl .sec03 .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec03 .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products.vedasmoothcurl .sec03 .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec03 .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec03 .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products.vedasmoothcurl .sec03 .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products.vedasmoothcurl .sec03 .list_txt span {
  font-size: 1.6rem;
}
#products.vedasmoothcurl .sec04 {
  background-color: #807A72;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec04 {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec04 .list {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec04 .list_box {
    flex-flow: column-reverse wrap;
  }
}
#products.vedasmoothcurl .sec04 .list_img {
  max-width: 572px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .sec04 .list_img {
    margin-bottom: 40px;
  }
}
#products.vedasmoothcurl .sec04 .list_img img {
  width: 100%;
}
#products.vedasmoothcurl .sec04 .list_txt span {
  font-size: 1.4rem;
}
#products.vedasmoothcurl .sec04 .list_txt h4 em {
  font-size: 3rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
#products.vedasmoothcurl .evidence {
  background-color: #545555;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .evidence {
    padding: 50px 0;
  }
}
#products.vedasmoothcurl .evidence_block {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .evidence_block {
    flex-flow: column-reverse;
    margin-bottom: 50px;
  }
}
#products.vedasmoothcurl .evidence_block.-reverse {
  flex-flow: row-reverse wrap;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .evidence_block.-reverse {
    flex-flow: column-reverse;
  }
}
#products.vedasmoothcurl .evidence_block:last-child {
  margin-bottom: 0;
}
#products.vedasmoothcurl .evidence_block .img {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .evidence_block .img {
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    padding: 0px;
  }
}
#products.vedasmoothcurl .evidence_block .img .cut {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .evidence_block .img .cut {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
#products.vedasmoothcurl .evidence_block .img h4 {
  text-align: center;
}
#products.vedasmoothcurl .evidence_block .img h4 span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #fff;
  line-height: 36px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 20px;
}
#products.vedasmoothcurl .evidence_block .txt {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .evidence_block .txt {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 40px;
    padding: 0px;
  }
}
#products.vedasmoothcurl .evidence_block .txt h5 {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #ffecce;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .evidence_block .txt h5 {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
#products.vedasmoothcurl .evidence_block .txt h5 em {
  font-weight: bold;
  font-size: 2.8rem;
}
#products.vedasmoothcurl .evidence_block .txt h5 span {
  display: inline-block;
  text-transform: uppercase;
  background-color: #000;
  color: #8b8b8b;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 1.6rem;
  padding: 0px 1em;
  line-height: 32px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
#products.vedasmoothcurl .arrange {
  padding-bottom: 80px;
}
#products.vedasmoothcurl .arrange h4 {
  color: #cfcbb0;
}
#products.vedasmoothcurl .ttl01 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 30px;
}
#products.vedasmoothcurl .ttl01_item {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #products.vedasmoothcurl .ttl01_item {
    padding: 10px;
    margin-bottom: 0;
  }
}
#products.vedasmoothcurl .ttl01 .caution {
  font-size: 1.2rem;
  padding: 0.5em 0 0;
  color: #e20c0c;
  text-align: right;
}

/*==================================================================
    #products.vedahair-volumer
===================================================================*/
#products.vedahair-volumer .ttl01 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 30px;
}
#products.vedahair-volumer .ttl01_item {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .ttl01_item {
    padding: 10px;
    margin-bottom: 0;
  }
}
#products.vedahair-volumer .ttl01 .caution {
  font-size: 1.2rem;
  padding: 0.5em 0 0;
  color: #e20c0c;
  text-align: right;
}
#products.vedahair-volumer .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedahair-volumer .tbBlock {
    display: block;
  }
}
#products.vedahair-volumer .dpsdw {
  box-shadow: 0px 10px 15px #000;
}
#products.vedahair-volumer .photo {
  max-width: 1100px;
  padding: 80px 0;
  width: 84vw;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .photo {
    padding: 20px 0;
    width: 100%;
  }
  #products.vedahair-volumer .photo img {
    padding-left: 20px;
  }
}
#products.vedahair-volumer .structure .container {
  max-width: 1000px;
}
#products.vedahair-volumer .structure .h03 {
  font-size: 2.2rem;
}
#products.vedahair-volumer .structure .h03 + p {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .structure .h03 + p {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}
#products.vedahair-volumer .structure-box {
  background-color: #343d41;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .structure-box {
    padding: 30px 0;
  }
}
#products.vedahair-volumer .structure-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#products.vedahair-volumer .structure-list .txt {
  width: 40%;
  padding: 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  #products.vedahair-volumer .structure-list .txt {
    width: 100%;
    padding: 30px 20px;
    flex-flow: row wrap;
  }
}
#products.vedahair-volumer .structure-list .txt dl {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  #products.vedahair-volumer .structure-list .txt dl {
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
#products.vedahair-volumer .structure-list .txt dl:last-child {
  margin-bottom: 0;
}
#products.vedahair-volumer .structure-list .txt dt {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .structure-list .txt dt {
    font-size: 1.5rem;
  }
}
#products.vedahair-volumer .structure-list .txt span {
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  padding-right: 5px;
}
@media screen and (max-width: 640px) {
  #products.vedahair-volumer .structure-list .txt span {
    font-size: 1.8rem;
  }
}
#products.vedahair-volumer .structure-list .txt dd {
  line-height: 1.4;
}
#products.vedahair-volumer .structure-list .img {
  width: 60%;
}
@media screen and (max-width: 640px) {
  #products.vedahair-volumer .structure-list .img {
    width: 100%;
  }
}
#products.vedahair-volumer .sec01 {
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .sec01 {
    padding-bottom: 0px;
  }
}
#products.vedahair-volumer .sec01 img {
  width: auto;
}
#products.vedahair-volumer .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .sec01_box {
    flex-flow: column wrap;
    padding: 0;
  }
}
#products.vedahair-volumer .sec01 dl {
  margin: 2%;
  padding: 4%;
  max-width: 46%;
  background-color: #343d41;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .sec01 dl {
    max-width: 100%;
  }
}
#products.vedahair-volumer .sec01 dt {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .sec01 dt {
    font-size: 1.7rem;
  }
}
#products.vedahair-volumer .sec01 .imgW {
  width: 50px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .sec01 .imgW {
    width: 40px;
  }
}
#products.vedahair-volumer .sec01_txt {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 10px 0 20px;
}
#products.vedahair-volumer .sec01_img {
  margin: 0 auto;
}
#products.vedahair-volumer .scene {
  padding: 80px 0;
  background-color: #414141;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .scene {
    padding: 40px 0;
  }
}
#products.vedahair-volumer .scene-list {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .scene-list {
    flex-flow: column;
  }
}
#products.vedahair-volumer .scene-item {
  width: 33.3333333333%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .scene-item {
    padding: 10px;
    width: 100%;
    max-width: 480px;
    margin: 0px auto 20px;
  }
}
#products.vedahair-volumer .scene-item dt {
  position: relative;
}
#products.vedahair-volumer .scene-item dt span {
  position: absolute;
  left: -10px;
  top: -10px;
  background-color: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  padding: 0.5em 1em;
}
#products.vedahair-volumer .scene-item dd {
  text-align: center;
  padding-top: 10px;
  font-size: 1.6rem;
  line-height: 1.4;
}
#products.vedahair-volumer .scene h4 {
  color: #ffecce;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .scene h4 {
    margin-bottom: 10px;
  }
}
#products.vedahair-volumer .arrange-list {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 40px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .arrange-list {
    flex-flow: column;
  }
}
#products.vedahair-volumer .arrange-list li {
  width: 33.3333333333%;
  max-width: 240px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products.vedahair-volumer .arrange-list li {
    width: 100%;
    margin: 0px auto;
  }
}

.maskbox {
  overflow: hidden;
}
.maskbox-inner {
  opacity: 0;
}

.salonmodel {
  padding: 0px 0px 80px;
}
@media screen and (max-width: 768px) {
  .salonmodel {
    padding: 40px 0;
  }
}
.salonmodel-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .salonmodel-list {
    flex-flow: column;
  }
}
.salonmodel-item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .salonmodel-item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  .salonmodel-item:last-child {
    margin-bottom: 0px;
  }
}
.salonmodel-item.-w100 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .salonmodel-item.-w100 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .salonmodel-item.-mode {
    margin-bottom: 0;
  }
}
.salonmodel-item h4 {
  text-align: center;
  margin-bottom: 20px;
}
.salonmodel-item h4.-dt {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .salonmodel-item h4.-dt {
    font-size: 1.8rem !important;
  }
}
.salonmodel-item h4.-dt img {
  margin-bottom: 0 !important;
  margin-right: 10px;
}
.salonmodel-item h4.-dt sup {
  display: contents;
}
.salonmodel-item img {
  margin-bottom: 10px;
}
.salonmodel-announce {
  padding: 30px;
  background-color: #4b4b4b;
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .salonmodel-announce {
    padding: 15px;
    margin-top: 0px;
  }
}
.salonmodel dl dt {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .salonmodel dl dt {
    font-size: 1.8rem;
  }
}
.salonmodel dl dt.-mode {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .salonmodel dl dt.-mode {
    font-size: 1.6rem;
  }
}
.salonmodel dl dt img {
  margin-bottom: 0 !important;
  margin-right: 10px;
}
.salonmodel dl dt sup {
  display: contents;
}
.salonmodel dl dd {
  font-size: 1.6rem;
  color: #fff !important;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .salonmodel dl dd {
    font-size: 1.4rem;
  }
}
.salonmodel dl dd.-mode {
  font-weight: 700;
}
.salonmodel dl dd .annotation {
  color: #fff;
  padding-top: 10px;
  font-size: 1.2rem;
}

.flex-content {
  width: 50%;
  padding: 30px;
}
@media screen and (max-width: 991px) {
  .flex-content {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .flex-content {
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
  }
}
.flex-content-wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .flex-content-wrapper {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .flex-content-wrapper.-reverse {
    flex-flow: column-reverse;
  }
}
.flex-content-wrapper.-start {
  align-items: flex-start;
}

.productdetail-banner {
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
}
.productdetail-banner p {
  font-size: 1.7rem !important;
  font-weight: bold;
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.productdetail-banner p::before, .productdetail-banner p::after {
  content: "";
  width: 2.5em;
  height: 1px;
  display: block;
  background-color: #fff;
}
.productdetail-banner p::before {
  transform: translateX(-0.5em);
}
.productdetail-banner p::after {
  transform: translateX(0.5em);
}
.productdetail-banner a {
  transition: all 200ms ease;
}
.productdetail-banner a:hover {
  opacity: 0.7;
}

/*==================================================================
    #about.lead
===================================================================*/
#about {
  color: #fff;
}

#about .leadbox {
  font-family: "Shippori Mincho", serif;
  padding: 100px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #about .leadbox {
    flex-flow: column-reverse;
    justify-content: unset;
    padding: 30px 0;
  }
}
#about .leadbox_img {
  width: 46.09375%;
  max-width: 960px;
}
@media screen and (max-width: 768px) {
  #about .leadbox_img {
    width: 100%;
  }
}
#about .leadbox_img img {
  width: 100%;
}
#about .leadbox_catch {
  width: 53.125%;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  #about .leadbox_catch {
    width: 100%;
    padding: 6vw 4vw;
    position: relative;
    top: auto;
    right: auto;
  }
}
#about .leadbox_catch .ttl {
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #about .leadbox_catch .ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  #about .leadbox_catch .ttl {
    font-size: 2rem;
  }
}
#about .leadbox_catch p {
  margin-bottom: 1.5em;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #about .leadbox_catch p {
    margin-bottom: 1em;
    font-size: 1.6rem;
  }
}
#about .leadbox_catch p:last-child {
  margin-bottom: 0;
}
#about .leadbox_outline {
  width: 57.8125%;
  padding: 7% 12.5% 6.25% 5.85%;
  background-color: #393939;
  position: absolute;
  bottom: 50px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #about .leadbox_outline {
    width: 100%;
    padding: 8vw 4vw;
    position: relative;
    bottom: auto;
    right: auto;
  }
}
#about .leadbox_outline .ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  #about .leadbox_outline .ttl {
    font-size: 1.8rem;
    margin-bottom: 1em;
  }
}
#about .leadbox_outline .ttl span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  #about .leadbox_outline .ttl span {
    font-size: 1.2rem;
  }
}

/*==================================================================
    #about .feature
===================================================================*/
#about .feature {
  padding-top: 100px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  #about .feature {
    padding-top: 50px;
  }
}
#about .feature_inner {
  padding: 0 7.03125%;
}
@media screen and (max-width: 768px) {
  #about .feature_inner {
    padding: 0 4vw;
  }
}
#about .feature_ttl {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #about .feature_ttl {
    padding: 3vw 0 0;
    background-size: 100% auto;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
}
#about .feature_lead {
  line-height: 2;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  #about .feature_lead {
    line-height: 1.8;
  }
}
#about .feature .blocks {
  padding-bottom: 20px;
  display: flex;
  flex-flow: column nowrap;
}
@media screen and (max-width: 768px) {
  #about .feature .blocks {
    padding-bottom: 0;
  }
}
#about .feature .blocks .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #about .feature .blocks .txt {
    font-size: 1.4rem;
  }
}
#about .feature .blocks_img {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  #about .feature .blocks_img {
    display: block;
    margin: 0 -4vw;
  }
}
#about .feature .blocks_img img {
  width: 77.2727272727%;
}
@media screen and (max-width: 768px) {
  #about .feature .blocks_img img {
    width: 100%;
  }
}
#about .feature .blocks_img.-re {
  justify-content: flex-end;
}
#about .feature .blocks_txt {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  transform: translateY(-110px);
}
@media screen and (max-width: 768px) {
  #about .feature .blocks_txt {
    display: block;
    transform: translateY(-60px);
  }
}
#about .feature .blocks_txt .box {
  width: 66.3636363636%;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  padding: 55px 0 0 35px;
  position: relative;
  background-image: url(../img/about/ttl_bg_01.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  margin: -100px 0 100px;
}
@media screen and (max-width: 768px) {
  #about .feature .blocks_txt .box {
    width: 100%;
    padding: 30px 0 0;
    background-size: 80px auto;
    margin: -20px 0 60px;
  }
}
#about .feature .blocks_txt .box.-second {
  background-image: url(../img/about/ttl_bg_02.svg);
}
#about .feature .blocks_txt .ttl {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 1.6em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #about .feature .blocks_txt .ttl {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
#about .feature .blocks_txt.-re {
  justify-content: flex-end;
}

/*==================================================================
    #about .promise
===================================================================*/
#about .promise {
  padding: 70px 0 90px;
  background-image: url(../img/about/photos_bg_01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 768px) {
  #about .promise {
    padding: 30px 0 60px;
  }
}
#about .promise_ttl {
  padding: 40px 0 0;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1em;
  background-image: url(../img/about/tti_bg_sub.svg);
  background-repeat: no-repeat;
  background-position: 50% -20px;
}
@media screen and (max-width: 768px) {
  #about .promise_ttl {
    font-size: 2.2rem;
    margin-bottom: 0.8em;
    background-size: 200px auto;
    background-position: 50% -15px;
  }
}
#about .promise_lead {
  line-height: 2;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #about .promise_lead {
    line-height: 1.8;
  }
}
#about .promise_blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #about .promise_blocks {
    flex-flow: column nowrap;
  }
}
#about .promise_blocks .blocks {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 220px;
  padding: 20px 20px 10px;
  border: solid 3px #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .promise_blocks .blocks {
    flex-flow: row-reverse nowrap;
    justify-content: center;
    width: 100%;
    padding: 20px;
  }
}
#about .promise_blocks .blocks:first-of-type {
  margin-right: 70px;
}
@media screen and (max-width: 768px) {
  #about .promise_blocks .blocks:first-of-type {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#about .promise_blocks .blocks_ttl {
  font-size: 1.7rem;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #about .promise_blocks .blocks_ttl {
    font-size: 1.4rem;
    margin-bottom: 0.4em;
  }
}
#about .promise_blocks .blocks_num {
  font-size: 6.7rem;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #about .promise_blocks .blocks_num {
    font-size: 4.2rem;
  }
}
#about .promise_blocks .blocks_icon {
  margin-top: 0.4em;
}
@media screen and (max-width: 768px) {
  #about .promise_blocks .blocks_icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
  }
}
#about .promise_caution {
  font-size: 1.1rem;
  text-align: center;
}

#about .brandmovie {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #about .brandmovie {
    padding: 50px 0;
  }
}
#about .brandmovie .movie-content-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
}
#about .brandmovie .movie-content-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*==================================================================
    #contact .leadbox
===================================================================*/
#contact main {
  padding: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  #contact main {
    padding: 30px 0 100px;
  }
}

#contact .leadbox {
  padding: 0 0 50px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contact .leadbox {
    padding: 0 0 30px;
  }
}
#contact .leadbox_ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #contact .leadbox_ttl {
    font-size: 1.6rem;
    text-align: left;
  }
}
#contact .leadbox_caution {
  text-align: center;
  font-size: 1.4rem;
}
#contact .leadbox_lead {
  text-align: center;
  margin-bottom: 30px;
}
#contact .leadbox_btn {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contact .leadbox_btn {
    width: 100%;
  }
}

/*==================================================================
    #contact .form
===================================================================*/
#contact .form {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
}
#contact .form table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}
#contact .form table tr {
  border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  #contact .form table tr {
    border-bottom: none;
  }
}
#contact .form table th {
  width: 30%;
  padding: 20px 0;
  font-weight: bold;
  vertical-align: text-top;
}
@media screen and (max-width: 768px) {
  #contact .form table th {
    display: block;
    width: 100%;
    padding: 10px 0 5px;
    vertical-align: middle;
    border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
    font-size: 1.3rem;
  }
}
#contact .form table td {
  width: 70%;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  #contact .form table td {
    display: block;
    width: 100%;
    padding: 15px 0px 20px;
    font-size: 1.4rem;
  }
}
#contact .form .required {
  font-size: 80%;
  vertical-align: top;
}
#contact .form .small {
  font-size: 1.3rem;
}
#contact .form .mwform-checkbox-field input[type=checkbox] {
  appearance: none;
  display: none;
}
#contact .form .mwform-checkbox-field input[type=checkbox] + span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
#contact .form .mwform-checkbox-field input[type=checkbox] + span::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #545959;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}
#contact .form .mwform-checkbox-field input[type=checkbox] + span::after {
  display: block;
  content: "";
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -7px;
  opacity: 0;
}
#contact .form .mwform-checkbox-field input[type=checkbox]:checked + span::after {
  opacity: 1;
}
#contact .form .mwform-radio-field input[type=radio] {
  appearance: none;
  display: none;
}
#contact .form .mwform-radio-field input[type=radio] + span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
#contact .form .mwform-radio-field input[type=radio] + span::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #545959;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
}
#contact .form .mwform-radio-field input[type=radio] + span::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -5px;
  opacity: 0;
}
#contact .form .mwform-radio-field input[type=radio]:checked + span::after {
  opacity: 1;
}
#contact .form .wrap_select {
  overflow: hidden;
  width: 40%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #contact .form .wrap_select {
    width: 100%;
  }
}
#contact .form .wrap_select::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}
#contact .form .wrap_select select {
  width: 100%;
  height: auto;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  text-overflow: ellipsis;
  padding: 0.7em 30px 0.7em 1em;
  border: none;
  background-color: #545959;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
}
#contact .form .wrap_select select::-ms-expand {
  display: none;
}
#contact .form .wrap_select select:focus {
  border: none;
}
#contact .form input[type=text],
#contact .form input[type=tel],
#contact .form input[type=email],
#contact .form input[type=password] {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  background-color: #545959;
  padding: 0.7em 1em;
  border: none;
  border-radius: 0;
}
#contact .form input[type=text]:focus,
#contact .form input[type=tel]:focus,
#contact .form input[type=email]:focus,
#contact .form input[type=password]:focus {
  border: none;
}
#contact .form textarea {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0.7em 1em;
  color: #fff;
  background-color: #545959;
  border: none;
  border-radius: 0;
}
#contact .form textarea:focus {
  border: none;
}
#contact .form textarea.hide {
  margin-top: 1em;
}
#contact .form .wrap_checkbox.-row {
  display: flex;
  flex-flow: column nowrap;
}
#contact .form .wrap_checkbox.-row .mwform-checkbox-field {
  margin-bottom: 0.5em;
}
#contact .form #postal-code {
  width: 10rem;
}
#contact .form .agree {
  margin-bottom: 30px;
}
#contact .form .agree_lead {
  text-align: center;
  margin-bottom: 0.5em;
}
#contact .form .agree_lead span {
  font-weight: bold;
}
#contact .form .agree_caution {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
#contact .form .privacy {
  margin-bottom: 30px;
}
#contact .form .privacy_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5em;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #contact .form .privacy_ttl {
    font-size: 1.6rem;
  }
}
#contact .form .privacy_box {
  width: 100%;
  height: 300px;
  padding: 20px;
  background-color: #545959;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  #contact .form .privacy_box {
    padding: 15px;
  }
}
#contact .form .privacy_box p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #contact .form .privacy_box p {
    font-size: 1.4rem;
  }
}
#contact .form .privacy_box dl {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #contact .form .privacy_box dl {
    font-size: 1.4rem;
  }
}
#contact .form .privacy_box dl dt {
  font-weight: bold;
}
#contact .form .privacy_box dl dd {
  margin-bottom: 1em;
}
#contact .form .check_input {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #contact .form .check_input {
    font-size: 1.4rem;
  }
}
#contact .form .check_btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
#contact .form .check_btn .btn {
  display: block;
  overflow: hidden;
  width: 40%;
  height: 60px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background-color: #a79b9b;
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  margin: 0 0.5em;
  transition: all 200ms ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  #contact .form .check_btn .btn {
    width: 100%;
    height: 46px;
    font-size: 1.4rem;
    line-height: 46px;
    margin: 0 0.3em;
  }
}
#contact .form .check_btn .btn.-back {
  background-color: #414141;
}
#contact .form .check_btn .btn:hover {
  opacity: 0.6;
}
#contact .form .check_btn .btn[type=submit][disabled] {
  cursor: default;
  opacity: 0.2;
}
#contact .form .check_btn .btn[type=submit][disabled]:hover {
  opacity: 0.2;
}

/*==================================================================
    #contact .form（確認画面）
===================================================================*/
#contact .mw_wp_form_confirm .form .wrap_select {
  width: 100%;
  text-align: left;
}
#contact .mw_wp_form_confirm .form .wrap_select::after {
  display: none;
}
#contact .mw_wp_form_confirm .form .agree {
  display: none;
}
#contact .mw_wp_form_confirm .form .privacy {
  display: none;
}
#contact .mw_wp_form_confirm .form .check_input {
  display: none;
}

/*==================================================================
    #notice .leadbox
===================================================================*/
#notice main {
  color: #fff;
  padding-top: 70px;
}

#notice .product {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  #notice .product {
    display: none;
  }
}
#notice .product ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 0px -10px;
}
#notice .product ul a {
  color: #fff;
  display: block;
  line-height: 1.6;
  padding: 10px 2em;
  border: 1px solid #fff;
  margin: 10px;
}

#notice .notice {
  padding: 0px 0 80px;
}
#notice .notice_block {
  padding-bottom: 80px;
}
#notice .notice_block h2 {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
  padding: 10px;
  background: #1f2124;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #notice .notice_block h2 {
    font-size: 1.6rem;
  }
}
#notice .notice_block h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #FFECCE;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #notice .notice_block h3 {
    font-size: 1.5rem;
  }
}
#notice .notice_block ul {
  margin-bottom: 50px;
}
#notice .notice_block ul li {
  margin-bottom: 5px;
  font-size: 1.6rem;
  padding-left: 1em;
  position: relative;
  line-height: 1.6;
}
#notice .notice_block ul li::before {
  content: "■";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  #notice .notice_block ul li {
    font-size: 1.3rem;
  }
}
#notice .notice_block ul li em {
  color: #ff2828;
}
#notice .notice_block ul li.nodisc::before {
  display: none;
}

/*==================================================================
    #antiresale .leadbox
===================================================================*/
#antiresale main {
  color: #fff;
  padding-top: 70px;
}

#antiresale .antiresale {
  padding: 0px 0 80px;
}
#antiresale .antiresale ul {
  display: flex;
  flex-flow: column;
  padding: 50px;
  background-color: #1f2124;
  margin-bottom: 50px;
  border: 1px solid #414141;
}
@media screen and (max-width: 768px) {
  #antiresale .antiresale ul {
    padding: 30px;
    margin-bottom: 30px;
  }
}
#antiresale .antiresale ul li {
  padding-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #antiresale .antiresale ul li {
    font-size: 1.6rem;
    padding-bottom: 15px;
  }
}
#antiresale .antiresale ul li:last-child {
  padding-bottom: 0px;
}
#antiresale .antiresale ul li a {
  color: #fff;
  text-decoration: underline;
}

/*==================================================================
    #chart
===================================================================*/
/* -----------------------------------------------
    common
------------------------------------------------*/
#chart main {
  padding-top: 150px;
  padding-bottom: 110px;
  min-height: 880px;
}
@media screen and (max-width: 768px) {
  #chart main {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

#chart .container {
  max-width: calc(1150px + 10vw);
}

/*  chart-btnSelect
----------------------------*/
.chart-btnSelect {
  text-align: center;
  color: #fff;
  font-weight: bold;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  display: block;
  width: 197px;
}
@media screen and (max-width: 768px) {
  .chart-btnSelect {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .chart-btnSelect:hover {
    cursor: pointer;
  }
  .chart-btnSelect:hover img {
    transform: scale(0.9);
  }
}
.chart-btnSelect img {
  transition: transform 0.2s ease-out;
}
.chart-btnSelect_txt {
  font-size: 1.9rem;
  display: inline-block;
  margin-bottom: 0.8em;
  letter-spacing: 0.1em;
  transition: color 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .chart-btnSelect_txt {
    display: block;
    font-size: 1.6rem;
  }
}
.chart-btnSelect_fig {
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .chart-btnSelect_fig {
    display: inline-block;
  }
}
.chart-btnSelect_fig img {
  position: relative;
  z-index: 1;
}
.chart-btnSelect_fig::before {
  content: "";
  display: block;
  position: absolute;
  width: 108%;
  height: 108%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0.8);
  background-color: #766F4D;
  z-index: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.chart-btnSelect.-active .chart-btnSelect_txt {
  color: #A39D7C;
}
.chart-btnSelect.-active .chart-btnSelect_fig::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
  opacity: 0.8;
}

/*  btn-chart
----------------------------*/
.btn-chart {
  display: inline-block;
  padding: 1.5em 1em;
  width: 100%;
  max-width: 330px;
  border-radius: 2em;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-chart em {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease-out;
}
.btn-chart::before, .btn-chart::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2em;
  background-color: #000;
  opacity: 0.3;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s ease-out;
}
.btn-chart::before {
  background-color: #766F4D;
  transform: scale(1, 1);
  opacity: 1;
}
.btn-chart img {
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%) translateX(0%);
  display: inline-block;
  height: 0.6em;
  width: auto;
  transition: all 0.2s ease-out;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .btn-chart:hover {
    cursor: pointer;
  }
  .btn-chart:hover em {
    color: #fff;
  }
  .btn-chart:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .btn-chart:hover img {
    transform: translateY(-50%) translateX(50%);
  }
}
.btn-chart.-back img {
  right: auto;
  left: 2em;
  transform: translateY(-50%) rotateY(180deg);
}
@media (hover: hover) and (pointer: fine) {
  .btn-chart.-back:hover img {
    transform: translateY(-50%) translateX(-50%) rotateY(180deg);
  }
}
.btn-chart.-bdr {
  border: 1px solid #fff;
}
.btn-chart.-bdr::before {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-chart.-bdr:hover {
    border: 1px solid rgba(0, 0, 0, 0.3);
  }
}
.btn-chart.-disabled {
  opacity: 0.4;
}

/*  btn-chart02
----------------------------*/
.btn-chart02 {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
  padding-left: 1.5em;
}
.btn-chart02::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: auto;
  left: 0;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 200ms ease;
  transform: translateY(-30%);
  background-image: url("../img/chart/chart_icon_arw.svg");
}
@media screen and (min-width: 769px) {
  .btn-chart02:hover {
    cursor: pointer;
  }
  .btn-chart02:hover::after {
    animation: btn_chart02 0.2s;
  }
}

@keyframes btn_chart02 {
  from {
    transform: translateY(-30%) translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(-30%) translateX(-50%);
    opacity: 0;
  }
  51% {
    transform: translateY(-30%) translateX(50%);
    opacity: 0;
  }
  to {
    transform: translateY(-30%) translateX(0%);
    opacity: 1;
  }
}
/* -----------------------------------------------
    intro
------------------------------------------------*/
.chart-intro {
  text-align: center;
  color: #fff;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .chart-intro {
    margin-bottom: 40px;
  }
}
.chart-intro h1 {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .chart-intro h1 {
    font-size: 2rem;
  }
}
.chart-intro h1 small {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .chart-intro h1 small {
    font-size: 1.3rem;
  }
}

/* -----------------------------------------------
    chart-sec
    セクション共通
------------------------------------------------*/
.chart-sec {
  text-align: center;
}
.chart-sec_ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 3em;
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .chart-sec_ttl {
    font-size: 1.8rem;
  }
}
.chart-sec_ttl::before, .chart-sec_ttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5em;
  left: 0;
  width: calc(50% - 20px);
  height: 1px;
  background-color: #fff;
}
.chart-sec_ttl::after {
  left: auto;
  right: 0;
}
.chart-sec_ttl br {
  display: none;
}
@media screen and (max-width: 768px) {
  .chart-sec_ttl br {
    display: block;
  }
}
.chart-sec_ttl span {
  color: #A39D7C;
  position: relative;
  display: block;
}
.chart-sec_ttl span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5em;
  right: calc(50% - 20px);
  width: 2.5em;
  height: 1px;
  background-color: #fff;
  transform-origin: 100% 100%;
  transform: rotateZ(-20deg);
}
.chart-sec_list {
  margin-bottom: 40px;
}
.chart-sec_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .chart-sec_list ul {
    justify-content: flex-start;
    gap: 35px 20px;
  }
}
@media screen and (max-width: 768px) {
  .chart-sec_list ul li {
    width: calc(50% - 10px);
  }
}
.chart-sec_recommend {
  text-align: center;
  margin-bottom: 1em;
}
.chart-sec_recommend p {
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .chart-sec_recommend p {
    font-size: 1.4rem;
  }
}
.chart-sec_recommend p span {
  font-size: 3.1rem;
}
@media screen and (max-width: 768px) {
  .chart-sec_recommend p span {
    font-size: 2.4rem;
  }
}
.chart-sec_recommend p span small {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .chart-sec_recommend p span small {
    font-size: 1.4rem;
  }
}
.chart-sec_contents {
  text-align: left;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.chart-sec_contents .btn-chart02 {
  display: inline-block;
  margin-bottom: 1em;
}
.chart-sec_outro.-outro2 {
  padding-top: 1em;
}

/*  表示切り替え
----------------------------*/
.chart-sec {
  animation: chart_sec_hidden 0.8s ease-out;
}
.chart-sec.-hidden {
  opacity: 0;
  display: none;
}

@keyframes chart_sec_hidden {
  0% {
    opacity: 0;
    display: none;
  }
  1% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
/* -----------------------------------------------
    chart-productBox
------------------------------------------------*/
.chart-productBox {
  width: 100%;
  display: flex;
  background-color: #fff;
  padding: 4em 3em;
  border-radius: 10px;
  margin-bottom: 35px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .chart-productBox {
    align-items: start;
    flex-direction: column;
    padding: 2em;
  }
}
.chart-productBox_img {
  width: 35%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .chart-productBox_img {
    width: 100%;
  }
}
.chart-productBox_detail {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .chart-productBox_detail {
    width: 100%;
  }
}
.chart-productBox_detail_ttl {
  font-weight: bold;
  font-size: 1.9rem;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .chart-productBox_detail_ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .chart-productBox_detail_ttl br {
    display: none;
  }
}
.chart-productBox_detail_txt {
  margin-bottom: 1em;
}
.chart-productBox_detail_txt p {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .chart-productBox_detail_txt p {
    font-size: 1.3rem;
  }
}
.chart-productBox_detail_txt p span {
  font-size: 0.8em;
  opacity: 0.8;
}
.chart-productBox_detail_price {
  font-size: 3rem;
  font-weight: bold;
  color: #B2A356;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  .chart-productBox_detail_price {
    font-size: 2.4rem;
  }
}
.chart-productBox_detail_price small {
  font-weight: normal;
  font-size: 1.3rem;
}
.chart-productBox_detail .btn-chart::before {
  background-color: #485969;
}

#products {
  /* .faqlist */
  /* salonreport */
}
#products .faqlist {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products .faqlist {
    padding: 40px 0;
  }
}
#products .faqlist .qa {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 768px) {
  #products .faqlist .qa {
    margin-bottom: 0.2em;
  }
}
#products .faqlist-btn {
  width: 100%;
  max-width: 360px;
  margin: 0px auto 40px;
}
#products .faqlist .panel {
  margin-bottom: 30px;
}
#products .faqlist dl {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products .faqlist dl {
    margin-bottom: 10px;
  }
}
#products .faqlist dl dt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  padding: 20px 30px;
  background-color: #393e43;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #products .faqlist dl dt {
    padding: 15px 30px 15px 15px;
    font-size: 1.4rem;
  }
}
#products .faqlist dl dt:hover {
  opacity: 0.8;
}
#products .faqlist dl dt i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#products .faqlist dl dt i span {
  width: 20px;
  height: 1px;
  background-color: #707070;
  display: block;
}
@media screen and (max-width: 768px) {
  #products .faqlist dl dt i span {
    width: 12px;
  }
}
#products .faqlist dl dt i span:last-child {
  transform: rotate(90deg);
  margin-top: -1px;
}
#products .faqlist dl dt.active i span:last-child {
  display: none;
}
#products .faqlist dl dd {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 20px 30px;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 768px) {
  #products .faqlist dl dd {
    padding: 4vw;
  }
}
#products .faqlist dl dd p {
  color: #000;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #products .faqlist dl dd p {
    font-size: 1.3rem;
  }
}
#products .faqlist dl dd a {
  text-decoration: underline;
  color: #292f30;
}
#products .largebanner {
  padding: 20px 0 50px;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}
#products .largebanner img {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
#products .largebanner a:hover {
  opacity: 0.8;
}
#products .salonlist {
  padding: 80px 0;
  background-color: #585858;
}
@media screen and (max-width: 768px) {
  #products .salonlist {
    padding: 40px 0;
  }
}
#products .salonlist .panel {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products .salonlist .panel {
    flex-flow: column;
  }
}
#products .salonlist .salon-item {
  background-color: #fff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25);
  margin-bottom: 30px;
  margin-right: 30px;
  width: calc((100% - 60px) / 3);
  color: #000;
}
@media screen and (max-width: 768px) {
  #products .salonlist .salon-item {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px;
  }
}
#products .salonlist .salon-item:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  #products .salonlist .salon-item:nth-child(3n) {
    margin-right: auto;
  }
}
#products .salonlist .salon-img img {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
#products .salonlist .salon-txt {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  #products .salonlist .salon-txt {
    padding: 20px;
  }
}
#products .salonlist .salon-name {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}
#products .salonlist .salon-tag {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 10px;
}
#products .salonlist .salon-tag li {
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 1.2rem;
  border: 1px solid #707070;
  padding: 0.3em 0.5em;
  color: #707070;
}
#products .salonlist .salon-btn {
  max-width: 320px;
  width: 80%;
  margin: 0 auto;
}
#products .salonlist p {
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.5;
}
#products .usage {
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  #products .usage {
    padding: 40px 0 0;
  }
}
#products .usage-box {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products .usage-box {
    flex-flow: column;
  }
}
#products .usage-box .item {
  width: 50%;
  padding: 50px;
  background-color: #485969;
}
@media screen and (max-width: 768px) {
  #products .usage-box .item {
    width: 100%;
    padding: 30px 20px;
  }
}
#products .usage-box .item:last-child {
  background-color: #867D64;
}
@media screen and (max-width: 768px) {
  #products .usage-box .item:last-child {
    margin-top: 25px;
  }
}
#products .usage-box .item:last-child h4 span {
  color: #867D64;
}
#products .usage-box h4 {
  text-align: center;
  display: block;
}
#products .usage-box h4 span {
  background-color: #fff;
  height: 40px;
  padding: 0 1em;
  line-height: 40px;
  font-size: 2.3rem;
  color: #485969;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products .usage-box h4 span {
    font-size: 2rem;
  }
}
#products .usage-box h4 span::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 10px 0 0;
  border-color: #fff transparent transparent transparent;
}
#products .usage-box h4 span::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 10px 0 0;
  border-color: transparent #fff transparent transparent;
}
#products .usage-box .answer {
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}
#products .salonvoice {
  background-color: #575451;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  #products .salonvoice {
    padding: 30px 0;
  }
}
#products .salonvoice h3 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products .salonvoice h3 {
    font-size: 1.7rem;
  }
}
#products .salonvoice-box {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products .salonvoice-box {
    flex-flow: column;
  }
}
#products .salonvoice-box .img {
  width: 40%;
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  #products .salonvoice-box .img {
    max-width: 200px;
    margin-bottom: 15px;
  }
}
#products .salonvoice-box .txt {
  width: 60%;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  #products .salonvoice-box .txt {
    width: 100%;
    padding-left: 0;
  }
}
#products .salonvoice-box .txt .emphasis {
  text-decoration: underline;
  font-weight: bold;
}
#products .salonvoice-box .profile {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #products .salonvoice-box .profile {
    text-align: center;
    font-size: 1.7rem;
  }
}
#products .salonvoice-box .profile span {
  font-size: 1.4rem;
}
#products .salonvoice-box .profile em {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}
#products .highly {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products .highly {
    padding: 40px 0;
  }
}
#products .highly-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products .highly dl {
  margin-bottom: 30px;
  margin-right: 30px;
  width: calc((100% - 60px) / 3);
  padding: 30px;
  border: 2px solid #bcb192;
}
@media screen and (max-width: 768px) {
  #products .highly dl {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px;
  }
}
#products .highly dl:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  #products .highly dl:nth-child(3n) {
    margin-right: auto;
  }
}
#products .highly dl dt {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #bcb192;
}
#products .highly dl dt span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
#products .highly dl dd {
  line-height: 1.5;
  text-align: left;
}

/*    #products.vedahyperliftbrush    */
#products.vedahyperliftbrush .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedahyperliftbrush .tbBlock {
    display: block;
  }
}
#products.vedahyperliftbrush .attachment {
  padding: 0px 0 80px;
}
#products.vedahyperliftbrush .attachment .container {
  max-width: 1080px;
}
#products.vedahyperliftbrush .attachment .annotation {
  text-align: right;
  padding-right: 5px;
  font-size: 1.1rem;
  color: #fff;
}
#products.vedahyperliftbrush .attachment-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #products.vedahyperliftbrush .attachment-box {
    flex-flow: column;
  }
}
#products.vedahyperliftbrush .attachment-box:last-of-type {
  margin-bottom: 10px;
}
#products.vedahyperliftbrush .attachment-left {
  background-color: #454545;
  width: 43.75%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
}
@media screen and (max-width: 768px) {
  #products.vedahyperliftbrush .attachment-left {
    width: 100%;
    max-width: 640px;
    margin: 0px auto;
  }
}
#products.vedahyperliftbrush .attachment-left h3 {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
#products.vedahyperliftbrush .attachment-left h3 span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  display: block;
  padding-top: 5px;
  font-weight: normal;
}
#products.vedahyperliftbrush .attachment-left .img {
  max-width: 120px;
}
#products.vedahyperliftbrush .attachment-right {
  background-color: #6C6C6C;
  width: 54.1666666667%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 50px 9.375%;
}
@media screen and (max-width: 768px) {
  #products.vedahyperliftbrush .attachment-right {
    width: 100%;
    max-width: 640px;
    margin: 0px auto;
  }
}
#products.vedahyperliftbrush .attachment-right dl {
  margin-bottom: 20px;
  line-height: 1.6;
}
#products.vedahyperliftbrush .attachment-right dt {
  color: #FFECCE;
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
#products.vedahyperliftbrush .attachment-right dd {
  line-height: 1.8;
}
#products.vedahyperliftbrush .attachment-right ul {
  margin: 0px -5px;
  display: flex;
  flex-flow: row wrap;
}
#products.vedahyperliftbrush .attachment-right ul li {
  padding: 5px;
  width: 50%;
}
#products.vedahyperliftbrush .attachment-right ul li span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 30px;
  border: 1px solid #fff;
  border-radius: 18px;
}
#products.vedahyperliftbrush .function {
  background-color: #3E3E3E;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products.vedahyperliftbrush .function {
    padding: 60px 0;
  }
}
#products.vedahyperliftbrush .function .ttl {
  display: block;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
}
#products.vedahyperliftbrush .function .ttl span {
  font-size: 1.2rem;
  display: block;
}
#products.vedahyperliftbrush .function .list_box {
  margin-bottom: 80px;
}
#products.vedahyperliftbrush .function .list_box:last-child {
  margin-bottom: 0;
}
#products.vedahyperliftbrush .function .list_img .video-box {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
#products.vedahyperliftbrush .function .list_img .video-box video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
#products.vedahyperliftbrush .function h4 {
  margin-bottom: 20px;
  color: #FFECCE;
}

/*    #products.vedaliftdryer    */
#products.vedaliftdryer .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedaliftdryer .tbBlock {
    display: block;
  }
}
#products.vedaliftdryer h3.h03 {
  color: #ffecce;
  font-size: 2.8rem;
  flex-flow: row wrap;
  align-items: flex-start;
}
#products.vedaliftdryer h3.h03::after {
  width: 2em;
}
#products.vedaliftdryer h3.h03 sup {
  padding-left: 3px;
}
#products.vedaliftdryer .tapping {
  background-color: #484743;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer .tapping {
    padding: 40px 0;
  }
}
#products.vedaliftdryer .tapping-box {
  display: flex;
  align-items: center;
}
#products.vedaliftdryer .tapping .bg-white {
  background-color: #fff;
  padding: 20px;
}
#products.vedaliftdryer .tapping .tips {
  background-color: #25282b;
  padding: 40px;
  max-width: 1040px;
  margin: 40px auto 0;
}
#products.vedaliftdryer .tapping .annotation {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
#products.vedaliftdryer .keypoint {
  padding: 60px 0;
  background-color: #25282b;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer .keypoint {
    padding: 40px 0;
  }
}
#products.vedaliftdryer .keypoint.-mortor {
  background-color: #2c3238;
}
#products.vedaliftdryer .keypoint .number {
  width: 60px;
}
#products.vedaliftdryer .keypoint .number img {
  width: 100%;
}
#products.vedaliftdryer .keypoint .bg-white {
  background-color: #fff;
  padding: 20px;
}
#products.vedaliftdryer .keypoint .annotation {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
#products.vedaliftdryer .keypoint .annotation.adjust {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer .keypoint .annotation.adjust {
    text-align: left;
  }
}
#products.vedaliftdryer .keypoint .cream {
  color: #ffecce;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer .salonmodel {
    padding: 0 0 50px;
  }
}
#products.vedaliftdryer .salonmodel-item:last-of-type {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer .salonmodel-item:last-of-type {
    margin-top: 0;
  }
}
#products.vedaliftdryer .salonmodel dl dt sup {
  display: inline;
}
#products.vedaliftdryer .ttl01 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 30px;
}
#products.vedaliftdryer .ttl01_item {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer .ttl01_item {
    padding: 10px;
    margin-bottom: 0;
  }
}
#products.vedaliftdryer .ttl01 .caution {
  font-size: 1.2rem;
  padding: 0.5em 0 0;
  color: #e20c0c;
  text-align: right;
}

/*    #products.vedathestraight-previous    */
#products.vedathestraight-previous .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedathestraight-previous .tbBlock {
    display: block;
  }
}
#products.vedathestraight-previous .dpsdw {
  box-shadow: 0px 10px 15px #000;
}
#products.vedathestraight-previous .photo {
  max-width: 1100px;
  padding: 80px 0;
  width: 84vw;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .photo {
    padding: 20px 0;
    width: 100%;
  }
  #products.vedathestraight-previous .photo img {
    padding-left: 20px;
  }
}
#products.vedathestraight-previous .sec01 {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec01 {
    padding-bottom: 40px;
  }
}
#products.vedathestraight-previous .sec01 img {
  width: 100%;
}
#products.vedathestraight-previous .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec01_box {
    flex-flow: column wrap;
    padding: 0;
  }
}
#products.vedathestraight-previous .sec01 dl {
  margin: 2%;
  padding: 4%;
  max-width: 46%;
  background-color: #343d41;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec01 dl {
    max-width: 100%;
  }
}
#products.vedathestraight-previous .sec01 dt {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec01 dt {
    font-size: 1.7rem;
  }
}
#products.vedathestraight-previous .sec01 dd .annotation {
  display: block;
  margin-top: 10px;
  color: #fff;
}
#products.vedathestraight-previous .sec01 .imgW {
  width: 50px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec01 .imgW {
    width: 40px;
  }
}
#products.vedathestraight-previous .sec01_txt {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 10px 0 20px;
}
#products.vedathestraight-previous .sec01_img {
  margin: 0 auto;
}
#products.vedathestraight-previous .sec02 {
  padding: 80px 0 20px;
  background-color: #414141;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec02 {
    padding: 40px 0;
  }
}
#products.vedathestraight-previous .sec02_box {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec02_box {
    flex-flow: column wrap;
  }
}
#products.vedathestraight-previous .sec02 .iBoxV {
  width: 50%;
  max-width: 520px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec02 .iBoxV {
    width: 100%;
  }
}
#products.vedathestraight-previous .sec02 .iBoxV img {
  width: 100%;
}
#products.vedathestraight-previous .sec02 .iBoxV_title01 {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #FFECCE;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec02 .iBoxV_title01 {
    font-size: 1.9rem;
  }
}
#products.vedathestraight-previous .sec02 .iBoxV_title02 {
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec02 .iBoxV_title02 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec02 .iBoxV_txt02 {
    margin-bottom: 0;
  }
}
#products.vedathestraight-previous .sec02 h3 .line {
  background: linear-gradient(180deg, transparent 0% 60%, #7E785D 60% 100%);
}
#products.vedathestraight-previous .sec03 {
  background-color: #393E41;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec03 {
    padding: 40px 0;
  }
}
#products.vedathestraight-previous .sec03 h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec03 h3 {
    font-size: 1.8rem;
  }
}
#products.vedathestraight-previous .sec03 .list {
  margin-bottom: 0;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec03 .list {
    margin-top: 20px;
  }
}
#products.vedathestraight-previous .sec03 .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec03 .list_box {
    flex-flow: column wrap;
  }
}
#products.vedathestraight-previous .sec03 .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec03 .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products.vedathestraight-previous .sec03 .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec03 .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec03 .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products.vedathestraight-previous .sec03 .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products.vedathestraight-previous .sec03 .list_txt span {
  font-size: 1.6rem;
}
#products.vedathestraight-previous .sec04 {
  background-color: #807A72;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec04 {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec04 .list {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec04 .list_box {
    flex-flow: column-reverse wrap;
  }
}
#products.vedathestraight-previous .sec04 .list_img {
  max-width: 572px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .sec04 .list_img {
    margin-bottom: 40px;
  }
}
#products.vedathestraight-previous .sec04 .list_img img {
  width: 100%;
}
#products.vedathestraight-previous .sec04 .list_txt span {
  font-size: 1.4rem;
}
#products.vedathestraight-previous .sec04 .list_txt h4 em {
  font-size: 3rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
#products.vedathestraight-previous .evidence {
  background-color: #545555;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .evidence {
    padding: 50px 0;
  }
}
#products.vedathestraight-previous .evidence_block {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .evidence_block {
    flex-flow: column-reverse;
    margin-bottom: 50px;
  }
}
#products.vedathestraight-previous .evidence_block.-reverse {
  flex-flow: row-reverse wrap;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .evidence_block.-reverse {
    flex-flow: column-reverse;
  }
}
#products.vedathestraight-previous .evidence_block:last-child {
  margin-bottom: 0;
}
#products.vedathestraight-previous .evidence_block .img {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .evidence_block .img {
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    padding: 0px;
  }
}
#products.vedathestraight-previous .evidence_block .img .cut {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .evidence_block .img .cut {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
#products.vedathestraight-previous .evidence_block .img h4 {
  text-align: center;
}
#products.vedathestraight-previous .evidence_block .img h4 span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #fff;
  line-height: 36px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 20px;
}
#products.vedathestraight-previous .evidence_block .txt {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .evidence_block .txt {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 40px;
    padding: 0px;
  }
}
#products.vedathestraight-previous .evidence_block .txt h5 {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #FFECCE;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight-previous .evidence_block .txt h5 {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
#products.vedathestraight-previous .evidence_block .txt h5 em {
  font-weight: bold;
  font-size: 2.8rem;
}
#products.vedathestraight-previous .evidence_block .txt h5 span {
  display: inline-block;
  text-transform: uppercase;
  background-color: #000;
  color: #8B8B8B;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 1.6rem;
  padding: 0px 1em;
  line-height: 32px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
#products.vedathestraight-previous .arrange {
  padding-bottom: 80px;
}
#products.vedathestraight-previous .arrange h4 {
  color: #CFCBB0;
}

/*    #products.vedathestraight    */
#products.vedathestraight .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedathestraight .tbBlock {
    display: block;
  }
}
#products.vedathestraight .dpsdw {
  box-shadow: 0px 10px 15px #000;
}
#products.vedathestraight .photo {
  max-width: 1100px;
  padding: 80px 0;
  width: 84vw;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .photo {
    padding: 20px 0;
    width: 100%;
  }
  #products.vedathestraight .photo img {
    padding-left: 20px;
  }
}
#products.vedathestraight .sec01 {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec01 {
    padding-bottom: 40px;
  }
}
#products.vedathestraight .sec01 img {
  width: 100%;
}
#products.vedathestraight .sec01_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec01_box {
    flex-flow: column wrap;
    padding: 0;
  }
}
#products.vedathestraight .sec01 dl {
  margin: 2%;
  padding: 4%;
  max-width: 46%;
  background-color: #343d41;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec01 dl {
    max-width: 100%;
  }
}
#products.vedathestraight .sec01 dt {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec01 dt {
    font-size: 1.7rem;
  }
}
#products.vedathestraight .sec01 dd .annotation {
  display: block;
  margin-top: 10px;
  color: #fff;
}
#products.vedathestraight .sec01 .imgW {
  width: 50px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec01 .imgW {
    width: 40px;
  }
}
#products.vedathestraight .sec01_txt {
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 10px 0 20px;
}
#products.vedathestraight .sec01_img {
  margin: 0 auto;
}
#products.vedathestraight .sec02 {
  padding: 80px 0 20px;
  background-color: #414141;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec02 {
    padding: 40px 0;
  }
}
#products.vedathestraight .sec02_box {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec02_box {
    flex-flow: column wrap;
  }
}
#products.vedathestraight .sec02 .iBoxV {
  width: 50%;
  max-width: 520px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec02 .iBoxV {
    width: 100%;
  }
}
#products.vedathestraight .sec02 .iBoxV img {
  width: 100%;
}
#products.vedathestraight .sec02 .iBoxV_title01 {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #FFECCE;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec02 .iBoxV_title01 {
    font-size: 1.9rem;
  }
}
#products.vedathestraight .sec02 .iBoxV_title02 {
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec02 .iBoxV_title02 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec02 .iBoxV_txt02 {
    margin-bottom: 0;
  }
}
#products.vedathestraight .sec02 h3 .line {
  background: linear-gradient(180deg, transparent 0% 60%, #7E785D 60% 100%);
}
#products.vedathestraight .sec03 {
  background-color: #393E41;
  padding: 80px 0 120px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec03 {
    padding: 40px 0;
  }
}
#products.vedathestraight .sec03 h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec03 h3 {
    font-size: 1.8rem;
  }
}
#products.vedathestraight .sec03 .list {
  margin-bottom: 0;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec03 .list {
    margin-top: 20px;
  }
}
#products.vedathestraight .sec03 .list_box {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec03 .list_box {
    flex-flow: column wrap;
  }
}
#products.vedathestraight .sec03 .list_img {
  max-width: 280px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec03 .list_img {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
#products.vedathestraight .sec03 .list_txt {
  max-width: 630px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec03 .list_txt {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec03 .list_txt h4 {
    text-align: center;
    margin-bottom: 30px;
  }
}
#products.vedathestraight .sec03 .list_txt em {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}
#products.vedathestraight .sec03 .list_txt span {
  font-size: 1.6rem;
}
#products.vedathestraight .sec04 {
  background-color: #807A72;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec04 {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec04 .list {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec04 .list_box {
    flex-flow: column-reverse wrap;
  }
}
#products.vedathestraight .sec04 .list_img {
  max-width: 572px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .sec04 .list_img {
    margin-bottom: 40px;
  }
}
#products.vedathestraight .sec04 .list_img img {
  width: 100%;
}
#products.vedathestraight .sec04 .list_txt span {
  font-size: 1.4rem;
}
#products.vedathestraight .sec04 .list_txt h4 em {
  font-size: 3rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
#products.vedathestraight .evidence {
  background-color: #545555;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .evidence {
    padding: 50px 0;
  }
}
#products.vedathestraight .evidence_block {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .evidence_block {
    flex-flow: column-reverse;
    margin-bottom: 50px;
  }
}
#products.vedathestraight .evidence_block.-reverse {
  flex-flow: row-reverse wrap;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .evidence_block.-reverse {
    flex-flow: column-reverse;
  }
}
#products.vedathestraight .evidence_block:last-child {
  margin-bottom: 0;
}
#products.vedathestraight .evidence_block .img {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .evidence_block .img {
    width: 100%;
    max-width: 480px;
    margin: 0px auto;
    padding: 0px;
  }
}
#products.vedathestraight .evidence_block .img .cut {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .evidence_block .img .cut {
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
#products.vedathestraight .evidence_block .img h4 {
  text-align: center;
}
#products.vedathestraight .evidence_block .img h4 span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-top: 1px solid #fff;
  line-height: 36px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 20px;
}
#products.vedathestraight .evidence_block .txt {
  width: 50%;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .evidence_block .txt {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 40px;
    padding: 0px;
  }
}
#products.vedathestraight .evidence_block .txt h5 {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #FFECCE;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #products.vedathestraight .evidence_block .txt h5 {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}
#products.vedathestraight .evidence_block .txt h5 em {
  font-weight: bold;
  font-size: 2.8rem;
}
#products.vedathestraight .evidence_block .txt h5 span {
  display: inline-block;
  text-transform: uppercase;
  background-color: #000;
  color: #8B8B8B;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 1.6rem;
  padding: 0px 1em;
  line-height: 32px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
#products.vedathestraight .arrange {
  padding-bottom: 80px;
}
#products.vedathestraight .arrange h4 {
  color: #CFCBB0;
}

/*==================================================================
    #products.queen-lift-for-pro-tiara
===================================================================*/
#products.queen-lift-for-pro-tiara .list_box {
  margin: 20px auto 60px;
}
#products.queen-lift-for-pro-tiara .list_img.-imgW {
  max-width: 440px;
}
#products.queen-lift-for-pro-tiara .list_txt.-txtW {
  max-width: 100%;
}
#products.queen-lift-for-pro-tiara .features-list {
  padding: 0 0 80px;
}
#products.queen-lift-for-pro-tiara .features-list ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .features-list ul {
    flex-flow: column;
  }
}
#products.queen-lift-for-pro-tiara .features-list ul li {
  width: calc((100% - 30px) / 3);
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #909090;
  border: 1px solid #292f30;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-tiara .features-list ul li {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .features-list ul li {
    width: 100%;
    max-width: 640px;
    margin: 0px auto 10px;
  }
}
#products.queen-lift-for-pro-tiara .features-list ul li sup {
  display: contents;
}
#products.queen-lift-for-pro-tiara .features-list ul li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-tiara .features-list ul li:nth-child(3n) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .features-list ul li:nth-child(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-tiara .features-list ul li:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .features-list ul li:nth-child(even) {
    margin-right: auto;
  }
}
#products.queen-lift-for-pro-tiara .flow {
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .flow {
    padding: 40px 0 0;
  }
}
#products.queen-lift-for-pro-tiara .flow i {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  padding-right: 5px;
}
#products.queen-lift-for-pro-tiara .flow-start {
  padding-top: 30px;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #ffecce;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .flow-start {
    font-size: 1.8rem;
  }
}
#products.queen-lift-for-pro-tiara .flow-list {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .flow-list {
    flex-flow: column;
  }
}
#products.queen-lift-for-pro-tiara .flow-list li {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-tiara .flow-list li {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .flow-list li {
    width: 100%;
    max-width: 640px;
    margin: 0px auto 40px;
  }
}
#products.queen-lift-for-pro-tiara .flow-list li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-tiara .flow-list li:nth-child(3n) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .flow-list li:nth-child(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  #products.queen-lift-for-pro-tiara .flow-list li:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #products.queen-lift-for-pro-tiara .flow-list li:nth-child(even) {
    margin-right: auto;
  }
}
#products.queen-lift-for-pro-tiara .flow-img {
  margin-bottom: 20px;
  position: relative;
}
#products.queen-lift-for-pro-tiara .flow-img .partsname {
  display: block;
  margin-top: -10px;
  position: relative;
  line-height: 1.4;
}
#products.queen-lift-for-pro-tiara .flow-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #ffecce;
  margin-bottom: 10px;
}
#products.queen-lift-for-pro-tiara .features_txt h3 {
  text-align: center;
  margin-bottom: 40px;
}

/*    #products.vedaliftdryer    */
#products.vedaliftdryer-custom .tbBlock {
  display: none;
}
@media screen and (max-width: 991px) {
  #products.vedaliftdryer-custom .tbBlock {
    display: block;
  }
}
#products.vedaliftdryer-custom h3.h03 {
  color: #ffecce;
  font-size: 2.8rem;
  flex-flow: row wrap;
  align-items: flex-start;
}
#products.vedaliftdryer-custom h3.h03::after {
  width: 2em;
}
#products.vedaliftdryer-custom h3.h03 sup {
  padding-left: 3px;
}
#products.vedaliftdryer-custom .tapping {
  background-color: #484743;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .tapping {
    padding: 40px 0;
  }
}
#products.vedaliftdryer-custom .tapping-box {
  display: flex;
  align-items: center;
}
#products.vedaliftdryer-custom .tapping .bg-white {
  background-color: #fff;
  padding: 20px;
}
#products.vedaliftdryer-custom .tapping .tips {
  background-color: #25282b;
  padding: 40px;
  max-width: 1040px;
  margin: 40px auto 0;
}
#products.vedaliftdryer-custom .tapping .annotation {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
#products.vedaliftdryer-custom .keypoint {
  padding: 60px 0;
  background-color: #25282b;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .keypoint {
    padding: 40px 0;
  }
}
#products.vedaliftdryer-custom .keypoint.-mortor {
  background-color: #2c3238;
}
#products.vedaliftdryer-custom .keypoint .number {
  width: 60px;
}
#products.vedaliftdryer-custom .keypoint .number img {
  width: 100%;
}
#products.vedaliftdryer-custom .keypoint .bg-white {
  background-color: #fff;
  padding: 20px;
}
#products.vedaliftdryer-custom .keypoint .annotation {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
#products.vedaliftdryer-custom .keypoint .annotation.adjust {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .keypoint .annotation.adjust {
    text-align: left;
  }
}
#products.vedaliftdryer-custom .keypoint .cream {
  color: #ffecce;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .salonmodel {
    padding: 0 0 50px;
  }
}
#products.vedaliftdryer-custom .salonmodel-item:last-of-type {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .salonmodel-item:last-of-type {
    margin-top: 0;
  }
}
#products.vedaliftdryer-custom .salonmodel dl dt sup {
  display: inline;
}
#products.vedaliftdryer-custom .ttl01 {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 30px;
}
#products.vedaliftdryer-custom .ttl01_item {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .ttl01_item {
    padding: 10px;
    margin-bottom: 0;
  }
}
#products.vedaliftdryer-custom .ttl01 .caution {
  font-size: 1.2rem;
  padding: 0.5em 0 0;
  color: #e20c0c;
  text-align: right;
}
#products.vedaliftdryer-custom .gold {
  color: #ffecce;
}
#products.vedaliftdryer-custom .attachment-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products.vedaliftdryer-custom .attachment-list .item {
  width: calc((100% - 50px) / 3);
  max-width: 260px;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .attachment-list .item {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 20px;
  }
}
#products.vedaliftdryer-custom .attachment-list .item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products.vedaliftdryer-custom .attachment-list .item:last-child {
    margin-right: auto;
  }
}
#products.vedaliftdryer-custom .attachment-list .item dl {
  text-align: center;
  margin-bottom: 20px;
}
#products.vedaliftdryer-custom .attachment-list .item dt {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
#products.vedaliftdryer-custom .attachment-list .item dd {
  font-size: clamp(2rem, 2vw, 1.8rem);
  font-weight: bold;
}
#products.vedaliftdryer-custom .attachment-list .item dd span {
  display: block;
  margin-top: 5px;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
}
#products.vedaliftdryer-custom .attachment-list .item p {
  text-align: center;
}
#products.vedaliftdryer-custom .attachment-list .annotation {
  font-size: 1.2rem;
  margin-top: 5px;
  color: #fff;
}