/* Service Hero Section */
.service-hero {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    margin-top: 60px;
    margin-bottom: 80px;
}

.service-hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 48px;
}

.service-hero-content {
    margin-top: 60px;
    flex: 1;
    min-width: 320px;
}

.service-hero-title-row {
    margin-bottom: 16px;
}

.service-hero-link {
    color: #2476b7;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    font-family: 'Noto Serif JP', serif;
}

.service-hero-link-arrow {
    margin-right: 8px;
    font-size: 1.1em;
}

.service-hero-link-text {
    text-decoration: underline;
}

.service-hero-title {
    font-size: 4rem;
    color: #5a8bb0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
}

.service-hero-image {
    flex: 1;
    min-width: 400px;
    max-width: 700px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(90,139,176,0.12);
    background: linear-gradient(120deg, rgba(90,139,176,0.08) 60%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 32px 0;
    }
    .service-hero-inner {
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
        align-items: stretch;
    }
    .service-hero-content {
        margin-top: 0;
        text-align: center;
    }
    .service-hero-title {
        font-size: 2.2rem;
    }
    .service-hero-link {
        font-size: 1rem;
        justify-content: center;
    }
    .service-hero-image {
        min-width: 0;
        max-width: 100%;
        border-radius: 12px;
    }
    .service-hero-image img {
        border-radius: 12px;
    }
}

/* Payment Methods Section */
.payment-methods {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.payment-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.payment-category h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

.payment-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.payment-list {
    list-style: none;
}

.payment-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s;
}

.payment-list li:hover {
    transform: translateX(10px);
}

.payment-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

/* Security Measures Section */
.security-measures {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.security-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.security-card ul {
    list-style: none;
}

.security-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.security-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Business Support Section */
.business-support {
    padding: 5rem 0;
    background-color: var(--white);
}

.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.support-category h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.support-list {
    list-style: none;
}

.support-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

.support-list li:hover {
    transform: translateX(10px);
    background-color: #e8e8e8;
}

/* Contact CTA Section */
.contact-cta {
    padding: 5rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.contact-cta .section-title {
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    min-width: 200px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        height: 300px;
    }

    .service-hero-content h2 {
        font-size: 2rem;
    }

    .service-hero-content p {
        font-size: 1.2rem;
    }

    .service-hero-content h3 {
        font-size: 1.5rem;
    }

    .payment-categories,
    .security-grid,
    .support-categories {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* PGマルチペイメント サービス紹介セクション */
.pg-multipayment-section {
    background: #f8fbfd;
    padding: 60px 0;
}
.pg-multipayment-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    border-radius: 18px;
}
.pg-multipayment-container {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: 48px;
}
.pg-multipayment-content {
    flex: 1;
    min-width: 320px;
}
.pg-multipayment-lead {
    color: #2476b7;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}
.pg-multipayment-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.pg-multipayment-desc {
    font-size: 1.1rem;
    color: #444;
    line-height: 2;
}
.pg-multipayment-link {
    color: #2476b7;
    font-weight: bold;
    text-decoration: underline;
}
.pg-multipayment-image {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-multipayment-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(90,139,176,0.12);
    background: #fff;
}
@media (max-width: 900px) {
    .pg-multipayment-container {
        flex-direction: column;
        gap: 32px;
        max-width: 100%;
    }
    .pg-multipayment-image {
        max-width: 100%;
    }
}

section {
  /* max-width, margin, padding-left, padding-right を削除して全幅に */
}

/* 選ばれる理由セクション */
.reasons-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.reasons-lead {
  color: #2476b7;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.reasons-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2.5rem;
}
.reasons-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.reason-circle {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, #3571b8 0%, #5a8bb0 100%);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(90,139,176,0.10);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  position: relative;
  border: 4px solid transparent;
}
.reason-circle.active {
  box-shadow: 0 8px 32px rgba(90,139,176,0.18);
  border: 4px solid #2476b7;
  background: linear-gradient(135deg, #5a8bb0 0%, #3571b8 100%);
}
.reason-label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}
.reason-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.reason-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.reason-toggle {
  font-size: 2rem;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}
.reason-circle.active .reason-toggle {
  opacity: 1;
}
.reason-detail {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid #2476b7;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(90,139,176,0.08);
  padding: 2.5rem 2rem;
  text-align: left;
}
.reason-detail-label {
  color: #2476b7;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.reason-detail-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.reason-detail-desc {
  font-size: 1.1rem;
  color: #444;
  line-height: 2;
}
.reason-detail-container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


@media (max-width: 900px) {
  .reasons-list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .reason-circle {
    width: 260px;
    height: 260px;
  }
}

/* サービス導入の流れセクション */
.flow-section {
  background: #f4f7f9;
  padding: 60px 0;
}
.flow-inner {
  display: flex;
  gap: 48px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.flow-left {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flow-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
.flow-lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.flow-desc {
  font-size: 1rem;
  color: #666;
  line-height: 2;
}
.flow-note {
  font-size: 0.95rem;
  color: #999;
  margin-top: 1.2rem;
  display: block;
}
.flow-right {
  flex: 1.2;
  min-width: 340px;
}
.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.flow-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(90,139,176,0.08);
  border: 1.5px solid #e0e6ed;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
}
.flow-item.active {
  border: 1.5px solid #3571b8;
  box-shadow: 0 4px 24px rgba(53,113,184,0.10);
}
.flow-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  position: relative;
}
.flow-label {
  font-size: 0.9rem;
  color: #3571b8;
  font-weight: bold;
  background: #eaf2fa;
  border-radius: 6px;
  padding: 0.2em 0.8em;
  margin-right: 6px;
}
.flow-step {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  flex: 1;
}
.flow-badge {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.2em 0.8em;
  margin-left: 4px;
  display: inline-block;
}
.flow-badge-container{
  display: flex;
  gap: 2px;
  flex-direction: column;
}
.flow-badge.gmo {
  background: #3571b8;
  color: #fff;
}
.flow-badge.client {
  background: #e0e6ed;
  color: #333;
}
.flow-badge.service {
  background: #6fa1e6;
  color: #fff;
}
.flow-toggle {
  font-size: 1.5rem;
  color: #3571b8;
  margin-left: 10px;
  font-weight: bold;
  user-select: none;
}
.flow-detail {
  padding: 1.2rem 2rem 1.5rem 2rem;
  font-size: 1rem;
  color: #444;
  border-top: 1px solid #e0e6ed;
  background: #fafdff;
  display: block;
}
.flow-item:not(.active) .flow-detail {
  display: none;
}
.flow-step-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  gap: 4px;
}
.flow-badges-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.flow-step {
  width: 100%;
  text-align: left;
}
@media (max-width: 900px) {
  .flow-inner {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    padding: 0 8px;
  }
  .flow-left, .flow-right {
    min-width: 0;
    max-width: 100%;
  }
  .flow-header {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    padding: 1rem 0.7rem;
  }
  .flow-step-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    gap: 4px;
  }
  .flow-badges-col {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
  }
  .flow-step {
    font-size: 0.95rem;
    min-width: 0;
    flex: 1;
    word-break: break-word;
    width: 100%;
    text-align: left;
  }
  .flow-badge, .flow-label {
    margin-bottom: 0;
    margin-top: 4px;
  }
  .flow-header > * {
    margin-right: 6px;
    margin-bottom: 4px;
  }
  .flow-header > *:last-child {
    margin-right: 0;
  }
  .flow-badge-righttop {
    top: 8px;
    right: 10px;
    font-size: 0.92rem;
    padding: 0.18em 0.7em;
  }
}
.service-contact{
  padding: 80px 20px;
  text-align: center;
}

.contact-btn {
  display: inline-block;
  margin: 2rem auto 0 auto;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #3571b8 0%, #5a8bb0 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(53,113,184,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.contact-btn:hover {
  background: linear-gradient(90deg, #2256a3 0%, #3571b8 100%);
  box-shadow: 0 4px 24px rgba(53,113,184,0.18);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
} 