@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

html {
  font-size: clamp(12px, 1.1111111111vw, 28px);
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(4.1025641026vw, 17.5px);
  }
}

body {
  background: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.8125rem;
  }
}
body.no-scroll {
  overflow: hidden;
}

a {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

p,
span {
  font-weight: 500;
}

span {
  display: inline-block;
  font-weight: inherit;
}

input[type=button],
input[type=submit],
select,
button[type=button] {
  appearance: none;
  -webkit-appearance: none;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 62.5rem #f5f5f5 inset;
}

button {
  cursor: pointer;
  color: inherit;
  background: transparent;
  font-family: "Shippori Mincho B1", serif;
  padding: 0;
  border: none;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.inner {
  width: 74.375rem;
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 38.5rem;
    padding-inline: 2.0625rem;
  }
}
.inner.--narrow {
  width: 55.625rem;
}
@media screen and (max-width: 767px) {
  .inner.--narrow {
    width: 38.5rem;
    padding-inline: 2.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .none-sp {
    display: none;
  }
}

.cta {
  background: rgba(0, 0, 0, 0.5);
  padding-block: 0.875rem;
  padding-left: 4.75rem;
  padding-right: 6.1875rem;
  border: 0.0625rem solid #fff;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-block: 0.9375rem;
    padding-left: 4.3125rem;
    padding-right: 5.5625rem;
  }
}
.cta.--black {
  background: #000;
  padding-left: 3.5rem;
  padding-right: 4.875rem;
  border-color: #000;
}
@media screen and (max-width: 767px) {
  .cta.--black {
    padding-block: 0.875rem;
    padding-left: 3.625rem;
  }
}
.cta.--orange {
  color: #fff;
  background: #DD5835;
  border-color: #DD5835;
  padding-left: 2.9375rem;
  padding-right: 4.375rem;
}
@media screen and (max-width: 767px) {
  .cta.--orange {
    padding-left: 2.6875rem;
    padding-right: 3.9375rem;
  }
}
@media screen and (min-width: 650px) and (max-width: 767px) {
  .cta.--orange {
    padding-left: 4.6153846154vw;
    padding-right: 7.6923076923vw;
    padding-block: 1.5384615385vw;
  }
}

.cta__txt {
  color: #fff;
  font-size: 1.125rem;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__txt {
    font-size: 1rem;
  }
}
.cta__txt::before {
  content: "";
  width: 0.5rem;
  height: auto;
  aspect-ratio: 1;
  border-right: 0.0625rem solid #fff;
  border-bottom: 0.0625rem solid #fff;
  rotate: 45deg;
  position: absolute;
  left: calc(100% + 0.8125rem);
  top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .cta__txt::before {
    top: 0.5rem;
  }
}

.--black .cta__txt {
  font-size: 1rem;
}
.--black .cta__txt::before {
  rotate: -45deg;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .--black .cta__txt::before {
    left: calc(100% + 0.625rem);
  }
}

.--orange .cta__txt::before {
  rotate: -45deg;
  left: calc(100% + 0.8125rem);
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .--orange .cta__txt::before {
    left: calc(100% + 0.625rem);
  }
}

.cta {
  transition: background 0.3s ease, border-color 0.3s ease;
}
.cta .cta__txt {
  transition: color 0.3s ease;
}
.cta .cta__txt::before {
  transition: border-color 0.3s ease;
}
@media (any-hover: hover) {
  .cta:hover {
    background: #fff;
  }
  .cta:hover .cta__txt {
    color: #000;
  }
  .cta:hover .cta__txt::before {
    border-color: #000;
  }
}

@media (any-hover: hover) {
  .cta.--black:hover {
    border-color: #000;
  }
}

@media (any-hover: hover) {
  .cta.--orange:hover {
    border-color: #fff;
  }
  .cta.--orange:hover .cta__txt {
    color: #DD5835;
  }
  .cta.--orange:hover .cta__txt::before {
    border-color: #DD5835;
  }
}

.header {
  background: #DD5835;
  width: 11.6875rem;
  height: auto;
  aspect-ratio: 1.1333333333;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  padding-top: 1.125rem;
  padding-left: 0.8125rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    width: 7rem;
    aspect-ratio: 1.1313131313;
    padding-top: 0.6875rem;
    padding-left: 0.5rem;
  }
}

.header__logo {
  width: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 3.5rem;
  }
}

.fv {
  color: #fff;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fv__img {
    width: 153.3333333333vw;
    height: auto;
    margin-top: -0.4375rem;
    margin-left: -6.5rem;
  }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
  .fv__img {
    width: 100%;
    margin-left: 0;
    margin-top: -6.518904824vw;
  }
}
@media screen and (min-width: 451px) and (max-width: 600px) {
  .fv__img {
    margin-top: -20vw;
  }
}
.fv__img img {
  display: block;
}

.fv__txt {
  width: 36.5625rem;
  text-align: center;
  position: absolute;
  top: 12.8125rem;
  left: 5.875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__txt {
    width: fit-content;
    top: 10.4166666667vw;
    left: 3.90625vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__txt {
    width: 21.9375rem;
    top: 2.9375rem;
    left: 50%;
    translate: -50%;
  }
}

.fv__txt-deco {
  width: 6.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .fv__txt-deco {
    width: 4.125rem;
  }
}

.fv__title {
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding-left: 1.4375rem;
  margin-top: 0.75rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__title {
    font-size: 3.125vw;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 1.5625rem;
    padding-left: 0.5625rem;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 451px) and (max-width: 767px) {
  .fv__title {
    font-size: max(20px, 3.6505867014vw);
  }
}

.fv__desc {
  font-size: 1.125rem;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__desc {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__desc {
    font-size: max(11px, 0.8125rem);
    margin-top: 1.1875rem;
  }
}
@media screen and (min-width: 451px) and (max-width: 767px) {
  .fv__desc {
    font-size: max(12px, 1.8252933507vw);
  }
}

.fv__cta {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .fv__cta {
    margin-top: 21.9375rem;
  }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
  .fv__cta {
    margin-top: 53.4550195567vw;
  }
}
@media screen and (min-width: 451px) and (max-width: 600px) {
  .fv__cta {
    margin-top: 83.3333333333vw;
  }
}

.elegance {
  background: #FCF4E4;
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .elegance {
    margin-top: -10.625rem;
  }
}

.elegance__triangle {
  background: #FCF4E4;
  width: 100%;
  height: auto;
  aspect-ratio: 10.6666666667;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .elegance__triangle {
    aspect-ratio: 6.724137931;
  }
}

.elegance__triangle-deco {
  background: #DD5835;
  width: 42.5rem;
  height: auto;
  aspect-ratio: 6.4150943396;
  position: absolute;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .elegance__triangle-deco {
    width: 39.0625vw;
  }
}
@media screen and (max-width: 767px) {
  .elegance__triangle-deco {
    width: 16.875rem;
    aspect-ratio: 5.2941176471;
  }
}

.elegance__triangle-upper {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  left: 0;
  bottom: calc(100% - 1px);
}

.elegance__triangle-lower {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  left: 0;
  top: calc(100% - 1px);
}

.elegance__triangle-upper-deco {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  top: 0;
  right: 0;
}

.elegance__triangle-lower-deco {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  bottom: 0;
  left: 0;
}

.elegance__inner {
  padding-top: 1.375rem;
  padding-bottom: 3.875rem;
}
@media screen and (max-width: 767px) {
  .elegance__inner {
    padding-top: 1.5625rem;
    padding-bottom: 2.875rem;
  }
}

.elegance__heading {
  text-align: center;
}

.elegance__heading-deco {
  width: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .elegance__heading-deco {
    width: 4.5rem;
  }
}

.elegance__heading-title {
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .elegance__heading-title {
    font-size: 1.1875rem;
    margin-top: 0.5625rem;
  }
}
.elegance__heading-title .--large {
  display: block;
  font-size: 2.375rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .elegance__heading-title .--large {
    font-size: 1.5625rem;
    margin-top: -0.3125rem;
  }
}

.elegance-container {
  margin-top: 2.5rem;
  display: flex;
  gap: 3.1875rem;
}
@media screen and (max-width: 1024px) {
  .elegance-container {
    margin-top: 1.9375rem;
    flex-direction: column;
    gap: 1.1875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .elegance-container {
    width: 72.9166666667vw;
    margin-inline: auto;
  }
}

.elegance-container__img-wrap {
  width: 31.75rem;
  height: auto;
  aspect-ratio: 1.5301204819;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .elegance-container__img-wrap {
    width: 100%;
    aspect-ratio: 1.7704918033;
  }
}

.elegance-container__img-wine {
  width: 5.168125rem;
  height: auto;
  aspect-ratio: 0.2385884933;
  position: absolute;
  bottom: -5.625rem;
  right: -0.6875rem;
}
@media screen and (max-width: 1024px) {
  .elegance-container__img-wine {
    width: 2.9375rem;
    bottom: -3rem;
    right: -0.5rem;
  }
}

.elegance-container__img-txt {
  fill: #6695e0;
  width: 15.25rem;
  rotate: -10.16deg;
  position: absolute;
  top: -1.25rem;
  left: -2.625rem;
}
@media screen and (max-width: 1024px) {
  .elegance-container__img-txt {
    width: 12.625rem;
    top: -1.125rem;
    left: -1.9375rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .elegance-container__img-txt {
    width: 23.4375vw;
    top: -3.90625vw;
    left: -5.2083333333vw;
  }
}

.elegance-container__txt {
  padding-top: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .elegance-container__txt {
    padding-top: 0;
  }
}

.elegance-container__desc {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .elegance-container__desc {
    text-align: center;
    align-items: center;
  }
}
.elegance-container__desc span {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .elegance-container__desc span {
    font-size: 1.8229166667vw;
  }
}
.elegance-container__desc span + span {
  margin-top: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .elegance-container__desc span + span {
    margin-top: 0.8125rem;
  }
}

.elegance-container__list {
  margin-top: 1.5625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6875rem;
}
@media screen and (max-width: 1024px) {
  .elegance-container__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.elegance-container__item {
  width: 10.8125rem;
  height: 5.375rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .elegance-container__item {
    width: 100%;
    height: 4.25rem;
    flex-direction: row;
  }
  .elegance-container__item:nth-of-type(n + 2) {
    margin-top: -0.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .elegance-container__item {
    width: 57.2916666667vw;
    height: 8.4635416667vw;
    margin-inline: auto;
  }
}
.elegance-container__item::before, .elegance-container__item::after {
  content: "";
  background: url("../img/deco_elegance-bar.webp") no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 15.7272727273;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .elegance-container__item::before, .elegance-container__item::after {
    background: url("../img/deco_elegance-bar-sp.webp") no-repeat center center/cover;
    aspect-ratio: 26.6009852217;
  }
}
.elegance-container__item::before {
  top: 0;
}
.elegance-container__item::after {
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .elegance-container__item.--item2::before, .elegance-container__item.--item3::before {
    display: none;
  }
}
.elegance-container__item span {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.7;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .elegance-container__item span {
    font-size: 1.8229166667vw;
  }
}

.glad {
  margin-top: -0.6875rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 421px) and (max-width: 767px) {
  .glad {
    margin-top: -2.6075619296vw;
  }
}

@media screen and (max-width: 767px) {
  .glad__bg {
    width: 107.9487179487vw;
    margin-left: -4.1025641026vw;
  }
}
@media screen and (min-width: 421px) and (max-width: 767px) {
  .glad__bg {
    height: 106.9100391134vw;
  }
}
.glad__bg img {
  display: block;
}

.glad__container {
  width: 100%;
  height: 100%;
  padding-top: 15.875rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .glad__container {
    padding-top: 18.8802083333vw;
  }
}
@media screen and (max-width: 767px) {
  .glad__container {
    padding-top: 8rem;
  }
}
@media screen and (min-width: 421px) and (max-width: 767px) {
  .glad__container {
    padding-top: 24.7718383312vw;
  }
}

.glad__inner {
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .glad__inner {
    width: 84.6354166667vw;
  }
}

.glad__deco {
  width: 20rem;
  height: auto;
  rotate: -6.48deg;
  position: absolute;
  top: -3.875rem;
  left: -2.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .glad__deco {
    width: 20.8333333333vw;
    top: -4.5572916667vw;
    left: -2.8645833333vw;
  }
}
@media screen and (max-width: 767px) {
  .glad__deco {
    width: 12.625rem;
    rotate: -10.16deg;
    top: -3.25rem;
    left: -0.375rem;
  }
}

.glad__heading {
  color: #fff;
  font-size: 2.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .glad__heading {
    font-size: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .glad__heading {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 421px) and (max-width: 767px) {
  .glad__heading {
    font-size: 3.8004750594vw;
  }
}

.glad__desc {
  width: 33.625rem;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .glad__desc {
    width: 100%;
    margin-top: 1.9375rem;
  }
}
.glad__desc p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .glad__desc p {
    font-size: 1.5625vw;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .glad__desc p {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 421px) and (max-width: 767px) {
  .glad__desc p {
    font-size: 2.8503562945vw;
    line-height: 1.4;
  }
}
.glad__desc p + p {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 421px) and (max-width: 767px) {
  .glad__desc p + p {
    margin-top: 2.3752969121vw;
  }
}
@media screen and (min-width: 768px) {
  .glad__desc .br1 {
    display: none;
  }
}

.gift {
  background: #FCF4E4;
  padding-top: 6.75rem;
}
@media screen and (max-width: 767px) {
  .gift {
    padding-top: 3.0625rem;
  }
}

.gift__inner {
  width: calc(64.375rem + 2.5rem * 2);
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .gift__inner {
    width: 38.5rem;
    padding-inline: 1.0625rem;
  }
}

.gift__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4.6875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gift__cards {
    column-gap: 3.90625vw;
    row-gap: 3.90625vw;
  }
}
@media screen and (max-width: 767px) {
  .gift__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gift__heading {
  margin-top: 10.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gift__heading {
    margin-top: 5.25rem;
  }
}

.gift__heading-deco {
  width: 6.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .gift__heading-deco {
    width: 4.125rem;
  }
}

.gift__heading-txt {
  font-size: 2.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .gift__heading-txt {
    font-size: 1.5625rem;
    line-height: 1.5;
    margin-top: 0.6875rem;
  }
}

.gift__scenes {
  margin-top: 2.9375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .gift__scenes {
    margin-top: 1.9375rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.11125rem;
  }
}

.gift__scene {
  position: relative;
}
.gift__scene::before {
  content: "";
  opacity: 0.25;
  background: linear-gradient(90deg, #000 0%, #000 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.gift__scene img {
  display: block;
}

.gift__scene-txt {
  color: #fff;
  text-shadow: 0 0 0.75rem rgb(0, 0, 0);
  font-size: 1.75rem;
  font-weight: 600;
  position: absolute;
  left: 2.1875rem;
  bottom: 1.5625rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gift__scene-txt {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .gift__scene-txt {
    font-size: 1.375rem;
    left: 1.375rem;
    bottom: 1rem;
  }
  .--scene2 .gift__scene-txt {
    left: unset;
    right: 1.125rem;
  }
}

.gift-card {
  background: #fff;
  padding-top: 6.125rem;
  padding-inline: 2.125rem;
  padding-bottom: 2.5rem;
  margin-bottom: 3.75rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  position: relative;
}
.gift-card:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .gift-card:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .gift-card {
    display: block;
    width: 100%;
    padding-top: 5.5rem;
    padding-bottom: 1.875rem;
    padding-inline: 1.5625rem;
    margin-bottom: 1.875rem;
  }
  .gift-card.--card2 {
    padding-top: 4.375rem;
  }
  .gift-card.--card4 {
    padding-top: 4rem;
  }
}

.gift-card__deco {
  width: 5rem;
  height: auto;
  aspect-ratio: 0.7191011236;
  position: absolute;
  top: -0.375rem;
  left: 0.875rem;
}
@media screen and (max-width: 767px) {
  .gift-card__deco {
    width: 3.75rem;
    top: -0.3125rem;
    left: 0.5625rem;
  }
}
.gift-card__deco img {
  display: block;
}

.gift-card__img {
  width: 4.21875rem;
  height: auto;
  aspect-ratio: 0.203957382;
  position: absolute;
  top: 1.4375rem;
  right: 4.625rem;
}
.--card4 .gift-card__img {
  width: 8.565rem;
  aspect-ratio: 0.4168136748;
  right: 2.25rem;
}
@media screen and (max-width: 767px) {
  .--card4 .gift-card__img {
    width: 6.4375rem;
    aspect-ratio: 0.408;
    right: 1.9375rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gift-card__img {
    right: 5.2083333333vw;
  }
}
@media screen and (max-width: 767px) {
  .gift-card__img {
    width: 3.15625rem;
    top: 1.0625rem;
    right: 3.625rem;
  }
}

.gift-card__title {
  letter-spacing: -0.08em;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .gift-card__title {
    row-gap: 0;
  }
}

.gift-card__title-en {
  color: #DD5835;
  font-family: "Jost", sans-serif;
  font-size: 2.125rem;
  letter-spacing: 0.00112em;
  line-height: 1.25;
}
.--card4 .gift-card__title-en {
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gift-card__title-en {
    font-size: 2.6041666667vw;
  }
}
@media screen and (max-width: 767px) {
  .gift-card__title-en {
    font-size: 1.625rem;
  }
  .--card4 .gift-card__title-en {
    letter-spacing: -0.05em;
  }
}

.gift-card__title-ja {
  width: 15.9375rem;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .gift-card__title-ja {
    font-size: max(10px, 0.75rem);
    width: 13.6875rem;
    margin-top: 0.125rem;
  }
  .--card2 .gift-card__title-ja {
    margin-top: 0.3125rem;
  }
}

.gift-card__desc {
  margin-top: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gift-card__desc {
    margin-top: 1.3020833333vw;
  }
}
@media screen and (max-width: 767px) {
  .gift-card__desc {
    font-size: max(11px, 0.8125rem);
    margin-top: 2.5rem;
  }
  .--card2 .gift-card__desc {
    margin-top: 1.375rem;
  }
  .--card4 .gift-card__desc {
    margin-top: 0.5rem;
  }
}

.gift-card__detail {
  background: #F1F1F1;
  padding-top: 1.1875rem;
  padding-bottom: 1.0625rem;
  padding-inline: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gift-card__detail {
    margin-top: 1.3020833333vw;
  }
}
@media screen and (max-width: 767px) {
  .gift-card__detail {
    padding-top: 0.75rem;
    padding-bottom: 0.8125rem;
    padding-inline: 0.9375rem;
  }
}

.gift-card__row {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  gap: 0.625rem;
}
.gift-card__row:nth-of-type(n + 2) {
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .gift-card__row:nth-of-type(n + 2) {
    margin-top: 0.5rem;
  }
}
.gift-card__row.--price, .gift-card__row.--percent {
  align-items: center;
}

.gift-card__tag {
  color: #fff;
  background: #999;
  font-size: 0.875rem;
  width: 6.875rem;
  height: 1.5625rem;
  line-height: 1.5625rem;
  text-align: center;
  border-radius: 100vmax;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 767px) {
  .gift-card__tag {
    font-size: 0.8125rem;
    width: 6.375rem;
    height: 1.375rem;
    line-height: 1.375rem;
  }
}

.gift-card__txt {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .gift-card__txt {
    font-size: 0.875rem;
  }
}
.--price .gift-card__txt {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .--price .gift-card__txt {
    font-size: 1rem;
  }
}
.--kind .gift-card__txt, .--production .gift-card__txt {
  line-height: 1.6;
}

.gift-card__cta {
  margin-top: 1.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .gift-card__cta {
    margin-top: 0.6510416667vw;
  }
}
@media screen and (max-width: 767px) {
  .gift-card__cta {
    margin-top: 1.4375rem;
  }
  .--card3 .gift-card__cta {
    margin-top: 2rem;
  }
}

.qa {
  padding-top: 6.3125rem;
  padding-bottom: 7.5625rem;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-top: 2.875rem;
    padding-bottom: 3.1875rem;
  }
}

.qa__heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .qa__heading {
    font-size: 1.5625rem;
  }
}

.qa__boxes {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .qa__boxes {
    margin-top: 1.875rem;
  }
}

.qa-box {
  border-top: 0.0625rem solid #C2C2C2;
  padding-block: 1.375rem;
}
@media screen and (max-width: 767px) {
  .qa-box {
    padding-block: 0.875rem;
  }
}
.qa-box:last-of-type {
  border-bottom: 0.0625rem solid #C2C2C2;
}

.qa-box__head {
  cursor: pointer;
  width: 100%;
}

.qa-box__head-container, .qa-box__body-container {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}

.qa-box__body-container {
  align-items: flex-start;
}

.qa-box__head-icon, .qa-box__body-icon {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .qa-box__head-icon, .qa-box__body-icon {
    font-size: 1.125rem;
  }
}

.qa-box__head-icon {
  color: #DD5835;
}

@media screen and (max-width: 767px) {
  .qa-box__body-icon {
    margin-top: -0.1875rem;
  }
}

.qa-box__head-txt, .qa-box__body-txt {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .qa-box__head-txt, .qa-box__body-txt {
    font-size: 0.9375rem;
  }
}

.qa-box__body {
  margin-top: -0.125rem;
}
@media screen and (max-width: 767px) {
  .qa-box__body {
    margin-top: 0.40625rem;
  }
}

.first {
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 649px) {
  .first__bg {
    width: 103.5897435897vw;
    margin-left: -1.7948717949vw;
  }
}
.first__bg img {
  display: block;
}

.first__container {
  width: 28.125rem;
  height: 25rem;
  text-align: center;
  position: absolute;
  top: 9.25rem;
  right: 17.6875rem;
}
@media screen and (min-width: 650px) and (max-width: 1024px) {
  .first__container {
    width: fit-content;
    height: fit-content;
    top: 7.8125vw;
    right: 13.0208333333vw;
  }
}
@media screen and (max-width: 649px) {
  .first__container {
    width: 18.75rem;
    height: 35rem;
    top: 1.9375rem;
    right: unset;
    left: 50%;
    translate: -50%;
  }
}
@media screen and (min-width: 550px) and (max-width: 649px) {
  .first__container {
    top: 10.7858243451vw;
  }
}
.first__logo {
  width: 15rem;
  margin-inline: auto;
}
@media screen and (min-width: 650px) and (max-width: 1024px) {
  .first__logo {
    width: 15.625vw;
  }
}
@media screen and (max-width: 649px) {
  .first__logo {
    width: 8.375rem;
  }
}

.first__title {
  color: #fff;
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 1.375rem;
  margin-top: 0.875rem;
}
@media screen and (min-width: 650px) and (max-width: 1024px) {
  .first__title {
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 649px) {
  .first__title {
    font-size: 1.625rem;
    margin-top: 0.125rem;
  }
}

.first__cta {
  margin-top: 2.5rem;
}
@media screen and (min-width: 650px) and (max-width: 1024px) {
  .first__cta {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (max-width: 649px) {
  .first__cta {
    margin-top: 20.5625rem;
  }
}
@media screen and (min-width: 440px) and (max-width: 649px) {
  .first__cta {
    margin-top: 98.6132511556vw;
  }
}
@media screen and (min-width: 440px) and (max-width: 549px) {
  .first__cta {
    margin-top: 94.7176684882vw;
  }
}

.footer {
  background: #000;
  height: 3.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
}

.footer-nav__link {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(0.625rem, 10px);
}/*# sourceMappingURL=style.css.map */