@charset "UTF-8";

/*--------------------------------------------------
  Base
--------------------------------------------------*/
html {
  font-size: 100%;
}

/* breadcrumb
-------------------------*/
.breadcrumb {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .breadcrumb__inner {
    width: auto;
  }
}
/* nav
-------------------------*/
@media not screen and (max-width: 1023px) {
  #nav {
    position: relative;
  }
}
@media screen and (max-width: 1023px) {
  .nav__list {
    width: 100%;
  }
  .nav__logo {
    display: none;
  }
}
.nav__list li{
  width: 20%;
}


/*--------------------------------------------------
  Components
--------------------------------------------------*/
/* parallax-bg
-------------------------*/
.parallax-bg::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-position: top center;
  background-size: contain;
  background-repeat: repeat-y;
  background-color: #fff;
  z-index: -1;
}

@media not all and (min-width: 769px) {
  .parallax-bg::before {
    background-image: url("../images/hatsuyume/bg_sp.png");
  }
}
@media screen and (min-width: 769px) {
  .parallax-bg::before {
    background-image: url("../images/hatsuyume/bg_pc.png");
  }
}

/* pill-button
-------------------------*/
.pill-button {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  padding: 14px 1rem;
  background-color: #fff;
  border: 1px solid #9F7442;
  border-radius: 60px;
  transition: all .3s;
}

.pill-button--icon-instagram {
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  position: relative;
}
.pill-button--icon-instagram::before {
  flex-shrink: 0;
  content: '';
  width: 24px;
  height: 24px;
  background: url('https://www.his-j.com/cmn/n-headfoot/images/icon_instagram.svg') no-repeat center  / cover;
}
@media not all and (min-width: 769px) {
  .pill-button--icon-instagram {
    gap: 10px;
  }
  .pill-button--icon-instagram .pill-button__text {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 769px) {
  .pill-button--icon-instagram {
    gap: 16px;
  }
  .pill-button--icon-instagram .pill-button__text {
    font-size: 1rem;
  }
}
.pill-button--small {
  padding: 8px 14px;
}

.pill-button__text {
  color: #333;
  font-size: 0.875rem;
  transition: color .3s;
}
@media (hover: hover) {
  .pill-button:hover {
    background-color: #9F7442;
    opacity: 1;
  }
  .pill-button:hover .pill-button__text {
    color: #fff;
  }
}

.pill-button--work-shop {
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #41B26C;
  border-radius: 50px;
  transition: all .3s;
}
.pill-button--work-shop .pill-button__text {
  color: #03933A;
}
@media (hover: hover) {
  .pill-button--work-shop:hover {
    background-color: #41B26C;
  }
  .pill-button--work-shop:hover .pill-button__text {
    color: #fff;
  }
}

@media (hover: hover) {
  .pill-button--to-top:hover {
    background-color: #E2E2E2;
  }
  .pill-button--to-top:hover .pill-button__text {
    color: #000;
  }
}

/* product-card
-------------------------*/
.product-card {
  display: block;
  max-width: 320px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  overflow: hidden;
  position: relative;
}

.product-card__img {
  overflow: hidden;
}

.product-card__img img {
  aspect-ratio: 304 / 160;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__text-container {
  padding: 16px 16px 24px;
  height: calc(100% - 160px);
  display: flex;
  flex-direction: column;
}
.product-card__heading {
  font-size: 1.25rem;
  color: #333333;
}
.product-card__text {
  font-size: 0.875rem;
  color: #333333;
  margin-top: 8px;
}

.product-card__link {
  display: flex;
  gap: 8px;
  align-items: center;
  grid-area: bottom;
  justify-content: flex-end;
}
.product-card__link {
  flex-shrink: 0;
  width: auto;
  margin-left: auto;
  margin-top:auto;
}
.product-card__link + .product-card__link {
  margin-left: 8px;
}


/* discount-tag
-------------------------*/
.discount-tag {
  display: flex;
  align-items: center;
  padding: 4px 12px;
  color: #fff;
  background-color: #C5A658;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
}


/*--------------------------------------------------
  Plugin
--------------------------------------------------*/
/* slick-list
-------------------------*/
@media not all and (min-width: 769px) {
  .domestic-store-list > .slick-list {
    padding: 0 20px 0 0!important;
  }

  .online-store-list > .slick-list {
    padding: 0 20px 0 0!important;
  }
}
.store-image-slider__slide img{
  width: 100%;
  height: 100%;
  aspect-ratio: 296 / 196;
  object-fit: cover;
}


/* slick-dots
-------------------------*/
.store-image-slider .slick-dots {
  bottom: 15px!important;
}

.store-image-slider .slick-dots li button:before {
  opacity: 0.75;
  color: #697180;
}
.store-image-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

/* button-container
-------------------------*/
.button-container {
  width: 280px;
  margin: 40px auto 0;
}

/*--------------------------------------------------
  PageSpecific
--------------------------------------------------*/

/* mv
-------------------------*/
.mv {
  background-image: url(../images/hatsuyume/mv_bg_pc.jpg);
  background-position: top center;
  position: relative;
  overflow: hidden;
}
.mv__inner {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  padding-top: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media not all and (min-width: 769px) {
  .mv {
    background-image: url(../images/hatsuyume/mv_bg_sp.jpg);
    height: 500px;
  }
  .mv__inner {
    background-image: url(../images/hatsuyume/mv_frame_sp.svg);
    height: 523px;
    width: 495px;
  }
}
@media screen and (min-width: 769px) {
  .mv {
    background-image: url(../images/hatsuyume/mv_bg_pc.jpg);
    height: 600px;
  }
  .mv__inner {
    background-image: url(../images/hatsuyume/mv_frame_pc.svg);
    height: 630px;
    width: 953px;
  }
}
@media screen and (min-width: 1920px) {
  .mv {
    background-size: 100%;
  }
}
.mv__title {
  text-align: center;
  margin-bottom: 8px;
}
.mv__date {
  text-align: center;
  margin-bottom: 8px;
}
.mv__subtitle {
  text-align: center;
}
.mv__text {
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media not all and (min-width: 769px) {
  .mv__title {
    max-width: 231px;
  }
  .mv__date {
    width: 263px;
    margin-bottom: 0;
  }
  .mv__text {
    font-size: 0.75rem;
  }
  .mv__text .sp-only {
    display: block !important;
  }
}
@media screen and (max-width: 374px) {
  .mv__subtitle img {
    width: 90vw;
  }
  .mv__text {
    max-width: 100vw;
    padding: 0 16px;
  }
  .mv__text br {
    display: none !important;
  }
}


/* section
-------------------------*/
.section {
  position: relative;
  padding: 80px 0;
}
#hatsuyume-bag.section {
  background-color: #F9F8E8;
}
#hatsuyume-sale.section {
  background: transparent;
  padding-bottom: calc(8.53vw + 64px);
}
#target-stores.section {
  padding-bottom: 120px;
  background-color: #fff;
}

@media not all and (min-width: 769px) {nav
  .section {
    padding-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .section {
    position: relative;
  }
  #hatsuyume-bag.section {
    background-color: #F9F8E8;
  }
}

/* section-inner
-------------------------*/
.section-inner {
  width: 100%;
  transform: translate3d(0,0,0);
  margin: 0 auto;
}
@media not all and (min-width: 769px) {
  .section-inner {
    padding: 0 calc(20 / 375 * 100%);
  }
}
@media screen and (min-width: 769px) {
  .section-inner {
    max-width: 996px;
    padding-bottom: 0;
  }
  .section-inner + .section-inner {
    padding-top: 120px;
  }
}

/* section-heading
-------------------------*/
.section-heading {
  display: block;
  text-align: center;
}

/* section-lead
-------------------------*/
.section-lead {
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  color: #455863;
  display: block;
}

@media not all and (min-width: 769px) {
  #hatsuyume-bag .section-lead,
  #hatsuyume-sale .section-lead {
    margin-top: 8px;
  }
}
@media screen and (min-width: 769px) {
  #hatsuyume-bag .section-lead,
  #hatsuyume-sale .section-lead {
    margin-top: 16px;
  }
}

/* section-contents
-------------------------*/
.section-contents {
  margin-top: 32px;
}

/* hatsuyume-sale-title
-------------------------*/
.hatsuyume-sale-title {
  height: 58px;
  text-align: center;
}
.hatsuyume-sale-title__image {
  object-fit: cover;
}
@media not all and (min-width: 769px) {
  .hatsuyume-sale-title {
    height: 38px;
  }
  .hatsuyume-sale-title img {
    height: 100%;
  }
}
/* hatsuyume-sale-cards
-------------------------*/
.hatsuyume-sale-cards {
  display: flex;
}
@media not all and (min-width: 769px) {
  .hatsuyume-sale-cards {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 18px;
    padding: 5px calc(20 / 375 * 100%);
    margin: 0 calc(-20 / 375 * 100%);
  }
  .hatsuyume-sale-cards + .hatsuyume-sale-cards {
    margin-top: 24px;
  }
}
@media screen and (min-width: 769px) {
  .hatsuyume-sale-cards {
    gap: 30px 18px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .hatsuyume-sale-cards + .hatsuyume-sale-cards {
    margin-top: 30px;
  }
}
@media not all and (min-width: 769px) {
  .hatsuyume-sale-cards__item {
    scroll-snap-align: center;
    width: calc(( 320 / 375) * 100%);
    flex-shrink: 0;
  }
}
@media screen and (min-width: 769px) {
  .hatsuyume-sale-cards__item {
    width: calc(( 100% - 36px ) /3);
  }
}





/* target-stores-title
-------------------------*/
.target-stores-title {
  font-size: 1.5rem;
}

/* store-nav-list
-------------------------*/
@media screen and (min-width: 769px) {
  .store-nav-list {
    display: none
  }
}
@media not all and (min-width: 769px) {
  .store-nav-list {
    display: flex;
    width: 100%;
    overflow-x: auto;
  }

  .store-nav-list__item {
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    font-size: 0.875rem;
    font-weight: bold;
    color: #9F7442;
    padding: 10px 14px;
    border: 1px solid #9F7442;
    border-radius: 6px 6px 0 0;
  }
  .store-nav-list__item.is-active {
    color: #fff;
    background-color: #9F7442;
    border: 0;
  }
  .store-nav-list__item + .store-nav-list__item {
    margin-left: 12px;
  }
}


/* domestic-store-list
-------------------------*/
.domestic-store-list {
  display: flex;
  row-gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .domestic-store-list {
    column-gap: 40px;
  }
}
@media not all and (min-width: 769px) {
  .domestic-store-list {
    margin-right: calc(-20 / 375 * 100%);
    column-gap: 16px;
  }
}
@media screen and (min-width: 769px) {
  .domestic-store-list__item {
    width: calc((100% - 32px) / 3);
  }
}
@media not all and (min-width: 769px) {
  .domestic-store-list__item:not(:last-of-type) {
    margin-right: 16px;
  }
}


/* store-card
-------------------------*/
.store-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
.store-card__image-wrap {
  width: 100%;
}
@media not all and (min-width: 769px) {
  .store-card__image-wrap {
    height: 200px;
  }
}
@media screen and (min-width: 769px) {
  .store-card__image-wrap {
    height: 300px;
  }
}
.store-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-card__image-wrap + .store-card__contents {
  margin-top: 24px;
}
.store-card__slide {
  margin-bottom: 24px!important;
}
.store-card__contents {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.store-card__about-store {
  font-size: 0.875rem;
  margin-top: 16px;
}
.store-card__item {
  margin-top: 16px;
}
.store-card__item-heading {
  font-size: 0.875rem;
  font-weight: bold;
}
.store-card__item-contents {
  font-size: 0.875rem;
  margin-top: 8px;
}
.store-card__button-wrapper {
  text-align: center;
  padding-top: 24px;
  margin-top: auto;
}
.store-card__button {
  width: 100%;
  max-width: 280px;
}
@media screen and (min-width: 769px) {
  .store-card__slide {
    cursor: pointer;
  }
}

/* info-panel
-------------------------*/
.info-panel {
  border-left: 4px solid #9F7442;
  padding-left: 16px;
}
.info-panel__head {
  display: flex;
  column-gap: 10px;
  justify-content: space-between;
}
.info-panel__heading {
  font-size: 1rem;
  font-weight: bold;
  overflow-wrap: break-word;
}
.info-panel__sns-links {
  flex-shrink: 0;
}
.info-panel__text {
  font-size: 0.875rem;
  color: #666;
  overflow-wrap: break-word;
  margin-top: 6px;
}


/* sns-link
-------------------------*/
.sns-links {
  display: flex;
  gap: 8px;
}
.sns-links__link {
  width: 24px;
  height: 24px;
}
.sns-links__image {
  width: 100%;
  height: auto;
  max-width: none!important;
}

/* product-list
-------------------------*/
.product-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 10px;
}

.product-list__item {
  width: 60px;
}


/* products-handled
-------------------------*/
.products-handled {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  text-align: center;
  color: #9F7442;
  padding-top: 38px;
  background-image: url('../images/souvenir/icon_sweets.svg');
  background-repeat: no-repeat;
  background-position: top 0 center;
  background-size: 36px;
}
.products-handled--sundries {
  background-image: url('../images/souvenir/icon_goody.svg');
}
.products-handled--made-in-Hawaii {
  background-image: url('../images/souvenir/icon_mih.svg');
}
.products-handled--cosmetics {
  background-image: url('../images/souvenir/icon_cosme.svg');
}
@media screen and (min-width: 769px) {
  .products-handled--flex {
    display: flex;
    background-position: left 0 center;
    padding-top: 0;
    padding-left: 42px;
    height: 36px;
  }
}


/* service-list
-------------------------*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}


/* tag
-------------------------*/
.tag {
  display: inline-flex;
  font-size: 0.75rem;
  color: #000;
  padding: 3px 8px 5px;
  background-color: #F7EBDE;
  border-radius: 4px;
}


/* campaign-card
-------------------------*/
.campaign-card {
  background-color: #F9F8E8;
  margin-top: 24px;
}

@media not all and (min-width: 769px) {
  .campaign-card {
    display: flex;
    gap: 8px;
    flex-direction: column;
    padding: 24px calc(18 / 375 * 100%);
    margin-left: calc(-20 / 375 * 100%);
    margin-right: calc(-20 / 375 * 100%);
  }
}
@media screen and (min-width: 769px) {
  .campaign-card {
    display: grid;
    gap: 8px 24px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto 1fr;
    grid-template-areas: 
    "thumb lead"
    "thumb heading"
    "thumb text"
    "thumb button";
    padding: 24px;
    position: relative;
  }
}

@media not all and (min-width: 769px) {
  .campaign-card__label {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .campaign-card__label {
    width: 90px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
    word-break: break-all;
    padding: 12px 1rem 30px;
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 1;
  }
  .campaign-card__label::before {
    content: '';
    width: 100%;
    height: 100%;
    aspect-ratio: 103 / 102;
    background-image: url(/kaigai/hawaii/images/event/event_tag.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: -5px;
    left: 0;
    z-index: -1;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.3));
  }
}

.campaign-card__thumb {
  margin: 0;
}
@media not all and (min-width: 769px) {
  .campaign-card__thumb {
    margin-top: 16px;
  }
}
@media screen and (min-width: 769px) {
  .campaign-card__thumb {
    grid-area: thumb;
    max-width: 335px;
    max-height: 220px;
  }
}

.campaign-card__image {
  aspect-ratio: 335 / 220;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-card__lead {
  font-size: 0.875rem;
} 
@media screen and (min-width: 769px) {
  .campaign-card__lead {
    grid-area: lead;
    padding-right: 106px;
  }
}

.campaign-card__heading {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .campaign-card__heading {
    grid-area: heading;
    padding-right: 106px;
  }
}

.campaign-card__text {
  font-size: 0.75rem;
}
@media not all and (min-width: 769px) {
  .campaign-card__text {
    margin-top: 8px;
  }
}
@media screen and (min-width: 769px) {
  .campaign-card__text {
    grid-area: text;
    margin-top: auto;
  }
}


.campaign-card__button {
  margin: 0 auto;
}
@media not all and (min-width: 769px) {
  .campaign-card__button {
    max-width: 335px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 769px) {
  .campaign-card__button {
    grid-area: button;
    max-width: 372px;
    margin-top: 8px;
  }
}

/* page-bottom
-------------------------*/
.page-bottom {
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  background-color: #BEA78C;
}

.page-bottom .button-container {
  margin-top: 0;
}
@media not all and (min-width: 769px) {
  .page-bottom .button-container {
    padding: 90px 1rem;
  }
}
@media screen and (min-width: 769px) {
  .page-bottom .button-container {
    padding: 56px 1rem;
  }
}