@charset "UTF-8";
/*! minireset.css v0.0.2 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: inherit;
}

img, embed, object, audio, video {
  border: 0;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td, th {
  padding: 0;
  text-align: left;
}

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

main {
  display: block;
}

/*!
 * jquery-drawer v3.2.2
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */
/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 80%;
  height: 100%;
  color: #fff;
  background-color: #222;
}

.drawer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.75rem;
  display: block;
  padding-right: .75rem;
  padding-left: .75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1rem;
  display: block;
  padding: .75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Top
\*!------------------------------------*/
.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Left
\*!------------------------------------*/
.drawer--left .drawer-nav {
  left: -16.25rem;
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -80%;
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 2%;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 3rem;
  padding: 0;
  padding-top: 18px;
  padding-right: 1rem;
  padding-bottom: 30px;
  padding-left: 1rem;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

@media only screen and (max-width: 768px) {
  .drawer-hamburger {
    top: 4.17vw;
    padding-top: 2.08vw;
  }
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #222;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  transform: rotate(45deg);
  background: #fff;
}

.drawer-open .drawer-hamburger-icon:after {
  transform: rotate(-45deg);
  background: #fff;
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff;
}

.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }
  .drawer--sidebar .drawer-nav {
    display: block;
    transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }
  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }
  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}

@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 16.25rem;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 16.25rem;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 16.25rem;
  }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem;
  }
}

/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 .75rem;
  text-align: center;
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }
  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }
  .drawer-navbar .drawer-menu--right {
    float: right;
  }
  .drawer-navbar .drawer-menu li {
    float: left;
  }
  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    transform: translate3d(0, 0, 0);
  }
  .drawer-navbar .drawer-menu {
    padding: 0;
  }
  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd;
  }
  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: .75rem;
  }
}

/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: .75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #222;
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  transition: transform .2s ease, opacity .2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  transform: rotate(180deg);
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}

@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}

/* ----------------------------------------------------
text-align
---------------------------------------------------- */
.tal {
  text-align: left !important;
}

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

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

/* ----------------------------------------------------
margin
---------------------------------------------------- */
.mt00 {
  margin-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1025px) {
  .mt-pc-10 {
    margin-top: 10px !important;
  }
  .mt-pc-15 {
    margin-top: 15px !important;
  }
  .mt-pc-20 {
    margin-top: 20px !important;
  }
  .mt-pc-25 {
    margin-top: 25px !important;
  }
  .mt-pc-30 {
    margin-top: 30px !important;
  }
  .mt-pc-35 {
    margin-top: 35px !important;
  }
  .mt-pc-40 {
    margin-top: 40px !important;
  }
  .mt-pc-45 {
    margin-top: 45px !important;
  }
  .mt-pc-50 {
    margin-top: 50px !important;
  }
  .mt-pc-60 {
    margin-top: 60px !important;
  }
}

@media only screen and (max-width: 768px) {
  .mt-sp-05 {
    margin-top: 5px !important;
  }
  .mt-sp-10 {
    margin-top: 10px !important;
  }
  .mt-sp-15 {
    margin-top: 15px !important;
  }
  .mt-sp-20 {
    margin-top: 20px !important;
  }
  .mt-sp-25 {
    margin-top: 25px !important;
  }
  .mt-sp-30 {
    margin-top: 30px !important;
  }
  .mt-sp-35 {
    margin-top: 35px !important;
  }
  .mt-sp-40 {
    margin-top: 40px !important;
  }
  .mt-sp-45 {
    margin-top: 45px !important;
  }
  .mt-sp-50 {
    margin-top: 50px !important;
  }
  .mt-sp-60 {
    margin-top: 60px !important;
  }
}

@media only screen and (min-width: 1025px) {
  .mr-pc-10 {
    margin-right: 10px !important;
  }
  .mr-pc-15 {
    margin-right: 15px !important;
  }
  .mr-pc-20 {
    margin-right: 20px !important;
  }
  .mr-pc-25 {
    margin-right: 25px !important;
  }
  .mr-pc-30 {
    margin-right: 30px !important;
  }
  .mr-pc-35 {
    margin-right: 35px !important;
  }
  .mr-pc-40 {
    margin-right: 40px !important;
  }
  .mr-pc-45 {
    margin-right: 45px !important;
  }
  .mr-pc-50 {
    margin-right: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .mr-sp-10 {
    margin-right: 10px !important;
  }
  .mr-sp-15 {
    margin-right: 15px !important;
  }
  .mr-sp-20 {
    margin-right: 20px !important;
  }
  .mr-sp-25 {
    margin-right: 25px !important;
  }
  .mr-sp-30 {
    margin-right: 30px !important;
  }
  .mr-sp-35 {
    margin-right: 35px !important;
  }
  .mr-sp-40 {
    margin-right: 40px !important;
  }
  .mr-sp-45 {
    margin-right: 45px !important;
  }
  .mr-sp-50 {
    margin-right: 50px !important;
  }
}

@media only screen and (min-width: 1025px) {
  .mb-pc-10 {
    margin-bottom: 10px !important;
  }
  .mb-pc-15 {
    margin-bottom: 15px !important;
  }
  .mb-pc-20 {
    margin-bottom: 20px !important;
  }
  .mb-pc-25 {
    margin-bottom: 25px !important;
  }
  .mb-pc-30 {
    margin-bottom: 30px !important;
  }
  .mb-pc-35 {
    margin-bottom: 35px !important;
  }
  .mb-pc-40 {
    margin-bottom: 40px !important;
  }
  .mb-pc-45 {
    margin-bottom: 45px !important;
  }
  .mb-pc-50 {
    margin-bottom: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .mb-sp-10 {
    margin-bottom: 10px !important;
  }
  .mb-sp-15 {
    margin-bottom: 15px !important;
  }
  .mb-sp-20 {
    margin-bottom: 20px !important;
  }
  .mb-sp-25 {
    margin-bottom: 25px !important;
  }
  .mb-sp-30 {
    margin-bottom: 30px !important;
  }
  .mb-sp-35 {
    margin-bottom: 35px !important;
  }
  .mb-sp-40 {
    margin-bottom: 40px !important;
  }
  .mb-sp-45 {
    margin-bottom: 45px !important;
  }
  .mb-sp-50 {
    margin-bottom: 50px !important;
  }
}

@media only screen and (min-width: 1025px) {
  .ml-pc-10 {
    margin-left: 10px !important;
  }
  .ml-pc-15 {
    margin-left: 15px !important;
  }
  .ml-pc-20 {
    margin-left: 20px !important;
  }
  .ml-pc-25 {
    margin-left: 25px !important;
  }
  .ml-pc-30 {
    margin-left: 30px !important;
  }
  .ml-pc-35 {
    margin-left: 35px !important;
  }
  .ml-pc-40 {
    margin-left: 40px !important;
  }
  .ml-pc-45 {
    margin-left: 45px !important;
  }
  .ml-pc-50 {
    margin-left: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .ml-sp-10 {
    margin-left: 10px !important;
  }
  .ml-sp-15 {
    margin-left: 15px !important;
  }
  .ml-sp-20 {
    margin-left: 20px !important;
  }
  .ml-sp-25 {
    margin-left: 25px !important;
  }
  .ml-sp-30 {
    margin-left: 30px !important;
  }
  .ml-sp-35 {
    margin-left: 35px !important;
  }
  .ml-sp-40 {
    margin-left: 40px !important;
  }
  .ml-sp-45 {
    margin-left: 45px !important;
  }
  .ml-sp-50 {
    margin-left: 50px !important;
  }
}

/* ----------------------------------------------------
padding
---------------------------------------------------- */
.pt00 {
  padding-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1025px) {
  .pt-pc-10 {
    padding-top: 10px !important;
  }
  .pt-pc-15 {
    padding-top: 15px !important;
  }
  .pt-pc-20 {
    padding-top: 20px !important;
  }
  .pt-pc-25 {
    padding-top: 25px !important;
  }
  .pt-pc-30 {
    padding-top: 30px !important;
  }
  .pt-pc-35 {
    padding-top: 35px !important;
  }
  .pt-pc-40 {
    padding-top: 40px !important;
  }
  .pt-pc-45 {
    padding-top: 45px !important;
  }
  .pt-pc-50 {
    padding-top: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .pt-sp-05 {
    padding-top: 5px !important;
  }
  .pt-sp-10 {
    padding-top: 10px !important;
  }
  .pt-sp-15 {
    padding-top: 15px !important;
  }
  .pt-sp-20 {
    padding-top: 20px !important;
  }
  .pt-sp-25 {
    padding-top: 25px !important;
  }
  .pt-sp-30 {
    padding-top: 30px !important;
  }
  .pt-sp-35 {
    padding-top: 35px !important;
  }
  .pt-sp-40 {
    padding-top: 40px !important;
  }
  .pt-sp-45 {
    padding-top: 45px !important;
  }
  .pt-sp-50 {
    padding-top: 50px !important;
  }
}

@media only screen and (min-width: 1025px) {
  .pr-pc-10 {
    padding-right: 10px !important;
  }
  .pr-pc-15 {
    padding-right: 15px !important;
  }
  .pr-pc-20 {
    padding-right: 20px !important;
  }
  .pr-pc-25 {
    padding-right: 25px !important;
  }
  .pr-pc-30 {
    padding-right: 30px !important;
  }
  .pr-pc-35 {
    padding-right: 35px !important;
  }
  .pr-pc-40 {
    padding-right: 40px !important;
  }
  .pr-pc-45 {
    padding-right: 45px !important;
  }
  .pr-pc-50 {
    padding-right: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .pr-sp-10 {
    padding-right: 10px !important;
  }
  .pr-sp-15 {
    padding-right: 15px !important;
  }
  .pr-sp-20 {
    padding-right: 20px !important;
  }
  .pr-sp-25 {
    padding-right: 25px !important;
  }
  .pr-sp-30 {
    padding-right: 30px !important;
  }
  .pr-sp-35 {
    padding-right: 35px !important;
  }
  .pr-sp-40 {
    padding-right: 40px !important;
  }
  .pr-sp-45 {
    padding-right: 45px !important;
  }
  .pr-sp-50 {
    padding-right: 50px !important;
  }
}

@media only screen and (min-width: 1025px) {
  .pb-pc-10 {
    padding-bottom: 10px !important;
  }
  .pb-pc-15 {
    padding-bottom: 15px !important;
  }
  .pb-pc-20 {
    padding-bottom: 20px !important;
  }
  .pb-pc-25 {
    padding-bottom: 25px !important;
  }
  .pb-pc-30 {
    padding-bottom: 30px !important;
  }
  .pb-pc-35 {
    padding-bottom: 35px !important;
  }
  .pb-pc-40 {
    padding-bottom: 40px !important;
  }
  .pb-pc-45 {
    padding-bottom: 45px !important;
  }
  .pb-pc-50 {
    padding-bottom: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .pb-sp-10 {
    padding-bottom: 10px !important;
  }
  .pb-sp-15 {
    padding-bottom: 15px !important;
  }
  .pb-sp-20 {
    padding-bottom: 20px !important;
  }
  .pb-sp-25 {
    padding-bottom: 25px !important;
  }
  .pb-sp-30 {
    padding-bottom: 30px !important;
  }
  .pb-sp-35 {
    padding-bottom: 35px !important;
  }
  .pb-sp-40 {
    padding-bottom: 40px !important;
  }
  .pb-sp-45 {
    padding-bottom: 45px !important;
  }
  .pb-sp-50 {
    padding-bottom: 50px !important;
  }
}

@media only screen and (min-width: 1025px) {
  .pl-pc-10 {
    padding-left: 10px !important;
  }
  .pl-pc-15 {
    padding-left: 15px !important;
  }
  .pl-pc-20 {
    padding-left: 20px !important;
  }
  .pl-pc-25 {
    padding-left: 25px !important;
  }
  .pl-pc-30 {
    padding-left: 30px !important;
  }
  .pl-pc-35 {
    padding-left: 35px !important;
  }
  .pl-pc-40 {
    padding-left: 40px !important;
  }
  .pl-pc-45 {
    padding-left: 45px !important;
  }
  .pl-pc-50 {
    padding-left: 50px !important;
  }
}

@media only screen and (max-width: 768px) {
  .pl-sp-10 {
    padding-left: 10px !important;
  }
  .pl-sp-15 {
    padding-left: 15px !important;
  }
  .pl-sp-20 {
    padding-left: 20px !important;
  }
  .pl-sp-25 {
    padding-left: 25px !important;
  }
  .pl-sp-30 {
    padding-left: 30px !important;
  }
  .pl-sp-35 {
    padding-left: 35px !important;
  }
  .pl-sp-40 {
    padding-left: 40px !important;
  }
  .pl-sp-45 {
    padding-left: 45px !important;
  }
  .pl-sp-50 {
    padding-left: 50px !important;
  }
}

html {
  font-size: 62.5%;
  background: #fff;
}

body {
  font-size: 14px;
  font-size: 1.4em;
  color: #444;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
  line-height: 1.5;
}

.sp {
  display: none;
}

.mb {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .mb {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .mb {
    display: block;
  }
}

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

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

/* img */
img {
  vertical-align: bottom;
}

/* リンク */
a {
  color: #666;
  text-decoration: none;
}

a:hover, a img:hover {
  opacity: .7;
}

#btnScroll {
  position: fixed;
  right: 0;
  bottom: 0;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

#btnScroll.active {
  opacity: 1;
  visibility: visible;
}

/* 矢印 */
.arrow, .arrow--reverse, header nav li {
  position: relative;
  display: block;
  vertical-align: middle;
}

.arrow::before, .arrow--reverse::before, header nav li::before {
  content: '';
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -3.5px;
  transition: 1s;
}

.arrow--reverse:before {
  left: 20px;
  right: auto;
  transform: rotate(-135deg);
}

.arrow.black::before, .black.arrow--reverse::before, header nav li.black::before {
  border-top: solid 2px #444;
  border-right: solid 2px #444;
}

.arrow.black::before:hover:before, .black.arrow--reverse::before:hover:before, header nav li.black::before:hover:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.arrow.white::before, .white.arrow--reverse::before, header nav li::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.arrow.white::before:hover::before, .white.arrow--reverse::before:hover::before, header nav li::before:hover::before {
  border-top: solid 2px #444;
  border-right: solid 2px #444;
}

/* 黒いフィルター有り */
a:hover .arrow.black::before, a:hover .black.arrow--reverse::before, a:hover header nav li.black::before, header nav a:hover li.black::before,
.btn:hover .arrow.black::before,
.btn:hover .black.arrow--reverse::before,
.btn:hover header nav li.black::before,
header nav .btn:hover li.black::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

a:hover .arrow.white::before, a:hover .white.arrow--reverse::before, a:hover header nav li::before, header nav a:hover li::before,
.btn:hover .arrow.white::before,
.btn:hover .white.arrow--reverse::before,
.btn:hover header nav li::before,
header nav .btn:hover li::before {
  border-top: solid 2px #444;
  border-right: solid 2px #444;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}

header nav {
  float: right;
  font-size: 0;
}

header nav li {
  font-size: 1.4rem;
  display: inline-block;
  margin: 0 1rem;
  vertical-align: middle;
}

@media only screen and (min-width: 1025px) {
  header nav li:before {
    content: none;
  }
}

header nav li a {
  color: #666;
}

header nav li a:hover {
  opacity: 1;
  border-bottom: solid #666 1px;
}

header nav li:last-of-type {
  background: #222;
  width: 100px;
  height: 80px;
  margin-right: 0;
  text-align: center;
  font-size: 1.1rem;
}

header nav li:last-of-type:hover {
  opacity: .7;
}

header nav li:last-of-type a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  line-height: 1.4;
}

header nav li:last-of-type a:hover {
  border-bottom: none;
}

header nav li:last-of-type span {
  display: block;
}

@media only screen and (max-width: 1024px) {
  header {
    position: absolute;
  }
  header nav {
    float: right;
    font-size: 0;
  }
  header nav li {
    font-size: 1.6rem;
    margin: 0;
    border-top: solid 1px #fff;
    width: 100%;
  }
  header nav li a {
    display: block;
    padding: 4%;
    color: #fff;
  }
  header nav li a:hover {
    opacity: 1;
    border-bottom: solid #666 1px;
  }
  header nav li:first-of-type {
    margin-top: 60px;
  }
  header nav li:last-of-type {
    width: 100%;
    height: auto;
    margin-right: 0;
    text-align: left;
    font-size: 1.8rem;
    border-bottom: solid 1px #fff;
    overflow: hidden;
  }
  header nav li:last-of-type:hover {
    opacity: 1;
  }
  header nav li:last-of-type a {
    display: block;
    padding: 4%;
  }
}

@media only screen and (max-width: 768px) {
  header nav li {
    font-size: 1.4rem;
  }
  header nav li:last-of-type {
    font-size: 1.4rem;
  }
}

.header-logo {
  float: left;
  margin: 15px 0 15px 30px;
}

@media only screen and (max-width: 768px) {
  .header-logo {
    width: 31.5625vw;
    margin: 4.17vw 0 4.17vw 4.17vw;
  }
}

.header-logo__link {
  display: block;
}

footer {
  width: 100%;
  background: #222 url(../../common/img/bg_footer.png);
  color: #fff;
  text-align: center;
  padding-top: 3rem;
}

footer > p {
  margin-bottom: 2rem;
}

footer > p a {
  color: inherit;
}

footer > ul {
  font-size: 0;
  margin-bottom: 2rem;
}

footer > ul li {
  display: inline-block;
  margin: 0 2rem;
}

footer .inner {
  background: #111;
  padding: 2%;
}

footer .inner nav {
  font-size: 0;
  margin-bottom: 2rem;
}

footer .inner nav li {
  font-size: 1.4rem;
  display: inline-block;
  margin: 0 1rem;
}

footer .inner nav li a {
  color: #fff;
}

.footer-logo {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 640px) {
  .footer-logo {
    width: 31.5625vw;
    margin: 0 auto 3.125vw;
  }
}

.footer-logo__link {
  display: inline-block;
}

.footer-icon-list {
  max-width: 440px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 1rem;
}

.footer-icon-item {
  margin: 0;
}

@media only screen and (min-width: 1025px) {
  .lower header nav li:not(:last-child) a {
    color: #444;
  }
}

.lower main .content {
  max-width: 1080px;
  padding-inline: 40px;
}

@media (max-width: 600px) {
  .lower main .content {
    padding-inline: 20px;
  }
}

.lower footer {
  margin-top: 100px;
}

@media only screen and (max-width: 768px) {
  .lower footer {
    margin-top: 13%;
  }
}

@media only screen and (max-width: 768px) {
  .lower.products.list footer {
    margin-top: 0;
  }
}

.lower.introduce footer, .lower.products.detail footer {
  margin-top: 0;
}

@media only screen and (max-width: 1024px) {
  .lower.oil-child footer, .lower.products.list footer {
    margin-top: 0;
  }
}

.lower.introduce-child footer {
  margin-top: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Scss Document */
/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 45px;
  height: 72px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  background-size: cover;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:before,
.slick-next:before {
  content: '';
}

.slick-prev {
  background: url(../../img/prev.png) center center no-repeat;
  left: 20px;
}

.slick-next {
  background: url(../../img/next.png) center center no-repeat;
  right: 20px;
}

@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    background-size: 30%;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
}

/*
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
*/
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

/*
.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}*/
/*
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}
.slick-prev:before,.slick-next:before {
  content: "";
}*/
/* Dots */
.slick-dots {
  position: absolute;
  bottom: 5px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #ececec;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  content: '•';
  text-align: center;
  opacity: .25;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: transparent;
  background: #fff;
}

#lowerTitle {
  margin-bottom: 70px;
  padding: 90px 20px 5.75%;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  background-position: center center;
}

@media only screen and (max-width: 768px) {
  #lowerTitle {
    margin-bottom: 6%;
    padding: 70px 10px 5.75%;
  }
}

#lowerTitle .ttl01 {
  margin-top: 3.25%;
}

#lowerTitle p {
  margin-top: 15px;
  color: #FFF;
}

@media only screen and (max-width: 768px) {
  #lowerTitle p {
    font-size: 1.3rem;
  }
}

#lowerTitle.ttlNone {
  margin-bottom: 0;
  padding-bottom: 0;
  background: 0 !important;
}

h1 {
  text-align: center;
}

.ttl01 {
  text-align: center;
  font-family: "Sawarabi Mincho","a-otf-ud-reimin-pr6n",serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
}

.ttl01:before {
  content: "concept";
  font-family: 'Tinos', serif;
  display: block;
  opacity: .15;
  font-size: 7.2rem;
  margin-bottom: -5.5rem;
  color: #fff;
}

.ttl01 span {
  display: block;
  font-size: 1.8rem;
  font-family: 'Tinos', serif;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .ttl01 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .ttl01:before {
    font-size: 5.8rem;
    margin-bottom: -4.4rem;
  }
  .ttl01 span {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 480px) {
  .ttl01 {
    font-size: 1.8rem;
  }
  .ttl01:before {
    font-size: 4rem;
    margin-bottom: -4rem;
  }
  .ttl01 span {
    font-size: 1.8rem;
  }
}

.ttl02 {
  margin-bottom: 40px;
  font-size: 2.0rem;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .ttl02 {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }
}

.ttl03 {
  margin: 70px 0 30px;
  font-family: "Sawarabi Mincho";
  font-size: 4.0rem;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .ttl03 {
    font-size: 3.0rem;
  }
}

@media only screen and (max-width: 640px) {
  .ttl03 {
    font-size: 2.5rem;
  }
}

.ttl04 {
  font-size: 2.4rem;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .ttl04 {
    font-size: 1.8rem;
  }
}

.ttl04 span {
  font-size: 5.0rem;
}

@media only screen and (max-width: 768px) {
  .ttl04 span {
    font-size: 3rem;
  }
}

.ttl05, .ttl06 {
  font-size: 2.0rem;
  text-align: center;
}

.ttl06 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
  .ttl06 {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }
}

/* ボタン */
.btnOuter {
  width: 100%;
  padding: 0 2em;
}

.btnOuter.-news {
  margin-top: auto;
}

.btn {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  margin: 40px auto 0;
  position: relative;
  overflow: hidden;
}

.btn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  transition: .5s;
  transform: translateX(-120%) skewX(-45deg);
}

.btn:hover:before {
  transform: translateX(0);
}

.btn a, .btn span, .btn .button {
  position: relative;
  width: 100%;
  background: 0;
  border: 0;
  padding: 1em 0;
  cursor: pointer;
  font-size: 1.8rem;
  z-index: 1;
}

.btn a:hover, .btn span:hover, .btn .button:hover {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .btn {
    margin-top: 20px;
  }
}

.btn.black {
  max-width: 640px;
  border: solid 1px #bbb;
}

.btn.black:before {
  background: #444;
}

.btn.black a, .btn.black span, .btn.black .button {
  color: #444;
}

.btn.black a:hover, .btn.black span:hover, .btn.black .button:hover {
  color: #fff;
}

.btn.white {
  max-width: 640px;
  border: solid 1px #fff;
}

.btn.white:before {
  background: #FFF;
}

.btn.white a, .btn.white span, .btn.white .button {
  color: #fff;
}

.btn.white a:hover, .btn.white span:hover, .btn.white .button:hover {
  color: #444;
}

/* TOP:黒いフィルター有り */
a:hover .btn:before {
  transform: translateX(0);
}

a:hover .black {
  color: #fff;
}

a:hover .white {
  color: #444;
}

/* 導入検討：対象商品を探すボタン */
.btnSeaech {
  float: right;
  width: 160px;
  margin: 20px auto 0;
}

.btnSeaech a {
  font-size: 1.4rem;
  padding: .5em 0;
}

.btnSeaech a:hover .icoSearch {
  fill: #fff;
}

.btnSeaech .icoSearch {
  margin-left: .5em;
  vertical-align: middle;
  fill: #444;
  transition: .5s;
}

ul.disc li {
  position: relative;
  padding-left: 1.2rem;
}

ul.disc li:before {
  position: absolute;
  left: 0;
  content: '・';
}

.listPhoto {
  position: relative;
  width: 100%;
  height: 16.66vw;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .listPhoto {
    height: 34.36vw;
  }
}

.listPhoto .listPhotoWrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 16.66vw;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .listPhoto .listPhotoWrap {
    height: 34.36vw;
  }
}

.listPhoto ul {
  float: left;
}

.listPhoto ul li {
  float: left;
  width: 25vw;
}

@media only screen and (max-width: 640px) {
  .listPhoto ul li {
    width: 50vw;
  }
}

.numberPhotoList {
  margin-top: 45px;
}

@media only screen and (max-width: 640px) {
  .numberPhotoList {
    margin-top: 25px;
  }
}

.numberPhotoList li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .numberPhotoList li {
    display: block;
  }
}

.numberPhotoList .photo {
  flex-basis: 50%;
  max-width: 50%;
  height: 450px;
  background-size: cover;
}

@media only screen and (max-width: 1024px) {
  .numberPhotoList .photo {
    height: 300px;
  }
}

@media only screen and (max-width: 640px) {
  .numberPhotoList .photo {
    max-width: none;
    height: auto;
  }
}

.numberPhotoList .photo img {
  display: none;
}

@media only screen and (max-width: 640px) {
  .numberPhotoList .photo img {
    display: block;
  }
}

.numberPhotoList .txtArea {
  flex-basis: 50%;
  max-width: 50%;
  padding: 20px;
}

@media only screen and (max-width: 640px) {
  .numberPhotoList .txtArea {
    max-width: none;
  }
}

.numberPhotoList .txtArea .inner {
  position: relative;
  width: 76%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .numberPhotoList .txtArea .inner {
    width: 95%;
  }
}

.numberPhotoList .txtArea .ttl {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

@media only screen and (max-width: 640px) {
  .numberPhotoList .txtArea .ttl {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 640px) {
  .numberPhotoList .txtArea .txt {
    font-size: 1.3rem;
  }
}

.numberPhotoList .txtArea .number {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  font-family: 'Tinos', serif;
  font-size: 20rem;
  text-align: center;
  opacity: 0.15;
  line-height: 1;
}

.numberPhotoList .order0 {
  order: 0;
}

.numberPhotoList .order1 {
  order: 1;
}

.listSample {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 35px 0 90px;
}

@media only screen and (max-width: 640px) {
  .listSample {
    display: block;
    margin: 20px 0 50px;
  }
}

.listSample li {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-basis: 49%;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.listSample li:nth-child(n + 7) {
  border-bottom: 1px solid #eee;
}

.listSample li .photo {
  flex-basis: 170px;
  padding-right: 20px;
}

@media only screen and (max-width: 640px) {
  .listSample li .photo {
    flex-basis: 140px;
  }
}

.listSample li .txtArea {
  flex-basis: calc(100% - 170px);
}

@media only screen and (max-width: 640px) {
  .listSample li .txtArea {
    flex-basis: calc(100% - 140px);
  }
}

.listSample li .ttl {
  margin-bottom: 20px;
  font-size: 2.0rem;
  line-height: 1;
}

@media only screen and (max-width: 640px) {
  .listSample li .ttl {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }
}

.listBtnTab {
  position: absolute;
  top: -70px;
  left: 50%;
  display: table;
  width: 100%;
  transform: translate(-50%, -100%);
  table-layout: fixed;
  text-align: center;
}

@media only screen and (min-width: 1025px) {
  .listBtnTab {
    max-width: 1000px;
  }
}

@media only screen and (max-width: 1024px) {
  .listBtnTab {
    position: static;
    display: block;
    margin-top: 12.5%;
    transform: none;
  }
}

.listBtnTab__child {
  display: table-cell;
  padding: 0 1px;
}

@media only screen and (max-width: 1024px) {
  .listBtnTab__child {
    display: block;
    padding: 0;
  }
}

.listBtnTab__txt {
  display: block;
  padding: 20px 10px;
  border: 1px solid #c1bdba;
  border-bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
}

@media only screen and (max-width: 1024px) {
  .listBtnTab__txt {
    background: #222;
    border: 0;
    border-bottom: 1px solid #fff;
  }
}

@media only screen and (min-width: 1025px) {
  .listBtnTab__txt:before {
    content: none;
  }
}

.listBtnTab__txt:hover {
  background: #000;
  opacity: 1;
}

.listBtnTab__txt.active {
  background: #FFF;
  border-color: #FFF;
  color: #444;
}

@media only screen and (max-width: 1024px) {
  .listBtnTab__txt.active {
    display: none;
  }
}

.listProduct {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 65px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .listProduct {
    margin-top: 0;
  }
}

.listProduct li {
  flex-basis: 33.33%;
  margin-top: 75px;
}

@media only screen and (max-width: 640px) {
  .listProduct li {
    flex-basis: 48%;
    margin-top: 12.5%;
  }
}

.listProduct .photo {
  position: relative;
  width: 200px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .listProduct .photo {
    width: 100%;
  }
}

.listProduct .photo:before {
  display: block;
  padding-bottom: 100%;
  content: '';
}

.listProduct .photo img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.listProduct a {
  display: block;
}

.listProduct .ttl {
  margin-top: 30px;
}

.newsList {
  width: 100%;
  border-top: 1px dotted #aaa;
  text-align: left;
}

.newsList .category {
  font-weight: bold;
  font-size: 1rem;
  padding: 2px 7px;
  color: #fff;
  line-height: 1;
  float: right;
  background: #f00;
  border-radius: 6rem;
  vertical-align: top;
}

.newsList .category.catNews {
  background: #f3a410;
}

.newsList .category.catProduct {
  background: #4aa11a;
}

.newsList .category.catEvent {
  background: #6276aa;
}

.newsList .category.catMedia {
  background: #ae5da1;
}

.newsList .category.catEtc {
  background: #f3c010;
}

.newsList .category.catOffice {
  background: #444;
}

.newsList tr {
  width: 100%;
  border-bottom: 1px dotted #aaa;
}

.newsList tr th {
  padding: 12px 0;
  font-weight: normal;
}

.newsList tr th .category {
  margin: 0 0 0 1rem;
}

.newsList tr td {
  padding: 12px 0;
}

.newsList tr td .category {
  margin: 0 1rem 0 0;
  vertical-align: text-top;
}

.newsList tr td .category.flNone {
  float: none;
  margin: 0 0 0 1rem;
}

@media only screen and (max-width: 640px) {
  .newsList tr th,
  .newsList tr td {
    padding-right: 4.16%;
    padding-left: 4.16%;
  }
}

.newsList tr th.table-iframe,
.newsList tr td.table-iframe {
  display: table-cell !important;
  vertical-align: top;
}

.newsList tr th.table-iframe.date,
.newsList tr td.table-iframe.date {
  min-width: 225px;
}

.newsList tr td.title.table-iframe {
  width: 100%;
}

.table-cmn-01 {
  width: 100%;
}

.table-cmn-01 tr {
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

.table-cmn-01 th,
.table-cmn-01 td {
  padding: 15px 25px;
  font-weight: normal;
}

@media only screen and (max-width: 640px) {
  .table-cmn-01 th,
  .table-cmn-01 td {
    padding: 10px 7px;
  }
}

.table-cmn-01 th {
  width: 15%;
}

@media only screen and (max-width: 640px) {
  .table-cmn-01 th {
    width: 25%;
  }
}

.contactArea {
  padding: 30px 20px;
  background: #FFF;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .contactArea {
    padding: 20px 10px;
  }
}

.contactArea p {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .contactArea p {
    margin-top: 10px;
  }
}

.contactArea .ttl {
  margin-top: 0;
}

.contactArea .ttl + p {
  font-size: 1.2rem;
}

.contactArea .tel {
  font-size: 1.8rem;
}

.contactArea .tel a {
  font-size: 3.0rem;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .contactArea .tel a {
    font-size: 2.0rem;
  }
}

.contactArea .tel span {
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .contactArea .tel span {
    display: block;
  }
}

.contactArea .btn {
  margin-top: 15px;
}

.bgGray {
  background: #f6f6f6;
}

#breadCrumb {
  text-align: left;
}

@media only screen and (max-width: 768px) {
  #breadCrumb {
    display: none;
  }
}

#breadCrumb.ttlNone {
  margin-top: 90px;
}

#breadCrumb ul {
  font-size: 0;
}

#breadCrumb li {
  display: inline-block;
  color: #aaa;
  font-size: 1.1rem;
  vertical-align: top;
}

#breadCrumb li:not(:last-child) {
  margin-right: 10px;
}

#breadCrumb li + li:before {
  margin-right: 8px;
  content: '＞';
}

#breadCrumb li img {
  margin-right: 8px;
  vertical-align: baseline;
}

#breadCrumb li a {
  color: inherit;
  text-decoration: none;
}

#breadCrumb li a:hover {
  text-decoration: underline;
}

main {
  width: 100%;
}

main .container {
  width: 100%;
}

main .content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {
  main .content {
    width: 100%;
    padding: 0;
  }
}

.boxCmnArrow {
  position: relative;
  background: #f3f3f3;
  text-align: center;
}

.boxCmnArrow:after {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #f3f3f3;
  content: '';
}

.boxCmnArrowTxt {
  padding: 35px 0;
}

@media only screen and (max-width: 640px) {
  .boxCmnArrowTxt {
    padding: 20px 0;
  }
}

.boxCmnArrow.contact {
  padding: 35px 0;
}

@media only screen and (max-width: 640px) {
  .boxCmnArrow.contact {
    padding: 20px 0;
  }
}

.boxCmnArrow.noArrow:after {
  content: none;
}

@media only screen and (max-width: 640px) {
  .boxCmnArrow .contactArea {
    margin-top: 0;
  }
}

.tableScroll {
  margin: 80px 0;
  overflow-x: auto;
}

@media only screen and (max-width: 640px) {
  .tableScroll {
    margin: 50px 0;
  }
}

.tableScroll table {
  width: 100%;
  min-width: 820px;
}

.tableScroll table th,
.tableScroll table td {
  padding: 14px 18px;
  border: 1px solid #EEE;
  font-weight: normal;
  vertical-align: middle;
}

@media only screen and (max-width: 640px) {
  .tableScroll table th,
  .tableScroll table td {
    padding: 12px 10px;
  }
}

.tableScroll .itemWrap {
  display: table;
}

.tableScroll .itemWrap a {
  display: block;
}

.tableScroll .itemWrap a > * {
  display: table-cell;
  vertical-align: middle;
}

.tableScroll .itemWrap .photo {
  padding-right: 5px;
}

.tableScroll p span {
  display: inline-block;
}

.section-cmn-01 {
  margin: 100px 0 0;
}

@media only screen and (max-width: 640px) {
  .section-cmn-01 {
    margin: 60px 0 0;
  }
}

.section-cmn-02 {
  padding: 80px 0;
}

@media only screen and (max-width: 640px) {
  .section-cmn-02 {
    padding: 50px 0;
  }
}

.section-cmn-02.border-bottom {
  border-bottom: 1px solid #EEE;
}

.section-cmn-03 {
  padding: 60px 0;
}

@media only screen and (max-width: 640px) {
  .section-cmn-03 {
    padding: 30px 0;
  }
}

.section-cmn-03.border-bottom {
  border-bottom: 1px solid #EEE;
}

.block-radius {
  display: inline-block;
  min-width: 80px;
  margin-right: 22px;
  padding: 0 7px;
  background: #666666;
  border-radius: 10px;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 20px;
  text-align: center;
  vertical-align: bottom;
}

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

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

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

.font-big {
  font-size: 2.2rem;
}

@media only screen and (max-width: 640px) {
  .font-big {
    font-size: 1.7rem;
  }
}

.font-bold {
  font-weight: bold;
}

.font-red {
  color: #e70600;
}

.attention-list .txt-attention {
  padding-bottom: 15px;
  position: relative;
  padding-left: 1.5rem;
}

.attention-list .txt-attention:before {
  position: absolute;
  left: 0;
  top: 0;
}

.attention-list .txt-attention:before {
  content: '※';
}

.attention-list .txt-attention:last-child {
  padding-bottom: 0;
}

.attention-list .txt-attention dl dt {
  padding-bottom: 2px;
}

.attention-list2 {
  margin-top: 15px;
}

.attention-list2 .txt-attention {
  padding-bottom: 2px;
  position: relative;
  padding-left: 1.5rem;
}

.attention-list2 .txt-attention:before {
  position: absolute;
  left: 0;
  top: 0;
}

.attention-list2 .txt-attention:before {
  content: '※';
}

.attention-list2 .txt-attention:last-child {
  padding-bottom: 0;
}

.attention-list2 .txt-attention dl dt {
  padding-bottom: 2px;
}

.attention-list3 .txt-attention {
  padding-top: 2px;
  position: relative;
  padding-left: 1.5rem;
}

.attention-list3 .txt-attention:before {
  position: absolute;
  left: 0;
  top: 0;
}

.attention-list3 .txt-attention:before {
  content: '※';
}

.attention-list3 .txt-attention:last-child {
  padding-bottom: 0;
}

.attention-list3 .txt-attention dl dt {
  padding-bottom: 2px;
}

/* 画像拡大 */
.img-scale a {
  display: block;
  overflow: hidden;
}

.img-scale a img {
  width: 100%;
  transition: 0.8s;
}

.img-scale a:hover img {
  transform: scale(1.1);
}

/* 背景画像拡大 */
.bg-scale {
  position: relative;
  overflow: hidden;
}

.bg-scale:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all .3s ease-out;
}

.bg-scale:hover:before {
  transform: scale(1.2);
}

.bg-scale .inner {
  z-index: 1;
  position: relative;
}

.ico-circle {
  display: block;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  border: 5px solid #666;
  border-radius: 100%;
}

.topSection {
  padding: 80px 0 100px;
}

@media only screen and (max-width: 768px) {
  .topSection {
    padding: 12.5% 0 16%;
  }
}

.topSection.--npb {
  padding-bottom: 0;
}

#mv {
  width: 100%;
  position: relative;
  font-size: 1.8rem;
  color: #fff;
  overflow: hidden;
}

#mv .scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -27px;
  z-index: 1000;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #mv .scroll {
    bottom: 12%;
    width: 40px;
    margin-left: -20px;
  }
}

.slideBox {
  position: relative;
  height: 100vh;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
}

.slideBox .mainImg img {
  display: inline;
}

.slideBox.slide01 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideBox.slide01 .slideInner {
  display: block;
  height: auto;
  padding-bottom: 30px;
}

.slideBox.slide01 .mainImg {
  width: 100%;
  transform: scale(0.9);
  transform-origin: center;
}

@media only screen and (max-width: 1024px) {
  .slideBox.slide01 .mainImg {
    top: auto;
    bottom: 40%;
    height: auto;
  }
}

@media only screen and (max-width: 640px) {
  .slideBox.slide01 .mainImg {
    position: static;
    bottom: 35%;
  }
}

.slideBox.slide01 .mainImg.animation {
  transform: scale(1);
  transition: 4s;
}

.slideBox.slide01 .textBox {
  margin-top: 10px;
  color: #666;
}

@media only screen and (max-width: 1024px) {
  .slideBox.slide01 .textBox {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 640px) {
  .slideBox.slide01 .textBox {
    margin-top: 15px;
  }
}

.slideBox.slide01 .textBox .top-mv-logo {
  margin-top: 32px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .slideBox.slide01 .textBox .top-mv-logo {
    width: 31.5625vw;
    margin: 5.21vw auto 0;
  }
}

.slideBox.slide01 .textBox .top-mv-logo img {
  display: inline;
}

.slideBox .slideInner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 30px;
}

@media only screen and (max-width: 640px) {
  .slideBox .slideInner {
    flex-direction: column;
    padding-bottom: 50px;
  }
}

.slideBox .slideInner .textBox {
  min-width: 420px;
}

@media only screen and (max-width: 640px) {
  .slideBox .slideInner .textBox {
    margin-top: 25px;
    min-width: auto;
  }
}

.slideBox .slideInner .textBox .title {
  margin-top: 0;
  font-size: 6rem;
}

@media only screen and (max-width: 640px) {
  .slideBox .slideInner .textBox .title {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 640px) {
  .slideBox .slideInner .mainImg {
    height: 150px;
  }
  .slideBox .slideInner .mainImg img {
    max-height: 100%;
  }
}

.slideBox.slide02 .textBox {
  color: #666;
  order: 0;
}

.slideBox.slide02 .mainImg {
  order: 1;
}

@media only screen and (max-width: 640px) {
  .slideBox.slide02 .textBox,
  .slideBox.slide02 .mainImg {
    order: 0;
  }
}

.slideBox.slide03 {
  background: #999999;
  background: linear-gradient(to right, #999999 1%, #222222 60%, #222222 60%, #222222 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#222222', GradientType=1);
}

.slideBox.slide03 .mainImg {
  margin-right: 9.5%;
}

@media only screen and (max-width: 640px) {
  .slideBox.slide03 .mainImg {
    margin-right: 0;
  }
}

.slideBox .textBox .title {
  margin-top: 20px;
  font-size: 4.2rem;
  font-family: "Tinos", serif;
  line-height: 1;
}

.slideBox .textBox .title.italic {
  font-style: italic;
}

@media only screen and (max-width: 640px) {
  .slideBox .textBox .title {
    margin-top: 10px;
    font-size: 3.5rem;
  }
}

.slideBox .textBox .title span {
  display: block;
  margin-bottom: 5px;
  font-size: 1.6rem;
}

.slideBox .textBox .subtitle {
  font-size: 1.4rem;
  font-family: "Sawarabi Mincho", "a-otf-ud-reimin-pr6n", serif;
}

@media only screen and (max-width: 640px) {
  .slideBox .textBox .subtitle {
    font-size: 1.2rem;
  }
}

.slideBox .textBox .text {
  font-size: 1.8rem;
  margin-top: 0;
  font-family: "Sawarabi Mincho", "a-otf-ud-reimin-pr6n", serif;
}

@media only screen and (max-width: 640px) {
  .slideBox .textBox .text {
    font-size: 1.2rem;
  }
}

.slideBox .textBox .text.big {
  margin-top: 30px;
  font-size: 2.8rem;
}

@media only screen and (max-width: 640px) {
  .slideBox .textBox .text.big {
    margin-top: 10px;
    font-size: 1.8rem;
  }
}

.filterBox01 {
  display: flex;
}

.filterBox01 > a {
  flex-basis: 50%;
  color: #fff;
}

.filterBox01 > a .bg-scale {
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .filterBox01 {
    display: block;
  }
  .filterBox01 > a {
    width: 100%;
  }
}

#cont01,
#cont02 {
  padding: 55px 10% 65px;
}

@media only screen and (max-width: 768px) {
  #cont01,
  #cont02 {
    padding: 3.125% 10% 10%;
  }
}

#cont01 .inner,
#cont02 .inner {
  max-width: 420px;
  margin: 0 auto;
}

#cont01:before {
  background-image: url(../../img/bg_tit_concept.jpg);
  background-position: 50% 30%;
  margin-left: -10%;
}

#cont01:after {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#cont01 h2:before {
  content: "Concept";
}

#cont01 p {
  text-align: center;
  position: relative;
}

#cont02:before {
  background-image: url(../../introduce/img/bg_main_introduce.jpg);
  background-position: 50% 30%;
  margin-left: -10%;
}

#cont02:after {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#cont02 h2:before {
  content: "Introduce";
}

#cont02 p {
  text-align: center;
  position: relative;
}

#cont03 {
  width: 100%;
}

#cont03 h2 {
  color: #444;
}

#cont03 h2:before {
  content: "Product";
  color: #444;
}

#cont03 h2 span {
  color: #444;
}

#cont03 ul {
  font-size: 0;
}

#cont03 ul li {
  display: inline-block;
  width: 30%;
  margin-right: 3%;
}

#cont03 ul li:last-child {
  margin-right: 0;
}

#cont03 ul li a {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
}

#cont03 ul li a figure {
  overflow: hidden;
}

@media only screen and (min-width: 1025px) {
  #cont03 ul li a figure {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1025px) {
  #cont03 ul li a {
    color: #666;
  }
}

@media only screen and (max-width: 1024px) {
  #cont03 ul li {
    width: 100%;
    margin-right: 0;
  }
  #cont03 ul li a {
    font-size: 1.6rem;
    text-align: center;
    background: #222 url(../../common/img/bg_footer.png);
  }
  #cont03 ul li a figure {
    float: left;
    width: 50%;
  }
  #cont03 ul li a figure img {
    width: 100%;
  }
  #cont03 ul li a > div {
    float: left;
    width: 50%;
    height: 100%;
    padding: 10.5% 5% 0;
  }
  #cont03 ul li a > div p {
    font-size: 2rem;
    color: #fff;
  }
  #cont03 ul li a > div .btn {
    margin-top: 6%;
  }
  #cont03 ul li a > div .btn span {
    font-size: 1.2rem;
  }
  #cont03 ul li:nth-child(2) figure {
    float: right;
  }
}

@media only screen and (max-width: 480px) {
  #cont03 ul li a > div {
    padding: 7.8% 5% 0;
  }
  #cont03 ul li a > div p {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 480px) and (max-width: 320px) {
  #cont03 ul li a > div p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  #cont03 ul li a > div .btn span {
    font-size: 1rem;
  }
}

#cont04 {
  width: 100%;
  background: url(../../common/img/voice/bg_tit_01.jpg) no-repeat;
  background-position: 50% 35%;
  background-size: cover;
  position: relative;
}

#cont04:before {
  background-color: rgba(204, 204, 204, 0.95);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#cont04 h2 {
  color: #444;
}

#cont04 h2:before {
  content: "Voice";
  color: #444;
}

#cont04 h2 span {
  color: #444;
}

#cont04 .btn {
  margin-top: 50px;
  border: solid 1px #999;
}

/* ------loopSlider------ */
.loopSlider {
  margin: 0 auto;
  width: 100%;
  height: 180px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.loopSlider .loopSliderWrap {
  top: 0;
  left: 0;
  height: 180px;
  overflow: hidden;
  position: absolute;
}

.loopSlider .loopSliderWrap:after {
  content: "";
  display: none;
  clear: none;
}

.loopSlider ul {
  height: 180px;
  float: left;
  overflow: hidden;
}

.loopSlider ul li {
  width: 240px;
  height: 180px;
  float: left;
  display: inline;
  overflow: hidden;
  padding: 0 30px;
}

@media only screen and (max-width: 480px) {
  .loopSlider {
    height: 120px;
  }
  .loopSlider .loopSliderWrap {
    height: 120px;
  }
  .loopSlider ul {
    height: 180px;
  }
  .loopSlider ul li {
    width: 160px;
    height: 120px;
    padding: 0 20px;
  }
}

/* ------effectItem----- */
.effectItem .effectItemInner {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.effectItem a img:hover {
  opacity: 1;
}

.effectItem .img {
  position: relative;
  border-radius: 50%;
}

.effectItem .img:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
}

.effectItem .info {
  opacity: 0;
  transform: scale(0);
  transition: all 0.35s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.effectItem .info p:first-child {
  color: #fff;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  font-size: 2rem;
  margin: 0 3rem;
  padding: 5rem 0 1rem;
  text-shadow: 0 0 1px white, 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.effectItem .info p + p {
  color: #444;
  padding: 0;
  margin: 1rem 5rem;
  font-size: 1.2rem;
  transition: all 0.35s ease-in-out;
  background: #fff;
  border-radius: 10px;
}

@media only screen and (max-width: 480px) {
  .effectItem .info p:first-child {
    font-size: 1.2rem;
    margin: 0 2rem;
    padding: 3rem 0 1rem;
  }
  .effectItem .info p + p {
    margin: 1rem 3rem;
    font-size: 1rem;
  }
}

.effectItem:hover .img:before {
  box-shadow: inset 0 0 0 110px rgba(0, 0, 0, 0.6);
}

.effectItem:hover .info {
  opacity: 1;
  transform: scale(1);
}

.effectItem:hover .info p {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .img.active + .info {
    opacity: 1;
    transform: scale(1);
  }
  .img.active + .info p {
    opacity: 1;
  }
}

#newsArea {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #newsArea {
    display: block;
    padding: 0;
  }
}

#newsArea > div {
  width: 46%;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #newsArea > div {
    width: 100%;
    padding: 12.5% 0 16%;
  }
}

@media only screen and (max-width: 768px) {
  #newsArea > div:last-of-type {
    padding-bottom: 0;
  }
}

#cont05 {
  display: flex;
  flex-direction: column;
}

#cont05 h2 {
  color: #444;
}

#cont05 h2:before {
  content: "News";
  color: #444;
}

#cont05 h2 span {
  color: #444;
}

#cont05 iframe {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #cont06 {
    padding-right: 10.4%;
    padding-left: 10.4%;
    background: #f6f6f6;
  }
  #cont06 .fbBox {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 10%;
  }
}

#cont06 h2 {
  color: #444;
}

#cont06 h2:before {
  content: "Facebook";
  color: #444;
}

#cont06 h2 span {
  color: #444;
}

#cont06 p {
  text-align: center;
  position: relative;
}

#cont06 .fb_iframe_widget,
#cont06 .fb_iframe_widget span,
#cont06 .fb_iframe_widget iframe[style] {
  width: 100% !important;
}

#cont06-2 h2 {
  color: #444;
}

#cont06-2 h2:before {
  content: "Instagram";
  color: #444;
}

#cont06-2 h2 span {
  color: #444;
}

#cont06-2 .ttl01 {
  color: #444;
}

.filterBox02 > a {
  display: block;
  width: 25%;
  float: left;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .filterBox02 > a {
    width: 50%;
  }
}

@media only screen and (max-width: 480px) {
  .filterBox02 .btn span {
    font-size: 1rem;
  }
}

#cont07 {
  padding: 5% 10% 10%;
}

#cont07:before {
  background-image: url(../../common/img/company/bg_tit_01.jpg);
  background-position: 50% 30%;
  margin-left: -10%;
}

#cont07:after {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#cont07 h2:before {
  content: "Company";
}

#cont08 {
  padding: 5% 10% 10%;
}

#cont08:before {
  background-image: url(../../common/img/company/bg_tit_02.jpg);
  background-position: 50% 30%;
  margin-left: -10%;
}

#cont08:after {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#cont08 h2:before {
  content: "Recruit";
}

#cont09 {
  padding: 5% 10% 10%;
}

#cont09:before {
  background-image: url(../../common/img/contact/bg_tit_01.jpg);
  background-position: 50% 30%;
  margin-left: -10%;
}

#cont09:after {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#cont09 h2:before {
  content: "Contact";
}

#cont10 {
  padding: 5% 10% 10%;
}

#cont10:before {
  background-image: url(../../img/bg_tit_shop.jpg);
  background-position: 50% 30%;
  margin-left: -10%;
}

#cont10:after {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}

#cont10 h2:before {
  content: "Online Shop";
  font-size: 4.8rem;
  line-height: 2.25;
}

@media only screen and (max-width: 1280px) {
  #cont10 h2:before {
    content: "Online";
  }
}

@media only screen and (max-width: 768px) {
  #cont10 h2:before {
    content: "Online Shop";
    font-size: 4.1rem;
    line-height: 2.14;
  }
}

@media only screen and (max-width: 480px) {
  #cont10 h2 {
    font-size: 1.6rem;
  }
  #cont10 h2:before {
    font-size: 2.8rem;
    line-height: 2.28;
  }
}

@media only screen and (max-width: 320px) {
  #cont10 h2 {
    font-size: 1.4rem;
  }
  #cont10 h2:before {
    font-size: 2.5rem;
    line-height: 2.65;
  }
}

#cont11 {
  text-align: center;
  padding: 80px 0 100px;
}

@media only screen and (max-width: 768px) {
  #cont11 {
    padding: 0 0 10%;
    margin-top: -7.5%;
  }
}

#anchorList {
  border-bottom: 1px solid #eee;
}

#anchorList ul {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  #anchorList ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

#anchorList li {
  position: relative;
  text-align: center;
}

@media only screen and (min-width: 1025px) {
  #anchorList li {
    padding: 15px 35px;
  }
}

@media only screen and (max-width: 1024px) {
  #anchorList li {
    width: 50%;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
  }
  #anchorList li:last-child {
    border-bottom: 0;
  }
  #anchorList li.border-bottom {
    border-bottom: 1px solid #eee;
  }
}

#anchorList li + li:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #ccc;
  content: "";
}

@media only screen and (max-width: 1024px) {
  #anchorList li:nth-child(odd):before {
    content: none;
  }
}

@media only screen and (max-width: 1024px) {
  #anchorList li:after {
    position: absolute;
    content: "";
    background: url(../img/ico_arrowUnder.png) left center no-repeat;
    top: 50%;
    left: 5%;
    width: 11px;
    height: 6px;
    transform: translateY(-50%);
  }
}

@media only screen and (min-width: 1025px) {
  #anchorList a {
    padding-left: 20px;
    background: url(../img/ico_arrowUnder.png) left center no-repeat;
  }
}

@media only screen and (max-width: 1024px) {
  #anchorList a {
    padding: 20px 10px 30px 50px;
    width: 100%;
    display: block;
    text-align: left;
  }
}

@media only screen and (max-width: 640px) {
  #anchorList a {
    padding: 10% 0 10% 30px;
  }
}

#anchorList a:hover {
  text-decoration: underline;
}

.top-twitter {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .top-twitter {
    max-width: 500px;
    padding: 0 10%;
    margin-right: auto;
    margin-left: auto;
  }
}

.instagram__container {
  padding: 80px 0 100px;
}

@media (max-width: 768px) {
  .instagram__container {
    padding: 30px 0 16%;
    background-color: #f7f7f7;
  }
}

#instagram-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  #instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75vw;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 10%;
  }
}

#instagram-gallery li:nth-of-type(6) {
  display: none;
}

@media (max-width: 768px) {
  #instagram-gallery li:nth-of-type(6) {
    display: block;
  }
}

#instagram-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.company #lowerTitle {
  margin-bottom: 0;
  background-image: url(../../company/img/bg_main_company.jpg);
}

.company #lowerTitle .ttl01:before {
  content: 'Company';
}

.company section {
  padding: 80px 0;
}

@media only screen and (max-width: 768px) {
  .company section {
    padding: 12% 0;
  }
}

.company section:last-child {
  padding-bottom: 0;
}

.company section table {
  width: 100%;
  margin-bottom: 30px;
}

.company section table tr {
  border-top: 1px solid #eee;
}

.company section table th,
.company section table td {
  padding: 15px 20px;
  font-weight: normal;
  vertical-align: top;
}

@media only screen and (max-width: 480px) {
  .company section table th,
  .company section table td {
    display: block;
    width: 100%;
    padding: 12px 10px;
  }
}

@media only screen and (min-width: 1025px) {
  .company section table th {
    width: 210px;
  }
}

@media only screen and (max-width: 480px) {
  .company section table th {
    padding-bottom: 0;
    font-weight: bold;
  }
  .company section table td a {
    word-break: break-all;
  }
}

.company section .disc li + li {
  margin-top: 15px;
}

@media only screen and (max-width: 480px) {
  .company section .disc li + li {
    margin-top: 10px;
  }
}

.company #concept .logo {
  width: 284px;
  margin: 0 auto 50px;
}

@media only screen and (max-width: 768px) {
  .company #concept .logo {
    width: 60%;
    margin-bottom: 30px;
  }
}

.company #concept h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .company #concept h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.company #concept p + h3 {
  margin-top: 35px;
}

@media only screen and (max-width: 768px) {
  .company #concept p + h3 {
    margin-top: 25px;
  }
}

.company #greeting .content {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 480px) {
  .company #greeting .content {
    display: block;
  }
}

.company #greeting .content figure {
  width: 18%;
}

@media only screen and (max-width: 480px) {
  .company #greeting .content figure {
    width: 100%;
    text-align: center;
  }
}

.company #greeting .content figure figcaption {
  margin-top: 10px;
}

.company #greeting .content .txtArea {
  width: 79%;
}

@media only screen and (max-width: 480px) {
  .company #greeting .content .txtArea {
    width: 100%;
    margin-top: 20px;
  }
}

.company #greeting .content .txtArea p + p {
  margin-top: 15px;
}

.company #greeting .content .txtArea p:last-child {
  text-align: right;
}

.company #intro .commentList {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 640px) {
  .company #intro .commentList {
    display: block;
  }
}

.company #intro .commentList-role {
  display: block;
  font-size: 1.2rem;
  margin-top: 5px;
}

.company #intro li {
  flex-basis: 33.3%;
  max-width: 33.3%;
  padding: 0 10px;
  text-align: center;
}

.company #intro li + li + li + li {
  margin-top: 50px;
}

@media only screen and (max-width: 1024px) {
  .company #intro li {
    flex-basis: 50%;
    max-width: 50%;
  }
  .company #intro li + li + li {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 640px) {
  .company #intro li {
    flex-basis: 100%;
    max-width: 100%;
  }
  .company #intro li + li {
    margin-top: 50px;
  }
}

.company #intro figcaption {
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  .company #intro figure {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .company #intro img {
    width: 120px;
  }
  .company #intro figcaption {
    margin: 0 0 0 10px;
  }
}

.company #intro .comment {
  margin-top: 20px;
}

.company #vision {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .company #vision {
    font-size: 1.3rem;
  }
}

.company #vision .catch {
  font-size: 3.0rem;
}

@media only screen and (max-width: 768px) {
  .company #vision .catch {
    font-size: 2.0rem;
  }
}

@media only screen and (max-width: 320px) {
  .company #vision .catch {
    font-size: 1.7rem;
  }
}

.company #vision .logo {
  text-align: right;
  margin-right: 80px;
  color: #444;
  font-family: "Sawarabi Mincho", "a-otf-ud-reimin-pr6n", serif;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .company #vision .logo {
    margin-right: 0;
  }
}

.company #vision .logo span {
  font-size: 2.2rem;
  font-family: 'Tinos', serif;
}

.company #vision p + p {
  text-align: left;
  margin-top: 20px;
  margin-left: 85px;
}

@media only screen and (max-width: 768px) {
  .company #vision p + p {
    margin-top: 25px;
    margin-left: 0;
  }
}

.company #recruit .content > p {
  margin: 40px 0 70px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .company #recruit .content > p {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 480px) {
  .company #recruit .content > p {
    margin: 10% 0 12%;
    font-size: 1.4rem;
  }
}

.company #company .companyList {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.company #company li {
  width: 33.33%;
  padding: 0 20px;
}

.company #company li:nth-child(n + 4) {
  margin-top: 65px;
}

@media only screen and (max-width: 768px) {
  .company #company li {
    width: 50%;
    padding: 0 10px;
    font-size: 1.3rem;
  }
  .company #company li:nth-child(n + 3) {
    margin-top: 35px;
  }
}

.company #company a {
  display: block;
}

.company #company .logo {
  position: relative;
  height: 97px;
}

@media only screen and (max-width: 768px) {
  .company #company .logo {
    height: 70px;
  }
}

.company #company .logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.company #company p {
  margin-top: 17px;
}

.contact #lowerTitle {
  background-image: url(../../contact/img/bg_main_contact.jpg);
}

.contact #lowerTitle .ttl01:before {
  content: 'Contact';
}

.contact #contactStep {
  margin-bottom: 50px;
}

.contact #contactStep ol {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  max-width: 910px;
  margin: 0 auto;
  list-style-type: none;
}

.contact #contactStep li {
  width: 33.33%;
  padding: 15px 0;
  background: #f3f3f3;
  font-size: 1.6rem;
  text-align: center;
}

.contact #contactStep li.current {
  background: #333;
  color: #FFF;
}

.contact #contactStep li + li {
  border-left: 5px solid #FFF;
}

.contact input:text,
.contact textarea,
.contact button {
  border: 0;
  background: 0;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

.contact .formInput, .contact .formInput--sm {
  width: 100%;
  padding: 14px 10px;
  border: 1px solid #eee;
}

@media only screen and (max-width: 768px) {
  .contact .formInput, .contact .formInput--sm {
    padding: 10px;
    font-size: 1.6rem;
  }
}

.contact .formInput--sm {
  max-width: 130px;
}

.contact .formLayout .inputArea {
  margin-top: 10px;
}

.contact .formLayout .radioList {
  margin-top: 20px;
}

.contact .formLayout .radioList label:not(:last-child) {
  margin-right: 35px;
}

.contact .formLayout .radioList input {
  margin-right: 7px;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .contact .formLayout .radioList label {
    display: inline-block;
  }
}

.contact .formLayout span {
  margin-left: 15px;
  vertical-align: text-top;
}

.contact .formLayout .required {
  padding: 0 5px;
  border: 1px solid #c00;
  border-radius: 5px;
  color: #c00;
  font-size: 1.1rem;
}

.contact .formLayout .attention {
  margin-left: 30px;
  color: #999;
  font-size: 1.2rem;
}

@media only screen and (max-width: 768px) {
  .contact .formLayout .attention {
    display: block;
    margin-left: 0;
  }
}

.contact .formLayout + .formLayout {
  margin-top: 30px;
}

.contact-btn-area {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
}

@media only screen and (max-width: 768px) {
  .contact-btn-area {
    display: block;
    margin: 25px 0 0;
  }
}

.contact-btn-area__item {
  flex-basis: 250px;
  margin: 0;
}

.contact-btn-area__item + .contact-btn-area__item {
  margin-left: 25px;
}

@media only screen and (max-width: 768px) {
  .contact-btn-area__item + .contact-btn-area__item {
    margin: 20px 0 0 0;
  }
}

.contact-errors {
  margin: 20px 0 40px;
}

@media only screen and (max-width: 768px) {
  .contact-errors {
    margin: 15px 0 30px;
  }
}

.contact-txt-error {
  margin-bottom: 10px;
}

.contact-table {
  width: 100%;
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .contact-table {
    margin-top: 25px;
  }
  .contact-table tr + tr th {
    border-top: 0;
  }
}

.contact-table th,
.contact-table td {
  padding: 20px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}

@media only screen and (max-width: 768px) {
  .contact-table th,
  .contact-table td {
    display: block;
    width: 100%;
    padding: 10px;
  }
}

.contact-table th {
  background: #EEE;
}

@media only screen and (max-width: 768px) {
  .contact-table th {
    border-bottom: 0;
  }
}

.introduce #lowerTitle {
  margin-bottom: 0;
  background-image: url(../../introduce/img/bg_main_introduce.jpg);
  background-position: center 15%;
}

.introduce #lowerTitle .ttl01:before {
  content: 'Introduce';
}

.introduce .intro .boxCmnArrow {
  margin-top: 30px;
}

.introduce .voiceList {
  margin: 35px 0 48px;
}

@media (max-width: 600px) {
  .introduce .voiceList {
    margin: 25px 0 60px;
  }
}

.introduce-child.shop-salon #lowerTitle {
  background-image: url(../../introduce/img/shop_salon/bg_main_shop_salon.jpg);
}

.introduce-child.shop-salon .ttl01:before {
  content: "Shop Salon";
}

.introduce-child.office #lowerTitle {
  background-image: url(../../introduce/img/office/bg_main_office.jpg);
}

.introduce-child.office .ttl01:before {
  content: "Office";
}

.introduce-child.hotel #lowerTitle {
  background-image: url(../../introduce/img/hotel/bg_main_hotel.jpg);
}

.introduce-child.hotel .ttl01:before {
  content: "Hotel";
}

.introduce-child.fitness_yoga #lowerTitle {
  background-image: url(../../introduce/img/yoga/bg_main_yoga.jpg);
}

.introduce-child.fitness_yoga .ttl01:before {
  content: "Fitness Yoga";
}

.introduce-child.wedding_restaurant #lowerTitle {
  background-image: url(../../introduce/img/wedding/bg_main_wedding.jpg);
}

.introduce-child.wedding_restaurant .ttl01:before {
  content: "Wedding Restaurant";
}

.introduce-child.medical #lowerTitle {
  background-image: url(../../introduce/img/medical/bg_main_medical.jpg);
}

.introduce-child.medical .ttl01:before {
  content: "Medical Facilities";
}

.introduce-child.spa_facilities #lowerTitle {
  background-image: url(../../introduce/img/spa/bg_main_spa.jpg);
}

.introduce-child.spa_facilities .ttl01:before {
  content: "Spa Facilities";
}

.introduce-child.pet #lowerTitle {
  background-image: url(../../introduce/img/pet/bg_main_pet.jpg);
}

.introduce-child.pet .ttl01:before {
  content: "Pet";
}

.introduce-child-cmn-box {
  padding: 70px 0 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.introduce-child-cmn-box--02 {
  background-image: url(../../introduce/img/bg_cmn_introduce-child-sale.jpg);
}

@media only screen and (max-width: 768px) {
  .introduce-child-cmn-box {
    padding: 10% 0 15%;
  }
}

.introduce-child-cmn-box__ttl {
  margin-bottom: 70px;
  color: #fff;
  font-size: 3rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .introduce-child-cmn-box__ttl {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }
}

.introduce-child-cmn-box:nth-child(n+2) {
  margin-top: 1px;
}

.listProduct-introduce-child {
  margin-top: 0;
  justify-content: flex-start;
}

.listProduct-introduce-child--one {
  justify-content: center;
}

.listProduct-introduce-child li {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  .listProduct-introduce-child li:nth-child(2n) {
    margin-left: 3%;
  }
}

@media only screen and (min-width: 640px) {
  .listProduct-introduce-child li:nth-child(n+4) {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 640px) {
  .listProduct-introduce-child li:nth-child(n+3) {
    margin-top: 12.5%;
  }
}

.listProduct-introduce-child .ttl {
  color: #000;
}

.listProduct-introduce-child-mod {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: rgba(255, 255, 255, 0.6);
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .listProduct-introduce-child-mod {
    padding: 10% 20px;
    margin: 0 5%;
  }
}

.listProduct-introduce-child-mod.product-sale {
  padding-top: 80px;
  padding-bottom: 30px;
}

.listProduct-introduce-child__note {
  margin: 40px 0 0 20px;
}

.listProduct-introduce-child__note li {
  text-indent: -1em;
  padding-left: 1em;
}

@media only screen and (max-width: 768px) {
  .listProduct-introduce-child__note {
    margin: 10% 0 0;
  }
}

.page01-01 {
  background-image: url(../../introduce/img/shop_salon/bg_shop_01.jpg);
}

.page01-02 {
  background-image: url(../../introduce/img/shop_salon/bg_shop_02.jpg);
}

.page01-03 {
  background-image: url(../../introduce/img/shop_salon/bg_shop_03.jpg);
}

.page01-04 {
  background-image: url(../../introduce/img/shop_salon/bg_shop_04.jpg);
}

.page01-05 {
  background-image: url(../../introduce/img/shop_salon/bg_shop_05.jpg);
}

.page01-06 {
  background-image: url(../../introduce/img/shop_salon/bg_shop_06.jpg);
}

@media only screen and (max-width: 640px) {
  .page01-06 {
    background-position: left 22% center;
  }
}

.page02-01 {
  background-image: url(../../introduce/img/office/bg_office_01.jpg);
}

.page02-02 {
  background-image: url(../../introduce/img/office/bg_office_02.jpg);
}

.page02-03 {
  background-image: url(../../introduce/img/office/bg_office_03.jpg);
}

.page02-04 {
  background-image: url(../../introduce/img/office/bg_office_04.jpg);
}

.page02-05 {
  background-image: url(../../introduce/img/office/bg_office_05.jpg);
}

.page03-01 {
  background-image: url(../../introduce/img/hotel/bg_hotel_01.jpg);
}

.page03-02 {
  background-image: url(../../introduce/img/hotel/bg_hotel_02.jpg);
}

.page03-03 {
  background-image: url(../../introduce/img/hotel/bg_hotel_03.jpg);
}

.page03-04 {
  background-image: url(../../introduce/img/hotel/bg_hotel_04.jpg);
}

.page03-05 {
  background-image: url(../../introduce/img/hotel/bg_hotel_05.jpg);
}

.page04-01 {
  background-image: url(../../introduce/img/yoga/bg_yoga_01.jpg);
}

.page04-02 {
  background-image: url(../../introduce/img/yoga/bg_yoga_02.jpg);
}

.page04-03 {
  background-image: url(../../introduce/img/yoga/bg_yoga_03.jpg);
}

.page04-04 {
  background-image: url(../../introduce/img/yoga/bg_yoga_04.jpg);
}

.page04-05 {
  background-image: url(../../introduce/img/yoga/bg_yoga_05.jpg);
}

.page04-06 {
  background-image: url(../../introduce/img/yoga/bg_yoga_06.jpg);
}

.page05-01 {
  background-image: url(../../introduce/img/wedding/bg_wedding_01.jpg);
}

.page05-02 {
  background-image: url(../../introduce/img/wedding/bg_wedding_02.jpg);
}

.page05-03 {
  background-image: url(../../introduce/img/wedding/bg_wedding_03.jpg);
}

.page05-04 {
  background-image: url(../../introduce/img/wedding/bg_wedding_04.jpg);
}

.page05-05 {
  background-image: url(../../introduce/img/wedding/bg_wedding_05.jpg);
}

.page05-06 {
  background-image: url(../../introduce/img/wedding/bg_wedding_06.jpg);
}

.page06-01 {
  background-image: url(../../introduce/img/medical/bg_medical_01.jpg);
}

.page06-02 {
  background-image: url(../../introduce/img/medical/bg_medical_02.jpg);
}

.page06-03 {
  background-image: url(../../introduce/img/medical/bg_medical_03.jpg);
}

.page07-01 {
  background-image: url(../../introduce/img/spa/bg_spa_01.jpg);
}

.page07-02 {
  background-image: url(../../introduce/img/spa/bg_spa_02.jpg);
}

.page07-03 {
  background-image: url(../../introduce/img/spa/bg_spa_03.jpg);
}

.page07-04 {
  background-image: url(../../introduce/img/spa/bg_spa_04.jpg);
}

.page07-05 {
  background-image: url(../../introduce/img/spa/bg_spa_05.jpg);
}

.page08-01 {
  background-image: url(../../introduce/img/pet/bg_pet_01.jpg);
}

@media only screen and (max-width: 640px) {
  .page08-01 {
    background-position: center right 59%;
  }
}

.page08-02 {
  background-image: url(../../introduce/img/pet/bg_pet_02.jpg);
  background-position: center top 10%;
}

@media only screen and (max-width: 640px) {
  .page08-02 {
    background-position: center left 67%;
  }
}

.page08-03 {
  background-image: url(../../introduce/img/pet/bg_pet_03.jpg);
}

@media only screen and (max-width: 640px) {
  .page08-03 {
    background-position: center right 15%;
  }
}

.page08-04 {
  background-image: url(../../introduce/img/pet/bg_pet_04.jpg);
}

.error #lowerTitle {
  background-image: url(../../sitemap/img/bg_main_sitemap.jpg);
}

.error #lowerTitle .ttl01:before {
  content: '404 NOT FOUND';
}

.privacy #lowerTitle {
  background-image: url(../../privacypolicy/img/bg_main_privacy.jpg);
}

.privacy #lowerTitle .ttl01:before {
  content: 'Privacy Policy';
}

.privacy main dl dt {
  font-size: 1.6rem;
  margin-top: 35px;
}

.privacy main dl dd {
  margin-top: 5px;
  font-size: 1.4rem;
}

.privacy main ul.disc {
  margin-top: 15px;
}

.siteMap #lowerTitle {
  background-image: url(../../sitemap/img/bg_main_sitemap.jpg);
}

.siteMap #lowerTitle .ttl01:before {
  content: 'Site Map';
}

.siteMap main .content {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .siteMap main .content {
    display: block;
  }
}

.siteMap main .content a:hover {
  text-decoration: underline;
}

.siteMap main .content > div {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .siteMap main .content > div {
    width: 100%;
  }
}

.siteMap main .content > div + div {
  width: 50%;
  padding-left: 10%;
}

@media only screen and (max-width: 768px) {
  .siteMap main .content > div + div {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}

.siteMap main p + p {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .siteMap main p + p {
    margin-top: 20px;
  }
}

.siteMap main p a {
  padding-left: 15px;
  background: url(../img/ico_arrowLeft.png) left center no-repeat;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .siteMap main p a {
    font-size: 1.6rem;
  }
}

.siteMap main li + li {
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .siteMap main li + li {
    margin-top: 10px;
  }
}

.siteMap main li a {
  padding-left: 14px;
  background: url(../img/ico_arrowLeft_small.png) left center no-repeat;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .siteMap main li a {
    font-size: 1.3rem;
  }
}

.siteMap main ul {
  margin-top: 35px;
  padding-left: 20px;
}

@media only screen and (max-width: 768px) {
  .siteMap main ul {
    margin-top: 20px;
    padding-left: 10px;
  }
}

.siteMap main ul ul {
  margin-bottom: 50px;
  padding-left: 35px;
}

@media only screen and (max-width: 768px) {
  .siteMap main ul ul {
    margin-bottom: 30px;
    padding-left: 10px;
  }
}

.siteMap main ul ul li + li {
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .siteMap main ul ul li + li {
    margin-top: 7px;
  }
}

.siteMap main ul + p {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .siteMap main ul + p {
    margin-top: 35px;
  }
}

.news #lowerTitle {
  background-image: url(../../news/img/bg_main_news.jpg);
}

.news #lowerTitle .ttl01:before {
  content: 'News';
}

.news .newsList .category {
  float: none;
}

.news .newsList th,
.news .newsList td {
  padding: 15px 0;
  vertical-align: top;
}

@media only screen and (max-width: 768px) {
  .news .newsList th,
  .news .newsList td {
    display: block;
  }
}

.news .newsList td {
  padding-left: 15px;
  word-break: break-all;
}

@media only screen and (max-width: 768px) {
  .news .newsList td {
    padding-left: 0;
    padding-top: 0;
  }
}

.news .newsList td p + p,
.news .newsList td p + div {
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .news .newsList td p + p,
  .news .newsList td p + div {
    margin-top: 10px;
  }
}

.news-content img {
  float: right;
  width: 400px;
  margin: 0 0 20px 20px;
}

@media only screen and (max-width: 768px) {
  .news-content img {
    float: none;
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.voice #lowerTitle {
  background-image: url(../../voice/img/bg_main_voice.jpg);
}

.voice #lowerTitle .ttl01:before {
  content: 'Voice';
}

.products #lowerTitle {
  background-image: url(../../product/img/bg_main_product.jpg);
}

.products #lowerTitle .ttl01:before {
  content: 'Product';
}

.products.oil-child #lowerTitle {
  background-image: url(../../product/oil/img/bg_main_product.jpg);
}

.products.list main {
  position: relative;
}

@media only screen and (max-width: 640px) {
  .products.list footer {
    margin-top: 0;
  }
}

.product-main {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .product-main {
    display: block;
  }
}

.product-info {
  flex-basis: 41.5%;
}

@media only screen and (max-width: 1024px) {
  .product-info {
    flex-basis: 48%;
  }
}

.product-ttl {
  text-align: center;
}

.product-ttl span {
  display: block;
}

.product-ttl__sub-en {
  font-size: 1.6rem;
  font-family: "Sawarabi Mincho";
}

@media only screen and (max-width: 1024px) {
  .product-ttl__sub-en {
    font-size: 1.4rem;
  }
}

.product-ttl__main, .product-ttl__main--sm {
  font-size: 6.0rem;
  font-family: 'Tinos', serif;
  line-height: 1.2;
}

@media only screen and (max-width: 1024px) {
  .product-ttl__main, .product-ttl__main--sm {
    font-size: 4.0rem;
  }
}

.product-ttl__main--sm {
  font-size: 5.0rem;
}

@media only screen and (max-width: 1024px) {
  .product-ttl__main--sm {
    font-size: 4.0rem;
  }
}

.product-ttl__main--sm span {
  font-size: 4.4rem;
}

@media only screen and (max-width: 1024px) {
  .product-ttl__main--sm span {
    font-size: 3.4rem;
  }
}

.product-ttl__sub-jp {
  font-size: 1.4rem;
}

@media only screen and (max-width: 1024px) {
  .product-ttl__sub-jp {
    font-size: 1.2rem;
  }
}

.product-ttl__jp {
  margin: 15px 0 50px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 2.8rem;
  font-family: "Sawarabi Mincho", "a-otf-ud-reimin-pr6n", serif;
  line-height: 1.4;
  padding: 5px 0;
}

@media only screen and (max-width: 1024px) {
  .product-ttl__jp {
    margin: 10px 0 30px;
    font-size: 2.0rem;
  }
}

@media only screen and (max-width: 640px) {
  .product-ttl__jp {
    margin: 10px 0 20px;
  }
}

.product-img {
  flex-basis: 42.7%;
  max-width: 410px;
}

@media only screen and (max-width: 1024px) {
  .product-img {
    flex-basis: 48%;
  }
}

@media only screen and (max-width: 640px) {
  .product-img {
    margin-top: 30px;
  }
}

.product-img-view {
  position: relative;
  width: 410px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .product-img-view {
    width: 100%;
  }
}

.product-img-view:before {
  display: block;
  padding-bottom: 100%;
  content: '';
}

.product-img-view img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.product-img-thumb {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.product-img-thumb__child {
  flex-basis: 12.3%;
  margin-top: 10px;
  margin-right: 2.3%;
  cursor: pointer;
}

.product-img-thumb__child:hover {
  opacity: .7;
}

.product-img-thumb__child:nth-child(7n) {
  margin-right: 0;
}

@media only screen and (max-width: 640px) {
  .product-img-thumb__child {
    flex-basis: 22%;
    margin-right: 4%;
  }
  .product-img-thumb__child:nth-child(4n) {
    margin-right: 0;
  }
}

.product-pr-list {
  display: inline-block;
}

.product-pr-list li + li {
  margin-top: 20px;
}

@media only screen and (max-width: 640px) {
  .product-pr-list li {
    text-align: center;
  }
  .product-pr-list .block-radius {
    display: block;
    max-width: 100px;
    margin: 0 auto 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .oil #lowerTitle {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) {
  .oil .section-cmn-02:first-child {
    padding: 0 0 80px;
  }
}

@media only screen and (max-width: 1024px) {
  .oil .listBtnTab {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .oil .btnOuter {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    width: 1000px;
  }
}

.oil .btnOuter .btn {
  margin: 0 auto;
}

@media only screen and (min-width: 1025px) {
  .oil .btnOuter .btn {
    margin-left: auto;
    margin-right: auto;
    flex-basis: 420px;
    max-width: 420px;
  }
}

@media only screen and (max-width: 1024px) {
  .oil .btnOuter .btn:last-child {
    margin-top: 20px;
  }
}

.oil h3 {
  margin: 50px 0 10px;
  font-size: 1.6rem;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .oil h3 {
    font-size: 1.4rem;
  }
}

.oil figure {
  width: 43%;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .oil figure {
    width: 100%;
  }
}

.oil figure figcaption {
  text-align: right;
  font-size: 1.1rem;
  color: #888;
  margin-top: 2px;
}

.oil .measurement dt {
  margin: 40px 0 15px;
}

@media only screen and (max-width: 640px) {
  .oil .measurement dt {
    margin: 30px 0 15px;
  }
}

.oil .measurement dd {
  margin: 0 10px;
  display: inline-block;
}

.oil .font-big {
  font-size: 3rem;
}

@media only screen and (max-width: 640px) {
  .oil .font-big {
    font-size: 2rem;
  }
}

.oil .analysisNumber {
  margin-top: 30px;
  color: #888;
  font-size: 1.2rem;
}

.oil-child.fragrance #lowerTitle .ttl01:before {
  content: 'fragrance';
}

.oil-child.secne #lowerTitle .ttl01:before {
  content: 'secne';
}

.oil.oil-child h3 {
  margin: 0;
}

.oil.oil-child #lowerTitle {
  background-image: url(../../product/oil/img/bg_main_product.jpg);
}

.oil.oil-child #lowerTitle .ttl01:before {
  content: 'fragrance';
}

@media only screen and (min-width: 769px) {
  #anchorList.round-anchorList {
    margin-bottom: 60px;
    border-bottom: none;
  }
  #anchorList.round-anchorList .round-anchorList--2row {
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  #anchorList.round-anchorList ul {
    justify-content: center;
  }
  #anchorList.round-anchorList .round-anchorList__items {
    background: #f3f3f3;
    border-radius: 50%;
    padding: 0;
    width: 140px;
    height: 140px;
    display: table;
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0 25px 20px;
  }
  #anchorList.round-anchorList .round-anchorList__items + .round-anchorList__items:before {
    content: none;
  }
  #anchorList.round-anchorList .round-anchorList__items a {
    padding: 78px 0 0 0;
    display: table-cell;
  }
  #anchorList.round-anchorList .round-anchorList__items a:hover {
    text-decoration: none;
  }
  #anchorList.round-anchorList .round-anchorList__items a.flower {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/fragrance/img/ico_fragrance_anchor_01.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.green {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/fragrance/img/ico_fragrance_anchor_02.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.wood {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/fragrance/img/ico_fragrance_anchor_03.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.citrus {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/fragrance/img/ico_fragrance_anchor_04.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.time {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/scene/img/ico_scene_anchor_01.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.refresh {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/scene/img/ico_scene_anchor_02.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.power {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/scene/img/ico_scene_anchor_03.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.pet {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/scene/img/ico_scene_anchor_04.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.enjoy {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/scene/img/ico_scene_anchor_05.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.clean {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../product/oil/scene/img/ico_scene_anchor_06.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-apareru {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_01.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-zakka {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_02.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-salon {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_03.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-cafe {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_04.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-car {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_05.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-pet {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_06.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-buppan {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_07.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-elevator {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_08.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-ousetsu {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_09.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-kaigishitsu {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_10.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-office {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_11.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-rest {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_12.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-entrance {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_13.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-rouka {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_14.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-wedding {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_15.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-gestroom {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_16.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-ofuro {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_17.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-shoes {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_18.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-hanger {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_19.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-break {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_20.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-sauna {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_21.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-studio {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_22.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-reception {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_23.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-dress {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_24.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-restaurant {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_25.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-gift {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_26.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-waiting {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_27.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-hospital-room {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_28.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-genkan {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_29.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-shop {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_30.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-animal-hospital {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_31.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-pet-hotel {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_32.png) bottom 78px center no-repeat;
  }
  #anchorList.round-anchorList .round-anchorList__items a.ico-shisetsu {
    background: url(../img/ico_arrowUnder_large.png) bottom 13px center no-repeat, url(../../introduce/img/ico_anchor_33.png) bottom 78px center no-repeat;
  }
}

@media only screen and (min-width: 769px) and (max-width: 768px) {
  #anchorList.round-anchorList .round-anchorList__items:after {
    content: none;
  }
}

@media only screen and (min-width: 769px) {
  #anchorList.round-anchorList ul + ul {
    margin-top: 30px;
  }
}

.sec-oil-header {
  background-position: 0 center;
  background-repeat: no-repeat;
  background-color: #fbfbfb;
}

@media only screen and (min-width: 1025px) {
  .sec-oil-header {
    background-size: 60%;
  }
}

@media only screen and (max-width: 1024px) {
  .sec-oil-header {
    background-size: contain;
  }
}

@media only screen and (min-width: 769px) {
  .sec-oil-header {
    padding: 129px 0 70px;
  }
}

@media only screen and (max-width: 768px) {
  .sec-oil-header {
    padding-top: 38.6vw;
    position: relative;
    color: #fff;
  }
}

@media only screen and (min-width: 769px) {
  .sec-oil-header__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.sec-oil-header--flower {
  background-image: url(../../product/oil/fragrance/img/bg_fragrance_tit_01.jpg);
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--flower .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(246, 142, 159, 0.6) 38%, rgba(253, 214, 189, 0.6));
  }
}

.sec-oil-header--green {
  background-image: url(../../product/oil/fragrance/img/bg_fragrance_tit_02.jpg);
  background-position: 100% center;
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--green .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(76, 165, 90, 0.6) 38%, rgba(155, 225, 93, 0.6));
  }
}

.sec-oil-header--wood {
  background-image: url(../../product/oil/fragrance/img/bg_fragrance_tit_03.jpg);
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--wood .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(167, 95, 10, 0.6) 38%, rgba(245, 171, 64, 0.6));
  }
}

.sec-oil-header--citrus {
  background-image: url(../../product/oil/fragrance/img/bg_fragrance_tit_04.jpg);
  background-position: 100% center;
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--citrus .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(238, 100, 62, 0.6) 38%, rgba(247, 213, 25, 0.6));
  }
}

.sec-oil-header--time {
  background-image: url(../../product/oil/scene/img/bg_scene_tit_01.jpg);
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--time .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(235, 194, 129, 0.6) 38%, rgba(255, 126, 0, 0.6));
  }
}

.sec-oil-header--refresh {
  background-image: url(../../product/oil/scene/img/bg_scene_tit_02.jpg);
  background-position: 100% center;
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--refresh .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(148, 224, 115, 0.6) 38%, rgba(67, 190, 25, 0.6));
  }
}

.sec-oil-header--power {
  background-image: url(../../product/oil/scene/img/bg_scene_tit_03.jpg);
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--power .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(97, 205, 235, 0.6) 38%, rgba(13, 123, 207, 0.6));
  }
}

.sec-oil-header--pet {
  background-image: url(../../product/oil/scene/img/bg_scene_tit_04.jpg);
  background-position: 100% center;
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--pet .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(246, 197, 166, 0.6) 38%, rgba(224, 120, 137, 0.6));
  }
}

.sec-oil-header--enjoy {
  background-image: url(../../product/oil/scene/img/bg_scene_tit_05.jpg);
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--enjoy .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(231, 194, 18, 0.6) 38%, rgba(250, 123, 87, 0.6));
  }
}

.sec-oil-header--clean {
  background-image: url(../../product/oil/scene/img/bg_scene_tit_06.jpg);
  background-position: 100% center;
}

@media only screen and (max-width: 768px) {
  .sec-oil-header--clean .sec-oil-header__ttl {
    background: radial-gradient(50% 50%, circle, rgba(96, 212, 148, 0.6) 38%, rgba(21, 133, 156, 0.6));
  }
}

@media only screen and (min-width: 769px) {
  .sec-oil-header__ttl {
    width: 47%;
  }
}

@media only screen and (max-width: 768px) {
  .sec-oil-header__ttl {
    font-family: "Sawarabi Mincho", "a-otf-ud-reimin-pr6n", serif;
    width: 74vw;
    position: absolute;
    padding: 7.2vw 3.3vw 7.2vw;
    top: 25vw;
    font-size: 4.3vw;
    line-height: 1.2;
  }
}

.sec-oil-header__ttl--right {
  margin-left: auto;
}

@media only screen and (min-width: 769px) {
  .sec-oil-header__ttl--right {
    text-align: right;
  }
}

@media only screen and (max-width: 768px) {
  .sec-oil-header__ttl--right {
    right: 3.6vw;
    text-align: left;
  }
}

.sec-oil-header__ttl--left {
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .sec-oil-header__ttl--left {
    left: 3.6vw;
  }
}

@media only screen and (min-width: 769px) {
  .sec-oil-header__ttl--left {
    text-align: left;
  }
}

.sec-oil-category {
  display: block;
  font-family: 'Tinos', serif;
}

@media only screen and (max-width: 768px) {
  .sec-oil-category {
    margin-bottom: 4vw;
    font-size: 8.9vw;
    line-height: 1;
  }
}

@media only screen and (max-width: 768px) {
  .sec-oil-category {
    font-size: 7vw;
  }
}

.sec-oil-body {
  padding: 80px 0 100px;
}

@media only screen and (max-width: 768px) {
  .sec-oil-body {
    padding: 33vw 0 12%;
  }
}

.sec-oil-body__ttl {
  margin-bottom: 80px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .sec-oil-body__ttl {
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 640px) {
  .sec-oil-list {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.sec-oil-list__items {
  position: relative;
  padding-bottom: 30px;
  flex-basis: 46%;
}

@media only screen and (max-width: 640px) {
  .sec-oil-list__items {
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 640px) {
  .sec-oil-list__items:nth-child(n+3) {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 640px) {
  .sec-oil-list__items:nth-child(n+2) {
    margin-top: 15px;
  }
}

.sec-oil-list__items:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

.sec-oil-list__items--pink:after {
  background: radial-gradient(49% 50%, circle, #f68e9f 0%, #fdd6bd 49%, #fdd6bd 98%);
}

.sec-oil-list__items--green:after {
  background: radial-gradient(50% 54%, circle, #4ca55a 0%, #9be15d 96%);
}

.sec-oil-list__items--wood:after {
  background: radial-gradient(50% 54%, circle, #a75f0a 0%, #f5ab40 96%);
}

.sec-oil-list__items--citrus:after {
  background: radial-gradient(50% 54%, circle, #ee643e 0%, #f7d519 96%);
}

.sec-oil-list__items--time:after {
  background: radial-gradient(50% 54%, circle, #ff7e00 0%, #ebc281 96%);
}

.sec-oil-list__items--refresh:after {
  background: radial-gradient(50% 54%, circle, #43be19 0%, #94e073 73%);
}

.sec-oil-list__items--power:after {
  background: radial-gradient(50% 54%, circle, #0d7bcf, #61cdeb);
}

.sec-oil-list__items--pet:after {
  background: radial-gradient(50% 54%, circle, #e07889, #f6c5a6);
}

.sec-oil-list__items--enjoy:after {
  background: radial-gradient(50% 54%, circle, #fa7b57, #e7c212);
}

.sec-oil-list__items--clean:after {
  background: radial-gradient(50% 54%, circle, #15859c, #60d494);
}

.sec-oil-list__txt {
  margin-top: 10px;
}

@media only screen and (min-width: 768px) {
  .sec-oil-list__txt {
    line-height: 2;
  }
}

.blend-name {
  font-size: 2rem;
  display: block;
}

.voiceList {
  width: 100%;
}

@media (min-width: 601px) {
  .voiceList {
    border-top: 1px dotted #aaa;
  }
}

.voiceList .category {
  margin: 0 0 3px 1rem;
  padding: 2px 7px;
  border-radius: 6rem;
  background: #444;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
}

@media (min-width: 601px) {
  .voiceList tr {
    border-bottom: 1px dotted #aaa;
  }
}

@media (max-width: 600px) {
  .voiceList tr:last-of-type td {
    padding-bottom: 0;
  }
}

.voiceList td {
  padding: 40px 0;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .voiceList td {
    display: block;
    padding: 0 10px 60px;
  }
}

.voiceList + .btnOuter {
  margin-bottom: 90px;
}

@media (max-width: 600px) {
  .voiceList + .btnOuter {
    width: 100%;
    margin-bottom: 70px;
    padding: 0;
  }
}

.voice-logo {
  width: 202px;
  padding-block: 40px;
  vertical-align: top;
}

@media (max-width: 600px) {
  .voice-logo {
    display: block;
    width: 100%;
    padding: 0 0 26px;
  }
}

.voice-logo img {
  border: 1px solid #dedede;
}

@media (max-width: 600px) {
  .voice-logo img {
    width: 100%;
    border-color: #bebebe;
  }
}

.voice-company {
  margin-bottom: 10px;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .voice-company {
    font-size: 1.6rem;
  }
}

.voice-facility {
  display: flex;
}

.voice-facility__term {
  flex-shrink: 0;
}

.voice-facility__name {
  display: inline-block;
}

@media (max-width: 600px) {
  .voice-facility__name {
    display: block;
  }
}

.voice-facility__link {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .voice-facility__link {
    display: block;
  }
}

.voice-facility__tabBreak {
  display: none;
}

@media (max-width: 768px) and (min-width: 601px) {
  .voice-facility__tabBreak {
    display: inline;
  }
}

/*# sourceMappingURL=style.css.map */
