/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
  line-height: 1;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: 14px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #231815;
}

a {
  transition: all 0.5s;
  color: #000;
  display: block;
}
a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
}

/* PC */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/* SP */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.header {
  padding-top: clamp(12px, 1.67vw, 32px);
  padding-bottom: clamp(14px, 1.04vw, 20px);
  position: fixed;
  z-index: 1000;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: clamp(6px, 2.09vw, 12px);
    padding-bottom: clamp(8px, 2.79vw, 16px);
  }
}
.header.active {
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.6s;
}
.header__wrap {
  display: flex;
  justify-content: center;
  gap: 0 16px;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    gap: 0 10px;
  }
}
.header__wrap a {
  max-width: clamp(120px, 18.23vw, 350px);
}
@media screen and (max-width: 767px) {
  .header__wrap a {
    max-width: clamp(60px, 20.91vw, 120px);
  }
}

.main-contents {
  position: relative;
  overflow: hidden;
  padding-bottom: 700px;
}
@media screen and (max-width: 1000px) {
  .main-contents {
    padding-bottom: 400px;
  }
}
@media screen and (max-width: 767px) {
  .main-contents {
    padding-bottom: 220px;
  }
}
.main-contents:after {
  content: "";
  position: absolute;
  background-image: url(../img/bg/bg-gold.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 1920px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1921px) {
  .main-contents:after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .main-contents:after {
    background-image: url(../img/bg/bg-gold-sp.png);
    width: 100%;
  }
}
.main .gift {
  position: relative;
  z-index: 2;
}
.main .gift:after {
  content: "";
  position: absolute;
  background: url(../img/gift/gift-deco-001.png) no-repeat center center/contain;
  width: clamp(217px, 22.6vw, 434px);
  height: clamp(398px, 41.46vw, 796px);
  top: 85px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main .gift:after {
    background: url(../img/gift/gift-deco-sp-001.png) no-repeat center center/contain;
    width: clamp(40px, 13.94vw, 80px);
    height: clamp(125.5px, 43.73vw, 251px);
    top: 40px;
  }
}
.main .gift__wrap {
  padding: 100px 20px 0;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .gift__wrap {
    padding: 42px 20px 0;
  }
}
.main .gift h2 {
  margin-bottom: 66px;
}
@media screen and (max-width: 1000px) {
  .main .gift h2 {
    margin-bottom: 33px;
  }
}
.main .gift h2 img {
  max-width: clamp(200px, 18.23vw, 350px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .gift h2 img {
    max-width: 200px;
  }
}
.main .gift__lead p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 32px 0 64px;
}
@media screen and (max-width: 767px) {
  .main .gift__lead p {
    font-size: 10px;
    margin: 10px 0 24px;
  }
}
.main .gift__description {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .gift__description {
    max-width: 420px;
  }
}
.main .gift__detail {
  margin-top: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main .gift__detail {
    margin-top: 40px;
    max-width: 100%;
  }
}
.main .gift__detail:after {
  content: "";
  position: absolute;
  background: url(../img/gift/gift-deco-002.png) no-repeat center center/contain;
  width: clamp(83.5px, 8.7vw, 167px);
  height: clamp(115px, 11.98vw, 230px);
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main .gift__detail:after {
    background: url(../img/gift/gift-deco-sp-002.png) no-repeat center center/contain;
    width: clamp(43.5px, 15.16vw, 87px);
    height: clamp(73px, 25.44vw, 146px);
    top: -60px;
  }
}
.main .gift__detail:before {
  content: "";
  position: absolute;
  background: url(../img/gift/gift-deco-003.png) no-repeat center left/contain;
  width: clamp(230px, 23.7vw, 456px);
  height: clamp(230px, 23.7vw, 455px);
  top: 300px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main .gift__detail:before {
    content: none;
  }
}
.main .gift__detail img {
  max-width: 1200px;
  margin: 0 auto;
}
.main .gift__detail img.pc {
  display: block;
}
@media screen and (max-width: 900px) {
  .main .gift__detail img.pc {
    display: none;
  }
}
.main .gift__detail img.sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .main .gift__detail img.sp {
    display: block;
  }
}
.main .cta-btn {
  padding-right: 20px;
  padding-left: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main .cta-btn {
    padding-left: 70px;
    padding-right: 70px;
  }
}
.main .cta-btn--top {
  padding-top: 50px;
  padding-bottom: 200px;
}
@media screen and (max-width: 1000px) {
  .main .cta-btn--top {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .main .cta-btn--top {
    padding-bottom: 70px;
  }
}
.main .cta-btn--top a {
  position: relative;
  display: inline-block;
}
.main .cta-btn--top a:before {
  content: "";
  position: absolute;
  background: url(../img/cta/cta-img-001.png) no-repeat center right/cover;
  width: 116.5px;
  height: 105px;
  top: -40px;
  right: -30px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main .cta-btn--top a:before {
    width: clamp(55px, 19.16vw, 110px);
    height: clamp(50px, 17.42vw, 100px);
    right: -30px;
    top: -30px;
  }
}
.main .cta-btn--top a:after {
  content: "";
  position: absolute;
  background: url(../img/cta/cta-img-002.png) no-repeat center left/contain;
  width: 113px;
  height: 95px;
  bottom: -30px;
  left: -60px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main .cta-btn--top a:after {
    width: clamp(54px, 18.82vw, 108px);
    height: clamp(50px, 17.42vw, 100px);
    left: -50px;
    bottom: -50px;
  }
}
@media screen and (max-width: 500px) {
  .main .cta-btn--top a:after {
    bottom: -40px;
  }
}
@media screen and (max-width: 350px) {
  .main .cta-btn--top a:after {
    left: -40px;
  }
}
.main .cta-btn--bottom a {
  position: relative;
  display: inline-block;
}
.main .cta-btn--bottom a:before {
  content: "";
  position: absolute;
  background: url(../img/cta/cta-img-003.png) no-repeat center left/contain;
  width: 115px;
  height: 120px;
  top: -70px;
  left: -60px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main .cta-btn--bottom a:before {
    width: clamp(53.5px, 18.64vw, 107px);
    height: clamp(59px, 20.56vw, 118px);
    left: -60px;
    top: -80px;
  }
}
@media screen and (max-width: 500px) {
  .main .cta-btn--bottom a:before {
    top: -60px;
  }
}
@media screen and (max-width: 450px) {
  .main .cta-btn--bottom a:before {
    left: -40px;
  }
}
@media screen and (max-width: 350px) {
  .main .cta-btn--bottom a:before {
    left: -30px;
    top: -50px;
  }
}
.main .cta-btn--bottom a:after {
  content: "";
  position: absolute;
  background: url(../img/cta/cta-img-004.png) no-repeat center right/contain;
  width: 113px;
  height: 116.5px;
  bottom: -10px;
  right: -60px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main .cta-btn--bottom a:after {
    width: clamp(54.5px, 18.99vw, 109px);
    height: clamp(59.5px, 19.69vw, 119px);
    right: -60px;
  }
}
@media screen and (max-width: 350px) {
  .main .cta-btn--bottom a:after {
    right: -30px;
  }
}
.main .cta-btn img {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.main .products {
  position: relative;
  z-index: 2;
}
.main .products:before {
  content: "";
  position: absolute;
  background: url(../img/products/products-deco-001.png) no-repeat center center/contain;
  width: clamp(192.5px, 20.05vw, 385px);
  height: clamp(309.5px, 32.24vw, 619px);
  top: -110px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main .products:before {
    background: url(../img/products/products-deco-sp-001.png) no-repeat center center/contain;
    width: clamp(37.5px, 13.07vw, 75px);
    height: clamp(126.5px, 44.08vw, 253px);
    top: 200px;
  }
}
.main .products:after {
  content: "";
  position: absolute;
  background: url(../img/products/products-deco-002.png) no-repeat center center/contain;
  width: clamp(135.5px, 14.11vw, 271px);
  height: clamp(495px, 51.56vw, 990px);
  top: -120px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main .products:after {
    background: url(../img/products/products-deco-sp-002.png) no-repeat center center/contain;
    width: clamp(42px, 14.63vw, 84px);
    height: clamp(126.5px, 44.08vw, 253px);
    bottom: 300px;
    top: auto;
  }
}
.main .products__inner {
  max-width: 1530px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .products__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 400px) {
  .main .products__inner {
    padding: 0 20px;
  }
}
.main .products h2 {
  margin-bottom: 45px;
}
@media screen and (max-width: 1000px) {
  .main .products h2 {
    margin-bottom: 30px;
  }
}
.main .products h2 img {
  max-width: clamp(200px, 18.23vw, 350px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .products h2 img {
    max-width: 200px;
  }
}
.main .products h3 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .main .products h3 {
    margin-bottom: 30px;
  }
}
.main .products h3 img {
  max-width: 535px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .products h3 img {
    max-width: 370px;
  }
}
.main .products h4 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .main .products h4 {
    margin-bottom: 30px;
  }
}
.main .products h4 img {
  max-width: 310px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .products h4 img {
    max-width: 305px;
  }
}
.main .products h4 span {
  font-weight: 700;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .main .products h4 span {
    font-size: 10px;
    margin-top: 16px;
  }
}
.main .products__wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.main .products__wrap img.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .main .products__wrap img.pc {
    display: none;
  }
}
.main .products__wrap img.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .main .products__wrap img.sp {
    display: block;
  }
}
.main .products__notice {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main .products__notice {
    margin-top: 10px;
    font-size: 10px;
    text-align: left;
  }
}
.main .entry {
  position: relative;
  z-index: 1;
}
.main .entry:before {
  content: "";
  position: absolute;
  background: url(../img/entry/entry-deco-001.png) no-repeat center center/contain;
  width: clamp(182px, 18.96vw, 364px);
  height: clamp(150px, 15.63vw, 300px);
  top: 400px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main .entry:before {
    background: url(../img/entry/entry-deco-sp-001.png) no-repeat center center/contain;
    width: clamp(53.5px, 18.64vw, 107px);
    height: clamp(83px, 28.92vw, 166px);
    top: 650px;
  }
}
.main .entry:after {
  content: "";
  position: absolute;
  background: url(../img/entry/entry-deco-002.png) no-repeat center center/contain;
  width: clamp(139.5px, 14.53vw, 279px);
  height: clamp(181.5px, 18.91vw, 363px);
  bottom: 270px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main .entry:after {
    background: url(../img/entry/entry-deco-sp-002.png) no-repeat center center/contain;
    width: clamp(46.5px, 16.2vw, 93px);
    height: clamp(77.5px, 27vw, 155px);
    bottom: 600px;
  }
}
.main .entry__wrap {
  padding: 140px 20px 200px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .main .entry__wrap {
    padding: 100px 20px 100px;
  }
}
@media screen and (max-width: 767px) {
  .main .entry__wrap {
    padding: 60px 10px 70px;
  }
}
.main .entry__content-pc {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .main .entry__content-pc {
    display: none;
  }
}
.main .entry__content-pc img:nth-of-type(1) {
  max-width: 1070px;
  position: relative;
  right: 10px;
}
@media screen and (max-width: 1150px) {
  .main .entry__content-pc img:nth-of-type(1) {
    right: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.main .entry__content-pc img:nth-of-type(2) {
  max-width: 1070px;
  position: relative;
  right: 10px;
}
@media screen and (max-width: 1150px) {
  .main .entry__content-pc img:nth-of-type(2) {
    right: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.main .entry__content-pc img:nth-of-type(3) {
  max-width: 1100px;
}
@media screen and (max-width: 1150px) {
  .main .entry__content-pc img:nth-of-type(3) {
    padding-left: 20px;
  }
}
.main .entry__content-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .main .entry__content-sp {
    display: flex;
    flex-direction: column;
    gap: 26px 0;
    align-items: center;
  }
}
.main .entry__content-sp img:not(:last-child) {
  padding: 0 2.93vw;
}
.main .entry h2 {
  margin-bottom: 45px;
}
@media screen and (max-width: 1000px) {
  .main .entry h2 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .main .entry h2 {
    margin-bottom: 14px;
  }
}
.main .entry h2 img {
  max-width: clamp(200px, 18.23vw, 350px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .entry h2 img {
    max-width: 200px;
  }
}
.main .contact {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: -160px;
}
@media screen and (max-width: 767px) {
  .main .contact {
    margin-top: 0;
    padding: 0 36px;
  }
}
@media screen and (max-width: 400px) {
  .main .contact {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main .contact h2 img {
  max-width: clamp(200px, 18.23vw, 350px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .contact h2 img {
    max-width: 167px;
  }
}
.main .contact__number {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .main .contact__number {
    margin-bottom: 35px;
  }
}
.main .contact__number img {
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .contact__number img {
    max-width: 316px;
  }
}
.main .contact__text-001 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 50px 0 26px;
}
@media screen and (max-width: 1000px) {
  .main .contact__text-001 {
    margin: 30px 0 26px;
  }
}
@media screen and (max-width: 767px) {
  .main .contact__text-001 {
    font-size: 16px;
    margin: 24px 0 8px;
  }
}
.main .contact__text-002 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 80px 0 20px;
}
@media screen and (max-width: 767px) {
  .main .contact__text-002 {
    font-size: 10px;
    margin: 40px 0 16px;
  }
}
.main .contact__text-003 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .main .contact__text-003 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.main .contact__flex {
  display: flex;
  align-items: flex-start;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .main .contact__flex {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.main .contact__flex p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .main .contact__flex p {
    font-size: 14px;
  }
}
.main .contact__flex p:nth-of-type(1) {
  border-left: 2.5px solid #231815;
  border-right: 2.5px solid #231815;
  margin-right: 30px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  width: 170px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .main .contact__flex p:nth-of-type(1) {
    margin-right: 15px;
    padding-left: 10px;
    padding-right: 10px;
    width: 85px;
    margin-bottom: 0.5em;
  }
}
.main .contact__customer-contact {
  max-width: 770px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .contact__customer-contact {
    max-width: 400px;
  }
}
.main .campaign-detail {
  max-width: 1490px;
  margin: 0 auto;
  padding: 140px 20px 100px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .main .campaign-detail {
    padding: 100px 20px 100px;
  }
}
@media screen and (max-width: 767px) {
  .main .campaign-detail {
    padding: 80px 20px 20px;
  }
}
@media screen and (max-width: 400px) {
  .main .campaign-detail {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main .campaign-detail__wrap {
  height: 700px;
  overflow-y: hidden;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__wrap {
    height: 500px;
  }
}
.main .campaign-detail__wrap.active {
  height: 100%;
}
.main .campaign-detail h2 {
  margin-bottom: 55px;
}
@media screen and (max-width: 1000px) {
  .main .campaign-detail h2 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .main .campaign-detail h2 {
    margin-bottom: 18px;
  }
}
.main .campaign-detail h2 img {
  max-width: clamp(200px, 18.23vw, 350px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail h2 img {
    max-width: 181px;
  }
}
.main .campaign-detail__flex {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media screen and (max-width: 1440px) {
  .main .campaign-detail__flex {
    padding-left: 0;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__flex {
    margin-bottom: 36px;
    display: block;
    padding: 0;
  }
}
.main .campaign-detail__flex > p {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__flex > p {
    font-size: 14px;
  }
}
.main .campaign-detail__flex > p:nth-of-type(1) {
  min-width: 255px;
  margin-right: 32px;
  padding: 0 16px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.245em;
  font-weight: 500;
  border-left: 2.5px solid #231815;
  border-right: 2.5px solid #231815;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__flex > p:nth-of-type(1) {
    min-width: 162px;
    padding: 0 10px;
    margin-right: 0;
    margin-bottom: 12px;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__flex > p:nth-of-type(2) {
    text-align: left;
  }
}
.main .campaign-detail__flex a {
  display: inline-block;
}
.main .campaign-detail__flex > div p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__flex > div p {
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
  }
}
.main .campaign-detail__flex > div li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__flex > div li {
    font-size: 14px;
    text-align: left;
  }
}
.main .campaign-detail__notice {
  font-size: 14px;
  font-weight: 500;
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__notice {
    font-size: 10px;
    margin-top: 20px;
    padding: 0;
  }
}
.main .campaign-detail__toggle {
  width: 100%;
  padding: 80px 0;
  background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(255, 255, 255, 0.5), white) repeat scroll 0 0;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__toggle {
    padding: 40px 0;
  }
}
.main .campaign-detail__toggle.active {
  position: relative;
  left: auto;
  bottom: auto;
}
.main .campaign-detail__toggle-btn {
  max-width: 150px;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .main .campaign-detail__toggle-btn {
    max-width: 117px;
  }
}
.main .campaign-detail__toggle-btn img:nth-of-type(2) {
  display: none;
}
.main .campaign-detail__toggle-btn.active {
  position: relative;
  left: auto;
  bottom: auto;
}
.main .campaign-detail__toggle-btn.active img:nth-of-type(1) {
  display: none;
}
.main .campaign-detail__toggle-btn.active img:nth-of-type(2) {
  display: block;
}

.footer {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
  padding-bottom: 10px;
  border-top: 1px solid #e3e6ef;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0;
    border-top: none;
  }
}
.footer__sp-logo a {
  max-width: 172px;
  margin: 0 auto;
}
.footer__pruduct {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0 10px;
  margin: 76px 0 60px;
}
@media screen and (max-width: 767px) {
  .footer__pruduct {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 40px 0;
  }
}
.footer__pruduct img {
  border: 1px solid #e7e7e7;
}
@media screen and (max-width: 767px) {
  .footer__pruduct img {
    border: none;
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
  }
}
.footer__pruduct p {
  margin-top: 5px;
  font-size: 14px;
  color: #ff0000;
}
@media screen and (max-width: 1000px) {
  .footer__pruduct p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .footer__pruduct p {
    display: none;
  }
}
.footer__link {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__link {
    display: block;
  }
}
.footer__link-logo {
  padding-top: 10px;
  padding-right: 30px;
}
.footer__link-logo img {
  max-width: 120px;
}
.footer__link-contents__col3-images {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__link-contents__col3-images {
    display: block;
  }
}
.footer__link-contents__col3-images img {
  max-width: 200px;
}
@media screen and (max-width: 1000px) {
  .footer__link-contents__col3-images img {
    max-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer__link-contents__col3-images img {
    max-width: 200px;
  }
}
.footer__link-contents__col3-images a:nth-of-type(2) {
  padding-right: 30px;
  padding-left: 30px;
  margin-right: 30px;
  margin-left: 30px;
  border-right: 1px solid #7d7d7d;
  border-left: 1px solid #7d7d7d;
}
@media screen and (max-width: 767px) {
  .footer__link-contents__col3-images a:nth-of-type(2) {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    border-right: none;
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__link-contents__col3-images a {
    border-top: 1px solid #E0E0E0;
    padding: 20px !important;
  }
}
.footer__link-contents__col3-texts {
  display: flex;
  margin: 25px 0 20px;
}
@media screen and (max-width: 767px) {
  .footer__link-contents__col3-texts {
    display: block;
    margin: 0;
  }
}
.footer__link-contents__col3-texts a {
  font-size: 12px;
  color: #ff0000;
}
.footer__link-contents__col3-texts a:nth-of-type(2) {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 12px;
  margin-left: 12px;
  border-right: 1px solid #ff0000;
  border-left: 1px solid #ff0000;
}
@media screen and (max-width: 767px) {
  .footer__link-contents__col3-texts a:nth-of-type(2) {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    border-right: none;
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__link-contents__col3-texts a {
    border-top: 1px solid #E0E0E0;
    padding: 20px !important;
    font-size: 16px;
    color: #000000;
  }
  .footer__link-contents__col3-texts a:last-child {
    border-bottom: 1px solid #E0E0E0;
  }
}
.footer__link-contents p {
  font-size: 12px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .footer__link-contents p {
    text-align: center;
    font-size: 18px;
    color: #000;
  }
}
@media screen and (max-width: 450px) {
  .footer__link-contents p {
    font-size: 14px;
  }
}
.footer__copyright {
  color: #909090 !important;
  padding: 5px 0 10px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding: 20px 20px 10px;
  }
}
.footer__sp-contact {
  padding: 0 20px;
  margin: 18px 0;
}
.footer__sp-contact p {
  background-color: #f2f2f2;
  text-align: center;
  font-size: 18px;
  padding: 14px 0;
}
@media screen and (max-width: 450px) {
  .footer__sp-contact p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */