@charset "UTF-8";

.box-title, .section-title, .page-title {
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.small, .middle {
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 200;
}

html {
  font-size: 62.5%;
}

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

body {
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN W3", "Hiragino Mincho ProN W6", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  background-color: #E8E8E8;
  color: #7E7E7E;
  margin: 0;
  padding: 0;
}

ul {
  padding-left: 0;
  margin: 0;
}

li {
  list-style: none;
  margin: 0;
}

a {
  text-decoration: none;
  color: #7E7E7E;
  display: inline-block;
}

img {
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

p {
  margin: 0;
}

.page-title {
  font-size: 4rem;
  font-weight: 200;
  font-family: "Marcellus", serif;
  letter-spacing: 0.4em;
}
@media (max-width: 950px) {
  .page-title {
    font-size: 3rem;
  }
}
@media (max-width: 650px) {
  .page-title {
    font-size: 2.2rem;
  }
}

.section-title {
  font-size: 3.2rem;
  font-weight: 200;
  font-family: "Marcellus", serif;
  letter-spacing: 0.15em;
  position: relative;
  margin-bottom: 80px;
  color: #5B6E5D;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 5%;
  height: 0.5px;
  background-color: #5B6E5D;
}
@media (max-width: 650px) {
  .section-title::after {
    width: 20%;
  }
}
@media (max-width: 650px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.box-title {
  font-size: 2.5rem;
  font-weight: 200;
  font-family: "Marcellus", serif;
  letter-spacing: 0.15em;
  margin-block: 0 50px;
}
@media (max-width: 650px) {
  .box-title {
    font-size: 2.2rem;
    margin-block: 0 30px;
  }
}

.middle {
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
@media (max-width: 650px) {
  .middle {
    font-size: 1.4rem;
  }
}

.small {
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0.15em;
}
@media (max-width: 950px) {
  .small {
    font-size: 1.3rem;
  }
}
@media (max-width: 650px) {
  .small {
    font-size: 1.1rem;
  }
}

.wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

section {
  padding-bottom: 280px;
  background-color: #E8E8E8;
}
@media (max-width: 650px) {
  section {
    padding-bottom: 120px;
  }
}

.button {
  display: inline-block;
  margin-bottom: 100px;
  text-decoration: none;
  transition: 0.3s ease;
}
@media (max-width: 650px) {
  .button {
    margin-bottom: 50px;
    width: 100%;
  }
}
.button a {
  font-weight: 200;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 50px;
  font-size: 16px;
  letter-spacing: 0.5em;
  text-decoration: none;
  color: #5B6E5D;
  border: 1px solid #5B6E5D;
  color: #5B6E5D;
  overflow: hidden;
  transition: all 0.3s;
  font-family: "Marcellus", serif;
}
@media (max-width: 650px) {
  .button a {
    font-size: 13px;
    width: 100%;
  }
}
.button a span {
  position: relative;
}
.button a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #5B6E5D;
  transform: translateX(-100%);
  transition: all 0.3s;
}
.button a:hover {
  color: #E8E8E8;
}
.button a:hover::before {
  transform: translateX(0);
}

.nav-guide {
  border-top: solid 10px #5B6E5D;
  padding-block: 50px 100px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
}
@media (max-width: 950px) {
  .nav-guide {
    font-size: 1.2rem;
  }
}
@media (max-width: 650px) {
  .nav-guide {
    padding-block: 25px 100px;
  }
}
.nav-guide a {
  color: #7E7E7E;
}

.fadein {
  transform: translateY(20px);
  opacity: 0;
  transition: 1s ease;
}
.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

.fadein-right {
  transform: translateX(20px);
  opacity: 0;
  transition: 1s ease;
}
.fadein-right.active {
  opacity: 1;
  transform: translateX(0);
}

.fadein-left {
  transform: translateX(-20px);
  opacity: 0;
  transition: 1s ease;
}
.fadein-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scale {
  transform: translateY(20px);
  opacity: 0;
  transition: 1.2s ease;
  transform: scale(1.05);
}
.scale.active {
  opacity: 1;
  transform: translateY(0);
  transform: scale(1);
}

.filter {
  transform: translateY(20px);
  opacity: 0;
  transition: 1.2s ease;
  filter: blur(10px);
}
.filter.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

@media (max-width: 650px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 950px) {
  .pc-only {
    display: none;
  }
}

@media (max-width: 650px) {
  .pc-tb-only {
    display: none;
  }
}

.tb-only {
  display: none;
}
@media (max-width: 950px) {
  .tb-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 650px) {
  .sp-only {
    display: block;
  }
}

.header {
  position: fixed;
  background-color: transparent;
  transition: all 0.8s ease;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  border-bottom: 3px solid #5B6E5D;
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 10px 50px;
}
@media (max-width: 650px) {
  .header .header-inner {
    height: 65px;
    padding: 5px 25px;
  }
}
.header .header-inner h1 {
  width: 90px;
  cursor: pointer;
  align-items: center;
}
@media (max-width: 650px) {
  .header .header-inner h1 {
    width: 70px;
  }
}
.header .header-inner h1 img {
  display: block;
}
.header .header-inner .hamburger_toggle {
  cursor: pointer;
  position: relative;
  width: 35px;
  height: 25px;
  margin-left: 32px;
}
@media (max-width: 650px) {
  .header .header-inner .hamburger_toggle {
    height: 20px;
  }
}
.header .header-inner .hamburger_toggle span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #5B6E5D;
}
.header .header-inner .hamburger_toggle span:nth-child(1) {
  top: 0;
}
.header .header-inner .hamburger_toggle span:nth-child(2) {
  bottom: 0;
}
.header .menu-bg {
  width: 100%;
  height: 100vh;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(40, 48, 50, 0.8);
  transform: translateX(100%);
  opacity: 0;
  transition: 0.4s ease;
}
.header .hamburger-menu {
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  padding: 150px 40px;
  cursor: pointer;
  background-color: #5B6E5D;
  transform: translateX(100%);
  transition: 0.4s ease;
}
@media (max-width: 950px) {
  .header .hamburger-menu {
    width: 100%;
    height: 100%;
    flex-direction: column-reverse;
  }
}
@media (max-width: 650px) {
  .header .hamburger-menu {
    width: 100%;
    height: 100%;
  }
}
.header .hamburger-menu::after {
  width: 35px;
  height: 1.5px;
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: #fff;
  transform: rotate(45deg);
}
@media (max-width: 950px) {
  .header .hamburger-menu::after {
    top: 40px;
    right: 30px;
  }
}
.header .hamburger-menu::before {
  width: 35px;
  height: 1.5px;
  content: "";
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: #fff;
  transform: rotate(-45deg);
}
@media (max-width: 950px) {
  .header .hamburger-menu::before {
    top: 40px;
    right: 30px;
  }
}
.header .hamburger-menu h1 {
  width: 120px;
  cursor: pointer;
  margin-bottom: 40px;
  display: block;
}
.header .hamburger-menu .navi {
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 0.28em;
  padding-block: 30px;
  margin-bottom: 30px;
  border-block: 0.8px solid #fff;
  font-weight: 200;
}
.header .hamburger-menu .navi li {
  margin-bottom: 10px;
}
.header .hamburger-menu .navi li a {
  color: #fff;
}
.header .hamburger-menu .link {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 15px;
}
.header .hamburger-menu .link img {
  width: 35px;
}
.header.active .menu-bg {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
  z-index: 1;
}
.header.active .hamburger-menu {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

.no-scroll {
  overflow: hidden;
}

.header.is-scrolled {
  background-color: rgb(242, 245, 237);
  border-bottom: 4px solid #5B6E5D;
}

footer {
  background-color: #5B6E5D;
}
footer .footer-left {
  padding: 50px 0;
}
@media (max-width: 650px) {
  footer .footer-left {
    padding: 20px 0 50px;
  }
}
footer .footer-left h1 {
  width: 150px;
  cursor: pointer;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  footer .footer-left h1 {
    width: 120px;
    margin-bottom: 20px;
  }
}
footer .footer-left .navi {
  font-family: "Marcellus", serif;
  font-weight: normal;
  letter-spacing: 0.28em;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 0.8px solid #fff;
}
footer .footer-left .navi li {
  margin-bottom: 10px;
}
footer .footer-left .navi li a {
  color: #fff;
}
@media (max-width: 650px) {
  footer .footer-left .navi li a {
    font-size: 1.5rem;
  }
}
footer .footer-left .link {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 20px;
  border-top: 0.8px solid #fff;
}
footer .footer-left .link img {
  width: 35px;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 9999;
}
#loading img {
  width: 500px;
}

.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 650px) {
  .fv {
    aspect-ratio: 16/13;
  }
}
.fv video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fv img {
  position: absolute;
  width: 18%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 650px) {
  .fv img {
    width: 30%;
    top: 60%;
  }
}
.fv .scroll {
  display: block;
  position: absolute;
  height: 250px;
  top: 60vh;
  left: 40px;
  z-index: 2;
}

@media (max-width: 650px) {
.fv .scroll {
  display: none;
}
}


.fv .scroll:before {
  content: "SCROLL";
  position: absolute;
  display: block;
  width: 1px;
  height: 100%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 0.5;   
  writing-mode: vertical-rl;
  text-indent: -70px;
  background-color: #DAE1D1;
  top: 0;
  left: 0;
  z-index: 2;
}
.fv .scroll:after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 15px;
  left: 4px;
  bottom: 0;
  background-color: #DAE1D1;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  z-index: 2;
}

.concept {
  text-align: center;
  padding-top: 150px;
  border-top: solid 10px #5B6E5D;
}
@media (max-width: 650px) {
  .concept {
    padding-top: 100px;
  }
}
.concept .middle {
  margin-bottom: 120px;
}
@media (max-width: 650px) {
  .concept .middle {
    margin-bottom: 70px;
  }
}
.concept .first-v2 {
  margin: 0 auto;
  width: 92vw;
  height: 50vh;
  position: relative;
  background: url(../img/concept.png) center/cover no-repeat;
}
@media (max-width: 650px) {
  .concept .first-v2 {
    height: 40vh;
  }
}

.product ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 50px;
}
@media (max-width: 650px) {
  .product ul {
    grid-template-columns: 1fr;
  }
}
.product ul li {
  padding-bottom: 0;
}
.product ul li a {
  position: relative;
  overflow: hidden;
}
.product ul li a img {
  display: block;
  width: 100%;
  transition: 0.6s ease;
}
.product ul li a img:hover {
  scale: 1.05;
}
.product ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.4s ease;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.2);
}
.product ul li a:hover::after {
  /* ← 暗さ調整 */
  background: rgba(0, 0, 0, 0.4);
  scale: 1.5;
}
.product ul li a .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
}
.product ul li a .text .box-title {
  margin-bottom: 10px;
}

.onlineshop .wrapper .section-title-online {
  margin-bottom: 50px;
  position: relative;
}
.onlineshop .wrapper .section-title-online .section-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
@media (max-width: 650px) {
  .onlineshop .wrapper .section-title-online .section-title {
    font-size: 2rem;
  }
}
.onlineshop .wrapper .middle {
  padding-bottom: 100px;
  position: relative;
}
.onlineshop .wrapper .button {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
}

.news ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px 25px;
}
@media (max-width: 650px) {
  .news ul {
    grid-template-columns: 1fr 1fr;
  }
}
.news ul li img {
  height:220px;
}
@media (max-width: 650px) {
  .news ul li img {
    height:120px;
  }
}
.news ul li .text-wrap {
  padding: 10px 5px;
}
.news ul li .text-wrap .date {
  margin-bottom: 10px;
}
.news ul li .text-wrap .comment {
  padding-bottom: 20px;
  border-bottom: 0.5px solid #5B6E5D;
}
.news ul li .text-wrap .button-box {
  text-align: right;
}
.news ul li .text-wrap .button-box .button-more {
  margin-top: 10px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.3em;
  color: #7E7E7E;
}
.news ul li .text-wrap .button-box .button-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.news ul li .text-wrap .button-box .button-more:hover::after {
  transform: scaleX(1);
}

.concept-page .fv {
  padding-top: 55%;
  background-image: url(../img/concept_top.png);
  position: relative;
}
@media (max-width: 650px) {
  .concept-page .fv {
    aspect-ratio: 4/1;
  }
}
.concept-page .fv h1 {
  color: #fff;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 650px) {
  .concept-page .fv h1 {
    top: 40%;
  }
}
.concept-page .concept {
  border-top: none;
  padding-top: 0;
}
.concept-page .concept-point {
  text-align: center;
}
.concept-page .concept-point .point-column {
  text-align: left;
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
@media (max-width: 650px) {
  .concept-page .concept-point .point-column {
    display: block;
    margin-bottom: 100px;
  }
}
.concept-page .concept-point .point-column img {
  width: 45%;
}
@media (max-width: 650px) {
  .concept-page .concept-point .point-column img {
    width: 100%;
  }
}
.concept-page .concept-point .point-column .text-wrap {
  width: 45%;
}
@media (max-width: 650px) {
  .concept-page .concept-point .point-column .text-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.concept-page .concept-point .point-column h2 {
  border-top: 0.5px solid #7E7E7E;
  padding-top: 50px;
}
.concept-page .concept-point .point-column h2 .small {
  margin-top: 5px;
  display: block;
}
.concept-page .concept-point .point-column .small {
  margin-bottom: 20px;
}
.concept-page .concept-point .point-column:last-child {
  flex-direction: row-reverse;
}
.concept-page .concept-point .point-column:last-child dl {
  margin-bottom: 50px;
  padding-left: 15px;
  border-left: 5px solid #DAE1D1;
}
.concept-page .concept-point .point-column:last-child dl dt {
  display: inline-block;
  padding: 2px 10px;
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  .concept-page .concept-point .point-column:last-child dl dt {
    padding-inline: 0;
  }
}
.concept-page .concept-point .point-column:last-child dl dd {
  margin-left: 10px;
}
@media (max-width: 650px) {
  .concept-page .concept-point .point-column:last-child dl dd {
    margin-left: 0px;
  }
}

.box {
  height: 65px;
}

.product-page .fv {
  padding-top: 55%;
  background-image: url(../img/product_top.png);
  position: relative;
}
@media (max-width: 650px) {
  .product-page .fv {
    aspect-ratio: 4/1;
  }
}
.product-page .fv h1 {
  color: #fff;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 650px) {
  .product-page .fv h1 {
    top: 48%;
  }
}
.product-page .product-column ul li {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 50px;
  margin-bottom: 100px;
}
@media (max-width: 650px) {
  .product-page .product-column ul li {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
    gap: 30px;
  }
}
.product-page .product-column ul li .img-wrap {
  overflow: hidden;
  margin-right: 50px;
}
.product-page .product-column ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    margin-bottom: 20px;
}


.product-page .product-column ul li h2 span {
  display: block;
  padding-top: 5px;
}
.product-page .product-column ul li .comment {
  padding-bottom: 50px;
}
.product-page .product-column ul li .button {
  letter-spacing: 0.5em;
}
.product-page .product-column ul li .button a {
  width: 130px;
  height: 35px;
}

.onlineshop-page .nav-guide {
  padding-top: 140px;
}
@media (max-width: 650px) {
  .onlineshop-page .nav-guide {
    padding-top: 80px;
  }
}
.onlineshop-page .onlineshop-column {
  text-align: center;
}
.onlineshop-page .onlineshop-column h1 {
  margin-bottom: 130px;
}
@media (max-width: 950px) {
  .onlineshop-page .onlineshop-column h1 {
    margin-bottom: 70px;
  }
}
@media (max-width: 650px) {
  .onlineshop-page .onlineshop-column h1 {
    margin-bottom: 50px;
  }
}
.onlineshop-page .onlineshop-column .nav-guide-onlineshop {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  font-family: "Marcellus", serif;
  letter-spacing: 0.2em;
}
@media (max-width: 650px) {
  .onlineshop-page .onlineshop-column .nav-guide-onlineshop {
    justify-content: left;
  }
}
.onlineshop-page .onlineshop-column .nav-guide-onlineshop li {
  margin-right: 15px;
  padding: 3px 30px;
  border: 1.3px solid #7E7E7E;
}
@media (max-width: 650px) {
  .onlineshop-page .onlineshop-column .nav-guide-onlineshop li {
    font-size: 1.2rem;
    margin: 0 10px 10px 0;
    padding: 3px 20px;
  }
}
.onlineshop-page .onlineshop-column .onlineshop-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px 40px;
  text-align: left;
}
@media (max-width: 950px) {
  .onlineshop-page .onlineshop-column .onlineshop-item {
    gap: 50px 20px;
  }
}
@media (max-width: 650px) {
  .onlineshop-page .onlineshop-column .onlineshop-item {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }
}
.onlineshop-page .onlineshop-column .onlineshop-item li img {
  margin-bottom: 10px;
}
.onlineshop-page .onlineshop-column .onlineshop-item li .price {
  font-family: "Marcellus", serif;
}/*# sourceMappingURL=style.css.map */