@charset "UTF-8";
@import url("//fonts.cdnfonts.com/css/gilroy-bold");
@import url("//fonts.googleapis.com/css2?family=Jost:wght@400;500&family=Noto+Serif+JP:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&Cormorant+Garamond:wght@300?family=Playfair+Display+SC:ital@0;1&family=Herr+Von+Muellerhoff&display=swap");
html {
  font-size: 62.5%;
}

/* font-sizeは16pxの62.5%の10px */
body {
  font-family: "Noto Serif JP", serif, "Playfair Display SC";
  letter-spacing: 0.15em;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.6rem;
  /*font-size : 16px と同等*/
  color: #3c3c3c;
}

html,
html body,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

.en-min {
  font-family: 'Playfair Display SC', serif;
}

.en-min2 {
  font-family: 'Cormorant Garamond', serif;
}

.en-italic {
  font-family: 'Herr Von Muellerhoff', cursive;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #3c3c3c;
  cursor: pointer;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

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

.mt-top-em {
  margin-top: 1em;
}

.to__top {
  width: 45px;
  height: 45px;
  background-color: #504001;
  position: fixed;
  right: 5vw;
  bottom: -60px;
  border-radius: 50%;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
}

.to__top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/common/aroow_top.svg) no-repeat;
  background-position: center center;
  background-size: contain;
  width: 50%;
  height: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 1280px) {
  .to__top {
    right: 2vw;
  }
  .to__top:hover {
    background-color: #cfae2d;
  }
  .to__top:hover::before {
    -webkit-transform: translate(-50%, -70%);
            transform: translate(-50%, -70%);
  }
}

@media (min-width: 1200px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}

header {
  height: 70px;
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: url(../images/common/bg1.jpg) repeat;
}

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

.header__inner .header__logo {
  position: fixed;
}

.header__inner .header__logo a {
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

.header__inner .header__logo.is-scroll a {
  color: #a48b2b;
}

.header__inner .header__logo.is-scroll a::before {
  background: url(../images/common/itou_logo_br.png) no-repeat;
  background-size: contain;
}

.header__logo {
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo a {
  display: block;
  padding-left: 55px;
  position: relative;
  line-height: 1;
  height: 100%;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__logo a small {
  font-size: 0.6em;
  margin-bottom: 0.4em;
}

.header__logo a::before {
  position: absolute;
  background: url(../images/common/logo_bk.png) no-repeat;
  background-size: contain;
  width: 50px;
  height: 45px;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: .8;
}

.header__logo a img {
  width: 100%;
}

.PageHeader-btnMenu-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  right: 5%;
  top: 50%;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition: transform 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
  transition: transform 0.3s cubic-bezier(0.37, 0.16, 0.12, 1), -webkit-transform 0.3s cubic-bezier(0.37, 0.16, 0.12, 1);
  -webkit-transform-origin: 24px 21px;
          transform-origin: 24px 21px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  cursor: pointer;
}

.PageHeader-btnMenu-icon-line {
  display: block;
  position: absolute;
  width: 36px;
  height: 2px;
  right: 0;
  top: 20px;
  background-color: #a48b2b;
  -webkit-transition: opacity 0.25s ease-out, width 0.25s ease-out, background-color 0.25s ease-out;
  transition: opacity 0.25s ease-out, width 0.25s ease-out, background-color 0.25s ease-out;
}

.PageHeader-btnMenu-icon::before,
.PageHeader-btnMenu-icon::after {
  content: "";
  position: absolute;
  background-color: #a48b2b;
  height: 2px;
  right: 0;
  -webkit-transition: width 0.25s ease-out, background-color 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: width 0.25s ease-out, background-color 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, width 0.25s ease-out, background-color 0.25s ease-out;
  transition: transform 0.25s ease-out, width 0.25s ease-out, background-color 0.25s ease-out, -webkit-transform 0.25s ease-out;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.PageHeader-btnMenu-icon::before {
  width: 42px;
  top: 11px;
}

.PageHeader-btnMenu-icon::after {
  width: 30px;
  bottom: 11px;
}

.l-kv__sns {
  position: absolute;
  left: 5%;
  top: 5%;
  opacity: 1;
  z-index: 899;
  color: #fff;
}

.l-kv__sns p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.l-kv__sns li {
  padding-bottom: 26px;
  margin-bottom: 10px;
  position: relative;
  line-height: 100%;
}

.l-kv__sns li:before {
  display: block;
  content: "";
  position: absolute;
  width: 16px;
  border-top: 1px solid #fff;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  left: 0;
  bottom: 10px;
}

.l-kv__sns li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  background: none;
}

.l-kv__sns li:last-child:before {
  display: none;
}

.l-kv__sns a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.l-kv__sns a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
}

.l-kv__sns ul li a {
  width: 16px;
  height: 16px;
  background-image: url(../images/common/facebook-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.is-home.is-loaded .l-kv__sns {
  opacity: 1;
}

.l-kv__scroll {
  position: absolute;
  right: 5%;
  bottom: 0;
  padding-bottom: 136px;
  opacity: 1;
  z-index: 899;
  color: #fff;
}

.l-kv__scroll p {
  font-size: 12px;
  font-size: 1.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 80%;
}

.l-kv__scroll span {
  overflow: hidden;
  display: block;
  position: absolute;
  width: 1px;
  height: 126px;
  left: 50%;
  bottom: 0;
}

.l-kv__scroll span:before,
.l-kv__scroll span:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
}

.l-kv__scroll span:before {
  z-index: 1;
  border-left: 1px solid #a48b2b;
}

.l-kv__scroll span:after {
  z-index: 2;
  border-left: 1px solid #fff;
  -webkit-animation: scrollBar 2.5s infinite linear;
          animation: scrollBar 2.5s infinite linear;
}

.is-home.is-loaded .l-kv__scroll {
  opacity: 1;
  -webkit-transition: 1s ease all 1.5s;
  transition: 1s ease all 1.5s;
}

@media (max-width: 767px) {
  .l-kv__scroll p {
    font-size: 10px;
    font-size: 1rem;
  }
}

@-webkit-keyframes scrollBar {
  0% {
    top: -100%;
  }
  80% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

@keyframes scrollBar {
  0% {
    top: -100%;
  }
  80% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

body.is-navOpen {
  overflow: hidden;
}

.header__nav {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: calc(100vh - 70px);
  left: 0;
  top: 70px;
  z-index: 2;
  background-color: #DCD8CF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../images/common/bg1.jpg) repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__nav ul {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 80%;
  margin-left: auto;
}

.header__nav ul li {
  width: 100%;
}

.header__nav ul li:not(:last-of-type) {
  margin-bottom: 1.5em;
  border-bottom: 1px solid #c5c1b8;
  padding-bottom: 1em;
}

.header__nav ul li a {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.is-navOpen .header__nav {
  opacity: 1;
  visibility: visible;
}

.is-navOpen .l-kv__sns {
  z-index: 9999;
  color: #a48b2b;
  position: fixed;
  top: 15%;
}

.is-navOpen .l-kv__sns ul li a {
  background-image: url(../images/common/facebook-brown.svg);
}

.is-navOpen .header__logo,
.is-navOpen .PageHeader-btnMenu-icon {
  z-index: 99;
}

.is-navOpen .PageHeader-btnMenu-icon-line {
  opacity: 0;
}

.is-navOpen .PageHeader-btnMenu-icon::before {
  width: 36px;
  -webkit-transform: rotate(45deg) translate(1px, -6px);
          transform: rotate(45deg) translate(1px, -6px);
}

.is-navOpen .PageHeader-btnMenu-icon::after {
  width: 36px;
  -webkit-transform: rotate(-45deg) translate(1px, 6px);
          transform: rotate(-45deg) translate(1px, 6px);
}

@media (min-width: 680px) {
  .PageHeader-btnMenu-icon {
    width: 60px;
    height: 60px;
    -webkit-transform-origin: 35px 30px;
            transform-origin: 35px 30px;
  }
  .PageHeader-btnMenu-icon-line {
    width: 50px;
    top: 29px;
  }
  .PageHeader-btnMenu-icon::before {
    width: 60px;
    top: 16px;
  }
  .PageHeader-btnMenu-icon::after {
    width: 40px;
    bottom: 16px;
  }
  .is-navOpen .PageHeader-btnMenu-icon::before {
    width: 50px;
    -webkit-transform: rotate(45deg) translate(2px, -8px);
            transform: rotate(45deg) translate(2px, -8px);
  }
  .is-navOpen .PageHeader-btnMenu-icon::after {
    width: 50px;
    -webkit-transform: rotate(-45deg) translate(2px, 8px);
            transform: rotate(-45deg) translate(2px, 8px);
  }
  .header__nav ul li a:hover {
    color: #a48b2b;
  }
}

@media (min-width: 1200px) {
  .l-kv__sns {
    left: auto;
    right: 5%;
  }
  .l-kv__scroll {
    right: 3%;
  }
  .l-kv__sns {
    top: 15%;
    position: fixed;
  }
  .PageHeader-btnMenu-icon {
    position: fixed;
    top: 5%;
  }
  header {
    position: absolute;
    background: transparent;
    height: 100px;
  }
  .header__logo a {
    color: #fff;
  }
  .PageHeader-btnMenu-icon-line,
  .PageHeader-btnMenu-icon::before,
  .PageHeader-btnMenu-icon::after {
    background-color: #fff;
  }
  .header__logo a::before {
    background: url(../images/common/itou_logo_wh.png) no-repeat;
    background-size: contain;
  }
  .header__nav--pc {
    position: absolute;
    top: 28%;
    right: 15%;
  }
  .header__nav--pc ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .header__nav--pc ul li {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .header__nav--pc ul li:not(:last-of-type) {
    margin-left: 1.5em;
  }
  .header__nav--pc ul li a {
    color: #fff;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .header__nav--pc ul li a::before {
    position: absolute;
    content: '';
    height: 0%;
    width: 1px;
    background-color: #d2b74e;
    left: -2px;
    top: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .header__nav--pc ul li a:hover {
    opacity: .8;
  }
  .header__nav--pc ul li a:hover::before {
    height: 100%;
  }
  .header__nav {
    top: 0;
    height: 100vh;
  }
  .is-navOpen .PageHeader-btnMenu-icon-line,
  .is-navOpen .PageHeader-btnMenu-icon::before,
  .is-navOpen .PageHeader-btnMenu-icon::after {
    background-color: #a48b2b;
  }
  .is-navOpen .header__logo a {
    color: #3c3c3c;
  }
  .is-navOpen .header__logo a::before {
    background: url(../images/common/logo_bk.png) no-repeat;
    background-size: contain;
  }
  .PageHeader-btnMenu-icon.is-scroll::before, .PageHeader-btnMenu-icon.is-scroll::after {
    background-color: #a48b2b;
  }
  .PageHeader-btnMenu-icon.is-scroll .PageHeader-btnMenu-icon-line {
    background-color: #a48b2b;
  }
}

footer {
  background-color: #44413c;
  color: #fff;
  font-size: 1.2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  background: url(../images/top/bg_pattern03.png);
  background-size: 40px 40px;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-burn;
  opacity: 30%;
}

footer a {
  color: #fff;
}

footer .header__logo a::before {
  background: url(../images/common/itou_logo_wh.png) no-repeat;
  background-size: contain;
}

.footer__bottom {
  text-align: center;
  padding: 0.5em 0;
  border-top: 1px solid #4d4d4d;
}

.footer__container {
  padding: 10vw 0;
  position: relative;
}

.footer__left {
  margin-bottom: 10vw;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #5a5959;
  padding: 1em 0;
  margin: 10vw 0;
}

.footer__nav li {
  width: 48%;
}

.footer__nav li:not(:nth-of-type(n+6)) {
  margin-bottom: 2em;
}

.footer__addres {
  line-height: 2;
}

.fb__logo {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}

.fooer__link a {
  color: #d2b74e;
  text-decoration: underline;
}

.fb {
  border-top: 1px solid #5a5959;
  padding-top: 1em;
}

.fb__content {
  background-color: #5a5959;
  width: 100%;
  height: 30vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5vw;
}

.contact__area--inner {
  height: 100%;
}

.contact__area {
  height: 60vw;
  overflow: hidden;
}

.contact__area a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #a48b2b;
  color: #fff;
  position: relative;
}

.contact__area a::before {
  position: absolute;
  content: '';
  background: url(../images/common/logo_bk.png) no-repeat center center;
  height: 132%;
  width: 100%;
  background-size: contain;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: .5;
}

.contact__area a p {
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  line-height: 1;
  position: relative;
  z-index: 1;
  letter-spacing: .2em;
}

.contact__area a p::before {
  content: '';
  background: url(../images/common/ico_arrow2.svg) no-repeat center center;
  background-size: contain;
  width: 2.8em;
  height: 100%;
  right: -4em;
  bottom: 0;
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.contact__area a p small {
  display: block;
  font-size: 0.6em;
  margin-right: 0.5em;
}

.contact__area.contact__area--company a {
  background-color: transparent;
}

.contact__area.contact__area--company a::before {
  background: url(../images/top/company_4c.jpg) no-repeat center center;
  height: 100%;
  width: 100%;
  background-size: cover;
  z-index: 0;
  opacity: 1;
  mix-blend-mode: inherit;
}

.contact__area.contact__area--company a::after {
  content: '';
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  z-index: 0;
}

.page__top {
  background-color: #504001;
}

.page__top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0;
}

.page__top a span {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page__top a span img {
  mix-blend-mode: plus-lighter;
  width: 100%;
  height: auto;
}

.footer__link {
  width: 100%;
  height: 40px;
  margin-top: 2em;
}

.footer__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #fff;
  font-size: 1.6rem;
  line-height: 1;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__link a span {
  display: inline-block;
  padding-left: 2em;
  position: relative;
}

.footer__link a span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  width: 1.5em;
  height: 1.5em;
}

.footer__link a span.footer__link--icon1::before {
  background-image: url(../images/common/icon_tel.svg);
}

.footer__link a span.footer__link--icon2::before {
  background-image: url(../images/common/icon_email.svg);
}

@media (min-width: 768px) {
  footer {
    font-size: 1.4rem;
  }
  .footer__left--1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__sub {
    margin-top: 1em;
  }
  .footer__contact {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-left: 10%;
  }
  .footer__contact .footer__link {
    margin-top: 0;
  }
  .footer__contact .footer__link:not(:last-of-type) {
    margin-bottom: 2em;
  }
  .footer__left {
    margin-bottom: 30px;
  }
  .footer__nav {
    margin: 30px 0;
  }
  .fb__content {
    width: 60%;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .footer__left--1 {
    /* width: 34%; */
  }
  .footer__contact {
    margin-left: 0;
    width: 50%;
  }
  .footer__left--2 {
    /* width: 65%; */
  }
  .footer__left {
    /* justify-content: space-between; */
    width: 65%;
    margin-bottom: 0;
    /* display: flex; */
  }
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 100px 0;
  }
  .footer__left1--left {
    width: 40%;
  }
  .fb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .fb__content {
    width: 100%;
    margin-top: 1em;
    height: 180px;
  }
  .footer__right {
    width: 30%;
  }
  .fb__logo {
    border-bottom: 1px solid #5a5959;
    padding-bottom: 0.5em;
  }
  .fb__top {
    width: 100%;
  }
  .footer__nav li {
    width: 31%;
  }
  .footer__nav {
    border-bottom: 1px solid #5a5959;
  }
  .fb__content {
    width: 100%;
    margin-top: 1.5em;
  }
}

@media (min-width: 1200px) {
  .hover-btn {
    overflow: hidden;
    padding-right: 1em;
  }
  .hover-btn:hover {
    -webkit-animation: textHover .3s .2s forwards;
            animation: textHover .3s .2s forwards;
  }
  .hover-btn:hover::before {
    -webkit-animation: textHoverBorderLine .5s forwards;
            animation: textHoverBorderLine .5s forwards;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .hover-btn:hover::after {
    -webkit-animation: textHoverBorderIcon .5s forwards;
            animation: textHoverBorderIcon .5s forwards;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  @-webkit-keyframes textHover {
    0% {
      color: #3c3c3c;
    }
    100% {
      color: #a48b2b;
    }
  }
  @keyframes textHover {
    0% {
      color: #3c3c3c;
    }
    100% {
      color: #a48b2b;
    }
  }
  @-webkit-keyframes textHoverBorderLine {
    0% {
      background-color: #3c3c3c;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
    }
    100% {
      background-color: #a48b2b;
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
  }
  @keyframes textHoverBorderLine {
    0% {
      background-color: #3c3c3c;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
    }
    100% {
      background-color: #a48b2b;
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
  }
  @-webkit-keyframes textHoverBorderIcon {
    0% {
      -webkit-transform: translate(-1.2em, -50%);
              transform: translate(-1.2em, -50%);
    }
    100% {
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      background: url(../images/common/ico_arrow_ov.svg) no-repeat;
      background-size: 40%;
      background-position: center left;
    }
  }
  @keyframes textHoverBorderIcon {
    0% {
      -webkit-transform: translate(-1.2em, -50%);
              transform: translate(-1.2em, -50%);
    }
    100% {
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      background: url(../images/common/ico_arrow_ov.svg) no-repeat;
      background-size: 40%;
      background-position: center left;
    }
  }
  .hover-nav {
    position: relative;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    overflow: hidden;
  }
  .hover-nav::before {
    content: '';
    background: url(../images/common/ico_arrow_ov.svg) no-repeat;
    background-size: contain;
    background-position: center right;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-1.2em, -50%);
            transform: translate(-1.2em, -50%);
  }
  .hover-nav:hover {
    padding-left: 1.2em;
  }
  .hover-nav:hover::before {
    -webkit-animation: navIconAnim .5s forwards;
            animation: navIconAnim .5s forwards;
  }
  @-webkit-keyframes navIconAnim {
    0% {
      -webkit-transform: translate(-4.2em, -50%);
              transform: translate(-4.2em, -50%);
    }
    100% {
      -webkit-transform: translate(-1.2em, -50%);
              transform: translate(-1.2em, -50%);
    }
  }
  @keyframes navIconAnim {
    0% {
      -webkit-transform: translate(-4.2em, -50%);
              transform: translate(-4.2em, -50%);
    }
    100% {
      -webkit-transform: translate(-1.2em, -50%);
              transform: translate(-1.2em, -50%);
    }
  }
  .footer-nav-hover {
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: .15s;
            transition-delay: .15s;
  }
  .footer-nav-hover::before {
    content: '';
    height: 1px;
    width: 100%;
    background-color: #a48b2b;
    position: absolute;
    bottom: -2px;
    left: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .footer-nav-hover:hover {
    color: #a48b2b;
  }
  .footer-nav-hover:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .text-inline-hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .text-inline-hover:hover {
    opacity: .7;
  }
  .footer__link a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  .footer__link a::before {
    content: '';
    position: absolute;
    background-color: #a48b2b;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .footer__link a:hover {
    border: 1px solid #a48b2b;
  }
  .footer__link a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .hover-op {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .hover-op:hover {
    opacity: .7;
  }
  .scrollBox {
    position: relative;
  }
  .scrollBox::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #cfae2d;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .scrollBox.contact__area--inner.is-scroll::after {
    -webkit-animation: coverSlide 1s forwards ease-in-out;
            animation: coverSlide 1s forwards ease-in-out;
  }
  .textFade {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .contact__area--inner--image {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .is-scroll .textFade {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .is-scroll .textFade.textFade1 {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .is-scroll .textFade.textFade2 {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .is-scroll .scrollBox::after {
    -webkit-animation: coverSlide 1s forwards ease-in-out;
            animation: coverSlide 1s forwards ease-in-out;
  }
  .is-scroll .obsession__image--wrap,
  .is-scroll .obsession__contents,
  .is-scroll .contact__area--inner--image {
    -webkit-animation: coverImage 1s forwards ease-in-out;
            animation: coverImage 1s forwards ease-in-out;
  }
  @-webkit-keyframes coverSlide {
    0% {
      -webkit-transform-origin: left;
              transform-origin: left;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
    }
    30% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: left;
              transform-origin: left;
    }
    30.1% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
    100% {
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
  }
  @keyframes coverSlide {
    0% {
      -webkit-transform-origin: left;
              transform-origin: left;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
    }
    30% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: left;
              transform-origin: left;
    }
    30.1% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
    100% {
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
  }
  @-webkit-keyframes coverImage {
    0% {
      -webkit-transform-origin: left;
              transform-origin: left;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
    }
    30% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: left;
              transform-origin: left;
    }
    30.1% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
    100% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
  }
  @keyframes coverImage {
    0% {
      -webkit-transform-origin: left;
              transform-origin: left;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
    }
    30% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: left;
              transform-origin: left;
    }
    30.1% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
    100% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      -webkit-transform-origin: right;
              transform-origin: right;
    }
  }
  .hover-image::before {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .hover-image:hover::before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .contact__area.contact__area--company a:hover::after {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(56, 56, 56, 0.5);
  }
  .contact__area a:hover p::before {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
  .fade {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  .fade.fade-up {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
  .is-scroll.fade {
    opacity: 1;
    visibility: visible;
  }
  .is-scroll.fade.fade-up {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.default__page #headerNavPC {
  display: none;
}

.default__page .hero {
  height: calc(50vh - 70px);
}

.default__page .hero::before {
  background: url(../images/contact/contact_main.jpeg) no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.default__page .hero.hero-recipe::before {
  background: url(../images/recipe/recipe_main.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.default__page .hero__inner::before,
.default__page .hero__inner::after {
  height: 10vh;
}

.default__page .l-kv__scroll {
  padding-bottom: 70px;
}

.default__page .l-kv__scroll span {
  height: 65px;
}

.default__page.default__page--concept .main {
  padding-bottom: 0;
}

.default__page.default__page--concept .hero::before {
  background: url(../images/concept/main.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.default__page.default__page--concept .bg__texture--default.bg__texture--3 {
  top: -30vw;
}

.default__page .hero__copy {
  font-size: 2.5rem;
  line-height: 1.5;
}

.default__page .hero__copy span {
  display: block;
  font-size: .5em;
  line-height: 1;
  text-transform: uppercase;
}

.concept__image {
  height: 50vw;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1em;
}

.concept__list .concept__list--inner {
  position: relative;
}

.concept__list .concept__list--inner:not(:last-of-type) {
  margin-bottom: 20vw;
}

.concept__list .concept__list--inner:nth-of-type(1) .concept__image {
  background-image: url(../images/concept/list1.jpg);
}

.concept__list .concept__list--inner:nth-of-type(2) .concept__image {
  background-image: url(../images/concept/list2.jpg);
}

.concept__list .concept__list--inner:nth-of-type(3) .concept__image {
  background-image: url(../images/concept/list3.jpg);
}

.concept__title {
  font-size: 2rem;
  line-height: 1.5;
  color: #a48b2b;
  margin-bottom: 1em;
}

.concept__title span {
  display: block;
  font-size: 0.8em;
  color: #3c3c3c;
}

.order {
  margin-top: 20vw;
  overflow: hidden;
}

.order a {
  display: block;
  padding: 12vw 0 25vw 0;
  color: #fff;
}

.order a p {
  text-align: center;
  font-size: 1.8rem;
}

.order__container {
  position: relative;
}

.order__container::before, .order__container::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.order__container::before {
  background: url(../images/concept/banner.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.order__container::after {
  background-color: #43423c;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: .8;
}

.order__text {
  margin-bottom: 1em;
  text-align: center;
}

.order__text > span {
  font-size: 0.8em;
  display: inline-block;
  margin-bottom: 3em;
  position: relative;
}

.order__text > span::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.order__title {
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}

.order__btn {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #3c3c3c;
  -webkit-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
  left: 50%;
  position: absolute;
}

.order__btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.order__btn span::before {
  position: absolute;
  content: '';
  height: 1px;
  border-top: 1px solid #3c3c3c;
  border-right: 1px solid #3c3c3c;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.order__btn span::after {
  position: absolute;
  content: 'Click!';
  left: 70%;
  top: 88%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.concept__bg {
  position: absolute;
  top: 78%;
  left: 0;
  mix-blend-mode: color-dodge;
  z-index: -2;
}

.concept__bg.concept__bg--2 {
  left: auto;
  right: 0;
  top: 60%;
}

@media (min-width: 768px) {
  .bg__texture--default.bg__texture--2 {
    right: auto;
    left: -13vw;
    top: -39vw;
  }
  .default__page .hero {
    max-height: 345px;
  }
  .default__page .hero__copy {
    font-size: 3.5rem;
  }
  .concept__title {
    font-size: 3rem;
  }
  .concept__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .concept__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
            flex: 0 1 60%;
  }
  .concept__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
    margin-top: 0;
  }
  .order a {
    padding: 20px 0 80px 0;
  }
  .concept__list .concept__list--inner:nth-of-type(2) .concept__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.default__page.default__page--contact .hero__inner::before,
.default__page.default__page--contact .hero__inner::after {
  content: none;
}

@media (min-width: 1200px) {
  .default__page .hero__inner::before,
  .default__page .hero__inner::after {
    height: 7vw;
  }
  .order a {
    color: #3c3c3c;
  }
  .order {
    margin-top: 100px;
  }
  .order__text > span::before {
    border-bottom: 1px solid #3c3c3c;
  }
  .order__title {
    border-bottom: 1px solid #3c3c3c;
  }
  .order__container::after, .order__container::before {
    opacity: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
  }
  .order__container:hover::after, .order__container:hover::before {
    opacity: 1;
  }
  .order__container:hover .order__text > span::before {
    border-bottom: 1px solid #fff;
  }
  .order__container .order__btn,
  .order__container .order__btn span::before {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .order__container:hover .order__btn span::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .order__container:hover .order__btn span::after {
    opacity: 1;
  }
  .default__page .hero {
    height: 50vw;
    max-height: 458px;
  }
  .default__page .l-kv__sns {
    right: auto;
    left: 5%;
    top: 100px;
  }
  .default__page.default__page--concept .main .inner__width {
    max-width: 1200px;
  }
  .concept__list .concept__list--inner:not(:last-of-type) {
    margin-bottom: 240px;
  }
  .concept__image {
    max-height: 560px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
  .default__page .hero__copy {
    left: auto;
    -webkit-transform: inherit;
            transform: inherit;
    right: 5%;
    text-align: left;
    font-size: 4rem;
  }
  .default__page.default__page--concept .bg__texture--default.bg__texture--3 {
    left: auto;
    right: -6vw;
    top: -13vw;
    width: 440px;
    height: 440px;
  }
  .concept__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
  }
  .default__page.default__page--concept .main p {
    line-height: 2.5;
    font-size: 1.8rem;
  }
  .order a {
    padding: 80px 0 140px 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .order a p {
    font-size: 2.4rem !important;
  }
  .order a:hover {
    color: #fff;
  }
  .order a:hover .order__title {
    border-bottom: 1px solid #fff;
  }
  .order__text > span {
    padding: 0 1em;
  }
  .order__text {
    margin-bottom: 2em;
  }
  .order__btn {
    width: 55px;
    height: 55px;
  }
}

@media (min-width: 1800px) {
  .default__page .hero {
    max-height: 560px;
  }
}

.productarea {
  margin-top: 0;
}

.productarea__inner h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.productarea__list:not(:first-of-type) {
  margin-top: 6em;
}

.productarea__list h3 {
  font-size: 2rem;
  margin-bottom: 1em;
}

.productarea__content li {
  background-color: #fff;
  padding: 1em;
  position: relative;
}

.productarea__content li:not(:last-of-type) {
  margin-bottom: 100px;
}

.productarea__content li:not(:last-of-type)::after {
  position: absolute;
  content: '';
  background: url(../images/common/arrow_down.svg) no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  left: 50%;
  bottom: -72px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0.6;
}

.productarea__content h4 {
  font-size: 1.8rem;
  font-weight: bold;
}

.img-ojf {
  -o-object-fit: cover;
     object-fit: cover;
}

.productarea__image {
  margin-top: 1em;
}

.productarea__image img {
  width: 100%;
  height: 170px;
}

.num-italic {
  font-style: italic;
  font-size: 2.5em;
  color: #cfae2d;
  font-weight: normal;
  margin-right: 0.1em;
}

.default__page.default__page--quality .main {
  padding-bottom: 0;
}

.default__page.default__page--quality .hero::before {
  content: '';
  background: url(../images/top/list3.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
}

.default__page.default__page--quality .hero.hero-privacy::before {
  content: '';
  background: url(../images/privacy/prv_main.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.default__page.default__page--quality .bg__texture--default.bg__texture--3 {
  top: -30vw;
}

.default__page.default__page--quality .hero__inner::before,
.default__page.default__page--quality .hero__inner::after {
  height: 20vh;
}

.default__page.default__page--quality .hero__inner::before {
  opacity: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#36a3bc));
  background: linear-gradient(rgba(0, 0, 0, 0), #36a3bc);
}

.default__page.default__page--quality .hero__inner::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#36a3bc), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(#36a3bc, rgba(0, 0, 0, 0));
  opacity: 0;
}

.default__page.default__page--about .hero::before {
  background: url(../images/about/main.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.default__page.default__page--about .hero__inner::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#492900));
  background: linear-gradient(rgba(0, 0, 0, 0), #492900);
  top: auto;
  bottom: 0;
  z-index: 0;
}

.default__page.default__page--about .hero__inner::before {
  background: #230202;
  height: 100%;
  mix-blend-mode: screen;
}

.default__page.default__page--oem .hero::before {
  background: url(../images/oem/main.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.default__page.default__page--oem .hero__inner::after {
  content: none;
}

.default__page--quality .concept__list .concept__list--inner {
  position: relative;
}

.default__page--quality .concept__list .concept__list--inner:not(:last-of-type) {
  margin-bottom: 20vw;
}

.default__page--quality .concept__list .concept__list--inner:nth-of-type(1) .concept__image {
  background-image: url(../images/quality/list2.jpg);
}

.default__page--quality .concept__list .concept__list--inner:nth-of-type(2) .concept__image {
  background-image: url(../images/quality/list1.jpg);
}

.company__list--inner {
  background-color: rgba(255, 255, 255, 0.7);
}

.company__list--inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1em;
}

.company__list--inner dl dt,
.company__list--inner dl dd {
  padding: 1em 0;
}

.company__list--inner dl dt {
  font-weight: bold;
  border-bottom: 1px dashed #ccc;
}

.company__list--inner dl dt:not(:first-of-type) {
  border-top: 1px solid #504001;
}

.privacy-container {
  padding-bottom: 20vw;
}

.privacy-container ul li:not(:last-of-type) {
  margin-bottom: 4rem;
}

.privacy-container ul li h4 {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 15px;
}

.privacy-container ul li h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background-color: #a48b2b;
}

.privacy-container ul li p {
  text-align: justify;
}

@media (min-width: 768px) {
  .company__list dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .company__list dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
  }
  .company__list dl dd {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 80%;
            flex: 0 1 80%;
  }
  .flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex-box .roductarea__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 65%;
            flex: 0 1 65%;
  }
  .flex-box .productarea__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }
  .default__page--about .concept__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .concept__list .concept__list--inner:nth-of-type(2) .concept__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .company__list dl dd > p {
    padding-left: 1.5em;
  }
  .company__list dl dd > div {
    padding-left: 1.5em;
  }
  .company__list dl dd:not(:last-of-type) {
    border-bottom: none;
  }
  .company__list--inner dl dt:not(:first-of-type) {
    border-top: none;
  }
  .company__list--inner dl dd:not(:first-of-type) {
    border-top: 1px solid #c5c1b8;
  }
  .company__list--inner dl dt {
    border-bottom: none;
  }
  .company__list--inner dl dt p {
    padding-left: 1.5em;
  }
  .company__list--inner dl {
    padding: 0 2em;
  }
  .company__list--inner dl dt,
  .company__list--inner dl dd {
    padding: 2em 0;
  }
  .company__list--inner dl dt:not(:first-of-type) {
    border-top: 1px solid #504001;
  }
  .default__page.default__page--about .concept__bg {
    top: 48%;
  }
  .default__page.default__page--about .concept__bg.concept__bg--2 {
    top: -32%;
  }
}

@media (min-width: 1200px) {
  .main.main-quality .concept__content p {
    font-size: 1.8rem;
    line-height: 2.5;
  }
  .default__page--quality main .inner__width {
    max-width: 980px;
  }
  .productarea__list h3 {
    font-size: 3rem;
  }
  .productarea__content h4 {
    font-size: 2.4rem;
  }
  .productarea__content li {
    padding: 30px;
  }
  .productarea__list:not(:first-of-type) {
    margin-top: 250px;
  }
  .max-width-980,
  .max-width-980.inner__width {
    max-width: 980px;
    margin: 0 auto;
  }
  .default__page.default__page--about .hero__inner::after {
    height: 17vh;
  }
  .default__page.default__page--about .concept__bg {
    left: -20%;
  }
  .default__page.default__page--about .concept__bg.concept__bg--2 {
    left: auto;
    right: -27%;
  }
  .company__list--inner {
    padding: 50px 0;
  }
  .privacy-container ul li:not(:last-of-type) {
    margin-bottom: 100px;
  }
  .main.main--privacy {
    padding-top: 150px;
  }
}

.product__content {
  position: relative;
}

.product__content:not(:last-of-type) {
  margin-bottom: 30vw;
}

.product__content h2 {
  font-size: 2rem;
}

.product__content.product__content--sectrion2 {
  background-color: #230202;
  color: #fff;
}

.oem__content ul li:not(:last-of-type) {
  margin-bottom: 1.5em;
  border-bottom: 1px dashed #c5c1b8;
  padding-bottom: 1.5em;
}

.oem__content ul li dl dt {
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1;
}

.oem__content ul li dl dt span {
  font-size: 2.4em;
  font-style: normal;
  color: #aa9027;
  font-family: 'Herr Von Muellerhoff', cursive;
  padding-left: 0.2em;
}

.oem__content ul li dl dd h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5em;
  letter-spacing: normal;
}

.oem__content ul li dl dd h3 .point-wrap {
  position: relative;
}

.product__content--sectrion2--inner {
  padding: 10vw 0;
}

.product__content--sectrion2--inner p {
  line-height: 2.5;
}

h2.product__title {
  border: 1px solid #fff;
  text-align: center;
  margin-bottom: 1.5em;
}

h2.product__title.product__title--second {
  border: 1px solid #230202;
  color: #230202;
}

.oem__root li:not(:last-of-type) {
  margin-bottom: 20vw;
}

.oem__root--img {
  margin-bottom: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.oem__root--img::before {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  position: absolute;
  background: url(../images/top/round_fill.png) no-repeat;
  background-size: contain;
  left: 31%;
  top: -11%;
  z-index: -1;
}

.oem__root--img span {
  font-size: 3em;
  line-height: 1;
}

.oem__root--conttent h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
}

.oem__root--conttent h3 span {
  color: #a48b2b;
  margin-right: .5em;
  border: 1px solid #a48b2b;
  padding: 0.2em 0.5em;
  line-height: 1;
  display: inline-block;
  text-transform: uppercase;
}

.oem__root--conttent a {
	text-decoration: underline;
}

.product__content .bg__texture--default.bg__texture--4 {
  right: auto;
  left: -18vw;
  bottom: auto;
  top: -28vw;
}

.text-red {
  color: #b91919;
}

@media (min-width: 768px) {
  .product__content--sectrion3 .bg__texture--default.bg__texture--3 {
    width: 300px;
    height: 300px;
    top: -77%;
    right: -14%;
  }
  .oem__content {
    margin-top: 50px;
  }
  .product__content--sectrion2--inner {
    padding: 50px 0;
  }
  .oem__content ul li dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .oem__content ul li dl dt {
    width: 20%;
  }
  .oem__content ul li dl dd {
    width: 80%;
  }
  .oem__content ul li dl dd h3 {
    margin-bottom: 0.5em;
  }
  .product__content:not(:last-of-type) {
    margin-bottom: 200px;
  }
  .oem__root--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .oem__root--conttent {
    width: 65%;
  }
  .oem__root--conttent h3 span {
    padding: 0.2em 1em;
  }
  h2.product__title {
    margin-bottom: 2em;
  }
  .oem__root li:not(:last-of-type) {
    margin-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .product__content.product__content--sectrion3.inner__width.max-width-980 {
    max-width: 750px;
  }
  .footer__nav li:not(:nth-of-type(n+6)) {
    margin-bottom: 0;
  }
  .oem__root li:not(:last-of-type) {
    margin-bottom: 100px;
  }
  .oem__root--conttent {
    width: 80%;
  }
  .oem__root--wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .oem__root--img {
    margin-bottom: 0;
    left: 40px;
  }
  .oem__root--img::before {
    left: -90%;
  }
  .oem__root--conttent h3 {
    font-size: 2.4rem;
  }
  .oem__content ul li dl dd h3 .point-wrap {
    position: relative;
  }
  .oem__content ul li dl dd h3 .point-wrap::before {
    position: absolute;
    content: none;
    height: 1px;
    width: 100vw;
    background-color: #aa9027;
    top: 50%;
    right: -100vw;
  }
  .oem__content ul li dl dd h3 .point-wrap::after {
    position: absolute;
    content: none;
    height: 1px;
    width: 100vw;
    background-color: #c5c1b8;
    top: 50%;
    right: -130vw;
  }
  .oem__root--conttent h3 {
    text-align: left;
  }
  .oem__content ul li dl dd h3 {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
  .product__content h2 {
    font-size: 2.5rem;
  }
  .oem__content ul li dl dd h3 {
    overflow: hidden;
  }
  .oem__content ul li dl dd h3 span::after {
    width: 300px;
    right: auto;
    left: 440px;
  }
  .product__content--sectrion2 .bg__texture--default.bg__texture--3 {
    left: auto;
    right: -32%;
    top: -240px;
  }
  .product__content--sectrion2--inner {
    padding: 100px 0;
  }
  h2.product__title {
    padding: 0.5em 0;
  }
}

.contact__container h1 {
  font-size: 1rem;
}

.contact__container {
  width: 100%;
}

.contact__container ::-webkit-input-placeholder {
  font-size: 14px;
  color: #a2a2a2;
}

.contact__container :-ms-input-placeholder {
  font-size: 14px;
  color: #a2a2a2;
}

.contact__container ::-ms-input-placeholder {
  font-size: 14px;
  color: #a2a2a2;
}

.contact__container ::placeholder {
  font-size: 14px;
  color: #a2a2a2;
}

.contact__container h2 {
  font-size: 1.5rem;
  font-weight: 500;
}

.contact__container form#mailformpro {
  padding: 0;
}

.contact__container form#mailformpro dl dt {
  margin: 0 0 25px;
  padding: 0;
  font-weight: bold;
}

.contact__container form#mailformpro dl dd {
  margin: 0 0 30px;
  padding: 0 0 40px;
}

.contact__container form#mailformpro dl dd:last-of-type {
  margin-bottom: 0;
}

.contact__container form#mailformpro dl dt {
  float: none;
  font-size: 16px;
  text-align: justify;
  border-top: none;
}

.contact__container form#mailformpro dl dd {
  border-top: none;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.contact__container .mfp_colored {
  background-color: transparent;
}

.contact__container .mfp_element_text,
.contact__container .mfp_element_number,
.contact__container .mfp_element_select-one,
.contact__container .mfp_element_email,
.contact__container .mfp_element_tel,
.contact__container .mfp_element_textarea,
.contact__container .mfp_element_date,
.contact__container .mfp_element_password {
  width: 100% !important;
  margin: 0;
}

.contact__container .mfp_element_all {
  max-width: none;
}

.contact__container div.mfp_err {
  background-position: 0 5px;
}

.contact__container .privacyCh div.mfp_err {
  margin-left: -18px;
  text-indent: 0;
}

.contact__container .mfp_element_textarea {
  height: 200px !important;
}

.contact__container .mfp_element_submit {
  padding: 10px 50px;
}

.contact__container .privacyLead {
  height: 300px;
  overflow-y: auto;
  padding: 30px 20px;
  margin-bottom: 15px;
  background: #f0f0f0;
  color: #353535;
}

.contact__container .privacyLead::-webkit-scrollbar {
  background: #ccc;
  width: 10px;
}

.contact__container .privacyLead::-webkit-scrollbar-thumb {
  background: #aaa;
}

.contact__container form#mailformpro label {
  white-space: normal;
  font-weight: 300;
  cursor: pointer;
}

.contact__container form#mailformpro label.mfp_checked {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact__container form#mailformpro label.mfp_not_checked {
  padding: 0;
  border: none;
}

.contact__container input[type='radio'],
.contact__container input[type='checkbox'] {
  margin: -4px 0 0;
}

.contact__container .mfp_element_submit,
.contact__container .mfp_element_reset,
.contact__container .mfp_element_button,
.contact__container button.mfp_next,
.contact__container button.mfp_prev {
  text-shadow: 0px 2px 2px #fff;
}

.contact__container label.privacyCh {
  text-indent: -18px;
  padding-left: 18px !important;
}

.contact__container dl.mailform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact__container input[type='text'],
.contact__container input[type='email'],
.contact__container input[type='tel'],
.contact__container textarea,
.contact__container select {
  width: 100% !important;
  padding: 15px 0;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14px 10px;
  border: 1px solid #d5d4d4;
  background-color: #f6f6f6;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact__container button {
  cursor: pointer;
}

.address__container .mfp_col10:not(:last-of-type) {
  margin-bottom: 15px;
}

.contact__container .req {
  background: #dc170c;
  color: #fff;
  display: inline-block;
  padding: 5px 7px;
  margin-right: 0.5rem;
  font-size: 11px;
  line-height: 1;
  position: relative;
  top: -2px;
}

.contact__container main.thanks .container {
  min-height: calc(100vh - 164px);
  position: relative;
}

.contact__container main.thanks .container .txt {
  position: absolute;
  top: calc(50% + 25px);
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-align: center;
  width: 100%;
}

.contact__container main.thanks h1,
.contact__container main.thanks p {
  text-align: center;
}

.contact__container main.thanks h1 {
  font-size: 18px;
  margin-bottom: 30px;
}

.contact__container main.thanks .btn {
  margin: 0 auto;
}

.contact__container main.thanks #mfp_thanks {
  display: none;
}

.contact__container main.thanks .btn {
  padding: 6px 20px;
}

.contact__container form#mailformpro dl dd {
  padding-bottom: 0;
}

.contact__container form#mailformpro dl dt {
  margin-bottom: 10px;
}

.contact__container form#mailformpro h1 {
  font-size: 2rem;
  font-weight: 500;
}

.default__page .sitemap__container.default__container {
  margin-bottom: 350px;
}

.sitemap__container.default__container.contact__wrap {
  margin-top: 100px;
}

.contact__container .mfp_buttons button {
  padding: 20px;
  font-size: 1.6rem !important;
  border-radius: 8px;
  color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 15px 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  letter-spacing: 0.15em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact__container .adr_text {
  font-size: 0.8em;
  display: inline-block;
}

.contact__container .mfp_buttons button:hover {
  opacity: 0.7;
}

.contact__container .mfp_element_submit,
.contact__container .mfp_element_reset,
.contact__container .mfp_element_button,
.contact__container button.mfp_next,
.contact__container button.mfp_prev {
  background: none;
  text-shadow: none !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact__container .mfp_buttons button:hover {
  opacity: 0.7;
  background: #84033e;
}

.contact__container .mfp_buttons button {
  padding: 10px 50px;
}

.contact__container.mfp_thanks {
  display: block;
}

.thanks__message {
  text-align: center;
  line-height: 2;
  font-weight: 400;
}

div.mfp_thanks {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mfp_achroma {
  background-color: transparent;
}

.contact__container .privacy__text input[type='checkbox'] {
  margin-right: 10px;
}

.contact__container .privacyCh a {
  color: #2fb2e6;
  text-decoration: underline;
}

.privacy__footer {
  margin-bottom: 30px;
}

.mfp_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mfp_buttons button {
  background-color: #a8a7a7;
}

.mfp_err {
  color: #dc170c;
}

.contact__container .mfp_buttons button {
  background-color: #989595;
}

p.thanks_message {
  text-align: center !important;
  font-size: 2rem !important;
}

@media (min-width: 768px) {
  .contact__container input[type='text'],
  .contact__container input[type='email'],
  .contact__container input[type='tel'],
  .contact__container textarea,
  .contact__container select {
    font-size: 16px;
  }
  .contact__container ::-webkit-input-placeholder {
    font-size: 16px;
  }
  .contact__container :-ms-input-placeholder {
    font-size: 16px;
  }
  .contact__container ::-ms-input-placeholder {
    font-size: 16px;
  }
  .contact__container ::placeholder {
    font-size: 16px;
  }
  .contact__container form#mailformpro label {
    line-height: 1.5;
  }
  .contact__container.check__contents {
    margin-top: 60px;
  }
  .contact__lead {
    max-width: 560px;
    margin: 0 auto;
  }
  .contact__lead p {
    text-align: center;
  }
  .contact__container dl.mailform {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .contact__container .privacyLead {
    padding: 70px 20px;
  }
  .contact__container form#mailformpro dl dt,
  .contact__container form#mailformpro dl dd {
    margin: 0 0 30px;
    padding: 0 0 30px;
  }
  .contact__container form#mailformpro dl dt {
    width: 230px;
    text-align: left;
    letter-spacing: 0.05em;
  }
  .contact__container form#mailformpro dl dt:not(:last-of-type),
  .contact__container form#mailformpro dl dd:not(:last-of-type) {
    border-bottom: 1px solid #b3b1b1;
  }
  .contact__container form#mailformpro dl dd {
    width: calc(100% - 230px);
  }
  .contact__container .mfp_element_submit {
    padding: 10px 100px;
  }
  .contact__container .privacyLead {
    padding: 20px;
  }
  .contact__container .privacyLead p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .contact__container main.thanks .container {
    min-height: calc(100vh - 102px);
  }
  .contact__container main.thanks h1 {
    font-size: 22px;
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .contact__container form#mailformpro dl dt {
    width: 350px;
  }
  .contact__container form#mailformpro dl dd {
    width: calc(100% - 350px);
  }
}

@media (min-width: 1200px) {
  .privacy__footer {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}

.oem__content.oem__content--recipe {
  margin-top: 10vw;
}

.recipe__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  letter-spacing: normal;
  position: relative;
}

.recipe__box-img {
  width: 30%;
}

.recipe__box-content {
  width: 68%;
}

.recipe__wrap--top {
  margin-top: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.recipe__wrap--inner {
  margin-top: 2em;
}

.recipe__wrap--inner:not(:last-of-type) {
  border-bottom: 1px solid #a48b2b;
  padding-bottom: 2em;
}

.recipe__text {
  margin-top: 1em;
}

.recipe__title {
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  padding-left: 10px;
}

.recipe__title::before {
  position: absolute;
  left: 0;
  content: '';
  width: 3px;
  height: 100%;
  background-color: #cfae2d;
}

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

.recipe__list {
  border: 1px solid #ccc;
  background-color: #fff;
}

.recipe__list:not(:last-of-type) {
  margin-bottom: 1em;
}

.recipe__list dt,
.recipe__list dd {
  padding: 0.5em;
}

.recipe__list dt {
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.text-advice {
  color: #d01d1d;
}

@media (min-width: 768px) {
  .recipe__wrap--top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .recipe__img {
    width: 35%;
  }
  .recipe__text {
    margin-top: 0;
    width: 63%;
  }
  .recipe__box-img {
    width: 20%;
  }
  .recipe__box-content {
    width: 79%;
    z-index: 1;
  }
  .recipe__list:not(:last-of-type) {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .recipe__list dt,
  .recipe__list dd {
    padding: 0.5em 1em;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
  .recipe__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .recipe__list {
    width: 48%;
  }
  .recipe__desc p {
    font-size: 1.8rem;
  }
  .recipe__box-content {
    letter-spacing: 0.15em;
    width: 72%;
  }
  .recipe__title {
    font-size: 2.4rem;
    padding-left: 18px;
  }
  .recipe__title::before {
    width: 5px;
  }
  .recipe__wrap--top {
    margin-top: 1em;
  }
  .recipe__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recipe__desc p {
    font-size: 1.8rem;
  }
  .product__content h2.concept__title {
    font-size: 3rem;
  }
}

.global__conainer {
  overflow: hidden;
}

.main {
  position: relative;
  background: url(../images/common/bg1.jpg) repeat;
  padding: 30vw 0;
  line-height: 2;
  z-index: 1;
}

.main p {
  text-align: justify;
}

.hero {
  position: relative;
  height: calc(100vh - 70px);
  margin-top: 70px;
}

.hero__inner {
  height: 100%;
}

.hero__inner::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#492900));
  background: linear-gradient(rgba(0, 0, 0, 0), #492900);
  width: 100%;
  height: 400px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hero__inner::after {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(#492900), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(#492900, rgba(0, 0, 0, 0));
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
}

.hero_slider {
  height: 100%;
  z-index: -1;
}

.hero_slider--obj {
  height: 100%;
}

.hero_slider--obj img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero__copy {
  position: absolute;
  bottom: 5%;
  left: 5%;
  white-space: nowrap;
  text-align: left;
  color: #fff;
  font-size: 1.6rem;
  white-space: nowrap;
  line-height: 2;
  z-index: 1;
  letter-spacing: normal;
}

.hero__logo {
  max-width: 140px;
  position: absolute;
  left: 50%;
  top: 5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  mix-blend-mode: soft-light;
}

.inner__width {
  max-width: 90%;
  margin: 0 auto;
}

.top__product--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top__product--list li > div {
  position: relative;
  height: 100%;
}

.top__product--list li > div h4 {
  color: #aa9027;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  right: 1.5em;
  top: -1em;
  z-index: 1;
}

.top__product--list li > div h4 span {
  position: relative;
  display: inline-block;
  letter-spacing: 0.3em;
}

.top__product--list li > div h4 span::before {
  position: absolute;
  content: '';
  background: url(../images/common/background-fude-2-rl.png) no-repeat;
  background-size: contain;
  width: 3em;
  height: 180%;
  z-index: -1;
  left: -1.3em;
  top: -1em;
}

.top__product--list li > div:nth-child(even) h4 {
  right: auto;
  left: 1.5em;
}

.top__product--list li > div:nth-child(even) h4 span::before {
  background: url(../images/common/background-fude-2-rl-left.png) no-repeat;
  background-size: contain;
  left: .8em;
}

.top__product--list li > div p {
  padding: 1em;
}

.top__product--list li > div::before {
  position: absolute;
  content: '';
  background-color: #fff;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.top__product--list li > div figure {
  margin: 0 auto;
  height: 320px;
  overflow: hidden;
}

.top__product--list li > div figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 328px;
  width: 100%;
}

.top__product--list li:not(:last-of-type) {
  margin-bottom: 4em;
}

.top__section:not(:last-of-type) {
  margin-bottom: 50vw;
}

.top__obsession--list li {
  position: relative;
}

.top__obsession--list li::before, .top__obsession--list li::after {
  position: absolute;
  content: '';
  background-color: #c5c1b8;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
}

.top__obsession--list li::before {
  width: 1px;
  height: 80%;
}

.top__obsession--list li::after {
  width: 90%;
  height: 1px;
}

.top__obsession--list li:not(:last-of-type) {
  margin-bottom: 10vw;
}

.top__obsession--list li a {
  display: block;
  padding: 10px 5px 10px 20px;
  position: relative;
}

.top__obsession--list li a > div {
  position: relative;
}

.top__obsession--list li a > div::before {
  content: '';
  background: url(../images/common/ico_arrow.svg) no-repeat;
  background-size: contain;
  background-position: center right;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 3%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top__obsession--list li a::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#faedba), to(#d2b74e));
  background: linear-gradient(0deg, #faedba 0%, #d2b74e 100%);
  left: 0;
  top: 0;
  z-index: 1;
}

.top__obsession--list li a::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  opacity: .5;
  background-color: #fff;
  left: 0;
  top: 0;
}

.top__obsession--list li a small {
  position: relative;
  z-index: 1;
}

.top__obsession--list li a span {
  z-index: 1;
  position: relative;
  font-size: 1.4em;
}

.section__title--wrap {
  position: relative;
}

.section__title--wrap::before {
  position: absolute;
  background: url(../images/top/round_fill.png) no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  content: '';
  left: -0.7em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: 1em;
  position: relative;
  padding-left: 10px;
  overflow: hidden;
}

.section__title::before {
  content: '';
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: #d2b74e;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.section__title span {
  display: inline-block;
  position: relative;
}

.section__title span::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 300%;
  background-color: #d2b74e;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 105%;
}

.section__right {
  margin-top: 5vw;
  height: 200px;
  overflow: hidden;
}

.section__right img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 62% -16vw;
     object-position: 62% -16vw;
  height: 140%;
  width: 100%;
  border-radius: 30px 0 15px 0;
}

section {
  position: relative;
}

.bg__texture--default {
  position: absolute;
}

.bg__texture--default.bg__texture--1 {
  background-size: contain;
  background-position: center;
  background-image: url(../images/common/logo_bk.png);
  width: 60vw;
  height: 60vw;
  left: -8%;
  top: -10%;
  mix-blend-mode: difference;
  opacity: .3;
}

.bg__texture--default.bg__texture--2 {
  right: -12vw;
  border-radius: 100%;
  width: 50vw;
  height: 50vw;
  z-index: 4;
  mix-blend-mode: difference;
  opacity: 0.5;
  background: url(../images/top/bg_pattern04.png) repeat;
  background-size: 30%;
  top: -12vw;
}

.bg__texture--default.bg__texture--3 {
  right: -19vw;
  border-radius: 100%;
  width: 60vw;
  height: 60vw;
  z-index: 4;
  mix-blend-mode: difference;
  opacity: 0.5;
  background: url(../images/top/bg_pattern03.png) repeat;
  background-size: 30%;
  top: -63vw;
}

.bg__texture--default.bg__texture--4 {
  right: -12vw;
  border-radius: 100%;
  width: 50vw;
  height: 50vw;
  z-index: 4;
  mix-blend-mode: difference;
  opacity: 0.5;
  background: url(../images/top/bg_pattern04.png) repeat;
  background-size: 30%;
  bottom: -37vw;
}

.readmore {
  display: inline-block;
  margin-top: 1em;
  padding-left: 1.2em;
  position: relative;
}

.readmore::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 120%;
  bottom: 0;
  left: 50%;
  background-color: #3c3c3c;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.readmore::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1.2em;
  background-color: pink;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/common/ico_arrow.svg) no-repeat;
  background-size: 40%;
  background-position: center left;
}

.top__obsession--imglist li {
  position: relative;
  height: 136vw;
}

.top__obsession--imglist li:nth-of-type(1) .obsession__image .obsession__image--wrap {
  background-image: url(../images/top/list1.jpg);
}

.top__obsession--imglist li:nth-of-type(2) .obsession__image .obsession__image--wrap {
  background-image: url(../images/top/list2.jpg);
}

.top__obsession--imglist li:nth-of-type(3) .obsession__image .obsession__image--wrap {
  background-image: url(../images/top/list3.jpg);
}

.top__obsession--imglist li:nth-of-type(4) .obsession__image .obsession__image--wrap {
  background-image: url(../images/top/list4.jpg);
}

.obsession__image {
  position: relative;
}

.obsession__image .obsession__image--wrap {
  width: 100%;
  height: 66vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.obsession__contents {
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.obsession__contents p small {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: left;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}

.obsession__contents p small::before, .obsession__contents p small::after {
  position: absolute;
  content: '';
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #d2b74e;
}

.obsession__contents p small::before {
  left: -5px;
}

.obsession__contents p small::after {
  right: -5px;
}

.obsession__contents p span {
  font-size: 1.5em;
}

.l__section {
  white-space: nowrap;
  color: #fff;
  position: absolute;
  left: 5%;
  top: 5%;
  font-size: 2.5rem;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  z-index: 1;
}

.l__section__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l__section--num {
  margin-right: 3em;
  position: relative;
}

.l__section--num::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 2.8em;
  background-color: #fff;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.tb {
  display: none;
}

.gradient__green {
  position: relative;
}

.gradient__green::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(124, 97, 47, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(124, 97, 47, 0.7), rgba(0, 0, 0, 0));
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.contact__area--inner--image {
  height: 100%;
}

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

.obsession__contents--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .bg__texture--default.bg__texture--1 {
    width: 450px;
    height: 450px;
  }
  .bg__texture--default.bg__texture--4 {
    width: 350px;
    height: 350px;
    bottom: -18vw;
  }
  .tb {
    display: block;
  }
  .hero::before {
    background-position: -89.5vw -26vw;
  }
  .header__logo a {
    font-size: 2.3rem;
    padding-left: 60px;
  }
  .header__logo a::before {
    height: 50px;
  }
  .hero__copy {
    font-size: 3rem;
  }
  .hero > img {
    -o-object-position: 45% -28vw;
       object-position: 45% -28vw;
  }
  .section__title {
    font-size: 3.5rem;
  }
  .section__title--wrap::before {
    width: 120px;
    height: 120px;
  }
  .section__right {
    height: 400px;
  }
  .top__product--list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top__product--list li {
    width: 48%;
  }
  .top__product--list li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .top__product--list li:not(:nth-of-type(n+3)) {
    margin-bottom: 4em;
  }
  .top__obsession--imglist li {
    height: 107vw;
  }
  .bg__texture.bg__texture--2::before {
    left: -10%;
    width: 320px;
    height: 320px;
    top: -10.5%;
  }
  .l__section {
    font-size: 3rem;
  }
  .obsession__contents p span {
    font-size: 1.9em;
  }
  .obsession__contents p small {
    font-size: 1.3em;
  }
  .readmore {
    font-size: 1.3em;
    margin-top: 4em;
  }
  .contact__area {
    height: 36vw;
  }
  .fb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fb__logo {
    font-size: 2rem;
  }
  .fb__logo {
    /* width: 30%; */
  }
  .main {
    padding: 150px 0 50px 0;
  }
  .section__title span::before {
    width: 400%;
  }
  .main p {
    font-size: 1.6rem;
  }
  .top__product--list li:nth-child(even) h4 {
    right: 1.5em;
    left: auto;
  }
  .top__product--list li:nth-child(even) h4 span::before {
    background: url(../images/common/background-fude-2-rl.png) no-repeat;
    background-size: contain;
    left: -1.3em;
  }
  .obsession__contents {
    width: 70%;
  }
  .footer__nav li:not(:nth-of-type(n+5)) {
    margin-bottom: 1em;
  }
}

@media (min-width: 950px) {
  .contact__area {
    max-height: 290px;
  }
  .obsession__contents {
    width: 50%;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top__obsession--imglist li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  .top__obsession--imglist li:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .l__section {
    top: 10%;
  }
  .obsession__image {
    width: 50%;
  }
  .main {
    padding: 300px 0 300px 00;
  }
  .section__title span::before {
    width: 100vw;
  }
}

@media (min-width: 1200px) {
  .obsession__contents p small {
    margin-bottom: 1em;
  }
  .section__right {
    margin-top: 100px;
  }
  .text-line-pc {
    line-height: 3;
  }
  .hero {
    margin-top: 0;
    height: 100vh;
    overflow: hidden;
  }
  .hero::before {
    height: 100%;
    background-size: 166vw;
    background-position: 42% 26%;
  }
  .top__obsession--imglist li {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  .top__obsession--imglist li.is-scroll {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .top__product--list {
    padding-top: 50px;
  }
  .contact__area {
    max-height: 360px;
  }
  .contact__area a p {
    font-size: 3rem;
  }
  .top__product--list li {
    width: 23%;
    padding: 0;
  }
  .top__product--list li:not(:nth-of-type(n+3)) {
    margin-bottom: 0;
  }
  .top__product--list li h4,
  .top__product--list li:nth-child(even) h4 {
    right: 0em;
  }
  .section__left {
    width: 60vw;
  }
  .section__right {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 600px);
    height: 50vw;
  }
  .obsession__image {
    overflow: hidden;
  }
  .obsession__image .obsession__image--wrap {
    max-height: 500px;
  }
  .top__section:not(:last-of-type) {
    margin-bottom: 22vw;
  }
  .section__right {
    max-height: 650px;
    right: -10%;
    top: -54%;
  }
  .section__right img {
    -o-object-position: 58% -11vw;
       object-position: 58% -11vw;
  }
  .readmore {
    font-size: 1.2em;
  }
  .hero > img {
    -o-object-position: 39% -8vw;
       object-position: 39% -8vw;
  }
  .hero__logo {
    top: 9%;
    max-width: 200px;
  }
  .hero__copy {
    left: auto;
    right: 7%;
    bottom: 8%;
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
  }
  .hero__copy span {
    font-size: 0.6em;
  }
  .bg__texture.bg__texture--2::before {
    width: 560px;
    height: 560px;
    top: -22%;
    left: -8%;
  }
  .section__title--wrap::before {
    left: -1.7em;
  }
  .top__product--list li h4,
  .top__product--list li h4 {
    right: 0 !important;
  }
  .bg__texture--default.bg__texture--2 {
    width: 440px;
    height: 440px;
  }
  .bg__texture--default.bg__texture--3 {
    width: 360px;
    height: 360px;
    right: auto;
    left: -180px;
    top: -340px;
  }
  .bg__texture--default.bg__texture--1 {
    top: -680px;
  }
  .bg__texture--default.bg__texture--4 {
    right: -90px;
    bottom: -680px;
    width: 440px;
    height: 440px;
  }
  .inner__width.inner__width--960 {
    max-width: 1064px;
  }
  .section__left {
    max-width: 600px;
  }
}

@media (min-width: 1460px) {
  .hero::before {
    background-position: 42% 34%;
  }
}

@media (min-width: 1700px) {
  .top__section:not(:last-of-type) {
    margin-bottom: 360px;
  }
  .hero::before {
    background-position: 39% 34%;
    background-size: 144vw;
  }
}
/*# sourceMappingURL=index.css.map */


/* 241205 quality kai */

.taisei_box01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
    margin-bottom: 50px;
}

.taisei_text01 {
  flex: 1;
  font-size: 16px;
}

.taisei_img01 {
  flex: 1;
}

.taisei_img01 img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .taisei_box01 {
    flex-direction: column;
  }

  .taisei_text01,
  .taisei_img01 {
    flex: unset;
    width: 100%;
  }
}

/* taisei-con */
    .taisei-con {
      display: flex;
      justify-content: space-between;
      /*align-items: flex-start;*/
      gap:30px;
      align-items: stretch;
          margin-bottom: 30px;
    }

    .taisei-column {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    padding: 20px;
    }

    .taisei-column img {
      width: 100%;
    }

    .taisei-title {
      font-size: 1.4em;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .taisei-con_text {
      margin-top: 10px;
    }

    /* 画面幅767px以下で縦並びにする設定 */
    @media (max-width: 767px) {
    .taisei-con {
flex-direction: column;
    }
    }
    
/*　HACCP　*/
.haccp {
  display: flex;
  justify-content: center;
  align-items: center; 
  height: 100%;   

}

.haccp img {
  max-width: 100%; 
  height: auto; 
}


/*　top　*/

.default__page.default__page--quality .hero::before {
    content: '';
    background: url("../images/top/list5.jpg") no-repeat;
    background-size: cover;
    background-position: top center;
}
.default__page.default__page--quality .hero__inner::before {
       opacity: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#492900));
    background: linear-gradient(rgba(0, 0, 0, 0), #492900);
}