@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --color-text-main: #000;
  --color-text-light: #fff;
  --color-text-brown: #8c362e;
  --color-text-accent: #006536;
  --color-bg-base: #f0e9da;
  --color-bg-white: #fff;
  --color-bg-light: #fcfbf8;
  --color-bg-lightBrown: #d9c0a3;
  --color-bg-brown: #8c362e;
  --color-bg-green: #006536;
  --color-border-black: #000;
  --color-border-lightBrown: #d9c0a3;
  --color-border-brown: #8c362e;
  --color-disabled: #cbcbcb;
}

/*
  Base
---------------------------------------------- */
html {
  box-sizing: border-box;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a,
button {
  color: inherit;
  transition: 0.3s all ease-in-out;
}

a {
  text-decoration: none;
}

button {
  appearance: none;
  background-color: transparent;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: bold;
}

input,
textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
}

small {
  font-size: inherit;
}

/* パンくずを非表示に */
.breadcrumb {
  display: none;
}

/*
  Common
---------------------------------------------- */
.l-mainContents {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  font-weight: 400;
}

.l-sectionPrimary {
  padding-block: 0 60px;
}

.l-sectionPrimary:last-child {
  padding-bottom: 72px;
}

.l-container {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 12px;
}

.l-headingPrimary {
  color: var(--color-text-accent);
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding-block: 8px;
  background-color: var(--color-bg-lightBrown);
  border-radius: 10px;
  margin-bottom: 24px;
}

.l-headingSecondary {
  color: var(--color-text-accent);
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}

.l-headingSecondary.--center {
  text-align: center;
}

.l-headingSecondary small {
  font-size: 16px;
}

.l-textContainer {
  padding-inline: 12px;
  max-width: 624px;
  margin-inline: auto;
}

.l-textContainer > * + * {
  margin-top: 1em;
}

.c-buttonPrimary {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  max-width: 400px;
  min-height: 80px;
  margin-inline: auto;
  background-color: var(--color-bg-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 60px;
}

.c-buttonPrimary::after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-position: center;
}

.c-buttonPrimary.--arrow::after {
  width: 12px;
  height: 20px;
  background-image: url('../img/icon_arrow_right.svg');
}

.c-buttonPrimary.--download::after {
  width: 22px;
  height: 20px;
  background-image: url('../img/icon_download.svg');
}

.c-buttonPrimary.--external::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../img/icon_external.svg');
  background-size: contain;
  background-position: center;
}

.c-buttonPrimary.--disabled {
  background-color: var(--color-disabled);
  pointer-events: none;
  cursor: not-allowed;
}

.c-buttonSecondary {
  color: var(--color-text-brown);
  font-size: 18px;
  font-weight: bold;
  background-color: transparent;
  width: 100%;
  max-width: 400px;
  min-height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 60px;
  border: 3px solid var(--color-border-brown);
}

.c-buttonSecondary.--external::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../img/icon_external_brown.svg');
  background-size: contain;
  background-position: center;
}

.c-buttonTertiary {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text-light);
  font-size: 18px;
  background-color: var(--color-bg-green);
  width: 100%;
  max-width: 310px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-inline: auto;
  border-radius: 40px;
}

.c-buttonTertiary.--more {
  max-width: 190px;
  min-height: 38px;
}

.c-buttonTertiary.--external::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../img/icon_external.svg');
  background-size: contain;
  background-position: center;
}

@media (hover: hover) {
  .c-buttonPrimary:hover,
  .c-buttonSecondary:hover,
  .c-buttonTertiary:hover {
    opacity: 0.7;
  }
}

.c-borderbox {
  padding: 10px;
  border: 1px solid var(--color-border-brown);
  border-radius: 10px;
  margin-block: 16px;
}

.u-listDot {
  list-style: none;
  padding-left: 1em;
}

.u-listDot li {
  text-indent: -1em;
}

.u-listDot li::before {
  content: '・';
}

.u-listCaution {
  list-style: none;
  display: grid;
  gap: 8px;
}

.u-listCaution li {
  color: var(--color-text-brown);
  position: relative;
  padding-left: calc(16px + 6px);
}

.u-listCaution li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/icon_caution.png');
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 7px;
  left: 0;
}

.u-listNote {
  list-style: none;
  display: grid;
  gap: 8px;
}

.u-listNote li {
  font-size: 12px;
  padding-left: calc(1em + 4px);
  position: relative;
}

.u-listNote li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

.u-listNumber {
  list-style: none;
  counter-reset: number;
}

.u-listNumber li {
  counter-increment: number;
  position: relative;
  padding-left: 1.5em;
}

.u-listNumber li::before {
  content: counter(number);
  font-size: 0.75em;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

.u-listCustom {
  list-style: none;
  padding-left: 1.25em;
}

.u-listCustom li {
  text-indent: -1.25em;
}

.u-listCustom span {
  margin-right: 0.25em;
}

.u-externalLink {
  text-decoration: underline;
}

.u-externalLink::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url('../img/icon_external_black.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-inline: 0.25em;
  position: relative;
  top: 2px;
}

@media (hover: hover) {
  .u-externalLink:hover {
    opacity: 0.7;
  }
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mt-60 {
  margin-top: 60px;
}

/*
  Contents
---------------------------------------------- */
/* main visual */
.p-mainVisual {
  background-image: url('../img/bg_kv_sp.png');
  background-size: cover;
  background-position: top center;
  height: 666px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-mainVisualInner {
  display: inline-block;
  position: relative;
}

.p-mainVisual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-mainVisual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (min-width: 390px) {
  .p-mainVisualInner {
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-mainVisual {
    background-image: url('../img/bg_kv.png');
    height: auto;
  }

  .p-mainVisual picture {
    height: auto;
  }

  .p-mainVisual img {
    height: auto;
    object-fit: contain;
  }
}

@media screen and (min-width: 1024px) {
  .p-mainVisual {
    background-image: url('../img/bg_kv.png');
    height: 800px;
  }

  .p-mainVisual img {
    object-fit: cover;
  }
}

/* finish message */
.p-message {
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  padding-block: 24px;
  padding-inline: 0.5em;
  background-color: rgb(0 0 0 / 70%);
}

@media screen and (min-width: 768px) {
  .p-message .spOnly {
    display: none;
  }
}

.p-overview {
  padding-block: 32px;
  display: grid;
  gap: 20px;
}

.p-overviewItem {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-overviewTitle {
  color: var(--color-text-accent);
  font-size: 16px;
  font-weight: bold;
  background-color: var(--color-bg-white);
  display: inline-block;
  line-height: 26px;
  padding-inline: 28px;
  border-radius: 25px;
  margin-bottom: 10px;
}

.p-overviewText {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}

.p-overviewText span {
  display: block;
}

.p-overviewText small {
  font-weight: normal;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .p-overviewText span {
    display: inline;
  }
}

/* 対象商品 */
.p-productImage {
  max-width: 368px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.p-productNote {
  max-width: 310px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-productText {
    text-align: center;
  }

  .p-productText span {
    display: block;
  }

  .p-productText br {
    display: none;
  }
}

/* 応募方法 */
.p-entryDetails {
  display: grid;
  gap: 32px;
}

.p-entryAddress {
  color: var(--color-text-accent);
  font-weight: bold;
}

.p-longTextBox {
  background-color: var(--color-bg-white);
  padding: 10px 15px 20px;
  border: 1px solid var(--color-border-lightBrown);
}

.p-longTextContents {
  height: 100px;
  overflow: hidden;
  transition: height 0.4s ease-in-out;
}

.p-longTextContents > * + p {
  margin-top: 1em;
}

.p-longTextContents .u-listNote {
  gap: 0;
  margin-top: 0.25em;
}

/* 返金方法 */
.p-cashbackSections {
  display: grid;
  gap: 30px;
}

.p-cashbackIllust {
  background-color: var(--color-bg-light);
  border-radius: 16px;
  text-align: center;
}

.p-cashbackIllust img {
  max-width: 350px;
  margin-inline: auto;
}

/* お問い合わせ */
.p-contactText {
  color: var(--color-text-brown);
  text-align: center;
  font-weight: bold;
}

.p-contactTel {
  text-align: center;
  margin-top: 10px;
}

.p-contactTel a {
  color: var(--color-text-accent);
  font-size: 32px;
  font-weight: bold;
}

.p-contactBusinessTime {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.p-contactSmallText {
  font-size: 12px;
}

.p-pageTop {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 10;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.p-pageTop.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.p-pageTopLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.p-pageTopLink:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.p-pageTopLink img {
  width: 12px;
  rotate: -90deg;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.u-screenReaderText {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.u-screenReaderText:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
