@charset "UTF-8";


/*
  ##### ZENDURE #####

  [Base]
  - Reset
  - Init
  [Layout]
  - Container
  - Header
  - Content
  - Footer
  [Module]

*/
/* =========================================================
[Base]
========================================================= */
/* --------------------------------------------------
  0. Reset
-------------------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
p,
blockquote,
th,
td,
form,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

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

body {
  line-height: 1;
}

div {
  outline: none;
}

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

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

fieldset {
  border: none;
}

input,
textarea,
select,
label {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: middle;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

/* --------------------------------------------------
  1. Init
-------------------------------------------------- */
img {
  border: none;
  vertical-align: bottom;
}

picture {
  display: block;
}

object {
  vertical-align: middle;
  outline: none;
}

em,
strong {
  font-style: normal;
  font-weight: bold;
}

small {
  font-size: 100%;
}

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

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

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

code,
pre {
  font-family: monospace;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  word-break: normal;
}

.is-sp {
  display: none;
}

@media only screen and (max-width: 559px) {
  .is-sp {
    display: block;
  }
}

/* =========================================================
[Layout]
========================================================= */
/* //////////////////////////////////////////////////
[Layout]
////////////////////////////////////////////////// */
html {
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: #1D1D1F;
  font-size: 1.7rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.012em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 1100px) and (min-width: 560px) {
  html {
    font-size: 0.90909vw;
  }
}

@media only screen and (max-width: 559px) {
  body {
    font-size: 1.4rem;
  }
}

a:link,
a:visited {
  color: #15C937;
  text-decoration: underline;
}

a:hover,
a:active {
  text-decoration: none;
}

/* --------------------------------------------------
  Container
-------------------------------------------------- */
.l-page-container {
  position: relative;
  padding-top: 11rem;
}

@media only screen and (max-width: 559px) {
  .l-page-container {
    padding-top: 6.7rem;
  }
}

.l-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1%;
}

@media only screen and (max-width: 559px) {
  .l-container {
    max-width: 100%;
    padding: 0 4%;
  }
}

/* --------------------------------------------------
  Header
-------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 8rem;
  border-bottom: 1px solid #DDD;
  background-color: #FFF;
}

.l-header .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  max-width: 100%;
  padding: 0 0 0 1%;
}

.l-header .sitename {
  flex-basis: 16%;
}

.l-header .sitename a {
  display: block;
}

.l-header nav {
  display: flex;
  flex-basis: 84%;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.7rem;
}

.l-header nav .header-menu {
  display: flex;
  margin-right: 3rem;
}

.l-header nav .header-menu li a {
  display: inline-flex;
  align-items: center;
  height: 8rem;
  padding: 0 2rem;
  color: #1D1D1F;
  line-height: 8rem;
  text-decoration: none;
  transition: all ease 0.3s;
}

.l-header nav .header-menu li a:hover, .l-header nav .header-menu li a:active {
  color: #15C937;
}

.l-header nav .header-menu li a .fas {
  font-size: 2.5rem;
}

.l-header nav .header-buttons {
  display: flex;
  flex-basis: 35%;
  max-width: 400px;
}

.l-header nav .header-buttons li {
  flex-basis: 50%;
  position: relative;
}

.l-header nav .header-buttons li:before {
  display: block;
  position: absolute;
  top: 25%;
  left: 0;
  width: 1px;
  height: 50%;
  background-color: #FFF;
  content: "";
}

.l-header nav .header-buttons li:first-child:before {
  display: none;
}

.l-header nav .header-buttons li a {
  display: block;
  height: 8rem;
  background-color: #1D1D1D;
  color: #FFF;
  font-weight: 500;
  line-height: 8rem;
  text-align: center;
  text-decoration: none;
  transition: all ease 0.3s;
}

.l-header nav .header-buttons li a:hover, .l-header nav .header-buttons li a:active {
  background-color: #15C937;
}

@media only screen and (max-width: 1100px) and (min-width: 560px) {
  .l-header nav {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 1300px) {
  .l-header .l-container {
    height: 100%;
  }
  .l-header nav {
    display: none;
  }
}

@media only screen and (max-width: 559px) {
  .l-header {
    height: 5.7rem;
  }
  .l-header .l-container {
    padding: 0 0 0 4%;
  }
  .l-header .sitename {
    flex-basis: 45%;
  }
  .l-header .sitename a img {
    width: 100%;
    height: auto;
  }
  .l-header nav {
    display: none;
  }
}

/* Drawer & Hamburger Button
-------------------------------------------------- */
.hamburger-button {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .hamburger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 5.7rem;
    height: 5.7rem;
    border: none;
    border-radius: 0;
    background: none;
    color: #1D1D1F;
    line-height: 1;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .hamburger-button-bar, .hamburger-button-bar:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    margin: auto;
    background-color: #1D1D1F;
  }
  .hamburger-button-bar {
    top: -0.7rem;
  }
  .hamburger-button-bar:before {
    top: 1.4rem;
    width: 100%;
    content: '';
  }
}

@media only screen and (max-width: 559px) {
  .hamburger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 5.7rem;
    height: 5.7rem;
    border: none;
    border-radius: 0;
    background: none;
    color: #1D1D1F;
    line-height: 1;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .hamburger-button-bar, .hamburger-button-bar:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    margin: auto;
    background-color: #1D1D1F;
  }
  .hamburger-button-bar {
    top: -0.7rem;
  }
  .hamburger-button-bar:before {
    top: 1.4rem;
    width: 100%;
    content: '';
  }
}

.drawer-menu {
  position: fixed;
  visibility: hidden;
  width: 100%;
  opacity: 0;
}

@media only screen and (max-width: 1300px) {
  body.is-open-drawer {
    height: 100%;
  }
  .is-open-drawer .hamburger-button-bar {
    transform: rotate(45deg);
    width: 3rem;
    transition: transform 0.2s;
  }
  .is-open-drawer .hamburger-button-bar:before {
    top: 0;
    transform: rotate(90deg);
  }
  .is-open-drawer .l-page-container {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  .drawer-menu {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding: 0 5.2rem 2rem;
    background-color: #FFF;
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-overflow-scrolling: touch;
  }
  .drawer-menu.is-open {
    position: fixed;
    top: 8rem;
    left: 0;
    z-index: 10;
    visibility: visible;
    opacity: 1;
  }
  .drawer-menu .drawer-menu-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 8rem;
    margin: 0 -5.2rem 1rem;
    border-bottom: 1px solid #DDD;
  }
  .drawer-menu .drawer-menu-close .hamburger-button-bar, .drawer-menu .drawer-menu-close .hamburger-button-bar:before {
    top: 0;
    width: 2.5rem;
  }
  .drawer-menu .drawer-menu-close .hamburger-button-bar {
    transform: rotate(135deg);
  }
  .drawer-menu .drawer-menu-close .hamburger-button-bar:before {
    transform: rotate(-90deg);
  }
  .drawer-menu-links {
    margin-bottom: 2rem;
  }
  .drawer-menu-links li {
    border-bottom: 1px solid #DDD;
  }
  .drawer-menu-links li a {
    display: block;
    padding: 1.7rem 0;
    color: #1D1D1D;
    font-size: 1.7rem;
    line-height: 1.29412;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .drawer-menu-others li a {
    display: block;
    padding: 1.0rem 0;
    color: #1D1D1D;
    font-size: 1.2rem;
    line-height: 1.5;
    text-decoration: none;
    letter-spacing: 0.01em;
  }
  .drawer-menu-others li a .fas {
    margin-right: 0.5rem;
  }
}

@media only screen and (max-width: 559px) {
  .drawer-menu.is-open {
    top: 5.7rem;
  }
  .drawer-menu-links li a {
    padding: 1.5rem 0;
    font-size: 1.5rem;
    line-height: 1.46667;
  }
  .hamburger-button-bar, .hamburger-button-bar:before {
    width: 3rem;
  }
  .is-open-drawer .hamburger-button-bar, .is-open-drawer .hamburger-button-bar:before {
    width: 2.2rem;
  }
}

/* --------------------------------------------------
  Contents
-------------------------------------------------- */
.l-page-content {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 8rem 0;
}

@media only screen and (max-width: 960px) {
  .l-page-content {
    padding: 8rem 1%;
  }
}

@media only screen and (max-width: 559px) {
  .l-page-content {
    flex-direction: column;
    padding: 8% 4%;
  }
}

/* --------------------------------------------------
  Main
-------------------------------------------------- */
.l-main {
  flex-basis: 100%;
  order: 1;
  background: #EEE;
}

.l-sub + .l-main {
  flex-basis: 69%;
}

@media only screen and (max-width: 559px) {
  .l-sub + .l-main {
    flex-basis: 100%;
  }
}

/* --------------------------------------------------
  Sub
-------------------------------------------------- */
.l-sub {
  flex-basis: 27%;
  order: 2;
}

.l-sub .ttl-S {
  margin-bottom: .6rem;
  font-size: 1.7rem;
}

.l-sub .side-list {
  font-size: 1.5rem;
}

.l-sub .side-list li {
  padding: 1.5rem 0 1.5rem .8rem;
  border-bottom: solid 1px #DDDDDD;
}

.l-sub .side-list li a {
  color: #1D1D1F;
  text-decoration: none;
}

.l-sub .side-list li a:hover {
  color: #15C937;
}

@media only screen and (max-width: 559px) {
  .l-sub {
    flex-basis: 90%;
  }
  .l-sub .ttl-S {
    text-align: center;
  }
  .l-sub .side-list {
    padding: 0 4%;
    font-size: 1.4rem;
  }
  .l-sub .side-list li {
    padding: 0;
    border-bottom: solid 1px #DDDDDD;
  }
  .l-sub .side-list li a {
    display: block;
    padding: 1.5rem 0 1.5rem .8rem;
  }
}

/* --------------------------------------------------
  Footer
-------------------------------------------------- */
.l-footer {
  background-color: #FFF;
}

.l-footer .l-container {
  padding-top: 10rem;
}

.l-footer .title {
  margin-bottom: 4rem;
  padding-left: 0.7rem;
  color: #666666;
  font-weight: bold;
  font-size: 1.7rem;
}

.l-footer .footer-links {
  display: flex;
  align-content: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.l-footer .footer-links .footer-links-stores {
  display: flex;
  flex-basis: 66%;
  align-items: center;
}

.l-footer .footer-links .footer-links-stores li {
  flex-basis: 33.333%;
  position: relative;
}

.l-footer .footer-links .footer-links-stores li:before {
  display: block;
  position: absolute;
  top: 27.5%;
  left: 0;
  width: 1px;
  height: 45%;
  background-color: #D1D1D1;
  content: "";
}

.l-footer .footer-links .footer-links-stores li:first-child:before {
  display: none;
}

.l-footer .footer-links .footer-links-stores li a {
  display: block;
  width: 100%;
  height: 8.8rem;
  background-color: #F7F7F7;
  line-height: 8.8rem;
  text-align: center;
  transition: all ease 0.3s;
}

.l-footer .footer-links .footer-links-stores li a img {
  width: 75px;
  height: auto;
  vertical-align: middle;
}

.l-footer .footer-links .footer-links-stores li a:hover, .l-footer .footer-links .footer-links-stores li a:active {
  background-color: #EEE;
}

.l-footer .footer-links .footer-links-sales {
  display: flex;
  flex-basis: 32%;
}

.l-footer .footer-links .footer-links-sales li {
  flex-basis: 100%;
}

.l-footer .footer-links .footer-links-sales li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8.8rem;
  border: 2px solid transparent;
  background-color: #1D1D1D;
  color: #FFF;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 8.8rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.012em;
  transition: all ease 0.3s;
}

.l-footer .footer-links .footer-links-sales li a:hover, .l-footer .footer-links .footer-links-sales li a:active {
  border-color: #1D1D1D;
  background-color: #FFF;
  color: #1D1D1D;
}

.l-footer .footer-links .footer-links-sales li a .fas {
  margin-left: 4rem;
}

.l-footer .footer-social {
  margin-bottom: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #DDDDDD;
}

.l-footer .footer-social ul {
  display: flex;
  justify-content: center;
}

.l-footer .footer-social ul li a {
  padding: 1.75rem;
  color: #1D1D1D;
  font-size: 3.2rem;
  transition: all ease 0.3s;
}

.l-footer .footer-social ul li a:hover, .l-footer .footer-social ul li a:active {
  color: #15C937;
}

.l-footer .copyright {
  position: relative;
  padding: 2rem 0;
  border-top: 1px solid #DDDDDD;
  color: #707070;
  font-size: 1.2rem;
  text-align: center;
}

.l-footer .copyright .privacy {
  position: absolute;
  right: 0;
  bottom: 2rem;
  font-size: 1.4rem;
}

.l-footer .copyright .privacy a {
  color: #1D1D1D;
  text-decoration: none;
}

.l-footer .copyright .privacy a:hover, .l-footer .copyright .privacy a:active {
  text-decoration: underline;
}

@media only screen and (max-width: 559px) {
  .l-footer .l-container {
    padding-top: 4rem;
    text-align: center;
  }
  .l-footer .title {
    margin-bottom: 3rem;
    padding-left: initial;
    font-size: 1.4rem;
  }
  .l-footer .footer-links {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .l-footer .footer-links .footer-links-stores {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }
  .l-footer .footer-links .footer-links-stores li:before {
    top: 25%;
    height: 50%;
  }
  .l-footer .footer-links .footer-links-stores li a {
    height: 4rem;
    line-height: 4rem;
  }
  .l-footer .footer-links .footer-links-stores li a img {
    width: 3.8rem;
  }
  .l-footer .footer-links .footer-links-sales {
    flex-basis: 100%;
    margin-bottom: 2.5rem;
  }
  .l-footer .footer-links .footer-links-sales li a {
    height: 6rem;
    font-size: 1.6rem;
    line-height: 6rem;
  }
  .l-footer .footer-links .footer-links-sales li a .fas {
    margin-left: 3rem;
  }
  .l-footer .footer-social {
    margin-bottom: 2rem;
    padding-top: 2rem;
  }
  .l-footer .footer-social ul li a {
    padding: 1.5rem;
    font-size: 2.4rem;
  }
  .l-footer .copyright {
    padding: 1.6rem 0;
    font-size: 1.0rem;
  }
  .l-footer .copyright .privacy {
    display: none;
  }
}

/* --------------------------------------------------
  Grids
-------------------------------------------------- */
.l-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1%;
}

.l-row [class^="l-col-"] {
  flex-basis: auto;
  margin-bottom: 3rem;
  padding: 0 1%;
}

.l-row .l-col-1 {
  width: 33.3333%;
}

.l-row .l-col-2 {
  width: 50%;
}

.l-row .l-col-3 {
  width: 100%;
}

@media only screen and (max-width: 559px) {
  .l-row {
    padding: 0 4%;
  }
  .l-row [class^="l-col-"] {
    margin-bottom: 2rem;
    padding: 0;
  }
  .l-row .l-col-1,
  .l-row .l-col-2,
  .l-row .l-col-3 {
    width: 100%;
  }
}

/* --------------------------------------------------
  Page navi
-------------------------------------------------- */
.navigation {
  padding-top: 5rem;
}

.navigation .screen-reader-text {
  display: none;
}

.navigation a {
  color: #999;
  text-decoration: none;
}

.navigation a:hover {
  color: #15C937;
}

.navigation .nav-links {
  display: flex;
  justify-content: center;
}

.navigation .nav-links .page-numbers {
  display: block;
  margin: 0 1rem;
  padding: 0 .5rem;
  font-size: 2rem;
}

.navigation .nav-links .page-numbers.current {
  border-bottom: solid 1px #1D1D1F;
}

.navigation .nav-links .page-numbers.next, .navigation .nav-links .page-numbers.prev {
  position: relative;
  color: #FFF;
}

.navigation .nav-links .page-numbers.next:before, .navigation .nav-links .page-numbers.prev:before {
  position: absolute;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #15C937;
  color: #FFF;
  font-size: 2.8rem;
  line-height: 2.6rem;
  text-align: center;
  content: "›";
}

.navigation .nav-links .page-numbers.next:hover:before, .navigation .nav-links .page-numbers.prev:hover:before {
  border: solid 1px #15C937;
  background-color: #FFF;
  color: #15C937;
  line-height: 2.4rem;
}

.navigation .nav-links .page-numbers.prev:before {
  left: -1rem;
  content: "‹";
}

@media only screen and (max-width: 559px) {
  .navigation {
    padding: 4rem 0 8rem;
  }
  .navigation .nav-links .page-numbers {
    margin: 0 .8rem;
    padding: 0 .5rem;
    font-size: 1.7rem;
  }
}

/* =========================================================
[Module]
========================================================= */
/* //////////////////////////////////////////////////
[Module]
////////////////////////////////////////////////// */
/* --------------------------------------------------
  Clearfix
-------------------------------------------------- */
.group:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  Interaction
-------------------------------------------------- */
a img,
.hover a {
  background: rgba(255, 255, 255, 0.01);
  transition: 0.1s linear;
}

/* --------------------------------------------------
  Heading
-------------------------------------------------- */
.ttl-a {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.44444;
  letter-spacing: -0.012em;
}

.ttl-b {
  margin: 0 auto 4rem;
  font-weight: bold;
  font-size: 2.7rem;
  line-height: 1.48148;
  text-align: center;
  letter-spacing: -0.012em;
}

.ttl-c {
  margin: 0 auto 3rem;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.6;
  letter-spacing: -0.012em;
}

.ttl-c span {
  display: inline-flex;
  margin-right: 1rem;
  font-size: 1.4rem;
}

.ttl-d {
  padding: 1.5rem 0 0;
  font-weight: normal;
  font-size: 1.7rem;
  line-height: 1.44444;
  letter-spacing: -0.012em;
}

.ttl-d span {
  margin-left: 1rem;
  font-weight: bold;
  font-size: 2.4rem;
}

@media only screen and (max-width: 559px) {
  .ttl-a {
    font-size: 2.4rem;
  }
  .ttl-b {
    margin: 0 auto 3rem;
    font-size: 2.0rem;
  }
  .ttl-c {
    margin: 0 auto 2rem;
    font-size: 1.8rem;
  }
  .ttl-d {
    font-size: 1.2rem;
  }
  .ttl-d span {
    margin-left: .5rem;
    font-size: 1.6rem;
  }
}

.ttl-home {
  margin: 0 auto 7rem;
  font-weight: bold;
  font-size: 4.3rem;
  line-height: 1.30233;
  text-align: center;
  letter-spacing: -0.012em;
}

@media only screen and (max-width: 559px) {
  .ttl-home {
    margin: 0 auto 4.5rem;
    font-size: 2.4rem;
    line-height: 2.08333;
  }
}

.ttl-page-heading {
  padding-bottom: 4rem;
  border-bottom: 1px solid #DDD;
}

@media only screen and (max-width: 559px) {
  .ttl-page-heading {
    padding-bottom: 2rem;
  }
}

/* --------------------------------------------------
  Text
-------------------------------------------------- */
.br-mode-pc {
  display: inline;
}

.br-mode-sp {
  display: none;
}

@media only screen and (max-width: 559px) {
  .br-mode-pc {
    display: none;
  }
  .br-mode-sp {
    display: inline;
  }
}

/* --------------------------------------------------
  Bread Crumbs
-------------------------------------------------- */
.bread-crumbs {
  overflow-x: auto;
  margin: 0 auto 8rem;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.bread-crumbs ul li {
  display: inline;
  position: relative;
  color: #1D1D1F;
  font-size: 1.5rem;
}

.bread-crumbs ul li:after {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 1rem;
  margin: 0 1rem;
  color: #999;
  text-align: center;
  content: "/";
}

.bread-crumbs ul li:last-child:after {
  display: none;
}

.bread-crumbs ul li a {
  color: #999;
  text-decoration: none;
}

.bread-crumbs ul li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 559px) {
  .bread-crumbs {
    margin: 0 auto 3rem;
  }
  .bread-crumbs ul li {
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------
  Local Nav
-------------------------------------------------- */
/* --------------------------------------------------
  List
-------------------------------------------------- */
.list-disc {
  margin: 0 0 2em 0.8em;
}

.list-disc li {
  position: relative;
  margin: .2em 0;
  padding: 0 0 0 1.2em;
}

.list-disc li:before {
  display: inline-block;
  position: absolute;
  top: 0.4em;
  left: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 0.8em;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  content: "\f192";
}

.list-order {
  margin: 0 0 2em 2em;
}

.list-order li {
  margin: .2em 0;
  list-style: decimal;
}

/* --------------------------------------------------
  Section
-------------------------------------------------- */
/* --------------------------------------------------
  Box
-------------------------------------------------- */
/* --------------------------------------------------
  Table
-------------------------------------------------- */
.tblCommonA {
  width: 100%;
  margin: 0 auto 1em;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
}

.tblCommonA th,
.tblCommonA td {
  padding: .5em;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  text-align: left;
  word-break: break-all;
}

.tblCommonA th {
  width: 30%;
  background-color: #FAF7EF;
}

.tblCommonA td {
  width: 70%;
}

/* --------------------------------------------------
  Form
-------------------------------------------------- */
.tbl-form {
  width: 100%;
  margin: 0 auto 1em;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
}

.tbl-form th,
.tbl-form td {
  padding: .5em;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  text-align: left;
}

.tbl-form th {
  width: 30%;
  background-color: #FAF7EF;
  word-break: break-all;
}

.tbl-form td {
  width: 70%;
}

/* Text Box & Text Area */
.mod-text,
.mod-textarea {
  padding: 8px 15px;
  border: 1px solid #AFBFC7;
  border-radius: 3px;
  box-shadow: none;
  background-color: #FFFFFF;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mod-textarea {
  max-width: 100%;
  height: 14em;
  line-height: 1.6;
}

/* Select */
.mod-select {
  padding: 6px 15px;
  border: 1px solid #AFBFC7;
  border-radius: 3px;
  box-shadow: none;
  background-color: #FFFFFF;
}

::-webkit-input-placeholder {
  color: #999;
}

/* Label (Inner Radio & Checkbox Pattern) */
.mod-radio-label {
  display: block;
  position: relative;
  cursor: pointer;
}

.mod-radio-label input[type="radio"],
.mod-radio-label input[type="checkbox"] {
  display: inline-block;
  overflow: hidden;
  width: 0;
  height: 16px;
  opacity: 0;
}

.mod-text.is-error,
.mod-select.is-error,
.mod-textarea.is-error {
  border: 1px solid #D40000;
  transition: border 0.2s ease;
}

.mod-text:focus,
.mod-select:focus,
.mod-textarea:focus {
  border: 1px solid #EC4D09;
  outline: none;
  transition: border 0.2s ease;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 4.7rem;
  padding: 0 2.7rem;
  border: 2px solid #1D1D1D;
  border-radius: 0;
  background-color: transparent;
  color: #1D1D1D;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 4.7rem;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.btn .fas {
  position: relative;
  top: 1px;
  margin-left: 1.5rem;
  font-size: 1.3rem;
}

.btn.btn-a {
  border-color: #1D1D1D !important;
  color: #1D1D1D;
}

.btn.btn-a:hover {
  background-color: #1D1D1D;
  color: #FFF;
}

.btn.btn-b {
  border-color: #15C937;
  border-radius: 100px;
  background-color: #15C937;
  color: #FFF;
}

.btn.btn-b:hover {
  background-color: #FFF;
  color: #15C937;
}

.btn.btn-c {
  border-color: #1D1D1D !important;
  border-radius: 100px;
  color: #1D1D1D;
}

.btn.btn-c:hover {
  background-color: #1D1D1D;
  color: #FFF;
}

.btn.btn-mini {
  height: 3.3rem;
  padding: 0 1.7rem;
  font-size: 1.1rem;
  line-height: 3.3rem;
}

.btn.btn-mini .fas {
  margin-left: 1rem;
  font-size: 1rem;
}

@media only screen and (max-width: 559px) {
  .btn {
    height: 3.3rem;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    line-height: 3.3rem;
  }
  .btn .fas {
    top: 1px;
    margin-left: 1rem;
    font-size: 1rem;
  }
}

/* Element Size */
.modSize-ss {
  width: 10%;
}

.modSize-s {
  width: 20%;
}

.modSize-m {
  width: 50%;
}

.modSize-l {
  width: 75%;
}

.modSize-ll {
  width: 100%;
}

/* --------------------------------------------------
  Icons
-------------------------------------------------- */
/* --------------------------------------------------
  Other
-------------------------------------------------- */
.owl-carousel .owl-nav {
  height: 0;
}

.owl-carousel .owl-nav .icon-prev,
.owl-carousel .owl-nav .icon-next {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 6rem;
  height: 6rem;
  margin-top: -3rem;
  border-radius: 100px;
  box-shadow: 3px 1px 5px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all ease 0.3s;
}

.owl-carousel .owl-nav .icon-prev {
  left: -1.3rem;
  background: url(../img/common/ico_arrow_left_01.svg) no-repeat 50% 50% #F2F2F2;
  background-size: auto 2.6rem;
}

.owl-carousel .owl-nav .icon-prev:hover, .owl-carousel .owl-nav .icon-prev:active {
  background-color: #d8d6d6;
}

.owl-carousel .owl-nav .icon-next {
  right: -1rem;
  background: url(../img/common/ico_arrow_right_01.svg) no-repeat 50% 50% #F2F2F2;
  background-size: auto 2.6rem;
}

.owl-carousel .owl-nav .icon-next:hover, .owl-carousel .owl-nav .icon-next:active {
  background-color: #d8d6d6;
}

.owl-carousel .owl-dots {
  margin: 2.5rem auto 0;
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50px;
  background-color: #CCCCCC;
  outline: none;
}

.owl-carousel .owl-dots .owl-dot.active {
  background-color: #1D1D1D;
}

@media only screen and (max-width: 559px) {
  .owl-carousel .owl-dots {
    margin: 1.6rem auto 0;
  }
  .owl-carousel .owl-dots .owl-dot {
    width: 6px;
    height: 6px;
  }
}

/* =========================================================
[Pages]
========================================================= */
/* //////////////////////////////////////////////////
[Pages]
////////////////////////////////////////////////// */
/* --------------------------------------------------
HOME
-------------------------------------------------- */
.home .l-page-container {
  padding-top: 0;
}

.home-carousel .l-container {
  padding: 0;
}

.home-carousel-content article {
  position: relative;
}

.home-carousel-content article .detail {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4rem 4rem 13rem;
  color: #FFF;
}

.home-carousel-content article .detail .catch-copy {
  flex-basis: 100%;
  margin-bottom: 4rem;
  font-weight: bold;
  font-size: 4.7rem;
  line-height: 1.31915;
  letter-spacing: -0.012em;
}

.home-carousel-content article .detail .btn-detail {
  flex-basis: 100%;
}

.home-pickup {
  background-color: #F2F2F2;
}

.home-pickup .l-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.home-pickup .owl-nav .icon-prev,
.home-pickup .owl-nav .icon-next {
  top: 43%;
}

.home-pickup article a {
  display: block;
  color: #FFF;
  text-decoration: none;
  transition: all ease 0.3s;
}

.home-pickup article .image {
  position: relative;
  overflow: hidden;
}

.home-pickup article .image img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}

.home-pickup article .caption {
  overflow: hidden;
  padding: 1.5rem;
  background-color: #1D1D1F;
  font-weight: bold;
  font-size: 1.4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.012em;
  transition: all ease 0.3s;
}

.home-pickup article:hover .image img {
  transform: scale(1.15);
}

.home-pickup article:hover .caption {
  background-color: #15C937;
}

.home-products .l-container {
  padding: 9rem 0 0;
}

.home-products-content article {
  position: relative;
}

.home-products-content article picture {
  overflow: hidden;
}

.home-products-content article picture img {
  position: relative;
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}

.home-products-content article:hover picture img {
  transform: scale(1.15);
}

.home-products-content article .detail {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  text-align: center;
}

.home-products-content article .detail .title {
  flex-basis: 100%;
  margin-bottom: 1.4rem;
  font-weight: bold;
  font-size: 3.4rem;
  line-height: 1.47059;
  letter-spacing: -0.012em;
}

.home-products-content article .detail .lead {
  flex-basis: 100%;
  margin-bottom: 9rem;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.47059;
  letter-spacing: -0.012em;
}

.home-products-content article .detail .btn-detail {
  flex-basis: 100%;
}

.home-news {
  background-color: #F2F2F2;
}

.home-news .l-container {
  padding: 9rem 0 0;
}

.home-news-content article {
  height: 100%;
  background-color: #FFF;
  transition: all ease 0.3s;
}

.home-news-content article a {
  display: block;
  padding: 2rem 1.6rem;
  color: #1D1D1D;
  text-decoration: none;
}

.home-news-content article a .image {
  position: relative;
  overflow: hidden;
  margin: -2rem -1.6rem 2.6rem;
}

.home-news-content article a .image img {
  width: 100%;
  height: auto;
}

.home-news-content article a .category {
  display: inline-flex;
  margin: 0 1rem 1.5rem 0;
  padding: 0.3rem 0.5rem;
  background-color: #1D1D1D;
  color: #FFF;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.012em;
}

.home-news-content article a .title {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.47059;
  letter-spacing: -0.012em;
}

.home-news-content article a .date {
  color: #444;
  font-size: 1.2rem;
  letter-spacing: -0.012em;
}

.home-news-content article:hover {
  background-color: #d8d6d6;
}

.home-news-content article:hover .image img {
  transform: scale(1.15);
}

.home-news .btn-detail {
  padding-bottom: 3rem;
  text-align: center;
}

.home-news .btn-detail .btn.btn-b {
  border-color: #1D1D1D;
  background: #1D1D1D;
}

.home-news .btn-detail .btn.btn-b:hover {
  background: #FFF;
  color: #1D1D1D;
}

@media only screen and (min-width: 1600px) {
  .home-carousel-content article .detail {
    padding: 4rem 7rem 20rem;
  }
}

@media only screen and (max-width: 559px) {
  .home-carousel-content article .detail {
    align-content: center;
    padding: 3rem 3.5rem;
  }
  .home-carousel-content article .detail .catch-copy {
    margin-bottom: 3rem;
    font-size: 2.8rem;
    line-height: 1.42857;
  }
  .home-pickup .l-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .home-pickup .owl-carousel .owl-dots {
    margin: -1.5rem auto 0;
  }
  .home-pickup .owl-nav .icon-prev,
  .home-pickup .owl-nav .icon-next {
    display: none;
  }
  .home-pickup article a {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
  }
  .home-pickup article .image {
    flex-basis: 57.97101%;
  }
  .home-pickup article .caption {
    display: inline-flex;
    flex-basis: 42.02899%;
    align-items: center;
    padding: 1.5rem 1.3rem;
    font-size: 1.2rem;
    line-height: 1.5;
    text-overflow: initial;
    white-space: initial;
  }
  .home-products .l-container {
    padding: 7rem 0 0;
  }
  .home-products-content article .detail {
    padding: 0 2rem;
  }
  .home-products-content article .detail .title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.42;
  }
  .home-products-content article .detail .lead {
    margin-bottom: 6rem;
    font-size: 1.4rem;
    line-height: 1.78571;
  }
  .home-news .l-container {
    padding: 7rem 0 0;
  }
  .home-news-content article a {
    padding: 2rem 1.2rem;
  }
  .home-news-content article a .image {
    margin: -2rem -1.2rem 2.4rem;
  }
  .home-news-content article a .category {
    margin-bottom: 0 .5rem 1rem 0;
    font-size: 1.0rem;
  }
  .home-news-content article a .title {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
  .home-news-content article a .date {
    font-size: 1.3rem;
  }
}

/* --------------------------------------------------
ABOUT
-------------------------------------------------- */
.about-zendure {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #F2F2F2;
}

.about-zendure-visual {
  margin-bottom: 3rem;
}

.about-zendure-visual img {
  width: 100%;
  height: auto;
}

.about-zendure-history {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.about-zendure-history .image {
  width: 32%;
}

.about-zendure-history .image img {
  width: 100%;
  height: auto;
}

.about-zendure-history .detail {
  width: 66%;
  padding: 6rem 8rem;
  background-color: #FFF;
}

.about-zendure-history .detail .ttl-b {
  font-size: 3rem;
}

.about-zendure-history .detail p {
  margin-bottom: 2.5rem;
  line-height: 1.64706;
}

.about-zendure-history .detail p:last-child {
  margin-bottom: 0;
}

.about-zendure-company {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-zendure-company .image {
  width: 32%;
}

.about-zendure-company .image img {
  width: 100%;
  height: auto;
}

.about-zendure-company .detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 66%;
  padding: 6rem 8rem;
  background-color: #FFF;
}

.about-zendure-company .detail .ttl-b {
  flex-basis: 19%;
  margin: 0;
  font-size: 3rem;
  text-align: left;
}

.about-zendure-company .detail dl {
  display: flex;
  flex-basis: 71%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-zendure-company .detail dl dt {
  flex-basis: 14rem;
  margin-bottom: 0.75rem;
}

.about-zendure-company .detail dl dd {
  flex-basis: calc(100% - 15rem);
  margin-bottom: 0.75rem;
}

@media only screen and (max-width: 1400px) {
  .about-zendure-history .image {
    position: relative;
    overflow: hidden;
  }
  .about-zendure-history .image picture {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .about-zendure-history .image img {
    transform: translateX(-10%);
    width: 140%;
  }
  .about-zendure-company .image {
    position: relative;
    overflow: hidden;
  }
  .about-zendure-company .image picture {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .about-zendure-company .image img {
    transform: translateX(-10%);
    width: 120%;
  }
}

@media only screen and (max-width: 559px) {
  .about-zendure {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .about-zendure-visual {
    display: none;
  }
  .about-zendure-history {
    margin-bottom: 2rem;
  }
  .about-zendure-history .image {
    flex-basis: 100%;
  }
  .about-zendure-history .image picture {
    position: relative;
  }
  .about-zendure-history .image img {
    transform: translateX(0);
    width: 100%;
  }
  .about-zendure-history .detail {
    flex-basis: 100%;
    padding: 4rem 2rem;
  }
  .about-zendure-history .detail .ttl-b {
    font-size: 2.2rem;
  }
  .about-zendure-history .detail p {
    margin-bottom: 2rem;
  }
  .about-zendure-company .image {
    flex-basis: 100%;
    order: 1;
  }
  .about-zendure-company .image picture {
    position: relative;
  }
  .about-zendure-company .image img {
    transform: translateX(0);
    width: 100%;
  }
  .about-zendure-company .detail {
    flex-basis: 100%;
    order: 2;
    padding: 4rem 2rem;
  }
  .about-zendure-company .detail .ttl-b {
    flex-basis: 100%;
    margin: 0 auto 3rem;
    font-size: 2.2rem;
    text-align: center;
  }
  .about-zendure-company .detail dl {
    flex-basis: 100%;
  }
  .about-zendure-company .detail dl dt {
    flex-basis: 12rem;
  }
  .about-zendure-company .detail dl dd {
    flex-basis: calc(100% - 13rem);
  }
}

/* --------------------------------------------------
NEWS
-------------------------------------------------- */
.news .l-page-content.archives {
  padding-top: 8rem;
}

.news .news-list {
  margin-bottom: 3rem;
}

.news .news-list article {
  border-bottom: none;
}

.news .news-list a {
  display: flex;
  flex-basis: 100%;
  color: #1D1D1F;
  text-decoration: none;
}

.news .news-list a:hover img {
  transform: scale(1.15);
}

.news .news-list a:hover .title {
  color: #15C937;
}

.news .news-list .image {
  flex-basis: 37.2%;
  overflow: hidden;
}

.news .news-list .image img {
  width: 100%;
  height: auto;
}

.news .news-list .news-detail {
  flex-basis: 62.8%;
  padding-left: 3.6%;
}

.news .news-list .news-detail .title {
  margin-bottom: .8rem;
  font-size: 1.7rem;
}

.news .news-list .news-detail .news-text {
  font-size: 1.7rem;
}

.news .news-list .news-meta {
  margin-bottom: 1rem;
}

.news .news-list .news-meta time {
  display: inline-block;
  font-size: 1.3rem;
  vertical-align: middle;
}

.news .news-list .news-meta .category {
  display: inline-block;
  margin-left: 1rem;
  padding: .3rem .6rem;
  background-color: #333;
  color: #FFF;
  font-size: 1.2rem;
  vertical-align: middle;
}

@media only screen and (max-width: 559px) {
  .news .l-page-content.archives {
    padding-top: 8%;
  }
  .news .news-list {
    margin-bottom: 3%;
  }
  .news .news-list a {
    flex-direction: column;
    border: solid 1px #DDD;
  }
  .news .news-list .news-detail {
    padding: 2%;
  }
  .news .news-list .news-detail .news-text {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------
NEWS-detail
-------------------------------------------------- */
.news article {
  border-bottom: solid 1px #DDD;
}

.news .l-main {
  background-color: #fff;
}

.news .l-page-content {
  padding: 0 0 8rem;
}

.entry-header {
  margin-bottom: 2.8rem;
}

.entry-header .entry-meta .entry-time {
  display: inline-block;
  margin-right: 1.5rem;
  font-size: 1.3rem;
  vertical-align: middle;
}

.entry-header .entry-meta .cat-links {
  display: inline-block;
  margin-right: 1rem;
  padding: .3rem .6rem;
  background-color: #333333;
  font-size: 1.2rem;
  vertical-align: middle;
}

.entry-header .entry-meta .cat-links a {
  color: #FFF;
  text-decoration: none;
}

.entryContent .entry-tittle {
  margin-bottom: 2.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #1D1D1F;
  font-size: 2.7rem;
}

.entryContent .entry-image {
  margin-bottom: 2rem;
}

.entryContent .entry-image img {
  width: 100%;
  height: auto;
}

.entryContent h2 {
  margin-bottom: 1.6rem;
  padding: .2rem 0 .2rem 1rem;
  border-left: 5px solid #15C937;
  font-size: 2.4rem;
}

.entryContent h3 {
  margin-bottom: 1.6rem;
  padding: .5rem 0 .5rem 1.5rem;
  background-color: #F7F7F7;
  font-size: 2.2rem;
}

.entryContent h4 {
  margin-bottom: 1.6rem;
  color: #15C937;
  font-size: 2.2rem;
}

.entryContent h5 {
  margin-bottom: 1.6rem;
  font-size: 2.2rem;
}

.entryContent p {
  margin-bottom: 4rem;
  line-height: 1.64;
}

.entryContent ul {
  margin-bottom: 2rem;
  padding-left: 1.5em;
  list-style-type: disc;
}

.entryContent img {
  max-width: 100%;
}

.entryContent figure {
  display: block;
  margin-bottom: 2.5rem;
}

.entryContent blockquote {
  padding: 2.5rem 1.5rem 2.5rem 3rem;
  border-left: solid 5px #999;
  background-color: #F7F7F7;
}

@media only screen and (max-width: 960px) {
  .news .l-page-content {
    padding: 0 2% 8rem;
  }
}

@media only screen and (max-width: 559px) {
  .entryContent {
    margin-bottom: 6rem;
  }
  .entryContent .entry-tittle {
    font-size: 1.8rem;
  }
  .entryContent h2, .entryContent h3 {
    padding: 1rem 0 1rem 2%;
    font-size: 1.8rem;
  }
  .entryContent h4, .entryContent h5 {
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
  }
  .entryContent p {
    margin-bottom: 3rem;
  }
  .entryContent figure {
    margin-bottom: 2rem;
  }
  .entryContent blockquote {
    padding: 1.8rem 1rem 1.8rem 1.5rem;
  }
  .entry-header {
    margin-bottom: 2.4rem;
  }
}

/* --------------------------------------------------
PRODUCTS
-------------------------------------------------- */
.products-section {
  background-color: #F2F2F2;
}

.products-section .l-container {
  padding: 0;
}

.products-section-category {
  margin-bottom: 1.5rem;
}

.products-section-category .ttl-b {
  margin: 0 auto 6rem;
  padding-top: 8rem;
}

.products-section-category .ttl-b:first-of-type {
  padding-top: 3rem;
}

.products-section-category .ttl-c {
  padding: 0 2%;
}

.products-section .product-unit {
  height: 100%;
  padding: 0 2rem 3.4rem;
  background-color: #FFF;
  text-align: center;
}

.products-section .product-unit .image {
  margin: 0 -2rem 1rem;
}

.products-section .product-unit .image img {
  width: 100%;
  height: auto;
}

.products-section .product-unit .title {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
}

.products-section .product-unit .caption {
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
}

.products-section .product-unit .spec {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.products-section .product-unit .point {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: left;
}

.products-section .product-unit .price {
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
}

.products-section .product-unit .btn-global {
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
}

.products-section .product-unit .btn-global a i {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1rem;
  vertical-align: middle;
}

.products-section .product-unit .list-buy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: -1rem;
}

.products-section .product-unit .list-buy li {
  flex-basis: 30%;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1280px) {
  .products-section .product-unit .list-buy li {
    flex-basis: 48%;
  }
}

@media only screen and (max-width: 1280px) {
  .products-section .product-unit .list-buy li {
    flex-basis: 100%;
  }
}

.products-section .product-unit .list-buy li a {
  width: 100%;
  padding: 0 0.5rem;
}

.products-section .product-unit .list-buy li .icon-mall {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.products-section .product-unit .list-buy li .icon-mall.amazon {
  background: url(../img/products/ico_amazon_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

.products-section .product-unit .list-buy li .icon-mall.rakuten {
  background: url(../img/products/ico_rakuten_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

.products-section .product-unit .list-buy li .icon-mall.yahoo {
  background: url(../img/products/ico_yahoo_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

.products-section .product-unit .list-buy li .icon-mall.zendure {
  background: url(../img/products/ico_zendure_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

@media only screen and (max-width: 559px) {
  .products-section .l-row .l-col-1 {
    width: 49%;
    margin-bottom: 2%;
  }
  .products-section .l-row .l-col-1:nth-child(odd) {
    margin-right: 2%;
  }
  .products-section-category .ttl-b {
    margin: 0 auto 4rem;
    padding-top: 6rem;
  }
  .products-section-category .ttl-c {
    padding: 0 4%;
  }
  .products-section .product-unit {
    padding: 0 1rem 3.4rem;
  }
  .products-section .product-unit .image {
    margin: 0 -1rem 1rem;
  }
  .products-section .product-unit .image img {
    width: 100%;
    height: auto;
  }
  .products-section .product-unit .title {
    font-size: 1.4rem;
  }
  .products-section .product-unit .caption {
    font-size: 1rem;
  }
  .products-section .product-unit .spec {
    font-size: 1.2rem;
  }
  .products-section .product-unit .point {
    font-size: 1.2rem;
  }
  .products-section .product-unit .btn-global {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .products-section .product-unit .btn-global a i {
    margin-left: 1rem;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 374px) {
  .products-section .btn.btn-mini {
    padding: 0 0.7rem;
  }
}

/* --------------------------------------------------
PRODUCT DETAIL
-------------------------------------------------- */
.products-detail-section {
  padding: 6rem 0 6rem;
  border-bottom: solid 1px #DDD;
  background-color: #F2F2F2;
}

.products-detail-section .products-detail-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.products-detail-section .products-detail-head .column {
  width: 50%;
}

.products-detail-section .products-detail-head .column .owl-carousel .owl-stage-outer {
  background-color: #ffffff;
}

.products-detail-section .products-detail-head .column:last-child {
  padding-left: 4rem;
}

.products-detail-section .products-detail-head .title {
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.products-detail-section .products-detail-head .price {
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 2.6rem;
}

.products-detail-section .products-detail-head .lead {
  margin-bottom: 3rem;
  color: #888;
}

.products-detail-section .products-detail-head .recommend {
  margin-bottom: 3rem;
  padding: 3rem;
  background-color: #dedede;
  font-size: 1.4rem;
}

.products-detail-section .products-detail-head .documents {
  margin-bottom: 3rem;
  font-size: 1.4rem;
}

.products-detail-section .products-detail-head .documents li {
  display: inline-flex;
  align-items: center;
  margin: 0 2rem 1rem 0;
}

.products-detail-section .products-detail-head .documents li i {
  margin-right: 0.5rem;
  color: initial;
  font-size: 1rem;
}

.products-detail-section .products-detail-head .links {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4rem;
  border-top: 1px solid #ddd;
}

.products-detail-section .products-detail-head .links li {
  flex-basis: 30%;
  margin: 0 3.33% 3.33% 0;
}

@media only screen and (max-width: 768px) {
  .products-detail-section .products-detail-head .links li {
    flex-basis: 48%;
    margin: 0 2% 2% 0;
  }
}

.products-detail-section .products-detail-head .links li a {
  width: 100%;
  padding: 0 0.5rem;
  font-size: 1.6rem;
}

.products-detail-section .products-detail-head .links li .icon-mall {
  display: inline-flex;
  width: 25px;
  height: 25px;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.products-detail-section .products-detail-head .links li .icon-mall.amazon {
  background: url(../img/products/ico_amazon_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

.products-detail-section .products-detail-head .links li .icon-mall.rakuten {
  background: url(../img/products/ico_rakuten_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

.products-detail-section .products-detail-head .links li .icon-mall.yahoo {
  background: url(../img/products/ico_yahoo_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

.products-detail-section .products-detail-head .links li .icon-mall.zendure {
  background: url(../img/products/ico_zendure_01.png) no-repeat 0 0;
  background-size: 100% auto;
}

.products-detail-section .products-detail-content {
  margin-bottom: 6rem;
}

.products-detail-section .products-detail-spec .spec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.products-detail-section .products-detail-spec .spec dt {
  width: 16em;
  margin-bottom: 0.2em;
  padding: 1em;
  background: #e2e0d4;
}

.products-detail-section .products-detail-spec .spec dd {
  width: calc(100% - 16em);
  margin-bottom: 0.2em;
  padding: 1em;
  background: #FFFFFF;
}

.products-detail-section .wp-block-separator {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.products-detail-section .wp-block-embed-youtube {
  position: relative;
  max-width: 60%;
  margin: 0 auto 6rem;
}

.products-detail-section .wp-block-embed-youtube:before {
  display: block;
  padding-top: 56.25%;
  content: '';
}

.products-detail-section .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: static;
}

.products-detail-section .wp-block-embed-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}

@media only screen and (max-width: 559px) {
  .products-detail-section {
    padding: 0 0 5rem;
  }
  .products-detail-section .products-detail-head {
    margin-bottom: 5rem;
  }
  .products-detail-section .products-detail-head .column {
    width: 100%;
  }
  .products-detail-section .products-detail-head .column:first-child {
    overflow: hidden;
    width: 100vw;
    margin: 0 -4% 3rem;
  }
  .products-detail-section .products-detail-head .column:last-child {
    padding-left: 0;
  }
  .products-detail-section .products-detail-head .title {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .products-detail-section .products-detail-head .price {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  .products-detail-section .products-detail-head .lead {
    margin-bottom: 2rem;
  }
  .products-detail-section .products-detail-head .recommend {
    margin-bottom: 3rem;
    padding: 2rem;
    font-size: 1.2rem;
  }
  .products-detail-section .products-detail-head .documents {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .products-detail-section .products-detail-head .documents li {
    margin: 0 1rem 1rem 0;
  }
  .products-detail-section .products-detail-head .links {
    padding-top: 3rem;
  }
  .products-detail-section .products-detail-head .links li {
    flex-basis: 100%;
    margin: 0 0 1em;
  }
  .products-detail-section .products-detail-head .links li a {
    height: 4.5rem;
    font-size: 1.5rem;
    line-height: 4.5rem;
  }
  .products-detail-section .products-detail-head .links li .icon-mall {
    width: 25px;
    height: 25px;
  }
  .products-detail-section .products-detail-content {
    margin-bottom: 5rem;
  }
  .products-detail-section .products-detail-spec .spec dt {
    width: 100%;
  }
  .products-detail-section .products-detail-spec .spec dd {
    width: 100%;
  }
  .products-detail-section .wp-block-separator {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .products-detail-section .wp-block-embed-youtube {
    max-width: none;
    margin-bottom: 3rem;
  }
}

/* --------------------------------------------------
SALES
-------------------------------------------------- */
.sales article {
  border-bottom: solid 1px #DDD;
}

.sales .l-main {
  background-color: #fff;
}

.sales .sales-container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 8rem 0;
}

.sales-ttl {
  margin-bottom: 6rem;
  font-size: 2.7rem;
  text-align: center;
}

.sales .contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.sales .logo_synex {
  flex-basis: 40%;
}

.sales .logo_synex img {
  width: 100%;
}

.sales .contact-btn a {
  display: block;
  height: 6.5rem;
  padding: 0 5.9rem;
  border-radius: 2px;
  background-color: #1D1D1D;
  color: #FFF;
  line-height: 6.5rem;
}

.sales .contact-btn a .fas {
  top: -1px;
  margin-left: 1rem;
  color: #15C937;
  font-size: 1.5rem;
}

.sales .contact-btn a:hover {
  border-color: #025758;
  background-color: #025758;
}

.sales .contact-btn a:hover .fas {
  color: #FFF;
}

.sales .sales-agency {
  padding: 8rem 0;
}

.sales .sales-agency-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1rem -2rem;
}

.sales .sales-agency-list li {
  flex-basis: 20%;
  margin-bottom: 2rem;
  padding: 0 1rem;
  text-align: center;
}

.sales .sales-agency-list li a {
  display: block;
}

.sales .sales-agency-list li a img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 559px) {
  .sales .sales-container {
    padding: 8% 0;
  }
  .sales-ttl {
    margin-bottom: 6rem;
    font-size: 1.8rem;
  }
  .sales .contact-container {
    display: block;
    width: 60%;
    margin: 0 auto 5rem;
  }
  .sales .logo_synex {
    width: 70%;
    margin: 0 auto 3rem;
  }
  .sales .contact-btn a {
    height: 6.5rem;
    padding: 0;
    font-size: 1.4rem;
  }
  .sales .contact-btn a .fas {
    top: 0px;
    margin-left: .8rem;
    font-size: 1.4rem;
  }
  .sales .sales-agency {
    padding: 8% 0;
  }
  .sales .sales-agency-list li {
    flex-basis: 50%;
  }
}

/* --------------------------------------------------
PRIVACY
-------------------------------------------------- */
.privacy article {
  border-bottom: solid 1px #DDD;
}

.privacy .l-main {
  background-color: #fff;
}

.privacy .privacy-text h2 {
  margin-bottom: 1rem;
  font-size: 2.7rem;
  letter-spacing: -0.012em;
}

.privacy .privacy-text p {
  margin-bottom: 6rem;
}

.privacy .privacy-text p:last-child {
  margin-bottom: 0;
}

.privacy .lead {
  margin-bottom: 6rem;
  font-size: 1.6rem;
}

@media only screen and (max-width: 559px) {
  .privacy .privacy-text h2 {
    font-size: 2.2rem;
  }
}

/* --------------------------------------------------
CONTACT
-------------------------------------------------- */
.contact article {
  border-bottom: solid 1px #DDD;
}

.contact .l-main {
  background-color: #fff;
}

.contact-ttl {
  margin-bottom: 1.5rem;
  font-size: 2.7rem;
  text-align: center;
}

.contact .sub {
  margin-bottom: 5rem;
  font-size: 1.4rem;
  text-align: center;
}

.contact-list dt {
  font-weight: bold;
  font-size: 1.7rem;
}

.contact-list dd {
  margin-bottom: 3rem;
}

.contact .tbl-form {
  margin: 7rem auto 8rem;
  border-top: none;
  border-left: none;
}

.contact .tbl-form th {
  display: block;
  width: 100%;
  padding: 0 0 1rem;
  border: none;
  background: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
}

.contact .tbl-form th .error {
  display: inline-block;
  margin-left: 2rem;
  color: #c40000;
  font-size: 1.7rem;
}

.contact .tbl-form td {
  display: block;
  width: 100%;
  padding: 0 0 2.5rem;
  border: none;
  background: #FFF;
}

.contact .tbl-form td:last-child {
  margin-bottom: 0;
}

.contact .tbl-form input,
.contact .tbl-form textarea,
.contact .tbl-form select {
  width: 100%;
  height: 5.2rem;
  border: none;
  background-color: #EEEEEE;
  text-indent: 2rem;
  outline: none;
}

.contact .tbl-form textarea {
  height: 10rem;
  padding: 1.6rem 2rem;
  text-indent: 0;
}

.contact .tbl-form .select-box {
  position: relative;
}

.contact .tbl-form .select-box::before {
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  transform: translateY(-25%) rotate(45deg);
  width: 1.2rem;
  height: 1.2rem;
  margin: auto 0;
  border-right: solid 2px #666;
  border-bottom: solid 2px #666;
  content: '';
}

.contact .tbl-form .select-box select {
  border: solid 3px #ddd;
  border-radius: 25px;
  text-indent: 3rem;
  text-overflow: ellipsis;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact .lead {
  margin-bottom: 4rem;
  text-align: center;
}

.contact .l-grid {
  width: 100%;
  text-align: center;
}

.contact .l-row {
  justify-content: center;
}

.contact .l-row .l-col-1 {
  margin-bottom: 0;
  text-align: center;
}

.contact .btn {
  width: 26rem;
  height: 6.5rem;
  padding: 0 5.9rem;
  border-radius: 2px;
  background-color: #1D1D1D;
  color: #FFF;
  font-weight: bold;
  line-height: 6.5rem;
}

.contact .btn:hover {
  border-color: #15C937;
  background-color: #15C937;
}

.contact .next-btn .btn-secondly {
  border-color: #E8E8E8;
  background: #E8E8E8;
  color: #1D1D1D;
}

.contact .next-btn .btn-secondly:hover {
  border-color: #15C937;
  background-color: #15C937;
  color: #FFF;
}

.contact .contact-ttl.confirm, .contact .sub.confirm {
  display: none;
}

.contact .mw_wp_form_confirm .contact-ttl,
.contact .mw_wp_form_confirm .sub,
.contact .mw_wp_form_confirm .contact-list,
.contact .mw_wp_form_confirm .lead {
  display: none;
}

.contact .mw_wp_form_confirm .contact-ttl.confirm, .contact .mw_wp_form_confirm .sub.confirm {
  display: block;
}

.contact .mw_wp_form_confirm .tbl-form .select-box::before {
  display: none;
}

@media only screen and (max-width: 559px) {
  .contact-ttl {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  .contact-list dt {
    font-size: 1.5rem;
  }
  .contact-list dd {
    margin-bottom: 3rem;
  }
  .contact .tbl-form {
    margin: 5rem auto 4rem;
  }
  .contact .tbl-form th {
    font-size: 1.6rem;
  }
  .contact .tbl-form th .error {
    margin-left: 1rem;
    font-size: 1.6rem;
  }
  .contact .tbl-form input, .contact .tbl-form textarea {
    font-size: 1.6rem;
    text-indent: .5rem;
  }
  .contact .tbl-form textarea {
    padding: .5rem;
    font-size: 1.6rem;
  }
  .contact .l-row .l-col-1:first-child {
    margin-bottom: 2rem;
  }
}

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