@charset "UTF-8";
:root {
  --pc-width: 1440;
  --tb-width: 768;
  --sp-width: 750;
  --bg-color: #FCEEF4;
}

* > .main__gift {
  font-weight: var(--fontweight-medium);
  font-feature-settings: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


@media only screen and (max-width: 1440) and (min-width: 768px) {
  html {
    font-size: calc(10 * (100vw/1440));
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: calc(10 * (100vw/750));
  }
}
.main__gift * {
  box-sizing: border-box;
}
.main__gift img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.main__gift a {
  text-decoration: none;
}
.main__gift picture {
  display: block;
}
.main__gift p, .main__gift ul, .main__gift ol, .main__gift dl {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .main__gift .pc_only {
    display: none;
  }
  .main__gift .sp_only {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .main__gift .pc_only {
    display: block;
  }
  .main__gift .sp_only {
    display: none;
  }
}
.gift__heading {
  padding: 5.6rem 0 0 0;
  color: var(--color-brand-accent, #152144);
  font-feature-settings: "palt";
  background: var(--bg-color);
}
.gift__heading .gift__title {
  font-family: var(--font-en);
  font-size: 4.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
.gift__heading .gift__sub-title {
  margin: 1.7rem 0 0 0;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.js-fadeUp-load {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(3rem);
}

.js-fadeUp-load.js-active {
  opacity: 1;
  transform: translateY(0);
}

.gift__tab-lsit {
  display: grid;
  grid-template-columns: repeat(3, 27rem);
  grid-template-rows: 15.3rem;
  grid-gap: 2rem;
  justify-content: center;
  margin: 5.8rem 0 0 0;
}
.gift__tab-lsit .gift__tab-item a {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../img/tab01.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}
.gift__tab-lsit .gift__tab-item.gift__tab-item--current a {
  background-image: url(../img/tab01_active.png);
}
.gift__tab-lsit .tab-item02 a {
  background-image: url(../img/tab02.png);
}
.gift__tab-lsit .tab-item02.gift__tab-item--current a {
  background-image: url(../img/tab02_active.png);
}
.gift__tab-lsit .tab-item03 a {
  background-image: url(../img/tab03.png);
}
.gift__tab-lsit .tab-item03.gift__tab-item--current a {
  background-image: url(../img/tab03_active.png);
}

@media only screen and (max-width: 767px) {
  .gift__heading {
    margin: 0 0 0 0;
    padding: calc(40 * (100vw/375)) 0 0 0;
  }
  .gift__heading .gift__title {
    font-size: calc(32 * (100vw/375));
  }
  .gift__heading .gift__sub-title {
    margin: calc(32 * (100vw/375)) 0 0 0;
    font-size: calc(28 * (100vw/375));
  }

  .gift__tab-lsit {
    grid-template-columns: repeat(3, calc(112 * (100vw / 375)));
    grid-template-rows: calc(65 * (100vw / 375));
    grid-gap: calc(7 * (100vw / 375));
    margin: calc(30 * (100vw / 750)) 0 0 0;
  }

}