@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%;
  font-weight: normal;
}

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

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

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

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.4rem;
  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;
  width: 100%;
  padding: 1em 1.2em;
  border: 1px solid #d9d9d9;
  background: #fff;
  font-weight: normal;
}

/* ======= 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: 768px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .spNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .tbNone {
    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;
}

/* ------------------------------------------------------------------
  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: #3b3b3b;
  margin-left: 1em;
  text-indent: -1em;
}

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

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

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

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

/*  font-size+line-height
---------------------------------------------*/
/*  color
---------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.g1 {
  color: #3b3b3b;
}

.g2 {
  color: #a3a3a3;
}

.g3 {
  color: #393939;
}

.g4 {
  color: #c6c6c6;
}

.g5 {
  color: #606060;
}

.g6 {
  color: #707070;
}

.c1 {
  color: #1e262e;
}

.c2 {
  color: #6e8396;
}

.c3 {
  color: #677e93;
}

.c4 {
  color: #485969;
}

.c5 {
  color: #33393e;
}

.c6 {
  color: #e0c332;
}

.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.4rem;
}

.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: "Roboto", sans-serif !important;
  font-size: 1.4rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: #f8f8f8;
  letter-spacing: 0.01em !important;
  word-break: unset !important;
}
@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.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

/* ======= 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 !important;
}
@media screen and (max-width: 768px) {
  .annotation {
    font-size: 1.1rem !important;
  }
}

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

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

/*  a img
---------------------------------------------*/
a img {
  background-color: rgba(255, 255, 255, 0.01);
  transition: all 200ms ease;
}

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

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

/*  .link - decoration underline
---------------------------------------------*/
a.link {
  color: #1e262e;
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: #1e262e;
}

/* -----------------------------------------------
    list - ul,ol
------------------------------------------------*/
/*==================================================================
    .ul .wrapper
===================================================================*/
.ul .wrapper {
  background-image: url(../img/common/bg_ul_attach.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
  background-attachment: fixed;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .ul .wrapper {
    margin-top: 40px;
    padding-top: 0px;
    background: none;
    position: relative;
  }
  .ul .wrapper::before {
    display: block;
    content: "";
    width: 100vw;
    height: 100vh;
    background-image: url(../img/common/bg_ul_attach.png);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.ul .wrapper main {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

/*==================================================================
    layout
===================================================================*/
/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1130px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.container.-large {
  max-width: 1230px;
}
.container.-small {
  max-width: 910px;
}
.container.-min {
  max-width: 830px;
}
.container.-fluid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

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

/*==================================================================
    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 #1e262e;
  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 #1e262e;
}

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: 45%;
}

@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
---------------------------------------------*/
/* ======= 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: #6e8396;
  border: 1px solid #6e8396;
}

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: #6e8396;
  border-radius: 100%;
}

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

/*  select
---------------------------------------------*/
.select {
  width: 100%;
  border: solid 1px #000;
  position: relative;
  overflow: hidden;
}
.select select {
  width: 100%;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  padding: 0.8em 20px 0.8em 1em;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
}
.select select::-ms-expand {
  display: none;
}
.select::before {
  display: block;
  content: "";
  width: 10px;
  height: 6px;
  background-image: url(../img/common/icon_arrow_03.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 12px;
}

/*  datepicker
---------------------------------------------*/
input[type=text].datepicker {
  width: 45%;
  background-image: url(../img/common/icon_date.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
}
@media screen and (max-width: 768px) {
  input[type=text].datepicker {
    width: 100%;
  }
}

/*==================================================================
    .h01
===================================================================*/
.h01 {
  font-size: 3.8rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
  padding-bottom: 40px;
  margin-bottom: 55px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .h01 {
    font-size: 2rem;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.h01 span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .h01 span {
    font-size: 1rem;
  }
}
.h01::before {
  display: block;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .h01::before {
    height: 25px;
  }
}
.h01.-pt01 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .h01.-pt01 {
    font-size: 2.2rem;
  }
}
.h01.-pt02 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .h01.-pt02 {
    font-size: 2.8rem;
  }
}
.h01.-pt03 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .h01.-pt03 {
    font-size: 2rem;
  }
}
.h01.-pt04 {
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .h01.-pt04 {
    font-size: 1.8rem;
  }
}
.h01.-w {
  color: #fff;
}
.h01.-w::before {
  background-color: #fff;
}
.h01.-nb {
  padding-bottom: 0;
}
.h01.-nb::before {
  display: none;
}
.h01 + p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .h01 + p {
    font-size: 1.6rem;
  }
}

/*==================================================================
    .hover
===================================================================*/
a.hover {
  display: block;
  position: relative;
}
a.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;
  z-index: 2;
}
a.hover:hover {
  opacity: 1;
}
a.hover:hover::before {
  width: 100%;
}
a.hover.-hover01::before {
  background-color: rgba(0, 0, 0, 0.2);
}
a.hover.-hover02::before {
  background-color: rgba(255, 255, 255, 0.6);
}

/*==================================================================
    .btn01
===================================================================*/
.btn01 {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #1e262e;
  background-image: url(../img/common/icon_arrow_01.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
  transition: all 200ms ease;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn01:disabled {
  background-color: #ccc;
  cursor: default;
}
.btn01:disabled:hover {
  background-position: top 50% right 15px;
}
@media screen and (max-width: 768px) {
  .btn01 {
    height: 40px;
    line-height: 40px;
    font-size: 1.4rem;
  }
}
.btn01:hover {
  background-position: top 50% right 10px;
}
.btn01.-pt01 {
  height: 40px;
  line-height: 38px;
  color: #000;
  text-align: left;
  border: solid 1px #000;
  padding: 0 20px;
  background-color: #fff;
  background-image: url(../img/common/icon_arrow_02.svg);
  background-position: top 50% right 10px;
}
@media screen and (max-width: 768px) {
  .btn01.-pt01 {
    text-align: center;
    padding: 0;
  }
}
.btn01.-pt01:hover {
  background-position: top 50% right 5px;
}
.btn01.-back {
  background-color: #707070 !important;
  background-image: url(../img/common/icon_arrow_01_re.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 15px;
}
.btn01.-back:hover {
  background-position: top 50% left 10px;
}

/*==================================================================
    .btn02
===================================================================*/
.btn02 {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  color: #000;
  text-align: center;
  background-color: #fff;
  background-image: url(../img/common/icon_arrow_02.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
  transition: all 200ms ease;
  border: 1px solid #1e262e;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .btn02 {
    height: 40px;
    line-height: 40px;
    font-size: 1.4rem;
  }
}
.btn02:hover {
  background-position: top 50% right 10px;
}

/*==================================================================
    .pankuz
===================================================================*/
.pankuz {
  padding: 50px 0 35px;
}
@media screen and (max-width: 768px) {
  .pankuz {
    display: none;
  }
}
.pankuz_inner ul {
  display: flex;
  flex-flow: row nowrap;
  font-size: 1.2rem;
  line-height: 1.5;
}
.pankuz_inner ul li {
  padding-right: 20px;
  margin-right: 10px;
  position: relative;
}
.pankuz_inner ul li::before, .pankuz_inner ul li::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.pankuz_inner ul li::after {
  content: "／";
  right: 0;
}
.pankuz_inner ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.pankuz_inner ul li:last-child::after {
  display: none;
}
.pankuz_inner ul li a {
  color: #000;
}

/*==================================================================
    .pagenation
===================================================================*/
.pagenation {
  text-align: center;
}
.pagenation__inner {
  display: inline-block;
}
.pagenation__inner a,
.pagenation__inner span {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 46px;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  border-radius: 24px;
  border: solid 1px #707070;
  color: #000;
  background-color: #fff;
  margin: 0 4px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.pagenation__inner a.prev, .pagenation__inner a.next {
  background: #000;
  border: solid 1px #000;
  color: #fff;
  position: relative;
}
.pagenation__inner a:hover {
  opacity: 0.6;
}
.pagenation__inner span.current {
  border: solid 1px #000;
  color: #fff;
  background-color: #000;
}
.pagenation__inner span.dots {
  background: none;
  border: none;
  color: #000;
  margin: 0;
  width: 1em;
  vertical-align: top;
}

.pageLink {
  padding: 70px 0 10px;
}
@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: 60px 10px 0;
  background-repeat: no-repeat;
  background-position: 50% 0;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000;
  position: relative;
}
.pageLink .links__prev a {
  background-image: url(../img/common/icon_prev.svg);
}
.pageLink .links__prev a:hover {
  background-position: 20% 0;
}
.pageLink .links__next a {
  background-image: url(../img/common/icon_next.svg);
}
.pageLink .links__next a:hover {
  background-position: 80% 0;
}
.pageLink .links__list {
  padding: 0 170px;
}
@media screen and (max-width: 768px) {
  .pageLink .links__list {
    padding: 0 20px;
  }
}
.pageLink .links__list a::before {
  display: block;
  content: "";
  width: 49px;
  height: 26px;
  background-image: url(../img/common/icon_list.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 200ms ease;
}
.pageLink .links__list a:hover::before {
  transform: translate(-50%, 0) rotate(180deg);
}

/*==================================================================
    .mainView
===================================================================*/
.mainView {
  width: 100%;
  padding-top: calc(90px + 2.3vw);
  padding-bottom: 8.5vw;
  background-color: #f8f8f8;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainView {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}
.mainView_inner {
  width: 100%;
  max-width: 1920px;
  padding: 0 3vw;
}
@media screen and (max-width: 768px) {
  .mainView_inner {
    max-width: 100%;
    padding: 0px;
  }
}
.mainView_main {
  width: 72.6vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mainView_main {
    width: 100vw;
  }
}
.mainView_main img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainView_main img {
    height: 100%;
  }
}
.mainView_sub {
  width: 100%;
  height: calc(100% - 5.5vw);
}
.mainView_sub span {
  display: block;
  height: 30vw;
  position: absolute;
  bottom: 5.5vw;
  right: 0;
}
.mainView_sub span:nth-of-type(1) {
  width: 16.3vw;
  background-color: #393939;
}
@media screen and (max-width: 768px) {
  .mainView_sub span:nth-of-type(1) {
    width: 6.3vw;
  }
}
.mainView_sub span:nth-of-type(2) {
  width: 70.3vw;
  background-color: #c6c6c6;
  right: 16.3vw;
}
@media screen and (max-width: 768px) {
  .mainView_sub span:nth-of-type(2) {
    width: 80.3vw;
    right: 6.3vw;
  }
}
.mainView_catch {
  position: absolute;
  right: 9.7vw;
  bottom: 18vw;
  z-index: 20;
}
@media screen and (max-width: 1000px) {
  .mainView_catch {
    right: 8.7vw;
  }
}
@media screen and (max-width: 768px) {
  .mainView_catch {
    text-align: center;
    right: 0;
    top: 120px;
    padding: 0 8vw;
  }
}
@media screen and (max-width: 480px) {
  .mainView_catch {
    top: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .mainView_catch img {
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .mainView_catch img {
    max-width: 45vw;
  }
}
.mainView.-ul {
  padding: 0px;
}

/*==================================================================
    .subnav
===================================================================*/
.subnav {
  padding: 0 0 45px;
}
@media screen and (max-width: 768px) {
  .subnav {
    padding: 0 8vw 40px;
  }
}
.subnav_list {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  .subnav_list {
    display: block;
  }
}
.subnav_list:hover li a {
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .subnav_list:hover li a {
    opacity: 1;
  }
}
.subnav_item {
  width: 33.3333333333%;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .subnav_item {
    width: 100%;
    margin-bottom: 15px;
  }
  .subnav_item:last-child {
    margin-bottom: 0;
  }
}
.subnav_item a {
  display: block;
  color: #000;
  text-align: center;
}
.subnav_item a dt {
  margin-bottom: 15px;
  position: relative;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .subnav_item a dt {
    margin-bottom: 10px;
  }
}
.subnav_item a dt img {
  width: 100%;
}
.subnav_item a dd {
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  padding-top: 20px;
  position: relative;
  transition: all 200ms ease;
}
.subnav_item a dd::before {
  display: block;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #707070;
  position: absolute;
  top: 0;
  left: 50%;
  transition: all 200ms ease;
}
.subnav_item a:hover {
  opacity: 1 !important;
}
.subnav_item a:hover dt {
  transform: scale(1.05);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .subnav_item a:hover dt {
    transform: scale(1);
  }
}
.subnav_item a:hover dd {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .subnav_item a:hover dd {
    transform: scale(1);
  }
}
.subnav_item a:hover dd::before {
  top: -5px;
}

/* 45th banner
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.banner-45th-block {
  margin: 0px auto;
  padding: 100px 20px;
  max-width: 610px;
}
@media screen and (min-width: 768px) {
  .banner-45th-block {
    display: flex;
    flex-flow: row nowrap;
    padding: 100px 0px;
    max-width: 1100px;
  }
}
.banner-45th-block a {
  font-size: 1.3rem;
  transition: 0.4s all;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .banner-45th-block a {
    margin-bottom: 0;
    padding: 15px;
  }
}
.banner-45th-block a:hover {
  opacity: 0.7;
  transition: 0.4s all;
}

.slug-history #js-spacer-footer-top {
  margin-top: -89px;
}
@media screen and (min-width: 768px) {
  .slug-history #js-spacer-footer-top {
    margin-top: -100px;
  }
}

.wrapper-index-news.-upper {
  max-width: 1100px !important;
}

/*==================================================================
.accessmodal
===================================================================*/
.accessmodal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
}
.accessmodal.close {
  display: none;
}
.accessmodal.active {
  display: block;
}
.accessmodal .btn-modal-close {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0px;
  top: -35px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.accessmodal .btn-modal-close:hover {
  opacity: 0.7;
}
.accessmodal .btn-modal-close::before, .accessmodal .btn-modal-close::after {
  position: absolute;
  top: 15px;
  right: 0;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.accessmodal .btn-modal-close::after {
  transform: rotate(-45deg);
}
.accessmodal .modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85vw;
  max-width: 640px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .accessmodal .modal_content {
    width: 90%;
    max-width: 1600px;
  }
}
.accessmodal .modal_content img {
  border-radius: 15px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
}
.accessmodal .modal-image {
  border-radius: 15px;
}
.accessmodal .modal-image a {
  display: block;
  transition: all 0.4s;
  cursor: pointer;
}
.accessmodal .modal-image a:hover {
  opacity: 0.7;
  transition: all 0.4s;
}

/*==================================================================
    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 fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

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

/*==================================================================
    .effect01
===================================================================*/
.effect01 {
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.effect01 span {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}
.effect01 span:nth-of-type(1) {
  background-color: white;
  z-index: 3;
  animation-name: effect-a;
}
.effect01 span:nth-of-type(2) {
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  animation-name: effect-b;
}

@keyframes effect-a {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes effect-b {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/*==================================================================
    .puyon
===================================================================*/
.puyon {
  animation: puyon 2s linear 0s infinite;
}

@keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/*==================================================================
    .headline01
===================================================================*/
.headline01 {
  animation: line 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s 1 alternate forwards running;
}
.headline01::before {
  transform-origin: 0 0;
  animation: line 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s 1 alternate forwards running;
}

@keyframes line {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
/*==================================================================
    #top .product
===================================================================*/
#top .product {
  padding: 70px 0;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  #top .product {
    padding: 40px 0;
  }
}
#top .product .h01 {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  #top .product .h01 {
    margin-bottom: 30px;
  }
}
#top .product_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -10px 50px;
}
@media screen and (max-width: 768px) {
  #top .product_list {
    margin: 0px -5px 50px;
  }
}
#top .product_item {
  width: 25%;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #top .product_item {
    width: 50%;
    padding: 5px;
    margin-bottom: 20px;
  }
}
#top .product_item a {
  display: block;
  color: #000;
}
#top .product_item a dt {
  margin-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .product_item a dt {
    margin-bottom: 15px;
  }
}
#top .product_item a dt img {
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.16);
}
#top .product_item a dt::before, #top .product_item a dt::after {
  display: block;
  position: absolute;
  transition: all 200ms ease;
  transform-origin: 0 0;
}
#top .product_item a dt::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 2;
  transform: scaleX(0);
}
#top .product_item a dt::after {
  content: "MORE";
  width: 130px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 38px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  border: solid 1px #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  z-index: 3;
}
#top .product_item a dd {
  font-size: 2rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #top .product_item a dd {
    font-size: 1.4rem;
  }
}
#top .product_item a:hover dt::before {
  transform: scale(1);
}
#top .product_item a:hover dt::after {
  transform: translate(-50%, -50%) scaleX(1);
}
#top .product_btn {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .product_btn {
    width: 80%;
  }
}

/*==================================================================
    #top .topics
===================================================================*/
#top .topics {
  padding: 90px 0 60px;
  background-image: url(../img/common/bg_ul_attach.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% -80px;
}
@media screen and (max-width: 768px) {
  #top .topics {
    padding: 50px 0;
    background-position: 50% -30px;
  }
}
#top .topics_list {
  margin-bottom: 25px;
}
#top .topics_item {
  position: relative;
  margin-bottom: 5px;
}
#top .topics_item:nth-child(odd) {
  background-color: #f8f8f8;
}
#top .topics_item:nth-child(even) {
  background-color: #fff;
}
#top .topics_item a {
  display: block;
  padding: 20px;
}
#top .topics_item a:hover::before {
  transition: all 0.8s ease;
}
#top .topics_item a .date {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  color: #3b3b3b;
  margin-bottom: 0.8em;
}
#top .topics_item a dt {
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #top .topics_item a dt {
    font-size: 1.5rem;
  }
}
#top .topics_item a dd {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #000;
}
#top .topics_item ul {
  display: flex;
  flex-flow: row nowrap;
  position: absolute;
  top: 15px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  #top .topics_item ul {
    top: 10px;
    right: 10px;
    justify-content: flex-end;
  }
}
#top .topics_item ul li {
  min-width: 80px;
  padding: 0 1em;
  height: 24px;
  line-height: 24px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #3b3b3b;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #top .topics_item ul li {
    min-width: 100%;
    height: 18px;
    line-height: 18px;
  }
}
#top .topics_item ul li:last-child {
  margin-right: 0;
}
#top .topics_none {
  font-size: 1.8rem;
  padding: 2rem 0px 4rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
#top .topics_btn {
  width: 130px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .topics_btn {
    width: 80%;
  }
}

/*==================================================================
    #top .brand
===================================================================*/
#top .brand {
  padding: 90px 0 60px;
}
@media screen and (max-width: 768px) {
  #top .brand {
    padding: 50px 0px 0px;
  }
}
#top .brand_list {
  margin: 0px -10px;
}
@media screen and (max-width: 768px) {
  #top .brand_list {
    margin: 0px;
  }
}
#top .brand_item {
  width: 50%;
  padding: 10px;
  margin: 0px auto;
}
@media screen and (max-width: 1000px) {
  #top .brand_item {
    width: 80%;
    padding: 0px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top .brand_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 20px;
  }
}
#top .brand_item a {
  display: block;
  border: 1px solid #e3e3e3;
}
#top .brand_item a.noaction {
  pointer-events: none;
}
#top .brand_item a img {
  width: 100%;
}
#top .brand_item a.hover::before {
  transition: all 0.5s ease;
}

/*==================================================================
    #top .faq
===================================================================*/
#top .faq {
  padding: 100px 0 0;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  #top .faq {
    padding: 50px 0 0;
  }
}
#top .faq_list {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #top .faq_list {
    display: block;
  }
}
#top .faq_item {
  width: 50%;
  height: 20vw;
}
@media screen and (max-width: 768px) {
  #top .faq_item {
    width: 100%;
    height: 40vw;
  }
}
#top .faq_item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#top .faq_item a:hover::before {
  transition: all 0.8s ease;
}
#top .faq_item a .bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
  transition: all 0.8s ease;
}
#top .faq_item a span {
  display: block;
  width: 290px;
  height: 46px;
  background-color: #fff;
  border: solid 2px #000;
  line-height: 42px;
  font-style: 1.9rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 200ms ease;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  #top .faq_item a span {
    width: 200px;
    height: 40px;
    line-height: 36px;
    font-style: 1.5rem;
  }
}
#top .faq_item a:hover .bg {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}
#top .faq_item a:hover span {
  background-color: #000;
  color: #fff;
}
#top .faq_item:nth-child(1) a .bg {
  background-image: url(../img/top/faq_bg_01@2x.jpg);
}
#top .faq_item:nth-child(2) a .bg {
  background-image: url(../img/top/faq_bg_02@2x.jpg);
}

/*==================================================================
    #products .products
===================================================================*/
#products .products {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #products .products {
    padding: 0 0 60px;
  }
}
#products .products_cat {
  background-color: #000;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #products .products_cat {
    background-color: #272727;
    width: 100%;
    margin-bottom: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    transition: all 200ms ease;
    transform: translateY(100%);
  }
  #products .products_cat.open {
    transform: translateY(0);
  }
}
#products .products_cat span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 1px #6e8396;
  background-color: #fff;
  margin-right: 10px;
  position: relative;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #products .products_cat span {
    width: 24px;
    height: 24px;
    border: solid 1px #fff;
    background-color: transparent;
  }
}
#products .products_cat span::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../img/common/icon_check_w.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #products .products_cat span::before {
    width: 14px;
    height: 14px;
    background-image: url(../img/common/icon_check_b.svg);
  }
}
#products .products_cat ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 50px 75px 30px;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul {
    display: block;
    padding: 0;
  }
}
#products .products_cat ul li {
  width: 20%;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul li {
    width: 100%;
    padding: 0px;
  }
}
#products .products_cat ul li dl {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul li dl {
    text-align: left;
  }
}
#products .products_cat ul li dt {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul li dt {
    display: none;
  }
}
#products .products_cat ul li dt img {
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.16);
}
#products .products_cat ul li dd {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul li dd {
    justify-content: flex-start;
  }
}
#products .products_cat ul li dd em {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul li dd em {
    font-size: 1.5rem;
  }
}
#products .products_cat ul li a {
  display: block;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul li a {
    width: 100%;
    padding: 4vw 6.6vw;
    position: relative;
  }
  #products .products_cat ul li a::before, #products .products_cat ul li a::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
  }
  #products .products_cat ul li a::before {
    background-color: #000;
    top: 1px;
  }
  #products .products_cat ul li a::after {
    background-color: rgba(255, 255, 255, 0.06);
    top: 0;
  }
}
#products .products_cat ul li a:hover span, #products .products_cat ul li a.active span {
  background-color: #6e8396;
}
@media screen and (max-width: 768px) {
  #products .products_cat ul li a:hover span, #products .products_cat ul li a.active span {
    background-color: #fff;
  }
}
#products .products_cat ul li a:hover span::before, #products .products_cat ul li a.active span::before {
  transform: translate(-50%, -50%) scale(1);
}
#products .products_cat .all-btn {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  #products .products_cat .all-btn {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
#products .products_cat .all-btn em {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products .products_cat .all-btn em {
    font-size: 1.5rem;
  }
}
#products .products_cat .all-btn a {
  display: block;
  width: 110px;
  padding: 10px 25px;
  border: solid 1px #707070;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products .products_cat .all-btn a {
    width: 100%;
    padding: 4vw 6.6vw;
    border: none;
    background-color: transparent;
    color: #fff;
    justify-content: flex-start;
  }
}
#products .products_cat .all-btn a:hover span, #products .products_cat .all-btn a.active span {
  background-color: #6e8396;
}
@media screen and (max-width: 768px) {
  #products .products_cat .all-btn a:hover span, #products .products_cat .all-btn a.active span {
    background-color: #fff;
  }
}
#products .products_cat .all-btn a:hover span::before, #products .products_cat .all-btn a.active span::before {
  transform: translate(-50%, -50%) scale(1);
}
#products .products_cat .close {
  display: none;
}
@media screen and (max-width: 768px) {
  #products .products_cat .close {
    display: block;
    position: absolute;
    top: 4vw;
    right: 4vw;
  }
}
#products .products_overlay {
  display: none;
}
@media screen and (max-width: 768px) {
  #products .products_overlay {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    transition: all 200ms ease;
    transform: scale(0);
  }
  #products .products_overlay.open {
    transform: scale(1);
  }
}
#products .products_search {
  display: none;
}
@media screen and (max-width: 768px) {
  #products .products_search {
    display: block;
    position: fixed;
    right: 1vw;
    bottom: 80px;
    z-index: 99;
  }
  #products .products_search dl {
    text-align: center;
  }
  #products .products_search dl dd {
    font-size: 1.4rem;
    font-family: "Roboto Condensed", sans-serif;
    margin-top: -0.8em;
  }
}
#products .products_list {
  overflow: hidden;
}
#products .products_list ul {
  display: flex;
  flex-flow: row wrap;
}
#products .products_list ul li {
  width: 25%;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #products .products_list ul li {
    width: 50%;
    padding: 5px;
  }
}
#products .products_list ul li a {
  display: block;
  color: #000;
}
#products .products_list ul li a dl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #products .products_list ul li a dl {
    margin-bottom: 30px;
  }
}
#products .products_list ul li a dt {
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products .products_list ul li a dt {
    margin-bottom: 7px;
  }
}
#products .products_list ul li a dt img {
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.16);
}
#products .products_list ul li a dt::before, #products .products_list ul li a dt::after {
  display: block;
  position: absolute;
  transition: all 200ms ease;
  transform-origin: 0 0;
}
#products .products_list ul li a dt::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(103, 126, 147, 0.7);
  top: 0;
  left: 0;
  z-index: 2;
  transform: scaleX(0);
}
#products .products_list ul li a dt::after {
  content: "MORE";
  width: 130px;
  height: 40px;
  font-size: 1.5rem;
  line-height: 38px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  border: solid 1px #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  z-index: 3;
}
#products .products_list ul li a dd {
  font-size: 1.5rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products .products_list ul li a dd {
    font-size: 1.3rem;
  }
}
#products .products_list ul li a:hover dt::before {
  transform: scale(1);
}
#products .products_list ul li a:hover dt::after {
  transform: translate(-50%, -50%) scaleX(1);
}

/*==================================================================
    #products-detail .lead
===================================================================*/
#products-detail .lead_upper {
  padding: 0 0 70px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_upper {
    flex-flow: column-reverse nowrap;
  }
}
#products-detail .lead_outline {
  width: 57.2%;
  padding: 0 4.5% 0 10%;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_outline {
    width: 100%;
    padding: 0 5.3vw;
  }
}
#products-detail .lead_outline .ttl {
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.4em;
  letter-spacing: 0em !important;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_outline .ttl {
    font-size: 3.2rem;
    text-align: center;
  }
}
#products-detail .lead_outline .ttl span {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 5px;
}
#products-detail .lead_outline p {
  font-family: "Roboto", sans-serif;
}
#products-detail .lead_outline p.txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_outline p.txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
#products-detail .lead_outline p.txt em {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_outline p.txt em {
    font-size: 1.8rem;
  }
}
#products-detail .lead_outline p.caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_outline p.caution {
    font-size: 1rem;
  }
}
#products-detail .lead_products {
  width: 42.8%;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_products {
    width: 100%;
    padding: 0 16.5vw;
    margin-bottom: 20px;
  }
}
#products-detail .lead_products img {
  max-width: 375px;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_products img {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .lead_hero {
    width: 100%;
    padding-top: 101vw;
    position: relative;
    overflow: hidden;
  }
}
#products-detail .lead_hero img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_hero img {
    width: auto;
    height: 101vw;
    max-width: inherit;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#products-detail .lead_under {
  padding: 70px 0 50px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_under {
    padding: 8vw 8vw 5.3vw;
  }
}
#products-detail .lead_under .container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#products-detail .lead_under .container:last-child {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_under .container {
    display: block;
    padding: 0;
  }
}
#products-detail .lead_award {
  width: 50%;
  padding: 0 3.8% 0 18%;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_award {
    width: 100%;
    padding: 0;
  }
}
#products-detail .lead_award .ttl {
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_award .ttl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #products-detail .lead_award .ttl img {
    width: 206px;
  }
}
#products-detail .lead_award .ttl::before {
  display: block;
  content: "";
  width: 35px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
#products-detail .lead_award .txt {
  font-size: 1.3rem;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_award .txt {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
#products-detail .lead_award .maintxt {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_award .maintxt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .lead_icon {
    text-align: center;
    padding: 0 21.3vw;
  }
}
#products-detail .lead_icon:nth-child(2) {
  margin-bottom: 40px;
}
#products-detail .lead_icon img {
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_icon img {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .lead_announcement {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}
#products-detail .lead_announcement span {
  margin-bottom: 5px;
  background-color: #6b858e;
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 5px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #products-detail .lead_announcement span {
    margin-top: 20px;
  }
}
#products-detail .lead_announcement p {
  font-size: 1.5rem !important;
  line-height: 1.5;
}
#products-detail .lead_announcement p a {
  text-decoration: underline;
  color: #e20c0c;
  cursor: pointer;
}
#products-detail .lead_announcement p a:hover {
  transition: 0.4s all;
  color: #373f42;
}
#products-detail .lead_announcement p a i {
  color: #000;
}

/*==================================================================
    #products-detail .movie
===================================================================*/
#products-detail .movie {
  padding: 100px 0;
  background-color: #272727;
}
@media screen and (max-width: 768px) {
  #products-detail .movie {
    padding: 40px 0;
  }
}
#products-detail .movie .h01 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #products-detail .movie .h01 {
    margin-bottom: 10px;
  }
}
#products-detail .movie .clip {
  width: 774px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products-detail .movie .clip {
    width: 100%;
    padding: 0 4vw;
  }
}
#products-detail .movie .clip_frame {
  padding-bottom: 56.25%;
  position: relative;
}
#products-detail .movie .clip iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#products-detail .movie p {
  color: #fff;
  text-align: center;
  padding: 1em 0px;
}
#products-detail .movie .usage {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 50px;
}
#products-detail .movie .usage_image {
  width: 50%;
  text-align: center;
}
#products-detail .movie .usage_image img {
  height: 100%;
}
#products-detail .movie .usage_text {
  width: 50%;
  padding: 5%;
}
#products-detail .movie .usage_text p {
  text-align: left;
}

/*==================================================================
    #products-detail .feature
===================================================================*/
#products-detail .feature {
  padding: 70px 0 80px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail .feature {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .feature .h01 {
    margin-bottom: 20px;
  }
}
#products-detail .feature_blocks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  background-image: url(../img/common/icon_kakko_01.svg);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding-bottom: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks {
    flex-flow: column-reverse nowrap;
    background: none;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  #products-detail .feature_blocks::before {
    display: block;
    content: "";
    width: 40px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks:nth-of-type(1) {
    margin-bottom: 20px;
  }
}
#products-detail .feature_blocks:nth-of-type(even) {
  flex-flow: row-reverse nowrap;
  background-image: url(../img/common/icon_kakko_02.svg);
  background-position: 0 100%;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks:nth-of-type(even) {
    flex-flow: column-reverse nowrap;
    background: none;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks:nth-of-type(3) {
    padding-bottom: 30px;
  }
}
#products-detail .feature_blocks:last-of-type {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks:last-of-type::before {
    display: none;
  }
}
#products-detail .feature_blocks.-noborder {
  background-image: none;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks.-noborder::before {
    display: none;
  }
}
#products-detail .feature_blocks .img {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks .img {
    width: 100%;
    text-align: center;
  }
}
#products-detail .feature_blocks .img img {
  width: 100%;
}
#products-detail .feature_blocks .img li {
  margin-bottom: 20px;
}
#products-detail .feature_blocks .img li:last-child {
  margin-bottom: 0;
}
#products-detail .feature_blocks .img .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks .img .caution {
    font-size: 1rem;
  }
}
#products-detail .feature_blocks .txt {
  width: 50%;
  padding: 0 7.1%;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks .txt {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
#products-detail .feature_blocks .txt .ttl {
  font-size: 2.6rem;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks .txt .ttl {
    font-size: 2rem;
  }
}
#products-detail .feature_blocks .txt p {
  font-family: "Roboto", sans-serif;
}
#products-detail .feature_blocks .txt p:last-of-type {
  margin-bottom: 0;
}
#products-detail .feature_blocks .txt .lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2em;
  word-break: auto-phrase;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks .txt .lead {
    font-size: 1.4rem;
  }
}
#products-detail .feature_blocks .txt .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks .txt .caution {
    font-size: 1rem;
  }
}
#products-detail .feature_blocks.-full {
  display: block;
  flex-flow: column;
  align-items: center;
  background-image: none;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}
#products-detail .feature_blocks.-full .img {
  width: 100%;
  margin: 0px auto 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks.-full .img {
    width: 100%;
    text-align: center;
  }
}
#products-detail .feature_blocks.-full .img img {
  width: 100%;
}
#products-detail .feature_blocks.-full .img li {
  margin-bottom: 20px;
}
#products-detail .feature_blocks.-full .img li:last-child {
  margin-bottom: 0;
}
#products-detail .feature_blocks.-full .txt {
  width: 100%;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks.-full .txt {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
#products-detail .feature_blocks.-full .txt .ttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks.-full .txt .ttl {
    font-size: 2rem;
  }
}
#products-detail .feature_blocks.-full .txt p {
  font-family: "Roboto", sans-serif;
}
#products-detail .feature_blocks.-full .txt p:last-of-type {
  margin-bottom: 0;
}
#products-detail .feature_blocks.-full .txt .lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks.-full .txt .lead {
    font-size: 1.4rem;
  }
}
#products-detail .feature_blocks.-full .txt .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail .feature_blocks.-full .txt .caution {
    font-size: 1rem;
  }
}
#products-detail .feature.-tech .develop_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -20px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-tech .develop_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products-detail .feature.-tech .develop_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-tech .develop_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
  #products-detail .feature.-tech .develop_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail .feature.-tech .develop_item dl dt {
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  line-height: 1.5;
  padding: 10px 0px;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
#products-detail .feature.-tech .develop_item dl dd.image {
  margin-bottom: 20px;
}
#products-detail .feature.-recommendedcosme .otheritem {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-recommendedcosme .otheritem {
    margin: 0px -20px 20px;
  }
}
#products-detail .feature.-recommendedcosme .otheritem dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-recommendedcosme .otheritem dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail .feature.-recommendedcosme .otheritem dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail .feature.-recommendedcosme .otheritem dl a:hover {
  opacity: 0.8;
}
#products-detail .feature.-recommendedcosme .otheritem dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail .feature.-recommendedcosme .otheritem dl a.nolink:hover {
  opacity: 1;
}
#products-detail .feature.-recommendedcosme .otheritem dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-recommendedcosme .otheritem dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail .feature.-recommendedcosme .otheritem dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-recommendedcosme .otheritem dl dd {
    width: 70%;
  }
}
#products-detail .feature.-recommendedcosme .otheritem dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-recommendedcosme .otheritem dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail .feature.-recommendedcosme .otheritem dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail .feature.-recommendedcosme .otheritem dl dd span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    #products-detail .evidence
===================================================================*/
#products-detail .evidence {
  padding: 70px 0;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence {
    padding: 35px 0 55px;
  }
}
#products-detail .evidence .h01 {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence .h01 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_blocks {
    display: flex;
    flex-flow: column-reverse nowrap;
  }
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_blocks.noreverse {
    flex-flow: column;
  }
}
#products-detail .evidence_graph {
  padding: 40px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_graph {
    padding: 0 1.4vw;
    background-color: inherit;
  }
}
#products-detail .evidence_graph .graph {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_graph .graph {
    display: block;
  }
}
#products-detail .evidence_graph .graph .box {
  width: 403px;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_graph .graph .box {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail .evidence_graph .graph .box:last-of-type {
    margin-bottom: 0;
  }
}
#products-detail .evidence_graph .graph .box img {
  width: 100%;
}
#products-detail .evidence_lead {
  padding: 40px 15px 0;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_lead {
    padding: 0 4vw;
    margin-bottom: 40px;
  }
}
#products-detail .evidence_lead p {
  font-family: "Roboto", sans-serif;
}
#products-detail .evidence_lead .ttl {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_lead .ttl {
    font-size: 2rem;
    color: #485969;
  }
}
#products-detail .evidence_lead .lead {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_lead .lead {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
#products-detail .evidence_lead .caution {
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products-detail .evidence_lead .caution {
    font-size: 1rem;
  }
}

/*==================================================================
    #products-detail .howto
===================================================================*/
#products-detail .howto {
  padding: 80px 0;
  background-color: #272727;
}
@media screen and (max-width: 768px) {
  #products-detail .howto {
    padding: 40px 0;
  }
}
#products-detail .howto .h01 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #products-detail .howto .h01 {
    margin-bottom: 15px;
  }
}
#products-detail .howto_inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products-detail .howto_inner {
    display: block;
  }
}
#products-detail .howto_inner .box {
  width: 524px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail .howto_inner .box {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail .howto_inner .box:last-of-type {
    margin-bottom: 0;
  }
}
#products-detail .howto_inner .video {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
#products-detail .howto_inner .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*==================================================================
    #products-detail .spec
===================================================================*/
#products-detail .spec {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail .spec {
    padding: 45px 0 60px;
  }
}
#products-detail .spec .h01 {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #products-detail .spec .h01 {
    margin-bottom: 20px;
  }
}
#products-detail .spec_blocks {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_blocks {
    display: block;
  }
}
#products-detail .spec_img {
  width: 524px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_img {
    width: 100%;
    padding: 0 22vw;
    margin-bottom: 20px;
  }
}
#products-detail .spec_img img {
  width: 400px;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_img img {
    width: 100%;
  }
}
#products-detail .spec_outline {
  width: 576px;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_outline {
    width: 100%;
  }
}
#products-detail .spec_outline dl {
  font-family: "Roboto", sans-serif;
  padding-left: 20px;
}
#products-detail .spec_outline dt {
  font-size: 1.3rem;
  line-height: 1.1;
  margin-bottom: 0.6em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_outline dt {
    font-size: 1.1rem;
    font-weight: 600;
  }
}
#products-detail .spec_outline dt::before {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: -20px;
}
#products-detail .spec_outline dd {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_outline dd {
    font-size: 1.4rem;
  }
}
#products-detail .spec_outline dd:last-of-type {
  margin-bottom: 0;
}
#products-detail .spec_outline dd p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_outline dd p {
    font-size: 1.4rem;
  }
}
#products-detail .spec_outline dd p:last-of-type {
  margin-bottom: 0;
}
#products-detail .spec_outline dd p.caution {
  font-size: 1.1rem;
  padding-top: 5px;
}
#products-detail .spec_outline dd ul {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_outline dd ul {
    flex-flow: row wrap;
  }
}
#products-detail .spec_outline dd ul:nth-child(2) {
  margin-top: 4px;
}
#products-detail .spec_outline dd ul li {
  width: auto;
  background-color: #000;
  margin-right: 4px;
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail .spec_outline dd ul li {
    margin-bottom: 4px;
  }
}
#products-detail .spec_outline dd ul li:last-child {
  margin-right: 0;
}
#products-detail .spec_outline dd ul li span {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

/*==================================================================
    #products-detail .faq
===================================================================*/
#products-detail .faq {
  padding: 70px 0 140px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  #products-detail .faq {
    padding: 0 0 70px;
  }
}
#products-detail .faq_faq {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #products-detail .faq_faq {
    margin-bottom: 5px;
  }
}
#products-detail .faq_faq dt {
  font-size: 2rem;
  line-height: 1.2;
  padding: 1em 75px;
  border: solid 1px #000;
  cursor: pointer;
  position: relative;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #products-detail .faq_faq dt {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 1em 40px 1em 45px;
  }
}
#products-detail .faq_faq dt::before {
  display: inline-block;
  content: "Q .";
  font-weight: 500;
  position: absolute;
  left: 35px;
  top: 1em;
}
@media screen and (max-width: 768px) {
  #products-detail .faq_faq dt::before {
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
#products-detail .faq_faq dt::after {
  display: inline-block;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../img/common/icon_faq_plus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 1em;
  right: 30px;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #products-detail .faq_faq dt::after {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
#products-detail .faq_faq dt:hover, #products-detail .faq_faq dt.active {
  background-color: #c9c4c4;
}
#products-detail .faq_faq dt:hover::after {
  transform: rotate(360deg);
}
@media screen and (max-width: 768px) {
  #products-detail .faq_faq dt:hover::after {
    transform: translate(0, -50%);
  }
}
#products-detail .faq_faq dt.active::after {
  background-image: url(../img/common/icon_faq_minus.svg);
}
#products-detail .faq_faq dd {
  display: none;
  font-size: 1.6rem;
  line-height: 2;
  color: #5f5858;
  padding: 1em 75px;
  background-color: #c9c4c4;
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
}
@media screen and (max-width: 768px) {
  #products-detail .faq_faq dd {
    line-height: 1.3;
    padding: 1em;
  }
}

/*==================================================================
    #products-detail .manual
===================================================================*/
#products-detail .manual {
  padding: 70px 0 80px;
  background-color: #33393e;
}
@media screen and (max-width: 768px) {
  #products-detail .manual {
    padding: 40px 0;
  }
}
#products-detail .manual .h01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail .manual .h01 {
    margin-bottom: 20px;
  }
}
#products-detail .manual_link {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail .manual_link {
    flex-flow: column nowrap;
    align-items: center;
  }
}
#products-detail .manual_item {
  width: 240px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail .manual_item {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#products-detail .manual_item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products-detail .manual_item:last-child {
    margin-bottom: 0;
  }
}
#products-detail .manual_item a {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 1.3rem;
  line-height: 48px;
  font-family: "Roboto", sans-serif;
  color: #fff;
  padding: 0 2em;
  border: solid 1px #fff;
  background-image: url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
}
#products-detail .manual_item a.-rev {
  color: #000;
  background-color: #fff;
  background-image: url(../img/common/icon_pdf-black.svg);
}
#products-detail .manual_item a.-rev.hover:hover {
  opacity: 0.7;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
#products-detail original properties
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*==================================================================
    #products-detail.point-lift
===================================================================*/
#products-detail.point-lift .o-point-lift01 {
  padding: 100px 0;
  background: #001923 url(../img/products/point-lift/feature-main.png) no-repeat right bottom;
  background-size: auto 100%;
}
@media screen and (max-width: 1200px) {
  #products-detail.point-lift .o-point-lift01 {
    background: #001923 url(../img/products/point-lift/feature-main.png) no-repeat right -150px bottom 0px;
  }
}
@media screen and (max-width: 1000px) {
  #products-detail.point-lift .o-point-lift01 {
    background-size: auto 90%;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.point-lift .o-point-lift01 {
    padding: 50px 0 0px;
    background: #001720;
  }
}
#products-detail.point-lift .o-point-lift01_text {
  width: 40%;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #products-detail.point-lift .o-point-lift01_text {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.point-lift .o-point-lift01_text h2 {
  text-align: left;
  margin-bottom: 0px;
  font-size: 3rem;
}
#products-detail.point-lift .o-point-lift01_text h2::before {
  display: none;
}
#products-detail.point-lift .o-point-lift01_text h2 + p {
  text-align: left;
  font-size: 2rem;
}
#products-detail.point-lift .o-point-lift01_text p {
  font-size: 1.6rem;
}
#products-detail.point-lift .o-point-lift01_text p.caution {
  font-size: 1.3rem;
  padding-top: 10px;
}
#products-detail.point-lift .o-point-lift01_image {
  display: none;
}
@media screen and (max-width: 768px) {
  #products-detail.point-lift .o-point-lift01_image {
    display: block;
    margin: 0px -15px;
  }
}
#products-detail.point-lift .o-point-lift02 li {
  line-height: 2;
  font-size: 1.8rem;
}

/*==================================================================
    #products-detail.bright-lift
===================================================================*/
#products-detail.bright-lift .o-bright-lift01 {
  padding: 100px 0;
}
#products-detail.bright-lift .o-bright-lift01 p {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
#products-detail.bright-lift .o-bright-lift01 p.caution {
  font-size: 1.3rem;
}
#products-detail.bright-lift .o-bright-lift01 p span {
  font-size: 1.3rem;
  display: block;
}
#products-detail.bright-lift .o-bright-lift01 h2 + p {
  text-align: left;
}
#products-detail.bright-lift .o-bright-lift01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift01_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.bright-lift .o-bright-lift01_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift01_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
}
#products-detail.bright-lift .o-bright-lift01_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift01_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.bright-lift .o-bright-lift01 .whatsRF {
  background: #e2e2e2;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift01 .whatsRF {
    flex-flow: column-reverse;
    align-items: unset;
  }
}
#products-detail.bright-lift .o-bright-lift01 .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.bright-lift .o-bright-lift01 .whatsRF p {
  font-size: 1.4rem;
  line-height: 2;
}
#products-detail.bright-lift .o-bright-lift01 .whatsRF .txt {
  width: calc(100% - 180px);
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift01 .whatsRF .txt {
    width: 100%;
  }
}
#products-detail.bright-lift .o-bright-lift01 .whatsRF .img {
  margin-left: 50px;
  width: 150px;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift01 .whatsRF .img {
    margin-left: 0px;
    max-width: 140px;
    margin-bottom: 20px;
  }
}
#products-detail.bright-lift .o-bright-lift01 .whatsRF .img img {
  width: 100%;
}
#products-detail.bright-lift .o-bright-lift02 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift02 {
    padding: 0px 0px 40px;
  }
}
#products-detail.bright-lift .o-bright-lift02 .container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-flow: row wrap;
}
#products-detail.bright-lift .o-bright-lift02_text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5%;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift02_text {
    width: 100%;
    padding: 0px;
  }
}
#products-detail.bright-lift .o-bright-lift02_text p {
  font-size: 1.6rem;
  text-align: justify;
}
#products-detail.bright-lift .o-bright-lift02_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .o-bright-lift02_image {
    width: 100%;
  }
}
#products-detail.bright-lift .o-bright-lift02 .whatsRF {
  background: #e2e2e2;
  padding: 30px;
}
#products-detail.bright-lift .o-bright-lift02 .whatsRF p {
  font-size: 1.4rem;
  line-height: 2;
}
#products-detail.bright-lift .movie .usage {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 50px;
}
#products-detail.bright-lift .movie .usage_image {
  width: 260px;
  text-align: center;
}
#products-detail.bright-lift .movie .usage_image img {
  height: auto;
}
#products-detail.bright-lift .movie .usage_text {
  width: 50%;
  padding: 5%;
}
@media screen and (max-width: 768px) {
  #products-detail.bright-lift .movie .usage_text {
    width: 100%;
    padding: 0px;
  }
}
#products-detail.bright-lift .movie .usage_text p {
  text-align: left;
}

/*==================================================================
    #products-detail.bloom-wr
===================================================================*/
#products-detail.bloom-wr .howto_inner .h01::before {
  display: none;
}
#products-detail.bloom-wr .howto p {
  color: #fff;
  text-align: center;
  padding: 1em 0px;
}

/*==================================================================
    #products-detail.bloom-red
===================================================================*/
#products-detail.bloom-red .o-bloom-red01 {
  padding: 100px 0;
}
#products-detail.bloom-red .o-bloom-red01 p {
  font-size: 1.6rem;
}
#products-detail.bloom-red .o-bloom-red01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 0px;
}
#products-detail.bloom-red .o-bloom-red01_item {
  padding: 20px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red01_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products-detail.bloom-red .o-bloom-red01_item .img {
  margin-bottom: 20px;
}
#products-detail.bloom-red .o-bloom-red01_item .ttl {
  font-size: 2.6rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red01_item .ttl {
    font-size: 2rem;
  }
}
#products-detail.bloom-red .o-bloom-red01_item p {
  font-family: "Poppins", sans-serif;
}
#products-detail.bloom-red .o-bloom-red01_item p:last-of-type {
  margin-bottom: 0;
}
#products-detail.bloom-red .o-bloom-red01_item p img {
  max-width: 160px;
}
#products-detail.bloom-red .o-bloom-red01_item .lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red01_item .lead {
    font-size: 1.4rem;
  }
}
#products-detail.bloom-red .o-bloom-red01_item .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red01_item .caution {
    font-size: 1rem;
  }
}
#products-detail.bloom-red .o-bloom-red01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.bloom-red .o-bloom-red02_inner {
  display: flex;
  flex-flow: row wrap;
  margin: 0px auto;
  max-width: 1920px;
}
#products-detail.bloom-red .o-bloom-red02_inner::before {
  content: "";
  display: block;
  width: 100vw;
  background: #b6a8ae;
  margin-left: -100vw;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red02_inner::before {
    display: none;
  }
}
#products-detail.bloom-red .o-bloom-red02_inner::after {
  content: "";
  display: block;
  width: 100vw;
  background: #ababab;
  margin-right: -100vw;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red02_inner::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red02_inner {
    height: auto;
    flex-flow: column nowrap;
  }
}
#products-detail.bloom-red .o-bloom-red02_text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  padding: 5%;
  background: #b6a8ae;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red02_text {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    background: #fff;
  }
}
#products-detail.bloom-red .o-bloom-red02_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-red .o-bloom-red02_image {
    width: 100%;
  }
}

/*==================================================================
    #products-detail.ems-shape-gel
===================================================================*/
#products-detail.ems-shape-gel .o-ems-shape-gel01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01 .feature_blocks {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #products-detail.ems-shape-gel .o-ems-shape-gel01 .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.ems-shape-gel .o-ems-shape-gel01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.ems-shape-gel .o-ems-shape-gel01 .feature_blocks:nth-of-type(1), #products-detail.ems-shape-gel .o-ems-shape-gel01 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01 p {
  font-size: 1.6rem;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 0px;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01_item {
  padding: 10px;
  width: 25%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.ems-shape-gel .o-ems-shape-gel01_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.ems-shape-gel .o-ems-shape-gel01_item dt {
  margin-bottom: 10px;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.ems-shape-gel .o-ems-shape-gel01 .feature_blocks .lead em {
  text-decoration: underline;
}

/*==================================================================
    #products-detail.medi-lift-gel
===================================================================*/
#products-detail.medi-lift-gel .o-medi-lift-gel01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks:nth-of-type(1), #products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks:nth-of-type(2) {
  padding-bottom: 0px;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks picture {
  text-align: center;
  display: block;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01 p {
  font-size: 1.6rem;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 0px;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01_item {
  padding: 10px;
  width: 20%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-gel .o-medi-lift-gel01_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.medi-lift-gel .o-medi-lift-gel01_item dt {
  margin-bottom: 10px;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.medi-lift-gel .o-medi-lift-gel01 .feature_blocks .lead em {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

/*==================================================================
    #products-detail.medi-lift-neck
===================================================================*/
#products-detail.medi-lift-neck .o-medi-lift-neck01 {
  padding: 100px 0;
}
#products-detail.medi-lift-neck .o-medi-lift-neck01 p {
  font-size: 1.6rem;
}
#products-detail.medi-lift-neck .o-medi-lift-neck01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
#products-detail.medi-lift-neck .o-medi-lift-neck01_item {
  padding: 20px;
  max-width: 740px;
}
#products-detail.medi-lift-neck .o-medi-lift-neck01_item .img {
  margin-bottom: 20px;
}

/*==================================================================
    #products-detail.medi-lift-eye
===================================================================*/
#products-detail.medi-lift-eye .o-medi-lift-eye01 {
  padding: 100px 0;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01 p {
  font-size: 1.6rem;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item {
  padding: 20px;
  width: 33.3333333333%;
  margin-left: -1px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-eye .o-medi-lift-eye01_item {
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0px;
  }
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item .img {
  margin-bottom: 20px;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item .ttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-eye .o-medi-lift-eye01_item .ttl {
    font-size: 2rem;
  }
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item p {
  font-family: "Poppins", sans-serif;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item p:last-of-type {
  margin-bottom: 0;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item .lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-eye .o-medi-lift-eye01_item .lead {
    font-size: 1.4rem;
  }
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-eye .o-medi-lift-eye01_item .caution {
    font-size: 1rem;
  }
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item:first-of-type .ttl {
  color: #de9a91;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item:first-of-type .ttl::before {
  width: 40px;
  height: 2px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  background: #de9a91;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item:nth-of-type(2) .ttl {
  color: #dcb38b;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item:nth-of-type(2) .ttl::before {
  width: 40px;
  height: 2px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  background: #dcb38b;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item:last-of-type .ttl {
  color: #727171;
}
#products-detail.medi-lift-eye .o-medi-lift-eye01_item:last-of-type .ttl::before {
  width: 40px;
  height: 2px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  background: #727171;
}

/*==================================================================
    #products-detail.rfboosterpadclean
===================================================================*/
#products-detail.rfboosterpadclean .o-rfboosterpadclean01 {
  padding: 100px 0;
}
#products-detail.rfboosterpadclean .o-rfboosterpadclean01 p {
  font-size: 2rem;
}
#products-detail.rfboosterpadclean .o-rfboosterpadclean01_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -5px;
}
#products-detail.rfboosterpadclean .o-rfboosterpadclean01_list li {
  padding: 5px;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail.rfboosterpadclean .o-rfboosterpadclean01_list li {
    width: 100%;
  }
}
#products-detail.rfboosterpadclean .o-rfboosterpadclean01_list li div {
  border: 2px solid #000;
  background: #f9f9f6;
  padding: 15px;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
#products-detail.rfboosterpadclean .o-rfboosterpadclean01_list li div span {
  font-size: 1.5rem;
  display: block;
  font-weight: normal;
}

/*==================================================================
    #products-detail.rfboosterpadmoisture
===================================================================*/
#products-detail.rfboosterpadmoisture .o-rfboosterpadmoisture01 {
  padding: 100px 0;
}
#products-detail.rfboosterpadmoisture .o-rfboosterpadmoisture01 p {
  font-size: 2rem;
}
#products-detail.rfboosterpadmoisture .o-rfboosterpadmoisture01_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -5px 20px;
}
#products-detail.rfboosterpadmoisture .o-rfboosterpadmoisture01_list li {
  padding: 5px;
  width: 50%;
  text-align: center;
  display: grid;
}
@media screen and (max-width: 768px) {
  #products-detail.rfboosterpadmoisture .o-rfboosterpadmoisture01_list li {
    width: 100%;
  }
}
#products-detail.rfboosterpadmoisture .o-rfboosterpadmoisture01_list li div {
  border: 2px solid #000;
  background: #f9f9f6;
  padding: 15px;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
#products-detail.rfboosterpadmoisture .o-rfboosterpadmoisture01_list li div span {
  font-size: 1.5rem;
  display: block;
  font-weight: normal;
}

/*==================================================================
    #products-detail.photo-plus-prestige-s
===================================================================*/
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01 {
  padding: 100px 0;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01 p {
  font-size: 2rem;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -30px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list {
    margin: 0px 0px 20px;
  }
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl {
  padding: 30px;
  width: 33.3333333333%;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd li:last-child::after {
  display: none;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.2rem;
}
#products-detail.photo-plus-prestige-s .o-photo-plus-prestige-s01_list dl dd.image {
  margin-bottom: 10px;
}

/*==================================================================
    #products-detail.vedabright
===================================================================*/
#products-detail.vedabright .o-vedabright01 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.vedabright .o-vedabright01 {
    padding: 50px 0;
  }
}
#products-detail.vedabright .o-vedabright01 .feature_blocks {
  background: none;
}
#products-detail.vedabright .o-vedabright01 .feature_blocks::before {
  display: none;
}
#products-detail.vedabright .o-vedabright01 .-full h3 em {
  display: block;
  margin-bottom: 5px;
  font-size: 1.7rem;
}
#products-detail.vedabright .o-vedabright01 .-full .ttl {
  text-align: center;
}
#products-detail.vedabright .o-vedabright01 .-full .img {
  text-align: center;
}
#products-detail.vedabright .o-vedabright01 .-full .img img {
  max-width: 100%;
  width: auto;
  margin: 0px auto;
}
#products-detail.vedabright .o-vedabright02 {
  background: #485969;
  padding: 100px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.vedabright .o-vedabright02 {
    padding: 50px 0;
  }
}
#products-detail.vedabright .o-vedabright02 h3 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.vedabright .o-vedabright02 h3 {
    font-size: 2rem;
  }
}
#products-detail.vedabright .o-vedabright02 p {
  margin-bottom: 50px;
}
#products-detail.vedabright .o-vedabright02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0px -20px 60px;
}
#products-detail.vedabright .o-vedabright02_list:last-of-type {
  margin-bottom: 0px;
}
#products-detail.vedabright .o-vedabright02_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.vedabright .o-vedabright02_item {
    width: 100%;
  }
}
#products-detail.vedabright .o-vedabright02_item p {
  margin-bottom: 10px;
}
#products-detail.vedabright .o-vedabright02_item img {
  width: 100%;
}

/*==================================================================
    #products-detail.flawless-serum-moisture
===================================================================*/
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_blocks {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_blocks:nth-of-type(1), #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .subttl {
    font-size: 2rem;
  }
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px -5px 0px;
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01_item {
  padding: 5px;
  width: 20%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01_item dt {
  margin-bottom: 10px;
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_double {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_double {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_double .txt {
  width: 50%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_double .txt {
    width: 100%;
    padding-right: 0px;
  }
}
#products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_double .img {
  width: 50%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-moisture .o-flawless-serum-moisture01 .feature_double .img {
    width: 100%;
  }
}

/*==================================================================
    #products-detail.skin-tightening-mask
===================================================================*/
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks {
  margin-bottom: 60px;
  background-image: none;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks:nth-of-type(1), #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks picture {
  text-align: center;
  display: block;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .ttl {
  font-size: 2.2rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .subttl {
    font-size: 2rem;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 0px;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01_item {
  padding: 10px;
  width: 20%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01_item dt {
  margin-bottom: 10px;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks .lead em {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_blocks .txt .lead.-adjust {
  padding-bottom: 30px;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double .txt {
  width: 60%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double .txt {
    width: 100%;
    padding-right: 0px;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double .img {
  width: 40%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double .img {
    width: 100%;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double + .txt {
  margin-top: 40px;
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double.-feature05 .txt {
  width: calc(100% - 240px);
  padding-left: 30px;
  padding-right: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double.-feature05 .txt {
    width: 100%;
    padding-left: 0px;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double.-feature05 .img {
  width: 240px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double.-feature05 .img {
    width: auto;
    max-width: 200px;
    margin: 0px auto 20px;
  }
}
#products-detail.skin-tightening-mask .o-skin-tightening-mask01 .feature_double.-feature05 .img img {
  max-width: 100%;
}

/*==================================================================
    #products-detail.eye-serum
===================================================================*/
#products-detail.eye-serum .o-eye-serum01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.eye-serum .o-eye-serum01 .feature_blocks {
  margin-bottom: 60px;
  background-image: none;
}
@media screen and (max-width: 768px) {
  #products-detail.eye-serum .o-eye-serum01 .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.eye-serum .o-eye-serum01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.eye-serum .o-eye-serum01 .feature_blocks:nth-of-type(1), #products-detail.eye-serum .o-eye-serum01 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.eye-serum .o-eye-serum01 .feature_blocks picture {
  text-align: center;
  display: block;
}
#products-detail.eye-serum .o-eye-serum01 img {
  width: auto !important;
}
#products-detail.eye-serum .o-eye-serum01 .ttl {
  font-size: 2.2rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.eye-serum .o-eye-serum01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.eye-serum .o-eye-serum01 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.eye-serum .o-eye-serum01 .subttl {
    font-size: 2rem;
  }
}
#products-detail.eye-serum .o-eye-serum01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 0px;
}
#products-detail.eye-serum .o-eye-serum01_item {
  padding: 10px;
  width: 50%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.eye-serum .o-eye-serum01_item {
    width: 100%;
    margin-bottom: 15px;
  }
}
#products-detail.eye-serum .o-eye-serum01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.eye-serum .o-eye-serum01_item picture {
  text-align: center;
  display: block;
}
#products-detail.eye-serum .o-eye-serum01_item p {
  text-align: right;
}
#products-detail.eye-serum .o-eye-serum01 .feature_double {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.eye-serum .o-eye-serum01 .feature_double {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.eye-serum .o-eye-serum01 .feature_double .txt {
  width: 60%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.eye-serum .o-eye-serum01 .feature_double .txt {
    width: 100%;
    padding-right: 0px;
  }
}
#products-detail.eye-serum .o-eye-serum01 .feature_double .img {
  width: 40%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.eye-serum .o-eye-serum01 .feature_double .img {
    width: 100%;
  }
}
#products-detail.eye-serum .o-eye-serum01 .feature_double + .txt {
  margin-top: 40px;
}

/*==================================================================
    #products-detail.medi-lift-plus
===================================================================*/
#products-detail.medi-lift-plus .o-medi-lift-plus01 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01 {
    padding: 50px 0;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .feature_blocks {
  background: none;
  padding-bottom: 0px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .feature_blocks::before {
  display: none;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .-full h3 em {
  display: block;
  margin-bottom: 5px;
  font-size: 1.7rem;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .-full .ttl {
  text-align: center;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .-full .img {
  text-align: center;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .-full .img img {
  max-width: 100%;
  width: auto;
  margin: 0px auto;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0px -20px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01_list {
    margin: 0px;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01_item {
  padding: 20px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01_item {
    padding: 0px;
    width: 100%;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01_item:last-of-type {
  width: 40%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01_item:last-of-type {
    width: 100%;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01 .type_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item {
  padding: 0px;
  width: 50%;
  background: #d8e4ea;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item {
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item:last-of-type {
  width: 50%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item:last-of-type {
    width: 100%;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item.-handy {
  background: #f1f1f1;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item dl {
  display: flex;
  flex-flow: column;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item dl dt {
  text-align: center;
  padding: 5%;
  border-bottom: 2px solid #fff;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item dl dd {
  text-align: center;
  padding: 10%;
  border-bottom: 2px solid #fff;
  min-height: 230px;
  display: grid;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item dl dd {
    min-height: unset;
    padding: 5%;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item dl dd h4 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_item dl dd:last-of-type {
  border-bottom: none;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_img {
  text-align: center;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_img img {
  max-width: 200px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus01 .type_genre {
  font-weight: 700;
  line-height: 2;
  font-size: 2.2rem;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02 {
  padding: 100px 0;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02 p {
  font-size: 1.6rem;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 0px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item {
  padding: 20px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus02_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item .img {
  margin-bottom: 20px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item .ttl {
  font-size: 2.6rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus02_item .ttl {
    font-size: 2rem;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item p {
  font-family: "Poppins", sans-serif;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item p:last-of-type {
  margin-bottom: 0;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item p img {
  max-width: 160px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item .lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus02_item .lead {
    font-size: 1.4rem;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus02_item .caution {
    font-size: 1rem;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus02_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 0px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus03 h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 60px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus03 dl {
  padding: 20px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-plus .o-medi-lift-plus03 dl {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products-detail.medi-lift-plus .o-medi-lift-plus03 dl:last-of-type {
  margin-bottom: 0px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus03 dl dt {
  margin-bottom: 10px;
}
#products-detail.medi-lift-plus .o-medi-lift-plus03 dl dd {
  color: #fff;
  line-height: 1.5;
}

/*==================================================================
    #products-detail.photo-plus-ex-eye-pro
===================================================================*/
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01 {
  padding: 100px 0;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01 p {
  font-size: 2rem;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -30px 20px;
}
@media screen and (max-width: 1000px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list {
    margin: 0px 0px 20px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list {
    margin: 0px 0px 20px;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl {
  padding: 30px;
  width: 33.3333333333%;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-top: -1px;
}
@media screen and (max-width: 1000px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl {
    width: 50%;
    padding: 30px 15px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd li:last-child::after {
  display: none;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.2rem;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro01_list dl dd.image {
  margin-bottom: 15px;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 {
    padding: 40px 0px;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02_list {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02_list {
    flex-flow: column;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02_item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02_item {
    width: 100%;
    text-align: center;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02_item .txt {
  padding: 8%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02_item .txt {
    padding: 15px;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 .develop_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -20px;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 .develop_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 .develop_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 .develop_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
  #products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 .develop_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 .develop_item dl dt {
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  line-height: 1.5;
  padding: 10px 0px;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
#products-detail.photo-plus-ex-eye-pro .o-photo-plus-ex-eye-pro02 .develop_item dl dd.image {
  margin-bottom: 20px;
}

/*==================================================================
    #products-detail.cavispa-rf-core-ex
===================================================================*/
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 {
    padding: 60px 0px;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .feature_blocks {
  margin-bottom: 60px;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .subttl {
    font-size: 2rem;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_list {
    margin: 0px auto;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_list.-rev {
  flex-flow: row-reverse wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_list.-rev {
    flex-flow: column;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item {
    width: 100%;
    margin-bottom: 15px;
    padding: 0px;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item .clip {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item .clip {
    width: 100%;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item .clip_frame {
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 10px;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item .clip iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item .subimage {
  padding-top: 20px;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01_item .img {
  margin-bottom: 0px;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block01 .img {
  margin-bottom: 0px;
  padding: 40px 50px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block01 .img {
    padding: 10px 0px;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block06 {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block06 {
    flex-flow: column-reverse;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block06 h4 {
  border: none;
  font-size: 2rem !important;
  text-align: left;
  padding: 0px;
  margin-bottom: 15px;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block06 .txt {
  margin-bottom: 30px;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block06 .o-cavispa-rf-core-ex01_item {
  width: 100%;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block07 {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -20px;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block07 {
    margin: 0px;
    flex-flow: column;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block07 .box {
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block07 .box {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex01 .-block07 .box .img {
  margin-bottom: 20px;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02 {
  padding: 100px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02 {
    padding: 40px 0px;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02 .ttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02 .ttl {
    font-size: 2rem;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02 .lead {
  text-align: left;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02 .caution {
  text-align: left;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin: 0px -20px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_list {
    flex-flow: column-reverse;
    align-items: unset;
    margin: 0px auto;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_item {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_item {
    padding: 0px;
    width: 100%;
  }
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_item .subimage {
  padding-top: 20px;
}
#products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_item .img {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_item .img {
    text-align: center;
    padding: 30px 0px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_item .img img {
    max-width: 50%;
    margin: 0px auto;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-rf-core-ex .o-cavispa-rf-core-ex02_item .img img.-full {
    max-width: 100%;
  }
}
#products-detail.cavispa-rf-core-ex .faq_faq li {
  line-height: 1.8;
}
#products-detail.cavispa-rf-core-ex .faq_faq li em {
  padding: 5px 0px 5px;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/*==================================================================
    #products-detail.cavispa-360
===================================================================*/
#products-detail.cavispa-360 .o-cavispa-36001 {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 {
    padding: 60px 0px;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .feature_blocks {
  margin-bottom: 100px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .feature_blocks {
    margin-bottom: 40px;
  }
  #products-detail.cavispa-360 .o-cavispa-36001 .feature_blocks::before {
    display: none;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .feature_blocks:last-child {
  margin-bottom: 0px;
}
#products-detail.cavispa-360 .o-cavispa-36001 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .subttl {
    font-size: 2rem;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0px -20px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001_list {
    margin: 0px auto;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001_item {
    width: 100%;
    margin-bottom: 15px;
    padding: 0px;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001_item .subimage {
  padding-top: 20px;
}
#products-detail.cavispa-360 .o-cavispa-36001_item .img {
  margin-bottom: 0px;
}
#products-detail.cavispa-360 .o-cavispa-36001 .clip {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .clip {
    width: 100%;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .clip_frame {
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 10px;
}
#products-detail.cavispa-360 .o-cavispa-36001 .clip iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block01 .subttl {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 20px;
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block01 .img {
  margin-bottom: 0px;
  padding: 40px 50px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .-block01 .img {
    padding: 10px 0px;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block06 {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .-block06 {
    flex-flow: column-reverse;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block06 h4 {
  border: none;
  font-size: 2rem !important;
  text-align: left;
  padding: 0px;
  margin-bottom: 15px;
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block06 .txt {
  margin-bottom: 30px;
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block06 .o-cavispa-36001_item {
  width: 100%;
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block07 {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -20px;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .-block07 {
    margin: 0px;
    flex-flow: column;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block07 .box {
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36001 .-block07 .box {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
}
#products-detail.cavispa-360 .o-cavispa-36001 .-block07 .box .img {
  margin-bottom: 20px;
}
#products-detail.cavispa-360 .o-cavispa-36002 {
  padding: 100px 0;
  color: #000;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36002 {
    padding: 40px 0px;
  }
}
#products-detail.cavispa-360 .o-cavispa-36002 h2 + p {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
#products-detail.cavispa-360 .o-cavispa-36002_list {
  max-width: 960px;
  margin: 0px auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36002_list {
    flex-flow: column;
    align-items: unset;
    margin: 0px auto 30px;
  }
}
#products-detail.cavispa-360 .o-cavispa-36002_item {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.cavispa-360 .o-cavispa-36002_item {
    padding: 20px;
    width: 100%;
    text-align: center;
  }
}
#products-detail.cavispa-360 .o-cavispa-36002 .subttl {
  text-align: center;
  display: block;
  padding: 1em;
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background: #fff;
}
#products-detail.cavispa-360 .faq_faq li {
  line-height: 1.8;
}
#products-detail.cavispa-360 .faq_faq li em {
  padding: 5px 0px 5px;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/*==================================================================
    #products-detail.rei-beaute-go
===================================================================*/
#products-detail.rei-beaute-go .o-rei-beaute-go01 {
  padding: 100px 0 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go01 {
    padding: 60px 0px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go01 .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go01 .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.rei-beaute-go .o-rei-beaute-go01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go01 .ttl {
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 50px -10px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go01_list {
    margin: 0px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go01_item {
  padding: 10px;
  width: 33.3333333333%;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go01_item {
    width: 100%;
    padding: 0px 0px 10px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go01_item .child {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #c7d6e4;
  width: 100%;
}
#products-detail.rei-beaute-go .o-rei-beaute-go01 dl {
  text-align: center;
  padding: 15px;
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  width: 100%;
}
#products-detail.rei-beaute-go .o-rei-beaute-go01 dl dt {
  font-size: 2rem;
  margin-bottom: 15px;
  width: 100%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go01 dl dt {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go01 dl dd {
  font-size: 1.4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go01 dl dd {
    font-size: 1.3rem;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go02 {
  padding: 0px 0 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go02 {
    padding-bottom: 40px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go02 .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go02 .feature_blocks {
    margin-bottom: 40px;
  }
  #products-detail.rei-beaute-go .o-rei-beaute-go02 .feature_blocks::before {
    display: none;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go02 .feature_blocks:last-child {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go02_list {
    margin: 0px 0px 30px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go02_list dl {
  padding: 10px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go02_list dl {
    width: 100%;
    margin-bottom: 30px;
    padding: 0px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go02_list dl:last-child {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go02_list dl dt {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go02_list dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go02_list dl dd {
  text-align: center;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03 {
    padding: 0px 0px 40px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .feature_blocks {
  margin-bottom: 0px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03 .feature_blocks {
    margin-bottom: 40px;
  }
  #products-detail.rei-beaute-go .o-rei-beaute-go03 .feature_blocks::before {
    display: none;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .feature_blocks:last-child {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 100px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_list.-sub {
  margin: 40px -20px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_list.-sub {
    margin: 0px 0px 0px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_list dl {
  padding: 10px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_list dl {
    width: 100%;
    margin-bottom: 30px;
    padding: 0px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_list dl:last-child {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_list dl:last-child dt {
    display: none;
  }
  #products-detail.rei-beaute-go .o-rei-beaute-go03_list dl:last-child dd img {
    max-width: 100%;
    margin: 0px auto;
    width: 80%;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_list dl dt {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_list dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_list dl dd {
  text-align: center;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment h3 {
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment p {
  font-size: 1.4rem;
  line-height: 2;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment .txt {
  width: calc(100% - 280px);
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment .txt {
    width: 100%;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment .img {
  margin-left: 50px;
  width: 250px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment .img {
    margin-left: 0px;
    max-width: 140px;
    margin-bottom: 20px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03 .attachment .img img {
  width: 100%;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_item {
    width: 100%;
    margin-bottom: 15px;
    padding: 0px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_item .clip {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_item .clip {
    width: 100%;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_item .clip_frame {
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 10px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_item .clip iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_item .subimage {
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go03_item .subimage {
    padding-top: 0px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_item .subimage img {
  width: 100%;
}
#products-detail.rei-beaute-go .o-rei-beaute-go03_item .img {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go04_list {
  display: flex;
  flex-flow: row wrap;
}
#products-detail.rei-beaute-go .o-rei-beaute-go04_item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-go .o-rei-beaute-go04_item {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.rei-beaute-go .o-rei-beaute-go04 h3 {
  display: block;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go04 h3 em {
  border: 1px solid #fff;
  font-size: 2.2rem;
  padding: 0.5em 2em;
  display: inline-block;
  margin-bottom: 15px;
}
#products-detail.rei-beaute-go .o-rei-beaute-go04 h3 span {
  display: block;
  font-size: 1.4rem;
}

/*==================================================================
    #products-detail.rei-beaute-rflash-hyper
===================================================================*/
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01 {
  padding: 100px 0 80px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01 {
    padding: 60px 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01 .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01 .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01 .ttl {
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 50px -10px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01_list {
    margin: 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01_item {
  padding: 10px;
  width: 33.3333333333%;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01_item {
    width: 100%;
    padding: 0px 0px 10px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01_item .child {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #c7d6e4;
  width: 100%;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper01_item .child_ttl {
  text-align: center;
  padding: 15px;
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  font-size: 2rem;
  width: 100%;
  font-weight: 500;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02 {
  padding: 0px 0 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02 {
    padding-bottom: 40px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02 .feature_blocks {
  margin-bottom: 80px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02 .feature_blocks {
    margin-bottom: 40px;
  }
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02 .feature_blocks::before {
    display: none;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02 .feature_blocks:last-child {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list {
    margin: 0px 0px 30px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list dl {
  padding: 10px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list dl {
    width: 100%;
    margin-bottom: 30px;
    padding: 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list dl:last-child {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list dl dt {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list dl dt span {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  padding-top: 5px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02_list dl dd {
  text-align: center;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper02 .img {
  margin-bottom: 20px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 {
    padding: 0px 0px 40px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .feature_blocks {
  margin-bottom: 80px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .feature_blocks {
    margin-bottom: 40px;
  }
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .feature_blocks::before {
    display: none;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .feature_blocks:last-child {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 100px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list.-sub {
  margin: 40px -20px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list.-sub {
    margin: 0px 0px 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl {
  padding: 10px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl {
    width: 100%;
    margin-bottom: 30px;
    padding: 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl:last-child {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl:last-child dt {
    display: none;
  }
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl:last-child dd img {
    max-width: 100%;
    margin: 0px auto;
    width: 80%;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl dt {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_list dl dd {
  text-align: center;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment h3 {
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment p {
  font-size: 1.4rem;
  line-height: 2;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment .txt {
  width: calc(100% - 280px);
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment .txt {
    width: 100%;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment .img {
  margin-left: 50px;
  width: 250px;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment .img {
    margin-left: 0px;
    max-width: 140px;
    margin-bottom: 20px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .attachment .img img {
  width: 100%;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item {
    width: 100%;
    margin-bottom: 15px;
    padding: 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item .clip {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item .clip {
    width: 100%;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item .clip_frame {
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 10px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item .clip iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item .subimage {
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item .subimage {
    padding-top: 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03_item .subimage img {
  width: 100%;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper03 .img {
  margin-bottom: 20px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper04 h2 {
  margin-bottom: 40px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05 {
    padding: 60px 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl {
  padding: 10px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl {
    width: 100%;
    margin-bottom: 30px;
    padding: 0px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl:last-child {
  margin-bottom: 0px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl dt {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl dt span {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  padding-top: 5px;
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl dd {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl dd {
    font-size: 1.3rem;
  }
}
#products-detail.rei-beaute-rflash-hyper .o-rei-beaute-rflash-hyper05_list dl dd span {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

/*==================================================================
    #products-detail.photo-plus-prestige-ss
===================================================================*/
#products-detail.photo-plus-prestige-ss .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.photo-plus-prestige-ss .feature_blocks::before {
    display: none;
  }
}
#products-detail.photo-plus-prestige-ss .feature_blocks.-center {
  text-align: center;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 {
    padding: 0px 0px 30px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .lead_box {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .lead_box {
    margin-bottom: 25px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0px -15px 60px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_list {
    flex-flow: column;
    align-items: unset;
    margin: 0px 0px 40px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item {
  width: 50%;
  padding: 0px 15px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item {
    width: 100%;
    padding: 0px 0px 20px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child {
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child {
    align-items: unset;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child h3 {
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #6e8396;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child h3 {
    font-size: 2.2rem;
    text-align: center;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child h3 span {
  display: block;
  padding-top: 10px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child h3 span {
    font-size: 1.2rem;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child dl dt {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child dl dt {
    margin: 0px auto 20px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child dl dd {
  padding-left: 15px;
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss01 .mode_item .child dl dd {
    padding-left: 0px;
    width: 100%;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 {
    padding: 40px 0px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 .eyecare_list {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 .eyecare_list {
    flex-flow: column;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 .eyecare_item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 .eyecare_item {
    width: 100%;
    text-align: center;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 .eyecare_item .txt {
  padding: 0px 8%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 .eyecare_item .txt {
    padding: 15px;
    text-align: left;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss02 .eyecare_item .txt .ttl {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 h2 {
  margin-bottom: 40px;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .howto_list {
    flex-flow: column;
    margin: 0px 0px 50px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .howto_list dl {
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .howto_list dl {
    width: 100%;
    padding: 0px;
  }
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .howto_list dl:first-child {
    margin-bottom: 40px;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .howto_list dl dt {
  margin-bottom: 30px;
  border-top: 1px solid #939393;
  border-bottom: 1px solid #939393;
  padding: 15px 0;
  text-align: center;
  color: #939393;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_list {
  max-width: 900px;
  border: 2px solid #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_list {
    flex-flow: column;
    max-width: 80%;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_item {
  width: 50%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_item {
    width: 100%;
  }
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_item:first-child {
  padding: 30px;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_item h3 {
  color: #fff;
  text-align: left;
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
  font-size: 2.4rem;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_item p {
  text-align: left;
  margin-bottom: 0px;
  padding: 0px;
}
#products-detail.photo-plus-prestige-ss .o-photo-plus-prestige-ss03 .eyemode_item p.caution {
  font-size: 1.2rem;
}

/*==================================================================
    #products-detail.wavy-mini
===================================================================*/
#products-detail.wavy-mini .o-wavy-mini01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.wavy-mini .o-wavy-mini01 h3 {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini01 h3 {
    font-size: 2rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini01 h3 em {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
}
#products-detail.wavy-mini .o-wavy-mini01 .img {
  margin-bottom: 0px;
}
#products-detail.wavy-mini .o-wavy-mini01 .img img {
  width: auto !important;
}
#products-detail.wavy-mini .o-wavy-mini02 {
  padding: 100px 0;
  background: #373f42;
  color: #fff;
}
#products-detail.wavy-mini .o-wavy-mini02 .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini02 .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.wavy-mini .o-wavy-mini02 .feature_blocks::before {
    display: none;
  }
}
#products-detail.wavy-mini .o-wavy-mini02 h3 {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini02 h3 {
    font-size: 2rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini02 .ttl {
  font-size: 2.2rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini02 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini02 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini02 .subttl {
    font-size: 2rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini02 .item_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini02 .item_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.wavy-mini .o-wavy-mini02 .item_list:last-child {
  margin-bottom: 0px;
}
#products-detail.wavy-mini .o-wavy-mini02 .item_item {
  padding: 10px;
  width: 50%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini02 .item_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 15px;
  }
}
#products-detail.wavy-mini .o-wavy-mini02 .item_item .lead {
  margin-bottom: 1.2em;
}
#products-detail.wavy-mini .o-wavy-mini02 .item_item .caution {
  font-size: 1.2rem;
}
#products-detail.wavy-mini .o-wavy-mini02 .item_item dt {
  margin-bottom: 10px;
}
#products-detail.wavy-mini .o-wavy-mini02 .item_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.wavy-mini .o-wavy-mini02 .item_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.wavy-mini .o-wavy-mini02 .item_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.wavy-mini .o-wavy-mini02 .-full .item_item {
  width: 100%;
}
#products-detail.wavy-mini .o-wavy-mini02 .functionName {
  border: 1px solid #7a706c;
  line-height: 40px;
  padding: 0px 1em;
  text-align: center;
  display: inline-block;
  font-size: 1.8rem;
  min-width: 200px;
  margin-bottom: 20px;
  margin-top: -0.4em;
  background: #7a706c;
}
#products-detail.wavy-mini .o-wavy-mini03 {
  padding: 100px 0;
}
#products-detail.wavy-mini .o-wavy-mini03 .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini03 .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.wavy-mini .o-wavy-mini03 .feature_blocks::before {
    display: none;
  }
}
#products-detail.wavy-mini .o-wavy-mini03 .ttl {
  font-size: 2.2rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini03 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini03 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini03 .subttl {
    font-size: 2rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini03 .item_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini03 .item_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.wavy-mini .o-wavy-mini03 .item_list:last-child {
  margin-bottom: 0px;
}
#products-detail.wavy-mini .o-wavy-mini03 .item_item {
  padding: 10px;
  width: 50%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini03 .item_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 15px;
  }
}
#products-detail.wavy-mini .o-wavy-mini03 .item_item .lead {
  margin-bottom: 1.2em;
}
#products-detail.wavy-mini .o-wavy-mini03 .item_item .caution {
  font-size: 1.2rem;
}
#products-detail.wavy-mini .o-wavy-mini03 .item_item dt {
  margin-bottom: 10px;
}
#products-detail.wavy-mini .o-wavy-mini03 .item_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.wavy-mini .o-wavy-mini03 .item_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.wavy-mini .o-wavy-mini03 .item_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.wavy-mini .o-wavy-mini03 .-full .item_item {
  width: 100%;
}
#products-detail.wavy-mini .o-wavy-mini03 .functionName {
  border: 1px solid #7a706c;
  line-height: 40px;
  padding: 0px 1em;
  text-align: center;
  display: inline-block;
  font-size: 1.8rem;
  min-width: 200px;
  margin-bottom: 20px;
  margin-top: -0.4em;
  background: #7a706c;
  color: #fff;
}
#products-detail.wavy-mini .o-wavy-mini04 {
  padding: 100px 0;
  background: #373f42;
  color: #fff;
}
#products-detail.wavy-mini .o-wavy-mini04 .mainImg {
  text-align: center;
  margin: 50px auto 40px;
}
#products-detail.wavy-mini .o-wavy-mini04 .ttl {
  font-size: 2.2rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini04 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini04 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini04 .subttl {
    font-size: 2rem;
  }
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini04 .mode_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_list:last-child {
  margin-bottom: 0px;
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_item {
  padding: 10px;
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini04 .mode_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 15px;
  }
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_item .child {
  border: 1px solid #fff;
  padding: 40px;
  height: 100%;
}
#products-detail.wavy-mini .o-wavy-mini04 h4 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_block {
  border: 1px solid #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 60px;
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_child {
  width: 70%;
  padding: 40px;
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_child.img {
  width: 30%;
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_function .img {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.wavy-mini .o-wavy-mini04 .mode_function p {
  font-size: 1.3rem;
}
#products-detail.wavy-mini .o-wavy-mini05 {
  color: #fff;
}
#products-detail.wavy-mini .o-wavy-mini05 .howto_list {
  display: flex;
  flex-flow: row wrap;
}
#products-detail.wavy-mini .o-wavy-mini05 .howto_item {
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-mini .o-wavy-mini05 .howto_item {
    width: 100%;
  }
}
#products-detail.wavy-mini .o-wavy-mini05 .howto_item dl {
  margin: 0px 0px 30px;
}
#products-detail.wavy-mini .o-wavy-mini05 .howto_item dl dt {
  margin-bottom: 20px;
}
#products-detail.wavy-mini .o-wavy-mini05 .howto_item dl dt img {
  width: 100%;
}
#products-detail.wavy-mini .o-wavy-mini05 .howto_item li {
  line-height: 1.5;
  margin-bottom: 5px;
}

/*==================================================================
    #products-detail.photo-plus-shiny
===================================================================*/
#products-detail.photo-plus-shiny .o-photo-plus-shiny01 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny01 {
    padding: 60px 0 0;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny01 p {
  font-size: 2rem;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 {
    padding: 60px 0 0;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_blocks {
  margin-bottom: 60px;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_blocks::before {
    display: none;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_blocks:nth-of-type(1), #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_blocks:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_blocks .lead {
  font-size: 1.6rem;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .subttl {
    font-size: 2rem;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px -5px 0px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02_item {
  padding: 5px;
  width: 20%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02_item dt {
  margin-bottom: 10px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_double {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_double {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_double .txt {
  width: 50%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_double .txt {
    width: 100%;
    padding-right: 0px;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_double .img {
  width: 50%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny02 .feature_double .img {
    width: 100%;
  }
}
#products-detail.photo-plus-shiny .dailymode_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 0px;
}
#products-detail.photo-plus-shiny .dailymode_item {
  padding: 20px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .dailymode_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products-detail.photo-plus-shiny .dailymode_item dt {
  font-size: 2rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 40px;
  margin-bottom: 20px;
}
#products-detail.photo-plus-shiny .dailymode_item dt.ion {
  background-color: #c2d8d0;
}
#products-detail.photo-plus-shiny .dailymode_item dt.ems {
  background-color: #d3d3d3;
}
#products-detail.photo-plus-shiny .dailymode_item dt.led {
  background-color: #c69ea3;
}
#products-detail.photo-plus-shiny .dailymode_item dd {
  display: flex;
  flex-flow: row wrap;
}
#products-detail.photo-plus-shiny .dailymode_item dd .img {
  width: 140px;
  padding-right: 20px;
}
#products-detail.photo-plus-shiny .dailymode_item dd .img + p {
  width: calc(100% - 140px);
}
#products-detail.photo-plus-shiny .dailymode_item .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .dailymode_item .caution {
    font-size: 1rem;
  }
}
#products-detail.photo-plus-shiny .dailymode_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny03 {
    padding: 60px 0;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 .feature_blocks {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny03 .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.photo-plus-shiny .o-photo-plus-shiny03 .feature_blocks::before {
    display: none;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 .feature_blocks:nth-of-type(1), #products-detail.photo-plus-shiny .o-photo-plus-shiny03 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 .feature_blocks:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 .feature_blocks .lead {
  font-size: 1.6rem;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny03 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny03 .subttl {
    font-size: 2rem;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03 p {
  font-size: 1.6rem;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny03_list {
    margin: 0px 0px 20px;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl {
  padding: 30px;
  width: 50%;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd li:last-child::after {
  display: none;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.2rem;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd.image {
  margin: 0px -10px 10px;
  display: flex;
  flex-flow: row wrap;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd.image .main {
  width: 70%;
  padding: 10px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny03_list dl dd.image .sub {
  width: 30%;
  padding: 10px;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04 {
  padding: 100px 0;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny04_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl a:hover {
  opacity: 0.8;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dd {
    width: 70%;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-shiny .o-photo-plus-shiny04_list dl dd span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    #products-detail.photo-plus
===================================================================*/
#products-detail.photo-plus .o-photo-plus01 {
  padding: 100px 0;
}
#products-detail.photo-plus .o-photo-plus01 p {
  font-size: 2rem;
}
#products-detail.photo-plus .o-photo-plus01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -30px 20px;
}
@media screen and (max-width: 1000px) {
  #products-detail.photo-plus .o-photo-plus01_list {
    margin: 0px 0px 20px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus01_list {
    margin: 0px 0px 20px;
  }
}
#products-detail.photo-plus .o-photo-plus01_list dl {
  padding: 30px;
  width: 33.3333333333%;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-top: -1px;
}
@media screen and (max-width: 1000px) {
  #products-detail.photo-plus .o-photo-plus01_list dl {
    width: 50%;
    padding: 30px 15px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus01_list dl {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photo-plus .o-photo-plus01_list dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd li:last-child::after {
  display: none;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.2rem;
}
#products-detail.photo-plus .o-photo-plus01_list dl dd.image {
  margin-bottom: 15px;
}
#products-detail.photo-plus .o-photo-plus02 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus02 {
    padding: 40px 0px;
  }
}
#products-detail.photo-plus .o-photo-plus02_list {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus02_list {
    flex-flow: column;
  }
}
#products-detail.photo-plus .o-photo-plus02_item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus02_item {
    width: 100%;
    text-align: center;
  }
}
#products-detail.photo-plus .o-photo-plus02_item .txt {
  padding: 8%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus02_item .txt {
    padding: 15px;
  }
}
#products-detail.photo-plus .o-photo-plus02 .develop_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -20px;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus02 .develop_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products-detail.photo-plus .o-photo-plus02 .develop_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus .o-photo-plus02 .develop_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
  #products-detail.photo-plus .o-photo-plus02 .develop_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.photo-plus .o-photo-plus02 .develop_item dl dt {
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  line-height: 1.5;
  padding: 10px 0px;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
#products-detail.photo-plus .o-photo-plus02 .develop_item dl dd.image {
  margin-bottom: 20px;
}

/*==================================================================
    #products-detail.bloom-wr-star
===================================================================*/
#products-detail.bloom-wr-star .lead_outline em {
  font-size: 2.2rem !important;
}
#products-detail.bloom-wr-star .recommended_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .recommended_list {
    flex-flow: column;
  }
}
#products-detail.bloom-wr-star .recommended_list + .txt {
  text-align: right;
  padding-top: 10px;
}
#products-detail.bloom-wr-star .recommended_item {
  padding: 20px;
  width: calc((100% - 30px) / 2);
  background: #c5baba;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .recommended_item {
    width: 100%;
  }
}
#products-detail.bloom-wr-star .recommended_item:last-of-type {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .recommended_item:last-of-type {
    margin-left: 0px;
    margin-top: 20px;
  }
}
#products-detail.bloom-wr-star .recommended_item p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .recommended_item p {
    font-size: 1.5rem;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star01 {
  padding: 100px 0;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star01 {
    padding: 40px 0px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star01 p {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
#products-detail.bloom-wr-star .o-bloom-wr-star01 p.caution {
  font-size: 1.3rem;
}
#products-detail.bloom-wr-star .o-bloom-wr-star01 p span {
  font-size: 1.3rem;
  display: block;
}
#products-detail.bloom-wr-star .o-bloom-wr-star01 h2 + p {
  text-align: left;
}
#products-detail.bloom-wr-star .o-bloom-wr-star01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: -20px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star01_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star01_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star01_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star01_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star01_item .ttl {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}
#products-detail.bloom-wr-star .o-bloom-wr-star01_item .ttl em {
  display: inline-block;
  background: #485969;
  color: #fff;
  height: 30px;
  line-height: 30px;
  margin-bottom: 15px;
  padding: 0px 2em;
  border-radius: 20px;
  font-size: 1.5rem;
}
#products-detail.bloom-wr-star .o-bloom-wr-star01_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star01_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star02 p {
  font-size: 1.6rem;
  text-align: center;
}
#products-detail.bloom-wr-star .o-bloom-wr-star02 .howto_list {
  text-align: center;
  max-width: 800px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star02 .howto_list {
    max-width: 600px;
    width: 90%;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star02 .howto_list picture {
  margin-bottom: 50px;
  display: block;
}
#products-detail.bloom-wr-star .o-bloom-wr-star02 .howto_list picture:last-child {
  margin-bottom: 20px;
}
#products-detail.bloom-wr-star .o-bloom-wr-star02 dl {
  display: flex;
  flex-flow: column;
  padding: 20px;
  border: 4px solid #33393e;
  align-items: center;
  max-width: 500px;
  margin: 40px auto 40px;
}
#products-detail.bloom-wr-star .o-bloom-wr-star02 dl dt {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
#products-detail.bloom-wr-star .o-bloom-wr-star02 dl dd {
  line-height: 1.6;
}
#products-detail.bloom-wr-star .o-bloom-wr-star03 {
  padding: 0px 0 100px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star03 {
    padding-bottom: 60px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star03_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star03_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl a:hover {
  opacity: 0.8;
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dd {
    width: 70%;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-wr-star .o-bloom-wr-star03_list dl dd span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    #products-detail.bloom-eye
===================================================================*/
#products-detail.bloom-eye .lead_outline em {
  font-size: 2.2rem !important;
}
#products-detail.bloom-eye .o-bloom-eye01 {
  padding: 100px 0;
}
#products-detail.bloom-eye .o-bloom-eye01 p {
  font-size: 1.6rem;
}
#products-detail.bloom-eye .o-bloom-eye01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 0px;
}
#products-detail.bloom-eye .o-bloom-eye01_item {
  padding: 20px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-eye .o-bloom-eye01_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products-detail.bloom-eye .o-bloom-eye01_item .img {
  margin-bottom: 20px;
}
#products-detail.bloom-eye .o-bloom-eye01_item .ttl {
  font-size: 2.6rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-eye .o-bloom-eye01_item .ttl {
    font-size: 2rem;
  }
}
#products-detail.bloom-eye .o-bloom-eye01_item p {
  font-family: "Poppins", sans-serif;
}
#products-detail.bloom-eye .o-bloom-eye01_item p:last-of-type {
  margin-bottom: 0;
}
#products-detail.bloom-eye .o-bloom-eye01_item p img {
  max-width: 160px;
}
#products-detail.bloom-eye .o-bloom-eye01_item .lead {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-eye .o-bloom-eye01_item .lead {
    font-size: 1.4rem;
  }
}
#products-detail.bloom-eye .o-bloom-eye01_item .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-eye .o-bloom-eye01_item .caution {
    font-size: 1rem;
  }
}
#products-detail.bloom-eye .o-bloom-eye01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.bloom-eye .o-bloom-eye02 p {
  font-size: 1.6rem;
  text-align: center;
}
#products-detail.bloom-eye .o-bloom-eye02 .howto_list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-eye .o-bloom-eye02 .howto_list {
    max-width: 600px;
    width: 90%;
    margin: 0px auto;
    flex-flow: column;
  }
}
#products-detail.bloom-eye .o-bloom-eye02 .howto_list picture {
  margin-bottom: 50px;
  display: block;
  padding: 0px 10px;
}
#products-detail.bloom-eye .o-bloom-eye02 .howto_list picture:last-child {
  margin-bottom: 20px;
}
#products-detail.bloom-eye .o-bloom-eye02 dl {
  display: flex;
  flex-flow: column;
  padding: 20px;
  border: 4px solid #33393e;
  align-items: center;
  max-width: 500px;
  margin: 40px auto 40px;
}
#products-detail.bloom-eye .o-bloom-eye02 dl dt {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
#products-detail.bloom-eye .o-bloom-eye02 dl dd {
  line-height: 1.6;
}

/*==================================================================
    #products-detail.photo-shine
===================================================================*/
#products-detail.photo-shine .feature .subttl {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin-bottom: 40px;
}
#products-detail.photo-shine .feature .ttlblock {
  font-size: 3.4rem;
  font-weight: bold;
  padding: 0.6em;
  margin-bottom: 30px;
  margin-top: 80px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .feature .ttlblock {
    margin-bottom: 15px;
    font-size: 1.8rem;
    margin-top: 30px;
  }
}
#products-detail.photo-shine .feature .ttlblock span {
  border: 1px solid #000;
  padding: 0.3em 10px;
  margin-right: 10px;
  color: #000;
  font-size: 1.3rem;
  font-weight: normal;
}
#products-detail.photo-shine .feature_blocks {
  background: none;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .feature_blocks .img {
    margin-bottom: 20px;
  }
}
#products-detail.photo-shine .feature_blocks::before {
  display: none;
}
#products-detail.photo-shine .feature .ttl {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  margin-bottom: 20px;
}
#products-detail.photo-shine .o-photo-shine01 {
  padding: 100px 0;
}
#products-detail.photo-shine .o-photo-shine01 p {
  margin-bottom: 10px;
}
#products-detail.photo-shine .o-photo-shine01 p span {
  font-size: 1.3rem;
  display: block;
}
#products-detail.photo-shine .o-photo-shine01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .o-photo-shine01_list {
    margin: 0px;
    flex-flow: column;
  }
}
#products-detail.photo-shine .o-photo-shine01_item {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .o-photo-shine01_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
}
#products-detail.photo-shine .o-photo-shine01_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .o-photo-shine01_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.photo-shine .whatsRF {
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .whatsRF {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.photo-shine .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photo-shine .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.photo-shine .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.photo-shine .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.photo-shine .whatsRF .img img {
  width: 100%;
}
#products-detail.photo-shine .points {
  padding: 100px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points {
    padding: 60px 0px;
  }
}
#products-detail.photo-shine .points_block {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block {
    padding-bottom: 40px;
  }
}
#products-detail.photo-shine .points_block.-temp h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-temp h2 {
    font-size: 1.8rem;
  }
}
#products-detail.photo-shine .points_block.-temp p {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-temp p {
    font-size: 1.4rem;
  }
}
#products-detail.photo-shine .points_block.-temp .img {
  margin: 0px auto 30px;
  max-width: 800px;
}
#products-detail.photo-shine .points_block.-about {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-about {
    margin-bottom: 40px;
    padding: 20px;
  }
}
#products-detail.photo-shine .points_block.-about h3 {
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #677e93;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-about h3 {
    font-size: 1.8rem;
  }
}
#products-detail.photo-shine .points_block.-about h3 span {
  font-weight: normal;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 10px;
  color: #a3a3a3;
  display: block;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-about h3 span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-about .points_item {
    margin-bottom: 20px;
  }
}
#products-detail.photo-shine .points_block.-easy h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}
#products-detail.photo-shine .points_block.-easy h3 {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #677e93;
}
#products-detail.photo-shine .points_block.-easy p {
  margin-bottom: 10px;
  line-height: 1.6;
}
#products-detail.photo-shine .points_block.-easy .points_list {
  align-items: unset;
  padding-top: 30px;
  margin: 0px -10px;
}
#products-detail.photo-shine .points_block.-easy .points_item {
  background-color: #fff;
  padding: 30px;
  margin: 10px;
  width: calc((100% - 80px) / 4);
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-easy .points_item {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photo-shine .points_block.-easy .points_item .ttl {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #496566;
  margin-bottom: 15px;
  text-align: center;
}
#products-detail.photo-shine .points_block.-easy .points_item dl {
  margin-bottom: 20px;
}
#products-detail.photo-shine .points_block.-easy .points_item dl:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-easy .points_item dl {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
}
#products-detail.photo-shine .points_block.-easy .points_item dl dt {
  padding: 15px;
  border: 2px solid #7a706c;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-easy .points_item dl dt {
    margin-right: 15px;
    margin-bottom: 0px;
    min-width: 160px;
  }
}
#products-detail.photo-shine .points_block.-easy .points_item dl dt span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #7a706c;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-easy .points_item dl dt span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-easy .points_item dl dd {
    font-size: 1.4rem;
  }
}
#products-detail.photo-shine .points_block.-long {
  padding-bottom: 0px;
}
#products-detail.photo-shine .points_block.-long h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-long h2 {
    font-size: 1.8rem;
  }
}
#products-detail.photo-shine .points_block.-long ul {
  display: flex;
  flex-flow: row nowrap;
  max-width: 940px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-long ul {
    margin: 0px -5px 0px;
  }
}
#products-detail.photo-shine .points_block.-long ul li {
  padding: 0px 15px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_block.-long ul li {
    padding: 0px 5px;
  }
}
#products-detail.photo-shine .points_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
#products-detail.photo-shine .points_item {
  width: 50%;
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-shine .points_item {
    width: 100%;
    padding: 0px;
  }
}
#products-detail.photo-shine .caution {
  font-size: 1.2rem;
}

/*==================================================================
    #products-detail.lift-dryer
===================================================================*/
#products-detail.lift-dryer .leadpoint {
  padding: 80px 0px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .leadpoint {
    padding: 40px 0px;
  }
}
#products-detail.lift-dryer .leadpoint h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .leadpoint h3 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.lift-dryer .leadpoint_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.lift-dryer .leadpoint_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .leadpoint_list {
    margin: 0px -15px;
  }
}
#products-detail.lift-dryer .leadpoint_item {
  padding: 0px 30px;
  text-align: center;
  width: 33.3333333333%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .leadpoint_item {
    padding: 0px 15px;
  }
}
#products-detail.lift-dryer .leadpoint_item p {
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .leadpoint_item p {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
#products-detail.lift-dryer .leadpoint_item dt {
  margin-bottom: 20px;
}
#products-detail.lift-dryer .leadpoint_item dd {
  font-size: 1.8rem;
  color: #a3a3a3;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .leadpoint_item dd {
    font-size: 1.4rem;
  }
}
#products-detail.lift-dryer .howto {
  background-color: #c1bdb4;
}
#products-detail.lift-dryer .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .howto_list {
    flex-flow: column;
    padding-top: 30px;
  }
}
#products-detail.lift-dryer .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.lift-dryer .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.lift-dryer .howto dl dt {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  text-align: center;
  line-height: 40px;
  font-size: 1.8rem;
  font-weight: bold;
}
#products-detail.lift-dryer .howto dl dd {
  color: #fff;
}
#products-detail.lift-dryer .howto dl dd.txt {
  margin-bottom: 20px;
  line-height: 1.4;
}
#products-detail.lift-dryer .howto dl dd span {
  font-size: 1.2rem;
  padding-top: 5px;
  display: block;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .feature {
    padding: 40px 0px;
  }
}
#products-detail.lift-dryer .feature .ttl {
  font-size: 2.2rem !important;
}
#products-detail.lift-dryer .feature .ttl span {
  font-size: 1.4rem;
  display: block;
  padding-top: 10px;
  position: relative;
  padding-left: 30px;
  color: #c6c6c6;
}
#products-detail.lift-dryer .feature .ttl span::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #c6c6c6;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transform: translateY(-50%);
}
#products-detail.lift-dryer .feature .subttl {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 10px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
#products-detail.lift-dryer .feature .subttl span {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
#products-detail.lift-dryer .feature_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.lift-dryer .feature_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.lift-dryer .graph {
  padding: 40px 0;
}
#products-detail.lift-dryer .graph_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .graph_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.lift-dryer .graph_list:last-child {
  margin-bottom: 0px;
}
#products-detail.lift-dryer .graph_item {
  padding: 20px;
  width: 50%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .graph_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products-detail.lift-dryer .graph_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.lift-dryer .graph_item .ttl {
  text-align: center;
  margin-bottom: 15px !important;
}
#products-detail.lift-dryer .graph_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .graph_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.lift-dryer .graph_item table {
  border-collapse: collapse;
  width: 100%;
}
#products-detail.lift-dryer .graph_item table thead th {
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 1.5rem;
  border: 1px solid #939393;
  background-color: #6e6e6e;
  color: #fff;
}
#products-detail.lift-dryer .graph_item table tbody td {
  border: 1px solid #939393;
  padding: 10px;
  line-height: 1.5;
}
#products-detail.lift-dryer .technology {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .technology {
    padding: 40px 0px;
  }
}
#products-detail.lift-dryer .technology h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
#products-detail.lift-dryer .technology h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#products-detail.lift-dryer .technology h4 em {
  display: block;
  padding-bottom: 10px;
  font-size: 5rem;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}
#products-detail.lift-dryer .technology h4 span {
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  padding-top: 10px;
}
#products-detail.lift-dryer .technology_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.lift-dryer .technology_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .technology_list {
    flex-flow: column;
    align-items: center;
  }
}
#products-detail.lift-dryer .technology_item {
  padding: 40px 35px;
  text-align: center;
  width: calc((100% - 40px) / 2);
  max-width: 480px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.lift-dryer .technology_item {
    width: 100%;
    margin-right: 0px;
  }
}
#products-detail.lift-dryer .technology_item:nth-child(2n) {
  margin-right: 0px;
}
#products-detail.lift-dryer .technology_item dt {
  margin-bottom: 20px;
}
#products-detail.lift-dryer .technology_item dd {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3b3b3b;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
#products-detail.lift-dryer .technology_item dl + p {
  margin-top: 30px;
  display: inline-block;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  padding: 5px 0;
}
#products-detail.lift-dryer .technology_item dl + p + p {
  margin-top: 10px;
  text-align: left;
  padding: 15px;
  background-color: #f8f8f8;
}
#products-detail.lift-dryer .technology_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.lift-dryer .technology_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/*==================================================================
    #products-detail.needle-lift-cream
===================================================================*/
#products-detail.needle-lift-cream .leadpoint_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -15px 70px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .leadpoint_list {
    margin-bottom: 50px;
    flex-flow: column;
  }
}
#products-detail.needle-lift-cream .leadpoint_item {
  padding: 0px 15px;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .leadpoint_item {
    padding: 0px 15px;
    width: 100%;
    margin-bottom: 15px;
  }
}
#products-detail.needle-lift-cream .leadpoint_item dl {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
}
#products-detail.needle-lift-cream .leadpoint_item dt {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  color: #c69ea3;
}
#products-detail.needle-lift-cream .leadpoint_item dd {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .leadpoint_item dd {
    font-size: 1.3rem;
  }
}
#products-detail.needle-lift-cream .howto {
  background-color: #666f7e;
}
#products-detail.needle-lift-cream .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .howto_list {
    flex-flow: column;
    padding-top: 30px;
  }
}
#products-detail.needle-lift-cream .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.needle-lift-cream .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.needle-lift-cream .howto dl dt {
  margin-bottom: 20px;
  text-align: center;
}
#products-detail.needle-lift-cream .howto dl dd {
  color: #fff;
  text-align: left;
  line-height: 1.5;
}
#products-detail.needle-lift-cream .howto dl dd.txt {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .feature {
    padding: 40px 0px;
  }
}
#products-detail.needle-lift-cream .feature .ttl {
  font-size: 2.2rem !important;
}
#products-detail.needle-lift-cream .feature .ttl span {
  font-size: 1.4rem;
  display: block;
  padding-top: 10px;
  position: relative;
  padding-left: 30px;
  color: #c6c6c6;
}
#products-detail.needle-lift-cream .feature .ttl span::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #c6c6c6;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transform: translateY(-50%);
}
#products-detail.needle-lift-cream .feature .subttl {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 10px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
#products-detail.needle-lift-cream .feature .subttl span {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
#products-detail.needle-lift-cream .feature_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.needle-lift-cream .feature_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.needle-lift-cream .feature ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products-detail.needle-lift-cream .feature ul li {
  width: 20%;
  max-width: 200px;
  margin: 0px auto;
  padding: 0px 15px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .feature ul li {
    width: 50%;
    max-width: none;
    padding: 0px 5px;
    margin-bottom: 20px;
  }
}
#products-detail.needle-lift-cream .feature ul li dl {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#products-detail.needle-lift-cream .feature ul li dt {
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
}
#products-detail.needle-lift-cream .feature ul li dd {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
}
#products-detail.needle-lift-cream .technology {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .technology {
    padding: 40px 0px;
  }
}
#products-detail.needle-lift-cream .technology h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
#products-detail.needle-lift-cream .technology h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#products-detail.needle-lift-cream .technology h4 em {
  display: block;
  padding-bottom: 10px;
  font-size: 5rem;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}
#products-detail.needle-lift-cream .technology h4 span {
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  padding-top: 10px;
}
#products-detail.needle-lift-cream .technology_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.needle-lift-cream .technology_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .technology_list {
    flex-flow: column;
  }
}
#products-detail.needle-lift-cream .technology_item {
  padding: 40px 35px;
  text-align: center;
  width: calc((100% - 40px) / 2);
  max-width: 480px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .technology_item {
    width: 100%;
  }
}
#products-detail.needle-lift-cream .technology_item h4 {
  color: #8fbed5;
}
#products-detail.needle-lift-cream .technology_item:last-child {
  margin-right: 0px;
}
#products-detail.needle-lift-cream .technology_item:last-child h4 {
  color: #de9a91;
}
#products-detail.needle-lift-cream .technology_item:last-child li {
  border: 1px solid #de9a91;
  color: #de9a91;
}
#products-detail.needle-lift-cream .technology_item dt {
  margin-bottom: 20px;
}
#products-detail.needle-lift-cream .technology_item dd {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3b3b3b;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
#products-detail.needle-lift-cream .technology_item ul li {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  border: 1px solid #8fbed5;
  padding: 10px;
  line-height: 1.5;
  color: #8fbed5;
}
#products-detail.needle-lift-cream .benefits {
  padding: 80px 0px;
  background-color: #e7dcdb;
}
#products-detail.needle-lift-cream .benefits p {
  font-size: 1.6rem !important;
  text-align: left;
  margin-bottom: 10px !important;
}
#products-detail.needle-lift-cream .cosmetics {
  padding: 100px 0;
}
#products-detail.needle-lift-cream .cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.needle-lift-cream .cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.needle-lift-cream .cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.needle-lift-cream .cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.needle-lift-cream .cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.needle-lift-cream .cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.needle-lift-cream .cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.needle-lift-cream .cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.needle-lift-cream .cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.needle-lift-cream .cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.needle-lift-cream .cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    #products-detail.photo-plus-prestige-pro
===================================================================*/
#products-detail.photo-plus-prestige-pro .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.photo-plus-prestige-pro .feature_blocks::before {
    display: none;
  }
}
#products-detail.photo-plus-prestige-pro .feature_blocks.-center {
  text-align: center;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 {
    padding: 0px 0px 30px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .lead_box {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .lead_box {
    margin-bottom: 25px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0px -15px 60px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_list {
    flex-flow: column;
    align-items: unset;
    margin: 0px 0px 40px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item {
  width: 50%;
  padding: 0px 15px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item {
    width: 100%;
    padding: 0px 0px 20px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child {
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child {
    align-items: unset;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child h3 {
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #6e8396;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child h3 {
    font-size: 2.2rem;
    text-align: center;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child h3 span {
  display: block;
  padding-top: 10px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child h3 span {
    font-size: 1.2rem;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child dl dt {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child dl dt {
    margin: 0px auto 20px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child dl dd {
  padding-left: 15px;
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro01 .mode_item .child dl dd {
    padding-left: 0px;
    width: 100%;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 {
    padding: 40px 0px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 .eyecare_list {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 .eyecare_list {
    flex-flow: column;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 .eyecare_item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 .eyecare_item {
    width: 100%;
    text-align: center;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 .eyecare_item .txt {
  padding: 0px 8%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 .eyecare_item .txt {
    padding: 15px;
    text-align: left;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro02 .eyecare_item .txt .ttl {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 h2 {
  margin-bottom: 40px;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .howto_list {
    flex-flow: column;
    margin: 0px 0px 50px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .howto_list dl {
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .howto_list dl {
    width: 100%;
    padding: 0px;
  }
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .howto_list dl:first-child {
    margin-bottom: 40px;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .howto_list dl dt {
  margin-bottom: 30px;
  border-top: 1px solid #939393;
  border-bottom: 1px solid #939393;
  padding: 15px 0;
  text-align: center;
  color: #939393;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_list {
  max-width: 900px;
  border: 2px solid #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_list {
    flex-flow: column;
    max-width: 80%;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_item {
  width: 50%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_item {
    width: 100%;
  }
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_item:first-child {
  padding: 30px;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_item h3 {
  color: #fff;
  text-align: left;
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
  font-size: 2.4rem;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_item p {
  text-align: left;
  margin-bottom: 0px;
  padding: 0px;
}
#products-detail.photo-plus-prestige-pro .o-photo-plus-prestige-pro03 .eyemode_item p.caution {
  font-size: 1.2rem;
}

/*==================================================================
    #products-detail.hotshave
===================================================================*/
#products-detail.hotshave .feature_blocks {
  margin-bottom: 30px;
  padding-bottom: 0px;
  background: none;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.hotshave .feature_blocks::before {
    display: none;
  }
}
#products-detail.hotshave .feature_blocks.-center {
  text-align: center;
}
#products-detail.hotshave .o-hotshave01 {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave01 {
    padding: 0px 0px 30px;
  }
}
#products-detail.hotshave .o-hotshave01 .lead_box {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave01 .lead_box {
    margin-bottom: 25px;
  }
}
#products-detail.hotshave .o-hotshave02 {
  padding: 100px 0;
  background-color: #FBF6EA;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave02 {
    padding: 40px 0px;
  }
}
#products-detail.hotshave .o-hotshave02 .feature_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -15px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave02 .feature_list {
    flex-flow: column;
    margin: 0px;
  }
}
#products-detail.hotshave .o-hotshave02 .feature_item {
  width: 33.3333333333%;
  padding: 0px 15px;
  margin: 0px auto;
  max-width: 340px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave02 .feature_item {
    width: 100%;
    max-width: 400px;
    margin: 0px auto;
    padding: 0px 0px 50px;
  }
}
#products-detail.hotshave .o-hotshave02 .feature_item dt {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave02 .feature_item dt {
    margin-bottom: 20px;
  }
}
#products-detail.hotshave .o-hotshave02 .feature_item .ttl {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave02 .feature_item .ttl {
    margin-bottom: 15px;
  }
}
#products-detail.hotshave .o-hotshave02 .feature_item .txt {
  line-height: 1.6;
}
#products-detail.hotshave .o-hotshave03 {
  padding: 80px 0;
  background-color: #595651;
}
#products-detail.hotshave .o-hotshave03 h2 {
  margin-bottom: 40px;
}
#products-detail.hotshave .o-hotshave03 .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave03 .howto_list {
    flex-flow: column;
    margin: 0px 0px 50px;
  }
}
#products-detail.hotshave .o-hotshave03 .howto_list dl {
  width: 33.3333333333%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave03 .howto_list dl {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
}
#products-detail.hotshave .o-hotshave03 .howto_list dl dt {
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave03 .howto_list dl dt {
    text-align: left;
    margin-bottom: 15px;
  }
}
#products-detail.hotshave .o-hotshave03 .howto_list dl dd {
  color: #fff;
  line-height: 1.5;
  font-size: 1.5rem;
}
#products-detail.hotshave .o-hotshave03 .eyemode_list {
  max-width: 900px;
  border: 2px solid #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave03 .eyemode_list {
    flex-flow: column;
    max-width: 80%;
  }
}
#products-detail.hotshave .o-hotshave03 .eyemode_item {
  width: 50%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.hotshave .o-hotshave03 .eyemode_item {
    width: 100%;
  }
}
#products-detail.hotshave .o-hotshave03 .eyemode_item:first-child {
  padding: 30px;
}
#products-detail.hotshave .o-hotshave03 .eyemode_item h3 {
  color: #fff;
  text-align: left;
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
  font-size: 2.4rem;
}
#products-detail.hotshave .o-hotshave03 .eyemode_item p {
  text-align: left;
  margin-bottom: 0px;
  padding: 0px;
}
#products-detail.hotshave .o-hotshave03 .eyemode_item p.caution {
  font-size: 1.2rem;
}

/*==================================================================
    #products-detail.photo-plus-prestige-sp
===================================================================*/
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01 {
    padding: 50px 0;
  }
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01 p {
  font-size: 2rem;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -30px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list {
    margin: 0px 0px 20px;
  }
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl {
  padding: 30px;
  width: 33.3333333333%;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dt em {
  font-size: 1.3rem;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd li:last-child::after {
  display: none;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.2rem;
}
#products-detail.photo-plus-prestige-sp .o-photo-plus-prestige-sp01_list dl dd.image {
  margin-bottom: 10px;
}
#products-detail.photo-plus-prestige-sp .moisture {
  padding: 80px 0;
  background-image: url(/en/asset/img/products/photo-plus-prestige-sp/bg-moisture.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .moisture {
    padding: 40px 0;
  }
}
#products-detail.photo-plus-prestige-sp .moisture-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0px auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .moisture-inner {
    flex-flow: column;
  }
}
#products-detail.photo-plus-prestige-sp .moisture .img {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .moisture .img {
    width: 100%;
    margin-bottom: 30px;
  }
}
#products-detail.photo-plus-prestige-sp .moisture .img img {
  width: 100%;
  max-width: 320px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .moisture .img img {
    max-width: 320px;
    width: 80%;
  }
}
#products-detail.photo-plus-prestige-sp .moisture .txt {
  width: 60%;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .moisture .txt {
    width: 100%;
    padding: 0;
  }
}
#products-detail.photo-plus-prestige-sp .moisture .txt h3 {
  font-size: 2.3rem;
  margin-bottom: 40px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp .moisture .txt h3 {
    margin-bottom: 25px;
  }
}
#products-detail.photo-plus-prestige-sp .moisture .txt p {
  line-height: 1.5;
  font-size: 1.2rem !important;
}

/*==================================================================
    #products-detail.bloom-5
===================================================================*/
#products-detail.bloom-5 .lead_outline em {
  font-size: 2.2rem !important;
}
#products-detail.bloom-5 .ttl span {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  display: block;
}
#products-detail.bloom-5 .recommended_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .recommended_list {
    flex-flow: column;
  }
}
#products-detail.bloom-5 .recommended_list + .txt {
  text-align: right;
  padding-top: 10px;
}
#products-detail.bloom-5 .recommended_item {
  padding: 20px;
  width: calc((100% - 30px) / 2);
  background: #c5baba;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .recommended_item {
    width: 100%;
  }
}
#products-detail.bloom-5 .recommended_item:last-of-type {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .recommended_item:last-of-type {
    margin-left: 0px;
    margin-top: 20px;
  }
}
#products-detail.bloom-5 .recommended_item p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .recommended_item p {
    font-size: 1.5rem;
  }
}
#products-detail.bloom-5 .o-bloom-5-01 {
  padding: 100px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-01 {
    padding: 40px 0px;
  }
}
#products-detail.bloom-5 .o-bloom-5-01 h3 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 10px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  line-height: 1.5;
}
#products-detail.bloom-5 .o-bloom-5-01 picture {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-01 picture {
    max-width: 440px;
  }
}
#products-detail.bloom-5 .o-bloom-5-02 p {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-02 p {
    text-align: left;
  }
}
#products-detail.bloom-5 .o-bloom-5-02 .ttl {
  margin-bottom: 30px;
  font-size: 2.4rem !important;
  text-align: left;
  font-weight: bold;
  max-width: 800px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-02 .ttl {
    font-size: 1.8rem !important;
  }
}
#products-detail.bloom-5 .o-bloom-5-02 .howto_list {
  text-align: center;
  max-width: 800px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-02 .howto_list {
    max-width: 600px;
    width: 90%;
  }
}
#products-detail.bloom-5 .o-bloom-5-02 .howto_list picture {
  margin-bottom: 50px;
  display: block;
}
#products-detail.bloom-5 .o-bloom-5-02 .howto_list picture:last-child {
  margin-bottom: 20px;
}
#products-detail.bloom-5 .o-bloom-5-02 dl {
  display: flex;
  flex-flow: column;
  padding: 20px;
  border: 4px solid #33393e;
  align-items: center;
  max-width: 500px;
  margin: 40px auto 40px;
}
#products-detail.bloom-5 .o-bloom-5-02 dl dt {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}
#products-detail.bloom-5 .o-bloom-5-02 dl dd {
  line-height: 1.6;
}
#products-detail.bloom-5 .o-bloom-5-03 {
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-03 {
    padding-bottom: 60px;
  }
}
#products-detail.bloom-5 .o-bloom-5-03_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-03_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.bloom-5 .o-bloom-5-03_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-03_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.bloom-5 .o-bloom-5-03_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.bloom-5 .o-bloom-5-03_list dl a:hover {
  opacity: 0.8;
}
#products-detail.bloom-5 .o-bloom-5-03_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.bloom-5 .o-bloom-5-03_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.bloom-5 .o-bloom-5-03_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-03_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.bloom-5 .o-bloom-5-03_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-03_list dl dd {
    width: 70%;
  }
}
#products-detail.bloom-5 .o-bloom-5-03_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-03_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.bloom-5 .o-bloom-5-03_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.bloom-5 .o-bloom-5-03_list dl dd span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    #vision
===================================================================*/
#vision .lead {
  padding: 0px 0px 100px;
}
#vision .lead_blocks .box {
  max-width: 900px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif;
}
#vision .lead_blocks .box_ttl {
  margin-bottom: 3em;
  text-align: center;
}
#vision .lead_blocks .box p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 1.4em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #vision .lead_blocks .box p {
    font-size: 1.4rem;
  }
}
#vision .lead_blocks .box p:last-of-type {
  margin-bottom: 0;
}

#vision .movie {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #vision .movie {
    padding: 0 0 8vw;
    margin-top: 0vw;
  }
}
@media screen and (max-width: 768px) {
  #vision .movie .h01 {
    margin-bottom: 20px;
  }
}
#vision .movie_inner {
  width: 100%;
  background-color: #000;
}
#vision .movie_box {
  max-width: 720px;
  margin: 0px auto;
}
#vision .movie_btn {
  max-width: 320px;
  margin: 0px auto 100px;
}
@media screen and (max-width: 768px) {
  #vision .movie_btn {
    margin-bottom: 60px;
  }
}
#vision .movie-list {
  display: flex;
  flex-flow: row wrap;
}
#vision .movie-list .item {
  width: 50%;
  padding: 15px;
  max-width: 640px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #vision .movie-list .item {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
#vision .movie_frame {
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
#vision .movie iframe, #vision .movie video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*==================================================================
    #development .index
===================================================================*/
#development .lead {
  padding: 0px 0px 100px;
}
#development .lead_blocks .box {
  max-width: 900px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif;
}
#development .lead_blocks .box_ttl {
  margin-bottom: 3em;
  text-align: center;
}
#development .lead_blocks .box p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 1.4em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #development .lead_blocks .box p {
    font-size: 1.4rem;
  }
}
#development .lead_blocks .box p:last-of-type {
  margin-bottom: 0;
}

#development .movie {
  display: flex;
  flex-flow: row nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  #development .movie {
    padding: 0 0 8vw;
    margin-top: 0vw;
  }
}
@media screen and (max-width: 768px) {
  #development .movie .h01 {
    margin-bottom: 20px;
  }
}
#development .movie_inner {
  width: 100%;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #development .movie_inner {
    padding: 4vw;
  }
}
#development .movie_box {
  max-width: 720px;
  margin: 0px auto;
}

/*==================================================================
    #development .blocks
===================================================================*/
#development .blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #development .blocks {
    display: block;
  }
}
#development .blocks.-blocks01 {
  flex-flow: row-reverse nowrap;
}
#development .blocks_box {
  width: 530px;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  #development .blocks_box {
    width: 100%;
  }
}
#development .blocks .txt {
  font-family: "Poppins", sans-serif;
}
#development .blocks .txt .ttl {
  font-size: 2.9rem;
  line-height: 1.3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #development .blocks .txt .ttl {
    font-size: 2.2rem;
  }
}
#development .blocks .txt p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  #development .blocks .txt p {
    font-size: 1.4rem;
  }
}
#development .blocks .txt p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #development .blocks .img img {
    width: 100%;
  }
}

/*==================================================================
    #development .upper
===================================================================*/
#development .upper {
  padding: 0 0 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #development .upper {
    padding: 0 0 40px;
  }
}
#development .upper_inner {
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #development .upper_inner {
    padding: 40px 0;
  }
}
#development .upper_inner::before {
  display: block;
  content: "";
  width: 85vw;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  #development .upper_inner::before {
    width: 100vw;
  }
}
#development .upper_inner .container {
  position: relative;
  z-index: 2;
}
#development .upper .blocks_box.-box01 {
  padding-left: 8px;
}
@media screen and (max-width: 768px) {
  #development .upper .blocks_box.-box01 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
#development .upper .blocks_box.-box02 .img li {
  margin-bottom: 20px;
}
#development .upper .blocks_box.-box02 .img li:last-child {
  margin-bottom: 0;
  padding-left: 45px;
}
@media screen and (max-width: 768px) {
  #development .upper .blocks_box.-box02 .img li:last-child {
    padding-left: 0;
  }
}
#development .upper .blocks_box.-box02 .img li img {
  width: 476px;
}
@media screen and (max-width: 768px) {
  #development .upper .blocks_box.-box02 .img li img {
    width: 100%;
  }
}

/*==================================================================
    #development .under
===================================================================*/
#development .under {
  padding: 100px 0 160px;
}
@media screen and (max-width: 768px) {
  #development .under {
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 768px) {
  #development .under .blocks_box.-box03 {
    margin-bottom: 40px;
  }
}
#development .under .blocks_box.-box03 .txt {
  margin-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #development .under .blocks_box.-box03 .txt {
    margin-bottom: 30px;
  }
}
#development .under .blocks_box.-box03 .txt::before {
  display: block;
  content: "";
  width: 1px;
  height: 85px;
  background-color: #000;
  position: absolute;
  bottom: -105px;
  right: 70px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #development .under .blocks_box.-box03 .txt::before {
    display: none;
  }
}
#development .under .blocks_box.-box04 {
  display: flex;
  flex-flow: column-reverse nowrap;
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  #development .under .blocks_box.-box04 {
    display: block;
    padding-top: 0;
  }
}
#development .under .blocks_box.-box04 .img {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  #development .under .blocks_box.-box04 .img {
    margin-bottom: 0;
  }
}
#development .under .blocks_box.-box04 .txt {
  position: relative;
}
@media screen and (max-width: 768px) {
  #development .under .blocks_box.-box04 .txt {
    margin-bottom: 30px;
  }
}
#development .under .blocks_box.-box04 .txt::before {
  display: block;
  content: "";
  width: 1px;
  height: 85px;
  background-color: #000;
  position: absolute;
  top: -120px;
  left: 70px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #development .under .blocks_box.-box04 .txt::before {
    display: none;
  }
}

/*==================================================================
    #faq-manual .products
===================================================================*/
#faq-manual .products {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products {
    padding: 0 0 60px;
  }
}
#faq-manual .products_cat {
  background-color: #000;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat {
    background-color: #272727;
    width: 100%;
    margin-bottom: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    transition: all 200ms ease;
    transform: translateY(100%);
  }
  #faq-manual .products_cat.open {
    transform: translateY(0);
  }
}
#faq-manual .products_cat span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 1px #6e8396;
  background-color: #fff;
  margin-right: 10px;
  position: relative;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat span {
    width: 24px;
    height: 24px;
    border: solid 1px #fff;
    background-color: transparent;
  }
}
#faq-manual .products_cat span::before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../img/common/icon_check_w.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat span::before {
    width: 14px;
    height: 14px;
    background-image: url(../img/common/icon_check_b.svg);
  }
}
#faq-manual .products_cat ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 50px 75px 30px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul {
    display: block;
    padding: 0;
  }
}
#faq-manual .products_cat ul li {
  width: 20%;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul li {
    width: 100%;
    padding: 0px;
  }
}
#faq-manual .products_cat ul li dl {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul li dl {
    text-align: left;
  }
}
#faq-manual .products_cat ul li dt {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul li dt {
    display: none;
  }
}
#faq-manual .products_cat ul li dt img {
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.16);
}
#faq-manual .products_cat ul li dd {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul li dd {
    justify-content: flex-start;
  }
}
#faq-manual .products_cat ul li dd em {
  display: inline-block;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul li dd em {
    font-size: 1.5rem;
  }
}
#faq-manual .products_cat ul li a {
  display: block;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul li a {
    width: 100%;
    padding: 4vw 6.6vw;
    position: relative;
  }
  #faq-manual .products_cat ul li a::before, #faq-manual .products_cat ul li a::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
  }
  #faq-manual .products_cat ul li a::before {
    background-color: #000;
    top: 1px;
  }
  #faq-manual .products_cat ul li a::after {
    background-color: rgba(255, 255, 255, 0.06);
    top: 0;
  }
}
#faq-manual .products_cat ul li a:hover span, #faq-manual .products_cat ul li a.active span {
  background-color: #6e8396;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat ul li a:hover span, #faq-manual .products_cat ul li a.active span {
    background-color: #fff;
  }
}
#faq-manual .products_cat ul li a:hover span::before, #faq-manual .products_cat ul li a.active span::before {
  transform: translate(-50%, -50%) scale(1);
}
#faq-manual .products_cat .all-btn {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat .all-btn {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
#faq-manual .products_cat .all-btn em {
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat .all-btn em {
    font-size: 1.5rem;
  }
}
#faq-manual .products_cat .all-btn a {
  display: block;
  width: 110px;
  padding: 10px 25px;
  border: solid 1px #707070;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat .all-btn a {
    width: 100%;
    padding: 4vw 6.6vw;
    border: none;
    background-color: transparent;
    color: #fff;
    justify-content: flex-start;
  }
}
#faq-manual .products_cat .all-btn a:hover span, #faq-manual .products_cat .all-btn a.active span {
  background-color: #6e8396;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat .all-btn a:hover span, #faq-manual .products_cat .all-btn a.active span {
    background-color: #fff;
  }
}
#faq-manual .products_cat .all-btn a:hover span::before, #faq-manual .products_cat .all-btn a.active span::before {
  transform: translate(-50%, -50%) scale(1);
}
#faq-manual .products_cat .close {
  display: none;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_cat .close {
    display: block;
    position: absolute;
    top: 4vw;
    right: 4vw;
  }
}
#faq-manual .products_overlay {
  display: none;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_overlay {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    transition: all 200ms ease;
    transform: scale(0);
  }
  #faq-manual .products_overlay.open {
    transform: scale(1);
  }
}
#faq-manual .products_search {
  display: none;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_search {
    display: block;
    position: fixed;
    right: 1vw;
    bottom: 80px;
    z-index: 99;
  }
  #faq-manual .products_search dl {
    text-align: center;
  }
  #faq-manual .products_search dl dd {
    font-size: 1.4rem;
    font-family: "Roboto Condensed", sans-serif;
    margin-top: -0.8em;
  }
}
#faq-manual .products_list {
  overflow: hidden;
}
#faq-manual .products_list ul {
  display: flex;
  flex-flow: row wrap;
}
#faq-manual .products_list ul li {
  width: 25%;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_list ul li {
    width: 50%;
    padding: 5px;
  }
}
#faq-manual .products_list ul li dl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_list ul li dl {
    margin-bottom: 30px;
  }
}
#faq-manual .products_list ul li dt {
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_list ul li dt {
    margin-bottom: 7px;
  }
}
#faq-manual .products_list ul li dt img {
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.16);
}
#faq-manual .products_list ul li dd {
  font-size: 1.5rem;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_list ul li dd {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
#faq-manual .products_list ul li .lang {
  margin-bottom: 0;
}
#faq-manual .products_list ul li .lang div {
  width: 100%;
  padding: 0 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_list ul li .lang div {
    padding: 0 2px;
  }
}
#faq-manual .products_list ul li .lang div:last-of-type {
  margin-bottom: 0px;
}
#faq-manual .products_list ul li .lang div a {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  line-height: 36px;
  color: #fff;
  text-align: center;
  background-color: #3e3e3e;
  border: 1px solid #3e3e3e;
}
@media screen and (max-width: 768px) {
  #faq-manual .products_list ul li .lang div a {
    font-size: 1rem;
    line-height: 28px;
  }
}
#faq-manual .products_list ul li .lang div a:hover {
  opacity: 0.6;
}
#faq-manual .products_list ul li .lang div a.-rev {
  background: #fff;
  border: 1px solid #3e3e3e;
  color: #000;
}

/*==================================================================
    .faq-form .checkbox
===================================================================*/
.faq-form .check input {
  display: none;
}
.faq-form .check input:checked + label::before {
  background-color: #000;
  background-image: url(../img/common/icon_check_w.svg);
}
.faq-form .check label {
  display: block;
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 45px;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .faq-form .check label {
    font-size: 1.4rem;
    padding-left: 30px;
  }
}
.faq-form .check label::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  border: solid 1px #000;
  background-position: 50% 50%;
  background-size: 19px 16px;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .faq-form .check label::before {
    width: 20px;
    height: 20px;
    background-size: 13px 11px;
  }
}
.faq-form .check label a {
  color: #000;
  text-decoration: underline;
}

/*==================================================================
    .faq-form .lead
===================================================================*/
.faq-form .lead {
  padding: 0 0 120px;
}
@media screen and (max-width: 768px) {
  .faq-form .lead {
    padding: 0 0 60px;
  }
}
.faq-form .lead_txt p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq-form .lead_txt p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.faq-form .lead_check {
  width: 675px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .faq-form .lead_check {
    width: 100%;
  }
}
.faq-form .lead_item {
  margin-bottom: 1.5em;
}

/*==================================================================
    .faq-form .form
===================================================================*/
.faq-form .form {
  padding: 0 0 100px;
  transition: all 200ms ease;
}
.faq-form .form.-inquiry {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .faq-form .form {
    padding: 0 0 60px;
  }
}
.faq-form .form_inner {
  max-width: 915px;
}
@media screen and (max-width: 768px) {
  .faq-form .form_inner {
    max-width: 100%;
  }
}
.faq-form .form_blocks {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .faq-form .form_blocks {
    margin-bottom: 60px;
  }
}
.faq-form .form_blocks.-last {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .faq-form .form_blocks.-last {
    margin-bottom: 30px;
  }
}
.faq-form .form_ttl {
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .faq-form .form_ttl {
    font-size: 2.2rem;
  }
}
.faq-form .form_lead {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq-form .form_lead {
    font-size: 1.6rem;
  }
}
.faq-form .form table {
  width: 100%;
  border-collapse: collapse;
}
.faq-form .form table th {
  width: 235px;
  padding: 25px 40px 25px 0;
  font-size: 1.6rem;
  line-height: 1.5;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .faq-form .form table th {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 2vw;
  }
}
.faq-form .form table td {
  width: 650px;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .faq-form .form table td {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 8vw;
  }
}
.faq-form .form table td span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: 0.6em;
}
.faq-form .form_agree {
  padding: 30px 50px;
  background-color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .faq-form .form_agree {
    padding: 6vw;
    margin-bottom: 20px;
  }
}
.faq-form .form_agree .ttl {
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .faq-form .form_agree .ttl {
    font-size: 2rem;
  }
}
.faq-form .form_agree .agree {
  width: 100%;
  height: 130px;
  overflow-y: scroll;
}
.faq-form .form_agree .agree p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.faq-form .form_check {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .faq-form .form_check {
    margin-bottom: 40px;
  }
}
.faq-form .form_btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
}
.faq-form .form_btn input, .faq-form .form_btn a {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .faq-form .form_btn input, .faq-form .form_btn a {
    width: 100%;
  }
}
.faq-form .form_btn input[type=submit] {
  background-color: #1e262e;
}
.faq-form .form_btn input[type=submit]:disabled {
  background-color: #ccc;
  cursor: default;
}

/*==================================================================
    .faq-form-confirm .form
===================================================================*/
.faq-form-confirm .form_agree {
  display: none;
}
.faq-form-confirm .form_check {
  display: none;
}

/*==================================================================
    #news .list
===================================================================*/
#news .list {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #news .list {
    padding: 0 0 80px;
  }
}
#news .list_inner {
  max-width: 960px;
}
@media screen and (max-width: 768px) {
  #news .list_inner {
    max-width: 100%;
  }
}
#news .list_select {
  width: 120px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #news .list_select {
    width: 100%;
  }
}
#news .list_list {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #news .list_list {
    margin-bottom: 30px;
  }
}
#news .list_item {
  margin-bottom: 5px;
}
#news .list_item a {
  display: block;
  color: #000;
  padding: 20px;
  background-color: #fff;
  position: relative;
}
#news .list_item a .date {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
  margin-bottom: 1.2em;
}
#news .list_item a .ttl {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #news .list_item a .ttl {
    font-size: 1.5rem;
  }
}
#news .list_item a .txt {
  font-size: 1.2rem;
  line-height: 1.4;
}
#news .list_item a:hover {
  color: #fff;
  background-color: #000;
}
#news .list_item a ul {
  display: flex;
  flex-flow: row nowrap;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  #news .list_item a ul {
    top: 10px;
    right: 10px;
    justify-content: flex-end;
  }
}
#news .list_item a ul li {
  min-width: 80px;
  height: 24px;
  line-height: 24px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #3b3b3b;
  margin-right: 2px;
}
@media screen and (max-width: 768px) {
  #news .list_item a ul li {
    min-width: 100%;
    height: 18px;
    line-height: 18px;
  }
}
#news .list_none {
  font-size: 1.8rem;
  padding: 4rem 0px 0rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

/*==================================================================
    #news .article
===================================================================*/
#news .article {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #news .article {
    padding: 0 0 80px;
  }
}
#news .article_inner {
  max-width: 1030px;
}
@media screen and (max-width: 768px) {
  #news .article_inner {
    max-width: 100%;
  }
}
#news .article_article {
  padding: 90px 108px 100px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #news .article_article {
    padding: 6vw 4vw;
  }
}
#news .article_article .head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #news .article_article .head {
    margin-bottom: 6vw;
  }
}
#news .article_article .head .date {
  display: inline-block;
  font-size: 2.1rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  color: #3b3b3b;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #news .article_article .head .date {
    font-size: 1.4rem;
    margin-right: 10px;
  }
}
#news .article_article .head .tags {
  display: flex;
  flex-flow: row nowrap;
}
#news .article_article .head .tags li {
  min-width: 80px;
  line-height: 24px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #3b3b3b;
  margin-right: 2px;
}
@media screen and (max-width: 768px) {
  #news .article_article .head .tags li {
    max-width: 100%;
    height: 18px;
    line-height: 18px;
  }
}
#news .article_article .ttl {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  color: #3b3b3b;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  #news .article_article .ttl {
    font-size: 1.6rem;
  }
}
#news .article_article .eye {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #news .article_article .eye {
    margin-bottom: 30px;
  }
}
#news .article_article .eye img {
  width: 100%;
}
#news .article_article .txt p {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.8em;
}
@media screen and (max-width: 768px) {
  #news .article_article .txt p {
    font-size: 1.4rem;
  }
}
#news .article_article .btnArea {
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  #news .article_article .btnArea {
    min-width: 100%;
    width: 100%;
  }
}
#news .article_article .btn {
  display: block;
  min-width: 220px;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  border: solid 1px #272727;
  text-align: center;
  background-color: #000;
  transition: all 200ms ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #news .article_article .btn {
    min-width: 100%;
    width: 100%;
    padding: 1em;
    font-size: 1.4rem;
  }
}
#news .article_article .btn:hover {
  opacity: 0.6;
}

/*==================================================================
    #news .latest
===================================================================*/
#news .latest {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #news .latest {
    padding: 0 0 80px;
  }
}
#news .latest_inner {
  max-width: 1030px;
}
@media screen and (max-width: 768px) {
  #news .latest_inner {
    max-width: 100%;
  }
}
#news .latest_ttl {
  font-size: 1.9rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #news .latest_ttl {
    font-size: 1.8rem;
  }
}
#news .latest_list {
  display: flex;
  flex-flow: row nowrap;
  margin: 0px -10px;
}
@media screen and (max-width: 768px) {
  #news .latest_list {
    display: block;
    margin-bottom: 30px;
  }
}
#news .latest_item {
  padding: 10px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  #news .latest_item {
    width: 100%;
    margin-bottom: 2vw;
  }
}
#news .latest_item:last-child {
  margin-right: 0;
}
#news .latest_item a {
  display: block;
  color: #000;
  padding: 30px 20px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news .latest_item a {
    padding: 6vw;
  }
}
#news .latest_item a .date {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
  margin-bottom: 1.2em;
}
#news .latest_item a .ttl {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #news .latest_item a .ttl {
    font-size: 1.5rem;
  }
}
#news .latest_item a .txt {
  font-size: 1.2rem;
  line-height: 1.4;
}
#news .latest_item a:hover {
  color: #fff;
  background-color: #000;
}
#news .latest_item a ul {
  display: flex;
  flex-flow: row nowrap;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  #news .latest_item a ul {
    top: 10px;
    right: 10px;
    justify-content: flex-end;
  }
}
#news .latest_item a ul li {
  min-width: 80px;
  height: 24px;
  line-height: 24px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #3b3b3b;
  margin-right: 2px;
}
@media screen and (max-width: 768px) {
  #news .latest_item a ul li {
    min-width: 100%;
    height: 18px;
    line-height: 18px;
  }
}

/*==================================================================
    #ir .pdf
===================================================================*/
#ir .pdf {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  #ir .pdf {
    padding: 0 0 80px;
  }
}
#ir .pdf_inner {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #ir .pdf_inner {
    max-width: 100%;
  }
}
#ir .pdf_inner .ttl {
  margin-bottom: 50px;
  text-align: center;
}
#ir .pdf_inner .ttl span {
  position: relative;
  font-size: 2rem;
}
#ir .pdf_inner .ttl span::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #7C7C7C;
}
#ir .pdf_select {
  width: 120px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #ir .pdf_select {
    width: 100%;
  }
}
#ir .pdf_list {
  display: block;
}
#ir .pdf_item {
  margin-bottom: 10px;
}
#ir .pdf_item a {
  display: flex;
  color: #000;
  padding: 15px 20px;
  background-color: #fff;
  position: relative;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #ir .pdf_item a {
    flex-flow: column;
    align-items: flex-start;
  }
}
#ir .pdf_item a .date {
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  padding-right: 15px;
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  #ir .pdf_item a .date {
    margin-bottom: 5px;
  }
}
#ir .pdf_item a .title {
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #ir .pdf_item a .title {
    font-size: 1.3rem;
    align-items: flex-start;
  }
}
#ir .pdf_item a .title span {
  width: 66px;
  min-width: 66px;
  margin-right: 10px;
}
#ir .pdf_item a:hover {
  color: #fff;
  background-color: #000;
}
#ir .pdf_btn {
  display: block;
  margin: 30px auto 0px;
  width: 90%;
  max-width: 320px;
}
#ir .pdf_none {
  font-size: 1.8rem;
  padding: 4rem 0px 0rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

/*==================================================================
    #ir .menu
===================================================================*/
#ir .menu_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -10px 50px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #ir .menu_list {
    margin: 0px -5px 50px;
  }
}
#ir .menu_item {
  padding: 10px;
  width: 25%;
}
@media screen and (max-width: 1000px) {
  #ir .menu_item {
    padding: 5px;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #ir .menu_item {
    width: 100%;
  }
}
#ir .menu_item a {
  border: 1px solid #000;
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
  background-color: #fff;
  display: block;
  width: 100%;
  padding: 1em;
}
#ir .menu_item a:hover {
  color: #fff;
  background-color: #000;
}

#ir .search-wrapper {
  position: relative;
  margin-bottom: 15px;
  width: 180px;
  padding-right: 50px;
}
#ir .search-wrapper::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 7px;
  display: block;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/common/icon_arrow_down01.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  pointer-events: none;
}

/*==================================================================
    #company-index .index
===================================================================*/
#company-index .lead {
  padding: 0px 0px 100px;
}
#company-index .lead_blocks .box {
  max-width: 900px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif;
}
#company-index .lead_blocks .box_ttl {
  margin-bottom: 3em;
  text-align: center;
}
#company-index .lead_blocks .box p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 1.4em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #company-index .lead_blocks .box p {
    font-size: 1.4rem;
  }
}
#company-index .lead_blocks .box p:last-of-type {
  margin-bottom: 0;
}

#company-index .branch {
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  #company-index .branch {
    padding: 0 0 60px;
  }
}
#company-index .branch_list {
  display: flex;
  flex-flow: row wrap;
}
#company-index .branch_item {
  margin-bottom: 50px;
  margin-right: 50px;
  width: calc((100% - 50px) / 2);
  background: #fff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  #company-index .branch_item {
    width: 100%;
    margin-right: 0px;
  }
}
#company-index .branch_item:first-child {
  width: 100%;
  margin-right: 0px;
}
#company-index .branch_item:nth-child(3) {
  margin-right: 0px;
}
#company-index .branch_item .txt {
  padding: 3vw;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#company-index .branch_item a {
  display: block;
}
#company-index .branch_item a:hover {
  opacity: 0.8;
}
#company-index .branch_item a:hover .branch_btn {
  border: 1px solid #3b3b3b;
  background-color: #000;
  color: #fff;
  transition: 0.4s all;
}
#company-index .branch_item h2 {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
#company-index .branch_item h2 + p {
  font-size: 1.3rem !important;
  padding-top: 15px;
}
#company-index .branch_btn {
  max-width: 240px;
  width: 100%;
  margin: 30px auto 0px;
  border: 1px solid #3b3b3b;
  text-align: center;
  line-height: 40px;
  padding: 0px 2em;
  transition: 0.4s all;
}

/*==================================================================
    #company-outline .profile
===================================================================*/
#company-outline .profile {
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  #company-outline .profile {
    padding: 0 0 60px;
  }
}
#company-outline .profile_graph dl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #company-outline .profile_graph dl {
    display: block;
    margin-bottom: 4vw;
  }
}
#company-outline .profile_graph dt {
  width: 260px;
  margin-right: 25px;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
  color: #485969;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #company-outline .profile_graph dt {
    width: 100%;
    margin-right: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #a9a9a9;
    text-align: left;
    padding: 0.3em 0.6em;
  }
}
#company-outline .profile_graph dd {
  width: 420px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #company-outline .profile_graph dd {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0.6em;
  }
}
#company-outline .profile_graph dd li {
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  #company-outline .profile_graph dd li {
    line-height: 1.8;
  }
}
#company-outline .profile_graph dd li a {
  display: inline-block;
  color: #000;
  padding-right: 20px;
  background-image: url(../img/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 0;
}
#company-outline .profile_graph dd li a:hover {
  text-decoration: underline;
}

/*==================================================================
    #company-stores .country
===================================================================*/
#company-stores .country {
  padding: 0 0 75px;
  background-image: url(../img/company/bg_map.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media screen and (max-width: 768px) {
  #company-stores .country {
    padding: 0 0 60px;
    background-size: contain;
  }
}
#company-stores .country_anchor {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #company-stores .country_anchor {
    margin-bottom: 40px;
  }
}
#company-stores .country_anchor ul {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -5px;
}
#company-stores .country_anchor li {
  width: 25%;
  padding: 5px;
}
@media screen and (max-width: 1000px) {
  #company-stores .country_anchor li {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  #company-stores .country_anchor li {
    width: 50%;
  }
}
#company-stores .country_anchor li:nth-child(4n) {
  margin-right: 0;
}
#company-stores .country_anchor li a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  color: #000;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: solid 1px #b5b5b5;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #company-stores .country_anchor li a {
    font-size: 1.2rem;
    height: 40px;
    padding: 0 2vw;
  }
}
#company-stores .country_anchor li a::before {
  display: block;
  content: "";
  width: 35px;
  height: 23px;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 35px 23px;
}
@media screen and (max-width: 768px) {
  #company-stores .country_anchor li a::before {
    width: 24px;
    height: 16px;
    margin-right: 2vw;
    background-size: 24px 16px;
  }
}
#company-stores .country_anchor li a.c01::before {
  background-image: url(../img/common/icon_flag_01.svg);
}
#company-stores .country_anchor li a.c02::before {
  background-image: url(../img/common/icon_flag_02.svg);
}
#company-stores .country_anchor li a.c03::before {
  background-image: url(../img/common/icon_flag_03.svg);
}
#company-stores .country_anchor li a.c04::before {
  background-image: url(../img/common/icon_flag_04.svg);
}
#company-stores .country_anchor li a.c05::before {
  background-image: url(../img/common/icon_flag_05.svg);
}
#company-stores .country_anchor li a.c06::before {
  background-image: url(../img/common/icon_flag_06.svg);
}
#company-stores .country_anchor li a.c07::before {
  background-image: url(../img/common/icon_flag_07.svg);
}
#company-stores .country_anchor li a.c08::before {
  background-image: url(../img/common/icon_flag_08.svg);
}
#company-stores .country_anchor li a.c09::before {
  background-image: url(../img/common/icon_flag_09.svg);
}
#company-stores .country_anchor li a.c10::before {
  background-image: url(../img/common/icon_flag_10.svg);
}
#company-stores .country_anchor li a.c11::before {
  background-image: url(../img/common/icon_flag_11.svg);
}
#company-stores .country_anchor li a.c12::before {
  background-image: url(../img/common/icon_flag_12.svg);
}
#company-stores .country_anchor li a.c13::before {
  background-image: url(../img/common/icon_flag_13.svg);
}
#company-stores .country_anchor li a.c14::before {
  background-image: url(../img/common/icon_flag_14.svg);
}
#company-stores .country_anchor li a.c15::before {
  background-image: url(../img/common/icon_flag_15.svg);
}
#company-stores .country_anchor li a.c16::before {
  background-image: url(../img/common/icon_flag_16.svg);
}
#company-stores .country_anchor li a.c17::before {
  background-image: url(../img/common/icon_flag_17.svg);
}
#company-stores .country_anchor li a.c18::before {
  background-image: url(../img/common/icon_flag_18.svg);
}
#company-stores .country_anchor li a.c19::before {
  background-image: url(../img/common/icon_flag_19.svg);
}
#company-stores .country_anchor li a.c20::before {
  background-image: url(../img/common/icon_flag_20.svg);
}
#company-stores .country_anchor li a:hover {
  color: #fff;
  background-color: #000;
}
#company-stores .country_blocks {
  column-count: 2;
  column-gap: 0;
}
@media screen and (max-width: 768px) {
  #company-stores .country_blocks {
    display: flex;
    flex-flow: column wrap;
  }
}
#company-stores .country_blocks .block {
  width: 100%;
  padding: 10px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
@media screen and (max-width: 768px) {
  #company-stores .country_blocks .block {
    padding: 0;
    margin-bottom: 4vw;
  }
  #company-stores .country_blocks .block#block01 {
    order: 1;
  }
  #company-stores .country_blocks .block#block02 {
    order: 2;
  }
  #company-stores .country_blocks .block#block03 {
    order: 3;
  }
  #company-stores .country_blocks .block#block04 {
    order: 4;
  }
  #company-stores .country_blocks .block#block05 {
    order: 5;
  }
  #company-stores .country_blocks .block#block06 {
    order: 6;
  }
  #company-stores .country_blocks .block#block07 {
    order: 7;
  }
  #company-stores .country_blocks .block#block08 {
    order: 8;
  }
  #company-stores .country_blocks .block#block09 {
    order: 9;
  }
  #company-stores .country_blocks .block#block10 {
    order: 10;
  }
  #company-stores .country_blocks .block#block11 {
    order: 11;
  }
  #company-stores .country_blocks .block#block12 {
    order: 12;
  }
  #company-stores .country_blocks .block#block13 {
    order: 13;
  }
  #company-stores .country_blocks .block#block14 {
    order: 14;
  }
  #company-stores .country_blocks .block#block15 {
    order: 15;
  }
  #company-stores .country_blocks .block#block16 {
    order: 16;
  }
}
#company-stores .country_blocks .box {
  padding: 50px 40px 40px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #company-stores .country_blocks .box {
    padding: 6vw 4vw;
  }
}
#company-stores .country_blocks .box span {
  display: block;
  text-align: right;
  padding-top: 5px;
  font-size: 1.2rem;
}
#company-stores .country_blocks .ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 1.9rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1.8em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #company-stores .country_blocks .ttl {
    font-size: 1.6rem;
    margin-bottom: 1.2em;
  }
}
#company-stores .country_blocks .ttl::before {
  display: block;
  content: "";
  width: 44px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 44px 30px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  #company-stores .country_blocks .ttl::before {
    width: 36px;
    height: 24px;
    background-size: 36px 24px;
    margin-right: 2vw;
  }
}
#company-stores .country_blocks .ttl.-ttl01::before {
  background-image: url(../img/common/icon_flag_01.svg);
}
#company-stores .country_blocks .ttl.-ttl02::before {
  background-image: url(../img/common/icon_flag_02.svg);
}
#company-stores .country_blocks .ttl.-ttl03::before {
  background-image: url(../img/common/icon_flag_03.svg);
}
#company-stores .country_blocks .ttl.-ttl04::before {
  background-image: url(../img/common/icon_flag_04.svg);
}
#company-stores .country_blocks .ttl.-ttl05::before {
  background-image: url(../img/common/icon_flag_05.svg);
}
#company-stores .country_blocks .ttl.-ttl06::before {
  background-image: url(../img/common/icon_flag_06.svg);
}
#company-stores .country_blocks .ttl.-ttl07::before {
  background-image: url(../img/common/icon_flag_07.svg);
}
#company-stores .country_blocks .ttl.-ttl08::before {
  background-image: url(../img/common/icon_flag_08.svg);
}
#company-stores .country_blocks .ttl.-ttl09::before {
  background-image: url(../img/common/icon_flag_09.svg);
}
#company-stores .country_blocks .ttl.-ttl10::before {
  background-image: url(../img/common/icon_flag_10.svg);
}
#company-stores .country_blocks .ttl.-ttl11::before {
  background-image: url(../img/common/icon_flag_11.svg);
}
#company-stores .country_blocks .ttl.-ttl12::before {
  background-image: url(../img/common/icon_flag_12.svg);
}
#company-stores .country_blocks .ttl.-ttl13::before {
  background-image: url(../img/common/icon_flag_13.svg);
}
#company-stores .country_blocks .ttl.-ttl14::before {
  background-image: url(../img/common/icon_flag_14.svg);
}
#company-stores .country_blocks .ttl.-ttl15::before {
  background-image: url(../img/common/icon_flag_15.svg);
}
#company-stores .country_blocks .ttl.-ttl16::before {
  background-image: url(../img/common/icon_flag_16.svg);
}
#company-stores .country_blocks .ttl.-ttl17::before {
  background-image: url(../img/common/icon_flag_17.svg);
}
#company-stores .country_blocks .ttl.-ttl18::before {
  background-image: url(../img/common/icon_flag_18.svg);
}
#company-stores .country_blocks .list li {
  margin-bottom: 1em;
}
#company-stores .country_blocks .list li a {
  display: inline;
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  #company-stores .country_blocks .list li a {
    font-size: 1.2rem;
  }
}
#company-stores .country_blocks .list li a::after {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-image: url(../img/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin-left: 0.8em;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #company-stores .country_blocks .list li a::after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}

/*==================================================================
    #company-history .historymap
===================================================================*/
#company-history .lead {
  padding: 0px 0px 100px;
}
#company-history .lead_blocks .box {
  max-width: 900px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif;
}
#company-history .lead_blocks .box_ttl {
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.7;
}
#company-history .lead_blocks .box em {
  display: block;
  margin-bottom: 50px;
  font-size: 1.4rem;
}
#company-history .lead_blocks .box p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #company-history .lead_blocks .box p {
    font-size: 1.4rem;
  }
}
#company-history .lead_blocks .box p:last-of-type {
  margin-bottom: 0;
}
#company-history .lead_hero {
  margin-top: 100px;
  margin-bottom: 50px;
}
#company-history .lead_hero img {
  width: 100%;
}

#company-history .timeline {
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline {
    padding: 0 0 60px;
  }
}
#company-history .timeline .container {
  width: 1000px;
  height: 8100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #company-history .timeline .container {
    width: 100%;
    height: auto;
  }
}
#company-history .timeline .container::before {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: #333;
}
@media screen and (max-width: 768px) {
  #company-history .timeline .container::before {
    display: none;
  }
}
#company-history .timeline sup {
  top: 0 !important;
}
#company-history .timeline #y1978 {
  top: -20px;
}
#company-history .timeline #y1981 {
  top: 0px;
}
#company-history .timeline #y1985 {
  top: 450px;
}
#company-history .timeline #y1986 {
  top: 530px;
}
#company-history .timeline #y1992 {
  top: 730px;
}
#company-history .timeline #y2004 {
  top: 670px;
}
#company-history .timeline #y2006 {
  top: 930px;
}
#company-history .timeline #y2007 {
  top: 1000px;
}
#company-history .timeline #y2009 {
  top: 1320px;
}
#company-history .timeline #y2011-1 {
  top: 1440px;
}
#company-history .timeline #y2011-2 {
  top: 1440px;
}
#company-history .timeline #y2012 {
  top: 1590px;
}
#company-history .timeline #y2013 {
  top: 1840px;
}
#company-history .timeline #y2014 {
  top: 1900px;
}
#company-history .timeline #y2015-1 {
  top: 2380px;
}
#company-history .timeline #y2015-2 {
  top: 2600px;
}
#company-history .timeline #y2016 {
  top: 2790px;
}
#company-history .timeline #y2018-1 {
  top: 3020px;
}
#company-history .timeline #y2018-2 {
  top: 3130px;
}
#company-history .timeline #y2019 {
  top: 3200px;
}
#company-history .timeline #y2020 {
  top: 3600px;
}
#company-history .timeline #y2020-2 {
  top: 4180px;
}
#company-history .timeline #y2020-3 {
  top: 4020px;
}
#company-history .timeline #y2020-4 {
  top: 3650px;
}
#company-history .timeline #y2020-5 {
  top: 4100px;
}
#company-history .timeline #y2020-6 {
  top: 3800px;
}
#company-history .timeline #y2021 {
  top: 4560px;
}
#company-history .timeline #y2021-1 {
  top: 4710px;
}
#company-history .timeline #y2021-2 {
  top: 5030px;
}
#company-history .timeline #y2021-3 {
  top: 4820px;
}
#company-history .timeline #first_in_japan {
  top: 188px;
}
#company-history .timeline #mineral_air {
  top: 2780px;
}
#company-history .timeline #rf_total {
  top: 5380px;
}
#company-history .timeline #tokyostock {
  top: 5200px;
}
#company-history .timeline #y2022 {
  top: 5280px;
}
#company-history .timeline #fullscale {
  top: 6090px;
}
#company-history .timeline #y2023-1 {
  top: 6490px;
}
#company-history .timeline #y2023-2 {
  top: 5800px;
}
#company-history .timeline #y2023-3 {
  top: 6080px;
}
#company-history .timeline #y2024-1 {
  top: 6880px;
}
#company-history .timeline #vietnam {
  top: 6880px;
}
#company-history .timeline #y2025-1 {
  top: 7130px;
}
#company-history .timeline #y2025-2 {
  top: 7430px;
}
#company-history .timeline #cosmetics {
  top: 6300px;
}
#company-history .timeline #professional {
  top: 7180px;
}
#company-history .timeline #patent {
  top: 7580px;
}
#company-history .timeline #patent ul {
  padding-top: 15px;
  margin-bottom: 15px;
}
#company-history .timeline #patent ul li {
  line-height: 1.4;
  font-weight: 500;
}
#company-history .timeline .things {
  position: absolute;
  width: 500px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline .things {
    position: unset;
    width: 100%;
    padding-bottom: 30px;
  }
  #company-history .timeline .things::after {
    background: #000;
    position: absolute;
    height: 30px;
    width: 1px;
    content: "";
    left: 50%;
    bottom: 0px;
  }
}
#company-history .timeline .things .-w {
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}
#company-history .timeline .things .-g {
  background: #efefef;
  padding: 20px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}
#company-history .timeline .things .-g dt {
  margin-bottom: 5px;
}
#company-history .timeline .things .-g em {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 0px;
}
#company-history .timeline .things .-g dd {
  font-size: 1.6rem !important;
  color: #333;
}
#company-history .timeline .things .-b {
  background: #a79b9b;
  padding: 30px 20px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  color: #fff;
}
#company-history .timeline .things .-b p {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
#company-history .timeline .things .-b li {
  line-height: 1.6;
  margin-bottom: 5px;
}
#company-history .timeline .things .-b li:last-child {
  margin-bottom: 0px;
}
#company-history .timeline .things .-b dt,
#company-history .timeline .things .-b dd {
  color: #fff;
}
#company-history .timeline .-right {
  right: 0px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline .-right {
    right: unset;
    padding-left: 0px;
  }
}
#company-history .timeline .-right::before {
  position: absolute;
  width: 16px;
  height: 16px;
  content: "";
  background: #333;
  border: 4px solid #f8f8f8;
  display: block;
  border-radius: 50%;
  left: -8px;
  top: 20px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline .-right::before {
    display: none;
  }
}
#company-history .timeline .-right .-w {
  position: relative;
}
#company-history .timeline .-right .-w::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 26px 8px 0;
  border-color: transparent #ffffff transparent transparent;
  left: -24px;
  top: 20px;
  filter: drop-shadow(-3px 0px 1px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 768px) {
  #company-history .timeline .-right .-w::before {
    display: none;
  }
}
#company-history .timeline .-left {
  left: 0px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline .-left {
    left: unset;
    padding-right: 0px;
  }
}
#company-history .timeline .-left::before {
  position: absolute;
  width: 16px;
  height: 16px;
  content: "";
  background: #333;
  border: 4px solid #f8f8f8;
  display: block;
  border-radius: 50%;
  right: -8px;
  top: 20px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline .-left::before {
    display: none;
  }
}
#company-history .timeline .-left .-w {
  position: relative;
}
#company-history .timeline .-left .-w::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0px 8px 26px;
  border-color: transparent transparent transparent #ffffff;
  right: -24px;
  top: 20px;
  filter: drop-shadow(3px 0px 1px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 768px) {
  #company-history .timeline .-left .-w::before {
    display: none;
  }
}
#company-history .timeline .-exclusion::before {
  display: none;
}
#company-history .timeline dt {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  color: #837c7c;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #company-history .timeline dt {
    font-size: 1.8rem;
  }
}
#company-history .timeline dt em {
  font-size: 2.5rem;
  letter-spacing: 0.07em;
  font-family: "Roboto", sans-serif;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline dt em {
    font-size: 2rem;
  }
}
#company-history .timeline dd {
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  color: #837c7c;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #company-history .timeline dd {
    font-size: 1.3rem;
  }
}
#company-history .timeline dd.img {
  text-align: right;
}
#company-history .timeline dd.img img {
  height: 100px;
  width: auto;
}
#company-history .timeline dd:last-child {
  margin-bottom: 0px;
}

/*==================================================================
    #other common
===================================================================*/
#other .contents {
  font-size: 1.6rem;
  line-height: 2;
  color: #606060;
}
@media screen and (max-width: 768px) {
  #other .contents {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
#other .contents p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #other .contents p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
#other .contents a {
  color: #000;
  text-decoration: underline;
}

#other .blocks {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #other .blocks {
    margin-bottom: 30px;
  }
}
#other .blocks.-lead {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #other .blocks.-lead {
    margin-bottom: 40px;
  }
}
#other .blocks.-policy {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #other .blocks.-policy {
    margin-bottom: 40px;
  }
}
#other .blocks.-large {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #other .blocks.-large {
    margin-bottom: 60px;
  }
}

#other .ttl {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000;
}
#other .ttl.-ttl01 {
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #other .ttl.-ttl01 {
    font-size: 2rem;
  }
}
#other .ttl.-ttl02 {
  font-size: 3.2rem;
  line-height: 1.2;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  #other .ttl.-ttl02 {
    font-size: 2.2rem;
    padding-bottom: 0.6em;
    margin-bottom: 0.8em;
  }
}
#other .ttl.-ttl02::before {
  display: block;
  content: "";
  width: 70px;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #other .ttl.-ttl02::before {
    width: 50px;
    height: 2px;
  }
}
#other .ttl.-ttl03 {
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #other .ttl.-ttl03 {
    font-size: 1.8rem;
  }
}
#other .ttl.-ttl04 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #other .ttl.-ttl04 {
    font-size: 1.6rem;
  }
}
#other .ttl.-ttl05 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1em;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #other .ttl.-ttl05 {
    font-size: 1.6rem;
  }
}
#other .ttl.-ttl05::before {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}

#other .list {
  padding-left: 1em;
}
#other .list > li {
  font-size: 1.6rem;
  line-height: 2;
  list-style: decimal;
  padding-left: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #other .list > li {
    font-size: 1.4rem;
    line-height: 1.8;
    padding-left: 0.5em;
  }
}
#other .list > li div {
  padding: 1em 0 0;
  max-width: 1100px;
  margin-left: -2em;
}
@media screen and (max-width: 768px) {
  #other .list > li div {
    margin-left: -1.5em;
  }
}
#other .list.-circle {
  padding-left: 2em;
}
#other .list.-circle li {
  list-style: disc;
  padding-left: 0.5em;
  margin-bottom: 0;
  color: #393939;
}
#other .list.-roman li {
  list-style: upper-roman;
}
#other .list .reset {
  list-style: none !important;
}
#other .list .reset li {
  list-style: none !important;
  margin-bottom: 1em;
}
#other .list .child {
  padding-left: 1em;
}
#other .list .child > li {
  font-size: 1.6rem;
  line-height: 2;
  list-style: disc;
  padding-left: 0.5em;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  #other .list .child > li {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

#other .outline {
  padding: 0 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #other .outline {
    display: block;
    padding: 0 1em;
  }
}
#other .outline dl {
  color: #000;
  margin-right: 150px;
}
@media screen and (max-width: 768px) {
  #other .outline dl {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
#other .outline dl:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
#other .outline dl dt {
  margin-bottom: 0.8em;
}

/*==================================================================
    #other .lead
===================================================================*/
#other .lead {
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  #other .lead {
    padding: 0 0 60px;
  }
}
#other .lead_txt {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #other .lead_txt {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/*==================================================================
    #other .copy
===================================================================*/
#other .copy {
  padding: 0 0 150px;
}
@media screen and (max-width: 768px) {
  #other .copy {
    padding: 0 0 60px;
  }
}

/*==================================================================
    #other .terms
===================================================================*/
#other .terms {
  padding: 0 0 150px;
}
@media screen and (max-width: 768px) {
  #other .terms {
    padding: 0 0 60px;
  }
}

/*==================================================================
    #other .policy
===================================================================*/
#other .policy {
  padding: 0 0 150px;
}
@media screen and (max-width: 768px) {
  #other .policy {
    padding: 0 0 60px;
  }
}

/*==================================================================
    #other .handling
===================================================================*/
#other .handling {
  padding: 0 0 150px;
}
@media screen and (max-width: 768px) {
  #other .handling {
    padding: 0 0 60px;
  }
}

#other .handling .purposelist dl {
  margin-bottom: 25px;
}
#other .handling .purposelist dl dt {
  font-weight: bold;
  position: relative;
  padding-left: 2em;
  font-weight: 1.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
#other .handling .purposelist dl dt::before {
  content: "";
  width: 1.5em;
  height: 1px;
  position: absolute;
  top: 1.2rem;
  left: 0;
  background-color: #000;
}
#other .handling .purposelist dl dd {
  font-size: 1.4rem;
}

/*==================================================================
    #errorpage 
===================================================================*/
#errorpage .statusCode {
  text-align: center;
  padding: 0px 0px 100px;
}
@media screen and (max-width: 768px) {
  #errorpage .statusCode {
    padding: 50px 0p 60px;
  }
}
#errorpage .statusCode em {
  font-size: 18rem;
  font-family: "Roboto", sans-serif;
  display: block;
}
@media screen and (max-width: 768px) {
  #errorpage .statusCode em {
    font-size: 10rem;
  }
}
#errorpage .statusCode span {
  font-size: 2.3rem;
  font-family: "Roboto", sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #errorpage .statusCode span {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
#errorpage .statusCode_btn {
  width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #errorpage .statusCode_btn {
    width: 80%;
  }
}

/*==================================================================
    #brand-list
===================================================================*/
#brand-list .branch {
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  #brand-list .branch {
    padding: 0 0 60px;
  }
}
#brand-list .branch_list {
  display: flex;
  flex-flow: row wrap;
}
#brand-list .branch_item {
  margin-bottom: 50px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  #brand-list .branch_item {
    width: 100%;
  }
}
#brand-list .branch_item:nth-child(4), #brand-list .branch_item:nth-child(5) {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 1000px) {
  #brand-list .branch_item:nth-child(4), #brand-list .branch_item:nth-child(5) {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  #brand-list .branch_item:nth-child(4), #brand-list .branch_item:nth-child(5) {
    width: 100%;
    margin-right: 0px;
  }
  #brand-list .branch_item:nth-child(4) .img, #brand-list .branch_item:nth-child(5) .img {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  #brand-list .branch_item:nth-child(4) .img picture, #brand-list .branch_item:nth-child(5) .img picture {
    width: 50%;
  }
  #brand-list .branch_item:nth-child(4) .img h2, #brand-list .branch_item:nth-child(5) .img h2 {
    width: 50%;
    text-align: center;
    margin-bottom: 0px;
    font-size: 2rem;
  }
}
#brand-list .branch_item:nth-child(4) {
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  #brand-list .branch_item:nth-child(4) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #brand-list .branch_item:nth-child(4) {
    width: 100%;
    margin-right: 0px;
  }
}
#brand-list .branch_item .txt {
  padding: 4vw 3vw;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#brand-list .branch_item .txt h2 {
  font-size: 2.4rem;
  letter-spacing: 0.02em !important;
}
#brand-list .branch_item .txt h2 + p {
  font-size: 1.3rem !important;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #brand-list .branch_item .txt h2 {
    font-size: 2rem;
  }
}
#brand-list .branch_item a {
  display: block;
}
#brand-list .branch_item a:hover {
  opacity: 0.8;
}
#brand-list .branch_item a:hover .branch_btn {
  border: 1px solid #3b3b3b;
  background-color: #000;
  color: #fff;
  transition: 0.4s all;
}
#brand-list .branch_item h2 {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
}
#brand-list .branch_btn {
  max-width: 240px;
  width: 100%;
  margin: 0px auto;
  border: 1px solid #3b3b3b;
  text-align: center;
  line-height: 40px;
  padding: 0px 2em;
  transition: 0.4s all;
}

header *,
footer * {
  color: #000;
  letter-spacing: 0.08em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

footer a,
footer .menu-no-link {
  line-height: 2.7 !important;
}

.index-rd__text p.index-vision__text-common {
  width: 100%;
}

.index-brand__link {
  text-align: center;
}

.index-block_ttl {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-size: 2rem !important;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .index-block_ttl {
    padding-left: 30px;
    padding-right: 20px;
  }
}

.index-corporate__text {
  width: calc(100% - 180px) !important;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .index-corporate__text {
    width: 100% !important;
  }
}
.index-corporate__text-heading {
  display: block;
  width: 180px !important;
}
@media screen and (max-width: 768px) {
  .index-corporate__text-heading {
    text-align: center;
    width: 100% !important;
  }
}
.index-corporate__text-grid {
  max-width: 800px !important;
}

#top > * {
  font-weight: 400;
}

@media screen and (max-width: 1000px) {
  .index-rd__text p.index-vision__text-common {
    width: 100% !important;
  }
}

.index-rd__title-ja li:nth-child(2) {
  align-items: end !important;
}

.news-item__date {
  font-size: 1.2rem;
  width: 120px;
}

.wrapper-index-news {
  max-width: 900px;
}

.header-pc .menu-child li {
  line-height: 2.9 !important;
}

footer .js-inview .fade-b, footer .js-inview.fade-b {
  opacity: 1 !important;
  transform: translate(0, 0px) !important;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
}

body#home {
  background-color: #fff;
}

.menu__item.-ir {
  width: 10% !important;
}

.menu__item.-development {
  width: 15% !important;
}

.footer-bottom__legal a {
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.btn-rect-border {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0em !important;
  font-size: unset;
}

.index-rd__title-ja {
  font-family: "Poppins", sans-serif !important;
}

.index-history__catchcopy {
  font-family: "Poppins", sans-serif !important;
}

.footer-bottom__copyright {
  color: #fff !important;
}

footer {
  z-index: 1 !important;
  position: relative;
}

.slogan-video {
  margin-top: 0px !important;
}

.jstream__modal.is-show {
  z-index: 1200 !important;
}

body.is-modal-show header {
  z-index: 2;
}

.development-movie__controller {
  display: flex;
  align-items: center;
}

a.onlinestore {
  display: flex;
  align-items: center;
}

/*------------------------------------------------------------------
    #products-detail.blow-dry-scalp-massage
------------------------------------------------------------------*/
#products-detail.blow-dry-scalp-massage .leadpoint {
  padding: 80px 0px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .leadpoint {
    padding: 40px 0px;
  }
}
#products-detail.blow-dry-scalp-massage .leadpoint h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .leadpoint h3 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.blow-dry-scalp-massage .leadpoint_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.blow-dry-scalp-massage .leadpoint_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .leadpoint_list {
    margin: 0px -15px;
  }
}
#products-detail.blow-dry-scalp-massage .leadpoint_item {
  padding: 0px 30px;
  text-align: center;
  width: 33.3333333333%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .leadpoint_item {
    padding: 0px 15px;
  }
}
#products-detail.blow-dry-scalp-massage .leadpoint_item p {
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .leadpoint_item p {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
#products-detail.blow-dry-scalp-massage .leadpoint_item dt {
  margin-bottom: 20px;
}
#products-detail.blow-dry-scalp-massage .leadpoint_item dd {
  font-size: 1.8rem;
  color: #a3a3a3;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .leadpoint_item dd {
    font-size: 1.4rem;
  }
}
#products-detail.blow-dry-scalp-massage .howto {
  background-color: #c1bdb4;
}
#products-detail.blow-dry-scalp-massage .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .howto_list {
    flex-flow: column;
    padding-top: 30px;
  }
}
#products-detail.blow-dry-scalp-massage .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.blow-dry-scalp-massage .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.blow-dry-scalp-massage .howto dl dt {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  text-align: center;
  line-height: 40px;
  font-size: 1.8rem;
  font-weight: bold;
}
#products-detail.blow-dry-scalp-massage .howto dl dd {
  color: #fff;
}
#products-detail.blow-dry-scalp-massage .howto dl dd.txt {
  margin-bottom: 20px;
  line-height: 1.4;
}
#products-detail.blow-dry-scalp-massage .howto dl dd span {
  font-size: 1.2rem;
  padding-top: 5px;
  display: block;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .feature {
    padding: 40px 0px;
  }
}
#products-detail.blow-dry-scalp-massage .feature .ttl {
  font-size: 2.2rem !important;
}
#products-detail.blow-dry-scalp-massage .feature .ttl span {
  font-size: 1.4rem;
  display: block;
  padding-top: 10px;
  position: relative;
  padding-left: 30px;
  color: #c6c6c6;
}
#products-detail.blow-dry-scalp-massage .feature .ttl span::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #c6c6c6;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transform: translateY(-50%);
}
#products-detail.blow-dry-scalp-massage .feature .subttl {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 10px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
#products-detail.blow-dry-scalp-massage .feature .subttl span {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
#products-detail.blow-dry-scalp-massage .feature_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.blow-dry-scalp-massage .feature_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.blow-dry-scalp-massage .graph {
  padding: 40px 0;
}
#products-detail.blow-dry-scalp-massage .graph_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .graph_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.blow-dry-scalp-massage .graph_list:last-child {
  margin-bottom: 0px;
}
#products-detail.blow-dry-scalp-massage .graph_item {
  padding: 20px;
  width: 50%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .graph_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products-detail.blow-dry-scalp-massage .graph_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.blow-dry-scalp-massage .graph_item .ttl {
  text-align: center;
  margin-bottom: 15px !important;
}
#products-detail.blow-dry-scalp-massage .graph_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .graph_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.blow-dry-scalp-massage .graph_item table {
  border-collapse: collapse;
  width: 100%;
}
#products-detail.blow-dry-scalp-massage .graph_item table thead th {
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 1.5rem;
  border: 1px solid #939393;
  background-color: #6e6e6e;
  color: #fff;
}
#products-detail.blow-dry-scalp-massage .graph_item table tbody td {
  border: 1px solid #939393;
  padding: 10px;
  line-height: 1.5;
}
#products-detail.blow-dry-scalp-massage .technology {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .technology {
    padding: 40px 0px;
  }
}
#products-detail.blow-dry-scalp-massage .technology h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
#products-detail.blow-dry-scalp-massage .technology h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#products-detail.blow-dry-scalp-massage .technology h4 em {
  display: block;
  padding-bottom: 10px;
  font-size: 5rem;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}
#products-detail.blow-dry-scalp-massage .technology h4 span {
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  padding-top: 10px;
}
#products-detail.blow-dry-scalp-massage .technology_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.blow-dry-scalp-massage .technology_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .technology_list {
    flex-flow: column;
    align-items: center;
  }
}
#products-detail.blow-dry-scalp-massage .technology_item {
  padding: 40px 35px;
  text-align: center;
  width: calc((100% - 40px) / 2);
  max-width: 480px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.blow-dry-scalp-massage .technology_item {
    width: 100%;
    margin-right: 0px;
  }
}
#products-detail.blow-dry-scalp-massage .technology_item:nth-child(2n) {
  margin-right: 0px;
}
#products-detail.blow-dry-scalp-massage .technology_item dt {
  margin-bottom: 20px;
}
#products-detail.blow-dry-scalp-massage .technology_item dd {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3b3b3b;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
#products-detail.blow-dry-scalp-massage .technology_item dl + p {
  margin-top: 30px;
  display: inline-block;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  padding: 5px 0;
}
#products-detail.blow-dry-scalp-massage .technology_item dl + p + p {
  margin-top: 10px;
  text-align: left;
  padding: 15px;
  background-color: #f8f8f8;
}
#products-detail.blow-dry-scalp-massage .technology_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.blow-dry-scalp-massage .technology_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/*------------------------------------------------------------------
    #products-detail.straight-wave
------------------------------------------------------------------*/
#products-detail.straight-wave .leadpoint {
  padding: 80px 0px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .leadpoint {
    padding: 40px 0px;
  }
}
#products-detail.straight-wave .leadpoint h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .leadpoint h3 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.straight-wave .leadpoint_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.straight-wave .leadpoint_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .leadpoint_list {
    margin: 0px -15px;
  }
}
#products-detail.straight-wave .leadpoint_item {
  padding: 0px 30px;
  text-align: center;
  width: 33.3333333333%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .leadpoint_item {
    padding: 0px 15px;
  }
}
#products-detail.straight-wave .leadpoint_item p {
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .leadpoint_item p {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
#products-detail.straight-wave .leadpoint_item dt {
  margin-bottom: 20px;
}
#products-detail.straight-wave .leadpoint_item dd {
  font-size: 1.8rem;
  color: #a3a3a3;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .leadpoint_item dd {
    font-size: 1.4rem;
  }
}
#products-detail.straight-wave .howto {
  background-color: #c1bdb4;
}
#products-detail.straight-wave .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .howto_list {
    flex-flow: column;
    padding-top: 30px;
  }
}
#products-detail.straight-wave .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.straight-wave .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.straight-wave .howto dl dt {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  text-align: center;
  line-height: 40px;
  font-size: 1.8rem;
  font-weight: bold;
}
#products-detail.straight-wave .howto dl dd {
  color: #fff;
}
#products-detail.straight-wave .howto dl dd.txt {
  margin-bottom: 20px;
  line-height: 1.4;
}
#products-detail.straight-wave .howto dl dd span {
  font-size: 1.2rem;
  padding-top: 5px;
  display: block;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .feature {
    padding: 40px 0px;
  }
}
#products-detail.straight-wave .feature .ttl {
  font-size: 2.2rem !important;
}
#products-detail.straight-wave .feature .ttl span {
  font-size: 1.4rem;
  display: block;
  padding-top: 10px;
  position: relative;
  padding-left: 30px;
  color: #c6c6c6;
}
#products-detail.straight-wave .feature .ttl span::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #c6c6c6;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transform: translateY(-50%);
}
#products-detail.straight-wave .feature .subttl {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 10px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
#products-detail.straight-wave .feature .subttl span {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
#products-detail.straight-wave .feature_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.straight-wave .feature_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.straight-wave .graph {
  padding: 40px 0;
}
#products-detail.straight-wave .graph_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .graph_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.straight-wave .graph_list:last-child {
  margin-bottom: 0px;
}
#products-detail.straight-wave .graph_item {
  padding: 20px;
  width: 50%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .graph_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products-detail.straight-wave .graph_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.straight-wave .graph_item .ttl {
  text-align: center;
  margin-bottom: 15px !important;
}
#products-detail.straight-wave .graph_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .graph_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.straight-wave .graph_item table {
  border-collapse: collapse;
  width: 100%;
}
#products-detail.straight-wave .graph_item table thead th {
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 1.5rem;
  border: 1px solid #939393;
  background-color: #6e6e6e;
  color: #fff;
}
#products-detail.straight-wave .graph_item table tbody td {
  border: 1px solid #939393;
  padding: 10px;
  line-height: 1.5;
}
#products-detail.straight-wave .technology {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .technology {
    padding: 40px 0px;
  }
}
#products-detail.straight-wave .technology h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
#products-detail.straight-wave .technology h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#products-detail.straight-wave .technology h4 em {
  display: block;
  padding-bottom: 10px;
  font-size: 5rem;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}
#products-detail.straight-wave .technology h4 span {
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  padding-top: 10px;
}
#products-detail.straight-wave .technology_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.straight-wave .technology_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .technology_list {
    flex-flow: column;
    align-items: center;
  }
}
#products-detail.straight-wave .technology_item {
  padding: 40px 35px;
  text-align: center;
  width: calc((100% - 40px) / 2);
  max-width: 480px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.straight-wave .technology_item {
    width: 100%;
    margin-right: 0px;
  }
}
#products-detail.straight-wave .technology_item:nth-child(2n) {
  margin-right: 0px;
}
#products-detail.straight-wave .technology_item dt {
  margin-bottom: 20px;
}
#products-detail.straight-wave .technology_item dd {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3b3b3b;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
#products-detail.straight-wave .technology_item dl + p {
  margin-top: 30px;
  display: inline-block;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  padding: 5px 0;
}
#products-detail.straight-wave .technology_item dl + p + p {
  margin-top: 10px;
  text-align: left;
  padding: 15px;
  background-color: #f8f8f8;
}
#products-detail.straight-wave .technology_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.straight-wave .technology_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/*------------------------------------------------------------------
    #products-detail.photoplus-shiny-neo
------------------------------------------------------------------*/
#products-detail.photoplus-shiny-neo .detail-feature {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-feature {
    padding: 40px 0px;
  }
}
#products-detail.photoplus-shiny-neo .detail-feature .leadtxt {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.photoplus-shiny-neo .detail-feature-box {
  margin-bottom: 60px;
}
#products-detail.photoplus-shiny-neo .detail-feature-box:last-child {
  margin-bottom: 0;
}
#products-detail.photoplus-shiny-neo .detail-feature-box ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 20px;
}
#products-detail.photoplus-shiny-neo .detail-feature-box ul li {
  width: 33.3333333333%;
  padding: 5px;
  min-height: 85px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-feature-box ul li {
    width: 50%;
  }
}
#products-detail.photoplus-shiny-neo .detail-feature-box ul li span {
  background-color: #a8a187;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-feature-box ul li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.photoplus-shiny-neo .detail-feature-box ul li span sup {
  display: contents;
}
#products-detail.photoplus-shiny-neo .detail-feature-box ul.device-list li span {
  background-color: #fff;
  border: 2px solid #b6b9ac;
  color: #b6b9ac;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-feature-box ul.device-list li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.photoplus-shiny-neo .detail-feature-box ul.device-list li span sup {
  display: contents;
}
#products-detail.photoplus-shiny-neo .detail-feature .txt dl {
  margin-bottom: 40px;
}
#products-detail.photoplus-shiny-neo .detail-feature .txt dl dt {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#products-detail.photoplus-shiny-neo .detail-feature .txt dl dt::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #b6b9ac;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
#products-detail.photoplus-shiny-neo .detail-dailycare {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare {
    padding: 60px 0;
  }
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks {
  margin-bottom: 60px;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks::before {
    display: none;
  }
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks:nth-of-type(1), #products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks .lead {
  font-size: 1.6rem;
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_blocks .lead.fsS {
  font-size: 12px;
}
#products-detail.photoplus-shiny-neo .detail-dailycare .ttl {
  font-size: 28px !important;
  padding: 0.5em !important;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photoplus-shiny-neo .detail-dailycare .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare .subttl {
    font-size: 2rem;
  }
}
#products-detail.photoplus-shiny-neo .detail-dailycare_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px -5px 0px;
}
#products-detail.photoplus-shiny-neo .detail-dailycare_item {
  padding: 5px;
  width: 20%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.photoplus-shiny-neo .detail-dailycare_item dt {
  margin-bottom: 10px;
}
#products-detail.photoplus-shiny-neo .detail-dailycare_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.photoplus-shiny-neo .detail-dailycare_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.photoplus-shiny-neo .detail-dailycare_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_double {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare .feature_double {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_double .txt {
  width: 50%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare .feature_double .txt {
    width: 100%;
    padding-right: 0px;
  }
}
#products-detail.photoplus-shiny-neo .detail-dailycare .feature_double .img {
  width: 50%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-dailycare .feature_double .img {
    width: 100%;
  }
}
#products-detail.photoplus-shiny-neo .dailymode_box {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .dailymode_box {
    flex-flow: column;
    margin: 0px auto;
  }
}
#products-detail.photoplus-shiny-neo .dailymode_list {
  width: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .dailymode_list {
    width: 100%;
    padding-right: 0;
  }
}
#products-detail.photoplus-shiny-neo .dailymode_item {
  width: 100%;
  margin-bottom: 30px;
}
#products-detail.photoplus-shiny-neo .dailymode_item dt {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 40px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#products-detail.photoplus-shiny-neo .dailymode_item dt.triple {
  background-color: #D8CCB9;
}
#products-detail.photoplus-shiny-neo .dailymode_item dt.ion {
  background-color: #c2d8d0;
}
#products-detail.photoplus-shiny-neo .dailymode_item dt.ems {
  background-color: #d3d3d3;
}
#products-detail.photoplus-shiny-neo .dailymode_item dt.led {
  background-color: #c69ea3;
}
#products-detail.photoplus-shiny-neo .dailymode_item dt span {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  padding: 0 1.2em;
  height: 24px;
  border-radius: 12px;
  margin-right: 10px;
}
#products-detail.photoplus-shiny-neo .dailymode_item dd {
  display: flex;
  flex-flow: row wrap;
}
#products-detail.photoplus-shiny-neo .dailymode_item dd .img {
  width: 140px;
  padding-right: 20px;
}
#products-detail.photoplus-shiny-neo .dailymode_item dd .img + p {
  width: calc(100% - 140px);
}
#products-detail.photoplus-shiny-neo .dailymode_item .caution {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .dailymode_item .caution {
    font-size: 1rem;
  }
}
#products-detail.photoplus-shiny-neo .dailymode_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photoplus-shiny-neo .dailymode_video {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .dailymode_video {
    width: 100%;
  }
}
#products-detail.photoplus-shiny-neo .dailymode_video .video-box {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  width: 100%;
}
#products-detail.photoplus-shiny-neo .dailymode_video .video-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.photoplus-shiny-neo .weeklycare {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare {
    padding: 60px 0;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare_video {
  width: 100%;
  max-width: 640px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare_video {
    width: 100%;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare_video .video-box {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  width: 100%;
}
#products-detail.photoplus-shiny-neo .weeklycare_video .video-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.photoplus-shiny-neo .weeklycare .feature_blocks {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.photoplus-shiny-neo .weeklycare .feature_blocks::before {
    display: none;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare .feature_blocks:nth-of-type(1), #products-detail.photoplus-shiny-neo .weeklycare .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.photoplus-shiny-neo .weeklycare .feature_blocks:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photoplus-shiny-neo .weeklycare .feature_blocks .lead {
  font-size: 1.6rem;
}
#products-detail.photoplus-shiny-neo .weeklycare .ttl {
  font-size: 28px !important;
  padding: 0.5em !important;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare .subttl {
    font-size: 2rem;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare p {
  font-size: 1.6rem;
}
#products-detail.photoplus-shiny-neo .weeklycare .caution {
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare .caution {
    font-size: 1rem;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare_list {
    margin: 0px 0px 30px;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl {
  padding: 30px;
  width: 50%;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .weeklycare_list dl {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd li:last-child {
  padding-right: 0px;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd li:last-child::after {
  display: none;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.2rem;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd.image {
  margin: 0px -10px 10px;
  display: flex;
  flex-flow: row wrap;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd.image .main {
  width: 70%;
  padding: 10px;
}
#products-detail.photoplus-shiny-neo .weeklycare_list dl dd.image .sub {
  width: 30%;
  padding: 10px;
}
#products-detail.photoplus-shiny-neo .detail-cosmetics {
  padding: 100px 0;
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}
#products-detail.photoplus-shiny-neo .dyhpmode {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photoplus-shiny-neo .dyhpmode {
    padding: 40px 0;
  }
}
#products-detail.photoplus-shiny-neo .dyhpmode .graphimg img {
  max-width: 900px;
  margin: 0px auto;
}

/*------------------------------------------------------------------
    #products-detail.blue-green-mask
------------------------------------------------------------------*/
#products-detail.blue-green-mask .whatsRF {
  margin-top: 100px;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.blue-green-mask .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.blue-green-mask .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.blue-green-mask .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-mask .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-mask .whatsRF .img img {
  width: 100%;
}
#products-detail.blue-green-mask .masksummary {
  padding: 60px;
  background-color: #dee5e2;
}
#products-detail.blue-green-mask .masksummary .feature_blocks {
  background-image: none;
}
#products-detail.blue-green-mask .graph {
  padding: 40px 0;
}
#products-detail.blue-green-mask .graph_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .graph_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.blue-green-mask .graph_list:last-child {
  margin-bottom: 0px;
}
#products-detail.blue-green-mask .graph_item {
  padding: 20px;
  width: 50%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .graph_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products-detail.blue-green-mask .graph_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.blue-green-mask .graph_item.circle {
  max-width: 300px;
}
#products-detail.blue-green-mask .graph_item .ttl {
  text-align: center;
  margin-bottom: 15px !important;
}
#products-detail.blue-green-mask .graph_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .graph_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.blue-green-mask .detailgraph h3 {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .detailgraph h3 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-mask .howto {
  background-color: #222222;
}
#products-detail.blue-green-mask .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .howto_list {
    flex-flow: column;
  }
}
#products-detail.blue-green-mask .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.blue-green-mask .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.blue-green-mask .howto dl dt {
  margin-bottom: 15px;
  text-align: center;
}
#products-detail.blue-green-mask .howto dl dd {
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-size: 1.6rem;
}
#products-detail.blue-green-mask .howto p {
  color: #fff;
}

/*------------------------------------------------------------------
    #products-detail.miyabi
------------------------------------------------------------------*/
#products-detail.miyabi .detail-feature {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.miyabi .detail-feature {
    padding: 40px 0px;
  }
}
#products-detail.miyabi .detail-feature .leadtxt {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.miyabi .detail-feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.miyabi .detail-feature-box {
  margin-bottom: 60px;
}
#products-detail.miyabi .detail-feature-box:last-child {
  margin-bottom: 0;
}
#products-detail.miyabi .detail-feature-box ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 20px;
}
#products-detail.miyabi .detail-feature-box ul li {
  width: 33.3333333333%;
  padding: 5px;
  min-height: 85px;
}
@media screen and (max-width: 768px) {
  #products-detail.miyabi .detail-feature-box ul li {
    width: 50%;
  }
}
#products-detail.miyabi .detail-feature-box ul li span {
  background-color: #a8a187;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.miyabi .detail-feature-box ul li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.miyabi .detail-feature-box ul li span sup {
  display: contents;
}
#products-detail.miyabi .detail-feature-box ul.device-list li span {
  background-color: #fff;
  border: 2px solid #b6b9ac;
  color: #b6b9ac;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.miyabi .detail-feature-box ul.device-list li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.miyabi .detail-feature-box ul.device-list li span sup {
  display: contents;
}
#products-detail.miyabi .detail-feature .txt dl {
  margin-bottom: 40px;
}
#products-detail.miyabi .detail-feature .txt dl dt {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#products-detail.miyabi .detail-feature .txt dl dt::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #b6b9ac;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
#products-detail.miyabi .detail-penetration {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.miyabi .detail-penetration {
    padding: 60px 0;
  }
}
#products-detail.miyabi .detail-penetration .img img {
  width: 100%;
  max-width: 720px;
  margin: 0px auto;
}

/*------------------------------------------------------------------
    #products-detail.blue-green-mask
------------------------------------------------------------------*/
#products-detail.blue-green-mask .whatsRF {
  margin-top: 100px;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.blue-green-mask .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.blue-green-mask .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.blue-green-mask .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-mask .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-mask .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-mask .whatsRF .img img {
  width: 100%;
}

/*------------------------------------------------------------------
    #products-detail.design-lift
------------------------------------------------------------------*/
#products-detail.design-lift .whatsRF {
  margin-top: 100px;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.design-lift .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.design-lift .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.design-lift .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.design-lift .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.design-lift .whatsRF .img img {
  width: 100%;
}
#products-detail.design-lift .howto {
  background-color: #222222;
}
#products-detail.design-lift .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .howto_list {
    flex-flow: column;
  }
}
#products-detail.design-lift .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.design-lift .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.design-lift .howto dl dt {
  margin-bottom: 15px;
  text-align: center;
}
#products-detail.design-lift .howto dl dd {
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-size: 1.6rem;
}
#products-detail.design-lift .howto p {
  color: #fff;
}
#products-detail.design-lift .feature .subttl {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  color: #998b71;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .feature .subttl {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.design-lift .feature .subttl span {
  display: block;
  padding-top: 10px;
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .feature .subttl span {
    font-size: 1rem;
  }
}
#products-detail.design-lift .tech {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .tech {
    padding: 40px 0;
  }
}
#products-detail.design-lift .tech ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .tech ul {
    margin: 0 -10px 30px;
  }
}
#products-detail.design-lift .tech ul li {
  padding: 20px 15px;
  width: 33.3333333333%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #products-detail.design-lift .tech ul li {
    width: 50%;
    padding: 0 10px;
  }
}
#products-detail.design-lift .tech ol {
  margin-bottom: 20px;
}
#products-detail.design-lift .tech ol li {
  margin-bottom: 5px;
  line-height: 1.5;
}
#products-detail.design-lift .tech ol li span {
  font-weight: bold;
}

/*------------------------------------------------------------------
    #products-detail.curl-wave
------------------------------------------------------------------*/
#products-detail.curl-wave .leadpoint {
  padding: 80px 0px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .leadpoint {
    padding: 40px 0px;
  }
}
#products-detail.curl-wave .leadpoint h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .leadpoint h3 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.curl-wave .leadpoint_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.curl-wave .leadpoint_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .leadpoint_list {
    margin: 0px -15px;
  }
}
#products-detail.curl-wave .leadpoint_item {
  padding: 0px 30px;
  text-align: center;
  width: 33.3333333333%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .leadpoint_item {
    padding: 0px 15px;
  }
}
#products-detail.curl-wave .leadpoint_item p {
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .leadpoint_item p {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
#products-detail.curl-wave .leadpoint_item dt {
  margin-bottom: 20px;
}
#products-detail.curl-wave .leadpoint_item dd {
  font-size: 1.8rem;
  color: #a3a3a3;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .leadpoint_item dd {
    font-size: 1.4rem;
  }
}
#products-detail.curl-wave .howto {
  background-color: #c1bdb4;
}
#products-detail.curl-wave .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .howto_list {
    flex-flow: column;
    padding-top: 30px;
  }
}
#products-detail.curl-wave .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.curl-wave .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.curl-wave .howto dl dt {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  text-align: center;
  line-height: 40px;
  font-size: 1.8rem;
  font-weight: bold;
}
#products-detail.curl-wave .howto dl dd {
  color: #fff;
}
#products-detail.curl-wave .howto dl dd.txt {
  margin-bottom: 20px;
  line-height: 1.4;
}
#products-detail.curl-wave .howto dl dd span {
  font-size: 1.2rem;
  padding-top: 5px;
  display: block;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .feature {
    padding: 40px 0px;
  }
}
#products-detail.curl-wave .feature .ttl {
  font-size: 2.2rem !important;
}
#products-detail.curl-wave .feature .ttl span {
  font-size: 1.4rem;
  display: block;
  padding-top: 10px;
  position: relative;
  padding-left: 30px;
  color: #c6c6c6;
}
#products-detail.curl-wave .feature .ttl span::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #c6c6c6;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transform: translateY(-50%);
}
#products-detail.curl-wave .feature .subttl {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 10px;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
#products-detail.curl-wave .feature .subttl span {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
#products-detail.curl-wave .feature_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.curl-wave .feature_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.curl-wave .graph {
  padding: 40px 0;
}
#products-detail.curl-wave .graph_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .graph_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.curl-wave .graph_list:last-child {
  margin-bottom: 0px;
}
#products-detail.curl-wave .graph_item {
  padding: 20px;
  width: 50%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .graph_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products-detail.curl-wave .graph_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.curl-wave .graph_item .ttl {
  text-align: center;
  margin-bottom: 15px !important;
}
#products-detail.curl-wave .graph_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .graph_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.curl-wave .graph_item table {
  border-collapse: collapse;
  width: 100%;
}
#products-detail.curl-wave .graph_item table thead th {
  text-align: center;
  padding: 8px;
  font-weight: bold;
  font-size: 1.5rem;
  border: 1px solid #939393;
  background-color: #6e6e6e;
  color: #fff;
}
#products-detail.curl-wave .graph_item table tbody td {
  border: 1px solid #939393;
  padding: 10px;
  line-height: 1.5;
}
#products-detail.curl-wave .technology {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .technology {
    padding: 40px 0px;
  }
}
#products-detail.curl-wave .technology h3 {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  color: #393939;
  margin-bottom: 40px;
  line-height: 1.6;
}
#products-detail.curl-wave .technology h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#products-detail.curl-wave .technology h4 em {
  display: block;
  padding-bottom: 10px;
  font-size: 5rem;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}
#products-detail.curl-wave .technology h4 span {
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  padding-top: 10px;
}
#products-detail.curl-wave .technology_ttl {
  text-align: center;
  margin-bottom: 30px;
}
#products-detail.curl-wave .technology_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .technology_list {
    flex-flow: column;
    align-items: center;
  }
}
#products-detail.curl-wave .technology_item {
  padding: 40px 35px;
  text-align: center;
  width: calc((100% - 40px) / 2);
  max-width: 480px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.curl-wave .technology_item {
    width: 100%;
    margin-right: 0px;
  }
}
#products-detail.curl-wave .technology_item:nth-child(2n) {
  margin-right: 0px;
}
#products-detail.curl-wave .technology_item dt {
  margin-bottom: 20px;
}
#products-detail.curl-wave .technology_item dd {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3b3b3b;
  font-family: "Roboto", sans-serif;
  text-align: left;
}
#products-detail.curl-wave .technology_item dl + p {
  margin-top: 30px;
  display: inline-block;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  padding: 5px 0;
}
#products-detail.curl-wave .technology_item dl + p + p {
  margin-top: 10px;
  text-align: left;
  padding: 15px;
  background-color: #f8f8f8;
}
#products-detail.curl-wave .technology_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 15px;
}
#products-detail.curl-wave .technology_video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/*------------------------------------------------------------------
    #products-detail.ipl-clear-shot
------------------------------------------------------------------*/
#products-detail.ipl-clear-shot .masksummary {
  padding: 60px;
  background-color: #dee5e2;
}
#products-detail.ipl-clear-shot .masksummary .feature_blocks {
  background-image: none;
}

/*------------------------------------------------------------------
    #products-detail.liftlogy
------------------------------------------------------------------*/
#products-detail.liftlogy .whatsRF {
  margin-top: 100px;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.liftlogy .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.liftlogy .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.liftlogy .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.liftlogy .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.liftlogy .whatsRF .img img {
  width: 100%;
}
#products-detail.liftlogy .movie {
  background-color: #ebede5;
}
#products-detail.liftlogy .feature.-bottomline {
  position: relative;
}
#products-detail.liftlogy .feature:nth-child(even) {
  background-color: #ebede5;
}
#products-detail.liftlogy .feature.detail-cosmetics {
  background-color: #fff;
}
#products-detail.liftlogy .feature .leadtxt {
  border-top: 1px solid #dc3434;
  border-bottom: 1px solid #dc3434;
  padding: 10px 0;
  font-size: 22px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #dc3434;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.liftlogy .feature .leadtxt + p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .feature .leadtxt + p {
    font-size: 1.4rem;
  }
}
#products-detail.liftlogy .feature .leadtxt + p span {
  display: block;
}
#products-detail.liftlogy .feature .summary {
  max-width: 840px;
  margin: 0 auto;
}
#products-detail.liftlogy .feature-sub {
  padding: 40px;
  border-radius: 5px;
  background-color: #fcf2e7;
}
#products-detail.liftlogy .feature-sub h4 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  line-height: 1.5;
}
#products-detail.liftlogy .feature-sub-tech {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products-detail.liftlogy .feature-sub-tech dl {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
#products-detail.liftlogy .feature-sub-tech dl:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .feature-sub-tech dl:last-child {
    margin-top: 40px;
    margin-right: auto;
  }
}
#products-detail.liftlogy .feature-sub-tech dl dt {
  margin-bottom: 10px;
}
#products-detail.liftlogy .feature-sub-tech dl dd {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.6;
}
#products-detail.liftlogy .exam {
  padding: 60px 0;
}
#products-detail.liftlogy .exam-block {
  text-align: center;
}
#products-detail.liftlogy .exam-ba {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 50px;
}
#products-detail.liftlogy .mode {
  padding: 60px 0;
  background-color: #f7f7f7;
}
#products-detail.liftlogy .mode h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: normal;
  text-align: center;
  margin-bottom: 60px;
}
#products-detail.liftlogy .mode h3 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: normal;
  margin-top: 10px;
}
#products-detail.liftlogy .mode-box {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 80px;
}
#products-detail.liftlogy .mode-image {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0px auto;
  z-index: 3;
}
#products-detail.liftlogy .mode-detail-face {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .mode-detail-face {
    padding: 80px 15px 40px;
  }
}
#products-detail.liftlogy .mode-detail-face .l {
  width: 200px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .mode-detail-face .l {
    width: 170px;
    margin-right: auto;
    margin: 0px auto 30px;
  }
}
#products-detail.liftlogy .mode-detail-face .l img {
  width: 100%;
}
#products-detail.liftlogy .mode-detail-face .r h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.5;
}
#products-detail.liftlogy .mode-detail-face .r li {
  margin-bottom: 5px;
  line-height: 1.5;
}
#products-detail.liftlogy .mode-detail-face .r li.annotation {
  font-size: 1.2rem;
}
#products-detail.liftlogy .mode-detail-body {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .mode-detail-body {
    padding: 80px 15px 40px;
  }
}
#products-detail.liftlogy .mode-detail-body .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .mode-detail-body .item {
    margin-bottom: 40px;
  }
  #products-detail.liftlogy .mode-detail-body .item:last-child {
    margin-bottom: 0;
  }
}
#products-detail.liftlogy .mode-detail-body .item h5 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
#products-detail.liftlogy .mode-detail-body .item h5 + p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#products-detail.liftlogy .detail-cosmetics {
  padding: 100px 0;
}
#products-detail.liftlogy .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.liftlogy .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.liftlogy .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.liftlogy .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.liftlogy .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.liftlogy .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.liftlogy .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.liftlogy .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.liftlogy .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.liftlogy .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------------
    #products-detail.liftlogy-sp-sp
------------------------------------------------------------------*/
#products-detail.liftlogy-sp .whatsRF {
  margin-top: 100px;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.liftlogy-sp .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.liftlogy-sp .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.liftlogy-sp .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.liftlogy-sp .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.liftlogy-sp .whatsRF .img img {
  width: 100%;
}
#products-detail.liftlogy-sp .grade {
  padding: 60px 0;
  background-color: #fafaf4;
}
#products-detail.liftlogy-sp .movie {
  background-color: #ebede5;
}
#products-detail.liftlogy-sp .feature.-bottomline {
  position: relative;
}
#products-detail.liftlogy-sp .feature:nth-child(even) {
  background-color: #ebede5;
}
#products-detail.liftlogy-sp .feature.detail-cosmetics {
  background-color: #fff;
}
#products-detail.liftlogy-sp .feature .leadtxt {
  border-top: 1px solid #dc3434;
  border-bottom: 1px solid #dc3434;
  padding: 10px 0;
  font-size: 22px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #dc3434;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.liftlogy-sp .feature .leadtxt + p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .feature .leadtxt + p {
    font-size: 1.4rem;
  }
}
#products-detail.liftlogy-sp .feature .leadtxt + p span {
  display: block;
}
#products-detail.liftlogy-sp .feature .summary {
  max-width: 840px;
  margin: 0 auto;
}
#products-detail.liftlogy-sp .feature-sub {
  padding: 40px;
  border-radius: 5px;
  background-color: #fcf2e7;
}
#products-detail.liftlogy-sp .feature-sub h4 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  line-height: 1.5;
}
#products-detail.liftlogy-sp .feature-sub-tech {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products-detail.liftlogy-sp .feature-sub-tech dl {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
#products-detail.liftlogy-sp .feature-sub-tech dl:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .feature-sub-tech dl:last-child {
    margin-top: 40px;
    margin-right: auto;
  }
}
#products-detail.liftlogy-sp .feature-sub-tech dl dt {
  margin-bottom: 10px;
}
#products-detail.liftlogy-sp .feature-sub-tech dl dd {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.6;
}
#products-detail.liftlogy-sp .exam {
  padding: 60px 0;
}
#products-detail.liftlogy-sp .exam-block {
  text-align: center;
}
#products-detail.liftlogy-sp .exam-ba {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 50px;
}
#products-detail.liftlogy-sp .mode {
  padding: 60px 0;
  background-color: #f7f7f7;
}
#products-detail.liftlogy-sp .mode h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: normal;
  text-align: center;
  margin-bottom: 60px;
}
#products-detail.liftlogy-sp .mode h3 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: normal;
  margin-top: 10px;
}
#products-detail.liftlogy-sp .mode-box {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 80px;
}
#products-detail.liftlogy-sp .mode-image {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0px auto;
  z-index: 3;
}
#products-detail.liftlogy-sp .mode-detail-face {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .mode-detail-face {
    padding: 80px 15px 40px;
  }
}
#products-detail.liftlogy-sp .mode-detail-face .l {
  width: 200px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .mode-detail-face .l {
    width: 170px;
    margin-right: auto;
    margin: 0px auto 30px;
  }
}
#products-detail.liftlogy-sp .mode-detail-face .l img {
  width: 100%;
}
#products-detail.liftlogy-sp .mode-detail-face .r h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.5;
}
#products-detail.liftlogy-sp .mode-detail-face .r li {
  margin-bottom: 5px;
  line-height: 1.5;
}
#products-detail.liftlogy-sp .mode-detail-face .r li.annotation {
  font-size: 1.2rem;
}
#products-detail.liftlogy-sp .mode-detail-body {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .mode-detail-body {
    padding: 80px 15px 40px;
  }
}
#products-detail.liftlogy-sp .mode-detail-body .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .mode-detail-body .item {
    margin-bottom: 40px;
  }
  #products-detail.liftlogy-sp .mode-detail-body .item:last-child {
    margin-bottom: 0;
  }
}
#products-detail.liftlogy-sp .mode-detail-body .item h5 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
#products-detail.liftlogy-sp .mode-detail-body .item h5 + p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#products-detail.liftlogy-sp .detail-cosmetics {
  padding: 100px 0;
}
#products-detail.liftlogy-sp .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.liftlogy-sp .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.liftlogy-sp .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------------
    #products-detail.blue-green-shot
------------------------------------------------------------------*/
#products-detail.blue-green-shot .whatsRF {
  padding: 30px 40px;
  display: flex;
  flex-flow: row-reverse wrap;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #f6f6f6;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
    padding: 20px;
  }
}
#products-detail.blue-green-shot .whatsRF h4 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.blue-green-shot .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.blue-green-shot .whatsRF .txt {
  width: calc(100% - 180px);
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-shot .whatsRF .detailimage {
  margin-right: 40px;
  width: 140px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .whatsRF .detailimage {
    margin-right: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-shot .whatsRF .detailimage img {
  width: 100%;
}
#products-detail.blue-green-shot .principles {
  background-color: transparent;
}
#products-detail.blue-green-shot .principles .lights {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#products-detail.blue-green-shot .principles .h01 {
  color: #48926b;
}
#products-detail.blue-green-shot .principles h3 {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  color: #48926b;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .principles h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-shot .masksummary {
  padding: 60px;
  background-color: #dee5e2;
}
#products-detail.blue-green-shot .masksummary .feature_blocks {
  background-image: none;
}
#products-detail.blue-green-shot .exam h3 {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  color: #48926b;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .exam h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .exam .img {
    padding: 20px 0;
  }
}
#products-detail.blue-green-shot .exam .img img {
  max-width: 760px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .exam .img img {
    max-width: 420px;
  }
}
#products-detail.blue-green-shot .graph {
  padding: 40px 0;
}
#products-detail.blue-green-shot .graph_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -20px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .graph_list {
    margin: 0px 0px 40px;
  }
}
#products-detail.blue-green-shot .graph_list:last-child {
  margin-bottom: 0px;
}
#products-detail.blue-green-shot .graph_item {
  padding: 20px;
  width: 50%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .graph_item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  #products-detail.blue-green-shot .graph_item:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.blue-green-shot .graph_item.circle {
  max-width: 300px;
}
#products-detail.blue-green-shot .graph_item .ttl {
  text-align: center;
  margin-bottom: 15px !important;
}
#products-detail.blue-green-shot .graph_item .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .graph_item .img {
    margin-bottom: 10px;
  }
}
#products-detail.blue-green-shot .mechanism h3 {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  color: #48926b;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .mechanism h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
#products-detail.blue-green-shot .mechanism .img {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .mechanism .img {
    padding: 20px 0;
  }
}
#products-detail.blue-green-shot .mechanism .img img {
  max-width: 760px;
  margin: 0 auto;
  display: block;
}
#products-detail.blue-green-shot .howto {
  background-color: #222222;
}
#products-detail.blue-green-shot .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .howto_list {
    flex-flow: column;
  }
}
#products-detail.blue-green-shot .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.blue-green-shot .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.blue-green-shot .howto dl dt {
  margin-bottom: 15px;
  text-align: center;
}
#products-detail.blue-green-shot .howto dl dd {
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-size: 1.6rem;
}
#products-detail.blue-green-shot .howto p {
  color: #fff;
}
#products-detail.blue-green-shot .detail-cosmetics {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .detail-cosmetics {
    padding: 40px 0;
  }
}
#products-detail.blue-green-shot .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.blue-green-shot .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.blue-green-shot .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.blue-green-shot .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.blue-green-shot .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.blue-green-shot .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.blue-green-shot .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.blue-green-shot .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.blue-green-shot .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.blue-green-shot .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}
#products-detail.blue-green-shot .effective {
  padding: 100px 0;
}
#products-detail.blue-green-shot .effective-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products-detail.blue-green-shot .effective-item {
  width: calc((100% - 20px) / 2);
  background-color: #f2f4f3;
  padding: 40px 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .effective-item {
    width: 100%;
    max-width: 480px;
    margin: 0px auto 30px;
    padding: 30px 20px;
  }
}
#products-detail.blue-green-shot .effective-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products-detail.blue-green-shot .effective-item:last-child {
    margin-right: auto;
  }
}
#products-detail.blue-green-shot .effective-item h3 {
  color: #48926b;
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
#products-detail.blue-green-shot .effective-item p {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
#products-detail.blue-green-shot .effective-item dt {
  margin-bottom: 15px;
}
#products-detail.blue-green-shot .effective-item dd {
  padding: 15px;
  background-color: #fff;
}
#products-detail.blue-green-shot .effective-item dd p {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #48926b;
}
#products-detail.blue-green-shot .effective-item dd .point {
  background-color: #48926b;
  color: #fff;
  line-height: 28px;
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#products-detail.blue-green-shot .effective-item dd li.main {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 2.4rem);
  color: #48926b;
  font-weight: 500;
  border-bottom: 1px dashed #c5c5c5;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
#products-detail.blue-green-shot .effective-item dd li.main:last-child {
  margin-bottom: 0;
}
#products-detail.blue-green-shot .effective-item dd li.main span {
  color: #222222;
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 10px 0;
}
/*------------------------------------------------------------------
    #products-detail.photo-plus-prestige-sp3
------------------------------------------------------------------*/
#products-detail.photo-plus-prestige-sp3 .detail-feature {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-feature {
    padding: 40px 0px;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-feature .leadtxt {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box {
  margin-bottom: 60px;
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box:last-child {
  margin-bottom: 0;
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 20px;
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box ul li {
  width: 33.3333333333%;
  padding: 5px;
  min-height: 85px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-feature-box ul li {
    width: 50%;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box ul li span {
  background-color: #a8a187;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-feature-box ul li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box ul li span sup {
  display: contents;
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box ul.device-list li span {
  background-color: #fff;
  border: 2px solid #b6b9ac;
  color: #b6b9ac;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-feature-box ul.device-list li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-feature-box ul.device-list li span sup {
  display: contents;
}
#products-detail.photo-plus-prestige-sp3 .detail-feature .txt dl {
  margin-bottom: 40px;
}
#products-detail.photo-plus-prestige-sp3 .detail-feature .txt dl dt {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#products-detail.photo-plus-prestige-sp3 .detail-feature .txt dl dt::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #b6b9ac;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
#products-detail.photo-plus-prestige-sp3 .detail-penetration {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-penetration {
    padding: 60px 0;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-penetration .img img {
  width: 100%;
  max-width: 720px;
  margin: 0px auto;
}
#products-detail.photo-plus-prestige-sp3 .mode {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .mode {
    padding: 50px 0;
  }
}
#products-detail.photo-plus-prestige-sp3 .mode p {
  font-size: 2rem;
}
#products-detail.photo-plus-prestige-sp3 .mode .item {
  padding: 30px;
  border: 1px solid #ddd;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  margin: 0 auto 30px;
  max-width: 960px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .mode .item {
    flex-flow: column;
  }
}
#products-detail.photo-plus-prestige-sp3 .mode .item h4 {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  width: 100%;
  display: block;
}
#products-detail.photo-plus-prestige-sp3 .mode .item h4 em {
  font-size: 1.3rem;
}
#products-detail.photo-plus-prestige-sp3 .mode_item {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .mode_item {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.photo-plus-prestige-sp3 .mode .r {
  width: 60%;
  padding-left: 30px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .mode .r {
    width: 100%;
    padding-left: 0;
  }
}
#products-detail.photo-plus-prestige-sp3 .mode .r ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus-prestige-sp3 .mode .r li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus-prestige-sp3 .mode .r li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus-prestige-sp3 .mode .r li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus-prestige-sp3 .mode .r li:last-child::after {
  display: none;
}
#products-detail.photo-plus-prestige-sp3 .mode .r li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.3rem;
}
#products-detail.photo-plus-prestige-sp3 .mode .r p {
  font-size: 1.6rem;
}
#products-detail.photo-plus-prestige-sp3 .mode .r.image {
  margin-bottom: 10px;
}
#products-detail.photo-plus-prestige-sp3 .mode .annotation {
  font-size: 1.2rem;
}
#products-detail.photo-plus-prestige-sp3 .mode .item-certec {
  background-color: #fac6a4;
  border-radius: 5px;
  border: none;
  box-shadow: 10px 10px 0px rgba(250, 198, 164, 0.5);
}
#products-detail.photo-plus-prestige-sp3 .mode .item-certec h4 {
  text-align: center;
  margin-bottom: 0;
}
#products-detail.photo-plus-prestige-sp3 .mode .item-certec h4 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
}
#products-detail.photo-plus-prestige-sp3 .mode .item-certec li span {
  background-color: #c47948;
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-cosmetics {
    padding: 40px 0;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-prestige-sp3 .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}

/*==================================================================
    #products-detail.flawless-serum-hydrating
===================================================================*/
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_blocks {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_blocks:nth-of-type(1), #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .ttl {
  font-size: 1.8rem;
  padding: 1em;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .subttl {
    font-size: 2rem;
  }
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px -5px 0px;
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01_item {
  padding: 5px;
  width: 20%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01_item dt {
  margin-bottom: 10px;
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_double {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_double {
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_double .txt {
  width: 50%;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_double .txt {
    width: 100%;
    padding-right: 0px;
  }
}
#products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_double .img {
  width: 50%;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.flawless-serum-hydrating .o-flawless-serum-hydrating01 .feature_double .img {
    width: 100%;
  }
}

/*==================================================================
    #products-detail.pbp
===================================================================*/
#products-detail.pbp .o-pbp01 {
  padding: 100px 0;
}
#products-detail.pbp .o-pbp01 p {
  font-size: 2rem;
}
#products-detail.pbp .o-pbp01_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -5px;
}
#products-detail.pbp .o-pbp01_list li {
  padding: 5px;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #products-detail.pbp .o-pbp01_list li {
    width: 100%;
  }
}
#products-detail.pbp .o-pbp01_list li div {
  border: 2px solid #000;
  background: #f9f9f6;
  padding: 15px;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
#products-detail.pbp .o-pbp01_list li div span {
  font-size: 1.5rem;
  display: block;
  font-weight: normal;
}
#products-detail.pbp .spec_outline dd ul {
  flex-flow: row wrap;
}
#products-detail.pbp .spec_outline dd ul li {
  margin-bottom: 4px;
}

/*==================================================================
    #products-detail.medi-lift-moisture-serum
===================================================================*/
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 {
  padding: 100px 0;
  background: #fff;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks {
    margin-bottom: 0px;
  }
  #products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks::before {
    display: none;
  }
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks:nth-of-type(1), #products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks:nth-of-type(2) {
  padding-bottom: 0px;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks picture {
  text-align: center;
  display: block;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 p {
  font-size: 1.6rem;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -10px 0px;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01_item {
  padding: 10px;
  width: 20%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01_item {
    width: 50%;
    margin-bottom: 15px;
  }
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01_item dt {
  margin-bottom: 10px;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01_item dd {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01_item dd span {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01_item:last-of-type {
  margin-bottom: 0px;
}
#products-detail.medi-lift-moisture-serum .o-medi-lift-moisture-serum01 .feature_blocks .lead em {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
#products-detail.medi-lift-moisture-serum .ingredient {
  padding: 100px 0;
  background-color: #f1f1f1;
}
#products-detail.medi-lift-moisture-serum .ingredient .leadpoint_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px -15px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-moisture-serum .ingredient .leadpoint_list {
    margin-bottom: 20px;
    flex-flow: column;
  }
}
#products-detail.medi-lift-moisture-serum .ingredient .leadpoint_item {
  padding: 0px 15px;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-moisture-serum .ingredient .leadpoint_item {
    padding: 0px 15px;
    width: 100%;
    margin-bottom: 15px;
  }
}
#products-detail.medi-lift-moisture-serum .ingredient .leadpoint_item dl {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
  background-color: #fff;
}
#products-detail.medi-lift-moisture-serum .ingredient .leadpoint_item dt {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
#products-detail.medi-lift-moisture-serum .ingredient .leadpoint_item dt span {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  color: #8bafc8;
  margin-bottom: 5px;
}
#products-detail.medi-lift-moisture-serum .ingredient .leadpoint_item dd {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-moisture-serum .ingredient .leadpoint_item dd {
    font-size: 1.3rem;
  }
}
#products-detail.medi-lift-moisture-serum .ingredient h3 {
  color: #445968;
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#products-detail.medi-lift-moisture-serum .ingredient h3 span {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #445968;
  background-color: #fff;
  padding: 0.2em 0.5em;
  font-size: 1.4rem;
}
#products-detail.medi-lift-moisture-serum .ingredient h3 + p {
  font-size: 1.5rem;
}
#products-detail.medi-lift-moisture-serum .howto {
  background-color: #666f7e;
}
#products-detail.medi-lift-moisture-serum .howto h2 {
  margin-bottom: 40px;
}
#products-detail.medi-lift-moisture-serum .howto h2 + p {
  color: #fff;
}
#products-detail.medi-lift-moisture-serum .howto_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-moisture-serum .howto_list {
    flex-flow: column;
    padding-top: 20px;
  }
}
#products-detail.medi-lift-moisture-serum .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.medi-lift-moisture-serum .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.medi-lift-moisture-serum .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.medi-lift-moisture-serum .howto dl dt {
  margin-bottom: 20px;
  text-align: center;
}
#products-detail.medi-lift-moisture-serum .howto dl dd {
  color: #fff;
  text-align: left;
  line-height: 1.5;
}
#products-detail.medi-lift-moisture-serum .howto dl dd.txt {
  margin-bottom: 20px;
}

/*------------------------------------------------------------------
    #products-detail.photo-plus-deep-lift
------------------------------------------------------------------*/
#products-detail.photo-plus-deep-lift .detail-feature {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature {
    padding: 40px 0px;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature .leadtxt {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature-box {
  margin-bottom: 60px;
}
#products-detail.photo-plus-deep-lift .detail-feature-box:last-child {
  margin-bottom: 0;
}
#products-detail.photo-plus-deep-lift .detail-feature-box ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 20px;
}
#products-detail.photo-plus-deep-lift .detail-feature-box ul li {
  width: 33.3333333333%;
  padding: 5px;
  min-height: 85px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature-box ul li {
    width: 50%;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature-box ul li span {
  background-color: #a8a187;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature-box ul li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature-box ul li span sup {
  display: contents;
}
#products-detail.photo-plus-deep-lift .detail-feature-box ul.device-list li span {
  background-color: #fff;
  border: 2px solid #b6b9ac;
  color: #b6b9ac;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature-box ul.device-list li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature-box ul.device-list li span sup {
  display: contents;
}
#products-detail.photo-plus-deep-lift .detail-feature .txt dl {
  margin-bottom: 40px;
}
#products-detail.photo-plus-deep-lift .detail-feature .txt dl dt {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#products-detail.photo-plus-deep-lift .detail-feature .txt dl dt::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #b6b9ac;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
#products-detail.photo-plus-deep-lift .detail-feature .widettl {
  font-size: 28px !important;
  padding: 0.5em !important;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature .widettl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature .widettl span {
  font-size: 1.5rem;
  font-weight: normal;
  display: block;
  margin-bottom: 0px;
}
#products-detail.photo-plus-deep-lift .detail-feature .sublead {
  font-size: 2.2rem;
  color: #a8a187;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
#products-detail.photo-plus-deep-lift .detail-feature .line {
  background-color: #a8a187;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
  padding: 0.5em;
}
#products-detail.photo-plus-deep-lift .detail-feature_sub {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature_sub {
    display: block;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature_sub dl {
  width: 50%;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-feature_sub dl {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 30px;
  }
}
#products-detail.photo-plus-deep-lift .detail-feature_sub dl dt {
  margin-bottom: 10px;
}
#products-detail.photo-plus-deep-lift .detail-feature_sub dl dd {
  text-align: center;
  font-weight: bold;
  background-color: #607d8b;
  color: #fff;
  padding: 0.5em;
  font-size: 1.8rem;
}
#products-detail.photo-plus-deep-lift .detail-penetration {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-penetration {
    padding: 60px 0;
  }
}
#products-detail.photo-plus-deep-lift .detail-penetration .img img {
  width: 100%;
  max-width: 720px;
  margin: 0px auto;
}
#products-detail.photo-plus-deep-lift .mode {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode {
    padding: 50px 0;
  }
}
#products-detail.photo-plus-deep-lift .mode .ttl {
  font-size: 28px !important;
  padding: 0.5em !important;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photo-plus-deep-lift .mode .headline {
  background-color: #a8a187;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
#products-detail.photo-plus-deep-lift .mode .headline-lead {
  font-size: 1.8rem;
}
#products-detail.photo-plus-deep-lift .mode .item {
  padding: 30px;
  border: 1px solid #ddd;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  margin: 0 auto 30px;
  max-width: 960px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .item {
    flex-flow: column;
  }
}
#products-detail.photo-plus-deep-lift .mode .item h4 {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
  width: 100%;
  display: block;
}
#products-detail.photo-plus-deep-lift .mode .item h4 em {
  font-size: 1.3rem;
}
#products-detail.photo-plus-deep-lift .mode_item {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode_item {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.photo-plus-deep-lift .mode .r {
  width: 60%;
  padding-left: 30px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .r {
    width: 100%;
    padding-left: 0;
  }
}
#products-detail.photo-plus-deep-lift .mode .r ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus-deep-lift .mode .r li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus-deep-lift .mode .r li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus-deep-lift .mode .r li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus-deep-lift .mode .r li:last-child::after {
  display: none;
}
#products-detail.photo-plus-deep-lift .mode .r li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.3rem;
}
#products-detail.photo-plus-deep-lift .mode .r p {
  font-size: 1.6rem;
}
#products-detail.photo-plus-deep-lift .mode .r.image {
  margin-bottom: 10px;
}
#products-detail.photo-plus-deep-lift .mode .annotation {
  font-size: 1.2rem;
}
#products-detail.photo-plus-deep-lift .mode .item-certec {
  background-color: #fac6a4;
  border-radius: 5px;
  border: none;
  box-shadow: 10px 10px 0px rgba(250, 198, 164, 0.5);
}
#products-detail.photo-plus-deep-lift .mode .item-certec h4 {
  text-align: center;
  margin-bottom: 0;
}
#products-detail.photo-plus-deep-lift .mode .item-certec h4 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
}
#products-detail.photo-plus-deep-lift .mode .item-certec li span {
  background-color: #c47948;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare {
    padding: 60px 0;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_video {
  width: 100%;
  max-width: 640px;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare_video {
    width: 100%;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_video .video-box {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  width: 100%;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_video .video-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare .feature_blocks {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare .feature_blocks {
    margin-bottom: 30px;
  }
  #products-detail.photo-plus-deep-lift .mode .weeklycare .feature_blocks::before {
    display: none;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare .feature_blocks:nth-of-type(1), #products-detail.photo-plus-deep-lift .mode .weeklycare .feature_blocks:nth-of-type(3) {
  padding-bottom: 30px;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare .feature_blocks:last-of-type {
  margin-bottom: 0px;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare .feature_blocks .lead {
  font-size: 1.6rem;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare .ttl {
  font-size: 28px !important;
  padding: 0.5em !important;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare .ttl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare .subttl {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #485969;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare .subttl {
    font-size: 2rem;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare p {
  font-size: 1.6rem;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare .caution {
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare .caution {
    font-size: 1rem;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare_list {
    margin: 0px 0px 30px;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl {
  padding: 30px;
  width: 50%;
  border: 1px solid #ddd;
  margin-left: -1px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .mode .weeklycare_list dl {
    width: 100%;
    padding: 30px 15px;
  }
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dt {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd {
  font-size: 1.6rem;
  line-height: 1.6;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd ul {
  display: flex;
  margin: 0px 0px 10px;
  flex-flow: row wrap;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd li {
  position: relative;
  padding-right: 30px;
  margin-bottom: 5px;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd li::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  text-align: center;
  content: "+";
  display: inline-block;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd li:last-child {
  padding-right: 0px;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd li:last-child::after {
  display: none;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd li span {
  background: #607d8b;
  color: #fff;
  padding: 0px 1em;
  border-radius: 2px;
  line-height: 25px;
  display: block;
  font-size: 1.2rem;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd.image {
  margin: 0px -10px 10px;
  display: flex;
  flex-flow: row wrap;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd.image .main {
  width: 70%;
  padding: 10px;
}
#products-detail.photo-plus-deep-lift .mode .weeklycare_list dl dd.image .sub {
  width: 30%;
  padding: 10px;
}
#products-detail.photo-plus-deep-lift .detail-cosmetics {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-cosmetics {
    padding: 40px 0;
  }
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}
#products-detail.photo-plus-deep-lift .tech {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .tech {
    padding: 40px 0;
  }
}
#products-detail.photo-plus-deep-lift .tech ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .tech ul {
    margin: 0 -10px 30px;
  }
}
#products-detail.photo-plus-deep-lift .tech ul li {
  padding: 20px 15px;
  width: 33.3333333333%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  #products-detail.photo-plus-deep-lift .tech ul li {
    width: 50%;
    padding: 0 10px;
  }
}
#products-detail.photo-plus-deep-lift .tech ol {
  margin-bottom: 20px;
}
#products-detail.photo-plus-deep-lift .tech ol li {
  margin-bottom: 5px;
  line-height: 1.5;
}
#products-detail.photo-plus-deep-lift .tech ol li span {
  font-weight: bold;
}

/*------------------------------------------------------------------
    #products-detail.wavy-needleliftpointer-sp
------------------------------------------------------------------*/
#products-detail.wavy-needleliftpointer-sp .whatsRF {
  margin-top: 100px;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.wavy-needleliftpointer-sp .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.wavy-needleliftpointer-sp .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.wavy-needleliftpointer-sp .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.wavy-needleliftpointer-sp .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.wavy-needleliftpointer-sp .whatsRF .img img {
  width: 100%;
}
#products-detail.wavy-needleliftpointer-sp .grade {
  padding: 60px 0;
  background-color: #fafaf4;
}
#products-detail.wavy-needleliftpointer-sp .movie {
  background-color: #ebede5;
}
#products-detail.wavy-needleliftpointer-sp .feature.-bottomline {
  position: relative;
}
#products-detail.wavy-needleliftpointer-sp .feature:nth-child(even) {
  background-color: #ebede5;
}
#products-detail.wavy-needleliftpointer-sp .feature.detail-cosmetics {
  background-color: #fff;
}
#products-detail.wavy-needleliftpointer-sp .feature .leadtxt {
  border-top: 1px solid #dc3434;
  border-bottom: 1px solid #dc3434;
  padding: 10px 0;
  font-size: 22px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #dc3434;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .feature .leadtxt + p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .feature .leadtxt + p {
    font-size: 1.4rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .feature .leadtxt + p span {
  display: block;
}
#products-detail.wavy-needleliftpointer-sp .feature .summary {
  max-width: 840px;
  margin: 0 auto;
}
#products-detail.wavy-needleliftpointer-sp .feature-sub {
  padding: 40px;
  border-radius: 5px;
  background-color: #fcf2e7;
}
#products-detail.wavy-needleliftpointer-sp .feature-sub h4 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  line-height: 1.5;
}
#products-detail.wavy-needleliftpointer-sp .feature-sub-tech {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products-detail.wavy-needleliftpointer-sp .feature-sub-tech dl {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
#products-detail.wavy-needleliftpointer-sp .feature-sub-tech dl:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .feature-sub-tech dl:last-child {
    margin-top: 40px;
    margin-right: auto;
  }
}
#products-detail.wavy-needleliftpointer-sp .feature-sub-tech dl dt {
  margin-bottom: 10px;
}
#products-detail.wavy-needleliftpointer-sp .feature-sub-tech dl dd {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.6;
}
#products-detail.wavy-needleliftpointer-sp .exam {
  padding: 60px 0;
}
#products-detail.wavy-needleliftpointer-sp .exam-block {
  text-align: center;
}
#products-detail.wavy-needleliftpointer-sp .exam-ba {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 50px;
}
#products-detail.wavy-needleliftpointer-sp .mode {
  padding: 60px 0;
  background-color: #f7f7f7;
}
#products-detail.wavy-needleliftpointer-sp .mode h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: normal;
  text-align: center;
  margin-bottom: 60px;
}
#products-detail.wavy-needleliftpointer-sp .mode h3 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: normal;
  margin-top: 10px;
}
#products-detail.wavy-needleliftpointer-sp .mode-box {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 80px;
}
#products-detail.wavy-needleliftpointer-sp .mode-image {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0px auto;
  z-index: 3;
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-face {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .mode-detail-face {
    padding: 80px 15px 40px;
  }
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-face .l {
  width: 200px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .mode-detail-face .l {
    width: 170px;
    margin-right: auto;
    margin: 0px auto 30px;
  }
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-face .l img {
  width: 100%;
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-face .r h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.5;
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-face .r li {
  margin-bottom: 5px;
  line-height: 1.5;
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-face .r li.annotation {
  font-size: 1.2rem;
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-body {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .mode-detail-body {
    padding: 80px 15px 40px;
  }
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-body .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .mode-detail-body .item {
    margin-bottom: 40px;
  }
  #products-detail.wavy-needleliftpointer-sp .mode-detail-body .item:last-child {
    margin-bottom: 0;
  }
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-body .item h5 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
#products-detail.wavy-needleliftpointer-sp .mode-detail-body .item h5 + p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics {
  padding: 100px 0;
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .sublead {
  font-size: 1.6rem;
  color: #353535;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}
#products-detail.wavy-needleliftpointer-sp .line {
  background-color: #363c40;
  color: #fff;
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  padding: 0.5em;
  text-align: center;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature {
    padding: 40px 0px;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature .leadtxt {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box {
  margin-bottom: 60px;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box:last-child {
  margin-bottom: 0;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 20px;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box ul li {
  width: 33.3333333333%;
  padding: 5px;
  min-height: 85px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature-box ul li {
    width: 50%;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box ul li span {
  background-color: #a8a187;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature-box ul li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box ul li span sup {
  display: contents;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box ul.device-list li span {
  background-color: #fff;
  border: 2px solid #b6b9ac;
  color: #b6b9ac;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature-box ul.device-list li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature-box ul.device-list li span sup {
  display: contents;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature .txt dl {
  margin-bottom: 40px;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature .txt dl dt {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature .txt dl dt::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #b6b9ac;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature .widettl {
  font-size: 28px !important;
  padding: 0.5em !important;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature .widettl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature .widettl span {
  font-size: 1.5rem;
  font-weight: normal;
  display: block;
  margin-bottom: 0px;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature_sub {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature_sub {
    display: block;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature_sub dl {
  width: 50%;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .detail-feature_sub dl {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 30px;
  }
}
#products-detail.wavy-needleliftpointer-sp .detail-feature_sub dl dt {
  margin-bottom: 10px;
}
#products-detail.wavy-needleliftpointer-sp .detail-feature_sub dl dd {
  text-align: center;
  font-weight: bold;
  background-color: #607d8b;
  color: #fff;
  padding: 0.5em;
  font-size: 1.8rem;
}
#products-detail.wavy-needleliftpointer-sp .howto {
  background-color: #404249;
}
#products-detail.wavy-needleliftpointer-sp .howto_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -20px 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .howto_list {
    flex-flow: column;
    margin: 0 auto;
  }
}
#products-detail.wavy-needleliftpointer-sp .howto h3 {
  border-top: 1px solid #9c9c9c;
  border-bottom: 1px solid #9c9c9c;
  margin-bottom: 20px;
  text-align: center;
  line-height: 50px;
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
#products-detail.wavy-needleliftpointer-sp .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer-sp .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.wavy-needleliftpointer-sp .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.wavy-needleliftpointer-sp .howto dl dt {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #e0d5af;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  min-height: 50px;
}
#products-detail.wavy-needleliftpointer-sp .howto dl dd {
  color: #fff;
}
#products-detail.wavy-needleliftpointer-sp .howto dl dd.txt {
  margin-bottom: 0px;
  line-height: 1.5;
  text-align: left;
}
#products-detail.wavy-needleliftpointer-sp .howto dl dd.img {
  margin-bottom: 10px;
}
#products-detail.wavy-needleliftpointer-sp .howto dl dd span {
  font-size: 1.2rem;
  padding-top: 5px;
  display: block;
}

/*------------------------------------------------------------------
    #products-detail.wavy-needleliftpointer
------------------------------------------------------------------*/
#products-detail.wavy-needleliftpointer .whatsRF {
  margin-top: 100px;
  background: #f7f7f7;
  padding: 30px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .whatsRF {
    margin-top: 60px;
    flex-flow: column;
    align-items: unset;
  }
}
#products-detail.wavy-needleliftpointer .whatsRF h3 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
#products-detail.wavy-needleliftpointer .whatsRF p {
  font-size: 1.4rem;
  line-height: 1.6;
}
#products-detail.wavy-needleliftpointer .whatsRF .txt {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .whatsRF .txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
#products-detail.wavy-needleliftpointer .whatsRF .img {
  margin-left: 50px;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .whatsRF .img {
    margin-left: 0px;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
#products-detail.wavy-needleliftpointer .whatsRF .img img {
  width: 100%;
}
#products-detail.wavy-needleliftpointer .grade {
  padding: 60px 0;
  background-color: #fafaf4;
}
#products-detail.wavy-needleliftpointer .movie {
  background-color: #ebede5;
}
#products-detail.wavy-needleliftpointer .feature.-bottomline {
  position: relative;
}
#products-detail.wavy-needleliftpointer .feature:nth-child(even) {
  background-color: #ebede5;
}
#products-detail.wavy-needleliftpointer .feature.detail-cosmetics {
  background-color: #fff;
}
#products-detail.wavy-needleliftpointer .feature .leadtxt {
  border-top: 1px solid #dc3434;
  border-bottom: 1px solid #dc3434;
  padding: 10px 0;
  font-size: 22px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #dc3434;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.wavy-needleliftpointer .feature .leadtxt + p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .feature .leadtxt + p {
    font-size: 1.4rem;
  }
}
#products-detail.wavy-needleliftpointer .feature .leadtxt + p span {
  display: block;
}
#products-detail.wavy-needleliftpointer .feature .summary {
  max-width: 840px;
  margin: 0 auto;
}
#products-detail.wavy-needleliftpointer .feature-sub {
  padding: 40px;
  border-radius: 5px;
  background-color: #fcf2e7;
}
#products-detail.wavy-needleliftpointer .feature-sub h4 {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  line-height: 1.5;
}
#products-detail.wavy-needleliftpointer .feature-sub-tech {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
#products-detail.wavy-needleliftpointer .feature-sub-tech dl {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
}
#products-detail.wavy-needleliftpointer .feature-sub-tech dl:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .feature-sub-tech dl:last-child {
    margin-top: 40px;
    margin-right: auto;
  }
}
#products-detail.wavy-needleliftpointer .feature-sub-tech dl dt {
  margin-bottom: 10px;
}
#products-detail.wavy-needleliftpointer .feature-sub-tech dl dd {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.6;
}
#products-detail.wavy-needleliftpointer .exam {
  padding: 60px 0;
}
#products-detail.wavy-needleliftpointer .exam-block {
  text-align: center;
}
#products-detail.wavy-needleliftpointer .exam-ba {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 50px;
}
#products-detail.wavy-needleliftpointer .mode {
  padding: 60px 0;
  background-color: #f7f7f7;
}
#products-detail.wavy-needleliftpointer .mode h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: normal;
  text-align: center;
  margin-bottom: 60px;
}
#products-detail.wavy-needleliftpointer .mode h3 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: normal;
  margin-top: 10px;
}
#products-detail.wavy-needleliftpointer .mode-box {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 80px;
}
#products-detail.wavy-needleliftpointer .mode-image {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0px auto;
  z-index: 3;
}
#products-detail.wavy-needleliftpointer .mode-detail-face {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .mode-detail-face {
    padding: 80px 15px 40px;
  }
}
#products-detail.wavy-needleliftpointer .mode-detail-face .l {
  width: 200px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .mode-detail-face .l {
    width: 170px;
    margin-right: auto;
    margin: 0px auto 30px;
  }
}
#products-detail.wavy-needleliftpointer .mode-detail-face .l img {
  width: 100%;
}
#products-detail.wavy-needleliftpointer .mode-detail-face .r h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 1.5;
}
#products-detail.wavy-needleliftpointer .mode-detail-face .r li {
  margin-bottom: 5px;
  line-height: 1.5;
}
#products-detail.wavy-needleliftpointer .mode-detail-face .r li.annotation {
  font-size: 1.2rem;
}
#products-detail.wavy-needleliftpointer .mode-detail-body {
  margin-top: -60px;
  position: relative;
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .mode-detail-body {
    padding: 80px 15px 40px;
  }
}
#products-detail.wavy-needleliftpointer .mode-detail-body .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .mode-detail-body .item {
    margin-bottom: 40px;
  }
  #products-detail.wavy-needleliftpointer .mode-detail-body .item:last-child {
    margin-bottom: 0;
  }
}
#products-detail.wavy-needleliftpointer .mode-detail-body .item h5 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
#products-detail.wavy-needleliftpointer .mode-detail-body .item h5 + p {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#products-detail.wavy-needleliftpointer .detail-cosmetics {
  padding: 100px 0;
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0px 0px 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-cosmetics_list {
    margin: 0px -20px 20px;
  }
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl {
  padding: 20px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-cosmetics_list dl {
    width: 100%;
    padding: 20px;
  }
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl a {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000;
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl a:hover {
  opacity: 0.8;
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl a.nolink {
  cursor: default;
  pointer-events: none;
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl a.nolink:hover {
  opacity: 1;
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dt {
  width: 40%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dt {
    width: 30%;
    padding-right: 15px;
  }
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dd {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dd {
    width: 70%;
  }
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dd h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dd h4 {
    font-size: 1.7rem;
  }
}
#products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dd span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-cosmetics_list dl dd span {
    font-size: 1.3rem;
  }
}
#products-detail.wavy-needleliftpointer .sublead {
  font-size: 1.6rem;
  color: #353535;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}
#products-detail.wavy-needleliftpointer .line {
  background-color: #363c40;
  color: #fff;
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  padding: 0.5em;
  text-align: center;
}
#products-detail.wavy-needleliftpointer .detail-feature {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature {
    padding: 40px 0px;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature .leadtxt {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature .leadtxt {
    font-size: 2rem;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature-box {
  margin-bottom: 60px;
}
#products-detail.wavy-needleliftpointer .detail-feature-box:last-child {
  margin-bottom: 0;
}
#products-detail.wavy-needleliftpointer .detail-feature-box ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 20px;
}
#products-detail.wavy-needleliftpointer .detail-feature-box ul li {
  width: 33.3333333333%;
  padding: 5px;
  min-height: 85px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature-box ul li {
    width: 50%;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature-box ul li span {
  background-color: #a8a187;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature-box ul li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature-box ul li span sup {
  display: contents;
}
#products-detail.wavy-needleliftpointer .detail-feature-box ul.device-list li span {
  background-color: #fff;
  border: 2px solid #b6b9ac;
  color: #b6b9ac;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature-box ul.device-list li span {
    padding: 10px;
    font-size: 1.5rem;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature-box ul.device-list li span sup {
  display: contents;
}
#products-detail.wavy-needleliftpointer .detail-feature .txt dl {
  margin-bottom: 40px;
}
#products-detail.wavy-needleliftpointer .detail-feature .txt dl dt {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#products-detail.wavy-needleliftpointer .detail-feature .txt dl dt::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #b6b9ac;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}
#products-detail.wavy-needleliftpointer .detail-feature .widettl {
  font-size: 28px !important;
  padding: 0.5em !important;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Roboto", sans-serif;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature .widettl {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature .widettl span {
  font-size: 1.5rem;
  font-weight: normal;
  display: block;
  margin-bottom: 0px;
}
#products-detail.wavy-needleliftpointer .detail-feature_sub {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature_sub {
    display: block;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature_sub dl {
  width: 50%;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .detail-feature_sub dl {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 30px;
  }
}
#products-detail.wavy-needleliftpointer .detail-feature_sub dl dt {
  margin-bottom: 10px;
}
#products-detail.wavy-needleliftpointer .detail-feature_sub dl dd {
  text-align: center;
  font-weight: bold;
  background-color: #607d8b;
  color: #fff;
  padding: 0.5em;
  font-size: 1.8rem;
}
#products-detail.wavy-needleliftpointer .howto {
  background-color: #404249;
}
#products-detail.wavy-needleliftpointer .howto_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -20px 50px;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .howto_list {
    flex-flow: column;
    margin: 0 auto;
  }
}
#products-detail.wavy-needleliftpointer .howto h3 {
  border-top: 1px solid #9c9c9c;
  border-bottom: 1px solid #9c9c9c;
  margin-bottom: 20px;
  text-align: center;
  line-height: 50px;
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
#products-detail.wavy-needleliftpointer .howto dl {
  padding: 0px 20px;
  text-align: center;
  width: 33.3333333333%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #products-detail.wavy-needleliftpointer .howto dl {
    width: 100%;
    margin-bottom: 40px;
  }
  #products-detail.wavy-needleliftpointer .howto dl:last-child {
    margin-bottom: 0px;
  }
}
#products-detail.wavy-needleliftpointer .howto dl dt {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  color: #e0d5af;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  min-height: 50px;
}
#products-detail.wavy-needleliftpointer .howto dl dd {
  color: #fff;
}
#products-detail.wavy-needleliftpointer .howto dl dd.txt {
  margin-bottom: 0px;
  line-height: 1.5;
  text-align: left;
}
#products-detail.wavy-needleliftpointer .howto dl dd.img {
  margin-bottom: 10px;
}
#products-detail.wavy-needleliftpointer .howto dl dd span {
  font-size: 1.2rem;
  padding-top: 5px;
  display: block;
}