@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
:root {
  --content-color-base: #000;
  --content-color-green: #20a800;
  --content-color-blue: #0042d9;
  --content-color-yellow: #ffff00;
  --content-color-gray: #e9ecf2;
  --content-clear-green: rgba(32 168 0 / 10%);
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((335vw / 3.75), 1104px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: 'Noto Sans JP', serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-right: url(/cmn/icon2/chevron_right.svg);
  --content-border-s: 1px solid;
  --content-border-l: 4px solid;
}

.nosp {
  display: none;
}
.main {
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main * {
  box-sizing: border-box;
}
.inner {
  width: var(--content-width);
  margin: auto;
}
a {
  transition: var(--content-hover-speed);
}
.note-txt {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.is-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-green {
  color: var(--content-color-green);
}
.is-blue {
  color: var(--content-color-blue);
}
.copyright {
  font-size: calc(22vw / 7.5);
  margin-top: calc(16vw / 7.5);
}

/***** MV・ナビ *****/
.mv-wrapper {
  width: 100%;
  height: calc(540vw / 3.75);
  background: url('../img/bg_spmv.webp') no-repeat top center / cover;
  padding: calc(20vw / 3.75) 0;
}
.mv-wrapper > .inner {
  height: 100%;
  display: grid;
  align-items: center;
  position: relative;
  gap: calc(24vw / 3.75);
}
.catch-img {
}
.title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bodycopy {
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  line-height: 1.8;
  font-feature-settings: 'palt';
}
.bodycopy span {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #fff;
}
.bodycopy .yellow-line {
  color: var(--content-color-base);
  background: var(--content-color-yellow);
}
.nav-wrapper {
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.navigation-list {
  padding: calc(20vw / 3.75) calc(20vw / 3.75) calc(12vw / 3.75);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: calc(8vw / 3.75) 0;
}
.navigation-list > li {
  width: calc(100% / 2);
  padding-bottom: calc(8vw / 3.75);
  position: relative;
}
.navigation-list > li:nth-child(-n + 4) {
  border-bottom: var(--content-border-s) #c0c5cc;
}

.navigation-list > li > a {
  display: block;
  font-weight: bold;
  text-align: center;
}
.navigation-list > li:nth-child(odd) > a::after {
  content: '';
  width: 1px;
  height: calc(100% - (8vw / 3.75));
  background-color: #c0c5cc;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 0;
}

/***** メインコンテンツ *****/
.main-content {
  position: relative;
  padding-top: calc(64vw / 3.75);
  display: flex;
  flex-direction: column;
  gap: calc(64vw / 3.75);
}
.content-wrapper {
  width: 100%;
}
.content-wrapper > .inner {
  display: flex;
  flex-direction: column;
  gap: calc(64vw / 3.75);
}
.title-container {
  display: flex;
  flex-direction: column;
  gap: calc(24vw / 3.75);
  text-align: center;
}
.head-title {
  font-size: calc(44vw / 3.75);
  font-weight: 900;
}
.head-title > small {
  display: block;
  font-size: calc(24vw / 3.75);
}
.head-title + .note-txt {
  font-size: calc(16vw / 3.75);
  font-weight: bold;
}
.product-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.title-content {
  display: flex;
  flex-direction: column;
  gap: calc(20vw / 3.75);
}
.limite-box {
  display: grid;
  grid-template-rows: auto;
  font-weight: 900;
}
.limite-box > span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.limite-date {
  border: var(--content-border-l) #000;
  border-bottom: none;
  font-size: calc(34vw / 3.75);
  color: var(--content-color-blue);
  background: #fff;
}
.limite-txt {
  background: #000;
  font-size: calc(28vw / 3.75);
  color: #fff;
}
.title-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: calc(10vw / 3.75);
}
.product-midashi {
  font-size: calc(34vw / 3.75);
  font-weight: 900;
}
.limite-days {
  font-size: calc(28vw / 3.75);
  font-weight: bold;
}
.limite-days .is-green {
  display: block;
}
.tour-content {
  display: flex;
  flex-direction: column;
  gap: calc(40vw / 3.75);
}
.area-tab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: auto;
  overflow: scroll;
}
.area-tab > li {
  width: calc(140vw / 3.75);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: var(--content-border-l) var(--content-color-gray);
  padding-bottom: calc(24vw / 3.75);
  font-size: calc(16vw / 3.75);
  text-align: center;
  cursor: pointer;
}
.area-tab > li.is-current {
  font-weight: bold;
  color: var(--content-color-blue);
  border-bottom-color: var(--content-color-blue);
}
.area-select {
  display: none;
}
.area-select.is-active {
  display: flex;
  flex-direction: column;
  gap: calc(40vw / 3.75);
}
.area-midashi {
  font-size: calc(30vw / 3.75);
  font-weight: 900;
  text-align: center;
}
.product-link-button {
  width: min(600px, 100%);
  margin: auto;
}
.product-link-button > a {
  display: block;
  background: var(--content-color-blue);
  border-radius: 100px;
  box-shadow: 2px 2px 0 0 rgba(0 0 0 / 25%);
  font-size: calc(16vw / 3.75);
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: calc(10vw / 3.75);
  position: relative;
}
.product-link-button > a::after {
  content: '';
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  display: block;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: var(--content-arrow-right);
  mask-image: var(--content-arrow-right);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: calc(20vw / 3.75);
  bottom: 0;
  margin: auto;
}
.product-link-button > a:hover {
  opacity: 0.8;
}

/*** いつまで？ ***/
.content-wrapper.limite > .inner {
  gap: calc(40vw / 3.75);
}
.product-link-list {
  display: grid;
  gap: calc(40vw / 3.75);
}
.product-link-list > li {
  display: grid;
  grid-template-rows: auto;
  gap: calc(12xvw / 3.75);
}
.product-limite-txt {
  font-size: calc(28vw / 3.75);
  font-weight: 900;
  text-align: center;
}

.limite-data-content {
  display: flex;
  flex-direction: column;
  gap: calc(10vw / 3.75);
}
.limite-data-midashi {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}
.limite-data-list {
  display: grid;
  gap: calc(8vw / 3.75);
}
.limite-data-list > li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(10vw / 3.75);
  align-items: center;
  padding: calc(8vw / 3.75) 0;
  border-bottom: var(--content-border-s) #c0c5cc;
}
.list-product {
  font-size: calc(18vw / 3.75);
  font-weight: bold;
}
.list-date {
  font-size: calc(16vw / 3.75);
}

/** フッター **/
.content-wrapper.footer {
  background: url('../img/bg_search.webp') no-repeat center / cover;
  padding: calc(40vw / 3.75) 0;
  position: relative;
}
.content-wrapper.footer::after {
  content: '';
  background: rgba(0 0 0 / 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.content-wrapper.footer .inner {
  width: 100vw;
  position: relative;
  z-index: 30;
  gap: calc(40vw / 7.5);
}
.content-wrapper.footer .head-title {
  font-size: calc(24vw / 3.75);
  font-weight: normal;
  color: #fff;
  text-align: center;
}
