@charset "UTF-8";
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/*...VARIABLE...*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: bottom;
}

#ifrm {
  display: none;
}

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

.h1, .h2, .h3, h1, h2, h3 {
  margin: 0;
  padding: 0;
}

.h4, .h5, .h6, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a:focus {
  color: inherit;
  text-decoration: none;
}

.cont {
  width: 100%;
  padding: 0 6.3%;
}

@media screen and (max-width: 1200px) {
  .cont {
    padding: 0 5%;
  }
}

.hv-o {
  -webkit-transition: 1s ease opacity;
  -moz-transition: 1s ease opacity;
  -ms-transition: 1s ease opacity;
  -o-transition: 1s ease opacity;
  transition: 1s ease opacity;
}

.hv-o:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.hv-u:hover {
  text-decoration: underline;
}

.breadcrumb > li + li:before {
  display: none;
}

/*BG-SET*/
.bg-set {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bold {
  font-weight: bold;
}

/*...VARIABLE...*/
body {
  margin: 0;
  padding: 0;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  color: #000000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  overflow-x: hidden;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

@-webkit-keyframes scrollIcon {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  100% {
    opacity: 0;
  }
}

@keyframes scrollIcon {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  100% {
    opacity: 0;
  }
}

.button {
  margin: auto;
  width: 200px;
  height: 35px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border: 1px solid #000;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  word-break: keep-all;
}

.button i {
  margin-right: 13px;
}

.button:hover {
  background-color: #cb0000;
  border: 1px solid #cb0000;
  color: #FFF;
}

/*HEADER*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  height: 78px;
  background-color: #FFF;
  border-bottom: 2px solid #cb0000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 950px) {
  #header {
    height: 65px;
  }
}

#header.active {
  background-color: rgba(255, 255, 255, 0.8);
}

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

@media screen and (max-width: 1200px) {
  #header .inner {
    padding: 0 3%;
  }
}

@media screen and (max-width: 950px) {
  #header .inner {
    padding: 0;
    padding-left: 20px;
  }
}

#header .inner .logo a img {
  height: 50px;
}

@media screen and (max-width: 950px) {
  #header .inner .logo a img {
    height: 40px;
  }
}

#header .inner .navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  top: 7px;
}

@media screen and (max-width: 950px) {
  #header .inner .navigation {
    display: none;
  }
}

#header .inner .navigation nav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#header .inner .navigation nav ul li {
  word-break: keep-all;
  position: relative;
  padding: 5px 0;
}

#header .inner .navigation nav ul li a {
  font-size: 16px;
  padding: 5px 13px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1150px) {
  #header .inner .navigation nav ul li a {
    font-size: 15px;
    padding: 5px 10px;
  }
}

@media screen and (max-width: 1080px) {
  #header .inner .navigation nav ul li a {
    font-size: 14px;
    padding: 5px 7px;
  }
}

@media screen and (max-width: 990px) {
  #header .inner .navigation nav ul li a {
    padding: 5px;
  }
}

#header .inner .navigation nav ul li a:hover {
  color: #cb0000;
}

#header .inner .navigation nav ul li .childMenu {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 255px;
  opacity: 0;
  filter: alpha(opacity=0);
  background-color: #FFF;
  height: auto;
  z-index: 10;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
}

#header .inner .navigation nav ul li .childMenu li {
  width: 100%;
  margin: 0;
  padding: 0;
}

#header .inner .navigation nav ul li .childMenu li .childItem {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  position: relative;
  background-color: #FFF;
  font-size: 88%;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  border-bottom: 1px dashed #c4c4c4;
}

#header .inner .navigation nav ul li .childMenu li:last-child .childItem {
  border-bottom: 0;
}

#header .inner .navigation nav ul li:hover .childMenu {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #header .inner .navigation nav ul li .childMenu {
    width: auto;
  }
}

#header .inner .sns {
  padding-left: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#header .inner .sns a {
  margin: 0 5px;
}

#header .inner .iconNav {
  display: none;
}

@media screen and (max-width: 950px) {
  #header .inner .iconNav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding-right: 0;
    height: 64px;
    width: 64px;
    background-color: #7b3c14;
  }
}

#header .inner .iconNav .hamburger {
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}

#header .inner .iconNav .hamburger:focus {
  outline: none;
}

#header .inner .iconNav .hamburger:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

#header .inner .iconNav .hamburger .hamburger-box {
  width: 23px;
  height: 19px;
}

#header .inner .iconNav .hamburger .hamburger-box .hamburger-inner {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  width: 23px;
  height: 1px;
  background-color: #FFF;
}

#header .inner .iconNav .hamburger .hamburger-box .hamburger-inner:before {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  width: 23px;
  top: -8px;
  height: 1px;
  background-color: #FFF;
}

#header .inner .iconNav .hamburger .hamburger-box .hamburger-inner:after {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  width: 23px;
  height: 1px;
  background-color: #FFF;
}

#header .inner .iconNav .hamburger.hamburger--collapse .hamburger-inner:after {
  top: -16px;
}

#header .inner .iconNav .hamburger.is-active:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

#header .inner .iconNav .hamburger.is-active .hamburger-inner:before {
  top: 0;
}

#header .inner .iconNav .hamburger.is-active .hamburger-inner:after {
  top: 0;
}

#header .inner .iconNav .hamburger.is-active .textMenu {
  display: none;
}

#header .inner .iconNav .hamburger.is-active .textClose {
  display: block;
}

#header.scroll {
  background-color: #FFF;
}

/* NAV SP */
.navSp {
  display: none;
}

@media screen and (max-width: 950px) {
  .navSp {
    position: fixed;
    top: 65px;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 0 0 100px;
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  .navSp {
    top: 60px;
  }
}

.navSp ul.firstRow {
  width: 100%;
  margin-bottom: 30px;
}

.navSp ul.firstRow li {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #cb0000;
}

.navSp ul.firstRow li a {
  width: 100%;
  height: 45px;
  word-break: keep-all;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 0 20px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.navSp ul.firstRow li a span {
  word-break: keep-all;
}

.navSp ul.firstRow li a i {
  font-size: 18px;
  color: #cb0000;
}

.navSp ul.firstRow li a i.up {
  display: none;
}

.navSp ul.firstRow li .subMenu {
  display: none;
  width: 100%;
}

.navSp ul.firstRow li .subMenu li {
  line-height: 1;
  border-bottom: 0;
  border-bottom: 1px dashed #c4c4c4;
}

.navSp ul.firstRow li .subMenu li:first-child {
  border-top: 1px solid #cb0000;
}

.navSp ul.firstRow li .subMenu li:last-child {
  border-bottom: 0;
}

.navSp ul.firstRow li .subMenu li a {
  padding: 8px 15px;
  padding-left: 25px;
  width: 100%;
  display: block;
  position: relative;
  height: auto;
  line-height: 1.5;
}

.navSp ul.firstRow li .nav-change {
  border-radius: 11px 11px 0 0;
  -webkit-border-radius: 11px 11px 0 0;
  -moz-border-radius: 11px 11px 0 0;
}

.navSp ul.firstRow li .nav-change i.down {
  display: none;
}

.navSp ul.firstRow li .nav-change i.up {
  display: block;
}

.navSp .sns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.navSp .sns a {
  margin: 0 5px;
}

/*MAINVISUAL*/
#mainvisual {
  position: relative;
}

#mainvisual.topPage {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}

#mainvisual.topPage .imageItem {
  width: 100vw;
  height: 100vh;
}

#mainvisual.topPage .inner {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media screen and (max-width: 950px) {
  #mainvisual.topPage .inner {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  #mainvisual.topPage .inner {
    width: 200px;
    height: 200px;
  }
}

#mainvisual.topPage .inner h2 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  color: #FFF;
  font-size: 60px;
  line-height: 1.3;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  word-break: keep-all;
}

@media screen and (max-width: 950px) {
  #mainvisual.topPage .inner h2 {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  #mainvisual.topPage .inner h2 {
    font-size: 35px;
  }
}

#mainvisual.topPage .iconScroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

#mainvisual.topPage .iconScroll i {
  font-size: 50px;
  -webkit-animation: scrollIcon 1.8s infinite;
  animation: scrollIcon 1.8s infinite;
}

#mainvisual.productList {
  margin-top: 78px;
  background-image: url(../img/mainvisual/product-list.jpg);
  width: 100%;
  height: 392px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  #mainvisual.productList {
    height: 300px;
  }
}

@media screen and (max-width: 950px) {
  #mainvisual.productList {
    margin-top: 64px;
    height: 250px;
  }
}

@media screen and (max-width: 480px) {
  #mainvisual.productList {
    background-position: 70%;
  }
}

#mainvisual.productList .inner h1 {
  color: #331700;
  font-size: 36px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 5px #FFF;
}

@media screen and (max-width: 950px) {
  #mainvisual.productList .inner h1 {
    font-size: 30px;
  }
}

#mainvisual.sub_mv {
  margin-top: 78px;
  background-image: url(../img/mainvisual/sub_mv.jpg);
  width: 100%;
  height: 392px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  #mainvisual.sub_mv {
    height: 300px;
  }
}

@media screen and (max-width: 950px) {
  #mainvisual.sub_mv {
    margin-top: 64px;
    height: 250px;
  }
}

#mainvisual.sub_mv .inner h1 {
  color: #331700;
  font-size: 36px;
  letter-spacing: 3px;
  text-shadow: 0px 0px 20px #Fafafa;
}

@media screen and (max-width: 950px) {
  #mainvisual.sub_mv .inner h1 {
    font-size: 30px;
  }
}

#mainvisual.sub_mv0 {
  margin-top: 78px;
  background-image: url(../img/mainvisual/sub_mv0.jpg);
  width: 100%;
  height: 392px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  #mainvisual.sub_mv0 {
    height: 300px;
  }
}

@media screen and (max-width: 950px) {
  #mainvisual.sub_mv0 {
    margin-top: 64px;
    height: 250px;
  }
}

#mainvisual.sub_mv0 .inner h1 {
  color: #331700;
  font-size: 36px;
  letter-spacing: 3px;
  text-shadow: 0px 0px 20px #Fafafa;
}

@media screen and (max-width: 950px) {
  #mainvisual.sub_mv0 .inner h1 {
    font-size: 30px;
  }
}

#mainvisual.process_mv {
  margin-top: 78px;
  background-image: url(../img/mainvisual/processPage_mv.jpg);
  width: 100%;
  height: 392px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-position: center;
}

@media screen and (max-width: 1024px) {
  #mainvisual.process_mv {
    height: 300px;
  }
}

@media screen and (max-width: 950px) {
  #mainvisual.process_mv {
    margin-top: 64px;
    height: 250px;
    background-position: 15%;
  }
}

#mainvisual.process_mv .inner h1 {
  color: #331700;
  font-size: 36px;
  letter-spacing: 3px;
  text-shadow: 0px 0px 20px #Fafafa;
}

@media screen and (max-width: 950px) {
  #mainvisual.process_mv .inner h1 {
    font-size: 30px;
  }
}

/*-----BREADCRUMB-----*/
.breadcrumbPage {
  word-break: keep-all;
  padding: 15px 0;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.breadcrumbPage ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 480px) {
  .breadcrumbPage ul {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.breadcrumbPage ul li {
  font-size: 13px;
  letter-spacing: 1px;
}

.breadcrumbPage ul li span {
  margin: 0px 10px 0 5px;
}

.breadcrumbPage ul li a.active {
  text-decoration: underline;
}

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

#footer .firstRow {
  background-color: #ededed;
  padding: 50px 0 40px;
}

@media screen and (max-width: 480px) {
  #footer .firstRow {
    padding: 5% 0;
  }
}

#footer .firstRow .inner {
  padding: 0 60px;
}

@media screen and (max-width: 1280px) {
  #footer .firstRow .inner {
    padding: 0 0;
  }
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner {
    padding: 0;
  }
}

#footer .firstRow .inner .site {
  font-size: 16px;
  font-weight: bold;
  color: #cb0000;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #footer .firstRow .inner .site {
    display: none;
  }
}

#footer .firstRow .inner .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#footer .firstRow .inner .box .navLeft {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 30px;
  border-right: 1px dashed;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navLeft {
    border-right: 0;
    padding-right: 0;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  #footer .firstRow .inner .box .navLeft {
    display: none;
  }
}

#footer .firstRow .inner .box .navLeft .first {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

#footer .firstRow .inner .box .navLeft .first ul:first-child {
  margin-right: 15px;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navLeft .first ul:first-child {
    margin-right: 10px;
  }
}

#footer .firstRow .inner .box .navLeft .first ul:nth-child(2) {
  margin-right: 15px;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navLeft .first ul:nth-child(2) {
    margin-right: 10px;
  }
}

#footer .firstRow .inner .box .navLeft .first ul:nth-child(3) {
  margin-right: 15px;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navLeft .first ul:nth-child(3) {
    margin-right: 10px;
  }
}

#footer .firstRow .inner .box .navLeft .first ul:nth-child(4) {
  margin-right: 15px;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navLeft .first ul:nth-child(4) {
    margin-right: 10px;
  }
}

#footer .firstRow .inner .box .navLeft .first ul li {
  word-break: keep-all;
  margin-bottom: 15px;
}

#footer .firstRow .inner .box .navLeft .first ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#footer .firstRow .inner .box .navLeft .first ul li a:hover {
  color: #cb0000;
}

#footer .firstRow .inner .box .navLeft .first ul li a span {
  margin-right: 5px;
  color: #cb0000;
}

#footer .firstRow .inner .box .navLeft .second {
  margin-bottom: 10px;
}

#footer .firstRow .inner .box .navLeft .second .top {
  word-break: keep-all;
  margin-bottom: 5px;
}

#footer .firstRow .inner .box .navLeft .second .top a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#footer .firstRow .inner .box .navLeft .second .top a:hover {
  color: #cb0000;
}

#footer .firstRow .inner .box .navLeft .second .top a span {
  margin-right: 5px;
  color: #cb0000;
}

#footer .firstRow .inner .box .navLeft .second .list {
  padding-left: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

#footer .firstRow .inner .box .navLeft .second .list ul:first-child {
  margin-right: 25px;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navLeft .second .list ul:first-child {
    margin-right: 15px;
  }
}

#footer .firstRow .inner .box .navLeft .second .list ul:nth-child(2) {
  margin-right: 25px;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navLeft .second .list ul:nth-child(2) {
    margin-right: 15px;
  }
}

#footer .firstRow .inner .box .navLeft .second .list ul li {
  word-break: keep-all;
}

#footer .firstRow .inner .box .navLeft .second .list ul li a {
  font-size: 12px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#footer .firstRow .inner .box .navLeft .second .list ul li a:hover {
  color: #cb0000;
}

#footer .firstRow .inner .box .navLeft .third .top {
  word-break: keep-all;
  margin-bottom: 5px;
}

#footer .firstRow .inner .box .navLeft .third .top a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#footer .firstRow .inner .box .navLeft .third .top a:hover {
  color: #cb0000;
}

#footer .firstRow .inner .box .navLeft .third .top a span {
  margin-right: 5px;
  color: #cb0000;
}

#footer .firstRow .inner .box .navLeft .third .list {
  padding-left: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

#footer .firstRow .inner .box .navLeft .third .list ul:first-child {
  margin-right: 35px;
}

#footer .firstRow .inner .box .navLeft .third .list ul:nth-child(2) {
  margin-right: 35px;
}

#footer .firstRow .inner .box .navLeft .third .list ul:nth-child(3) {
  margin-right: 35px;
}

#footer .firstRow .inner .box .navLeft .third .list ul:nth-child(4) {
  margin-right: 35px;
}

#footer .firstRow .inner .box .navLeft .third .list ul:nth-child(5) {
  margin-right: 35px;
}

#footer .firstRow .inner .box .navLeft .third .list ul li {
  word-break: keep-all;
}

#footer .firstRow .inner .box .navLeft .third .list ul li a {
  font-size: 12px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#footer .firstRow .inner .box .navLeft .third .list ul li a:hover {
  color: #cb0000;
}

#footer .firstRow .inner .box .navRight {
  width: 267px;
  padding-left: 45px;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navRight {
    padding-left: 0;
    max-width: 549px;
    width: 100%;
    margin: auto;
  }
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navRight ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#footer .firstRow .inner .box .navRight ul li {
  margin-bottom: 7px;
}

@media screen and (max-width: 480px) {
  #footer .firstRow .inner .box .navRight ul li {
    width: 48.5%;
    margin-bottom: 3%;
  }
  #footer .firstRow .inner .box .navRight ul li:nth-child(3) {
    margin-bottom: 0;
  }
}

#footer .firstRow .inner .box .navRight ul li a img {
  width: 100%;
}

#footer .firstRow .inner .box .navRight ul li a img.SP {
  display: none;
}

@media screen and (max-width: 950px) {
  #footer .firstRow .inner .box .navRight ul li a img.PC {
    display: none;
  }
  #footer .firstRow .inner .box .navRight ul li a img.SP {
    display: block;
  }
}

#footer .firstRow .inner .box .navRight ul li:first-child a img {
  width: auto;
}

#footer .firstRow .inner .box .navRight ul li:last-child {
  margin-bottom: 0;
}

#footer .secondRow {
  background-color: #3d3d3d;
  padding: 15px 0;
}

#footer .secondRow p {
  text-align: center;
  color: #FFF;
  font-size: 12px;
}

@media screen and (max-width: 480px) {
  #footer .secondRow p {
    font-size: 10px;
  }
}

.pageTop {
  background-image: url(../img/bg/backgroundHeader.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  right: 0;
  bottom: 118px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #333;
  color: #FFF;
  cursor: pointer;
  z-index: 99;
}

.pageTop i {
  font-size: 24px;
}

@media screen and (max-width: 480px) {
  .pageTop {
    width: 40px;
    height: 40px;
    bottom: 48px;
  }
}

#main.topPage .firstRow {
  padding: 90px 0 90px;
}

@media screen and (max-width: 767px) {
  #main.topPage .firstRow {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  #main.topPage .firstRow {
    padding: 40px 0;
  }
}

#main.topPage .firstRow .inner {
  width: 570px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #main.topPage .firstRow .inner {
    width: 100%;
  }
}

#main.topPage .firstRow .inner h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  line-height: 1;
}

@media screen and (max-width: 480px) {
  #main.topPage .firstRow .inner h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

#main.topPage .firstRow .inner ul {
  margin-bottom: 35px;
}

#main.topPage .firstRow .inner ul li a {
  border-bottom: 1px dashed #afafaf;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 5.5px 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 480px) {
  #main.topPage .firstRow .inner ul li a {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#main.topPage .firstRow .inner ul li a p {
  width: 125px;
  padding: 0 20px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}

@media screen and (max-width: 480px) {
  #main.topPage .firstRow .inner ul li a p {
    width: 100%;
    padding: 0;
    font-size: 14px;
  }
}

#main.topPage .firstRow .inner ul li a h2 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px;
  font-size: 19px;
}

@media screen and (max-width: 480px) {
  #main.topPage .firstRow .inner ul li a h2 {
    font-size: 16px;
    padding: 0;
    -webkit-box-flex: unset;
    -moz-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}

#main.topPage .firstRow .inner ul li a:hover h2 {
  text-decoration: underline;
}

#main.topPage .secondRow {
  background-image: url(../img/topPage/bgProduct.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#main.topPage .secondRow .inner {
  height: 12vw;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  #main.topPage .secondRow .inner {
    height: 150px;
  }
}

@media screen and (max-width: 480px) {
  #main.topPage .secondRow .inner {
    height: 150px;
  }
}

#main.topPage .secondRow .inner h2 {
  color: #FFF;
  font-size: 36px;
  letter-spacing: 1px;
}

@media screen and (max-width: 1200px) {
  #main.topPage .secondRow .inner h2 {
    font-size: 30px;
  }
}

#main.topPage .thirdRow {
  padding: 40px 0;
}

@media screen and (max-width: 480px) {
  #main.topPage .thirdRow {
    padding: 30px 0;
  }
}

#main.topPage .thirdRow .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 950px) {
  #main.topPage .thirdRow .inner {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#main.topPage .thirdRow .inner a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  font-size: 13px;
  margin: 0 15px;
}

@media screen and (max-width: 950px) {
  #main.topPage .thirdRow .inner a {
    width: 13%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  #main.topPage .thirdRow .inner a {
    width: 19%;
    margin: 0;
    margin-bottom: 15px;
  }
}

#main.topPage .thirdRow .inner a img {
  height: 45px;
  margin-bottom: 5px;
}

#main.topPage .thirdRow .inner a span {
  word-break: keep-all;
}

#main.topPage .thirdRow .inner a span br {
  display: none;
}

@media screen and (max-width: 950px) {
  #main.topPage .thirdRow .inner a span br {
    display: block;
  }
}

#main.topPage .fourthRow {
  padding-bottom: 95px;
}

@media screen and (max-width: 480px) {
  #main.topPage .fourthRow {
    padding-bottom: 40px;
  }
}

#main.topPage .fourthRow .sliderTop {
  display: none;
}

#main.topPage .fourthRow .sliderTop .caroufredsel_wrapper {
  width: 100% !important;
}

#main.topPage .fourthRow .sliderTop #carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

#main.topPage .fourthRow .sliderTop #carousel .item {
  width: 17.6vw;
  height: 13.2vw;
  float: left;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 950px) {
  #main.topPage .fourthRow .sliderTop #carousel .item {
    width: 24.6vw;
    height: 20.2vw;
  }
}

@media screen and (max-width: 480px) {
  #main.topPage .fourthRow .sliderTop #carousel .item {
    width: 30.6vw;
    height: 26.2vw;
  }
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img1 {
  background-image: url(../img/topPage/gallery/gallery-1.png);
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img2 {
  background-image: url(../img/topPage/gallery/gallery-2.png);
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img3 {
  background-image: url(../img/topPage/gallery/gallery-3.png);
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img4 {
  background-image: url(../img/topPage/gallery/gallery-4.png);
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img5 {
  background-image: url(../img/topPage/gallery/gallery-1.png);
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img6 {
  background-image: url(../img/topPage/gallery/gallery-2.png);
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img7 {
  background-image: url(../img/topPage/gallery/gallery-3.png);
}

#main.topPage .fourthRow .sliderTop #carousel .item .bg.img8 {
  background-image: url(../img/topPage/gallery/gallery-4.png);
}

#main.topPage .fifthRow .inner {
  position: relative;
}

#main.topPage .fifthRow .inner .content {
  background-color: #ededed;
  padding: 100px 6.3% 70px;
  float: left;
  width: 60.2%;
}

@media screen and (max-width: 1200px) {
  #main.topPage .fifthRow .inner .content {
    padding: 100px 30px 70px;
  }
}

@media screen and (max-width: 950px) {
  #main.topPage .fifthRow .inner .content {
    width: 100%;
    padding: 0;
    background-color: #FFF;
  }
}

#main.topPage .fifthRow .inner .content .imgSp {
  display: none;
}

@media screen and (max-width: 950px) {
  #main.topPage .fifthRow .inner .content .imgSp {
    display: block;
    width: 100%;
  }
}

#main.topPage .fifthRow .inner .content .inn {
  width: 80%;
}

@media screen and (max-width: 1200px) {
  #main.topPage .fifthRow .inner .content .inn {
    width: 85%;
  }
}

@media screen and (max-width: 950px) {
  #main.topPage .fifthRow .inner .content .inn {
    width: 100%;
    padding: 30px;
  }
}

@media screen and (max-width: 480px) {
  #main.topPage .fifthRow .inner .content .inn {
    padding: 15px;
  }
}

#main.topPage .fifthRow .inner .content .inn .heading {
  margin-bottom: 35px;
}

@media screen and (max-width: 480px) {
  #main.topPage .fifthRow .inner .content .inn .heading {
    margin-bottom: 20px;
  }
}

#main.topPage .fifthRow .inner .content .inn .heading p {
  color: #cb0000;
  font-size: 10px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  #main.topPage .fifthRow .inner .content .inn .heading p {
    margin-bottom: 10px;
  }
}

#main.topPage .fifthRow .inner .content .inn .heading h2 {
  font-size: 26px;
  letter-spacing: 3px;
  word-break: keep-all;
}

@media screen and (max-width: 1200px) {
  #main.topPage .fifthRow .inner .content .inn .heading h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  #main.topPage .fifthRow .inner .content .inn .heading h2 {
    font-size: 20px;
  }
}

#main.topPage .fifthRow .inner .content .inn .desc {
  margin-bottom: 25px;
}

#main.topPage .fifthRow .inner .content .inn .desc p {
  line-height: 2;
  font-size: 14px;
}

#main.topPage .fifthRow .inner .content .inn .button {
  margin-right: 0;
}

#main.topPage .fifthRow .inner .bigImg {
  width: 43.7%;
  position: absolute;
  top: 50%;
  right: 6.3%;
  transform: translate(0, -50%);
}

@media screen and (max-width: 1200px) {
  #main.topPage .fifthRow .inner .bigImg {
    right: 5%;
  }
}

@media screen and (max-width: 950px) {
  #main.topPage .fifthRow .inner .bigImg {
    display: none;
  }
}

#main.topPage .sixthRow {
  padding: 70px 0 50px;
}

@media screen and (max-width: 480px) {
  #main.topPage .sixthRow {
    padding: 15px 0 30px;
  }
}

@media screen and (max-width: 950px) {
  #main.topPage .sixthRow .cont {
    padding: 0;
  }
}

#main.topPage .sixthRow .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 950px) {
  #main.topPage .sixthRow .inner {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#main.topPage .sixthRow .inner .image {
  width: 50%;
}

#main.topPage .sixthRow .inner .image img {
  width: 100%;
}

@media screen and (max-width: 950px) {
  #main.topPage .sixthRow .inner .image {
    width: 100%;
  }
}

#main.topPage .sixthRow .inner .content {
  width: 50%;
  padding-top: 30px;
  padding-left: 85px;
}

@media screen and (max-width: 1200px) {
  #main.topPage .sixthRow .inner .content {
    padding-top: 0;
    padding-left: 50px;
  }
}

@media screen and (max-width: 950px) {
  #main.topPage .sixthRow .inner .content {
    width: 100%;
    padding: 30px;
  }
}

@media screen and (max-width: 480px) {
  #main.topPage .sixthRow .inner .content {
    padding: 15px;
  }
}

#main.topPage .sixthRow .inner .content .heading {
  margin-bottom: 35px;
}

@media screen and (max-width: 480px) {
  #main.topPage .sixthRow .inner .content .heading {
    margin-bottom: 20px;
  }
}

#main.topPage .sixthRow .inner .content .heading p {
  color: #cb0000;
  font-size: 10px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin-bottom: 20px;
}

#main.topPage .sixthRow .inner .content .heading h2 {
  font-size: 26px;
  letter-spacing: 3px;
  word-break: keep-all;
}

@media screen and (max-width: 480px) {
  #main.topPage .sixthRow .inner .content .heading h2 {
    font-size: 20px;
  }
}

#main.topPage .sixthRow .inner .content .desc {
  margin-bottom: 25px;
}

#main.topPage .sixthRow .inner .content .desc p {
  line-height: 2;
  font-size: 14px;
}

#main.topPage .sixthRow .inner .content .button {
  margin-right: 0;
}

#main.topPage .seventhRow h2 {
  color: #e50012;
}

#main.topPage .seventhRow .inner {
  width: 100%;
  height: 15.2vw;
  border: 1px solid #d5d5d5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 480px) {
  #main.topPage .seventhRow .inner {
    height: 250px;
  }
}

#main.topPage .seventhRow .inner h3 {
  font-size: 30px;
  color: #a3a3a3;
}

@media screen and (max-width: 480px) {
  #main.topPage .seventhRow .inner h3 {
    font-size: 24px;
  }
}

#main.topPage .eightRow {
  padding: 60px 0;
}

#main.topPage .eightRow .inner {
  width: 670px;
  margin: auto;
  border: 1px solid #7b3c14;
  border-left: 0;
  border-right: 0;
  padding: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  #main.topPage .eightRow .inner {
    width: 100%;
  }
}

#main.topPage .eightRow .inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #7b3c14;
  top: -5px;
  left: 0;
}

#main.topPage .eightRow .inner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #7b3c14;
  bottom: -5px;
  left: 0;
}

#main.topPage .eightRow .inner .tel {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  #main.topPage .eightRow .inner .tel {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}

#main.topPage .eightRow .inner .tel p {
  width: 147px;
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 30px;
  color: #7b3c14;
  border: 1px solid #7b3c14;
  font-size: 15px;
}

@media screen and (max-width: 480px) {
  #main.topPage .eightRow .inner .tel p {
    margin-bottom: 15px;
  }
}

#main.topPage .eightRow .inner .tel img {
  height: 40px;
  margin-left: 10px;
}

@media screen and (max-width: 480px) {
  #main.topPage .eightRow .inner .tel img {
    margin-left: 0;
  }
}

#main.topPage .eightRow .inner .schedule {
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 20px;
}

#main.topPage .eightRow .inner ul {
  padding-left: 15px;
}

#main.topPage .eightRow .inner ul li {
  list-style-type: disc;
  color: #7a7a7a;
  font-size: 12px;
}

#main.topPage .eightRow .inner ul li a {
  text-decoration: underline;
}

#main.topPage .eightRow .inner ul li a:hover {
  text-decoration: none !important;
}

#main.productList .firstRow {
  padding: 25px 0;
}

#main.productList .firstRow .inner .firstText {
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 950px) {
  #main.productList .firstRow .inner .firstText p {
    display: inline;
  }
}

#main.productList .secondRow {
  padding: 40px 0;
}

@media screen and (max-width: 480px) {
  #main.productList .secondRow {
    padding: 30px 0;
  }
}

#main.productList .secondRow .inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 950px) {
  #main.productList .secondRow .inner {
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
  }
}

#main.productList .secondRow .inner a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  font-size: 13px;
  margin: 0 15px;
}

@media screen and (max-width: 950px) {
  #main.productList .secondRow .inner a {
    width: 15%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  #main.productList .secondRow .inner a {
    width: 22%;
    margin: 0;
    margin-bottom: 15px;
  }
}

#main.productList .secondRow .inner a img {
  height: 70px;
  margin-bottom: 5px;
}

@media screen and (max-width: 480px) {
  #main.productList .secondRow .inner a img {
    height: 45px;
  }
}

#main.productList .secondRow .inner a span {
  word-break: keep-all;
}

#main.productList .secondRow .inner a span br {
  display: none;
}

@media screen and (max-width: 950px) {
  #main.productList .secondRow .inner a span br {
    display: block;
  }
}

#main.productList .thirdRow {
  padding: 50px 0 75px;
}

#main.productList .thirdRow .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 950px) {
  #main.productList .thirdRow .inner {
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
  }
}

@media screen and (max-width: 480px) {
  #main.productList .thirdRow .inner {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}

#main.productList .thirdRow .inner .item {
  width: 186px;
  margin: 0 25px 30px;
  text-align: center;
}

@media screen and (max-width: 950px) {
  #main.productList .thirdRow .inner .item {
    width: 150px;
    margin: 0 15px 30px;
  }
}

@media screen and (max-width: 480px) {
  #main.productList .thirdRow .inner .item {
    width: 47.5%;
    margin: 0 0 30px;
  }
}

#main.productList .thirdRow .inner .item a p {
  word-break: keep-all;
}

#main.productList .thirdRow .inner .item a .img {
  width: 100%;
  height: 163px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-bottom: 10px;
}

@media screen and (max-width: 950px) {
  #main.productList .thirdRow .inner .item a .img {
    height: 150px;
  }
}

@media screen and (max-width: 480px) {
  #main.productList .thirdRow .inner .item a .img {
    height: 42.75vw;
  }
}

#main.productList .thirdRow .inner .item a .img.img1 {
  background-image: url(../img/product/1.gif);
}

#main.productList .thirdRow .inner .item a .img.img2 {
  background-image: url(../img/product/2.jpg);
}

#main.productList .thirdRow .inner .item a .img.img3 {
  background-image: url(../img/product/3.jpg);
}

#main.productList .thirdRow .inner .item a .img.img4 {
  background-image: url(../img/product/4.jpg);
}

#main.productList .thirdRow .inner .item a .img.img5 {
  background-image: url(../img/product/5.jpg);
}

#main.productList .thirdRow .inner .item a .img.img6 {
  background-image: url(../img/product/6.jpg);
}

#main.productList .thirdRow .inner .item a .img.img7 {
  background-image: url(../img/product/7.jpg);
}

#main.productList .thirdRow .inner .item a .img.img8 {
  background-image: url(../img/product/8.gif);
}

#main.productList .thirdRow .inner .item a .img.img9 {
  background-image: url(../img/product/product-dummy.png);
}

#main.productCategory .headTitle {
  text-align: center;
  margin: 50px 0 0;
}

@media screen and (max-width: 950px) {
  #main.productCategory .headTitle {
    margin: 20px 0 0;
  }
}

#main.productCategory .headTitle img {
  margin-bottom: 10px;
}

#main.productCategory .headTitle h2 {
  font-size: 34px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  #main.productCategory .headTitle h2 {
    font-size: 20px;
  }
}

#main.productCategory .inner .listProduct {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 950px) {
  #main.productCategory .inner .listProduct {
    margin-bottom: 50px;
  }
}

#main.productCategory .inner .listProduct .item {
  width: 33%;
  text-align: center;
  padding: 0 5%;
  margin-top: 50px;
}

@media screen and (max-width: 950px) {
  #main.productCategory .inner .listProduct .item {
    padding: 0 2%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  #main.productCategory .inner .listProduct .item {
    width: 48.5%;
    padding: 0;
  }
}

#main.productCategory .inner .listProduct .item .img {
  width: 100%;
  height: 180px;
  background-image: url(../img/product/4.jpg);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  margin-bottom: 15px;
}

@media screen and (max-width: 950px) {
  #main.productCategory .inner .listProduct .item .img {
    height: 150px;
  }
}

@media screen and (max-width: 767px) {
  #main.productCategory .inner .listProduct .item .img {
    height: 30vw;
  }
}

#main.productCategory .inner .listProduct .item h2 {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 950px) {
  #main.productCategory .inner .listProduct .item h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  #main.productCategory .inner .listProduct .item h2 {
    font-size: 16px;
  }
}

#main.productItem .pd {
  padding-top: 30px;
  margin-top: 78px;
}

@media screen and (max-width: 950px) {
  #main.productItem .pd {
    margin-top: 64px;
  }
}

#main.productItem .firstRow {
  position: relative;
  margin-bottom: 65px;
}

@media screen and (max-width: 480px) {
  #main.productItem .firstRow {
    margin-bottom: 50px;
  }
}

#main.productItem .firstRow .inner {
  position: relative;
}

#main.productItem .firstRow .inner .bigImg {
  position: absolute;
  top: 0;
  left: 6.3%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  z-index: 5;
}

@media screen and (max-width: 1200px) {
  #main.productItem .firstRow .inner .bigImg {
    left: 5%;
  }
}

@media screen and (max-width: 950px) {
  #main.productItem .firstRow .inner .bigImg {
    left: auto;
    position: relative;
    padding: 0 5%;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .firstRow .inner .bigImg {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#main.productItem .firstRow .inner .bigImg .image {
  background-image: url(../img/product/product-item.png);
  width: 35.8vw;
  height: 26.8vw;
  border-left: 1px solid #EEE;
  border-right: 1px solid #EEE;
  margin-right: 50px;
}

@media screen and (max-width: 950px) {
  #main.productItem .firstRow .inner .bigImg .image {
    width: 48.5%;
    margin-right: 0;
    height: 33vw;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .firstRow .inner .bigImg .image {
    width: 100%;
    height: 67vw;
    margin-bottom: 30px;
  }
}

#main.productItem .firstRow .inner .bigImg .content {
  padding-top: 30px;
}

@media screen and (max-width: 1200px) {
  #main.productItem .firstRow .inner .bigImg .content {
    padding-top: 0;
  }
}

@media screen and (max-width: 950px) {
  #main.productItem .firstRow .inner .bigImg .content {
    width: 48.5%;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .firstRow .inner .bigImg .content {
    width: 100%;
  }
}

#main.productItem .firstRow .inner .bigImg .content h2 {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  #main.productItem .firstRow .inner .bigImg .content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

#main.productItem .firstRow .inner .bigImg .content div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

#main.productItem .firstRow .inner .bigImg .content div img:last-child {
  margin-left: 15px;
}

#main.productItem .firstRow .inner .contentBg {
  padding-top: 16vw;
  float: right;
  width: 73.8%;
}

@media screen and (max-width: 950px) {
  #main.productItem .firstRow .inner .contentBg {
    padding-top: 30px;
    width: 100%;
    float: unset;
  }
}

#main.productItem .firstRow .inner .contentBg .inner {
  background-color: #ededed;
  padding: 40px 80px 30px 27%;
}

@media screen and (max-width: 1200px) {
  #main.productItem .firstRow .inner .contentBg .inner {
    padding: 40px 30px 30px 27%;
  }
}

@media screen and (max-width: 950px) {
  #main.productItem .firstRow .inner .contentBg .inner {
    padding: 40px;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .firstRow .inner .contentBg .inner {
    padding: 30px;
  }
}

#main.productItem .firstRow .inner .contentBg .inner .firstText {
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 2;
  margin-bottom: 30px;
}

#main.productItem .firstRow .inner .contentBg .inner .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}

#main.productItem .firstRow .inner .contentBg .inner .title .arrow {
  width: 15px;
  height: 15px;
  background-color: #c60a0e;
  color: #FFF;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 5px;
}

#main.productItem .firstRow .inner .contentBg .inner .title .arrow i {
  font-size: 10px;
  position: relative;
  left: 1px;
  top: -1px;
}

#main.productItem .firstRow .inner .contentBg .inner .title h2 {
  font-weight: 900;
  line-height: 1;
}

#main.productItem .firstRow .inner .contentBg .inner .lastText {
  font-size: 13px;
  line-height: 1.8;
}

#main.productItem .secondRow {
  margin-bottom: 125px;
}

@media screen and (max-width: 950px) {
  #main.productItem .secondRow {
    margin-bottom: 75px;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .secondRow {
    margin-bottom: 50px;
  }
}

#main.productItem .secondRow .inner {
  padding: 0 75px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 1024px) {
  #main.productItem .secondRow .inner {
    padding: 0;
  }
}

@media screen and (max-width: 950px) {
  #main.productItem .secondRow .inner {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}

#main.productItem .secondRow .inner .item {
  width: 47%;
}

@media screen and (max-width: 950px) {
  #main.productItem .secondRow .inner .item {
    width: 75%;
  }
  #main.productItem .secondRow .inner .item:last-child {
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .secondRow .inner .item {
    width: 100%;
  }
}

#main.productItem .secondRow .inner .item .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}

#main.productItem .secondRow .inner .item .title .arrow {
  width: 15px;
  height: 15px;
  background-color: #c60a0e;
  color: #FFF;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin-right: 5px;
}

#main.productItem .secondRow .inner .item .title .arrow i {
  font-size: 10px;
  position: relative;
  left: 1px;
  top: -1px;
}

#main.productItem .secondRow .inner .item .title h2 {
  word-break: keep-all;
  font-weight: 900;
  line-height: 1;
}

#main.productItem .secondRow .inner .item table {
  width: 100%;
}

#main.productItem .secondRow .inner .item table tr th {
  background-color: #f2e9da;
  font-size: 14px;
  text-align: center;
  padding: 9px 5px;
  border: 1px solid #aaaaaa;
}

#main.productItem .secondRow .inner .item table tr td {
  border: 1px solid #aaaaaa;
  text-align: center;
  font-size: 14px;
  padding: 14px 5px;
}

#main.productItem .thirdRow {
  padding-bottom: 75px;
}

#main.productItem .thirdRow .title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  line-height: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  #main.productItem .thirdRow .title {
    font-size: 24px;
  }
}

#main.productItem .thirdRow .title:before {
  content: '';
  position: absolute;
  top: 15px;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #b7b7b7;
  left: 0;
}

@media screen and (max-width: 480px) {
  #main.productItem .thirdRow .title:before {
    top: 12px;
  }
}

#main.productItem .thirdRow .title span {
  padding: 0 25px;
  background-color: #FFF;
  position: relative;
}

#main.productItem .thirdRow .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media screen and (max-width: 1024px) {
  #main.productItem .thirdRow .inner {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .thirdRow .inner {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}

#main.productItem .thirdRow .inner .item {
  width: 19%;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  #main.productItem .thirdRow .inner .item {
    width: 30%;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .thirdRow .inner .item {
    width: 47.5%;
  }
}

#main.productItem .thirdRow .inner .item a {
  width: 100%;
  display: block;
}

#main.productItem .thirdRow .inner .item a .image {
  margin-bottom: 15px;
  position: relative;
}

#main.productItem .thirdRow .inner .item a .image img {
  width: 100%;
}

#main.productItem .thirdRow .inner .item a .image span {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  background-color: #cb0000;
  font-size: 13px;
  padding: 6px 15px;
}

#main.productItem .thirdRow .inner .item a .image .img {
  width: 100%;
  height: 163px;
  margin-bottom: 10px;
}

@media screen and (max-width: 950px) {
  #main.productItem .thirdRow .inner .item a .image .img {
    height: 150px;
  }
}

@media screen and (max-width: 480px) {
  #main.productItem .thirdRow .inner .item a .image .img {
    height: 42.75vw;
  }
}

#main.productItem .thirdRow .inner .item a p {
  font-size: 14px;
}

#main.fresh_pure .firstRow {
  padding: 50px 0 75px;
}

@media screen and (max-width: 767px) {
  #main.fresh_pure .firstRow {
    padding: 20px 0 50px;
  }
}

#main.fresh_pure .firstRow .inner {
  max-width: 1120px;
  width: 100%;
  margin: auto;
}

#main.fresh_pure .firstRow .inner .firstText {
  line-height: 2;
}

#main.fresh_pure .firstRow .inner .firstText p {
  font-size: 18px;
  font-weight: bold;
  color: #803b2d;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #main.fresh_pure .firstRow .inner .firstText p {
    font-size: 16px;
  }
}

#main.fresh_pure .firstRow .inner .index_navi {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
  margin: auto;
}

#main.fresh_pure .firstRow .inner .index_navi li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-align: center;
  margin-top: 60px;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 1.66%;
  width: 32.2%;
}

@media screen and (max-width: 767px) {
  #main.fresh_pure .firstRow .inner .index_navi li {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}

#main.fresh_pure .firstRow .inner .index_navi li:nth-child(3n) {
  margin-right: 0;
}

#main.fresh_pure .firstRow .inner .index_navi li a {
  border: 2px solid #cb0000;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  min-height: 120px;
  padding: 25px;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 767px) {
  #main.fresh_pure .firstRow .inner .index_navi li a {
    min-height: 80px;
    padding: 15px;
  }
}

#main.fresh_pure .firstRow .inner .index_navi li a span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

#main.fresh_pure .firstRow .inner .index_navi li a:hover {
  background-color: #cb0000;
  color: #FFF;
}

#main.fresh_pure .firstRow .inner .index_navi li p {
  margin-top: 10px;
}

#main.job .firstRow {
  padding: 50px 0 75px;
}

@media screen and (max-width: 767px) {
  #main.job .firstRow {
    padding: 20px 0 50px;
  }
}

#main.job .firstRow .inner {
  max-width: 1120px;
  width: 100%;
  margin: auto;
}

#main.job .firstRow .inner .firstText {
  font-size: 18px;
  color: #803b2d;
  text-align: center;
  margin-bottom: 75px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #main.job .firstRow .inner .firstText {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  #main.job .firstRow .inner .firstText {
    margin-bottom: 50px;
  }
}

#main.job .firstRow .inner .listLink {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 480px) {
  #main.job .firstRow .inner .listLink {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#main.job .firstRow .inner .listLink .link {
  width: 50%;
  padding: 0 1.5%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 480px) {
  #main.job .firstRow .inner .listLink .link {
    width: 100%;
    padding: 0;
  }
  #main.job .firstRow .inner .listLink .link:last-child {
    margin-top: 50px;
  }
}

#main.job .firstRow .inner .listLink .link a {
  font-size: 20px;
  line-height: 2;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#main.job .firstRow .inner .listLink .link a:hover {
  color: #cb0000;
}

#main.rinen .firstRow {
  text-align: center;
  font-weight: 500;
  margin: 50px 0 25px 0;
}

#main.rinen .firstRow p {
  margin-bottom: 30px;
  font-size: 34px;
}

@media screen and (max-width: 767px) {
  #main.rinen .firstRow p {
    font-size: 20px;
  }
}

#main.rinen .firstRow img.img-rinen {
  width: 800px;
  height: auto;
  margin-bottom: 30px;
}

#main.rinen .secondRow {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 100px;
}

#main.rinen .secondRow .inner {
  line-height: 2;
}

#main.rinen .secondRow .text-freshPure {
  font-size: 60px;
  color: #cb0000;
}

@media screen and (max-width: 768px) {
  #main.rinen .secondRow .text-freshPure {
    font-size: 32px;
  }
}

#main.kbro3 .firstRow {
  text-align: center;
  font-weight: 500;
  margin: 50px 0 20px 0;
}

#main.kbro3 .firstRow p {
  margin-bottom: 15px;
  font-size: 34px;
}

@media screen and (max-width: 767px) {
  #main.kbro3 .firstRow p {
    font-size: 20px;
  }
}

#main.kbro3 .firstRow img {
  margin-bottom: 25px;
}

#main.kbro3 .secondRow {
  margin-top: 0;
  margin-bottom: 80px;
}

#main.kbro3 .secondRow p {
  margin-left: 200px;
}

@media screen and (max-width: 1190px) {
  #main.kbro3 .secondRow p {
    margin-left: 120px;
  }
}

@media screen and (max-width: 960px) {
  #main.kbro3 .secondRow p {
    margin-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  #main.kbro3 .secondRow p {
    margin-left: 0px;
  }
}

#main.kbro3 .secondRow img {
  height: 550px;
  width: auto;
}

@media screen and (max-width: 768px) {
  #main.kbro3 .secondRow img {
    margin-top: 20px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

#main.trance_fatty .firstRow {
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  margin: 25px 0 0 0;
}

@media screen and (max-width: 767px) {
  #main.trance_fatty .firstRow {
    font-size: 20px;
  }
}

#main.trance_fatty .secondRow {
  margin: 0px 15% 60px 15%;
  text-align: justify;
}

@media screen and (max-width: 1190px) {
  #main.trance_fatty .secondRow {
    margin: 0px 10% 60px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.trance_fatty .secondRow {
    margin: 0px 5% 60px 5%;
  }
}

#main.trance_fatty .secondRow .text-title {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  #main.trance_fatty .secondRow .text-title {
    font-size: 18px;
  }
}

#main.trance_fatty .secondRow .text-body {
  font-size: 16px;
  line-height: 2;
}

#main.trance_fatty .secondRow .text-body .img-trance_fatty {
  margin-bottom: 15px;
}

#main.trance_fatty .secondRow .text-body .tabel1-trance_fatty {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#main.trance_fatty .secondRow .text-body .tabel2-trance_fatty {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#main.trance_fatty .secondRow .text-body a {
  color: #0c70ce;
}

#main.about .firstRow {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin: 30px 0 0 0;
}

@media screen and (max-width: 767px) {
  #main.about .firstRow {
    font-size: 24px;
  }
}

#main.about .firstRow img {
  margin-top: 20px;
  margin-bottom: 20px;
}

#main.about .secondRow {
  margin: 20px 10% 15px 10%;
  text-align: justify;
}

@media screen and (max-width: 1190px) {
  #main.about .secondRow {
    margin: 0px 10% 60px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.about .secondRow {
    margin: 0px 5% 20px 5%;
  }
}

#main.about .secondRow table tbody th {
  border-bottom: 1.5px solid #cb0000;
  border-top: 1.5px solid #cb0000;
  padding: 4px 30px;
  font-size: 18px;
  color: #cb0000;
  font-weight: 600;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  #main.about .secondRow table tbody th {
    display: block;
    width: 100%;
    background-color: #cb0000;
    color: #FFF;
    text-align: center;
    padding: 6px 15px;
  }
}

#main.about .secondRow table tbody td {
  border-bottom: 1.5px solid #e4e4e4;
  padding: 4px 30px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #main.about .secondRow table tbody td {
    display: block;
    width: 100%;
    padding: 5px 15px;
  }
}

@media screen and (max-width: 480px) {
  #main.about .secondRow table {
    font-size: 14px;
  }
}

#main.about .thirdRow {
  margin: 20px 10% 15px 10%;
  text-align: justify;
}

@media screen and (max-width: 1190px) {
  #main.about .thirdRow {
    margin: 0px 10% 60px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.about .thirdRow {
    margin: 0px 5% 60px 5%;
  }
}

#main.about .thirdRow .location > div {
  margin-top: 20px;
}

#main.about .thirdRow .location .aboutImage {
  width: 100%;
  height: 14.462vw;
}

@media screen and (max-width: 768px) {
  #main.about .thirdRow .location .aboutImage {
    margin-top: 6px;
    margin-bottom: 6px;
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  #main.about .thirdRow .location .aboutImage {
    margin-top: 6px;
    margin-bottom: 6px;
    height: 200px;
  }
}

#main.about .thirdRow .location .title-location {
  background-color: #7B3C14;
  height: 45px;
  color: white;
  display: flex;
  align-items: center;
}

#main.about .thirdRow .location .title-location .img-title-location {
  padding: 3px 15px;
}

#main.about .thirdRow .location .map-location > div {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  #main.about .thirdRow .location .map-location > div {
    margin-top: 6px;
    margin-bottom: 6px;
  }
}

@media screen and (min-width: 768px) {
  #main.about .thirdRow .location .map-location .col-sm-5 {
    padding-right: 5px !important;
  }
}

#main.about .thirdRow .location .map-location .col-sm-5 img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #main.about .thirdRow .location .map-location .col-sm-7 {
    padding-left: 5px !important;
  }
}

#main.about .thirdRow .location .map-location .col-sm-7 img {
  width: 100%;
}

#main.about .thirdRow .location iframe {
  margin-top: 12px;
  width: 100%;
  height: 14.462vw;
}

@media screen and (max-width: 768px) {
  #main.about .thirdRow .location iframe {
    margin-top: 6px;
    margin-bottom: 6px;
    height: 200px;
  }
}

#main.about .thirdRow .location .button {
  margin-top: 10px;
}

#main.about .fourthRow {
  font-weight: 599;
  margin: 10px 10% 0px 10%;
}

#main.about .fourthRow .timeline-box {
  position: relative;
  width: 100%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 170px;
  padding-bottom: 5px;
  z-index: 1;
}

#main.about .fourthRow .timeline-box h3 {
  background-color: #ffffff;
  font-size: 45px;
  text-align: center;
  font-weight: 900;
  font-style: italic;
  font-family: 'Roboto';
  color: #CB0002;
  line-height: 1.4;
  margin-bottom: 0px;
}

@media screen and (max-width: 1140px) {
  #main.about .fourthRow .timeline-box h3 {
    display: flex;
    flex-direction: row;
  }
  #main.about .fourthRow .timeline-box h3 .title-img {
    margin-top: 0px;
    margin-left: 25px;
    padding-top: 12px;
    width: 26px;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  #main.about .fourthRow .timeline-box h3 .title-img {
    width: 18px;
    height: auto;
    line-height: 32px;
  }
}

#main.about .fourthRow .timeline-box h3 .title-img {
  margin-top: -18px;
  padding-bottom: 8px;
}

#main.about .fourthRow .timeline-box:before {
  background: #e6e6e6;
  box-sizing: border-box;
  content: '';
  height: 100%;
  left: 50%;
  margin: 0 0 0 -1px;
  position: absolute;
  top: 0;
  width: 5px;
  z-index: -1;
}

#main.about .fourthRow .vertical-timeline {
  position: relative;
}

#main.about .fourthRow .timeline-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  font-size: 16px;
  font-feature-settings: 'palt';
  height: auto;
  overflow: hidden;
  margin: 15px 0;
}

#main.about .fourthRow .timeline-content span {
  font-weight: bold;
  padding-right: 17px;
  color: #CB0002;
  word-break: keep-all;
  display: inline-block;
}

#main.about .fourthRow .timeline-content .right {
  width: 40%;
}

#main.about .fourthRow .timeline-content .left {
  margin-left: 4%;
}

#main.about .fourthRow .timeline-icon {
  position: absolute;
  width: 150px;
  height: 2px;
  border-bottom: 3px dotted #d4d4d4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#main.about .fourthRow .timeline-icon:before {
  position: absolute;
  left: 43%;
  top: -11px;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #CB0002;
  border: 2px solid #ffffff;
  display: inline-block;
}

#main.about .fourthRow .history-sp {
  display: none;
}

@media screen and (max-width: 1140px) {
  #main.about .fourthRow .timeline-box {
    width: 100%;
    margin-bottom: 100px;
  }
  #main.about .fourthRow .timeline-box h3 {
    text-align: left;
    font-size: 32px;
  }
  #main.about .fourthRow .timeline-box:before {
    left: 35px;
  }
  #main.about .fourthRow .timeline-content {
    padding: 25px 0;
    padding-left: 100px;
    height: unset;
    margin: 0;
  }
  #main.about .fourthRow .timeline-icon {
    width: 50px;
    left: 60px;
  }
  #main.about .fourthRow .timeline-icon:before {
    left: -10px;
  }
  #main.about .fourthRow .history-pc {
    display: none;
  }
  #main.about .fourthRow .history-sp {
    display: table-row;
  }
  #main.about .fourthRow .timeline-content .right {
    display: none;
  }
  #main.about .fourthRow .timeline-icon.just-left,
  #main.about .fourthRow .timeline-icon.just-right {
    width: 50px;
    left: 60px;
  }
  #main.about .fourthRow .timeline-icon.just-left:before,
  #main.about .fourthRow .timeline-icon.just-right:before {
    left: -6px;
  }
}

@media screen and (max-width: 767px) {
  #main.about .fourthRow .col-sm-12 {
    margin-left: -5%;
    margin-right: -5%;
  }
  #main.about .fourthRow .co-col4-text {
    padding: 5px 0 3px;
    padding-top: 5px !important;
  }
  #main.about .fourthRow .wp-co04-rows .co-col4 {
    width: 48.725%;
    margin-bottom: 15px;
    min-height: auto;
    padding: 0;
    border: 3px solid #000;
  }
  #main.about .fourthRow .wp-profile .title-style1 {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  #main.about .fourthRow .timeline-box {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  #main.about .fourthRow .timeline-box h3 {
    font-size: 20px;
  }
  #main.about .fourthRow .timeline-box:before {
    left: 18px;
    width: 3px;
  }
  #main.about .fourthRow .timeline-icon {
    width: 30px;
    left: 32px;
  }
  #main.about .fourthRow .timeline-content {
    padding: 15px 0;
    padding-left: 48px;
    font-size: 14px;
    padding-bottom: 25px;
  }
  #main.about .fourthRow .timeline-content table tr td {
    font-size: 14px;
    display: block;
  }
  #main.about .fourthRow .timeline-icon.just-left,
  #main.about .fourthRow .timeline-icon.just-right {
    width: 30px;
    left: 38px;
  }
}

#main.site_policy .beforeFirstText {
  font-size: 16px;
  text-align: justify;
  margin: 0px 15% 60px 15%;
}

@media screen and (max-width: 1190px) {
  #main.site_policy .beforeFirstText {
    margin: 0px 10% 40px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.site_policy .beforeFirstText {
    margin: 0px 5% 40px 5%;
  }
}

#main.site_policy .firstRow {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin: 25px 0 20px 0;
}

#main.site_policy .firstRow p {
  margin-bottom: 10px;
}

#main.site_policy .firstRow img {
  margin-bottom: 20px;
}

#main.site_policy .secondRow {
  margin: 0px 15% 20px 15%;
}

@media screen and (max-width: 1190px) {
  #main.site_policy .secondRow {
    margin: 0px 10% 20px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.site_policy .secondRow {
    margin: 0px 5% 20px 5%;
  }
}

#main.site_policy .secondRow .content-desc {
  padding-top: 24px;
  padding-bottom: 12px;
}

#main.site_policy .secondRow .content-desc .title-text {
  font-size: 24px;
  padding-bottom: 12px;
}

#main.site_policy .secondRow .content-desc .desc-text {
  text-align: justify;
}

#main.site_policy .secondRow .content-desc .img-desc3 {
  padding-top: 10px;
}

#main.site_policy .secondRow .content-desc .img-desc3 img {
  padding: 0 12px 12px 0;
}

#main.site_policy .thirdRow {
  margin: 0px 15% 20px 15%;
}

@media screen and (max-width: 1190px) {
  #main.site_policy .thirdRow {
    margin: 0px 10% 20px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.site_policy .thirdRow {
    margin: 0px 5% 20px 5%;
  }
}

#main.site_policy .thirdRow .content-support {
  padding-top: 24px;
  padding-bottom: 12px;
}

#main.site_policy .thirdRow .content-support .title-support {
  font-size: 24px;
  padding-bottom: 24px;
}

#main.site_policy .thirdRow .content-support .desc-support {
  padding-bottom: 20px;
}

#main.site_policy .thirdRow .content-support .desc-support .title-desc-support {
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#main.site_policy .thirdRow .content-support .desc-support .title-desc-support > div {
  padding-left: 10px;
}

#main.site_policy .thirdRow .content-support .desc-support .title-desc-support p {
  font-size: 22px;
}

#main.site_policy .thirdRow .content-support .desc-support .title-desc-support img {
  display: flex;
  align-items: center;
  width: 24px;
  height: auto;
}

#main.site_policy .thirdRow .content-support .desc-support .sub-desc-support {
  margin: 10px 0 2px 20px;
}

#main.site_policy .thirdRow .content-support .desc-support .sub-desc-support ul {
  list-style-type: circle !important;
  color: black;
}

#main.site_policy .thirdRow .content-support .desc-support .sub-desc-support ul li {
  padding-bottom: 5px;
}

#main.site_policy .fourthRow {
  margin: 0px 15% 20px 15%;
}

@media screen and (max-width: 1190px) {
  #main.site_policy .fourthRow {
    margin: 0px 10% 20px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.site_policy .fourthRow {
    margin: 0px 5% 20px 5%;
  }
}

#main.site_policy .fourthRow .content-trademarks {
  padding-top: 24px;
  padding-bottom: 12px;
}

#main.site_policy .fourthRow .content-trademarks .title-trademarks {
  font-size: 24px;
  padding-bottom: 24px;
}

#main.site_policy .fourthRow .content-trademarks .desc-trademarks {
  margin: 0px 0 2px 20px;
}

#main.site_policy .fourthRow .content-trademarks .desc-trademarks ul {
  color: black;
}

#main.site_policy .fourthRow .content-trademarks .desc-trademarks ul li {
  list-style-type: disc;
  padding-bottom: 5px;
}

#main.privacy_policy .firstRow {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin: 25px 0 10px 0;
}

#main.privacy_policy .firstRow p {
  margin-bottom: 10px;
}

#main.privacy_policy .firstRow img {
  margin-bottom: 20px;
}

#main.privacy_policy .afterFirstText {
  font-size: 16px;
  text-align: justify;
  margin: 20px 15% 20px 15%;
}

@media screen and (max-width: 1190px) {
  #main.privacy_policy .afterFirstText {
    margin: 0px 10% 20px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.privacy_policy .afterFirstText {
    margin: 0px 5% 20px 5%;
  }
}

#main.privacy_policy .secondRow {
  margin: 0px 15% 20px 15%;
}

@media screen and (max-width: 1190px) {
  #main.privacy_policy .secondRow {
    margin: 0px 10% 20px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.privacy_policy .secondRow {
    margin: 0px 5% 20px 5%;
  }
}

#main.privacy_policy .secondRow .content-desc {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-left: 12px;
}

#main.privacy_policy .secondRow .content-desc ol li {
  list-style-type: decimal;
  padding: 5px 0px;
}

#main.privacy_policy .thirdRow {
  margin: 0px 15% 60px 15%;
}

@media screen and (max-width: 1190px) {
  #main.privacy_policy .thirdRow {
    margin: 0px 10% 40px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.privacy_policy .thirdRow {
    margin: 0px 5% 40px 5%;
  }
}

#main.privacy_policy .thirdRow .content-telp {
  background-color: #fbe6e6;
  padding-top: 34px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#main.privacy_policy .thirdRow .content-telp > div {
  padding: 7px;
}

#main.privacy_policy .thirdRow .content-telp .title-telp {
  font-size: 24px;
}

#main.privacy_policy .thirdRow .content-telp .desc-telp {
  font-size: 18px;
}

#main.coming_soon .breadcrumbPage {
  word-break: keep-all;
  margin-top: 80px;
}

#main.coming_soon .firstRow {
  text-align: center;
  font-size: 90px;
  font-weight: 500;
  margin: 25px 0 0px 0;
}

#main.coming_soon .afterFirstText {
  font-size: 16px;
  text-align: center;
  margin: -10px 15% 100px 15%;
}

@media screen and (max-width: 1190px) {
  #main.coming_soon .afterFirstText {
    margin: -10px 10% 100px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.coming_soon .afterFirstText {
    margin: -10px 5% 100px 5%;
  }
}

#main.error404 .breadcrumbPage {
  margin-top: 80px;
}

#main.error404 .firstRow {
  text-align: center;
  font-size: 106px;
  font-weight: 500;
  margin: 25px 0 0px 0;
}

#main.error404 .afterFirstText {
  font-size: 16px;
  text-align: center;
  margin: -10px 15% 100px 15%;
}

@media screen and (max-width: 1190px) {
  #main.error404 .afterFirstText {
    margin: -10px 10% 100px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.error404 .afterFirstText {
    margin: -10px 5% 100px 5%;
  }
}

#main.thingking .firstRow {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin: 50px 0 30px;
}

@media screen and (max-width: 767px) {
  #main.thingking .firstRow {
    margin: 20px 0;
  }
}

#main.thingking .firstRow p {
  font-size: 34px;
}

@media screen and (max-width: 1024px) {
  #main.thingking .firstRow p {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  #main.thingking .firstRow p {
    font-size: 19px;
  }
}

@media screen and (max-width: 767px) {
  #main.thingking .firstRow p.PC {
    display: none;
  }
}

#main.thingking .firstRow p.SP {
  display: none;
}

@media screen and (max-width: 767px) {
  #main.thingking .firstRow p.SP {
    display: block;
  }
}

#main.thingking .firstRow .img-topPage {
  margin: 30px 0px 40px;
  padding: 0 75px;
}

@media screen and (max-width: 1024px) {
  #main.thingking .firstRow .img-topPage {
    padding: 0;
  }
}

#main.thingking .firstRow .img-topPage img {
  width: 100%;
}

#main.thingking .secondRow .inner {
  padding: 0 75px;
}

@media screen and (max-width: 1024px) {
  #main.thingking .secondRow .inner {
    padding: 0;
  }
}

#main.thingking .secondRow .content-desc .title-text {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #main.thingking .secondRow .content-desc .title-text {
    font-size: 19px;
  }
}

#main.thingking .secondRow .content-desc .desc-text {
  text-align: center;
  line-height: 2;
}

#main.thingking .secondRow .content-desc .greyBg {
  background-color: #EEE;
  padding: 20px;
  margin-bottom: 100px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  #main.thingking .secondRow .content-desc .greyBg {
    margin-bottom: 30px;
  }
}

#main.thingking .secondRow .content-desc .annotLi {
  counter-reset: number 0;
}

#main.thingking .secondRow .content-desc .annotLi > li {
  font-size: 14px;
  text-indent: -1.1em;
  padding-left: 1.1em;
}

#main.thingking .secondRow .content-desc .annotLi > li:before {
  content: "※";
}

#main.process .firstRow {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin: 25px 0 35px 0;
}

#main.process .firstRow p {
  margin-bottom: 10px;
}

#main.process .secondRow {
  margin: 0px 8% 60px 8%;
}

@media screen and (max-width: 1190px) {
  #main.process .secondRow {
    margin: 0px 10% 30px 10%;
  }
}

@media screen and (max-width: 960px) {
  #main.process .secondRow {
    margin: 0px 5% 30px 5%;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow {
    margin: 0px 2% 30px 2%;
  }
}

#main.process .secondRow .number-content-sp {
  display: none;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .number-content-sp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px 15px 0px;
  }
}

#main.process .secondRow .number-content-sp span {
  background-image: url(../img/process/number_content.png);
  background-size: cover;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 38px;
}

#main.process .secondRow .number-content {
  position: absolute;
  z-index: 2;
  margin-top: -10px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0px);
}

#main.process .secondRow .number-content span {
  background-image: url(../img/process/number_content.png);
  background-size: cover;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 42px;
}

@media screen and (max-width: 1190px) {
  #main.process .secondRow .number-content span {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 960px) {
  #main.process .secondRow .number-content span {
    width: 90px;
    height: 90px;
  }
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .number-content span {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .number-content span {
    display: none;
  }
}

#main.process .secondRow .number-three {
  margin-top: -32px !important;
}

#main.process .secondRow .number-five {
  margin-top: -25px !important;
}

#main.process .secondRow .arrowdown {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 960px) {
  #main.process .secondRow .arrowdown img {
    height: 50px;
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .arrowdown img {
    height: 45px;
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .arrowdown img {
    height: 45px;
    width: auto;
  }
}

#main.process .secondRow .content1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content1 {
    display: flex;
    flex-direction: column;
    position: relative;
  }
}

#main.process .secondRow .content1 .left-content {
  width: 50%;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content1 .left-content {
    width: 100%;
    margin: 15px 0px;
  }
}

#main.process .secondRow .content1 .left-content .owl-carousel .item img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

#main.process .secondRow .content1 .left-content .owl-dots {
  position: absolute;
  margin-top: -45px;
  margin-left: 40%;
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .content1 .left-content .owl-dots {
    margin-left: 35%;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content1 .left-content .owl-dots {
    margin-left: 37%;
  }
}

#main.process .secondRow .content1 .left-content .owl-dots .owl-dot span {
  background: white;
  width: 14px;
  height: 14px;
  border: 1px solid #9e9e9e;
}

#main.process .secondRow .content1 .left-content .owl-dots .owl-dot :hover {
  background-color: #adadad;
}

#main.process .secondRow .content1 .left-content .owl-dots .active span {
  background-color: #585858;
}

#main.process .secondRow .content1 .right-content {
  width: 50%;
  margin-left: -50px;
  border-radius: 10px;
  color: #7B3C14;
  border: 1px solid #EEEEEE;
  z-index: 1;
  background-color: #ffffff;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content1 .right-content {
    width: 100%;
    height: auto;
    margin-left: 0px;
    border-radius: 10px;
    background-color: #ffffff;
  }
}

#main.process .secondRow .content1 .right-content .title-right {
  background-color: #CAB1A1;
  border-radius: 10px 10px 0 0;
  padding: 5px;
  font-size: 32px;
  display: flex;
  justify-content: center;
  word-break: keep-all;
}

@media screen and (max-width: 1190px) {
  #main.process .secondRow .content1 .right-content .title-right {
    font-size: 28px;
  }
}

@media screen and (max-width: 960px) {
  #main.process .secondRow .content1 .right-content .title-right {
    font-size: 26px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .content1 .right-content .title-right {
    font-size: 22px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content1 .right-content .title-right {
    font-size: 20px;
    margin-left: 0px;
  }
}

#main.process .secondRow .content1 .right-content .desc-right {
  padding: 10px;
  font-size: 18px;
  margin: 25px 25px;
  line-height: 40px;
}

@media screen and (max-width: 1190px) {
  #main.process .secondRow .content1 .right-content .desc-right {
    font-size: 16px;
  }
}

@media screen and (max-width: 960px) {
  #main.process .secondRow .content1 .right-content .desc-right {
    font-size: 15px;
    margin: 25px 20px;
    line-height: 35px;
  }
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .content1 .right-content .desc-right {
    font-size: 15px;
    margin: 25px 10px;
    line-height: 30px;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content1 .right-content .desc-right {
    margin: 5px 10px;
  }
}

#main.process .secondRow .content2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content2 {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
  }
}

#main.process .secondRow .content2 .left-content {
  width: 50%;
  height: 280px;
  margin-right: -50px;
  border-radius: 10px;
  color: #7B3C14;
  border: 1px solid #EEEEEE;
  background-color: #ffffff;
  z-index: 2;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content2 .left-content {
    width: 100%;
    height: auto;
    margin-right: 0px;
    border-radius: 10px;
    background-color: #ffffff;
  }
}

#main.process .secondRow .content2 .left-content .title-right {
  background-color: #CAB1A1;
  border-radius: 10px 10px 0 0;
  padding: 5px 35px;
  font-size: 32px;
  display: flex;
  justify-content: left;
  word-break: keep-all;
}

@media screen and (max-width: 1190px) {
  #main.process .secondRow .content2 .left-content .title-right {
    font-size: 28px;
    padding: 0px 35px;
  }
}

@media screen and (max-width: 960px) {
  #main.process .secondRow .content2 .left-content .title-right {
    font-size: 26px;
    padding: 5px 30px;
  }
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .content2 .left-content .title-right {
    font-size: 22px;
    padding: 5px 20px;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content2 .left-content .title-right {
    display: flex;
    justify-content: center;
  }
}

#main.process .secondRow .content2 .left-content .desc-right {
  padding: 10px;
  font-size: 18px;
  margin: 25px 25px;
  line-height: 40px;
}

@media screen and (max-width: 1190px) {
  #main.process .secondRow .content2 .left-content .desc-right {
    font-size: 16px;
  }
}

@media screen and (max-width: 960px) {
  #main.process .secondRow .content2 .left-content .desc-right {
    font-size: 15px;
    margin: 25px 20px;
    line-height: 35px;
  }
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .content2 .left-content .desc-right {
    font-size: 15px;
    margin: 25px 10px;
    line-height: 30px;
  }
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content2 .left-content .desc-right {
    margin: 5px 10px;
  }
}

#main.process .secondRow .content2 .right-content {
  width: 50%;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .content2 .right-content {
    width: 100%;
    margin: 15px 0px;
  }
}

#main.process .secondRow .content2 .right-content .owl-carousel .item img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

#main.process .secondRow .content2 .right-content .owl-dots {
  position: absolute;
  margin-top: -45px;
  margin-left: 40%;
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .content2 .right-content .owl-dots {
    margin-left: 40%;
  }
}

#main.process .secondRow .content2 .right-content .owl-dots .owl-dot span {
  background: white;
  width: 14px;
  height: 14px;
  border: 1px solid #9e9e9e;
}

#main.process .secondRow .content2 .right-content .owl-dots .owl-dot :hover {
  background-color: #adadad;
}

#main.process .secondRow .content2 .right-content .owl-dots .active span {
  background-color: #585858;
}

#main.process .secondRow .last-text {
  margin: 20px 30px;
  margin-top: 50px;
  padding-bottom: 15px;
}

@media screen and (max-width: 480px) {
  #main.process .secondRow .last-text {
    margin: 20px 5px;
  }
}

#main.process .secondRow .last-text p {
  line-height: 40px;
  font-size: 18px;
  color: #7B3C14;
}

@media screen and (max-width: 1190px) {
  #main.process .secondRow .last-text p {
    font-size: 16px;
  }
}

@media screen and (max-width: 960px) {
  #main.process .secondRow .last-text p {
    font-size: 15px;
    line-height: 35px;
  }
}

@media screen and (max-width: 768px) {
  #main.process .secondRow .last-text p {
    font-size: 15px;
    line-height: 30px;
  }
}

.instaBox {
  width: 100%;
}

.instaBox #instagramFeed {
  max-width: 1100px;
  margin: 0 auto;
}

.instaBox #instagramFeed .instagram_gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.instaBox #instagramFeed .instagram_gallery a {
  width: 20%;
}

.instaBox #instagramFeed .instagram_gallery a .bg-ig {
  width: 100%;
  height: 223px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 640px) {
  .instaBox #instagramFeed .instagram_gallery a {
    width: 33.33%;
  }
  .instaBox #instagramFeed .instagram_gallery a .bg-ig {
    height: 30vw;
  }
  .instaBox #instagramFeed .instagram_gallery a:last-child {
    display: none;
  }
}

@media screen and (max-width: 1115px) {
  .instaBox #instagramFeed .instagram_gallery a .bg-ig {
    height: 20vw;
  }
}

.instaBanner {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
}

@media screen and (max-width: 1115px) {
  .instaBanner {
    width: 40%;
  }
}

@media screen and (max-width: 640px) {
  .instaBanner {
    width: 50%;
  }
}

.title-pc {
  display: block;
}

.title-sp {
  display: none;
}

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

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