/*------------------------------------------
  home
------------------------------------------*/
.l-banner {
  padding: 80px 0 72px;
}

@media only screen and (max-width: 767px) {
  .l-banner {
    padding: 64px 0;
  }
}
/* ========== MV ========== */
.p-mv {
  overflow: hidden;
  padding-bottom: 112px;
}
.p-mv .mv-announce {
  padding: 75px 0 0;
  color: #01522E;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.5;
}
.p-mv .mv-announce__inner {
  margin-bottom: 2px;
}
.p-mv .mv-announce__inner:last-child {
  margin-bottom: 0;
}
.p-mv .mv-announce__label {
  white-space: nowrap;
}
.p-mv .mv-announce__text {
  flex: 1;
}
.p-mv .mv-announce__text span {
  display: inline-block;
}
.p-mv .mv-slider {
  max-width: 1190px;
  margin: auto;
  position: relative;
}
.p-mv .swiper-slide {
  transform: scale(0.89);
  transform-origin: center bottom;
  transition: 0.7s;
}
.p-mv .swiper-slide .slide-img {
  display: block;
  padding: 0 4px;
}
.p-mv .swiper-slide .slide-img img {
  border-radius: 24px;
}
.p-mv .swiper-slide-active {
  transform: scale(1);
  z-index: 1;
}
.p-mv .swiper-button-prev,
.p-mv .swiper-button-next {
  margin-top: -22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.p-mv .swiper-button-prev:before,
.p-mv .swiper-button-next:before {
  content: none;
}
.p-mv .swiper-button-prev:after,
.p-mv .swiper-button-next:after {
  content: none;
}
.p-mv .swiper-button-prev {
  left: 50%;
  margin-left: -310px;
  background-image: url(../images/common/slider-arrow-prev.svg);
}
.p-mv .swiper-button-next {
  right: 50%;
  margin-right: -310px;
  background-image: url(../images/common/slider-arrow-next.svg);
}
.p-mv .slider-guide {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  padding: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.p-mv .swiper-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  position: static;
}
.p-mv .swiper-pagination-bullet-custom {
  display: block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.p-mv .swiper-pagination-bullet-custom:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-mv .swiper-pagination-bullet-custom svg {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.p-mv .swiper-pagination-bullet-custom--active svg {
  display: block;
}
.p-mv .swiper-pagination-bullet-custom--active svg circle {
  stroke-dasharray: 56.5563;
  stroke-dashoffset: 56.5563;
  animation: BulletProgress calc(var(--delay) * 1ms) linear forwards;
}
.p-mv .swiper-pagination-bullet-custom--active:before {
  background-color: #333;
}
.p-mv .swiper-pagination.is--paused .swiper-pagination-bullet-custom--active svg circle {
  animation: none;
}
.p-mv .swiper-pause {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin-left: 15px;
}
.p-mv .swiper-pause__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 12px;
  border-left: 3px solid #333;
  border-right: 3px solid #333;
}
.p-mv .swiper-pause.is--paused:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #333;
}
.p-mv .swiper-pause.is--paused .swiper-pause__icon {
  opacity: 0;
}

@keyframes BulletProgress {
  to {
    stroke-dashoffset: 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-mv {
    padding-bottom: 32px;
  }
  .p-mv__inner {
    padding: 0;
  }
  .p-mv .mv-announce {
    padding: 75px 24px 0;
  }
  .p-mv .mv-slider {
    max-width: 100%;
    width: 82.9333333333vw;
  }
  .p-mv .swiper-slide .slide-img {
    padding: 0;
  }
  .p-mv .swiper-slide .slide-img img {
    border-radius: 16px;
  }
  .p-mv .swiper-button-prev,
  .p-mv .swiper-button-next {
    position: static;
    margin-top: 0;
    width: 26px;
    height: 26px;
  }
  .p-mv .swiper-button-prev {
    margin-right: 20px;
  }
  .p-mv .swiper-button-next {
    margin-left: 20px;
  }
  .p-mv .swiper-pagination {
    gap: 6px;
  }
  .p-mv .swiper-pagination-bullet-custom {
    width: 22px;
    height: 22px;
  }
  .p-mv .swiper-pagination-bullet-custom:before {
    width: 8px;
    height: 8px;
  }
  .p-mv .swiper-pause {
    width: 22px;
    height: 22px;
    margin-left: 10px;
  }
  .p-mv .swiper-pause__icon {
    width: 8px;
    height: 8px;
  }
}
/* ========== home common ========== */
.p-home.has--separator:after {
  content: "";
  width: 1190px;
  max-width: calc(100% - 48px);
  height: 1px;
  background: #E0E0E0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-home__head {
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
}
.p-home__head .head-title__en {
  display: block;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
.p-home__head .head-title__ja {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .p-home__head {
    margin-bottom: 24px;
  }
  .p-home__head .head-title__en {
    font-size: 3.2rem;
  }
  .p-home__head .head-button {
    display: none;
  }
  .p-home__more {
    text-align: center;
    margin-top: 32px;
  }
}
/* ========== GUIDE ========== */
.p-home--guide {
  padding-bottom: 48px;
}
.p-home--guide .guide-menu__list {
  justify-content: center;
  align-content: flex-start;
  gap: 24px 48px;
}
.p-home--guide .guide-menu__list li {
  width: 130px;
}
.p-home--guide .guide-menu__list .item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 113px;
  height: 113px;
  border-radius: 50%;
  background-color: #F2F3F0;
  transition: 0.3s;
}
.p-home--guide .guide-menu__list .item-icon img {
  width: 56px;
}
.p-home--guide .guide-menu__list .item-label {
  font-weight: 700;
  margin-top: 8px;
}
.p-home--guide .guide-menu__list .item-label__en {
  font-size: 1.6rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.p-home--guide .guide-menu__list .item-label__ja {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.p-home--guide .guide-menu__list a {
  display: block;
  text-align: center;
  color: #01522E;
}
.p-home--guide .guide-menu__list a:hover .item-icon {
  background-color: #E6EFEC;
}

@media only screen and (max-width: 767px) {
  .p-home--guide {
    padding-bottom: 32px;
  }
  .p-home--guide .guide-menu {
    padding: 0 6px;
  }
  .p-home--guide .guide-menu__list {
    gap: 20px 2%;
  }
  .p-home--guide .guide-menu__list li {
    width: 32%;
  }
  .p-home--guide .guide-menu__list .item-icon {
    width: 88px;
    height: 88px;
  }
  .p-home--guide .guide-menu__list .item-icon img {
    width: 44px;
  }
  .p-home--guide .guide-menu__list .item-label {
    margin-top: 8px;
  }
  .p-home--guide .guide-menu__list .item-label__en {
    font-size: 1.2rem;
  }
  .p-home--guide .guide-menu__list .item-label__ja {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .p-home--guide .guide-menu__list a:hover .item-icon {
    background-color: #FAF9F7;
  }
}
/* ========== SHOP NEWS ========== */
.p-home--shopnews {
  padding: 56px 0 88px;
}

@media only screen and (max-width: 767px) {
  .p-home--shopnews {
    padding: 40px 0;
  }
}
/* ========== EVENT ========== */
.p-home--event {
  padding: 56px 0 105px;
}
.p-home--event .event-list {
  padding: 30px 0 0;
}
.p-home--event .event-list__item--first {
  width: 45%;
  padding-left: 42px;
}
.p-home--event .event-list__item--first .c-card__icon {
  left: -22px;
}
.p-home--event .event-list__item--first .c-card__term {
  font-size: 1.6rem;
}
.p-home--event .event-list__item--first .c-card__title {
  font-size: 1.8rem;
}
.p-home--event .event-list__item--second {
  width: 48%;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .p-home--event {
    padding: 40px 0 48px;
  }
  .p-home--event .event-list {
    padding: 12px 0 0;
  }
  .p-home--event .event-list__item--first {
    width: 100%;
    padding-left: 0;
    margin-bottom: 35px;
  }
  .p-home--event .event-list__item--first .c-card__icon {
    left: -8px;
    top: -12px;
  }
  .p-home--event .event-list__item--first .c-card__term {
    font-size: 1.4rem;
  }
  .p-home--event .event-list__item--first .c-card__title {
    font-size: 1.8rem;
  }
  .p-home--event .event-list__item--second {
    width: 100%;
  }
}
/* ========== NEWS ========== */
.p-home--news {
  padding: 88px 0 75px;
  background: #FAF9F7;
  border-radius: 80px 0 0 0/80px 0 0 0;
}
.p-home--news .p-home__head {
  margin-bottom: 0;
}
.p-home--news .p-home__head .head-title {
  margin-bottom: 94px;
}
.p-home--news .p-home__contents {
  margin-left: auto;
  width: 72%;
  max-width: calc(100% - 230px);
}

@media only screen and (max-width: 1024px) {
  .p-home--news .p-home__head {
    margin-bottom: 30px;
    display: flex;
    width: 100%;
  }
  .p-home--news .p-home__head .head-title {
    margin-bottom: 0;
  }
  .p-home--news .p-home__contents {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-home--news {
    padding: 65px 0;
    border-radius: 64px 0 0 0/64px 0 0 0;
  }
  .p-home--news .p-home__head {
    margin-bottom: 32px;
  }
  .p-home--news .p-home__more {
    width: 100%;
  }
}
/* ========== Instagram ========== */
.p-home--instagram {
  padding: 104px 0;
}
.p-home--instagram .instagram-list {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 16px 2%;
}
.p-home--instagram .instagram-list__item {
  width: 15%;
}

@media only screen and (max-width: 767px) {
  .p-home--instagram {
    padding: 48px 0;
  }
  .p-home--instagram .p-home__inner {
    padding: 0 16px;
  }
  .p-home--instagram .p-home__head {
    padding: 0 8px;
  }
  .p-home--instagram .instagram-list {
    gap: 16px 5%;
  }
  .p-home--instagram .instagram-list__item {
    width: 30%;
  }
}
/* ========== OFFICIAL SNS ========== */
.p-home--sns {
  padding: 60px 0 64px;
  background: #FAF9F7;
  border-radius: 0 80px 0 0/0 80px 0 0;
}
.p-home--sns .sns-list {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}
.p-home--sns .sns-list__item {
  max-width: 350px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .p-home--sns {
    padding: 56px 0;
    border-radius: 0 64px 0 0/0 64px 0 0;
  }
  .p-home--sns .sns-list {
    padding: 8px 20px 0;
  }
  .p-home--sns .sns-list__item {
    width: 100%;
  }
}