/* ======================================================== */
/* MAIN VISUAL */
.c-mainvisual {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  height: 100vh;
}
.c-mainvisual-slider{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  overflow: hidden;
}
.c-mainvisual-slider::after {
  content: "";
  background-image: url('../images/top/gradient-mv.png');
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.c-mainvisual-slider img,
.c-mainvisual-slider video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}


.c-mainvisual__title h2{
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 3;
  writing-mode: vertical-lr;
  text-align: center;
  color: #fff;
  line-height: 1.8;
  font-size: 31px;
  letter-spacing: 9.2px;
  height: max-content;
  text-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.c-mainvisual__txt{
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  right: 90px;
  top: 19%;
  z-index: 2;
  text-align: right;
}
/** custom */

@media(max-width: 1024px){

}
@media(max-width: 767px){
  .c-mainvisual__title h2{
    font-size: 26px;
    letter-spacing: 1px;
    /* writing-mode: unset; */
    height: auto;
    width: max-content;
  }
  .c-mainvisual__txt{
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    top: auto;
    font-size: 10px;
    line-height: 1.6;
    bottom: 35%;
  }
}

/* MARQUEE */
.c-marquee {
  display: flex;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
  position: absolute;
  left: 0;
  bottom: -30px;
  z-index: 5;
}

.c-marquee__text {
  font-size: 380px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 50px;
  color: #fff;
  -webkit-animation-name: marquee;
  animation-name: marquee;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.3;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1024px) {
  .c-marquee {
  bottom: -40px;
  }
  .c-marquee__text {
    font-size: 220px;
    line-height: 1;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
  }
}
@media screen and (max-width: 768px) {
  .c-marquee {
    bottom: -25px;
  }
  .c-marquee__text {
    font-size: 300px;
    padding: 0 20px;
  }
}
/* END MARQUEE */
/**info*/
.c-info{
  display: flex;
  justify-content: center;
  gap: 60px;
}
.c-info.--center{
  align-items: center;
}
.c-info__imgs{
  width: 510px;
}
.c-info__content{
  width: 510px;
}
.c-info__imgs img{
  display: block;
  width: 100%;
}
.c-info__imgs .--img1{
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.c-info__imgs .--img2{
  margin-top: 20px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
}

.c-info .--img3{
  width: 441px;
  margin-left: auto;
  margin-right: -45px;
  display: block;
}
.--img4{
  width: 100%;
  border-radius: 50px;
  display: block;
}
@media(max-width: 1024px){
  .c-info{
    gap: 30px;
  }
  .c-info .--img3{
    width: 250px;
    margin-right: 0;
  }
  .--img4{
    border-radius: 30px;
  }
}
@media(max-width: 767px){
  .c-info{
    gap: 20px;
    flex-wrap: wrap;
  }
  .c-info__imgs .--img1{
    
border-top-left-radius: 20px;
    
border-top-right-radius: 20px;
  }
  .c-info__imgs .--img2{
    
margin-top: 14px;
    
border-bottom-left-radius: 20px;
    
border-bottom-right-radius: 20px;
    
border-top-right-radius: 20px;
  }
  .c-info .--img3{
    width: 180px;
  }
  .--img4{
    border-radius: 20px;
  }
}
/**end info*/
/**banner*/
.c-imgs {
    height: 584px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-radius: 50px;
    width: 100%;
    max-width: 1400px;
    margin: auto;
}
.c-imgs figure{
  width: 350px;
}
.c-imgs__banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease-out;
    object-position: center;
}

.mid-trigger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px; 
    pointer-events: none;
}
.c-imgs__banner.up {
    transform: translateY(-40px);
}
.c-imgs__banner.down {
    transform: translateY(40px);
}
.c-imgs__banner.show {
    opacity: 1;
    transform: translateY(0);
}
.c-img{
  display: block;
  width: 100%;
  border-radius: 50px;
}
.c-imgs2{
  display: flex;
  justify-content: center;
  gap: 60px 3%;
  flex-wrap: wrap;
  max-width: 960px;
}
.c-imgs2 figure{
  width: 30%;
}
.c-imgs2 img{
  width: 100%;
  display: block;
  border-radius: 30px;
}
@media(max-width: 1024px){
  .c-imgs{
    height: 290px;
    border-radius: 30px;
  }
  .c-img{
    border-radius: 30px;
  }
}
@media(max-width: 767px){
  .c-imgs{
    height: 180px;
  }
  .c-img{
    border-radius: 20px;
  }
  .c-imgs2{
    gap: 10px 3%;
  }
  .c-imgs2 figure{
    width: 31%;
  }
  .c-imgs2 img{
    border-radius: 10px;
  }
}
/**end banner*/
/**BOX*/
.c-boxTitle{
  border-radius: 100px;
  background: #fff;
  max-width: 820px;
  margin: -152px auto 0;
  position: relative;
  padding: 60px 20px 0;
}
.c-boxTitle__txt span{
  background-color: #E4E2CC;
  display: inline-block;
  line-height: 1.4;
  padding: 0 5px;
}
@media(max-width: 1024px){
  .c-boxTitle{
    border-radius: 50px;
    max-width: 600px;
    margin-top: -100px;
    padding-top: 40px;
  }
}
@media(max-width: 767px){
  .c-boxTitle{
    border-radius: 20px;
    max-width: 250px;
    margin-top: -50px;
    padding-top: 20px;
  }
  .c-boxTitle__txt{
    width: 300px;
    font-size: 13px;
    margin-left: -42px;
  }
}
/**end BOX*/
/**Heading*/
.c-heading{
  padding-left: 30px;
  position: relative;
}
.c-heading::before{
  background-image: url('../images/top/logo.png');
  width: 22px;
  height: 22px;
  position: absolute;
  top: 11px;
  left: 0;
}
@media(max-width: 767px){
  .c-heading{
    padding-left: 24px;
  }
  .c-heading::before{
    width: 16px;
    height: 16px;
    top: 7px;
  }
}
/**end Heading*/
/**Product*/
.c-products{
  display: flex;
  gap: 4%;
  justify-content: center;
  flex-wrap: wrap;
}
.c-product{
  width: 48%;
}
.c-product figure{
  width: 100%;
  aspect-ratio: 340 / 226;
}
.c-product img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
}
.c-product span, .c-product__label{
  display: inline-block;
  color: #928C36;
  padding: 2px 27px;
  font-size: 13px;
  border: 1px solid currentColor;
  border-radius: 10px;
}
.c-product__cat{
  color: #928C36;
  font-size: 22px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: auto;
}
.c-product__cat::before,
.c-product__cat::after{
  content: "";
  width: 20px;
  height: 1px;
  background-color: #928C36;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.c-product__cat::after{
  left: auto;
  right: 0;
}
.c-products.--col3{
  gap: 60px 3.5%;
}
.c-products.--col3 .c-product{
  width: 31%;
}
.c-products.--col3 .c-product img{
  border-radius: 30px;
}
@media(max-width: 767px){
  .c-products,
  .c-products.--col3{
    gap: 30px 4%;
  }
  .c-product img{
    border-radius: 10px;
  }
  .c-product__content{
     padding: 0; 
  }
  .c-product span, .c-product__label{
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 6px;
  }
  .c-products.--col3 .c-product{
    width: 48%;
  }
  .c-product__cat{
    font-size: 14px;
  }
  .c-products.--col3 .c-product img{
    border-radius: 10px;
  }
  .c-product__cat::before, .c-product__cat::after{
    width: 15px;
  }
}
/**End Product*/
/**Profile*/
.c-profile{
  max-width: 920px;
  margin: auto;
  padding: 0 20px;
}
.c-profile dl{
  display: flex;
  font-size: 16px;
  gap: 20px;
}
.c-profile dt,
.c-profile dd{
  padding: 28px 0;
}
.c-profile dt{
  width: 150px;
  border-bottom: 1px solid #928C36;
  text-align: center;
}
.c-profile dd{
  border-bottom: 1px solid #ccc;
  padding-left: 30px;
  flex: 1;
}
.c-map{
  max-width: 1120px;
}
.c-map iframe{
  height: 390px;
  border-radius: 50px;
}
@media(max-width: 767px){
  .c-profile dl{
    gap: 5px;
  }
  .c-profile dt,
  .c-profile dd{
    padding: 10px 0;
    font-size: 13px;
  }
  .c-profile dt{
    width: 105px;
  }
  .c-map iframe{
    height: 250px;
    border-radius: 20px;
  }
}
/**End Profile*/
/**Block1*/
.block1::before{
  background-image: url('../images/top/bg1.png');
  height: 1000px;
  width: 100%;
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translateX(-50%);
}
/**End Block1*/