@charset "UTF-8";

/* =========================================
   1. Reset & Base Styles
   ========================================= */
* {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  word-wrap: break-word;
  font-size: 17px;
  background-color: #F4F4F4;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #030303;
  line-height: 1.8;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: 700;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

img {
  border: 0;
}

figure {
  margin: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

select {
  text-transform: none;
}

/* =========================================
   2. Layout & Global Utilities
   ========================================= */
@media screen and (min-width: 920px) {
  body {
    width: 620px;
    margin: 0 auto;
  }
}

.article-header-wrapper img {
  max-width: 100%;
}

.article-body {
  position: relative;
  font-size: 17px;
  line-height: 1.8;
  padding: 0;
  background-color: #ffffff;
}

/* Global Image Reset for Article Body */
.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto !important;
  /* Changed from 0 to 0 auto to ensure centering if block */
}

/* Utility for centering images that might be wrapped */
.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   3. Main Visual (#main-visual)
   ========================================= */
#main-visual .main {
  max-width: 100%;
  background-image: url(../img/haikei.jpg);
  background-color: #fff;
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
}

#main-visual .text-on {
  width: 90%;
  padding: 20px 0px;
  margin: 0 auto;
}

#main-visual .text-on img {
  width: 100%;
}

/* Buttons */
.btn__area {
  width: 90%;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}

.btn__area .btn {
  width: calc(100% - 20px);
  height: auto;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 10px 5px;
  border-radius: 10vw;
  display: block;
  margin: 0 auto;
  background: #d36855;
  box-shadow: 0 4px 0 #9e4e3f, 0 5px 10px rgba(0, 0, 0, 0.3);
  /* Enhanced shadow for 3D feel */
  position: relative;
  overflow: hidden;
  /* For shine effect */
  animation: pulse 2s infinite ease-in-out;
  transition: all 0.3s;
}

.btn__area .btn:hover {
  position: relative;
  top: 2px;
  box-shadow: 0 2px 0 #9e4e3f, 0 3px 6px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Shine Effect */
.btn__area .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  /* Fast sweep */
  100% {
    left: 100%;
  }

  /* Wait */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  #main-visual .main {
    background-image: url(../img/haikei.jpg);
    background-size: contain;
  }

  #main-visual .text-on {
    width: 95%;
  }
}

/* =========================================
   4. Campaign Info (#campaign-info)
   ========================================= */
#campaign-info .body {
  width: 100%;
  background-color: #f8f4ed;
  font-size: 15px;
  color: #030303;
}

#campaign-info .cta-box {
  background-color: #f8f4ed;
  width: 100%;
  height: 100%;
}

#campaign-info h2 {
  display: inline;
  padding: 8px;
  margin: 11px;
  line-height: 2.8;
  background-color: #d36855;
  color: #fff;
  font-size: 27px;
}

#campaign-info h4 {
  font-weight: bold;
  position: relative;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
  padding: .3em .6em;
  font-size: 16.7px;
  line-height: 1.5;
  background-color: #d36855;
  color: #fff;
}

#campaign-info .heading-9 {
  position: relative;
  padding: .4em .2em;
  font-size: 21px;
  background-color: #d7b230;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

#campaign-info .heading-9::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #d7b230;
  margin-left: -5px;
  /* Centering fix */
}

#campaign-info .box5 {
  width: 80%;
  margin: 2em auto;
  padding: 2em;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 3px 3px 3px #b7b3ad;
  text-align: left;
  /* Ensure content is left-aligned */
}

#campaign-info .box5_2 {
  width: 80%;
  margin: 2em auto;
  padding: 2em;
  border-radius: 5px;
  background-color: #fff;
  font-size: 15px;
  box-shadow: 3px 3px 3px #fef7eb;
  text-align: left;
  /* Ensure content is left-aligned */
}

/* ... */

#campaign-info .text-box {
  position: relative;
  padding: .9em .9em;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fffcf0;
  /* Light Cream to stand out */
  color: #030303;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Added Drop Shadow */
}

/* ... */

/* Updated Condition Note */


/* ... */

/* Softened Exclusion Box */
.alert-box {
  margin-top: 20px;
  background-color: #e6e6e6;
  /* Specific light gray */
  /* border: 1px solid #e60000;  <-- Removed border as per request */
  color: #333;
  padding: 15px;
  border-radius: 5px;
  box-shadow: none;
  /* No shadow for exclusion box, just flat gray */
}

/* ... */

#campaign-info .ttl_line7 {
  font-weight: bold;
  padding: 0.3em 0.5em;
  color: #030303;
  font-size: 20px;
  border-left: 7px double #402517;
  border-bottom: 3px solid #402517;
}

/* Steps (Flow) */
#campaign-info .howto {
  width: 90%;
  display: flex;
  align-items: center;
  padding: 14px;
  margin: 0 auto;
}

#campaign-info .step {
  color: #fff;
  font-size: clamp(0.875rem, 0.44rem + 2.42vw, 1.5rem);
  text-align: center;
  font-weight: bold;
  background-color: #d36855;
  border-radius: 5px;
  padding: 5px 11px;
  flex-shrink: 0;
  /* Prevent shrinking */
}

#campaign-info .howto_tittle {
  font-size: clamp(0.875rem, 0.44rem + 2.42vw, 1.5rem);
  font-weight: bold;
  text-align: left;
  padding: 5px 14px;
  margin: 0;
}

#campaign-info .howto_text {
  width: 90%;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

#campaign-info .howto_line {
  width: 90%;
  height: 3px;
  background-color: #4d4d4d;
  margin: 15px auto;
}

#campaign-info .float__img {
  width: 51px;
  margin-top: 10px;
}

#campaign-info .float__text {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 650;
  color: #d36855;
  /* Matched color */
  line-height: 1.7;
}

#campaign-info .text2 {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #030303;
  line-height: 1.6;
}

#campaign-info ul {
  padding-inline-start: 0;
}

#campaign-info li {
  list-style: none;
  margin-bottom: 0.5em;
}

/* =========================================
   5. FAQ Section (#faq-section)
   ========================================= */
#faq-section .faq {
  width: 90%;
  margin: auto;
  color: #030303;
  font-size: 16px;
  text-align: left;
  /* Fix alignment */
}

#faq-section .ttl_line7 {
  font-weight: bold;
  padding: 0.3em 0.5em;
  color: #030303;
  font-size: 20px;
  border-left: 7px double #402517;
  border-bottom: 3px solid #402517;
}

#faq-section .faq-item {
  border: 1px solid #c0c0c0;
  background-color: #fff;
  margin-block-start: 1em;
}

#faq-section .faq-item[open] .faq-question::after {
  transform: rotate(-90deg);
}

#faq-section .faq-question {
  cursor: pointer;
  position: relative;
  padding: 1em 2.5em 1em 1em;
  font-weight: 600;
  background-color: #fff;
  display: block;
}

#faq-section .faq-question::after {
  content: "";
  width: 0.75em;
  height: 1.25em;
  position: absolute;
  top: calc(50% - 0.625em);
  right: 1.5em;
  clip-path: polygon(25% 0, 100% 50%, 25% 100%, 0 100%, 75% 50%, 0 0);
  transform: rotate(90deg);
  transition: 0.25s;
}

#faq-section .faq-answer {
  font-weight: 400;
  padding: 1.5em;
  background-color: #f8f4ed;
}

/* ... */

#faq-section .disico_about {
  width: 90%;
  font-size: 14px;
  margin: 0 auto;
  text-align: left;
  /* Fix alignment */
  line-height: 1.6;
}

/* ... */

/* ... */

.campaign-footer-text {
  font-size: 11px;
  padding: 1em 1em;
  /* Reduced side padding to prevent squishing on mobile */
  font-weight: 500;
  text-align: left;
  /* Fix alignment */
  margin: 0 auto;
  width: 90%;
  /* Ensure width constraint */
}


/* =========================================
   6. Floating Banner
   ========================================= */
.floating-banner,
.floating-banner_sp {
  display: block;
  position: fixed;
  z-index: 99999;
  text-align: center;
  left: 50%;
  /* Center horizontally */
  transform: translateX(-50%);
  bottom: 0px;
  /* Attach to bottom */
  width: 100%;
  /* Take full width to allow centering inner image if needed, or constraint width */
  pointer-events: none;
  /* Let clicks pass through the container, re-enable on image/link */
}

/* Re-enable pointer events on the link */
.floating-banner a,
.floating-banner_sp a {
  pointer-events: auto;
  display: block;
}

.floating-banner img,
.floating-banner_sp img {
  width: 90%;
  max-width: 451px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}

.fade_off {
  opacity: 0;
  transition: all 1s;
  pointer-events: none;
}

.fade_on {
  opacity: 1;
  pointer-events: auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* =========================================
   7. Footer
   ========================================= */

/* Responsive adjustments for Campaign Info */
@media screen and (max-width: 768px) {

  #campaign-info .box5,
  #campaign-info .box5_2 {
    width: 95%;
    /* Wider on mobile */
    padding: 1.5em 1em;
  }
}

/* Link Color Fix for disico_about */
.disico_about a {
  color: #0056b3;
  text-decoration: underline;
}

#footer-section .footer {
  background-color: #313131;
  color: #fff;
  padding: 3em 2.5em;
  font-size: 16px;
  text-align: center;
}

#footer-section .footer a {
  color: #fff;
  text-decoration: none;
}

/* ... */

/* List Styling */
.condition-list,
.usage-notes-list {
  padding-left: 0;
  margin: 10px 0;
}

.condition-list li,
.usage-notes-list li {
  list-style-type: none;
  /* Removed default bullets */
  position: relative;
  padding-left: 1em;
  /* Space for the bullet char */
  margin-bottom: 0.5em;
  font-size: 14px;
  line-height: 1.6;
}

.condition-list li::before,
.usage-notes-list li::before {
  content: "・";
  /* Custom bullet */
  position: absolute;
  left: 0;
  top: 0;
}

/* Text Utilities & Inline Replacements */
.check-notes-container {
  text-align: center;
  margin-top: 5px;
}

.check-notes-text {
  font-size: 13px;
  /* font-weight: bold; - Removed implicit bold to let HTML <b> tag or specific context decide, or add if desired globally. User example had <b> inside span. */
}

/* Specific Spacing for Bottom Note */
.bottom-notes-spacing {
  padding-bottom: 30px;
  /* Spacing below the bottom notes */
}

/* ... */

/* Highlight Utility */
.text-highlight-yellow {
  color: #ffeb3b;
  /* Bright Yellow for emphasis on Red bg */
  font-size: 1.2em;
  /* Slightly larger */
}

/* Updated Condition Note */
#campaign-info .text-box .condition-note {
  color: #ff0000;
  font-weight: 700;
  background-color: #fff3cd;
  /* Yellow */
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid #ffeeba;
}

/* ... */

/* Softened Exclusion Box */
#campaign-info .text-box.alert-box {
  margin-top: 20px;
  background-color: #e6e6e6;
  /* Specific light gray */
  color: #333;
  padding: 15px;
  border-radius: 5px;
  box-shadow: none;
  /* Ensure no shadow */
}

/* Updated to remove red color from exclusion text */
#campaign-info .text-box.alert-box .condition-list li {
  color: #333;
  /* Standard text color */
}

#campaign-info .text-box.alert-box b {
  color: #333;
  /* Standard text color */
}

/* ... */

.warning-text {
  color: #d36855;
  font-weight: 650;
}

.error-text {
  color: #e60000;
}

.q-mark {
  color: #d36855;
}

.a-mark {
  color: #e87816;
}

.campaign-footer-text {
  font-size: 11px;
  padding: 1em 3em;
  font-weight: 500;
}

/* ... */