@charset "UTF-8";
body {
  background-color: var(--bluegray);
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  .scrolldown,
  .scrolldown span,
  .scrolldown::after {
    display: none;
  }
}

/* ----------------------------------------------------------------------
	key visual
---------------------------------------------------------------------- */
.kv {
  width: 100%;
  height: 100vh;
}

.kv-tit {
  display: none;
}

.kv-tit-wrap {
  position: absolute;
  bottom: 4vh;
  left: 26vw;
}

.kv-tit._en,
.kv-tit._ja {
  display: block;
  color: var(--white);
  font-family: "Shippori Mincho Medium";
}

.kv-tit._en {
  font-size: min(var(--fs-p50), 5rem);
  line-height: 1.4;
}

.kv-tit._ja {
  font-size: min(var(--fs-p35), 3.5rem);
}

.kv-sp-tit {
  display: none;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  .kv-tit-wrap {
    display: none;
  }
  
  .kv-sp-tit {
    display: block;
    position: absolute;
    bottom: 15rem;
    right: 0;
    color: var(--white);
    font-size: min(var(--fs-35), 3.5rem);
    background-color: var(--gold);
    padding: 3rem 8rem 3rem 10rem;
    text-align: right;
  }
}

/* SP */
@media screen and (max-width: 520px) {
  .kv-sp-tit {
    bottom: 15rem;
    font-size: 2.4rem;
    padding: 1.2rem 2.5rem;
  }
}
/* ----------------------------------------------------------------------
	story
---------------------------------------------------------------------- */
.story {
  background-color: var(--beige);
}

.story-inner {
  display: grid;
  justify-content: center;
}

.story-wrap {
  display: flex;
  margin-bottom: var(--cm-p80);
}

.story-pic {
  width: 30%;
  height: auto;
  margin-right: 6rem;
  object-fit: contain;
}

.story-txt {
  font-family: "Shippori Mincho Semi-bold";
  font-size: min(var(--fs-p21), 2.1rem);
  line-height: 4;
}

.story-txt span.address {
  font-size: 16px;
  line-height: 24px !important;
}

.story-btn {
  text-align: center;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  .story-wrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--cm-80);
  }
  
  .story-pic {
    width: 30%;
    height: auto;
    margin: 0 0 var(--cm-40) 0;
  }
  
  .story-txt {
    font-size: min(var(--fs-21), 2.1rem);
    line-height: 2.8;
  }

  .story-txt span {
  font-size: 16px;
}
}

/* SP */
@media screen and (max-width: 520px) {
  .story-pic {
    width: 50%;
  }

  .story-txt {
    font-size: 1.6rem;
    margin: 4rem 0;
  }

  .story-txt span {
  font-size: 1.5rem;
}
}
/* ----------------------------------------------------------------------
	quality
---------------------------------------------------------------------- */
.quality {
  color: var(--white);
  background-color: var(--bluegray);
}

.quality-txt {
  text-align: center;
}

.quality-int {
  width: 70%;
  color: var(--midnight);
  background-color: var(--beige);
  padding: 3vw;
  margin:var(--cm-p80) auto;
}

.quality-int-txt {
  width: 100%;
  margin-bottom: 2rem;
  font-size: min(var(--fs-p18), 1.8rem);
}

.quality-int-txt:last-child {
  text-align: right;
  margin-bottom: 0;
}

/* swiper */
.quality-items-wrap {
  width: 100%;
  height: min(27.1875vw 55rem);
  padding: 0 5rem;
}

/* swiper-slide */
.quality-item {
  width: 100%;
  display: flex;
  gap: 4rem;
}

/* swiper arrow */
.swiper-button-prev,
.swiper-button-next {
  width: 1.8rem;
  height: 3rem;
  background-size: 1.8rem 3rem;
  transform: translateY(-50%) scale(-1, 1);
  margin-top: 0;
}

.swiper-button-next {
background-image: url('../img/swiper_arrow.svg');
}

.swiper-button-prev {
  background-image: url('../img/swiper_arrow.svg');
  transform: translateY(-50%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
 display: none;
}

/* swiper pagination */
.swiper-pagination-bullets {
  position: static;
  margin-top: var(--cm-p20);
} 

.swiper-pagination-bullet {
  width: 1.2rem !important;
  height: 1.2rem !important;
  margin: 0 0 0 1.6rem !important;
  background: var(--beige) !important;
  transform: scale(.7) !important;
  transition: transform .3s ease !important;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.1) !important;
}

/* swiper slider animation -------------------*/
.swiper-slide .quality-item-order {
  opacity: 0;
  transition: all 1000ms ease 1000ms;
}

.swiper-slide-active .quality-item-order {
  opacity: 1;
}

.swiper-slide .quality-item-ttl {
  opacity: 0;
  transition: all 1000ms ease 1500ms;
}

.swiper-slide-active .quality-item-ttl {
  opacity: 1;
}

.swiper-slide .quality-item-txt {
  opacity: 0;
  transition: all 1000ms ease 2000ms;
}

.swiper-slide-active .quality-item-txt {
  opacity: 1;
}

.swiper-slide .quality-item-pic {
  opacity: 0;
  transition: all 2000ms ease 2500ms;
}

.swiper-slide-active .quality-item-pic {
  opacity: 1;
}
/* swiper slider animation end -------------------*/

.quality-item-caption {
  display: flex;
  flex-direction: column;
  width: 40%;
}

.quality-item-order,
.quality-item-ttl {
  font-size: min(var(--fs-p35), 3.5rem);
}

.quality-item-txt {
  margin-top: 4rem;
  font-family: "Shippori Mincho Semi-bold";
  font-size: min(var(--fs-p16), 1.6rem);
  line-height: 2.5;
}

.quality-item-pic {
  width: calc(60% - 4rem);
}

.quality-item-pic img {
  width: 100%;
  height: auto;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  .quality-int {
    width: 85%;
    margin:var(--cm-80) auto;
  }
  
  .quality-int-txt {
    font-size: min(var(--fs-18), 1.8rem);
  }

  /* swiper */
  .quality-items-wrap {
    height: 105vw;
  }
  
  /* swiper-slide */
  .quality-item {
    flex-direction: column;
    gap: 2rem;
  }
  
  /* swiper pagination */
  .swiper-pagination-bullets {
    margin-top: 0;
  } 
  
  /* swiper slider animation -------------------*/
  .swiper-slide .quality-item-order {
    transition: all 1000ms ease 1500ms;
  }

  .swiper-slide .quality-item-ttl {
    transition: all 1000ms ease 2000ms;
  }

  .swiper-slide .quality-item-txt {
    transition: all 1000ms ease 2500ms;
  }

  .swiper-slide .quality-item-pic {
    transition: all 2000ms ease 1000ms;
  }
  
  /* swiper slider animation end -------------------*/
  
  .quality-item-caption {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }
  
  .quality-item-order,
  .quality-item-ttl {
    font-size: min(var(--fs-35), 3.5rem);
  }
  
  .quality-item-txt {
    margin-top: 4rem;
    font-size: min(var(--fs-21), 2.1rem);
    line-height: 2.4;
  }
  
  .quality-item-pic {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
  
  .quality-item-pic img {
    width: 100%;
    height: auto;
  }
}

/* SP */
@media screen and (max-width: 520px) {
  .quality-txt {
    text-align: left;
  }

  .quality-int {
    width: 90%;
    margin: 4rem auto;
  }

  .quality-int-txt {
    font-size: 1.5rem;
  }

   /* swiper */
   .quality-items-wrap {
    height: 150vw;
  }

  .quality-item-caption {
    width: 100%;
  }
  
  .quality-item-order,
  .quality-item-ttl {
    font-size: 2.4rem;
  }
  
  .quality-item-txt {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  
  .quality-item-pic {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------
	products
---------------------------------------------------------------------- */
.products {
  background-color: var(--beige);
}

.products-inner {
  display: grid;
  justify-content: center;
}

.products-txt {
  text-align: center;
}

.products-list {
  display: flex;
  justify-content: space-between;
}

.products-item {
  width: 26%;
  margin-bottom: var(--cm-p80);
  display: grid;
  align-items: end;
}

.products-item-ttl {
  padding-bottom: var(--cm-p20);
  font-size: min(var(--fs-p30), 3rem);
  line-height: 1.5;
  text-align: center;
}

.products-item-pic {
  display: grid;
  gap: 2rem;
}

.products-item-pic img {
  height: auto;
}

.products-item-txt {
  font-size: min(var(--fs-p21), 2.1rem);
  text-align: center;
}

.products-btn {
  text-align: center;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) { 
  .products-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .products-item {
    width: 100%;
    margin-bottom: var(--cm-80);
    align-items: normal;
  }

  .products-item-ttl {
    padding-bottom: var(--cm-20);
    font-size: min(var(--fs-27), 2.7rem);
  }
  
  .products-item-pic img {
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  
  .products-item-txt {
    font-size: min(var(--fs-21), 2.1rem);
    text-align: center;
  }
  
  .products-btn {
    text-align: center;
  }
}

/* Responsive -------------------------------------------------------- */
/* SP */
@media screen and (max-width: 520px) {
  .products-txt {
    text-align: left;
  }

  .products-item-ttl {
    font-size: 2.1rem;
  }

  .products-item-pic img {
    width: 70%;
  }

  .products-item-txt {
    font-size: 1.8rem;
    line-height: 1.6;
  }

}
/* ----------------------------------------------------------------------
	about
---------------------------------------------------------------------- */
.about {
  color: var(--white);
  background-color: var(--midnight);
}

.about-def {
  width: 60%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  font-size: min(var(--fs-p21), 2.1rem);
}

.about-def-ttl {
  text-align: center;
  padding: var(--cm-p20) 0;
  border-top: solid 1px var(--white);
  border-right: solid 1px var(--white);
}

.about-def-item {
  padding: var(--cm-p20) 0 var(--cm-p20) 4vw;
  border-top: solid 1px var(--white);
}

.about-def-ttl:last-of-type,
.about-def-item:last-of-type {
  border-bottom: solid 1px var(--white);
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {  
  .about-def {
    width: 80%;
    font-size: min(var(--fs-21), 21px);
  }
  
  .about-def-ttl {
    padding: var(--cm-20) 0;
  }
  .about-def-item {
    padding: var(--cm-20) 0 var(--cm-20) 4vw;
  }
}

/* SP */
@media screen and (max-width: 520px) {  
  .about-def {
    width: 100%;
    font-size: 1.1rem;
  }

  .about {
    padding-bottom: var(--cm-100);
  }
}