@charset "utf-8";

body {
  color: #000;
  background-color: #eee;
  font-size: 17px;
  line-height: 1.6;
  font-family: "Noto Serif JP",serif;
  font-weight: 500;
}

/** ------------------------------------------------------------
 * footer
 */
.footer {
  background-color: #000;
  font-size: 15px;
  font-weight: 300;
  overflow: hidden;
}

@media only screen and (max-width: 1500px) {
  .footer {
    font-size: calc(10px + .22vw);
  }
}

@media only screen and (max-width: 700px) {
  .footer {
    font-size: 11px;
  }
}

.footer,
.footer a {
  color: #fff;
}

.footer a {
  text-decoration: none;
}

.footerWrap {
  margin: 0 auto;
  padding: 6.6vw 20px 4vw;
  position: relative;
  max-width: 1200px;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}

@media only screen and (max-width: 700px) {
  .footerWrap {
    padding: calc(7vw + 70px) 0 4vw;
    display: flex;
    flex-direction: column-reverse;
  }
}

.company {
  margin-right: 60px;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  flex-basis: 66%;
}

@media only screen and (max-width: 1000px) {
  .company {
    flex-basis: 58%;
  }
}

.company__logo {
  padding-right: 3%;
  width: 12.6%;
}

.company__logo a {
  display: block;
}

.company__logo img {
  margin: 0 auto;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 700px) {
  .company {
    margin-right: 0;
    padding: 5vw 1.5em 0;
    display: block;
    flex-basis: auto;
  }

  .company__logo {
    margin: 0 auto;
    position: absolute;
    top: 3.5vw;
    right: 0;
    left: 0;
    display: block;
    padding-right: 0;
    width: 70px;
  }
}

.company__body {
  padding-left: 8%;
  position: relative;
}

.company__body::after {
  content: "";
  position: absolute;
  top: .5vw;
  left: 0;
  height: calc(100% - .8vw);
  display: block;
  border-right: 1px solid #fff;
  transition: all 1s;
}

@media only screen and (max-width: 700px) {
  .company__body {
    padding-left: 0;
    opacity: 0.6;
  }

  .company__body::after {
    content: none;
  }
}

.company__body.JSanimation--on::after {
  top: -6.6vw;
}

.company__body.JSanimation--motion::after {
  animation-name: footerLine;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes footerLine {
  from {
    top: -6.6vw;
    height: 0;
  }

  to {
    top: .5vw;
    height: calc(100% - .8vw);
  }
}

.company__name {
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 1500px) {
  .company__name {
    font-size: calc(10px + .367vw);
  }
}

@media only screen and (max-width: 700px) {
  .company__name {
    margin-bottom: 0.2em;
    font-size: 13px;
  }
}

.footerNav {
  flex-basis: 34%;
}

@media only screen and (max-width: 1000px) {
  .footerNav {
    flex-basis: 42%;
  }
}

@media only screen and (max-width: 700px) {
  .footerNav {
    flex-basis: auto;
    width: 100%;
  }
}

.footerNavWrap {
  column-count: 2;
}

@media only screen and (max-width: 700px) {
  .footerNavWrap {
    column-count: auto;
  }
}

.footerNav__item {
  margin-bottom: 0.2em;
}

@media only screen and (max-width: 700px) {
  .footerNav__item {
    margin-bottom: 0;
    border-top: 1px solid #333;
  }

  .footerNav__item:not(.footerNav__item--SNS) a {
    padding: 0.8em 2.5em 1em 1.5em;
    position: relative;
    display: block;
  }

  .footerNav__item:not(.footerNav__item--SNS) a::before {
    content: "";
    margin: auto 0;
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    border-top: 1px solid #444;
    border-right: 1px solid #444;
    height: 0.6em;
    width: 0.6em;
    transform: rotate(45deg);
    transition: all .5s;
  }
}

.footerNav__item a:hover {
  text-decoration: underline;
}

.footerNav__item--SNS {
  margin-top: 0.6em;
}

.footerNav__item--SNS a {
  margin-right: 0.8vw;
  display: inline-block;
  width: 2.3426vw;
  height: 2.3426vw;
  vertical-align: top;
  text-decoration: none !important;
}

@media only screen and (max-width: 700px) {
  .footerNav__item a:hover {
    text-decoration: none;
  }

  .footerNav__item--SNS {
    margin-top: 0;
    padding: 0.8em 1.5em;
    text-align: center;
  }

  .footerNav__item--SNS a {
    padding: 6px;
    width: 30px;
    height: 30px;
  }
}

.footerNav__item--SNS a img {
  width: 100%;
  opacity: 0.45;
  transition: all .5s;
}

.footerNav__item--SNS a:hover img {
  opacity: 0.8;
}

.footerInquiry {
  margin-top: 0.6em;
}

.footerInquiry a {
  padding: 0.7em 3em;
  position: relative;
  display: block;
  line-height: 1;
  color: #fff;
  background-color: #af2b2b;
  text-align: center;
  transition: all 1s;
}

@media only screen and (max-width: 700px) {
  .footerInquiry {
    margin: 0 1.5em;
  }

  .footerInquiry a {
    padding: 1.2em 3em;
  }
}

.footerInquiry.JSanimation--on a {
  color: #000;
  background-color: #fff;
}

.footerInquiry.JSanimation--motion a {
  animation-name: footerInquiryText;
  animation-duration: .8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes footerInquiryText {
  0% {
    color: #000;
  }
  25% {
    color: #000;
  }
  100% {
    color: #fff;
  }
}

.footerInquiry a::before {
  content: "";
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  z-index: 1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 0.4em;
  width: 0.4em;
  transform: rotate(45deg);
  transition: all 1s;
}

@media only screen and (max-width: 700px) {
  .footerInquiry a::before {
    border-top-width: 1px;
    border-right-width: 1px;
  }
}

.footerInquiry.JSanimation--on a::before {
  border-top-color: #000;
  border-right-color: #000;
}

.footerInquiry.JSanimation--motion a::before {
  animation-name: footerInquiryArrow;
  animation-duration: .8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes footerInquiryArrow {
  0% {
    border-top-color: #000;
    border-right-color: #000;
  }
  80% {
    border-top-color: #000;
    border-right-color: #000;
  }
  100% {
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

.footerInquiry a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #af2b2b;
  transition: all 1s;
}

.footerInquiry.JSanimation--on a::after {
  width: 0;
}

.footerInquiry.JSanimation--motion a::after {
  animation-name: footerInquiryBG;
  animation-duration: .8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes footerInquiryBG {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.footerInquiry a:hover {
  color: #000 !important
}

.footerInquiry a:hover::after {
  background-color: #fff;
}

.footerInquiry a:hover::before {
  border-top-color: #000 !important;
  border-right-color: #000 !important;
}

.footerInquiry a span {
  position: relative;
  z-index: 1;
}

.copyright {
  margin: 0 auto;
  padding: 0 1.5em 3.15vw;
  max-width: 1200px;
  color: rgba(255,255,255,0.5);
  font-family: "Playfair Display",serif;
  text-align: center;
}

@media only screen and (max-width: 700px) {
  .copyright {
    font-size: 10px;
  }
}

.productListPdfLink a {
  border: 2px solid #AF2B2A !important;
  color: #fff !important;
  background-color: #AF2B2A !important;
}

.productListPdfLink a:hover {
  color: #AF2B2A !important;
  background-color: #fff !important;
}

.productListPdfLink a:hover::before {
  border-top-color: #AF2B2A !important;
  border-right-color: #AF2B2A !important;
}
