
/*==========================
Key Visual
==========================*/

.kv {
  width: 100%;
  background-image: url(./images/bg-texture_new.png);
}

.kv_image {
  height: calc(100svh + 20rem);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.kv_movie {
  width: 100%;
  height: 100%;
}
.kv_movie video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/* スライド */
.kv_imageSlide {
  height: 100%;
  display: none;
}

.kv_imageSlide_item {
  position: absolute;
  height: 100%; 
  width: 100%;
}

.kv_imageSlide_item img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.1);
  transition: opacity 0s linear 0s,
    transform 6s cubic-bezier(0.19, 1, 0.22, 1) 2s;
  width: 100%;
}

.kv_imageSlide[data-position="1"] .kv_imageSlide_item:not(:first-of-type) img,
.kv_imageSlide[data-position="2"] .kv_imageSlide_item:not(:nth-of-type(2)) img,
.kv_imageSlide[data-position="3"] .kv_imageSlide_item:not(:nth-of-type(3)) img,
.kv_imageSlide[data-position="4"] .kv_imageSlide_item:not(:nth-of-type(4)) img {
  opacity: 0;
}

.kv_imageSlide[data-position="1"] .kv_imageSlide_item:first-of-type img,
.kv_imageSlide[data-position="2"] .kv_imageSlide_item:nth-of-type(2) img,
.kv_imageSlide[data-position="3"] .kv_imageSlide_item:nth-of-type(3) img,
.kv_imageSlide[data-position="4"] .kv_imageSlide_item:nth-of-type(4) img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0s linear 0s,
    transform 6s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

/*  初回のズームアニメーションを適用 */
.kv_imageSlide[data-position="1"] .kv_imageSlide_item:first-of-type img {
  animation: zoomEffect 6s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
}

/*  ズームアニメーション */
@keyframes zoomEffect {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}
.kv_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* スライド END */
.siteTtlWrapper {
  display: flex;
}
.siteTtl {
  position: absolute;
  bottom: 50%;
  left: 8rem;
  z-index: 1;
  transform: translateY(-50%);
  color: #fff;
}
.siteTtl .en {
  font-family: "Gabarito", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 7.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.siteTtl .ja {
  font-size: 4rem;
  font-weight: 400;
}
.client {
  margin: 0 30px;
  margin-top: -20rem;
  position: relative;
}
.slickTtl {
  color: #fff;
  font-weight: 400;
  font-size: 4rem;
  padding: 0 10rem 7rem;
}

.clientSlick_item {
  margin: 0 1.5rem;
  max-width: 750px;
  width: calc((100vw - 12rem) / 3);
}

.clientSlick_item img {
  width: 100%;
}
.client_image {
  margin-bottom: 4.5rem;
}
.client_name {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.more {
  font-size: 2.6rem;
  text-align: right;
  color: #666666;
  border-bottom: solid 1px #666666;
  padding: 1.5rem;
}

@media screen and (max-width: 800px) {
  .client {
    margin-right: 0;
    margin-left: 0;
  }
  .siteTtl {
    bottom: 30%;
    left: 5rem;
  }
  .siteTtl .en {
    font-size: 6rem;
  }
  .siteTtl .ja {
    font-size: 3rem;
  }
  .slickTtl {
    padding: 0;
    padding-bottom: 3rem;
    padding-left: 3rem;
    font-size: 2.4rem;
  }
  .clientSlick_item {
    margin: 0 0.5rem;
    width: calc((100vw - 1rem) / 2);
  }
  .client_name {
    font-size: 2.4rem;
    padding-left: 1rem;
    margin-bottom: 0;
  }
  .more {
    font-size: 2rem;
  }
}

/*==========================
section About
==========================*/
.sectionAbout {
  padding: 30rem 0;
  background-image: url(./images/bg-texture_new.png);
}
.sectionAbout_inner {
  display: flex;
  align-items: center;
  position: relative;
}
.sectionAbout_txt {
  width: calc(50% - 10rem);
  padding: 0 10rem;
}
.sectionAbout_txt h2 {
  font-size: 4.2rem;
  font-weight: normal;
  position: absolute;
  top: -8rem;
  left: 22rem;
}
.sectionAbout_list {
  list-style: none;
}
.sectionAbout_list li {
  font-size: 3rem;
  border-bottom: solid 1px #000;
}

.sectionAbout_list li a {
  display: block;
  height: 100%;
  padding: 4.5rem;
  padding-left: 12rem;
  position: relative;
}
.sectionAbout_list li a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: transparent 1.5rem solid;
  border-left: solid 1.5rem #666666;
  position: absolute;
  right: 4.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.sectionAbout_image {
  width: calc(50% + 10rem);
  max-height: 880px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sectionAbout_image img {
  width: 100%;
  height: 100%;
  object-position: center;
}
@media screen and (max-width: 800px) {
  .sectionAbout {
    padding: 15rem 10rem 10rem;
  }
  .sectionAbout_inner {
    flex-direction: column-reverse;
    gap: 8rem;
  }
  .sectionAbout_txt {
    width: 100%;
    padding: 0;
  }
  .sectionAbout_txt h2 {
    position: static;
    font-size: 4rem;
    margin-bottom: 4rem;
  }
  .sectionAbout_list li a {
    padding-left: 0;
  }
  .sectionAbout_image {
    width: 100%;
  }
}
/*==========================
section Item
==========================*/

.sectionItem {
  /* background-image: url(./images/topitem-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  transform: none!important; */
  position: relative;
  overflow: hidden;
}
.sectionItem_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  /* background-image: url(./images/topitem-bg.jpg);
  background-size: cover; */
  z-index: -1;
}
        .sectionItem_bg video {
          width: 100%;
          height: 120%;
          object-fit: cover;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
        }
/* .sectionItem::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(./images/topitem-bg.jpg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
} */
.sectionItem_head {
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sectionItem_head_inner {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.sectionItem_catch {
  font-size: 8rem;
  text-align: center;
  letter-spacing: 0.2em;
}
.sectionItem_ttl {
  font-weight: 100;
  text-align: center;
  font-size: 2.8rem;
}
.sectionItem_ttl * {
  display: block;
  letter-spacing: 0.2em;
}
.sectionItem_ttl .en {
  margin-bottom: 1rem;
}
.sectionItem_cards {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 14rem 0;
}
.sectionItem_card {
  display: flex;
}
.sectionItem_card:first-of-type {
  margin-bottom: 20rem;
}
.sectionItem_card:nth-of-type(2) {
  flex-direction: row-reverse;
}
.sectionItem_image {
  width: 61.7%;
  vertical-align: bottom;
}
.itemCard_body {
  width: 38.3%;
  /* background-color: #ffffff26; */
  background-color: #00000044;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  padding: 4rem;
}
.itemCard_ttl {
  font-weight: 100;
  font-size: 3.4rem;
  text-align: centerz;
}
.itemCards_desc {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 100;
}
.itemCard_body a {
  color: #fff;
}
.itemCards_more {
  text-align: center;
  font-size: 2.4rem;
  width: 100%;
  border-bottom: solid 1px;
  padding-bottom: 0.3em;
}
.itemCards_more a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.itemCards_more .arrow {
  font-size: 0.7em;
}
@media screen and (max-width: 800px) {
  .sectionItem_catch {
    font-size: 6rem;
  }
  .sectionItem_ttl {
    font-size: 3rem;
  }
  .sectionItem_cards {
    padding: 10rem 15rem 15rem;
  }
  .sectionItem_card {
    display: block;
  }
  .sectionItem_card:first-of-type {
    margin-bottom: 10rem;
  }
  .sectionItem_image {
    width: 100%;
  }
    .itemCards_desc {
      text-align: center;
    }
  .itemCard_body {
    width: 100%;
    gap: 4rem;
  }
  .itemCards_more {
    width: fit-content;
  }
}
/*==========================
section Delivery
==========================*/
.sectionDelivery {
  padding: 25rem 0;
  background-image: url(./images/bg-texture_new.png);
}

.sectionDelivery .container {
  display: flex;
  width: 100%;
  max-width: 170rem;
}
.sectionDelivery_image {
  width: 65%;
}
.sectionDelivery_image img {
  width: 100%;
}
.sectionDelivery_txt {
  width: 35%;
  padding: 4rem 6rem;
  text-align: center;
}
.sectionDelivery_ttl {
  font-size: 3.4rem;
  font-weight: 100;
  border-bottom: solid 1px #000;
  padding-bottom: 0.9rem;
  margin-bottom: 5rem;
}
.sectionDelivery_area {
  font-weight: 100;
  font-size: 2.6rem;
  line-height: 1.8;
  margin-bottom: 7rem;
}
.sectionDelivery_remarks {
  font-size: 2rem;
}
@media screen and (max-width: 800px) {
  .sectionDelivery {
    padding: 15rem 4rem;
  }
  .sectionDelivery .container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .sectionDelivery_image {
    width: 100%;
  }
  .sectionDelivery_txt {
    width: 100%;
  }
}
/*==========================
section News
==========================*/
.sectionNews {
  padding: 25rem 10rem;
  background-image: url(./images/bg-texture-yellow_new.png);
}
.sectionNews_inner {
  display: flex;
}
.sectionNews_ttl {
  font-weight: normal;
  font-size: 3.4rem;
  width: 26rem;
}
.newsPost_thumb {
  width: 46rem;
}
.newsPost_thumb img {
  width: 100%;
}

.newsPost_list {
  margin-left: 15rem;
  width: 83rem;
}
.newsPost_item {
  list-style: none;
  border-bottom: solid 1px #4d4d4d;
}

.newsPost_time {
  font-weight: 100;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.newsPost_ttl {
  font-size: 1.6rem;
  font-weight: 100;
  position: relative;
  padding-right: 1em;
  line-height: 1.5;
}
.newsPost_item a {
  display: block;
  height: 100%;
  padding: 3rem 3rem 2rem;
  font-size: 1.6rem;
}
.newsPost_item:first-of-type a {
  padding-top: 0;
}
.newsPost_ttl::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: transparent 0.9rem solid;
  border-left: solid 0.9rem #4d4d4d;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .sectionNews {
    padding: 15rem 4rem 20rem;
  }
  .sectionNews_inner {
    flex-direction: column;
    gap: 4rem;
  }
  .sectionNews_ttl {
    font-size: 4rem;
  }
  .newsPost_thumb {
    width: 100%;
  }
  .newsPost_list {
    width: 100%;
    margin-left: 0;
    padding: 0 4rem;
  }
  .newsPost_time {
    font-size: 2rem;
  }
  .newsPost_ttl {
    font-size: 2.5rem;
  }
}

/*==========================
Modal
==========================*/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100svw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modalContent {
  background: #fff;
  padding: 0;
  max-width: 80%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modalContent_inner {
  display: flex;
}

.modalContent_image {
  width: 60%;
}

.modalContent_image img {
  width: 100%;
  vertical-align: bottom;
}

.modalContent_body {
  width: 40%;
  background-color: #FFF0C7;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13rem;
}

.modalContent_body img {
  width: 100%;
}

.modalContent_ttl {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.modalContent_desc {
  font-size: 1.8rem;
}

.modal img {
  max-width: 100%;
  /* height: auto; */
  height: 100%;
  object-fit: cover;
}

.modalClose {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5em 1em;
  border: solid;
  border-radius: 5px;
}

@media screen and (max-width: 800px) {
  .modalContent_inner {
    display: block;
  }

  .modalContent_image {
    width: 100%;
  }

  .modalContent_body {
    width: 100%;
    padding: 9rem;
    gap: 9rem;
  }

  .modalContent_ttl {
    font-size: 3.6rem;

  }

  .modalContent_desc {
    font-size: 2.4rem;
  }

  .modalClose {
    top: 4rem;
    right: 4rem;
    font-size: 2.4rem;
  }
}