@charset "utf-8";

/*================================================
  Home
================================================*/


/*------------------------------------------------
  main-visual
------------------------------------------------*/
.main-visual {
  position: relative;
  height: 60vh;
  min-height: 360px;
}

@media print,screen and (min-width: 769px) {
  .main-visual {
    min-height: 710px;
  }
}

/*------------------------------------------------
  Slider
------------------------------------------------*/
.slider {
  position: relative;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100vh;
  min-height: 360px;
}

.slider-item {
  position: relative;
  overflow: hidden;
}

.slider-list,
.slider-item,
.slider-item-image {
  width: 100%;
  height: 100%;
}

.slider-list,
.slider-item-image {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
}


.slider-item[data-slick-index="0"] .slider-item-image {
  background-image: url(../../image/home/main_visual_bg_01.jpg);
}

.slider-item[data-slick-index="1"] .slider-item-image {
  background-image: url(../../image/home/main_visual_bg_02.jpg);
}

.slider-item[data-slick-index="2"] .slider-item-image {
  background-image: url(../../image/home/main_visual_bg_03.jpg);
}

.slider-list .is-animation .slider-item-image {
  animation: fadeZoom 8s 0s forwards;
}

@keyframes fadeZoom {
  0% {
    transform: scale(1.2);
    filter: blur(20px);
  }
  50% {
    filter: blur(0);
  }
  100% {
    transform: scale(1);
  }
}



.slider-item-heading {
  width: 100%;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background-color:rgba(var(--color-white-rgb),0.8);
  padding: 3em 1.5em;
}
.slider-item-title {
  font-size: clamp(2.4rem, 1.92rem + 2.4vw, 4.8rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.slider-item-text {
  color: var(--secondary-color);
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

@media print,screen and (min-width: 769px) {
  .slider-item-heading {
    padding: 80px 2em;
  }
}
@media print,screen and (min-width: 1200px) {
  .slider-item-heading {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 300px;
    padding: 0 calc(50% - 580px);
  }
}


/* Slick Customize */
.slick-list,
.slick-list > .slick-track {
  height: 100%;
}

/*------------------------------------------------
  can-do
------------------------------------------------*/

.can-do-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 1.44rem + 0.8vw, 2.4rem);
  margin-bottom: 3em;
  text-align: center;
}

.can-do-title span.emphasis {
  font-size: 1.5em;
  font-weight: 900;
  line-height: 1.75;
  display: block;
  margin-bottom: 0.75em;
}

@media print, screen and (min-width: 769px) {
  .can-do-list.point-list .point-item > p {
    font-size: clamp(1rem, 0.4655rem + 1.1121vw, 1.8rem);
  }
  .can-do-list.point-list .point-item:nth-child(1){
    margin-left: calc(100% / 3 / 2);
  }
  .can-do-list.point-list .point-item:nth-child(2){
    margin-right: calc(100% / 3 / 2);
  }
}

/*------------------------------------------------
  message
------------------------------------------------*/
.message-text {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.message-text .emphasis {
  display: block;
  font-weight: 900;
  font-size: 1.5em;
  margin-bottom: 1em;
  text-align: center;
}

/*------------------------------------------------
  common-content
------------------------------------------------*/
/* karat-kun */
.karat-kun::before {
  background-image: url(../../image/home/content_item_bg_karat.jpg);
  background-position: left center;
}
.karat-kun::after {
  background: linear-gradient(to right, rgb(191, 138, 66) 40%, rgba(191, 139, 66, 0) 100%);
}

/* product */
.product::before {
  background-image: url(../../image/home/content_item_bg_product.jpg);
  background-position: right center;
}
.product::after {
  background: linear-gradient(to left, rgba(129, 129, 129, 0.91) 40%, rgba(191, 139, 66, 0) 100%);
}

/* about */
.about::before {
  background-image: url(../../image/home/content_item_bg_about.jpg);
  background-position: left center;
}
.about::after {
  background: linear-gradient(to right, rgb(111, 135, 159) 40%, rgba(111, 135, 159,0) 100%);
}

@media print, screen and (min-width: 960px) {
  .common-content {
    padding: 90px;
  }
  .common-content:nth-of-type(even) {
    padding-right: 50%;
  }
  .common-content:nth-of-type(odd) {
    padding-left: 50%;
  }
}

@media print, screen and (min-width: 1600px) {
  .common-content {
    padding: 110px;
  }
  .common-content:nth-of-type(even) {
    padding-left:calc(50% - 740px);
  }
  .common-content:nth-of-type(odd) {
    padding-right:calc(50% - 740px);
  }
}
