@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

ul, ul liol, ol li {
  list-style: none;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input[type="button"], input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
}

.t-center {
  text-align: center;
}

.cf {
  zoom: 1;
  /*for IE 5.5-7*/
}

.cf:after {
  /*for modern browser*/
  content: ".";
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
}

.f-l {
  float: left;
}

.f-r {
  float: right;
}

/* Scss Document */
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
  font-size: 1.8rem;
  line-height: 1.7;
  min-width: 1000px;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    min-width: 0;
    font-size: 1.4rem;
  }
}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

a:hover {
  opacity: 0.8;
}

.inner {
  width: 1000px;
  max-width: 1000px;
  margin: 0 auto;
  clear: both;
}

@media (max-width: 767px) {
  .inner {
    padding: 0 2.6%;
    width: 100%;
  }
}

.inner p {
  letter-spacing: -1px;
}

.en {
  color: #b5afad;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadein:after {
  opacity: 0;
}

.fadein.scrollin:after {
  -webkit-animation: fadein 1s ease .3s forwards;
  animation: fadein 1s ease .3s forwards;
}

/* header */
header {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 500;
  position: fixed;
  top: 0;
  background: none;
  -webkit-transition: background  .5s ease;
  transition: background  .5s ease;
}

@media (max-width: 767px) {
  header {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
  }
  header #menu_btn {
    position: fixed;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 30px;
    z-index: 2500;
  }
  header #menu_btn > span {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  header #menu_btn > span span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  header #menu_btn > span span:first-child {
    top: 4px;
  }
  header #menu_btn > span span:nth-child(2) {
    opacity: 1;
    top: 15px;
  }
  header #menu_btn > span span:nth-child(3) {
    top: 25px;
  }
  header #menu_btn.open > span span:first-child {
    top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header #menu_btn.open > span span:nth-child(2) {
    opacity: 0;
  }
  header #menu_btn.open > span span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

header a {
  color: #fff;
}

header.fixed {
  background: #452654;
  -webkit-transition: background  .5s ease;
  transition: background  .5s ease;
}

header .inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .inner #logo {
  width: 114px;
}

header .inner #logo a {
  display: block;
}

header .inner ul {
  width: 785px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .inner ul li {
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  header .inner {
    display: block;
    padding: 10px 2.6%;
  }
  header .inner #logo {
    width: 80px;
  }
  header .inner #g_navi {
    background: #452654;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 50px 5% 0;
    z-index: 2000;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  header .inner #g_navi .nav_inner {
    width: 100%;
    height: 100%;
    padding: 20px 0;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  header .inner #g_navi .nav_inner #logo {
    width: 100%;
    text-align: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 5000;
  }
  header .inner #g_navi .nav_inner #logo a {
    display: block;
  }
  header .inner #g_navi .nav_inner #logo a img {
    width: 80px;
    margin: 0 auto;
  }
  header .inner #g_navi .nav_inner ul {
    width: 100%;
    display: block;
    text-align: center;
  }
  header .inner #g_navi .nav_inner ul li {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  header .inner #g_navi .nav_inner ul li a {
    display: block;
    padding: 5px 0;
  }
}

/* contents */
#contents {
  margin-top: -100px;
}

@media (max-width: 767px) {
  #contents {
    margin-top: 0;
  }
}

#contents > section {
  width: 100%;
  position: relative;
}

#contents > section h3 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  font-weight: normal;
}

@media (max-width: 767px) {
  #contents > section h3 {
    font-size: 2rem;
  }
}

#contents #fv {
  background: url("../images/bg_fv_pc.jpg") center center no-repeat;
  background-size: cover;
  height: 720px;
  position: relative;
}

#contents #fv .inner {
  width: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#contents #fv .inner p {
  padding-left: 28px;
  color: #fff;
  text-shadow: 1px 1px 4px #1c0b26;
}

#contents #fv:after {
  content: "";
  background: url("../images/bg_fv01_pc.png") 0 0 no-repeat;
  background-size: contain;
  display: block;
  width: 745px;
  height: 720px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-70px);
  transform: translateX(-70px);
  opacity: 0;
  -webkit-animation: fadein 1s ease .3s forwards;
  animation: fadein 1s ease .3s forwards;
}

@media (max-width: 767px) {
  #contents #fv {
    background: url("../images/bg_fv_sp.jpg") center center no-repeat;
    background-size: cover;
    height: 0;
    padding: 152% 0 0 0;
  }
  #contents #fv .inner {
    width: 100%;
    height: 100%;
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    z-index: 2;
  }
  #contents #fv .inner h1 {
    width: 20%;
    margin: 70px 0 10px 10%;
  }
  #contents #fv:after {
    content: "";
    background: url("../images/bg_fv01_sp.png") 0 0 no-repeat;
    background-size: contain;
    display: block;
    width: 80.8%;
    padding: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
  }
}

#contents #about {
  background: url(../images/bg_sv.jpg) center center no-repeat;
  background-size: cover;
  height: 570px;
}

#contents #about .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#contents #about .inner h2 {
  line-height: 1.7em;
  font-size: 4rem;
  margin-bottom: 2.5rem;
  font-weight: normal;
}

#contents #about .inner h2 .en {
  font-size: 1.8rem;
}

#contents #about .inner p {
  line-height: 1.7em;
  font-size: 1.8rem;
}

#contents #about .inner p.t-bold {
  font-size: 2.2rem;
  margin-top: 20px;
}

@media (max-width: 767px) {
  #contents #about {
    background: url(../images/bg_sv_sp.jpg) center center no-repeat;
    background-size: cover;
    height: auto;
    padding: 45px 0;
  }
  #contents #about .inner {
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  #contents #about .inner h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: normal;
  }
  #contents #about .inner h2 .en {
    font-size: 1.2rem;
  }
  #contents #about .inner p {
    font-size: 1.4rem;
  }
  #contents #about .inner p.t-bold {
    font-size: 1.5rem;
  }
}

#contents #sisset > .tit-cont {
  background: #2f3645;
  height: 599px;
}

#contents #sisset > .tit-cont .inner {
  height: 100%;
  padding: 110px 0 0 410px;
  position: relative;
}

#contents #sisset > .tit-cont .inner h1 {
  margin-bottom: 20px;
}

#contents #sisset > .tit-cont .inner p {
  color: #fff;
  padding-left: 28px;
}

#contents #sisset > .tit-cont .inner p:after {
  display: block;
  content: "";
  background: url("../images/img_sisset_pc.png") 0 0 no-repeat;
  width: 507px;
  height: 259px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  #contents #sisset > .tit-cont .inner p:after {
    display: none;
  }
}

#contents #sisset > .tit-cont .inner:after {
  content: "";
  display: block;
  background: url("../images/bg_sisset_pc.png") 0 bottom no-repeat;
  width: 653px;
  height: 599px;
  bottom: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-750px);
  transform: translateX(-750px);
}

@media (max-width: 767px) {
  #contents #sisset > .tit-cont {
    padding: 152.66% 0 0 0;
    position: relative;
  }
  #contents #sisset > .tit-cont h2 {
    width: 90%;
    margin-bottom: 30px;
  }
  #contents #sisset > .tit-cont .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 110% 2.6% 0;
    text-align: center;
  }
  #contents #sisset > .tit-cont .inner p {
    color: #fff;
    padding-left: 0;
  }
  #contents #sisset > .tit-cont .inner p:after {
    display: block;
    content: "";
    background: url("../images/img_sisset_sp.png") 0 0 no-repeat;
    background-size: contain;
    width: 49.6%;
    height: 0;
    padding: 59.2% 0 0 0;
    margin-top: 0;
    position: absolute;
    top: 30%;
    right: 2.6%;
    z-index: 2;
  }
  #contents #sisset > .tit-cont .inner:after {
    content: "";
    display: block;
    background: url("../images/bg_sisset_sp.png") 0 0 no-repeat;
    background-size: contain;
    width: 67.73%;
    height: 0;
    padding: 156.5% 0 0 0;
    bottom: auto;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

#contents #sisset-about {
  background: url(../images/bg_sissetabout_pc.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  height: 420px;
}

#contents #sisset-about .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#contents #sisset-about .inner .text {
  width: 530px;
}

#contents #sisset-about .inner .text h4 {
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  #contents #sisset-about {
    background: url(../images/bg_sissetabout_sp.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    height: auto;
    padding: 50px 0;
  }
  #contents #sisset-about .inner {
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    display: block;
  }
  #contents #sisset-about .inner .text {
    width: 100%;
  }
  #contents #sisset-about .inner .text h4 {
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 20px;
  }
}

#contents #sisset-differences {
  position: relative;
  background: url(../images/bg_differences_pc.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  height: 470px;
}

#contents #sisset-differences .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0 70px;
}

#contents #sisset-differences .inner h3 {
  text-align: center;
}

@media (max-width: 767px) {
  #contents #sisset-differences {
    background: url(../images/bg_differences_sp.jpg) center center no-repeat;
    background-size: cover;
    color: #fff;
    height: auto;
    padding: 50px 0;
  }
  #contents #sisset-differences .inner {
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    padding: 0 2.6%;
  }
}

#contents #sisset-meaning {
  background: url(../images/bg_meaning_pc.jpg) center bottom no-repeat;
  background-size: auto 100%;
  height: 466px;
  position: relative;
}

#contents #sisset-meaning .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding-left: 530px;
}

@media (max-width: 767px) {
  #contents #sisset-meaning {
    background: none;
    height: auto;
  }
  #contents #sisset-meaning .inner {
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    padding: 50px 2.6% 0;
  }
  #contents #sisset-meaning .inner:after {
    content: "";
    display: block;
    background: url(../images/bg_meaning_sp.jpg) center bottom no-repeat;
    background-size: contain;
    padding: 71.55% 0 0 0;
  }
}

#contents #sisset-safety {
  background: url(../images/bg_safety.jpg) center center;
  background-size: cover;
  padding-bottom: 150px;
}

#contents #sisset-safety .tit-cont {
  height: 508px;
  position: relative;
}

#contents #sisset-safety .tit-cont .red {
  color: #a10000;
}

#contents #sisset-safety .tit-cont .inner {
  background: url(../images/img_safety.png) right 10px no-repeat;
  background-size: contain;
  padding: 120px 400px 0 0;
  height: 100%;
}

#contents #sisset-safety > .inner {
  width: 900px;
  background: #fff;
  -webkit-box-shadow: 0 10px 13px rgba(45, 45, 45, 0.17);
  box-shadow: 0 10px 13px rgba(45, 45, 45, 0.17);
}

#contents #sisset-safety > .inner #safety-menu {
  background: #fff;
  padding: 75px 90px;
}

#contents #sisset-safety > .inner #safety-menu h3 {
  text-align: center;
  margin-bottom: 40px;
}

#contents #sisset-safety > .inner #safety-menu h4 {
  text-align: center;
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 30px;
}

#contents #sisset-safety > .inner #safety-menu h4 + p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

#contents #sisset-safety > .inner #safety-menu ul {
  margin: 0 auto 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#contents #sisset-safety > .inner #safety-menu ul li {
  width: 47%;
  margin-bottom: 40px;
}

#contents #sisset-safety > .inner #safety-menu ul li:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

#contents #sisset-safety > .inner #safety-menu ul.treatment {
  margin: 0;
  display: block;
}

#contents #sisset-safety > .inner #safety-menu ul.treatment li {
  float: left;
  width: auto;
  border: 1px #303746 solid;
  height: 32px;
  padding: 0 30px 0 10px;
  margin: 0 0 20px 0;
  line-height: 32px;
  font-size: 1.6rem;
  background: url(../images/icon_arrow.jpg) right center no-repeat;
}

#contents #sisset-safety > .inner #safety-menu ul.treatment li :nth-child(2n) {
  margin-left: 0;
}

#contents #sisset-safety > .inner #safety-menu ul.treatment li:last-child {
  padding: 0 10px;
  background: none;
}

#contents #sisset-safety > .inner #safety-finish {
  margin: 0 auto;
  background: #303746;
  padding: 80px;
  color: #fff;
}

#contents #sisset-safety > .inner #safety-finish h4 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 80px;
  font-weight: normal;
}

#contents #sisset-safety > .inner #safety-finish .case {
  border-bottom: 1px dashed #d6d7da;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

#contents #sisset-safety > .inner #safety-finish .case:last-of-type {
  border: 0;
  padding: 0;
  margin: 0;
}

#contents #sisset-safety > .inner #safety-finish .case h5 {
  font-size: 1.9rem;
  font-weight: normal;
  margin-bottom: 25px;
  line-height: 1;
}

#contents #sisset-safety > .inner #safety-finish .case h5 span {
  display: inline-block;
  border-right: 1px solid #fff;
  margin-right: 20px;
  padding-right: 20px;
}

#contents #sisset-safety > .inner #safety-finish .case ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  #contents #sisset-safety {
    padding: 50px 2.6%;
  }
  #contents #sisset-safety .tit-cont {
    height: auto;
    padding: 0 0 50px;
    position: relative;
  }
  #contents #sisset-safety .tit-cont .inner {
    background: none;
    padding: 0;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #contents #sisset-safety .tit-cont .inner:after {
    content: "";
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 71.55% 0 0 0;
    background: url(../images/img_safety.png) center bottom no-repeat;
    background-size: contain;
  }
  #contents #sisset-safety > .inner {
    width: 100%;
    background: #fff;
    padding: 0;
    -webkit-box-shadow: 0 10px 13px rgba(45, 45, 45, 0.17);
    box-shadow: 0 10px 13px rgba(45, 45, 45, 0.17);
  }
  #contents #sisset-safety > .inner #safety-menu {
    background: #fff;
    padding: 30px 2.6%;
  }
  #contents #sisset-safety > .inner #safety-menu h3 {
    text-align: center;
    width: 60%;
    margin: 0 auto 30px;
  }
  #contents #sisset-safety > .inner #safety-menu h4 {
    text-align: center;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 30px;
  }
  #contents #sisset-safety > .inner #safety-menu h4 + p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
  #contents #sisset-safety > .inner #safety-menu ul {
    margin: 0 auto 30px;
    display: block;
    width: 100%;
  }
  #contents #sisset-safety > .inner #safety-menu ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  #contents #sisset-safety > .inner #safety-menu ul li:nth-last-child(-n + 2) {
    margin-bottom: 10px;
  }
  #contents #sisset-safety > .inner #safety-menu ul.treatment {
    margin: 0;
    display: block;
  }
  #contents #sisset-safety > .inner #safety-menu ul.treatment li {
    float: left;
    width: auto;
    border: 1px #303746 solid;
    height: auto;
    padding: 0 30px 0 10px;
    margin: 0 0 20px 0;
    line-height: 32px;
    font-size: 1.2rem;
    background: url(../images/icon_arrow.jpg) right center no-repeat;
  }
  #contents #sisset-safety > .inner #safety-menu ul.treatment li :nth-child(2n) {
    margin-left: 0;
  }
  #contents #sisset-safety > .inner #safety-menu ul.treatment li:last-child {
    padding: 0 10px;
    background: none;
  }
  #contents #sisset-safety > .inner #safety-finish {
    margin: 0 auto;
    background: #303746;
    padding: 30px 2.6%;
    color: #fff;
  }
  #contents #sisset-safety > .inner #safety-finish h4 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  #contents #sisset-safety > .inner #safety-finish .case {
    border-bottom: 1px dashed #d6d7da;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  #contents #sisset-safety > .inner #safety-finish .case:last-of-type {
    border: 0;
    padding: 0;
    margin: 0;
  }
  #contents #sisset-safety > .inner #safety-finish .case h5 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 25px;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #contents #sisset-safety > .inner #safety-finish .case h5 span {
    width: 85px;
    border-right: 1px solid #fff;
    margin-right: 20px;
    padding-right: 20px;
  }
  #contents #sisset-safety > .inner #safety-finish .case ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #contents #sisset-safety > .inner #safety-finish .case ul li {
    width: 49%;
  }
}

#contents #sisset-perfect {
  padding: 160px 0 100px;
}

#contents #sisset-perfect .inner {
  position: relative;
}

#contents #sisset-perfect .inner:after {
  content: "";
  display: block;
  background: url("../images/img_perfect.png") 0 0 no-repeat;
  width: 304px;
  height: 652px;
  position: absolute;
  top: -92px;
  right: 0;
}

#contents #sisset-perfect .inner h3 {
  margin-bottom: 3rem;
}

#contents #sisset-perfect .inner .text {
  padding-right: 290px;
}

#contents #sisset-perfect .inner .text small {
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  #contents #sisset-perfect {
    padding: 80px 0;
  }
  #contents #sisset-perfect .inner {
    position: relative;
  }
  #contents #sisset-perfect .inner:after {
    display: none;
  }
  #contents #sisset-perfect .inner h3 {
    margin-bottom: 3rem;
  }
  #contents #sisset-perfect .inner .text {
    position: relative;
    padding: 0;
  }
  #contents #sisset-perfect .inner .text:after {
    content: "";
    display: block;
    background: url("../images/img_perfect.png") 0 0 no-repeat;
    background-size: contain;
    width: 34.66%;
    height: 0;
    padding: 73.3% 0 0 0;
    position: absolute;
    top: 0;
    right: 0;
  }
  #contents #sisset-perfect .inner .text p {
    padding-right: 40%;
  }
  #contents #sisset-perfect .inner .text small {
    font-size: 1.4rem;
  }
}

#contents #sisset-system {
  background: url(../images/bg_system_pc.jpg) center center no-repeat;
  background-size: cover;
  padding: 90px 0;
}

#contents #sisset-system .inner {
  padding: 0 130px;
}

#contents #sisset-system h3 {
  text-align: center;
  margin-bottom: 4rem;
}

#contents #sisset-system .text p {
  margin-bottom: 2.5rem;
}

#contents #sisset-system .text small {
  font-size: 1.4rem;
  display: block;
}

@media (max-width: 767px) {
  #contents #sisset-system {
    background: url(../images/bg_system_sp.jpg) center center no-repeat;
    background-size: cover;
    padding: 50px 0;
  }
  #contents #sisset-system .inner {
    padding: 0 2.6%;
  }
  #contents #sisset-system h3 {
    text-align: center;
    margin-bottom: 4rem;
  }
  #contents #sisset-system .text p {
    margin-bottom: 2.5rem;
  }
  #contents #sisset-system .text small {
    font-size: 1.4rem;
    display: block;
  }
}

#contents #eyecial .tit-cont {
  background: url("../images/bg_eyecial_pc.jpg") center center no-repeat;
  background-size: cover;
  height: 600px;
}

#contents #eyecial .tit-cont .inner {
  height: 100%;
  padding: 200px 0 0 380px;
  position: relative;
}

#contents #eyecial .tit-cont .inner h2 {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

#contents #eyecial .tit-cont .inner p {
  color: #7c7c7c;
  padding-left: 28px;
  position: relative;
  z-index: 2;
}

#contents #eyecial .tit-cont .inner:after {
  content: "";
  display: block;
  background: url("../images/bg_eyecial01_pc.png") 0 bottom no-repeat;
  width: 854px;
  height: 600px;
  bottom: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-800px);
  transform: translateX(-800px);
}

@media (max-width: 767px) {
  #contents #eyecial .tit-cont {
    background: url("../images/bg_eyecial_sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 141.33% 0 0 0;
    position: relative;
    height: 0;
  }
  #contents #eyecial .tit-cont .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100% 2.6% 0;
  }
  #contents #eyecial .tit-cont .inner h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    width: 60%;
    margin: 0 auto 20px;
  }
  #contents #eyecial .tit-cont .inner p {
    padding-left: 0;
    position: relative;
    text-align: center;
  }
  #contents #eyecial .tit-cont .inner:after {
    content: "";
    display: block;
    background: url("../images/bg_eyecial01_sp.png") 0 bottom no-repeat;
    background-size: contain;
    width: 100%;
    height: 0;
    padding: 109.6% 0 0 0;
    bottom: auto;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

#contents #eyecial-about {
  background: url("../images/bg_eyecialabout_pc.jpg") right top no-repeat;
  background-size: cover;
  height: 520px;
  position: relative;
}

#contents #eyecial-about .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding-right: 450px;
}

@media (max-width: 1399px) {
  #contents #eyecial-about {
    background-size: 1400px auto;
    background-position: center top;
  }
}

@media (max-width: 767px) {
  #contents #eyecial-about {
    padding: 0 0 50px;
    background: none;
    height: auto;
  }
  #contents #eyecial-about:before {
    content: "";
    display: block;
    background: url("../images/bg_eyecialabout_sp.jpg") right top no-repeat;
    background-size: 100% auto;
    width: 100%;
    padding: 63.466% 0 0 0;
    margin-bottom: 30px;
  }
  #contents #eyecial-about .inner {
    position: static;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    padding-right: 2.6%;
  }
}

#contents #eyecial-menu {
  background: url(../images/bg_eyecialmenu_pc.jpg) center top no-repeat;
  background-size: cover;
  padding: 100px 0;
}

#contents #eyecial-menu h3 {
  text-align: center;
  margin-bottom: 4.5rem;
}

#contents #eyecial-menu .course {
  -webkit-box-shadow: 0 5px 10px rgba(45, 45, 45, 0.17);
  box-shadow: 0 5px 10px rgba(45, 45, 45, 0.17);
}

#contents #eyecial-menu .course h4 {
  background: #ff9495;
  padding: 15px 0;
  text-align: center;
  font-size: 22px;
  color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(45, 45, 45, 0.17);
  box-shadow: 0 5px 10px rgba(45, 45, 45, 0.17);
  z-index: 2;
  position: relative;
}

#contents #eyecial-menu .course ul {
  background: #fff;
  margin: 0 auto 50px;
  padding: 60px 120px 60px 60px;
}

#contents #eyecial-menu .course ul li {
  float: left;
  vertical-align: middle;
  border: 1px #303746 solid;
  height: 32px;
  padding: 0 30px 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 20px 0;
  background: url(../images/icon_arrow.jpg) right center no-repeat;
}

#contents #eyecial-menu .course ul li:last-child {
  padding: 0 10px;
  background: none;
}

#contents #eyecial-menu .course ul:after {
  content: "";
  display: table;
  clear: both;
}

#contents #eyecial-menu #eyecial-finish ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#contents #eyecial-menu #eyecial-finish ol li {
  padding-top: 40px;
  margin-bottom: 40px;
  position: relative;
}

#contents #eyecial-menu #eyecial-finish ol li:first-child:before {
  content: "施術前";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.4rem;
}

#contents #eyecial-menu #eyecial-finish ol li:last-child:before {
  content: "シスアイラッシュセットとアイシャル施術後";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.4rem;
}

#contents #eyecial-menu #eyecial-finish p {
  text-align: center;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  #contents #eyecial-menu {
    background: url(../images/bg_eyecialmenu_sp.jpg) center top no-repeat;
    background-size: cover;
    padding: 50px 0;
  }
  #contents #eyecial-menu .course h4 {
    background: #ff9495;
    padding: 10px 0;
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    -webkit-box-shadow: 0 5px 10px rgba(45, 45, 45, 0.17);
    box-shadow: 0 5px 10px rgba(45, 45, 45, 0.17);
    z-index: 2;
    position: relative;
  }
  #contents #eyecial-menu .course ul {
    background: #fff;
    margin: 0 auto 30px;
    padding: 30px 2.6%;
  }
  #contents #eyecial-menu .course ul li {
    font-size: 1.2rem;
    line-height: 32px;
    height: auto;
  }
  #contents #eyecial-menu #eyecial-finish ol li {
    width: 50%;
    margin-bottom: 20px;
    position: relative;
  }
  #contents #eyecial-menu #eyecial-finish ol li:first-child:before {
    font-size: 1.5rem;
  }
  #contents #eyecial-menu #eyecial-finish ol li:last-child:before {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  #contents #eyecial-menu #eyecial-finish p {
    text-align: center;
    font-size: 1.4rem;
  }
}

#contents #eyecial-products {
  background: url("../images/bg_products_pc.jpg") center top no-repeat #f3f5fa;
  background-size: 100% auto;
  padding: 370px 0 80px;
}

#contents #eyecial-products h3 {
  text-align: center;
  margin-bottom: 5rem;
}

#contents #eyecial-products article {
  border-bottom: 1px solid #ddd;
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#contents #eyecial-products article .text {
  width: 565px;
}

#contents #eyecial-products article .text h4 {
  font-size: 3rem;
  font-weight: normal;
}

#contents #eyecial-products article .text p.price {
  margin-bottom: 20px;
}

#contents #eyecial-products article .text p.price span {
  font-size: 1.5rem;
}

#contents #eyecial-products article .text small {
  font-size: 1.2rem;
  display: block;
}

#contents #eyecial-products article:last-of-type {
  border: 0;
  margin: 0;
}

#contents #eyecial-products article .material {
  background: #eee;
  padding: 20px;
  margin-top: 20px;
}

#contents #eyecial-products article .material dt {
  text-align: center;
  font-size: 2rem;
}

#contents #eyecial-products article .material dd {
  text-align: center;
}

@media (max-width: 1399px) {
  #contents #eyecial-products {
    background-size: 1400px auto;
    background-position: center top;
  }
}

@media (max-width: 767px) {
  #contents #eyecial-products {
    background: url("../images/bg_products_sp.jpg") center top no-repeat #f3f5fa;
    background-size: 100% auto;
    padding: 120px 0 0;
  }
  #contents #eyecial-products h3 {
    text-align: center;
    margin-bottom: 0;
  }
  #contents #eyecial-products article {
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
    display: block;
  }
  #contents #eyecial-products article > p {
    float: left;
    width: 50%;
    margin: 0 20px 5px 0;
  }
  #contents #eyecial-products article .text {
    width: 100%;
  }
  #contents #eyecial-products article .text h4 {
    font-size: 1.7rem;
    font-weight: normal;
  }
  #contents #eyecial-products article .text p.price {
    margin-bottom: 20px;
  }
  #contents #eyecial-products article .text p.price span {
    font-size: 1.5rem;
  }
  #contents #eyecial-products article .text small {
    font-size: 1.2rem;
    display: block;
  }
  #contents #eyecial-products article:last-of-type {
    border: 0;
    margin: 0;
  }
  #contents #eyecial-products article .material dt {
    font-size: 1.5rem;
  }
}

#contents .products {
  padding-bottom: 100px;
  position: relative;
}

#contents .products#homecare:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: url("../images/bg_homecare_pc.jpg") center top no-repeat;
  background-size: cover;
  z-index: -1;
}

#contents .products#homecare .tit-cont {
  padding: 200px 0 0 48%;
}

#contents .products#eyelash:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: url("../images/bg_eyelash_pc.jpg") top no-repeat;
  background-size: cover;
  z-index: -1;
}

#contents .products#eyelash .tit-cont {
  padding: 150px 0 0 52%;
}

#contents .products#professional:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: url("../images/bg_professional_pc.jpg") top no-repeat;
  background-size: cover;
  z-index: -1;
}

#contents .products#professional .tit-cont {
  padding: 200px 0 0 65%;
}

#contents .products#professional .product-list article {
  width: 28.5%;
  margin-bottom: 0;
}

#contents .products .tit-cont {
  height: 410px;
  margin: 0;
  padding: 200px 0 0 50%;
  position: relative;
}

#contents .products .tit-cont h2 {
  font-size: 4rem;
  font-weight: normal;
  margin: 0 auto;
}

#contents .products .tit-cont h2 .en {
  color: #000;
}

#contents .products .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#contents .products .product-list article {
  width: 44%;
  margin-bottom: 50px;
}

#contents .products .product-list article h3 {
  font-size: 2.4rem;
  font-weight: normal;
  margin: 0;
}

#contents .products .product-list article p.price {
  margin-bottom: 20px;
}

#contents .products .product-list article p.price span {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  #contents .products {
    padding-bottom: 50px;
  }
  #contents .products#homecare:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    padding: 36% 0 0 0;
    height: 0;
    background: url("../images/bg_homecare_sp.jpg") center top no-repeat;
    background-size: cover;
    z-index: -1;
  }
  #contents .products#homecare .tit-cont {
    padding: 35.733% 0 0 0;
    position: relative;
  }
  #contents .products#homecare .tit-cont .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #contents .products#homecare .tit-cont .inner h2 {
    width: auto;
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
  }
  #contents .products#eyelash:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    padding: 36% 0 0 0;
    height: 0;
    background: url("../images/bg_eyelash_sp.jpg") top no-repeat;
    background-size: cover;
    z-index: -1;
  }
  #contents .products#eyelash .tit-cont {
    padding: 35.733% 0 0 0;
    position: relative;
  }
  #contents .products#eyelash .tit-cont .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #contents .products#eyelash .tit-cont .inner h2 {
    width: auto;
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
  }
  #contents .products#professional:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    padding: 36% 0 0 0;
    height: 0;
    background: url("../images/bg_professional_sp.jpg") top no-repeat;
    background-size: cover;
    z-index: -1;
  }
  #contents .products#professional .tit-cont {
    padding: 35.733% 0 0 0;
    position: relative;
  }
  #contents .products#professional .tit-cont .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #contents .products#professional .tit-cont .inner h2 {
    width: auto;
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
  }
  #contents .products#professional .product-list article {
    width: 48%;
    margin-bottom: 30px;
  }
  #contents .products .tit-cont {
    height: 0;
    margin: 0 0 30px 0;
    padding: 35.733% 0 0 0;
    position: relative;
  }
  #contents .products .product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #contents .products .product-list article {
    width: 48%;
    margin-bottom: 30px;
  }
  #contents .products .product-list article h3 {
    font-size: 1.7rem;
    font-weight: normal;
    margin: 0;
  }
  #contents .products .product-list article p.price {
    margin-bottom: 15px;
  }
  #contents .products .product-list article p.price span {
    font-size: 1.2rem;
  }
}

#contents #seminar {
  background: #f5f5f9;
  padding: 150px 0 50px;
}

#contents #seminar h2 {
  margin-bottom: 60px;
  text-align: center;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.2;
}

#contents #seminar p {
  margin: 0 30px 40px;
}

#contents #seminar p .red {
  color: #a10000;
}

#contents #seminar p.img {
  text-align: center;
  margin-bottom: 20px;
}

#contents #seminar button {
  background: #a10000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  text-align: center;
  width: 300px;
  height: 66px;
  line-height: 66px;
  border: 0;
  border-radius: 0;
  font-size: 2.4rem;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contents #seminar button:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  #contents #seminar {
    padding: 50px 0 0;
  }
  #contents #seminar h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  #contents #seminar p {
    margin: 0 0 30px;
  }
  #contents #seminar p .red {
    color: #a10000;
  }
  #contents #seminar p.img {
    text-align: center;
    margin-bottom: 20px;
  }
  #contents #seminar button {
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 1.4rem;
  }
}

#contents #partnership {
  background: #f5f5f9;
  padding: 50px 0;
}

#contents #partnership .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#contents #partnership .inner h2 {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.2;
}

#contents #partnership .inner .text {
  width: 51%;
}

#contents #partnership .inner .text h3 {
  font-size: 1.8rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

#contents #partnership .inner .text h3 span {
  color: #000;
}

#contents #partnership .inner .text p {
  margin-bottom: 30px;
}

#contents #partnership .inner button {
  background: #a10000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  text-align: center;
  width: 300px;
  height: 66px;
  line-height: 66px;
  border: 0;
  border-radius: 0;
  font-size: 2.4rem;
  font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
  display: block;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contents #partnership .inner button:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  #contents #partnership .inner {
    display: block;
  }
  #contents #partnership .inner h2 {
    width: 100%;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  #contents #partnership .inner > p {
    margin-bottom: 10px;
  }
  #contents #partnership .inner .text {
    width: 100%;
  }
  #contents #partnership .inner .text h3 {
    font-size: 1.5rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  #contents #partnership .inner .text h3 span {
    color: #000;
  }
  #contents #partnership .inner .text p {
    margin-bottom: 30px;
  }
  #contents #partnership .inner button {
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 1.4rem;
  }
}

#contents #news {
  background: #f5f5f9;
  padding: 100px 0;
}

#contents #news h2 {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.2;
}

#contents #news .news-list {
  width: 100%;
  height: 220px;
  overflow-y: scroll;
}

#contents #news ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

#contents #news ul li time {
  width: 10rem;
  margin-right: 10px;
}

#contents #news ul li .text {
  width: calc(100% - 10rem - 10px);
  font-size: 1.6rem;
}

#contents #news ul li .text p {
  display: block;
  letter-spacing: 0;
}

#contents #news ul li .text p a {
  text-decoration: underline;
}

#contents #news ul li .text p a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  #contents #news {
    padding: 50px 0;
  }
  #contents #news h2 {
    width: 100%;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  #contents #news .news-list {
    height: 300px;
    -webkit-overflow-scrolling: touch;
  }
  #contents #news ul li {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }
  #contents #news ul li time {
    display: block;
    width: 100%;
    margin: 0;
  }
  #contents #news ul li .text {
    width: 100%;
    font-size: 1.4rem;
  }
}

#contents #concept {
  background: url("../images/bg_concept_pc.jpg") right top no-repeat;
  background-size: cover;
  height: 640px;
  padding: 90px 0;
  color: #fff;
}

#contents #concept .inner {
  padding-right: 480px;
}

#contents #concept .inner h2 {
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 4rem;
}

@media (max-width: 1399px) {
  #contents #concept {
    background-size: 1400px auto;
    background-position: center top;
  }
}

@media (max-width: 767px) {
  #contents #concept {
    height: auto;
    padding: 40px 0 0;
    background: #667070;
  }
  #contents #concept .inner {
    padding: 0 2.6%;
    background: none;
  }
  #contents #concept .inner h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 4rem;
  }
  #contents #concept .inner:after {
    content: "";
    display: block;
    background: url("../images/bg_concept_sp.png") center bottom no-repeat;
    background-size: contain;
    width: 100%;
    padding: 79.902% 0 0 0;
  }
}

#contents #beauty {
  background: url(../images/bg_no1.jpg) center center no-repeat;
  background-size: cover;
  height: 640px;
}

#contents #beauty .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 640px;
}

#contents #beauty .inner .text {
  width: 50%;
}

#contents #beauty .inner .text p {
  margin-bottom: 45px;
}

#contents #beauty .inner .text p:last-of-type {
  margin: 0;
}

#contents #beauty .inner h2 {
  width: 50%;
  font-size: 55px;
  font-weight: normal;
  line-height: 1.7em;
}

@media (max-width: 1399px) {
  #contents #beauty {
    background-size: 1400px auto;
    background-position: center top;
  }
}

@media (max-width: 767px) {
  #contents #beauty {
    background: url(../images/bg_no1.jpg) center center no-repeat;
    background-size: cover;
    height: auto;
    padding: 50px 0;
  }
  #contents #beauty .inner {
    display: block;
    height: auto;
  }
  #contents #beauty .inner .text {
    width: 100%;
  }
  #contents #beauty .inner .text p {
    margin-bottom: 30px;
  }
  #contents #beauty .inner .text p:last-of-type {
    margin: 0;
  }
  #contents #beauty .inner h2 {
    width: 100%;
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.2em;
    margin-bottom: 30px;
  }
}

#contents #company {
  padding: 100px 0;
}

#contents #company .company_in {
  max-width: 860px;
  width: 86%;
  margin: 0 auto;
}

#contents #company h2 {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 45px;
}

#contents #company p {
  line-height: 1.5em;
  font-size: 18px;
  margin-bottom: 20px;
}

#contents #company p.en {
  font-size: 14px;
  color: #b5afad;
  margin-bottom: 30px;
  text-align: center;
}

#contents #company table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px #a0a0a0 solid;
  margin-bottom: 45px;
}

#contents #company table th {
  border-bottom: 1px #a0a0a0 solid;
  padding: 10px 20px;
  width: 180px;
  text-align: left;
  font-weight: normal;
}

#contents #company table td {
  border-bottom: 1px #a0a0a0 solid;
  padding: 10px 20px;
}

#contents #company h3 {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 20px;
}

#contents #company .company_l {
  float: left;
  max-width: 390px;
  padding: 0 30px 0 15px;
}

#contents #company .company_r {
  float: right;
  max-width: 470px;
  padding: 0 0 0 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 1px #a0a0a0 solid;
}

#contents #company .company_l p, #contents #company #company .company_r p {
  font-size: 16px;
}

#contents #company .company_l p a, #contents #company #company .company_r p a {
  text-decoration: underline;
}

@media (max-width: 767px) {
  #contents #company {
    padding: 50px 0;
  }
  #contents #company .company_in {
    max-width: 100%;
    width: 100%;
  }
  #contents #company h2 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 45px;
  }
  #contents #company p {
    font-size: 1.4rem;
  }
  #contents #company table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px #a0a0a0 solid;
    margin-bottom: 45px;
  }
  #contents #company table th {
    border-bottom: 1px #a0a0a0 solid;
    padding: 10px 5%;
    width: 40%;
    text-align: left;
    font-weight: normal;
  }
  #contents #company table td {
    border-bottom: 1px #a0a0a0 solid;
    padding: 10px 5%;
  }
  #contents #company h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  #contents #company .company_l {
    float: none;
    max-width: 100%;
    padding: 0 0 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px #a0a0a0 solid;
  }
  #contents #company .company_r {
    float: none;
    max-width: 100%;
    padding: 0;
    border: 0;
  }
  #contents #company .company_l p, #contents #company #company
.company_r p {
    font-size: 1.4rem;
  }
}

/* footer */
footer {
  background: #000;
  padding: 0 0 40px;
  text-align: center;
  color: #fff;
}

@media (max-width: 767px) {
  footer {
    padding: 0 0 20px;
  }
}

footer a {
  color: #fff;
  display: block;
  padding: 20px 0;
}

@media (max-width: 767px) {
  footer a {
    padding: 20px 0 0;
  }
}

/* PCのみ　画面の横幅が768px以上 */
@media screen and (min-width: 768px) {
  /*ーーーーーーーーーーースタイルここからーーーーーーーーーーーーー*/
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  a:hover img {
    Filter: Alpha(Opacity=85);
    opacity: .85;
  }
}

/* スマフォ用 画面の横幅が767pxまで */
@media screen and (max-width: 767px) {
  /*ーーーーーーーーーーースタイルここからーーーーーーーーーーーーー*/
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    width: auto;
  }
}
