@charset "UTF-8";
/*
---------------------------------------------

    base settings

*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
  color: #555;
  position: relative;
}

main, time, picture {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  clear: both;
}

ul, ol, dl, p, img, form, dt, dd {
  margin: 0;
  padding: 0;
  border: 0;
}

li {
  list-style: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

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

a {
  color: #555;
  transition: opacity 0.3s ease;
  outline: none;
}

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

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

/* microclearfix */
.cf:before,
.cf:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.cf:after {
  clear: both;
}

/** For IE 6/7 only */
.cf {
  *zoom: 1;
}

* {
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-overflow-scrolling: touch;
}

/* animation */
@keyframes gnavi-btn-open-01 {
  20% {
    transform: translate(-50%, 0);
  }
  60% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 0) rotate(-45deg);
  }
}
@keyframes gnavi-btn-open-02 {
  20% {
    transform: translate(-50%, 0);
  }
  60% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 0) rotate(45deg);
  }
}
@keyframes gnavi-btn-close-01 {
  0% {
    transform: translate(-50%, 0) rotate(-45deg);
  }
  40% {
    transform: translate(-50%, 0) rotate(0);
  }
  80% {
    transform: translate(-50%, 0) rotate(0);
  }
  100% {
    transform: translate(-50%, 8px);
  }
}
@keyframes gnavi-btn-close-02 {
  0% {
    transform: translate(-50%, 0) rotate(45deg);
  }
  40% {
    transform: translate(-50%, 0) rotate(0);
  }
  80% {
    transform: translate(-50%, 0) rotate(0);
  }
  100% {
    transform: translate(-50%, -8px);
  }
}
@keyframes gnavi-btn-close-01-sp {
  0% {
    transform: translate(-50%, 0) rotate(-45deg);
  }
  40% {
    transform: translate(-50%, 0) rotate(0);
  }
  80% {
    transform: translate(-50%, 0) rotate(0);
  }
  100% {
    transform: translate(-50%, 5px);
  }
}
@keyframes gnavi-btn-close-02-sp {
  0% {
    transform: translate(-50%, 0) rotate(45deg);
  }
  40% {
    transform: translate(-50%, 0) rotate(0);
  }
  80% {
    transform: translate(-50%, 0) rotate(0);
  }
  100% {
    transform: translate(-50%, -5px);
  }
}
/*
---------------------------------------------

    header settings

*/
.l-header {
  padding: 20px;
  position: relative;
}

.header-logo {
  width: 113px;
  margin: 0 auto;
}
/*
---------------------------------------------

    gnavi settings

*/
.l-gnavi-area {
  width: 100%;
  height: 100vh;
  background: #FFF;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: visibility 0.3s, opacity 0.3s;
}
.l-gnavi-area__inner {
  width: 100%;
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
  padding: 80px 0 0;
  position: relative;
}

.gnavi-btn {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  cursor: pointer;
}
.gnavi-btn::before, .gnavi-btn::after {
  content: "";
  width: 32px;
  height: 1px;
  background-color: #001E00;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.gnavi-btn::before {
  animation: gnavi-btn-close-01 0.8s ease forwards;
  transform: translate(-50%, 8px);
}
.gnavi-btn::after {
  animation: gnavi-btn-close-02 0.8s ease forwards;
  transform: translate(-50%, -8px);
}

.is-gnavi-open .gnavi-btn::before {
  animation: gnavi-btn-open-01 0.8s ease forwards;
}
.is-gnavi-open .gnavi-btn::after {
  animation: gnavi-btn-open-02 0.8s ease forwards;
}
.is-gnavi-open .l-gnavi-area {
  visibility: visible;
  opacity: 1;
}

.gnavi-logo {
  width: 180px;
  margin: 30px 20px;
}
s .gnavi-logo__link {
  display: block;
}

.gnavi-list {
  width: 50%;
  margin: 0 0 0 auto;
  position: relative;
}
.gnavi-list__item {
  margin: 0 50px;
  font-size: 2.7rem;
  line-height: 1;
}
.gnavi-list__item + .gnavi-list__item {
  margin-top: 30px;
}
.gnavi-list__item._item-kissako, .gnavi-list__item._item-products, .gnavi-list__item._item-feature {
  margin-top: 0;
  font-size: 4.2rem;
  position: absolute;
  left: -100%;
}
.gnavi-list__item._item-kissako {
  top: 0;
}
.gnavi-list__item._item-products {
  top: 50%;
  transform: translate(0, -50%);
}
.gnavi-list__item._item-feature {
  bottom: 0;
}
.gnavi-list__item._item-top {
  margin-top: 0;
}
.gnavi-list__link {
  display: inline-block;
  color: #001E00;
  text-decoration: none;
}
.gnavi-list__en {
  height: 13px;
  margin: 10px 0 0;
  display: block;
  font-size: 0;
}
.gnavi-list__en__img {
  max-width: inherit;
  height: 100%;
}

.gnavi-sns {
  display: flex;
}
.gnavi-sns__item {
  width: 30px;
}
.gnavi-sns__item + .gnavi-sns__item {
  margin-left: 30px;
}
.gnavi-sns__link {
  display: block;
}

/*
---------------------------------------------

    main settings

*/
/*
---------------------------------------------

    footer settings

*/
.l-footer {
  position: relative;
}
.l-footer::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #B3BCB3;
  position: absolute;
  top: 28px;
  left: 0;
  z-index: -1;
  transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s 0.5s;
}
.l-footer.js-inview {
  overflow: hidden;
}
.l-footer.js-inview::before {
  width: 0;
}
.l-footer.is-animated::before {
  width: 100%;
}

.footer-logo {
  width: 113px;
  margin: 0 auto 40px;
  position: relative;
}
.footer-logo::after {
  content: "";
  width: 80px;
  height: 80px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: -1;
  transform: translate(-51%, 0);
}
.footer-logo__link {
  display: block;
}

.footer-pagetop {
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
}
.footer-pagetop__link {
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.8) url("../img/common/arrow-01-up.svg") no-repeat center/25px auto;
}

.footer-sns {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
.footer-sns__item {
  width: 24px;
  margin: 0 10px;
}
.footer-sns__link {
  display: block;
}

.footer-copyright {
  margin: 15px 0;
  font-size: 1.2rem;
  text-align: center;
}

/*
---------------------------------------------

    common settings

*/
.for-pc {
  display: block;
}

.for-sp {
  display: none;
}

.text-horizontal {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

.text-marker {
  padding: 0 0.5em;
}
.text-marker._color-white {
  background-color: #001E00;
  color: #FFF;
}

.btn-primary__link {
  padding: 10px 20px 10px 0;
  display: inline-block;
  color: #001E00;
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
}
.btn-primary__link::after {
  content: "";
  width: 100%;
  height: 5px;
  background: url("../img/common/arrow-02-right.svg") no-repeat top right/auto 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.btn-primary__link._color-red {
  color: #DB0000;
}
.btn-primary__link._color-red::after {
  background-image: url("../img/common/arrow-02-right-red.svg");
}
.btn-primary__link:hover {
  opacity: 1;
}
.btn-primary._align-center {
  text-align: center;
}
.btn-primary._align-right {
  text-align: right;
}
.btn-primary._size-small .btn-primary__link {
  font-size: 1.4rem;
}
.btn-primary.js-inview .btn-primary__link::after {
  transform: translate3d(-8%, 0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s 0.3s, width ease 0.3s;
}
.btn-primary.is-animated .btn-primary__link::after {
  transform: translate3d(0, 0, 0);
}
.btn-primary.is-animated .btn-primary__link:hover::after {
  width: 108%;
}

.btn-online {
  margin: 40px auto;
  text-align: center;
}
.btn-online__link {
  padding: 10px 25px 10px 30px;
  display: inline-block;
  background: url("../img/common/icon-cart.svg") no-repeat left top 12px/17px auto;
  text-decoration: none;
  position: relative;
}
.btn-online__link::after {
  content: "";
  width: 100%;
  height: 5px;
  background: url("../img/common/arrow-02-right.svg") no-repeat top right/auto 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
.btn-online__link:hover {
  opacity: 1;
}
.btn-online__img {
  width: auto;
  height: 15px;
}
.btn-online.js-inview .btn-online__link::after {
  transform: translate3d(-10%, 0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s 0.4s, width cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.btn-online.is-animated .btn-online__link::after {
  transform: translate3d(0, 0, 0);
}
.btn-online.is-animated .btn-online__link:hover::after {
  width: 110%;
}

.btn-form {
  width: 100%;
  padding: 15px;
  background-color: #001E00;
  border: 1px solid #001E00;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-form:hover {
  opacity: 0.6;
}
.btn-form._type-back {
  background-color: #fff;
  color: #001E00;
}
.btn-form-wrapper {
  margin: 80px auto 0;
  display: flex;
  justify-content: center;
}
.btn-form-wrapper > .btn-form {
  width: calc((100% - 30px) / 2);
  max-width: 200px;
}
.btn-form-wrapper > .btn-form + .btn-form {
  margin-left: 30px;
}

.l-btn-list-01 {
  margin: 40px 0 0;
  display: flex;
  justify-content: space-between;
}
.l-btn-list-01__item + .l-btn-list-01__item {
  margin-left: 20px;
}
.l-btn-list-01._align-right {
  justify-content: flex-end;
}

.l-column-two {
  display: flex;
  justify-content: space-between;
}
.l-column-two__item {
  width: calc((100% - 40px) / 2);
}
.l-column-two._align-center {
  align-items: center;
}

.slick-dots {
  bottom: -40px;
}
.slick-dots li {
  width: 12.5%;
  max-width: 75px;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
}
.slick-dots li button::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 1;
}
.slick-dots li.slick-active button::before {
  background-color: #001E00;
}

.section-inner {
  width: 100%;
  max-width: calc(960px + 40px);
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.section-01 {
  margin: 0 0 120px;
  position: relative;
}
.section-01::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #B3BCB3;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -1;
}
.section-01.js-inview {
  overflow: hidden;
}
.section-01.js-inview::before {
  width: 0;
  transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s 0.5s;
}
.section-01.is-animated::before {
  width: 100%;
}
.section-01 > .section-inner {
  display: flex;
  flex-wrap: wrap;
}
.section-01-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.section-01-header._align-flex-end {
  align-items: flex-end;
}
.section-01-content._width-full {
  width: 100%;
}
.section-01-footer {
  width: 100%;
  margin-top: 120px;
}
.section-01-footer._type-index {
  margin-top: 70px;
}
.section-01-hdg {
  margin: 0 1.2rem 1em 0;
  padding: 0 20px 0 0;
  color: #001E00;
  font-size: 4.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  transform: translate3d(0, 0, 0);
}
.section-01-hdg > span {
  display: block;
  background: #FFF;
  transform: translate3d(0, 0, 0);
}
.section-01-hdg__en {
  width: 9px;
  font-size: 0;
  line-height: 1;
  position: absolute;
  right: -10px;
  bottom: 10px;
}
.section-01-hdg.js-inview {
  transform: translate3d(0, -100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.8s;
  overflow: hidden;
}
.section-01-hdg.js-inview > span {
  transform: translate3d(0, 100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.8s;
}
.section-01-hdg.is-animated {
  transform: translate3d(0, 0, 0);
}
.section-01-hdg.is-animated > span {
  transform: translate3d(0, 0, 0);
}
.section-01-text {
  padding-top: 4rem;
  display: inline-block;
  color: #001E00;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: left;
}
.section-01._layout-right::before {
  left: auto;
  right: 0;
}
.section-01._layout-right > .section-inner {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.section-01._layout-right .section-01-header {
  flex-direction: row-reverse;
}
.section-01._layout-right .section-01-hdg {
  padding: 0 0 0 20px;
}
.section-01._layout-right .section-01-hdg__en {
  right: auto;
  left: -10px;
}
.section-01._layout-right .section-01-text {
  text-align: right;
}

.wp-pagenavi {
  margin: 80px 0 0;
  padding: 0 75px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.wp-pagenavi .current,
.wp-pagenavi .page {
  margin: 0 8px;
  padding: 10px 5px;
  border: none;
  border-bottom: 1px solid;
  display: block;
}
.wp-pagenavi .page {
  border-color: #fff;
  color: #999;
  text-decoration: none;
}
.wp-pagenavi .page:hover {
  color: #001E00;
  opacity: 1;
}
.wp-pagenavi .current {
  border-color: #001E00;
  color: #001E00;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  border: none;
  display: inline-block;
  color: #001E00;
  font-size: 1.4rem;
  text-decoration: none;
  position: absolute;
  top: 0;
}
.wp-pagenavi .nextpostslink::after,
.wp-pagenavi .previouspostslink::after {
  content: "";
  width: 100%;
  height: 5px;
  background: no-repeat top right/auto 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
  opacity: 1;
}
.wp-pagenavi .nextpostslink:hover::after,
.wp-pagenavi .previouspostslink:hover::after {
  width: 130%;
}
.wp-pagenavi .nextpostslink {
  padding: 10px 10px 10px 0;
  right: 0;
}
.wp-pagenavi .nextpostslink::after {
  background-image: url("../img/common/arrow-02-right.svg");
}
.wp-pagenavi .previouspostslink {
  padding: 10px 0 10px 10px;
  left: 0;
}
.wp-pagenavi .previouspostslink::after {
  background-image: url("../img/common/arrow-02-left.svg");
  background-position: top left;
  left: auto;
  right: 0;
}
.wp-pagenavi .extend {
  padding: 10px 5px;
  border: none;
  display: block;
}

.banner-list {
  max-width: 960px;
  margin: 0 auto;
}
.banner-list.slick-dotted.slick-slider {
  margin-bottom: 120px;
}
.banner-list__link {
  display: block;
}
.banner-list__item {
  position: relative;
}
.banner-list__text {
  display: inline-block;
  font-size: 2rem;
  line-height: 1.8;
  position: absolute;
  left: 40px;
  bottom: 40px;
  overflow: hidden;
}
.banner-list__text > span {
  display: block;
}
.banner-list__text.js-inview {
  transform: translate3d(-100%, 0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
  overflow: hidden;
}
.banner-list__text.js-inview > span {
  transform: translate3d(100%, 0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s 0.5s;
}
.banner-list__text.is-animated {
  transform: translate3d(0, 0, 0);
}
.banner-list__text.is-animated > span {
  transform: translate3d(0, 0, 0);
}

.section-01 + .banner-list {
  margin-top: 120px;
}

.post-list__item + .post-list__item {
  border-top: solid 1px #B3BCB3;
}
.post-list__item.js-inview {
  visibility: hidden;
  opacity: 0;
  transition: opacity ease 0.6s 0.3s;
}
.post-list__item.is-animated {
  visibility: visible;
  opacity: 1;
}
.post-list__link {
  padding: 15px 0;
  display: block;
  text-decoration: none;
}
.post-list__hdg {
  margin: 0 0 5px;
  color: #001E00;
  font-size: 1.6rem;
  font-weight: 500;
}
.post-list__date {
  display: inline-block;
  font-weight: 300;
  font-size: 1.2rem;
}
.post-list__icon-new {
  margin: 0 10px;
  padding: 0 5px;
  background: #E5E8E5;
  display: inline-block;
  color: #001E00;
  font-size: 1.2rem;
}

.post-list-thumb {
  display: flex;
  flex-wrap: wrap;
}
.post-list-thumb__item {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}
.post-list-thumb__item:nth-child(even) {
  margin-right: 0;
}
.post-list-thumb__item:nth-child(n+3) {
  margin-top: 40px;
}
.post-list-thumb__item.js-inview {
  visibility: hidden;
  opacity: 0;
  transition: opacity ease 0.6s 0.3s;
}
.post-list-thumb__item.is-animated {
  visibility: visible;
  opacity: 1;
}
.post-list-thumb__link {
  display: flex;
  text-decoration: none;
}
.post-list-thumb__thumb {
  width: 50%;
}
.post-list-thumb__content {
  width: 50%;
  padding: 0 0 0 20px;
}
.post-list-thumb__hdg {
  margin: 0 0 10px;
  color: #001E00;
  font-size: 1.4rem;
  font-weight: 500;
}
.post-list-thumb__date {
  display: inline-block;
  font-weight: 300;
  font-size: 1.2rem;
}
.post-list-thumb__icon-new {
  margin: 0 10px;
  padding: 0 5px;
  background: #E5E8E5;
  display: inline-block;
  color: #001E00;
  font-size: 1.2rem;
}

.post-hdg {
  color: #001E00;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
.post-hdg._label-num-01 {
  min-height: 42px;
  padding: 10px 0 10px 95px;
  background: url("../img/common/text-number-01.svg") no-repeat center left/auto 42px;
}
.post-hdg._label-num-01::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #B3BCB3;
  position: absolute;
  top: 50%;
  left: 64px;
  transform: translate(0, -50%);
}
.post-hdg._label-num-02 {
  min-height: 42px;
  padding: 10px 0 10px 95px;
  background: url("../img/common/text-number-02.svg") no-repeat center left/auto 42px;
}
.post-hdg._label-num-02::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #B3BCB3;
  position: absolute;
  top: 50%;
  left: 64px;
  transform: translate(0, -50%);
}
.post-hdg._label-num-03 {
  min-height: 42px;
  padding: 10px 0 10px 95px;
  background: url("../img/common/text-number-03.svg") no-repeat center left/auto 42px;
}
.post-hdg._label-num-03::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #B3BCB3;
  position: absolute;
  top: 50%;
  left: 64px;
  transform: translate(0, -50%);
}

.post-hdg-secondary {
  width: 100%;
  max-width: 730px;
  margin: 80px auto 30px;
  color: #001E00;
  font-size: 1.8rem;
  font-weight: 500;
}
.post-hdg-secondary._align-center {
  text-align: center;
}
.post-hdg-secondary._width-full {
  max-width: inherit;
}

.post-date {
  margin-top: 10px;
  display: inline-block;
  font-weight: 300;
  font-size: 1.2rem;
}

.post-media {
  margin: 80px auto;
}
.post-media.wp-block-image {
  margin: 80px auto;
}

.post-video {
  width: 100%;
  height: 0;
  margin: 80px auto;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.post-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.post-text {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  line-height: 2;
}
.post-text + .post-text {
  margin-top: 1em;
}
.post-text + .btn-primary {
  margin-top: 60px;
}
.post-text._align-center {
  text-align: center;
}
.post-text > strong {
  color: #001E00;
}
.post-text._width-full {
  max-width: inherit;
}

.l-post-tags {
  margin: 120px 0 0;
}

.post-tags-hdg {
  margin: 0 0 25px;
  height: 22px;
  text-align: center;
}
.post-tags-hdg__img {
  max-height: inherit;
  height: 100%;
}

.post-tags-list {
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.post-tags-list__item {
  margin: 0 8px 16px;
  font-size: 1.2rem;
}
.post-tags-list__link {
  padding: 5px 10px;
  background-color: #E4E7E4;
  display: block;
  text-decoration: none;
}

.post-header {
  margin: 0 0 40px;
}

.post-content > *:first-child {
  margin-top: 0;
}
.post-content > *:last-child {
  margin-bottom: 0;
}

.post-footer {
  margin: 40px 0 0;
}

.post-nodata-hdg {
  width: 100%;
  margin: 80px auto 30px;
  padding: 0 20px;
  color: #001E00;
  font-size: 1.8rem;
  font-weight: 500;
}

.products-list {
  display: flex;
  flex-wrap: wrap;
}
.products-list__item {
  width: calc((100% - 50px) / 2);
  margin-right: 50px;
}
.products-list__item:nth-child(even) {
  margin-right: 0;
}
.products-list__item:nth-child(n+3) {
  margin-top: 80px;
}
.products-list__item.js-inview {
  visibility: hidden;
  opacity: 0;
  transition: opacity ease 0.8s 0.3s;
}
.products-list__item.is-animated {
  visibility: visible;
  opacity: 1;
}
.products-list__link {
  display: block;
  text-decoration: none;
}
.products-list__thumb {
  margin: 0 0 15px;
  height: 0;
  padding: 0 0 66.66%;
  position: relative;
  overflow: hidden;
}
.products-list__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.products-list__content {
  position: relative;
}
.products-list__name {
  color: #001E00;
  font-weight: 500;
}
.products-list__name-en {
  width: calc(100% - 70px);
  margin-top: 8px;
  font-weight: 300;
  font-size: 1.2rem;
}
.products-list__price {
  padding: 0 0 0 1em;
  display: inline-block;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}
.products-list__price::before {
  content: "¥";
  position: absolute;
  top: 0;
  left: 0;
}

.products-photos__item {
  text-align: center;
}
.products-photos__img {
  width: 100%;
  max-width: inherit;
  margin: 0 auto;
}

.products-header {
  margin: 0 0 30px;
  position: relative;
}

.products-photos + .products-header {
  margin-top: 70px;
}

.products-name {
  color: #001E00;
  font-size: 2rem;
  font-weight: 500;
}

.products-name-en {
  width: calc(100% - 70px);
  margin-top: 8px;
  font-weight: 300;
  font-size: 1.2rem;
}

.products-price {
  padding: 0 0 0 1em;
  display: inline-block;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}
.products-price::before {
  content: "¥";
  position: absolute;
  top: 0;
  left: 0;
}

.products-text {
  margin: 0 0 1em;
  line-height: 1.8;
}

.l-products-summary {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.products-summary {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
  position: relative;
}
.products-summary::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #B3BCB3;
  position: absolute;
  top: 0.6em;
  left: 0;
  z-index: -1;
}
.products-summary:nth-child(3n) {
  margin-right: 0;
}
.products-summary:nth-child(n+4) {
  margin-top: 30px;
}
.products-summary__label {
  padding: 0 5px 0 0;
  display: block;
  background: #FFF;
  color: #001E00;
  font-weight: 500;
  font-size: 1.6rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
}
.products-summary__content {
  padding: 1.5em 0 0 3em;
}
.products-summary__text {
  margin: 0 0 10px;
  line-height: 1.6;
}

.products-star {
  margin: 5px 0;
  display: flex;
}
.products-star__label {
  margin: 0 1em 0 0;
  position: relative;
}
.products-star__label::after {
  content: ":";
  position: absolute;
  top: 0;
  right: -0.6em;
}
.products-star-list {
  display: flex;
}
.products-star-list__item {
  width: 1em;
  margin: 0 2px;
  position: relative;
}
.products-star-list__item::before {
  content: "☆";
  color: #999;
}
.products-star-list__item.is-active::before {
  content: "★";
  color: #001E00;
}

.products-hdg {
  margin: 0 0 1em;
  color: #001E00;
  font-size: 1.8rem;
  font-weight: 500;
}

.l-products-area {
  margin-top: 80px;
}

.feature-list__item {
  display: flex;
}
.feature-list__item + .feature-list__item {
  margin-top: 80px;
}
.feature-list__item._item-01 .feature-list__thumb {
  background-image: url("../img/common/text-number-01.svg");
}
.feature-list__item._item-02 .feature-list__thumb {
  background-image: url("../img/common/text-number-02.svg");
}
.feature-list__item._item-03 .feature-list__thumb {
  background-image: url("../img/common/text-number-03.svg");
}
.feature-list__item:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-list__item:nth-child(even) .feature-list__thumb {
  background-position: top 15px right;
}
.feature-list__item:nth-child(even) .feature-list__thumb::before {
  left: 0;
  right: auto;
}
.feature-list__item:nth-child(even) .feature-list__content {
  padding: 0 40px 0 0;
}
.feature-list__thumb {
  width: 50%;
  padding: 72px 0 0;
  background: no-repeat top 15px left/auto 42px;
  position: relative;
}
.feature-list__thumb::before {
  content: "";
  width: 82%;
  height: 1px;
  background: #B3BCB3;
  position: absolute;
  top: 35px;
  right: 0;
}
.feature-list__thumb > picture.js-inview {
  overflow: hidden;
  position: relative;
}
.feature-list__thumb > picture.js-inview::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: width cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.feature-list__thumb > picture.is-animated::before {
  width: 0;
}
.feature-list__content {
  padding: 0 0 0 40px;
}
.feature-list__hdg {
  margin: 1em 0;
  color: #001E00;
  font-size: 2rem;
  font-weight: 500;
}
.feature-list__text {
  line-height: 2;
}
.feature-list .btn-primary {
  margin-top: 30px;
}

.form-01 {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.form-01__label {
  margin-top: 35px;
  color: #001E00;
  font-size: 1.8rem;
}
.form-01__label:first-child {
  margin-top: 0;
}
.form-01__content {
  margin-top: 10px;
  line-height: 1.8;
}
.form-01 input[type=text],
.form-01 input[type=email],
.form-01 input[type=tel],
.form-01 textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #001E00;
  color: #555;
}
.form-01 input[type=text]::placeholder,
.form-01 input[type=email]::placeholder,
.form-01 input[type=tel]::placeholder,
.form-01 textarea::placeholder {
  color: #9D9D9D;
}
.form-01 textarea {
  line-height: 1.8;
}

/*
---------------------------------------------

    index settings

*/
.index-mv {
  height: 680px;
  background: url("../img/index/mv-img-01.jpg") no-repeat center/cover;
}
.index-mv-hdg {
  color: #001E00;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s 0.2s;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 4rem;
}
.index-mv-hdg > span {
  display: block;
  transform: translate(0, 100%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s 0.2s;
}
.index-mv-hdg .text-horizontal {
  padding-bottom: 0.2em;
  letter-spacing: 0;
}
.index-mv-hdg .text-marker {
  padding: 0.5rem 2rem;
}
.index-mv-hdg.is-animated {
  transform: translate(0, 0);
}
.index-mv-hdg.is-animated > span {
  transform: translate(0, 0);
}

.index-intro {
  max-width: 32rem;
  margin: 80px auto;
  padding: 80px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.index-intro-line {
  width: 1px;
  height: 180px;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translate(-50%, 0);
  overflow: hidden;
}
.index-intro-line::before {
  content: "";
  width: 1px;
  height: 180px;
  background: #001E00;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 75%);
}
.index-intro-line.js-inview::before {
  transform: translate(0, -100%);
  transition: transform 1s 0.6s;
}
.index-intro-line.is-animated::before {
  transform: translate(0, 75%);
}
.index-intro-hdg {
  margin: 0 0 1em 0;
  color: #001E00;
  font-size: 2.2rem;
  letter-spacing: 0.2em;
}
.index-intro-text {
  padding-bottom: 16rem;
  background: url("../img/index/intro-bg.jpg") no-repeat center bottom/186px 151px;
  line-height: 2;
}
.index-intro.js-inview::before {
  content: "";
  width: 1px;
  height: 0;
  background: #001E00;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transition: height 0.6s;
}
.index-intro.is-animated::before {
  height: 60px;
}

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      header settings

  */
  .header-logo {
    width: 85px;
  }
  /*
  ---------------------------------------------

      gnavi settings

  */
  .l-gnavi-area__inner {
    height: calc(100% - 50px);
    padding: 40px 20px 80px;
    overflow-x: scroll;
  }
  .gnavi-btn {
    width: 50px;
    height: 50px;
  }
  .gnavi-btn::before, .gnavi-btn::after {
    width: 20px;
  }
  .gnavi-btn::before {
    animation-name: gnavi-btn-close-01-sp;
    transform: translate(-50%, 5px);
  }
  .gnavi-btn::after {
    animation-name: gnavi-btn-close-02-sp;
    transform: translate(-50%, -5px);
  }
  .gnavi-logo {
    width: 135px;
    margin: 15px 20px;
  }
  .gnavi-list {
    width: 100%;
    margin: 0;
  }
  .gnavi-list__item {
    margin: 0;
    font-size: 1.8rem;
    text-align: center;
  }
  .gnavi-list__item + .gnavi-list__item {
    margin-top: 25px;
  }
  .gnavi-list__item._item-kissako, .gnavi-list__item._item-products, .gnavi-list__item._item-feature {
    margin-top: 25px;
    font-size: 1.8rem;
    position: static;
  }
  .gnavi-list__item._item-products {
    transform: translate(0, 0);
  }
  .gnavi-list__item._item-sns {
    margin-top: 40px;
  }
  .gnavi-list__en {
    height: 9px;
  }
  .gnavi-sns {
    justify-content: center;
  }
  /*
  ---------------------------------------------

      main settings

  */
  /*
  ---------------------------------------------

      footer settings

  */
  .footer-pagetop {
    width: 50px;
    height: 50px;
  }
  .footer-pagetop__link {
    background-size: 20px auto;
  }
  /*
  ---------------------------------------------

      common settings

  */
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
  .btn-primary__link {
    font-size: 1.6rem;
  }
  .btn-submit {
    font-size: 1.6rem;
  }
  .l-btn-list-01 {
    margin: 20px 0 0;
    display: block;
  }
  .l-btn-list-01__item {
    margin: 10px 0;
  }
  .l-btn-list-01__item .btn-primary__link {
    min-width: 220px;
  }
  .l-btn-list-01._align-right .l-btn-list-01__item {
    margin: 10px 0;
    text-align: right;
  }
  .l-btn-list-01._align-right .l-btn-list-01__item .btn-primary__link {
    text-align: left;
  }
  .l-column-two {
    display: block;
  }
  .l-column-two__item {
    width: 100%;
  }
  .l-column-two__item + .l-column-two__item {
    margin-top: 50px;
  }
  .slick-dots {
    bottom: -25px;
  }
  .slick-dots li {
    max-width: 30px;
  }
  .section-inner {
    width: 84%;
    padding-left: 0;
    padding-right: 0;
  }
  .section-01 {
    margin: 0 0 80px;
  }
  .section-01-content {
    width: 100%;
    padding-top: 40px;
  }
  .section-01-footer {
    margin-top: 60px;
  }
  .section-01-footer._type-index {
    margin-top: 30px;
  }
  .section-01-hdg {
    margin: 0 1.2rem 0 0;
  }
  .section-01-text {
    padding: 45px 0 0 0;
    font-size: 1.2rem;
  }
  .section-01._layout-right .section-01-hdg {
    margin-left: 1.2rem;
    margin-right: 0;
  }
  .section-01._layout-right .section-01-text {
    padding: 45px 0 0 0;
  }
  .wp-pagenavi {
    margin: 70px 0 0;
    padding: 0 0 45px;
  }
  .wp-pagenavi .current,
  .wp-pagenavi .page {
    margin: 0 2px;
  }
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    top: auto;
    bottom: 0;
  }
  .wp-pagenavi .nextpostslink {
    margin: 0 0 0 10px;
  }
  .wp-pagenavi .previouspostslink {
    margin: 0 10px 0 0;
  }
  .banner-list__text {
    font-size: 1.8rem;
    left: 24px;
    bottom: 24px;
  }
  .section-01 + .banner-list {
    margin-top: 80px;
  }
  .post-list-thumb__item {
    width: 100%;
    margin-right: 0;
  }
  .post-list-thumb__item:nth-child(n+3) {
    margin-top: 24px;
  }
  .post-list-thumb__item + .post-list-thumb__item {
    margin-top: 24px;
  }
  .post-list-thumb__thumb {
    width: 40%;
  }
  .post-list-thumb__content {
    width: 60%;
  }
  .post-hdg {
    font-size: 1.8rem;
  }
  .post-hdg-secondary {
    margin: 40px auto 1em;
    font-size: 1.6rem;
  }
  .post-media {
    margin: 40px auto;
  }
  .post-media.wp-block-image {
    margin: 40px auto;
  }
  .post-text {
    max-width: 100%;
  }
  .l-post-tags {
    margin: 80px 0 0;
  }
  .products-list__item {
    width: 100%;
    margin-right: 0;
  }
  .products-list__item:nth-child(n+3) {
    margin-top: 40px;
  }
  .products-list__item + .products-list__item {
    margin-top: 40px;
  }
  .products-photos {
    margin-top: 20px;
  }
  .products-photos + .products-header {
    margin-top: 50px;
  }
  .products-name {
    font-size: 1.8rem;
  }
  .l-products-summary {
    display: block;
  }
  .products-summary {
    width: 100%;
    margin-right: 0;
  }
  .products-summary:nth-child(3n) {
    margin-right: 0;
  }
  .products-summary:nth-child(n+4) {
    margin-top: 30px;
  }
  .products-summary + .products-summary {
    margin-top: 30px;
  }
  .products-hdg {
    font-size: 1.6rem;
  }
  .l-products-area {
    margin-top: 40px;
  }
  .feature-list__item + .feature-list__item {
    margin-top: 60px;
  }
  .feature-list__item:nth-child(even) .feature-list__content {
    padding: 0 24px 50px 0;
  }
  .feature-list__item:nth-child(even) .btn-primary {
    left: 0;
  }
  .feature-list__thumb {
    width: calc(100% - 210px);
    max-width: 38%;
  }
  .feature-list__thumb::before {
    width: calc(100% - 70px);
  }
  .feature-list__content {
    padding: 0 0 50px 24px;
    position: relative;
  }
  .feature-list__hdg {
    font-size: 1.9rem;
  }
  .feature-list__text {
    font-size: 1.3rem;
  }
  .feature-list .btn-primary {
    margin-top: 0;
    position: absolute;
    left: 24px;
    bottom: 0;
  }
  .form-01__label {
    font-size: 1.6rem;
  }
  /*
  ---------------------------------------------

      index settings

  */
  .index-mv {
    height: 150vw;
    background: url("../img/index/mv-img-01-sp.jpg") no-repeat center/cover;
  }
  .index-mv-hdg {
    font-size: 2.4rem;
  }
  .index-mv-hdg .text-marker {
    padding: 0.3rem 0.5rem;
  }
}

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