/*----------------------------------------
	common
----------------------------------------*/
@keyframes shine {
  0% {
    background-position-x: 800%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -800%;
  }
}
/*----------------------------------------
	common
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

/*----------------------------------------
	u-device-sp
----------------------------------------*/
.u-device-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-device-sp {
    display: block;
  }
}

/*----------------------------------------
	u-device-pc
----------------------------------------*/
@media screen and (max-width: 767px) {
  .u-device-pc {
    display: none;
  }
}

/*----------------------------------------
	u-animation-blur
----------------------------------------*/
.u-animation-blur {
  opacity: 0;
  filter: blur(1rem);
  transition: 2s;
}
.u-animation-blur.is-active {
  opacity: 1;
  filter: blur(0);
}

/*----------------------------------------
	u-animation-fade
----------------------------------------*/
.u-animation-fade {
  opacity: 0;
  transition: 2s;
}
.u-animation-fade.is-active {
  opacity: 1;
}

/*----------------------------------------
	p-summer
----------------------------------------*/
.p-summer {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #424441;
}
.p-summer img {
  width: 100%;
  height: auto;
  
}

/*----------------------------------------
	p-summer-mv
----------------------------------------*/
.p-summer-mv {
  position: relative;
}
.p-summer-mv__head {
  position: absolute;
  display: flex;
  align-items: end;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4rem 8rem;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__head {
    padding: 2.6rem;
  }
}
.p-summer-mv__head img {
  width: 27.6rem;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__head img {
    width: 15rem;
  }
}
.p-summer-mv__main {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main {
    flex-direction: column;
    gap: 0;
    background: #E0D5C3;
  }
}
.p-summer-mv__main.is-active li[data-animation=fade] a picture {
  scale: 1;
}
.p-summer-mv__main.is-active li[data-animation=move]:nth-child(1) a picture {
  translate: 0 0;
}
.p-summer-mv__main.is-active li[data-animation=move]:nth-child(2) a picture {
  translate: 0 0;
}
.p-summer-mv__main.is-active li[data-animation=move]:nth-child(3) a picture {
  translate: 0 0;
}
.p-summer-mv__main.is-active li[data-animation=move] a picture {
  opacity: 1;
}
.p-summer-mv__main li {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.p-summer-mv__main li[data-animation=fade] a picture {
  scale: 1.1;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li[data-animation=move]:nth-child(1) a {
    pointer-events: none;
  }
}
.p-summer-mv__main li[data-animation=move]:nth-child(1) a picture {
  translate: 0 50%;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li[data-animation=move]:nth-child(1) a picture {
    translate: 0 -50%;
  }
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li[data-animation=move]:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.p-summer-mv__main li[data-animation=move]:nth-child(2) a picture {
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li[data-animation=move]:nth-child(2) a picture {
    translate: 0 -50%;
    transition-delay: 3s;
  }
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li[data-animation=move]:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li[data-animation=move]:nth-child(3) a {
    pointer-events: none;
  }
}
.p-summer-mv__main li[data-animation=move]:nth-child(3) a picture {
  translate: 0 50%;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li[data-animation=move]:nth-child(3) a picture {
    transition-delay: 1.5s;
  }
}
.p-summer-mv__main li[data-animation=move] a picture {
  opacity: 0;
}
.p-summer-mv__main li a {
  display: block;
  background: #E0D5C3;
}
@media screen and (max-width: 767px) {
  .p-summer-mv__main li a {
    background: none;
  }
}
.p-summer-mv__main li a picture {
  display: block;
  transition: 2s;
}

/*----------------------------------------
	p-summer-message
----------------------------------------*/
.p-summer-message {
  position: relative;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-summer-message {
    padding: 2.4rem 0;
  }
}
.p-summer-message:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C2D2D6;
  background: linear-gradient(0deg, rgba(194, 210, 214, 0) 0%, rgb(194, 210, 214) 2%, rgb(194, 210, 214) 50%, rgb(194, 210, 214) 98%, rgba(194, 210, 214, 0) 100%);
  opacity: 0.6;
}
.p-summer-message__container {
  position: relative;
}
.p-summer-message__container p {
  font-size: 1.7rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-summer-message__container p {
    font-size: 1rem;
  }
}
.p-summer-message__container p + p {
  margin: 1em 0 0;
}

/*----------------------------------------
	p-summer-title
----------------------------------------*/
.p-summer-title {
  position: sticky;
  top: 6rem;
  left: 0;
  background: #fff;
  padding: 2.4rem 7rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-summer-title {
    display: flex;
    justify-content: center;
    top: 5.5rem;
    padding: 1.6rem;
  }
}
.p-summer-title img {
  width: 16.8rem;
}
@media screen and (max-width: 767px) {
  .p-summer-title img {
    width: 8.4rem;
  }
}

/*----------------------------------------
	p-summer-container
----------------------------------------*/
/* .p-summer-container {
  position: relative;
  background: url(../img/bg-product01.webp) center/cover;
  padding: 8rem 7rem;
} */
@media screen and (max-width: 767px) {
  .p-summer-container {
    padding: 1rem 0;
  }
}
/* .p-summer-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D0D6DE;
  background: linear-gradient(-45deg, rgb(208, 214, 222) 0%, rgb(208, 214, 222) 100%);
  opacity: 0.3;
} */

/*----------------------------------------
	p-summer-product
----------------------------------------*/
.p-summer-product__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 5rem;
  max-width: 123rem;
  background: #fff;
  padding: 5rem 7rem 7rem;
  margin: auto;
  border-radius: 1.2rem;
  z-index: 1;
  box-shadow: 0 0 0.4rem 0.4rem white;
}
@media screen and (max-width: 767px) {
  .p-summer-product__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 1rem 1.5rem 8rem;
    border-radius: 0.6rem;
  }
}
.p-summer-product__item.is-active .p-summer-product__arrow {
  opacity: 1;
}
.p-summer-product__item:nth-child(3n+2) {
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-summer-product__item:nth-child(3n+2) {
    transition-delay: 0s;
  }
}
.p-summer-product__item:nth-child(3n+3) {
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-summer-product__item:nth-child(3n+3) {
    transition-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .p-summer-product__item:nth-child(even) {
    transition-delay: 0.2s;
  }
}
.p-summer-product__link {
  display: block;
}
.p-summer-product__link:hover .p-summer-product__img img {
  scale: 1.1;
}
.p-summer-product__link:hover .p-summer-product__more {
  opacity: 1;
}
.p-summer-product__link:hover .p-summer-product__name:before {
  left: 0;
  width: 100%;
}
.p-summer-product__content {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.p-summer-product__img img {
  transition: 1s;
}
.p-summer-product__arrow {
  position: absolute;
  top: 1rem;
  right: 1.6rem;
  opacity: 0;
  z-index: 1;
  rotate: -45deg;
  transform-origin: top right;
}
.p-summer-product__arrow img {
  width: 1.6rem;
}
.p-summer-product__more {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s;
}
.p-summer-product__more span {
  position: relative;
  font-size: 2.1rem;
  font-family: "EB Garamond", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-summer-product__more span {
    font-size: 1.1rem;
  }
}
.p-summer-product__name {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 0;
}
@media screen and (max-width: 767px) {
  .p-summer-product__name {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.8rem 0 0;
  }
}
.p-summer-product__name:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #424441;
  background: linear-gradient(90deg, rgba(66, 68, 65, 0.6) 0%, rgb(255, 255, 255) 50%, rgba(66, 68, 65, 0.6) 100%);
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-summer-product__name:before {
    content: none;
  }
}

/*----------------------------------------
	p-summer-special
----------------------------------------*/
.p-summer-special {
  padding: 12rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-summer-special {
    padding: 5rem 1.5rem;
  }
}
.p-summer-special__container {
  position: relative;
  max-width: 88rem;
  padding: 5.6rem 5.6rem 2.4rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-summer-special__container {
    padding: 4rem 2.4rem;
  }
}
.p-summer-special__container:before, .p-summer-special__container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #424441;
  transition: 2s;
}
.p-summer-special__container:before {
  top: 0;
  left: 0;
}
.p-summer-special__container:after {
  right: 0;
  bottom: 0;
}
.p-summer-special__container.is-active:before, .p-summer-special__container.is-active:after {
  width: 100%;
}
.p-summer-special__container.is-active .p-summer-special__inner:before, .p-summer-special__container.is-active .p-summer-special__inner:after {
  height: 100%;
}
.p-summer-special__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: max-content 1fr;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-summer-special__inner {
    grid-template-columns: auto;
  }
}
.p-summer-special__inner:before, .p-summer-special__inner:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #424441;
  transition: 2s;
}
.p-summer-special__inner:before {
  top: 0;
  left: 0;
}
.p-summer-special__inner:after {
  bottom: 0;
  right: 0;
}
.p-summer-special__heading {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-summer-special__heading {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-summer-special__heading span {
  display: block;
  font-size: 4rem;
  font-weight: normal;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .p-summer-special__heading span {
    font-size: 3.1rem;
  }
}
.p-summer-special__img {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .p-summer-special__img {
    grid-column: auto;
    grid-row: auto;
    width: 88%;
    margin: auto;
  }
}
.p-summer-special__txt {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-summer-special__txt {
    grid-column: auto;
    grid-row: auto;
    font-size: 1.1rem;
  }
}
.p-summer-special__note {
  grid-column: 1/3;
  grid-row: 3/4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-summer-special__note {
    grid-column: auto;
    grid-row: auto;
    font-size: 0.9rem;
  }
}

/*----------------------------------------
	p-summer-back
----------------------------------------*/
.p-summer-back {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-summer-back {
    padding: 0 0 3.2rem;
  }
}
.p-summer-back a {
  font-size: 1.6rem;
  font-family: "Helvetica", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-summer-back a {
    font-size: 1.2rem;
  }
}

/*----------------------------------------
	p-summer-totop
----------------------------------------*/
.p-summer-totop {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-summer-totop {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.p-summer-totop a {
  display: block;
}/*# sourceMappingURL=summer.css.map */