@charset "utf-8";
/*------------------------------------------------*/
/*★ ページスタイル設定 ★*/
/*------------------------------------------------*/
/*★ ＝＝ pageApp ＝＝ ★*/
#pageApp {
  background: url("../images/main_bg.webp") repeat 0 0;
}
/*★ ＝＝ headerArea ＝＝ ★*/
#headerArea {
  position: relative;
}
/*mv-portal*/
.mv-portal {
  font-weight: bold;
  background: #000;
  color: #fff;
  --portal-button-bg: var(--default-color-yellow);
  z-index: 2;
  position: relative;
}
.js-open-trigger {
  cursor: pointer;
}
.mv-portal__title--text {
  display: flex;
  gap: .5em;
  align-items: center;
  font-size: min((32vw / 7.5), 16px);
}
.mv-portal__title--arrows {
  display: grid;
  --size: .5em;
  grid-template-columns: repeat(2, var(--size));
  gap: .25em;
}
.mv-portal__title--arrow {
  width: var(--size);
  height: calc(var(--size) + .25em);
  background: currentColor;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.mv-portal__list--link.is-active {
  background: var(--portal-button-bg);
  color: #000;
}
/*発地ナビSP完全別レイアウトスタイル*/
@media(width < 980px) {
  .js-open-target {
    display: none;
  }
  .mv-portal__title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min((57vw / 7.5), 40px);
    font-size: min((32vw / 7.5), 18px);
    padding: min((26vw / 7.5), 13px);
  }
  .mv-portal__button {
    display: grid;
    justify-items: center;
    align-items: center;
    width: min((310vw / 7.5), 330px);
    height: min((64vw / 7.5), 40px);
    background: var(--portal-button-bg);
    font-size: min((30vw / 7.5), 16px);
    color: var(--default-color-black);
  }
  .mv-portal__inner {
    position: relative;
  }
  .mv-portal__list--wrapper {
    --portal-wrapper-bg: rgba(255, 255, 255, .95);
    min-width: min((455vw / 7.5), 440px);
    position: absolute;
    right: calc(50vw / 7.5);
    z-index: 250;
    background: var(--portal-wrapper-bg);
    color: var(--default-color-black);
    margin-top: max((-8vw / 7.5), -8px);
    &::before {
      --posi: calc((76 / 455) * 100%);
      content: "";
      display: block;
      width: min((54vw / 7.5), 27px);
      height: min((33vw / 7.5), 16.5px);
      background: var(--portal-wrapper-bg);
      clip-path: polygon(50% 0, 100% 100%, 0 100%);
      position: absolute;
      transform: translateY(calc(-100% + 1px));
    }
    @media (width > 740px) {
      &::before {
        left: var(--posi);
      }
    }
    @media (width <=740px) {
      &::before {
        right: var(--posi);
      }
    }
  }
  .mv-portal__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8em, 1fr));
    gap: min((14vw / 7.5), 7px) min((12vw / 7.5), 6px);
    padding: min((28vw / 7.5), 14px) min((22vw / 7.5), 11px);
    position: relative;
  }
  .mv-portal__list--item:has(.is-active) {
    display: none;
  }
  .mv-portal__list--link {
    width: 100%;
    padding: .3em .5em .4em;
    font-size: min((24vw / 7.5), 13px);
    display: flex;
    align-items: center;
    gap: .5em;
    cursor: pointer;
    &::before {
      content: "";
      background: var(--default--image-icon-right-black) no-repeat center center / cover;
      width: 1.25em;
      height: 1.5em;
    }
  }
}
/*発地ナビPC完全別レイアウトスタイル*/
@media(width >=980px) {
  :is(.mv-portal__list--title, .js-open-trigger) {
    display: none;
  }
  .mv-portal__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: calc((12 / 992) * 100%);
    width: min(98%, 992px);
    margin: auto;
    font-size: 14px;
    align-items: center;
    padding: 10px 0;
  }
  .mv-portal__list {
    display: flex;
    gap: .4em;
    align-items: center;
    &:has(:nth-child(6)) {
      justify-content: space-around;
    }
  }
  .mv-portal__list--link {
    display: block;
    padding: .2em .8em .3em;
  }
  .mv-portal__list--wrapper {
    display: block !important;
  }
}
/*mv-main*/
.mv-main {
  background: var(--default-color-black) var(--mv-bg) no-repeat center var(--mv-bg-posi-col) / var(--mv-bg-size);
  position: relative;
  .is-sp & {
    --mv-bg: url(../images/sp/mv_bg.webp);
    --mv-bg-size: max(100%, (750vw / 7.5));
    .is-top & {
      min-height: calc(888vw / 7.5);
      --mv-logo: url(../images/sp/mv_logo_top.webp);
      --mv-bg-posi-col: 0;
    }
    .is-lower & {
      min-height: calc(552vw / 7.5);
      --mv-logo: url(../images/sp/mv_logo.webp);
      --mv-bg-posi-col: center;
    }
  }
  .is-pc & {
    --mv-bg: url(../images/pc/mv_bg.webp);
    --mv-bg-size: max(100%, 1920px);
    .is-top & {
      min-height: 712px;
      --mv-logo: url(../images/pc/mv_logo_top.webp);
      --mv-bg-posi-col: 0;
    }
    .is-lower & {
      min-height: 312px;
      --mv-logo: url(../images/pc/mv_logo.webp);
      --mv-bg-posi-col: center;
    }
  }
  &::after {
    content: "";
    width: 100%;
    height: min((12vw / 7.5), 12px);
    background: url(../images/countdown_border.png) repeat-x 0 0 / contain;
    position: absolute;
    bottom: 0;
  }
  .is-lower & {
    &::after {
      bottom: max((-12vw / 7.5), -12px);
    }
  }
}
.mv-main__logo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: var(--mv-logo-posi-ue, 0);
  left: 50%;
  translate: -50% 0;
  .is-top & {
    .is-pc & {
      width: 909px;
      height: 909px;
      --mv-logo-posi-ue: -110px;
    }
  }
  .is-lower & {
    .is-pc & {
      width: 393px;
      height: 300px;
    }
  }
  [class*="base-picture"] {
    width: 100%;
    height: 100%;
  }
  .base-picture__image {
    display: block;
    object-fit: contain;
  }
}


/*mv-count*/
.mv-count {
  background: linear-gradient(#d5d5d5, #eeeeee 50%, #c4c4c4);
  padding: min((30vw / 7.5), 20px) 0 min((42vw / 7.5), 32px);
  text-align: center;
  font-size: min((36vw / 7.5), 24px);
  line-height: 1;
  font-weight: 900;
  z-index: 2;
  position: relative;
  /*&:has(.mv-count__notes) {
    padding-bottom: min((26vw / 7.5), 12px);
  }
  &:has(.mv-count__text:only-child) {
    padding: min((76vw / 7.5), 76px) 0 min((38vw / 7.5), 38px);
  }*/
  &::after {
    content: "";
    width: 100%;
    height: min((12vw / 7.5), 12px);
    background: url(../images/countdown_border.png) repeat-x 0 0 / contain;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.mv-count__text {
  letter-spacing: .1em;
  line-height: 1.2;
}
.mv-count__wrapper {
  margin-top: .3em;
  position: relative;
}
.mv-count__time {
  font-size: min((48vw / 7.5), 36px);
  letter-spacing: .1em;
  color: var(--default-color-yellow);
}
.mv-count__time--bg {
  font-size: min((48vw / 7.5), 36px);
  letter-spacing: .1em;
  color: #000;
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-text-stroke: 5px #000;
}
.mv-count__notes {
  font-size: min((20vw / 7.5), 12px);
  font-weight: normal;
  margin-top: 1em;
}
/*------------------------------------------------*/
/*★ ＝＝ mainArea ＝＝ ★*/
#mainArea {
  padding: min((105vw / 7.5), 105px) 0 0;
  background: var(--bg-main-top) no-repeat center 0 / var(--mv-bg-size);
  &:not(:has(.switch-world)) {
    padding-top: min((12vw / 7.5), 12px)
  }
  &:not(:has(#product)) {
    padding-bottom: min((105vw / 7.5), 105px);
  }
  .is-sp & {
    --mv-bg-size: max(100%, (750vw / 7.5));
    .is-top & {
      --bg-main-top: url(../images/sp/item_header_bg_top.webp);
    }
    .is-lower & {
      --bg-main-top: url(../images/sp/item_header_bg.webp);
    }
  }
  .is-pc & {
    --mv-bg-size: max(100%, 1920px);
    .is-top & {
      --bg-main-top: url(../images/pc/item_header_bg_top.webp);
    }
    .is-lower & {
      --bg-main-top: url(../images/pc/item_header_bg.webp);
    }
  }
}
/*section*/
.section__inner, .contents__wrapper {
  width: var(--default-width);
  margin: auto;
  position: relative;
  #mainArea & {
    width: 100%;
  }
}
/*close*/
#close {
  text-align: center;
  color: #000;
  .announce__contents {
    font-size: 1.25em;
    font-weight: bold;
    margin: min((80vw / 7.5), 80px) 0;
  }
  .link-read-text {
    margin-bottom: 1.5em;
  }
}
/*switch-world*/
.switch-world {
  margin-bottom: min((60vw / 7.5), 50px);
}
.switch-world__list {
  display: flex;
  justify-content: center;
  align-items: center;
  .is-sp & {
    gap: calc(20vw / 7.5);
  }
  .is-pc & {
    gap: 0 min((90vw / 9.92), 90px);
  }
  &:has(.switch-world__item.is-kaigai.is-active) {
    margin-left: max((-12vw / 7.5), -18px);
  }
  &:has(.switch-world__item.is-kokunai.is-active) {
    margin-left: min((12vw / 7.5), 18px);
  }
}
.switch-world__item {
  .switch-world__link {
    display: block;
    position: relative;
    height: var(--size-h, min((149vw / 7.5), 171px));
  }
  &:not(.is-active) {
    --size-h: min((93vw / 7.5), 107px);
    .switch-world__image {
      &.is-default {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      &.is-hover {
        opacity: 0;
      }
    }
  }
}
.switch-world__image {
  display: block;
  height: 100%;
  object-fit: contain;
}
/*------------------------------------------------*/
/*★ ＝＝ footerArea ＝＝ ★*/
#footerArea {
  padding: 0 0 min((100vw / 7.5), 100px);
  /*background: var(--default-color-bg); ★★*/
}
/*other-banner*/
.other__banner {
  width: var(--default-width);
  margin: auto;
  padding-bottom: min((100vw / 7.5), 105px);
}
/*fair-banner*/
#fair-banner {
  text-align: center;
}
.fair-banner__title {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-size: min((32vw/ 7.5), 24px);
  font-weight: 900;
  color: #000;
  line-height: calc(40 / 32);
  text-align: center;
  margin-bottom: 1em;
  --border-rotate-left: -26deg;
  --border-rotate-right: 26deg;
  .is-pc & {
    --border-rotate-left: -45deg;
    --border-rotate-right: 45deg;
  }
  &::before, &::after {
    content: "";
    width: 1px;
    height: 100%;
    background: currentColor;
  }
  &::before {
    transform: rotate(var(--border-rotate-left));
  }
  &::after {
    transform: rotate(var(--border-rotate-right));
  }
}
.fair-banner__button--wrapper {
  margin-top: min((40vw/ 7.5), 20px);
}
.fair-banner__button {
  &.is-kaigai {
    --btn-bg-color: #014099;
  }
  &.is-kokunai {
    --btn-bg-color: #5db92e;
  }
  .button-base__link {
    --bg: var(--btn-bg-color);
  }
}
/*reco-banner*/
#reco-banner {
  background: #fff;
  width: var(--default-width);
  margin: auto;
  --yohaku: min((30vw / 7.5), 30px);
  padding: var(--yohaku);
  &:not(:first-child) {
    margin-top: min((104vw / 7.5), 74px);
  }
  .is-sp & {
    max-width: 500px;
  }
}
.reco-banner__list {
  display: grid;
  grid-template-columns: var(--column, repeat(2, 1fr));
  gap: var(--yohaku);
  .is-pc & {
    --column: repeat(4, 1fr);
  }
}
.reco-banner__link {
  display: block;
  border: var(--border-color, #fff) min((4vw / 7.5), 4px) solid;
}
/*footer-banner*/
#footer-banner {
  width: min(var(--default-width-sp), 960px);
  margin: auto;
  display: grid;
  gap: min((20vw / 7.5), 15px);
  &:not(:first-child) {
    margin-top: min((104vw / 7.5), 74px);
  }
  .is-sp & {
    max-width: 500px;
  }
}
#reco-banner + #footer-banner {
  margin-top: min((60vw / 7.5), 45px);
}
/*search*/
#searchApp {
  background: var(--default-color-bg);
  .is-pc & {
    padding: 88px 0 120px;
    background: url("../images/pc/search_photo.webp") no-repeat center top / var(--default-bg-width-pc);
  }
  .is-sp & {
    --yohaku-btm: min((100vw / 7.5), 60px);
    @media(width > 740px) {
      padding-bottom: var(--yohaku-btm);
    }
    @media(width <=740px) {
      .rn-searchMod__formSection {
        padding-bottom: var(--yohaku-btm);
      }
    }
  }
}
/*------------------------------------------------*/
/*★ ＝＝ hover ＝＝ ★*/
@media (hover : hover) and (pointer : fine) {
  /*mv*/
  .mv-portal__list--link {
    &:hover {
      color: #000 !important;
      background: var(--portal-navi-bg);
    }
    @media(width >=980px) {
      --portal-navi-bg: var(--portal-button-bg);
    }
    @media(width < 980px) {
      --portal-navi-bg: #ffcd1f;
    }
  }
  /*switch-world__link*/
  .switch-world__link {
    &:hover {
      .switch-world__image.is-default {
        transition: var(--default-hover-speed);
        opacity: 0;
        
      }
      .switch-world__image.is-hover {
        transition: var(--default-hover-speed);
        opacity: 1;
      }
    }
  }
  /*other__banner*/
  .other__banner--item {
    transition: var(--default-hover-speed);
    &:hover {
      opacity: var(--default-hover-opacity);
    }
  }
  /*fair-banner*/
  .fair-banner__item {
    display: flex;
    justify-content: center;
    .base-picture__link {
      .base-picture {
        background: #fff;
      }
      &:hover {
        .base-picture__image {
          opacity: var(--default-hover-opacity);
        }
      }
    }
  }
  .fair-banner__button .button-base__link {
    &:hover {
      --bg: color-mix(in srgb, var(--btn-bg-color), transparent);
    }
  }
  /*.reco-banner*/
  .reco-banner__link {
    transition: var(--default-hover-speed);
    &:hover {
      --border-color: var(--default-color-red2);
    }
  }
  /*footer-banner*/
  .footer-banner__item--link {
    display: block;
    background: #fff;
    &:hover {
      .base-picture {
        transition: var(--default-hover-speed);
        opacity: var(--default-hover-opacity);
      }
    }
  }
  /*end hover*/
}