/* =========================================
   Variables & Base
   ========================================= */
:root {
--primary: #009688;
--primary-dark: #00695c;
--primary-light: #e0f2f1;
--accent: #ff6f00;
--accent-gradient: linear-gradient(135deg, #ff8f00 0%, #ff6f00 100%);
--text-main: #2d3436;
--text-light: #636e72;
--bg-body: #fdfdfd;
--bg-gray: #f4f6f8;
--white: #ffffff;
--shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
--shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08);
--shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
--radius-md: 12px;
--radius-lg: 24px;
--font-base: 'Noto Sans JP', sans-serif;
--font-en: 'Poppins', sans-serif;
}
.pc{
display: block;
}
.sp{
display: none;
}
html { scroll-behavior: smooth; }

/* Global Overflow Fix */
html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .container {
padding: 0 15px;
  }
}

h1, h2, h3, h4 { margin: 0; line-height: 1.4; }
p { margin: 0 0 1.5em; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }

/* =========================================
   Components
   ========================================= */
.container {
width: 100%;
max-width: 1140px;
margin: 0 auto;
padding: 0 24px;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 16px 48px;
font-weight: 700;
border-radius: 50px;
font-size: 1.1rem;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
position: relative;
overflow: hidden;
letter-spacing: 0.05em;
cursor: pointer;
}

.btn-primary {
background: var(--accent-gradient);
color: var(--white);
box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
border: none;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
}

.btn-white {
background: var(--white);
color: var(--primary);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
background: #f0f0f0;
transform: translateY(-3px);
}

.section {
padding: 100px 0;
position: relative;
}

.bg-gray { background-color: var(--bg-gray); }

.section-header {
text-align: center;
margin-bottom: 60px;
position: relative;
}

.section-en {
display: block;
font-family: var(--font-en);
color: var(--primary);
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
font-size: 0.9rem;
margin-bottom: 8px;
}

.section-title {
font-size: 2.2rem;
font-weight: 900;
position: relative;
display: inline-block;
z-index: 1;
}

.section-title::after {
content: '';
position: absolute;
bottom: 5px;
left: -10px;
width: calc(100% + 20px);
height: 12px;
background: rgba(0, 172, 162, 0.15);
z-index: -1;
border-radius: 4px;
}

/* =========================================
   Header
   ========================================= */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: var(--shadow-sm);
height: 80px;
display: flex;
align-items: center;
}

.header__inner {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.header__logo {
font-size: 1.4rem;
font-weight: 900;
color: var(--primary);
display: flex;
align-items: center;
gap: 10px;
}

.header__actions {
display: flex;
gap: 20px;
align-items: center;
}

.header__tel {
display: flex;
flex-direction: column;
align-items: flex-end;
line-height: 1.2;
}

.header__tel-num {
font-family: var(--font-en);
font-size: 1.5rem;
font-weight: 700;
color: var(--text-main);
}

.header__tel-desc {
font-size: 0.75rem;
color: var(--text-light);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
position: relative;
padding-top: 120px;
padding-bottom: 80px;
background: linear-gradient(rgba(240, 250, 255, 0.9), rgba(240, 250, 255, 0.8)), url('https://images.unsplash.com/photo-1605218427306-635ba74c9562?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
overflow: hidden;
}

.hero__container {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
z-index: 1;
gap: 40px;
}

.hero__content {
flex: 1;
max-width: 700px;
}

.hero__tag-top {
display: inline-block;
background: #e3f2fd;
color: #1976d2;
padding: 5px 15px;
border-radius: 20px;
font-weight: 700;
font-size: 0.9rem;
margin-bottom: 20px;
display: inline-flex;
align-items: center;
gap: 5px;
}

.hero__title {
font-size: 3rem;
font-weight: 900;
line-height: 1.3;
margin-bottom: 20px;
color: #333;
letter-spacing: -0.02em;
}

.hero__title-highlight {
color: #42a5f5;
position: relative;
display: inline-block;
}

.hero__title-highlight::after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 12px;
background: rgba(255, 235, 59, 0.6);
z-index: -1;
transform: rotate(-1deg);
border-radius: 3px;
}

.hero__desc {
font-size: 1.1rem;
color: #555;
margin-bottom: 30px;
line-height: 1.8;
}

.hero__features {
display: flex;
gap: 15px;
margin-bottom: 40px;
flex-wrap: wrap;
}

.hero__feature-card {
background: #fff;
border-radius: 10px;
padding: 15px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
display: flex;
align-items: center;
gap: 15px;
flex: 1;
min-width: 180px;
border: 1px solid #f0f0f0;
}

.hero__feature-icon {
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}

.icon-pink { background: #fce4ec; color: #e91e63; }
.icon-gold { background: #fff8e1; color: #fbc02d; }
.icon-blue { background: #e3f2fd; color: #2196f3; }

.hero__feature-text {
font-size: 0.85rem;
line-height: 1.3;
font-weight: 700;
color: #444;
}

.hero__feature-text strong {
display: block;
font-size: 1rem;
color: #222;
}

.hero__cta-wrapper {
display: flex;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.hero__cta-btn {
background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
color: #fff;
padding: 18px 40px;
border-radius: 8px;
font-weight: 700;
font-size: 1.2rem;
display: flex;
align-items: center;
gap: 10px;
box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
transition: transform 0.2s;
text-decoration: none;
border: none;
}

.hero__cta-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(230, 126, 34, 0.5);
}

.hero__cta-sub {
display: flex;
align-items: center;
gap: 5px;
font-size: 0.9rem;
font-weight: 700;
color: #555;
}

.hero__cta-check {
color: #4caf50;
}

.hero__image-col {
flex: 1;
display: flex;
justify-content: flex-end;
align-items: flex-end;
position: relative;
}

.hero__person-img {
max-width: 100%;
height: auto;
max-height: 550px;
object-fit: contain;
filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.wave-bottom {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
z-index: 2;
}
.wave-bottom svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 80px;
}
.wave-fill {
fill: var(--bg-body);
}

/* Campaign Banner */
.campaign-banner {
margin-top: -60px;
position: relative;
z-index: 10;
background: linear-gradient(90deg, #e67e22 0%, #f39c12 100%);
border-radius: 16px;
padding: 25px 40px;
box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
color: #fff;
border: none;
}

.campaign-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.campaign-icon-box {
background: #fff;
color: #e67e22;
padding: 15px 25px;
border-radius: 12px;
transform: rotate(-3deg);
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
flex-shrink: 0;
}

.campaign-icon-text {
font-size: 1.8rem;
font-weight: 900;
line-height: 1;
font-family: var(--font-base);
}

.campaign-text-box {
text-align: center;
flex-grow: 1;
}

.campaign-sub-text {
font-size: 1rem;
font-weight: 700;
margin-bottom: 5px;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
letter-spacing: 0.05em;
}

.campaign-main-text {
font-size: 2rem;
font-weight: 700;
line-height: 1.1;
margin: 0;
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
}

.campaign-highlight {
font-size: 3rem;
color: #fffde7;
font-weight: 900;
font-family: var(--font-en);
text-shadow: 2px 2px 0px #d35400, 4px 4px 10px rgba(0,0,0,0.2);
line-height: 1;
}

.campaign-btn-box {
flex-shrink: 0;
}

.campaign-btn {
background: #fff;
color: #d35400;
padding: 15px 35px;
border-radius: 50px;
font-weight: 700;
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.2s;
white-space: nowrap;
font-size: 1rem;
}

.campaign-btn:hover {
transform: translateY(-2px);
background: #fff3e0;
}

.campaign-btn i {
color: #e67e22;
font-size: 1.2rem;
}

.appeal-images-wrapper {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
margin-top: 30px;
position: relative;
z-index: 11;
margin-bottom: 40px;
}

.appeal-img {
max-width: 800px;
width: 100%;
height: auto;
border-radius: 12px;
transition: transform 0.3s;
}

.appeal-img:hover {
transform: translateY(-5px);
}

/* Problem Section */
.problem-section {
padding: 80px 0 100px;
background: #fff;
}

.problem-card {
background: #1e004d;
border-radius: 20px;
padding: 50px 40px 80px;
position: relative;
color: #fff;
max-width: 900px;
margin: 0 auto;
box-shadow: 0 10px 25px rgba(91, 155, 213, 0.3);
}

.problem-en {
text-align: center;
font-family: var(--font-en);
font-size: 1.2rem;
letter-spacing: 0.1em;
opacity: 0.8;
margin-bottom: 5px;
text-transform: uppercase;
}

.problem-title {
text-align: center;
font-size: 2rem;
font-weight: 700;
margin-bottom: 40px;
}

.problem-list {
max-width: 650px;
margin: 0 auto;
position: relative;
z-index: 2;
list-style: none;
}

.problem-item {
display: flex;
align-items: center;
gap: 15px;
font-size: 1.1rem;
padding: 15px 0;
border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.problem-item:last-child {
border-bottom: none;
}

.problem-check {
background: #fff;
color: #5b9bd5;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
flex-shrink: 0;
}

.highlight {
color: #ffeb3b;
font-weight: 700;
}

.problem-img-left,
.problem-img-right {
position: absolute;
bottom: 0;
width: 150px;
height: auto;
z-index: 1;
}

.problem-img-left {
left: -30px;
}

.problem-img-right {
right: -30px;
}

.problem-arrow {
text-align: center;
margin-top: 40px;
color: #5b9bd5;
font-size: 2.5rem;
animation: bounceArrow 2s infinite;
position: relative;
z-index: 10;
}

@keyframes bounceArrow {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-10px);}
60% {transform: translateY(-5px);}
}

/* Solution Section */
.solution-section {
background-color: #4c6cb3;
background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-size: 30px 30px;
padding: 60px 0 80px;
color: #fff;
text-align: center;
position: relative;
}

.solution-bg-icon {
position: absolute;
font-size: 8rem;
color: rgba(255, 255, 255, 0.03);
z-index: 0;
pointer-events: none;
}

.solution-container {
position: relative;
z-index: 1;
max-width: 1000px;
margin: 0 auto;
padding-bottom: 60px;
}

.solution-subtitle {
font-size: 1.1rem;
margin-bottom: 10px;
font-weight: 500;
opacity: 0.9;
letter-spacing: 0.1em;
}

.solution-title {
font-size: 2.2rem;
font-weight: 900;
margin-bottom: 40px;
text-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.solution-tags-area {
background: rgba(0, 0, 0, 0.15);
border-radius: 20px;
padding: 40px 20px;
margin: 0 auto;
position: relative;
}

.solution-tags {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}

.solution-tag {
background: #fff;
color: #4c6cb3;
font-weight: 700;
padding: 12px 28px;
border-radius: 50px;
font-size: 1rem;
box-shadow: 0 4px 0 rgba(0,0,0,0.1);
transition: transform 0.2s;
}

.solution-tag:hover {
transform: translateY(-2px);
}

.solution-cat {
position: absolute;
bottom: -119px;
right: -20px;
width: 160px;
height: auto;
filter: drop-shadow(0 4px 4px rgba(0,0,0,0.2));
z-index: 2;
}

/* Pricing Section Background */
#pricing {
background-color: #e3f2fd;
}

.reason-area {
background: #fff;
border-radius: var(--radius-md);
padding: 40px;
margin-bottom: 60px;
position: relative;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.reason-area::after {
content: '';
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
border-width: 20px 20px 0;
border-style: solid;
border-color: #fff transparent transparent;
filter: drop-shadow(0 4px 2px rgba(0,0,0,0.05));
z-index: 1;
display: block;
}

.reason-title {
text-align: center;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 40px;
color: var(--text-main);
}

.reason-title span {
color: #e65100;
background: linear-gradient(transparent 70%, #ffcc80 70%);
padding: 0 5px;
}

.reason-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
align-items: start;
}

.reason-img-wrapper {
transition: transform 0.3s;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
background: #fff;
border: 1px solid #f0f0f0;
}

.reason-img-wrapper:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.reason-img-wrapper img {
width: 100%;
height: auto;
display: block;
object-fit: contain;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
align-items: stretch;
}

.ss-pack-section {
background: #ffffff;
border: 2px solid #002d96;
border-radius: 16px;
overflow: hidden;
display: flex;
flex-direction: column;
box-shadow: var(--shadow-md);
transition: transform 0.3s;
position: relative;
}

.ss-pack-section:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}

.ss-pack-header {
background: #002d96;
color: #fff;
text-align: center;
padding: 12px;
font-weight: 700;
font-size: 0.95rem;
}

.ss-pack-discount {
background: #fff3e0;
color: #d84315;
text-align: center;
padding: 15px;
border-bottom: 2px dashed rgba(0,0,0,0.1);
}

.ss-pack-discount-text {
font-size: 0.9rem;
font-weight: 700;
margin-bottom: 5px;
display: block;
}

.ss-pack-discount-price {
font-size: 1.4rem;
font-weight: 900;
color: #c62828;
margin: 0;
line-height: 1;
background: linear-gradient(transparent 60%, #ffccbc 60%);
display: inline-block;
}

.ss-pack-content {
padding: 25px;
text-align: center;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.ss-pack-title {
font-size: 2.2rem;
font-weight: 900;
color: var(--text-main);
margin-bottom: 20px;
font-family: var(--font-en);
line-height: 1;
}

.ss-pack-title span {
font-size: 1.2rem;
margin-left: 5px;
}

.ss-pack-white-bg {
background: transparent;
padding: 10px 0;
border: none;
box-shadow: none;
}

.ss-pack-cart-icon {
width: 100%;
height: 160px;
object-fit: contain;
margin-bottom: 15px;
display: block;
margin-left: auto;
margin-right: auto;
}

.ss-pack-price {
margin-top: 10px;
margin-bottom: 5px;
color: var(--primary-dark);
}

.ss-pack-price-tax {
font-size: 0.8rem;
background: #eee;
padding: 2px 6px;
border-radius: 4px;
vertical-align: middle;
}

.ss-pack-price-main {
font-size: 2.2rem;
font-weight: 900;
font-family: var(--font-en);
color: #c62828;
line-height: 1;
}

.ss-pack-price-unit {
font-size: 1rem;
font-weight: 700;
}

.ss-pack-price-regular {
font-size: 0.9rem;
color: #888;
text-decoration: line-through;
margin: 0;
}

.pricing-footer-images {
margin-top: 60px;
text-align: center;
display: flex;
flex-direction: column;
gap: 40px;
align-items: center;
}

.pricing-footer-img {
max-width: 900px;
width: 100%;
height: auto;
border-radius: 12px;
display: block;
filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
transition: transform 0.3s;
}

.pricing-footer-img:hover {
transform: translateY(-3px);
}

/* Strengths */
.strength-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}

.strength-card {
background: var(--white);
padding: 40px 30px;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
text-align: center;
transition: 0.3s;
position: relative;
margin-top: 15px;
}

.strength-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
background: var(--primary-light);
}

.strength-label {
position: absolute;
top: -18px;
left: 50%;
transform: translateX(-50%);
background-color: #64b5f6;
color: #fff;
padding: 6px 20px;
border-radius: 50px;
font-weight: 900;
font-size: 0.9rem;
white-space: nowrap;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
z-index: 2;
letter-spacing: 0.05em;
text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.strength-label::after {
content: '';
position: absolute;
bottom: -6px;
left: 50%;
transform: translateX(-50%);
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 7px solid #64b5f6;
}

.strength-img {
width: 170px;
height: 120px;
object-fit: contain;
margin: 0 auto 15px;
display: block;
filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Comparison Section */
.comparison-section {
background-color: #fff;
padding: 80px 0;
position: relative;
overflow: hidden;
}

.comparison-header {
text-align: center;
margin-bottom: 50px;
position: relative;
z-index: 2;
}

.comparison-title-main {
font-size: 2.5rem;
font-weight: 900;
color: #333;
margin-bottom: 50px;
display: block;
}

.comparison-title-main span {
color: #4c6cb3;
position: relative;
display: inline-block;
}

.comparison-title-main span::after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 8px;
background: rgba(76, 108, 179, 0.2);
z-index: -1;
}

.comparison-label-container {
position: relative;
display: inline-block;
max-width: 90%;
margin-top: 40px;
}

.comparison-subtitle {
background-color: #4c6cb3;
color: #fff;
padding: 15px 40px 15px 40px; 
font-weight: 700;
font-size: 1.3rem;
border-radius: 4px;
position: relative;
box-shadow: 0 4px 10px rgba(76, 108, 179, 0.3);
text-align: left;
}

.comparison-subtitle::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #4c6cb3;
}

.comparison-person-img {
position: absolute;
bottom: 65px;
left: -10px;
height: 150px;
width: auto;
z-index: 2;
filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
mix-blend-mode: multiply; 
}

.comparison-wrapper {
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 2;
background: #fff;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.comparison-table {
width: 100%;
border-collapse: collapse;
min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
padding: 20px 15px;
text-align: center;
border-bottom: 1px solid #eee;
border-right: 1px solid #eee;
font-size: 1rem;
}

.comparison-table th:last-child, 
.comparison-table td:last-child {
border-right: none;
}

.comp-th-item {
background-color: #f9f9f9;
font-weight: 700;
width: 15%;
color: #555;
}

.comp-col-our {
width: 35%;
border-left: 2px solid #4c6cb3;
border-right: 2px solid #4c6cb3 !important;
background-color: #fff;
position: relative;
}

.comp-col-our.header-cell {
background-color: #4c6cb3;
color: #fff;
vertical-align: middle;
border-top: 2px solid #4c6cb3;
padding: 0;
}

.comp-our-logo {
padding: 15px;
display: block;
}

.comp-our-logo strong {
font-size: 1.1rem;
display: block;
}

.comp-col-our.data-cell {
color: #4c6cb3;
font-weight: 900;
font-size: 1.1rem;
}

tr:last-child .comp-col-our {
border-bottom: 2px solid #4c6cb3;
}

.comp-col-other {
width: 25%;
background-color: #9e9e9e;
color: #fff;
font-weight: 700;
}

.comp-data-other {
color: #666;
}

.comparison-bg-text {
position: absolute;
bottom: -20px;
right: 0;
font-family: 'Poppins', cursive;
font-size: 8rem;
color: rgba(0,0,0,0.03);
font-style: italic;
pointer-events: none;
z-index: 1;
font-weight: 900;
}

/* Works Section */
.works-section {
background-color: #5c9ee7;
padding: 80px 0 100px;
color: #fff;
overflow: hidden;
}

.works-header {
text-align: center;
margin-bottom: 50px;
}

.works-title {
font-size: 2.5rem;
font-weight: 900;
margin-bottom: 10px;
position: relative;
display: inline-block;
}

.works-title::after {
content: '';
display: block;
width: 60px;
height: 4px;
background: #b2ff59;
margin: 10px auto 0;
border-radius: 2px;
}

.works-desc {
font-size: 0.9rem;
opacity: 0.9;
}

.swiper {
width: 100%;
padding-bottom: 50px !important;
padding-left: 70px; /* PCで前後が見えるように */
padding-right: 70px;
}

.swiper-slide {
height: auto;
width: 400px;
max-width: 90%; /* スマホ対策 */
}

.work-card {
background: #fff;
border-radius: 8px;
overflow: hidden;
color: #333;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
height: 100%;
display: flex;
flex-direction: column;
margin: 0 auto;
}
.top-cta-tel-text {
left: 167px;
bottom: 3px;
color: white;
font-size: 71px;
font-weight: 800;
margin: 0;
padding: 0;
text-decoration: none;
}
.work-card-header {
background: #4c6cb3;
color: #fff;
padding: 5px 10px;
font-size: 0.8rem;
font-weight: 700;
display: flex;
align-items: center;
gap: 5px;
}

.work-card-images {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
background: #f9f9f9;
gap: 5px;
border-bottom: 1px solid #eee;
}

.work-img-wrapper {
position: relative;
width: 45%;
aspect-ratio: 1 / 1; /* 正方形に変更 */
border-radius: 4px;
overflow: hidden;
}

.work-img-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
}

.work-img-label {
position: absolute;
top: 0;
left: 0;
padding: 3px 10px;
font-size: 0.7rem;
color: #fff;
font-weight: 700;
border-bottom-right-radius: 4px;
z-index: 1;
}

.label-before { background-color: rgba(100, 100, 100, 0.8); }
.label-after { background-color: rgba(255, 111, 0, 0.9); }

.work-arrow-icon {
color: #bbb;
font-size: 1.2rem;
}

.work-card-body {
padding: 15px;
flex: 1;
display: flex;
flex-direction: column;
}

.work-card-title {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 15px;
line-height: 1.4;
color: var(--primary-dark);
border-bottom: 2px solid #e0f2f1;
padding-bottom: 10px;
}

.work-detail-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-bottom: 15px;
font-size: 0.85rem;
}

.work-detail-item {
background: #f5f5f5;
padding: 8px;
border-radius: 4px;
}

.work-detail-item.full {
grid-column: 1 / -1;
}

.work-detail-label {
display: block;
font-size: 0.7rem;
color: #777;
margin-bottom: 2px;
}

.work-detail-value {
font-weight: 700;
color: #333;
line-height: 1.3;
}

.buy-price {
color: #d32f2f;
}

.work-card-price {
margin-top: auto;
text-align: center;
border-top: 1px dashed #ddd;
padding-top: 15px;
background: #fff8e1;
margin: auto -15px -15px -15px;
padding-bottom: 15px;
}

.work-price-label {
font-size: 0.8rem;
color: #666;
font-weight: 700;
}

.work-price-val {
font-size: 2rem;
font-weight: 900;
color: #e65100;
font-family: var(--font-en);
line-height: 1;
}

.work-price-val span {
font-size: 1rem;
font-weight: 700;
}

.work-staff-comment {
margin-top: 20px;
padding-bottom: 20px;
position: relative;
}

.work-staff-comment-box {
background: #4c6cb3;
color: #fff;
padding: 20px;
border-radius: 12px;
position: relative;
font-size: 0.9rem;
line-height: 1.6;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.work-staff-comment-box::after {
content: '';
position: absolute;
bottom: -15px;
right: 50px;
border-top: 20px solid #4c6cb3;
border-left: 10px solid transparent;
border-right: 20px solid transparent;
transform: skewX(-10deg);
}

.work-staff-comment-title {
font-weight: 900;
font-size: 1.1rem;
margin-bottom: 10px;
display: block;
border-bottom: 1px solid rgba(255,255,255,0.3);
padding-bottom: 5px;
}

.work-staff-icon-img {
position: absolute;
bottom: -10px;
right: 0px;
width: 70px;
height: 70px;
background: #fff;
border-radius: 50%;
border: 3px solid #fff;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
z-index: 2;
}

/* Swiper Navigation Custom */
.swiper-button-next, .swiper-button-prev {
color: #fff !important;
background: rgba(0,0,0,0.3);
width: 50px !important;
height: 50px !important;
border-radius: 50%;
backdrop-filter: blur(4px);
transition: 0.3s;
z-index: 100;
cursor: pointer;
position: absolute;
top: 50%;
margin-top: 0 !important;
transform: translateY(-50%);
}

.swiper-button-next {
right: 10px !important;
}

.swiper-button-prev {
left: 10px !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
background: rgba(0,0,0,0.6);
}

.swiper-button-next:after, .swiper-button-prev:after {
font-size: 1.5rem !important;
font-weight: 900;
}

.swiper-pagination-bullet {
background: #fff !important;
opacity: 0.5;
width: 10px;
height: 10px;
}
.swiper-pagination-bullet-active {
opacity: 1;
width: 25px;
border-radius: 5px;
}

/* Voice Section */
.voice-section {
background-color: #e3f2fd;
padding: 80px 0;
}

.voice-list {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 25px;
}

.voice-card {
background: #fff;
border-radius: 12px;
padding: 30px;
display: flex;
gap: 30px;
align-items: flex-start;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
border-bottom: 3px solid #ddd;
}

.voice-icon-area {
flex: 0 0 120px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}

.voice-icon-img {
width: 80px;
height: 80px;
border-radius: 50%;
background: #eee;
margin-bottom: 10px;
border: 2px solid #ccc;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
color: #fff;
}

.icon-bg-blue { background-color: #90caf9; border-color: #64b5f6; }
.icon-bg-orange { background-color: #ffcc80; border-color: #ffb74d; }
.icon-bg-pink { background-color: #f48fb1; border-color: #f06292; }

.voice-user-info {
font-size: 0.8rem;
line-height: 1.4;
font-weight: 700;
color: #333;
}

.voice-content-area {
flex: 1;
}

.voice-meta {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
flex-wrap: wrap;
}

.voice-tag {
border: 1px solid #f06292;
color: #d81b60;
background: #fce4ec;
padding: 3px 15px;
font-size: 0.85rem;
font-weight: 700;
border-radius: 4px;
}

.voice-ratings-box {
display: flex;
flex-wrap: wrap;
gap: 10px 20px;
background: #fafafa;
padding: 12px 15px;
border-radius: 8px;
margin-bottom: 15px;
border: 1px solid #eee;
}

.voice-rating-row {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.85rem;
font-weight: 700;
color: #444;
}

.voice-stars {
color: #ff9800;
font-size: 0.9rem;
letter-spacing: 1px;
}

.voice-title {
font-size: 1.3rem;
font-weight: 700;
color: #d81b60;
margin-bottom: 15px;
line-height: 1.4;
}

.voice-text {
font-size: 0.95rem;
line-height: 1.8;
color: #444;
}

/* Flow Section */
.flow-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}

.flow-card {
background: #e3f2fd;
border-radius: 12px;
padding: 25px 20px 30px;
position: relative;
display: flex;
flex-direction: column;
transition: transform 0.3s;
}

.flow-card:hover {
transform: translateY(-5px);
z-index: 2;
}

.flow-card::after {
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
color: var(--accent);
font-size: 1.5rem;
z-index: 1;
display: none;
text-shadow: 2px 2px 0 #fff;
}

@media (min-width: 993px) {
.flow-card:not(:last-child)::after {
content: '\f0da';
display: block;
right: -16px;
top: 50%;
bottom: -53px;
font-size: 40px;
transform: translateY(-50%);
}
}

.flow-num {
position: absolute;
top: 20px;
left: 20px;
font-size: 1rem;
font-weight: 700;
color: #42a5f5;
font-family: var(--font-en);
}

.flow-img {
width: auto;
height: 100px;
object-fit: contain;
margin: 30px auto 15px;
display: block;
}

.flow-title {
font-size: 1.1rem;
font-weight: 700;
text-align: center;
margin-bottom: 15px;
color: var(--text-main);
line-height: 1.4;
}

.flow-desc {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.6;
text-align: left;
}

/* Items Section */
.items-section {
background-color: #fff;
padding: 80px 0;
}

.items-container {
max-width: 900px;
margin: 0 auto;
border: 2px solid #64b5f6;
border-radius: 12px;
overflow: hidden;
background: #fff;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.items-header-area {
text-align: center;
padding: 30px 0 20px;
background: #e3f2fd;
}

.items-tabs {
display: flex;
background: #64b5f6;
padding: 0 10px;
gap: 5px;
overflow-x: auto;
}

.items-tab {
flex: 1;
text-align: center;
padding: 15px 10px;
color: #fff;
font-weight: 700;
cursor: pointer;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
transition: background 0.3s;
white-space: nowrap;
min-width: 100px;
}

.items-tab:hover {
background: rgba(255,255,255,0.2);
}

.items-tab.active {
background: #fff;
color: #1976d2;
}

.items-content {
padding: 30px 40px;
}

.items-pane {
display: none;
animation: fadeIn 0.5s;
}

.items-pane.active {
display: flex;
gap: 30px;
align-items: flex-start;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}

.items-pane-img {
width: 35%;
height: auto;
border-radius: 8px;
object-fit: cover;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.items-pane-text {
width: 65%;
font-size: 0.95rem;
line-height: 1.8;
color: #333;
}

/* NG Items Section */
.ng-items-section {
background-color: #fff;
padding-bottom: 80px;
}

.ng-items-card {
background-color: #f0f8ff;
border-radius: 16px;
padding: 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
max-width: 900px;
margin: 0 auto;
box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.ng-items-content {
flex: 1;
}

.ng-items-title {
font-size: 1.8rem;
font-weight: 900;
color: #4c6cb3;
margin-bottom: 20px;
display: inline-block;
background: linear-gradient(transparent 70%, #ffeb3b 70%);
padding: 0 5px;
line-height: 1.2;
}

.ng-items-title span {
font-size: 2rem;
margin-right: 5px;
}

.ng-items-desc {
font-size: 1rem;
line-height: 1.8;
margin-bottom: 15px;
color: #444;
}

.ng-items-example {
font-size: 0.9rem;
color: #666;
line-height: 1.6;
}

.ng-items-visual {
flex: 0 0 300px;
position: relative;
}

.ng-items-img-box {
position: relative;
border-radius: 12px;
overflow: hidden;
border: 4px solid #fff;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ng-items-img {
width: 100%;
height: 180px;
object-fit: cover;
display: block;
filter: grayscale(30%);
}

.ng-mark-cross {
position: absolute;
bottom: 30px;
left: 80px;
font-size: 9rem;
color: #e53935;
font-weight: 900;
line-height: 1;
text-shadow: 2px 2px 0 #fff;
opacity: 0.9;
}

.ng-mark-badge {
position: absolute;
top: -15px;
right: -15px;
background-color: #fbc02d;
color: #fff;
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-weight: 900;
font-size: 0.9rem;
line-height: 1.2;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
z-index: 2;
border: 3px solid #fff;
}

.ng-mark-badge::after {
content: '';
position: absolute;
bottom: -5px;
left: 20px;
border-width: 10px 10px 0;
border-style: solid;
border-color: #fbc02d transparent transparent;
transform: rotate(20deg);
}

.ng-cat-char {
position: absolute;
bottom: -30px;
right: -30px;
width: 100px;
height: auto;
z-index: 3;
filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* Warning Section */
.warning-section {
background: linear-gradient(rgba(13, 20, 40, 0.9), rgba(13, 20, 40, 0.9)), url('https://images.unsplash.com/photo-1555617766-c94804975da3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
color: #fff;
padding: 80px 0;
position: relative;
overflow: hidden;
}

.warning-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
max-width: 1000px;
margin: 0 auto;
}

.warning-text-area {
flex: 1;
}

.warning-title {
font-size: 2.2rem;
font-weight: 900;
color: #ffeb3b;
margin-bottom: 30px;
letter-spacing: 0.05em;
line-height: 1.3;
display: flex;
align-items: center;
gap: 15px;
}

.warning-desc {
font-size: 0.95rem;
line-height: 2;
text-align: justify;
}

.warning-desc p {
margin-bottom: 1.5em;
}

.warning-desc strong {
color: #ffeb3b;
border-bottom: 1px solid #ffeb3b;
}

.warning-character {
flex: 0 0 300px;
text-align: center;
position: relative;
}

.warning-char-img {
width: 100%;
max-width: 250px;
height: auto;
}

/* Trust Section */
.trust-section {
background: #fff;
text-align: center;
border-top: 1px solid #eee;
}

.association-logo-placeholder {
width: 100%;
max-width: 300px;
height: 100px;
background: #f0f0f0;
border: 2px dashed #ccc;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: #666;
font-weight: 700;
flex-direction: column;
padding: 10px;
}

/* Full Width CTA */
.cta-full {
background: linear-gradient(rgba(0, 150, 136, 0.9), rgba(0, 105, 92, 0.9)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed;
color: #fff;
padding: 100px 20px;
text-align: center;
position: relative;
}

.cta-full__content {
max-width: 800px;
margin: 0 auto;
}

.cta-full__title {
font-size: 2.5rem;
font-weight: 900;
margin-bottom: 20px;
text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cta-full__desc {
font-size: 1.2rem;
margin-bottom: 40px;
opacity: 0.95;
}

.cta-full__buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

/* Footer */
.footer {
background: #2d3436;
color: #dfe6e9;
padding: 80px 0 30px;
text-align: center;
}

/* Mobile CTA */
.mobile-cta {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: 90%;
max-width: 400px;
z-index: 999;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
border-radius: 50px;
display: none;
}

/* Responsive */
@media (max-width: 992px) {
.flow-grid {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
}

@media (min-width: 601px) and (max-width: 992px) {
.flow-card:nth-child(odd):not(:last-child)::after {
content: '\f0da';
display: block;
right: -20px;
top: 50%;
transform: translateY(-50%);
}
}

@media (max-width: 768px) {
.comparison-label-container { margin-top: 30px; }
.comparison-person-img {
height: 100px;
left: -5px;
bottom: 80px;
 }
.comparison-subtitle { font-size: 1rem; padding: 12px 20px 12px 60px; }
.comparison-title-main { font-size: 1.8rem; margin-bottom: 20px; }
.voice-card { flex-direction: column; align-items: center; text-align: center; padding: 25px 20px; }
.voice-meta { justify-content: center; }
.voice-ratings-box { justify-content: center; text-align: left; }
.voice-text { text-align: left; }
.items-pane.active { flex-direction: column; }
.items-pane-img { width: 100%; margin-bottom: 20px; max-height: 200px; }
.items-pane-text { width: 100%; }
.items-content { padding: 20px; }
.ng-items-card { flex-direction: column-reverse; padding: 30px 20px; gap: 30px; }
.ng-items-visual { flex: 0 0 auto; width: 100%; max-width: 320px; }
.ng-items-title { font-size: 1.5rem; }
.warning-wrapper { flex-direction: column-reverse; text-align: center; gap: 30px; }
.warning-title { justify-content: center; font-size: 1.6rem; flex-direction: column; gap: 10px; }
.warning-character { flex: 0 0 auto; }
.warning-char-img { max-width: 180px; transform: rotate(0); }
.warning-desc { text-align: left; }
.cta-full__title { font-size: 1.8rem; }
.cta-full { padding: 60px 20px; }
.header__actions { display: none; }
.mobile-cta { display: flex; }
}

@media (max-width: 600px) {
.swiper { padding-left: 20px; padding-right: 20px; }
.works-title { font-size: 24px; }
.flow-grid { grid-template-columns: 1fr; gap: 40px; }
.flow-card:not(:last-child)::after { content: '\f0d7'; display: block; bottom: -25px; left: 50%; transform: translateX(-50%); }
}

/* Compensation Section: Blue (#4c6cb3) & Green (#004831) Theme */
.compensation-section {
padding: 40px 0 60px;
background-color: #fff;
}
.compensation-wrapper {
max-width: 860px;
margin: 0 auto;
position: relative;
padding-top: 25px;
}
.compensation-label {
background: #64b5f6; /* Requested Blue */
color: #fff;
font-weight: 700;
font-family: "Noto Sans JP", sans-serif;
padding: 12px 40px;
border-radius: 50px;
display: inline-block;
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
z-index: 10;
font-size: 1.1rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.compensation-label::after {
content: '';
position: absolute;
bottom: -8px;
left: 50%;
transform: translateX(-50%);
border-width: 8px 8px 0;
border-style: solid;
border-color: #64b5f6 transparent transparent transparent;
}

.compensation-bg {
/* Gradient: Blue #4c6cb3 to Green #004831 */
background: linear-gradient(115deg, #4c6cb3 50%, #004831 50.1%);
border-radius: 20px;
padding: 50px 30px 40px;
position: relative;
}

.compensation-visual {
text-align: center;
margin-bottom: 20px;
}
.compensation-img-wrapper {
background: #fff;
display: inline-block;
padding: 10px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.compensation-img {
max-width: 100%;
height: auto;
width: 300px;
display: block;
}

.compensation-content-box {
background: #fff;
border-radius: 12px;
padding: 30px 40px;
margin: 0 auto;
max-width: 760px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
}

.compensation-title {
color: #4c6cb3; /* Requested Blue */
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.3;
}

.compensation-text {
color: #333;
font-size: 1rem;
line-height: 1.8;
font-weight: 500;
}

.pc-only { display: inline; }
.sp-only { display: none; }

@media (max-width: 768px) {
.compensation-wrapper { padding-top: 20px; }
.compensation-label { font-size: 0.9rem; padding: 8px 25px; }
.compensation-bg { 
padding: 40px 15px 30px;
background: linear-gradient(135deg, #4c6cb3 40%, #004831 40.1%);
}
.compensation-content-box { padding: 25px 20px; }
.compensation-title { font-size: 1.3rem; }
.compensation-text { font-size: 0.9rem; text-align: left; }
.pc-only { display: none; }
.sp-only { display: inline; }
}

/* Back to Top Button */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: #4c6cb3; /* Blue */
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.3s;
text-decoration: none;
}
.back-to-top.show {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: #004831; /* Green hover */
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Wave Shapes for Pricing Section */
.wave-shape-top {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
z-index: 1;
}
.wave-shape-top svg {
display: block;
width: calc(100% + 1.3px);
height: 60px;
}
.wave-shape-top .wave-fill {
fill: #fdfdfd; /* Match body bg var(--bg-body) */
}

.wave-shape-bottom {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
z-index: 1;
}
.wave-shape-bottom svg {
display: block;
width: calc(100% + 1.3px);
height: 60px;
}
.wave-shape-bottom .wave-fill {
fill: #ffffff; /* Match problem section bg */
}

#pricing {
position: relative;
padding-top: 100px;
padding-bottom: 120px;
}

/* Area Coverage Section */
.area-section { padding: 80px 0; background: #e3f2fd; }
.area-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.area-content { flex: 1; max-width: 500px; }
.area-title { font-size: 2.2rem; font-weight: 700; line-height: 1.4; margin-bottom: 20px; color: #333; }
.area-title-blue { color: #4c6cb3; }
.area-desc { font-size: 1rem; line-height: 1.8; margin-bottom: 30px; color: #333; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.area-tag { background: #f5f5f5; padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; color: #444; }
/* Link styling matching design */
.area-link { color: #4c6cb3; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; font-size: 1rem; transition: opacity 0.3s; }
.area-link:hover { opacity: 0.8; }

.area-map { flex: 1; position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.area-map-img { width: 100%; height: auto; display: block; border-radius: 20px; }
.area-map-label {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 background: rgba(255,255,255,0.9);
 padding: 10px 20px;
 border-radius: 8px;
 font-weight: 700;
 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
 pointer-events: none; /* Just a label */
}
.sfkc-text-center {
text-align: center;
}
@media (max-width: 768px) {
.area-container { flex-direction: column; gap: 30px; }
.area-content { max-width: 100%; text-align: left; padding: 0 !important;}
.area-title { font-size: 1.6rem; }
.area-desc br { display: none; }
.area-map { width:95%; }
#nayami-section{
padding: 40px 0;
}
}

/* Works Section Wave Customization */
.works-wave-top .wave-fill {
fill: #ffffff !important; /* Match Comparison/Body BG */
}
.works-wave-bottom .wave-fill {
fill: #e3f2fd !important; /* Match Voice Section BG */
}

/* Adjust Works padding for waves */
.works-section {
padding-top: 100px !important;
padding-bottom: 120px !important;
position: relative; /* Ensure relative for absolute waves */
}

/* Fix Web Discount Banner Responsive */
@media (max-width: 768px) {
.appeal-images-wrapper {
margin-top: -40px;
gap: 10px;
}
.hero__container{
display: block;
}
.appeal-img {
width: 95%; /* Ensure it fits with some margin */
}

.campaign-banner {
margin-top: -20px;
padding: 30px 20px;
text-align: center;
}
.campaign-content {
flex-direction: column;
gap: 20px;
}
.campaign-icon-box {
transform: rotate(0);
margin: 0 auto 5px;
padding: 10px 20px;
}
.campaign-icon-text {
font-size: 1.5rem;
}
.campaign-main-text {
font-size: 1.4rem;
flex-direction: column;
gap: 5px;
}
.campaign-highlight {
font-size: 2.2rem;
}
.campaign-sub-text {
font-size: 13px;
}
.campaign-btn-box {
width: 100%;
}
.reason-area,.pricing-grid,.pricing-footer-images,.problem-section,.solution-tags-area,.strength-grid,.comparison-table,.section-header,.works-header,.voice-list,.flow-grid,.items-container,.ng-items-section,.warning-wrapper,.compensation-wrapper,.area-content,.area-map{
margin-left: 15px;
margin-right: 15px;
}
.comparison-bg-text {
bottom: -10px;
right: 9px;
font-size: 59px;
color: rgb(0 0 0 / 22%);
}
.problem-card {
padding: 20px 20px 140px;
}
.swiper-button-next {
right: 50px !important;
}
.solution-tags-area{
margin-bottom: 91px;
}
.solution-cat {
bottom: -119px;
right: -20px;
}
.problem-section {
padding: 20px 0 0px;
}
.problem-title {
font-size: 21px;
margin-bottom: 0px;
}
.section {
padding: 30px 0;
position: relative;
}
.solution-title {
font-size: 21px;
}
.campaign-btn {
justify-content: center;
padding: 15px 20px;
display: block;
}
}

/* Emergency Overflow Fixes */
@media (max-width: 768px) {
/* Hero CTA Button Fix */
.container{
padding: 0;
}
.problem-img-left, .problem-img-right {
position: absolute;
bottom: 0;
width: 100px;
height: auto;
z-index: 1;
}
.problem-img-right {
right: 10px;
width: 140px;
}
.problem-img-left{
left: 0;
}
.hero__cta-btn {
flex-direction: column;
padding: 15px 20px;
text-align: center;
width: 100%; /* Ensure full width of container */
box-sizing: border-box; /* Include padding in width */
}
.header{
position: initial;
}
.hero__cta-btn > div {
width: 100%; /* Text container full width */
}
.hero__cta-btn i.fa-arrow-right {
margin-left: 0 !important;
margin-top: 5px;
transform: rotate(90deg); /* Point down */
}

/* Appeal Images Fix */
.appeal-img {
width: 100% !important;
max-width: 100% !important;
height: auto;
box-sizing: border-box;
}
.appeal-images-wrapper {
width: 100%;
padding: 0 10px;
box-sizing: border-box;
overflow: hidden; /* Prevent sticking out */
}

.hero__title {
font-size: 1.8rem; /* Reduce form 3rem/2.2rem */
word-wrap: break-word;
}
.hero__title-highlight {
font-size: 2rem;
}

/* Fix Mobile CTA Overflow */
.mobile-cta {
box-sizing: border-box;
width: 90%;
max-width: 400px;
padding: 15px 20px !important; /* Override default btn padding */
white-space: nowrap;
}

/* Fix Back to Top Position */
.back-to-top {
right: 15px;
bottom: 90px; /* Move above mobile CTA */
width: 40px;
height: 40px;
font-size: 1rem;
}

/* Fix Campaign Banner Overflow */
.campaign-banner {
box-sizing: border-box;
width: 92%;
margin: 0 auto;
max-width: 100%;
}
/* Responsive Text Sizing to Prevent Cutoff */
.section-title {
font-size: 22px;
display: block;
width: 100%;
word-wrap: break-word;
line-height: 1.4;
}
.section-title::after {
width: 100%;
left: 0;
}

.reason-title {
font-size: 1.4rem;
line-height: 1.4;
word-wrap: break-word;
}
.reason-title span {
font-size: 1.6rem;
display: block;
}

.campaign-highlight {
font-size: 2.2rem; /* Reduced from 3rem */
word-break: break-all;
line-height: 1.1;
display: block;
}
.campaign-main-text {
font-size: 1.4rem; /* Reduced from 2rem */
word-wrap: break-word;
}

/* Ensure Appeal Images don't overflow padding */
.appeal-images-wrapper {
 width: 100%;
 padding: 0 10px;
 box-sizing: border-box;
}
}

/* =========================================
   Hero Section (Redesign)
   ========================================= */
.hero {
position: relative;
padding-top: 130px; /* Space for fixed header */
padding-bottom: 60px;
/* background-color: #f0faff; Removed to show image */
overflow: hidden;
background-image: none !important; /* Override old bg */
}

.hero-bg-pattern {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('../img/fv-back.jpg') center/cover no-repeat;
opacity: 1; /* Was 0.6 */
z-index: 0; /* Was 0 (implicit) or handles layer */
mix-blend-mode: normal; /* Was soft-light */
}
.hero-bg-pattern::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.7); /* White filter */
z-index: 1;
}

.hero__container {
position: relative;
z-index: 1;
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

/* Left Content */
.hero__content-left {
flex: 1;
max-width: 650px;
}

.hero__tag-area {
margin-bottom: 20px;
}

/* "滋賀の" Tag */
.hero__tag-shiga {
background: #4caf50;
color: #fff;
padding: 6px 20px;
border-radius: 4px;
font-weight: 700;
font-size: 1.2rem;
display: inline-block;
position: relative;
box-shadow: 0 4px 6px rgba(76, 175, 80, 0.3);
}
.hero__tag-shiga::after {
content: '';
position: absolute;
bottom: -8px;
left: 20px;
border-top: 8px solid #4caf50;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
}

/* Main Title */
.hero__main-title {
font-size: 3.8rem;
font-weight: 900;
line-height: 1.2;
margin-bottom: 35px;
font-family: var(--font-base);
letter-spacing: -0.02em;
color: #333;
}

.text-orange { color: #002d96; }
.text-green { color: #ff6f00; }
.text-small { font-size: 2rem; color: #444; font-weight: 700; vertical-align: middle; }
.text-sub {
font-size: 2.8rem;
color: #00796b;
display: block;
margin-top: 5px;
text-shadow: 2px 2px 0 rgba(255,255,255,0.8);
}

/* Crowns / Badges */
.hero__badges {
display: flex;
gap: 25px;
margin-bottom: 45px;
}

.hero__badge-item {
position: relative;
width: 200px;
height: 190px;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s;
}
.hero__badge-item:hover {
transform: translateY(-5px);
}

.hero__badge-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

.hero__badge-content {
position: relative;
z-index: 1;
text-align: center;
width: 100%;
padding-top: 10px; /* Adjust based on crown shape center */
}

.hero__badge-text {
font-size: 25px;
font-weight: 900;
color: #5d4037; /* Brown-ish for gold background contrast */
line-height: 1.3;
display: block;
}
.hero__badge-text.text-sm {
font-size: 20px;
}

/* Trust Banner */
.hero__trust-banner {
background: #fff;
border: 2px solid #e0f2f1;
border-radius: 50px;
padding: 15px 30px;
display: inline-flex;
align-items: center;
gap: 15px;
box-shadow: 0 5px 20px rgba(0, 150, 136, 0.1);
position: relative;
max-width: 100%;
}
.hero__trust-banner::before, .hero__trust-banner::after {
content: '🌿'; /* Simple Laurel emoji or use pseudo elements with BG */
font-size: 1.2rem;
color: #ffd700;
}

.trust-text { font-size: 1rem; font-weight: 700; color: #555; }
.trust-num { font-size: 1.6rem; color: #009688; font-weight: 900; font-family: var(--font-en); margin: 0 3px; }
.trust-note { font-size: 0.85rem; color: #999; font-weight: normal; }


/* Right Content (Image) */
.hero__content-right {
flex: 1;
display: flex;
justify-content: flex-end;
align-items: flex-end;
position: relative;
}

.hero__person-wrapper {
position: relative;
z-index: 1;
width: 100%;
max-width: 650px;
}

.hero__person-img {
width: 100%;
height: auto;
display: block;
max-height: 600px;
object-fit: contain;
filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* =========================================
   Responsive (SP / Tablet)
   ========================================= */
@media (max-width: 768px) {
.hero {
padding-top: 20px;
padding-bottom: 80px;
text-align: center;
/* Background is on .hero-bg-pattern, adjust there */
}
.hero-bg-pattern {
background-position: 50% 100% !important; /* Adjust percentages: horizontal vertical */
background-size: cover;
}

.hero__container {
flex-direction: column;
gap: 20px;
padding: 0;
align-items: center;
}

.hero__content-left {
width: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}

.hero__main-title {
font-size: 2.2rem; /* Smaller for mobile */
margin-bottom: 0px;
line-height: 1.3;
}
.hero__badge-text{
font-size: 20px;
}
.text-small { font-size: 1.4rem; }
.text-sub { font-size: 1.8rem; }

.hero__badges {
justify-content: center;
gap: 0px;
margin-bottom: 30px;
}
.hero__badge-item {
width: 110px;
height: 110px;
}
.hero__badge-text.text-sm { font-size: 0.75rem; }

.hero__trust-banner {
padding: 10px 20px;
width: 90%;
justify-content: center;
flex-wrap: wrap;
}
.trust-text { font-size: 0.9rem; }
.trust-num { font-size: 1.3rem; }

.hero__content-right {
width: 100%;
justify-content: center;
margin-top: 10px;
}
.hero__person-img {
max-width: 400px;
max-height: 400px;
margin: 0 auto;
}
}

@media (max-width: 480px) {
.hero__main-title {
font-size: 1.8rem;
}
.text-sub { font-size: 1.5rem; }

.hero__badge-item {
width: 90px;
height: 90px;
}
.hero__badge-content { padding-top: 5px; }
}

/* Trust Cards (Bottom Row) */
.hero__container {
flex-wrap: nowrap !important; /* Force side-by-side */
align-items: center;
}

/* Ensure flex children shrink properly */
.hero__content-left {
flex: 1 1 65%; /* Grow, Shrink, Basis 50% */
min-width: 0;
}
.hero__content-right {
flex: 1 1 35%; /* Grow, Shrink, Basis 50% */
min-width: 0;
}


.hero__trust-cards-container {
width: 100%;
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 40px;
}

.hero__trust-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
display: flex;
align-items: stretch;
flex: 1;
overflow: hidden;
position: relative;
min-height: 80px;
}

.trust-card-tag {
background: #e67e22;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
padding: 0 15px;
font-weight: 700;
font-size: 1.1rem;
position: relative;
min-width: 60px;
}
.trust-card-tag::after {
content: '';
position: absolute;
top: 50%;
right: -10px;
margin-top: -10px;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid #002d96; /* Arrow shape */
}

.trust-card-tag.orange { background: #002d96; }
.trust-card-tag.orange::after { border-left-color: #002d96; }

.trust-card-body {
flex: 1;
display: flex;
align-items: center;
justify-content: center; /* Center content */
padding: 10px 15px;
gap: 15px;
}

.trust-card-label {
font-size: 1rem;
font-weight: 700;
color: #333;
line-height: 1.3;
text-align: left;
}
.text-xs { font-size: 0.8rem; font-weight: normal; }

.trust-card-value {
font-size: 2.8rem;
font-weight: 900;
color: #002d96; /* Darker orange/red matching text-orange */
line-height: 1;
font-family: var(--font-en);
}
.trust-card-value .unit {
font-size: 1.2rem;
color: #333;
margin-left: 5px;
vertical-align: middle;
}

/* Responsive for Trust Cards */
@media (max-width: 992px) {
.hero__trust-cards-container {
flex-direction: column;
gap: 15px;
margin-top: 30px;
width: 92%;
}
.hero__trust-card {
width: 100%;
max-width: 500px;
margin: 0 auto;
}
.trust-card-body {
padding: 10px;
}
}

/* =========================================
   FV Campaign Banner (Right Side)
   ========================================= */
.hero__campaign-area {
margin-top: 20px;
width: 100%;
}

/* Ticket Design */
.campaign-ticket {
background: #f7d94c; /* Yellow */
border-radius: 8px;
position: relative;
padding: 15px 4px;
display: flex;
flex-wrap: wrap;
align-items: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
margin-bottom: 5px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}

.campaign-ticket::before {
    content: '';
    position: absolute;
    left: 85px;
    top: 3px;
    max-height: 86px;
    bottom: 0px;
    border-left: 3px dashed #fff;
}

.ticket-left {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 80px;
}

.ticket-tag {
background: #002d96; /* Teal */
color: #fff;
font-size: 0.8rem;
padding: 2px 8px;
border-radius: 4px;
font-weight: 700;
margin-bottom: 5px;
white-space: nowrap;
}
.ticket-title {
font-size: 1.4rem;
font-weight: 900;
color: #333;
line-height: 1;
}

/* Ticket Right */
.ticket-right {
flex: 1;
display: flex;
align-items: center;
gap: 10px;
padding-left: 15px;
}

.pack-circle {
background: #fff;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
flex-shrink: 0;
}
.pack-name {
font-size: 0.8rem;
font-weight: 700;
line-height: 1.1;
color: #333;
}

.price-area {
display: flex;
align-items: center;
font-family: var(--font-en);
}
.price-val {
font-size: 3rem;
font-weight: 900;
color: #333;
line-height: 0.9;
letter-spacing: -2px;
margin-right: 5px;
font-style: italic;
}
.price-sub {
display: flex;
font-size: 19px;
line-height: 1;
font-weight: 700;
}

.ticket-footer {
width: 100%;
text-align: center;
background: #fff;
padding: 5px;
font-size: 0.8rem;
font-weight: 700;
margin-top: 10px;
color: #333;
border-radius: 4px;
}
.ticket-footer .highlight {
color: #002d96;
}

/* Speed Banner */
.speed-banner {
background: #002d96; /* Muted Blue/Teal */
color: #fff;
padding: 12px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
font-weight: 900;
font-size: 1.4rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.speed-icon {
font-size: 1.5rem;
color: #fff;
}

/* Ensure FontAwesome is available, typically is. If not, text only fallback */

@media (max-width: 768px) {
.campaign-ticket::before { display: none; } /* Simplify on mobile */
.ticket-left {
width: 100%;
flex-direction: row;
gap: 10px;

margin-bottom: 10px;
border-bottom: 2px dashed #fff;
padding-bottom: 10px;
}
.ticket-right {
width: 100%;
padding-left: 0;
}
.ticket-tag{
margin-bottom: 0;
}
.hero__campaign-area {
max-width: 500px;
margin: 15px auto 0;
}
.speed-banner { font-size: 15px; 
padding: 12px 5px;
}
}

/* =========================================
   FV Right Column Vertical Stack (Cat Top, Banner Bottom)
   ========================================= */
.hero__content-right {
display: flex;
flex-direction: column;
align-items: center; /* Center items horizontally */
position: relative;
height: auto;
justify-content: flex-end;
}

.hero__person-wrapper {
position: relative; /* Reset from absolute */
width: 260px; /* Adjust size as needed */
z-index: 10;
margin-bottom: -32px; /* Slight overlap into banner below? Or just 0 */
/* If referring to 'holding' style, maybe negative margin */
}
.hero__person-img {
width: 100%;
height: auto;
object-fit: contain;
filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.hero__campaign-area {
margin-top: 0;
width: 100%;
position: relative;
z-index: 11; /* In front of cat feet? Or behind? Usually banner is main. */
/* Reference image 2: Person pointing down AT banner. Banner is below. */
/* Let's put Banner in front slightly if overlaps. */
padding-left: 0;
max-width: 480px;
}

/* Specific overlapping alignment */
.campaign-ticket {
margin-bottom: 0;
border-bottom-left-radius: 0; 
border-bottom-right-radius: 0;
/* Create a 'board' look */
}
.speed-banner {
border-top-left-radius: 0;
border-top-right-radius: 0;
}

@media (max-width: 992px) {
.hero__content-right {
margin-top: 30px;
}
.hero__person-wrapper {
width: 220px;
}
}

/* =========================================
   FV Badge Separator (Cross Mark)
   ========================================= */
.hero__badge-cross {
position: relative;
width: 24px;
height: 24px;
margin: 0 4px; /* Tight spacing */
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.hero__badge-cross::before,
.hero__badge-cross::after {
content: '';
position: absolute;
width: 8px;
height: 34px;
background: #470400;
border: 2px solid #fff;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__badge-cross::before {
transform: rotate(45deg);
}

.hero__badge-cross::after {
transform: rotate(-45deg);
}

/* Adjust badge container alignment */
.hero__badges {
align-items: center; 
gap: 0; /* Let cross handle spacing */
flex-wrap: nowrap; /* Don't wrap lines of badges */
}

/* Ensure badges don't shrink too much */
.hero__badge-item {
flex-shrink: 0;
}

@media (max-width: 480px) {
/* Background Image Update */
.hero-bg-pattern {
background: url('../img/sp-fv.png') center bottom / cover no-repeat !important;
background-position: -160px -50px !important
}
.hero-bg-pattern::before{
background-color: transparent;
}
.pack-circle{
width: 40px;
height: 40px;
}
.pack-name {
font-size: 12px;

}
.hero__container {
display: flex !important;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
gap: 15px !important;
overflow: visible;
position: relative;
}
.price-val{
font-size: 36px;
margin-right: 7px;
}
.campaign-ticket {
padding: 15px 5px;
}
.price-sub {
font-size: 11px;
}
.hero__content-left {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
z-index: 2;
}

/* Font Sizes */
.hero__main-title { 
font-size: 1.8rem; 
margin-bottom: 0;
}
.text-sub { font-size: 1.5rem; }

/* Badges Layout: Single Row (3 cols) */
.hero__badges {
display: grid !important;
grid-template-columns: 1fr 1fr 1fr;
justify-content: center;
gap: 5px;
margin-bottom: 10px;
width: 100%; /* Full width */
margin-right: 0;
margin-left: 0;
z-index: 21;
}

.hero__badge-cross { display: none !important; }

/* Reset Item Styles for 3-col */
.hero__badge-item {
width: 100% !important;
height: auto;
aspect-ratio: 1 / 1;
margin: 0;
}
.hero__badge-item:nth-child(1) {
grid-column: auto; /* Reset span */
justify-self: center;
width: 100% !important;
height: auto;
}
.hero__badge-item:nth-child(3),
.hero__badge-item:nth-child(5) {
width: 100% !important;
max-width: none;
height: auto;
}

.hero__badge-img { object-fit: contain; }
.hero__badge-content { padding-top: 5px; }

/* Badge Text Sizing */
.hero__badge-text { font-size: 16px; }
.hero__badge-text.text-sm { font-size: 0.6rem; }

/* 
   Content Right: Banner (Left) + Elephant (Right) 
   Using Flex row-reverse because Elephant is 1st in DOM, Banner is 2nd.
   row-reverse -> 2nd(Banner) Left, 1st(Elephant) Right.
*/
.hero__content-right {
display: flex !important;
flex-direction: row-reverse;
align-items: flex-end;
justify-content: center;
width: 100%;
margin-top: 0;
gap: 10px;
position: relative;
}

.hero__person-wrapper {
position: relative !important;
width: 45%; /* Slightly smaller than half */
right: auto; 
bottom: auto;
z-index: 10;
margin: 0;
pointer-events: none;
flex-shrink: 0;
margin-left: -10px; /* Slight overlap or pull */
}

.hero__campaign-area {
width: 53%; /* Banner takes more space */
margin: 0;
padding: 0; /* Clear previous padding */
z-index: 11;
flex-shrink: 1;
}

/* Adjust Banner Content for small width */
.campaign-banner {
padding: 10px 5px;
width: 84%;
margin-top: 0;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.campaign-content { gap: 5px; }
.campaign-main-text { 
font-size: 1rem; 
flex-wrap: wrap; 
justify-content: center;
}
.campaign-highlight { font-size: 1.6rem; }
.campaign-btn { 
padding: 8px 10px; 
font-size: 0.8rem; 
width: 92%; 
justify-content: center;
}
.campaign-icon-box { 
padding: 5px 10px;
margin-bottom: 0;
}
.campaign-icon-text { font-size: 1.2rem; }

/* Mobile Utilities */
.pc { display: none !important; }
.sp { display: block !important; }
.hero__main-title span { display: inline-block; }
}

/* =========================================
   Site Header
   ========================================= */
.site-header-wrapper {
background: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
position: relative;
z-index: 1000;
}

.site-header {
display: flex;
align-items: center;
justify-content: center;
gap: 40px;
padding: 12px 24px;
max-width: 1140px;
margin: 0 auto;
}

.site-header__logo img {
height: auto;
max-height: 50px;
display: block;
}

.site-header__contact {
display: flex;
gap: 4px;
}

.site-header__contact img {
height: auto;
}

/* ハンバーガーボタン */
.hamburger-btn {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 36px;
height: 36px;
background: none;
border: none;
cursor: pointer;
padding: 4px;
z-index: 1100;
position: relative;
}

.hamburger-btn__line {
display: block;
width: 100%;
height: 3px;
background: #333;
border-radius: 2px;
transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ハンバーガー → ✕ アニメーション */
.hamburger-btn.is-active .hamburger-btn__line:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(2) {
opacity: 0;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}

/* ドロワーメニュー */
.sp-drawer {
display: none;
}

.sp-drawer__overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 1050;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sp-drawer__menu {
position: fixed;
top: 0;
right: -280px;
width: 280px;
height: 100%;
background: #fff;
z-index: 1060;
padding: 80px 24px 40px;
box-shadow: -4px 0 20px rgba(0,0,0,0.1);
transition: right 0.3s ease;
overflow-y: auto;
}

.sp-drawer.is-open .sp-drawer__overlay {
opacity: 1;
visibility: visible;
}

.sp-drawer.is-open .sp-drawer__menu {
right: 0;
}

.sp-drawer__menu ul {
list-style: none;
padding: 0;
margin: 0 0 30px;
}

.sp-drawer__menu ul li {
border-bottom: 1px solid #eee;
}

.sp-drawer__menu ul li a {
display: block;
padding: 16px 8px;
font-size: 1rem;
font-weight: 700;
color: #333;
text-decoration: none;
transition: background 0.2s;
}

.sp-drawer__menu ul li a:hover {
background: #f5f5f5;
}

/* ドロワー内お問い合わせボタン */
.sp-drawer__contact {
display: flex;
flex-direction: column;
gap: 10px;
}

.sp-drawer__contact-btn {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 16px;
border-radius: 8px;
font-weight: 700;
font-size: 0.95rem;
text-decoration: none;
color: #fff;
transition: opacity 0.2s;
}

.sp-drawer__contact-btn:hover {
opacity: 0.85;
}

.sp-drawer__contact-btn--tel {
background: #e67e22;
}

.sp-drawer__contact-btn--line {
background: #06c755;
}

.sp-drawer__contact-btn--mail {
background: #3498db;
}

.sp-drawer__contact-btn i {
font-size: 1.1rem;
}

/* スクロール禁止 */
body.no-scroll {
overflow: hidden;
}
.web-text-center,.web-text-center img{
text-align: center;
display: block;
margin: 0 auto;
}
/* ========== スマホ対応 ========== */
@media (max-width: 768px) {
.site-header {
justify-content: space-between;
padding: 10px 16px;
gap: 0;
}

.site-header__logo img {
max-height: 36px;
}
.sp-small-text {
font-size: 15px;
}
.hamburger-btn {
display: flex;
}

.sp-drawer {
display: block;
}
.top-cta-tel-text {
left: 89px;
bottom: 9px;
color: white;
font-size: 47px;
font-weight: 800;
margin: 0;
padding: 0;
text-decoration: none;
}
}

/* =========================================
   About Article Section
   ========================================= */
.about-article-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef1f6 100%);
  padding: 70px 0;
  position: relative;
}
.about-article-section .wave-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.about-article-section .wave-shape-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.about-article-section .wave-shape-top .wave-fill {
  fill: #e3f2fd;
}
.about-article-section .wave-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.about-article-section .wave-shape-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.about-article-section .wave-shape-bottom .wave-fill {
  fill: #ffffff;
}
.about-article-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-article-lead {
  display: inline-block;
  color: #e53935;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background: rgba(229,57,53,0.08);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.about-article-h2 {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.5;
}
.about-article-h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #1565C0 100%);
  margin: 14px auto 0;
  border-radius: 2px;
}
.about-article-body {
  max-width: 820px;
  margin: 0 auto;
}

/* Intro Box */
.about-intro-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.about-intro-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), #1565C0, var(--accent));
}
.about-intro-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-main);
  margin-bottom: 18px;
}
.about-intro-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
  counter-reset: intro-count;
}
.about-intro-list li {
  counter-increment: intro-count;
  position: relative;
  padding-left: 32px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 8px;
}
.about-intro-list li::before {
  content: counter(intro-count);
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Section blocks */
.about-sec {
  margin-bottom: 36px;
}
.about-sec-h3 {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(21,101,192,0.25);
  letter-spacing: 0.02em;
}
.about-sec-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
  padding: 0 4px;
}

/* Points list */
.about-points {
  list-style: none;
  padding: 16px 20px;
  margin: 0 0 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e6ed;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-points li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-main);
  font-weight: 500;
}
.about-points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: #fff;
  background: var(--primary);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* Note */
.about-sec-note {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #555;
  margin-top: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border-left: 4px solid #43A047;
  border-radius: 8px;
}

/* ---- Comparison Table (Modern) ---- */
.about-comparison-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.about-cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 0.85rem;
  border-radius: 12px;
  overflow: hidden;
}
.about-cmp-table thead th {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  color: #fff;
  background: #546E7A;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.about-cmp-table thead th:last-child {
  border-right: none;
}
.about-cmp-th-private {
  background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%) !important;
}
.about-cmp-th-public {
  background: linear-gradient(135deg, #43A047 0%, #66BB6A 100%) !important;
}
.about-cmp-table thead th:first-child {
  width: 110px;
  background: #455A64 !important;
}
.about-cmp-table tbody tr {
  transition: background 0.15s;
}
.about-cmp-table tbody tr:hover {
  background: #f8fafe;
}
.about-cmp-table tbody td {
  border-bottom: 1px solid #eef0f3;
  border-right: 1px solid #eef0f3;
}
.about-cmp-table tbody td:last-child {
  border-right: none;
}
.about-cmp-item {
  padding: 16px;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  background: #fafbfc;
  white-space: nowrap;
  font-size: 0.82rem;
}
.about-cmp-cell {
  padding: 20px 16px;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  min-height: 70px;
}
.about-cmp-bg-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.about-cmp-bg-symbol[data-rating="5"] { color: #1565C0; opacity: 0.2; }
.about-cmp-bg-symbol[data-rating="4"] { color: #43A047; opacity: 0.2; }
.about-cmp-bg-symbol[data-rating="3"] { color: #FFA726; opacity: 0.2; }
.about-cmp-bg-symbol[data-rating="2"] { color: #e53935; opacity: 0.2; }
.about-cmp-bg-symbol[data-rating="1"] { color: #e53935; opacity: 0.2; }
.about-cmp-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #444;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ---- Sub sections (h4) ---- */
.about-subsec-box {
  border: 1px solid #cfd8dc;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
}
.about-subsec-box-header {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  letter-spacing: 0.03em;
}
.about-subsec-box-body {
  padding: 8px 24px 16px;
}
.about-subsec {
  background: none;
  border-radius: 0;
  padding: 16px 0 16px 0;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: none;
  transition: none;
}
.about-subsec:last-child {
  border-bottom: none;
}
.about-subsec:hover {
  box-shadow: none;
  transform: none;
}
.about-subsec-h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
}
.about-subsec-h4::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}
.about-subsec-body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #888;
  margin: 4px 0 0;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .about-article-section { padding: 44px 15px; }
  .about-article-h2 { font-size: 1.3rem; }
  .about-sec-h3 { font-size: 0.92rem; padding: 13px 16px; }
  .about-intro-box { padding: 20px 18px; border-radius: 12px; }
  .about-subsec { padding: 16px 14px; }
  .about-subsec-h4 { font-size: 0.92rem; }
  .about-cmp-table { font-size: 0.76rem; }
  .about-cmp-item { font-size: 0.75rem; padding: 10px 8px; }
  .about-cmp-cell { padding: 10px; }
  .about-star { font-size: 0.78rem; }
  .about-cmp-desc { font-size: 0.72rem; }
}

/* =========================================
   Company Info & Greeting Section
   ========================================= */
.company-section {
  background: #e3f2fd;
  padding: 60px 0;
  position: relative;
}
.company-info-block {
  max-width: 800px;
  margin: 0 auto 30px;
  border: 2px solid #42A5F5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.company-info-header {
  background: linear-gradient(135deg, #42A5F5 0%, #1E88E5 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  padding: 14px 16px;
  letter-spacing: 0.03em;
}
.company-info-body {
  padding: 24px 28px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr:not(:last-child) {
  border-bottom: 1px solid #e8ecf0;
}
.company-table th {
  text-align: left;
  font-weight: 700;
  color: var(--text-main);
  padding: 12px 16px 12px 0;
  white-space: nowrap;
  width: 100px;
  font-size: 0.88rem;
  vertical-align: top;
}
.company-table td {
  padding: 12px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}
/* ---- Greeting Section Title ---- */
.greeting-section-header {
  text-align: center;
  margin-bottom: 30px;
}
.greeting-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  position: relative;
  display: inline-block;
  padding: 0 24px;
  letter-spacing: 0.08em;
}
.greeting-section-title::before,
.greeting-section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #999;
}
.greeting-section-title::before { right: 100%; }
.greeting-section-title::after  { left: 100%; }

/* ---- Greeting Block ---- */
.company-greeting-block {
  max-width: 800px;
  margin: 0 auto;
  background: #2c3e50;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  position: relative;
}
.company-greeting-photo-col {
  flex: 0 0 240px;
  position: relative;
  overflow: hidden;
}
.company-greeting-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.company-greeting-cursive {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
.company-greeting-text-col {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company-greeting-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.company-greeting-text {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

@media (max-width: 768px) {
  .company-greeting-block {
    flex-direction: column;
    border-radius: 10px;
  }
  .company-greeting-photo-col {
    flex: 0 0 auto;
    max-height: 290px;
  }
  .company-greeting-text-col {
    padding: 24px 20px;
  }
  .company-greeting-title {
    font-size: 1.1rem;
  }
  .company-greeting-photo {
    width: 61%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 19px auto;
    border-radius: 160px;
}
  .company-greeting-text {
    font-size: 0.82rem;
  }
  .greeting-section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .company-section { padding: 40px 15px; }
  .company-info-body,
  .company-greeting-body { padding: 18px 16px; }
  .company-info-header,
  .company-greeting-header { font-size: 0.92rem; padding: 12px; }
  .company-table th { font-size: 0.8rem; width: 80px; }
  .company-table td { font-size: 0.82rem; }
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
  background-color: #fff;
  padding: 60px 0;
}
.faq-section .section-header {
  margin-bottom: 40px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f8f8f8;
}
.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #1abccc;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.faq-q-text {
  flex: 1;
  font-weight: 600;
  line-height: 1.5;
}
.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #aaa;
  transition: transform 0.3s;
  min-width: 20px;
  text-align: center;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  background: #f9fafb;
  border-top: 0 solid #eee;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 20px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.faq-answer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-section { padding: 40px 0; }
  .faq-question { padding: 14px 16px; font-size: 0.88rem; gap: 10px; }
  .faq-q-icon { width: 24px; height: 24px; min-width: 24px; font-size: 0.75rem; }
  .faq-answer p { font-size: 0.85rem; }
.trust-card-tag {
    background: #e67e22;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-weight: 700;
        font-size: 16px;
        position: relative;
        min-width: 90px;
}
.trust-card-value {
    font-size: 35px;
    font-weight: 900;
    color: #002d96;
    line-height: 1;
    font-family: var(--font-en);
}
}

/* =========================================
   Area Page - Works Grid (non-swiper)
   ========================================= */
.area-works-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.area-works-grid .work-card {
  width: 480px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .area-works-grid {
    gap: 20px;
    padding: 0 15px;
  }
  .area-works-grid .work-card {
    width: 100%;
  }
}
.area-intro-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/pc-action-bg.png);
    background-size: cover;
  background-position: center;
  padding: 50px 0 40px;
}
.area-intro-section .container {
  max-width: 860px;
}
.area-intro-heading {
  font-size: 2rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
}
.area-intro-heading-region {
  color: #002d96;
  font-size: 1.5rem;
  font-weight: 700;
}
.area-intro-heading-main {
  font-size: 2.2rem;
  color: #222;
}
.area-intro-underline {
  background: linear-gradient(transparent 70%, #ffeb3b 70%);
  font-weight: 900;
}
.area-intro-grid {
  display: flex;
  align-items: flex-start;
}
.area-intro-left {
  flex: 1;
}
.area-intro-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.6;
  color: #222;
  margin-bottom: 16px;
}
.area-intro-accent {
  color: #002d96;
  font-weight: 900;
}
.area-intro-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}
.area-intro-quote {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.area-intro-quote-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.area-intro-quote-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
.area-intro-quote-mark {
  font-size: 2rem;
  color: #c9a96e;
  font-family: serif;
  line-height: 1;
  margin-right: 4px;
}
.area-intro-right {
  flex: 0 0 380px;
}
.area-intro-sdgs-card {
  border-radius: 12px;
  overflow: hidden;
}
.area-intro-sdgs-header {
  background: #002d96;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 14px 16px;
  line-height: 1.5;
}
.area-intro-sdgs-img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .area-intro-grid {
    flex-direction: column;
    gap: 24px;
  }
  .area-intro-right {
    flex: auto;
    width: 100%;
  }
  .area-intro-title {
    font-size: 1.2rem;
  }
}