@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ============================================
	流用
============================================ */
body {
  position: relative;
  z-index: 0;
  isolation: isolate;
  background-color: #000;
  color: #fff;
}

html {
  scroll-padding-bottom: 120px;
}

.l-container {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) {
  .l-container {
    min-width: 0;
  }
}

.l-contents {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.l-contents::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-color: #000;
  background-position: center top;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .l-contents::before {
    background-image: url("/campaign/342/img/bg_sp.jpg");
    background-size: 100% auto;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents::before {
    background-image: url("/campaign/342/img/bg_pc.jpg");
    background-size: cover;
  }
}

.footer__pagetop {
  bottom: 120px;
}
.footer__pagetop.is_downMove {
  animation: campaign342DownAnime 0.5s forwards;
}
.footer__pagetop .link {
  border: 1px solid #D9281C;
  background: rgba(12, 25, 35, 0.9);
  color: #fff;
}
.footer__pagetop .link:hover {
  border-color: #D9281C;
  background: #D9281C;
  color: #fff;
  transform: translateY(-5px);
}
@keyframes campaign342DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(240px);
  }
}

.p-breadcrumb {
  margin: 0;
  background-color: #fff;
  color: #666;
}
.p-breadcrumb__link {
  color: #171c21;
}
.p-breadcrumb__link:hover {
  text-decoration: underline;
}

.share {
  width: 400px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .share {
    width: calc(100% - 40px);
  }
}
.share__wrap {
  padding: 30px 0;
  background-color: #fff;
}
.share .c-btn__share > span {
  color: #171c21;
}

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

@media only screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.c-fadein {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-fadeup {
  opacity: 0;
}
.c-fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.is-fade-ready > .is-fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--fade-delay, 0ms), transform 0.6s ease var(--fade-delay, 0ms);
}
.is-fade-ready > .is-fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .is-fade-ready > .is-fade-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media only screen and (max-width: 768px) {
  .c-inner {
    padding: 50px 10px 70px;
  }
}
@media only screen and (min-width: 768px) {
  .c-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0 70px;
  }
}

.p-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}
.p-title::before, .p-title::after {
  width: 100%;
  max-width: 516px;
  height: 7px;
  flex-shrink: 0;
  background: url("/campaign/342/img/line.svg") no-repeat center/contain;
  content: "";
}
@media only screen and (max-width: 768px) {
  .p-title {
    gap: 10px;
    margin: 0 auto 40px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-title {
    gap: 12px;
    margin: 0 auto 80px;
    font-size: 40px;
    font-size: 4rem;
  }
}

.p-btn {
  position: relative;
  display: flex;
  padding: 20px 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #D9281C 0%, #831616 100%);
  color: #fff;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .p-btn {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-btn {
    font-size: 1.6rem;
  }
}
.p-btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 19px;
  background: url("/campaign/342/img/icon-arrow-right.svg") no-repeat center/contain;
  content: "";
  transform: translateY(-50%);
}
.p-btn:hover {
  opacity: 0.7;
}

.c-movie {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-movie iframe {
  width: 100%;
  height: 100%;
}

.l-contents .p-kv {
  position: relative;
  z-index: 1;
}
.l-contents .p-kv img {
  width: 100%;
  height: auto;
}
.l-contents .p-header {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-header {
    padding: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-header {
    padding: 20px;
  }
}
.l-contents .p-header__logo {
  display: block;
}
.l-contents .p-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-header__logo--dunlop {
    width: 120px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-header__logo--dunlop {
    width: 210px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-header__logo--mycaddie {
    width: 70px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-header__logo--mycaddie {
    width: 120px;
  }
}
.l-contents .p-read {
  position: relative;
  z-index: 2;
}
.l-contents .p-read__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__inner {
    padding: 60px 20px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__inner {
    padding: 80px 0;
    width: 1145px;
  }
}
.l-contents .p-read__list {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__list {
    margin: 0 0 40px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__list {
    margin: 0 0 80px;
  }
}
.l-contents .p-read__item {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__item {
    gap: 20px;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__item {
    gap: 40px;
    align-items: center;
  }
}
.l-contents .p-read__title {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-read__title {
    width: 100%;
    height: 52px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-read__title {
    width: 420px;
    height: 52px;
    font-size: 2.4rem;
  }
}
.l-contents .p-read__title::before {
  position: absolute;
  z-index: -1;
  inset: 0 11px;
  border: 1px solid #fff;
  background-color: rgba(12, 25, 35, 0.2);
  content: "";
  transform: skewX(-23deg);
}
.l-contents .p-read__text {
  color: #fff;
  text-align: center;
  line-height: 175%;
  font-weight: 500;
  font-size: 1.6rem;
}
.l-contents .p-read__button {
  margin: 0 auto;
  max-width: 340px;
}
.l-contents .p-experience__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-experience__inner {
    padding: 60px 10px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-experience__inner {
    padding: 100px 0;
    width: 1200px;
  }
}
.l-contents .p-experience__text {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-experience__text {
    margin: 0 0 40px;
    line-height: 150%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-experience__text {
    line-height: 200%;
    margin: 0 0 80px;
  }
}
.l-contents .p-experience__list {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-experience__list {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-experience__item {
    width: 580px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-experience__item {
    width: 100%;
  }
}
.l-contents .p-experience__link {
  position: relative;
  display: block;
}
.l-contents .p-experience__link::before {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: 19px;
  height: 20px;
  background-color: #fff;
  -webkit-mask: url("/campaign/342/img/icon-arrow-down.svg") no-repeat center/contain;
  mask: url("/campaign/342/img/icon-arrow-down.svg") no-repeat center/contain;
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-experience__link::before {
    bottom: 110px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-experience__link::before {
    bottom: 30px;
  }
}
.l-contents .p-experience__link:hover::before, .l-contents .p-experience__link:focus-visible::before {
  background-color: #D9281C;
}
.l-contents .p-experience__link:hover::after, .l-contents .p-experience__link:focus-visible::after {
  border-color: #D9281C;
  background-color: transparent;
}
.l-contents .p-experience__link:hover .p-experience__series::before, .l-contents .p-experience__link:focus-visible .p-experience__series::before {
  opacity: 1;
}
.l-contents .p-experience__link:hover .p-experience__logo, .l-contents .p-experience__link:focus-visible .p-experience__logo {
  opacity: 0;
}
.l-contents .p-experience__link::after {
  position: absolute;
  z-index: 2;
  left: 50%;
  display: flex;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid transparent;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .l-contents .p-experience__link::after {
    bottom: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-experience__link::after {
    bottom: 20px;
  }
}
.l-contents .p-experience__image {
  display: block;
  width: 100%;
  height: auto;
}
.l-contents .p-experience__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.l-contents .p-experience__series {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.l-contents .p-experience__series::before {
  position: absolute;
  inset: 0;
  background-color: #D9281C;
  -webkit-mask: var(--series-mask) no-repeat center/contain;
  mask: var(--series-mask) no-repeat center/contain;
  content: "";
  opacity: 0;
  pointer-events: none;
}
.l-contents .p-experience__series--rkt {
  --series-mask: url("/campaign/342/img/mark-series-zxirkt.svg");
}
.l-contents .p-experience__series--iron {
  --series-mask: url("/campaign/342/img/mark-series-zxiiron.svg");
}
.l-contents .p-experience__logo {
  height: 22px;
  width: auto;
}
.l-contents .p-experience__description {
  margin: 20px 0 0 0;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-products__category:first-of-type {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-products__category:first-of-type {
    margin-bottom: 40px;
  }
}
.l-contents .p-products__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-products__inner {
    padding: 60px 10px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-products__inner {
    padding: 100px 0;
    width: 1200px;
  }
}
.l-contents .p-products__item {
  padding: 20px 0;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #D9281C 0%, #831616 100%) 1;
  background: rgba(12, 25, 35, 0.5);
}
@media only screen and (min-width: 768px) {
  .l-contents .p-products__item {
    display: flex;
    flex-direction: column;
  }
}
.l-contents .p-products__name {
  padding: 10px;
  margin: 0 0 20px;
  text-align: center;
}
.l-contents .p-products__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
}
.l-contents .p-products__visual::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  aspect-ratio: 371/247;
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, #D9281C 0%, #831616 100%);
  content: "";
  transform: translateX(-50%);
}
.l-contents .p-products__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 60/49;
  object-position: center bottom;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
.l-contents .p-products__list {
  display: grid;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-products__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-products__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.l-contents .p-products__category-title {
  display: flex;
  width: fit-content;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(217, 40, 28, 0) 0%, #831616 50%, rgba(217, 40, 28, 0) 100%);
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-products__category-title {
    margin: 0 auto 60px;
    padding: 20px 100px;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-products__category-title {
    margin: 0 auto 40px;
    padding: 20px 60px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-products__category-logo {
    height: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-products__category-logo {
    height: 15px;
  }
}
.l-contents .p-products__catch {
  text-align: center;
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 700;
}
.l-contents .p-products__description {
  text-align: center;
  margin: 0 0 40px;
  font-size: 1.8rem;
  font-weight: 500;
}
.l-contents .p-products__button {
  padding: 10px 50px;
  margin: 0 10px;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-products__button {
    font-size: 1.6rem;
    margin-top: auto;
  }
}
.l-contents .p-benefits__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-benefits__inner {
    padding: 60px 20px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-benefits__inner {
    padding: 100px 0;
    width: 878px;
  }
}
.l-contents .p-benefits__list {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-benefits__list {
    gap: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-benefits__list {
    gap: 40px;
  }
}
.l-contents .p-benefits__item {
  margin: 0;
}
.l-contents .p-benefits__header {
  display: flex;
  max-width: 100%;
  margin: 0 0 20px;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background: linear-gradient(90deg, #831616 50%, rgba(217, 40, 28, 0) 100%);
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-benefits__header {
    width: 507px;
    padding: 20px 40px 20px 20px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-benefits__header {
    width: 100%;
    padding: 10px 20px 10px 10px;
    font-size: 1.6rem;
  }
}
.l-contents .p-benefits__number {
  font-family: "Roboto", sans-serif;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-benefits__number {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-benefits__number {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-benefits__heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-benefits__heading {
    font-size: 1.6rem;
  }
}
.l-contents .p-benefits__text {
  font-weight: 500;
}
.l-contents .p-benefits__text a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-benefits__text {
    line-height: 1.75;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-benefits__text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.l-contents .p-benefits__note {
  margin: 20px 0 0 0;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-benefits__note {
    line-height: 175%;
  }
}
.l-contents .p-steps__text a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.l-contents .p-steps__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-steps__inner {
    padding: 60px 20px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-steps__inner {
    padding: 80px 0;
    width: 500px;
  }
}
.l-contents .p-steps__item:not(:last-child)::after {
  display: block;
  width: 27px;
  height: 30px;
  background: url("/campaign/342/img/icon-arrow-down-red.svg") no-repeat center/contain;
  content: "";
}
@media only screen and (min-width: 768px) {
  .l-contents .p-steps__item:not(:last-child)::after {
    margin: 40px auto;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-steps__item:not(:last-child)::after {
    margin: 20px auto;
  }
}
.l-contents .p-steps__header {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-steps__header {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-steps__header {
    gap: 10px;
  }
}
.l-contents .p-steps__number {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-steps__number {
    width: 140px;
    height: 52px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-steps__number {
    width: 87px;
    height: 35px;
    font-size: 1.6rem;
  }
}
.l-contents .p-steps__number::before {
  position: absolute;
  z-index: -1;
  inset: 0 11px;
  border: 1px solid #fff;
  background-color: rgba(12, 25, 35, 0.2);
  content: "";
  transform: skewX(-23deg);
}
.l-contents .p-steps__heading {
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-steps__heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-steps__heading {
    font-size: 1.6rem;
  }
}
.l-contents .p-steps__note {
  display: block;
  margin: 10px 0 0 0;
  font-size: 1.4rem;
}
.l-contents .p-prizes__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__inner {
    padding: 60px 10px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__inner {
    padding: 100px 0;
    width: 1200px;
  }
}
.l-contents .p-prizes__list {
  display: grid;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px 40px;
    margin: 0 0 80px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0 0 40px;
  }
}
.l-contents .p-prizes__item {
  border: 1px solid #D9281C;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__item {
    display: flex;
    flex-direction: column;
  }
}
.l-contents .p-prizes__visual {
  position: relative;
}
.l-contents .p-prizes__link {
  display: block;
  transition: opacity 0.3s ease;
}
.l-contents .p-prizes__link:hover {
  opacity: 0.8;
}
.l-contents .p-prizes__image {
  display: block;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: #fff;
}
.l-contents .p-prizes__quantity {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #D9281C 0%, #831616 100%);
  color: #fff;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__quantity {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__quantity {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}
.l-contents .p-prizes__quantity-number {
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__quantity-number {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__quantity-number {
    font-size: 2rem;
  }
}
.l-contents .p-prizes__quantity-content {
  display: inline-flex;
  align-items: baseline;
}
.l-contents .p-prizes__name {
  padding: 10px 10px 0 10px;
  text-align: center;
  background: linear-gradient(90deg, #D9281C 0%, #831616 100%);
  font-weight: 700;
}
.l-contents .p-prizes__product {
  display: flex;
  padding: 8px 10px;
  align-items: baseline;
  justify-content: center;
  background: linear-gradient(90deg, #D9281C 0%, #831616 100%);
  color: #fff;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__product {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__product {
    flex-grow: 1;
    font-size: 1.2rem;
  }
}
.l-contents .p-prizes__product-number {
  flex-shrink: 0;
}
.l-contents .p-prizes__details {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__details {
    max-width: 920px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__details {
    margin: 0 10px;
  }
}
.l-contents .p-prizes__detail {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__detail {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__detail {
    flex-direction: column;
    gap: 20px;
  }
}
.l-contents .p-prizes__detail-title {
  position: relative;
  z-index: 0;
  display: flex;
  width: 260px;
  height: 52px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-prizes__detail-title {
    flex-shrink: 0;
    font-size: 2rem;
  }
}
.l-contents .p-prizes__detail-title::before {
  position: absolute;
  z-index: -1;
  inset: 0 11px;
  border: 1px solid #fff;
  background-color: rgba(12, 25, 35, 0.2);
  content: "";
  transform: skewX(-23deg);
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__detail-text {
    text-align: center;
  }
}
.l-contents .p-prizes__note {
  margin: 10px 0 0 0;
  line-height: 175%;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-prizes__note {
    text-align: left;
  }
}
.l-contents .p-notes__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-notes__inner {
    padding: 60px 10px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-notes__inner {
    padding: 80px 0;
    width: 1200px;
  }
}
.l-contents .p-notes__list {
  padding-left: 1.5em;
  list-style: disc outside;
}
.l-contents .p-notes__item {
  display: list-item;
  line-height: 175%;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-notes__item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-notes__item {
    font-size: 1.4rem;
  }
}
.l-contents .p-cta {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    aspect-ratio: 1512/497;
    background-image: url("/campaign/342/img/bg-cta_pc.jpg");
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-cta {
    aspect-ratio: 390/824;
    background-image: url("/campaign/342/img/bg-cta_sp.jpg");
  }
}
.l-contents .p-cta__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-cta__inner {
    padding: 40px 10px;
    width: 100%;
    gap: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-cta__inner {
    margin: 0 100px;
    width: 670px;
    gap: 60px;
  }
}
.l-contents .p-cta__title {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px #000;
  font-size: 3rem;
  font-weight: 700;
}
.l-contents .p-cta__text {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  line-height: 175%;
}
@media only screen and (min-width: 768px) {
  .l-contents .p-cta__text {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-cta__text {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-contents .p-cta__button {
    padding: 20px 60px;
    text-align: center;
    font-size: 2rem;
  }
}
.l-contents .p-links {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-links {
    padding: 80px 20px;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-links {
    padding: 80px 0;
    gap: 60px;
    justify-content: center;
  }
}
.l-contents .p-links__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #171c21;
  border: 1px solid #D9281C;
}
@media only screen and (max-width: 768px) {
  .l-contents .p-links__item {
    width: 100%;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .l-contents .p-links__item {
    width: 360px;
    height: 70px;
  }
}
.l-contents .p-links__item:hover {
  opacity: 0.8;
}
.l-contents .p-fixed-cta {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 20px 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 25, 35, 0.8);
}