@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

a {
  background-color: transparent;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/* Base Styles */
html {
  font-size: 10px;
}

@media screen and (max-width: 719px) {
  html {
    font-size: 2.66667vw;
  }
}

body {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  background: transparent;
  color: #191919;
  margin: 0;
}

.fixed-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('../../images/haikei.jpeg') center center / cover no-repeat;
  z-index: 0;
}

header, main, footer {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 720px) {
  body {
    line-height: 1.6em;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 719px) {
  body {
    line-height: 1.6em;
    font-size: 1.4rem;
  }
}

/* Foundation */
* {
  box-sizing: border-box;
}

a {
  color: #191919;
  transition: opacity .5s ease, color .5s ease, background-color .5s ease, text-decoration .5s ease;
}

a:link, a:visited {
  text-decoration: underline;
}

a:active, a:hover {
  color: #5cc5d8;
  text-decoration: none;
}

p {
  margin-top: 0;
}

@media screen and (min-width: 720px) {
  p {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 719px) {
  p {
    margin-bottom: 1.8rem;
  }
}

ul, ol {
  margin-top: 0;
  padding-left: 1em;
}

@media screen and (min-width: 720px) {
  ul, ol {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 719px) {
  ul, ol {
    margin-bottom: 2rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: normal;
  padding: 0;
  margin: 0;
  font-size: 1em;
  font-weight: normal;
}

@media screen and (min-width: 720px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 719px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 2rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  pointer-events: none !important;
}

:focus {
  outline: none;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (min-width: 720px) {
  table {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 719px) {
  table {
    margin-bottom: 1.8rem;
  }
}

table tr th, table tr td {
  padding: 1rem;
  border: 1px solid #dbdbdb;
  font-size: 1.4rem;
  text-align: center;
  vertical-align: top;
}

table tr th {
  background-color: #f7f7f7;
  text-align: center;
  color: #666666;
  font-weight: normal;
}

table tr td {
  background-color: #ffffff;
}

/* Section Spacing */
.l-contents__inner > section {
  margin-bottom: 80px;
}

/* Comparison Table Styles */
.comparison-table-section {
  margin: 4rem 0;
  padding: 2rem 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(92, 197, 216, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 600px;
}

.comparison-table th {
  background: linear-gradient(135deg, #5cc5d8 0%, #4ca5b8 100%);
  color: white;
  font-weight: bold;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 1.4rem;
  border: none;
}

.comparison-table td {
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.3rem;
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background: #f8f9fa;
}

.comparison-table tr.highlight-row {
  background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
  position: relative;
}

.comparison-table tr.highlight-row::before {
  content: "1位";
  position: absolute;
  top: -10px;
  left: 10px;
  background: #5cc5d8;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(92, 197, 216, 0.3);
}

.comparison-table .app-name {
  font-weight: bold;
  color: #5cc5d8;
  font-size: 1.5rem;
}

.comparison-table .sub-text {
  display: block;
  font-size: 1.1rem;
  color: #666;
  margin-top: 5px;
  line-height: 1.4;
}

@media screen and (max-width: 719px) {
  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.5rem;
    font-size: 1.2rem;
  }
  
  .comparison-table .sub-text {
    font-size: 1rem;
  }
  
  .comparison-table .app-name {
    font-size: 1.3rem;
  }
}

/* Header */
header {
  background: #5cc5d8;
  margin-bottom: 2rem;
}

@media screen and (max-width: 719px) {
  header .l-contents__inner {
    padding: 0;
  }
}

.c-mainvisual {
  margin: 0;
  padding: 0;
}

.c-mainvisual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Content */
.l-contents {
  background: #FFFFFF;
}

.l-contents__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 0 2rem;
}

@media screen and (max-width: 719px) {
  .l-contents__inner {
    padding: 0 1.5rem;
  }
}

/* Annotation */
.c-annotation {
  text-align: right;
  color: #999;
  font-size: 1.2rem;
  margin: 0;
  padding-top: 1rem;
}

/* Top 3 Apps Section */
.p-app-top3 {
  background: #FEF3C7;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 4rem;
}

.p-app-top3-head {
  background: linear-gradient(135deg, #007AFF, #0056CC);
  color: #FFFFFF;
  text-align: center;
  padding: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 719px) {
  .p-app-top3-head {
    font-size: 1.4rem;
    padding: 1.5rem;
  }
}

.p-app-top3-body {
  padding: 2rem;
}

@media screen and (max-width: 719px) {
  .p-app-top3-body {
    padding: 1.5rem;
  }
}

.p-app-top3-item {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@media screen and (max-width: 719px) {
  .p-app-top3-item {
    padding: 1.5rem;
  }
}

.p-app-top3-item:last-child {
  margin-bottom: 0;
}

.p-app-top3-icon-wrap {
  flex-shrink: 0;
  margin-right: 2rem;
}

@media screen and (max-width: 719px) {
  .p-app-top3-icon-wrap {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.p-app-top3-logo {
  width: 100%;
  height: auto;
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  border-radius: 8px;
}

.p-app-top3-detail {
  flex: 1;
}

.c-hw-rank {
  margin-bottom: 1rem;
}

.p-app-top3-name {
  font-size: 2rem;
  font-weight: bold;
  color: #191919;
}

@media screen and (max-width: 719px) {
  .p-app-top3-name {
    font-size: 1.6rem;
  }
}

.p-app-top3-text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.p-app-top3-text span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #D97706;
}

.p-app-top3-text strong {
  color: #D97706;
  font-weight: bold;
}

.p-app-top3-button-top {
  background: #FEF3C7;
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #FCD34D;
}

.p-app-top3-button-top span {
  color: #92400E;
  font-weight: bold;
  font-size: 1.4rem;
}

/* Button Styles */
.flex_button {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn_size {
  flex: 1;
  max-width: 300px;
}

.c-button {
  display: inline-block;
  padding: 1.2rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.c-button--blank {
  background: linear-gradient(135deg, #5cc5d8, #4ca5b8);
  color: #FFFFFF;
  border: none;
}

.c-button--blank:hover {
  background: linear-gradient(135deg, #4ca5b8, #3a8a9a);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(92, 197, 216, 0.3);
}

.c-button--flash {
  position: relative;
  overflow: hidden;
}

.c-button--flash:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.c-button--flash:hover:before {
  left: 100%;
}

.c-button--slim {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  white-space: nowrap;
}

@media screen and (max-width: 719px) {
  .c-button--slim {
    white-space: normal;
    line-height: 1.3;
  }
}

.c-button--primary {
  background: linear-gradient(135deg, #5cc5d8, #4ca5b8);
  color: #FFFFFF;
  border: none;
}

.c-button--large {
  padding: 1.5rem 3rem;
  font-size: 1.4rem;
}

.btn-square {
  border-radius: 0.5rem;
}

/* Table Head */
.p-top3table__head {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

.p-top3table__head span {
  display: block;
  color: #D97706;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

@media screen and (max-width: 719px) {
  .p-top3table__head {
    font-size: 1.4rem;
  }
  .p-top3table__head span {
    font-size: 1.5rem;
  }
}

/* Comparison Table */
.c-table-group {
  margin-bottom: 4rem;
}

.table {
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media screen and (max-width: 719px) {
  .table {
    overflow: visible;
    margin: 0 0 2rem 0;
    padding: 0;
    border-radius: 1rem;
  }
}

.table-title {
  background: linear-gradient(135deg, #DC2626, #B91C1C);
  color: #FFFFFF;
  padding: 2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 719px) {
  .table-title {
    font-size: 1.4rem;
    padding: 1.5rem;
  }

  .p-top3table__point.--doublecircle::before,
  .p-top3table__point.--circle::before,
  .p-top3table__point.--triangle::before {
    margin-right: 0.5rem;
  }
}

.inner-table {
  width: 100%;
  border-collapse: collapse;
}

@media screen and (max-width: 719px) {
  .inner-table {
    width: 100%;
    table-layout: fixed;
  }
}

.fixed-row {
  background: #F7F7F7;
}

.colspan_text {
  background: #1F2937 !important;
  color: #FFFFFF !important;
  font-weight: bold;
  padding: 1rem !important;
}

/* Recommend App */
.c-recommend-app {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-top3table__rank__no {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.p-top3table__rank__no span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.5rem;
}

.p-top3table__rank__svg-1 {
  fill: #FBBF24;
}

.p-top3table__rank__svg-2 {
  fill: #9CA3AF;
}

.p-top3table__rank__svg-3 {
  fill: #CD7C2F;
}

.c-recommend-app__icon {
  width: 120px;
  height: 100%;
  margin-bottom: 0.5rem;
}

.c-recommend-app__icon img {
  width: 100%;
  height: 100%;
  max-width: 120px;
  object-fit: contain;
  border-radius: 0.5rem;
}

.c-recommend-app__name {
  font-weight: bold;
  font-size: 1.4rem;
  color: #191919;
}

/* Table Points */
.p-top3table__point {
  list-style: none;
  padding: 0.8rem;
  margin: 0;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.p-top3table__point li {
  margin-bottom: 0.3rem;
}

.p-top3table__point li:last-child {
  margin-bottom: 0;
}

.p-top3table__point.--doublecircle {
  background: #E5F2FF;
  color: #166534;
  border: 2px solid #16A34A;
}

.p-top3table__point.--circle {
  background: #FEF3C7;
  color: #92400E;
  border: 2px solid #F59E0B;
}

.p-top3table__point.--triangle {
  background: #FEE2E2;
  color: #991B1B;
  border: 2px solid #EF4444;
}

/* Button Column */
.p-app-button__col {
  padding: 0.5rem;
}

/* Section Headings */
.c-hw-level2 {
  font-size: 3rem;
  font-weight: bold;
  color: #191919;
  margin: 2rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #F59E0B;
  position: relative;
}

.c-hw-level2:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #007AFF;
  border-radius: 2px;
}

@media screen and (max-width: 719px) {
  .c-hw-level2 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1.5rem;
    line-height: 1.4;
  }
}

.c-hw-level3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #191919;
  margin: 2rem 0 1rem;
}

/* Concern Block */
.concern-block {
  background: #F9FAFB;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.concern-block h3 {
  color: #DC2626;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.concern-list {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.concern-list li {
  margin-bottom: 1rem;
  color: #4B5563;
}

.solution-message {
  background: #E5F2FF;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #F59E0B;
}

.solution-message p {
  margin-bottom: 0.5rem;
}

.solution-message strong {
  color: #D97706;
}

/* Subsidy Table */
.subsidy-table {
  margin-bottom: 3rem;
}

.subsidy-table table {
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-text {
  color: #DC2626;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}

/* Simulation Box */
.simulation-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #F3F4F6;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 719px) {
  .simulation-box {
    flex-direction: column;
  }
}

.simulation-item {
  text-align: center;
  padding: 1rem;
}

.simulation-item h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1F2937;
}

.simulation-item.before {
  background: #FEE2E2;
  border-radius: 0.5rem;
}

.simulation-item.after {
  background: #E5F2FF;
  border-radius: 0.5rem;
}

.amount {
  font-size: 1.6rem;
  font-weight: bold;
  color: #DC2626;
  margin-bottom: 0.5rem;
}

.simulation-item.after .amount {
  color: #D97706;
}

.income {
  color: #D97706;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.total {
  font-size: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid #D1D5DB;
}

.total strong {
  color: #D97706;
  font-size: 1.8rem;
}

.arrow {
  font-size: 2rem;
  color: #D97706;
  font-weight: bold;
  padding: 0 1rem;
}

.payback-info {
  text-align: center;
  background: #FEF3C7;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.payback-info p {
  margin-bottom: 0.5rem;
}

.highlight-result {
  font-size: 1.4rem;
}

.highlight-result strong {
  color: #DC2626;
  font-size: 1.8rem;
}

/* Company Detail Grid */
.company-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 719px) {
  .company-detail-grid {
    grid-template-columns: 1fr;
  }
}

.company-detail-card {
  background: #FFFFFF;
  border: 2px solid #E5E7EB;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .company-detail-card {
    padding: 1.5rem;
  }
}

.company-detail-card:hover {
  border-color: #007AFF;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

/* Company Header */
.company-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F3F4F6;
}

/* Company Comparison Table */
.company-comparison-table {
  margin-bottom: 2rem;
}

.company-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #F8FAFC;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.company-comparison-table th {
  background: #007AFF;
  color: #FFFFFF;
  padding: 1rem;
  text-align: left;
  font-weight: bold;
  font-size: 1.4rem;
  width: 30%;
}

.company-comparison-table td {
  background: #FFFFFF;
  padding: 1rem;
  border-bottom: 1px solid #E5E7EB;
  font-size: 1.4rem;
  font-weight: bold;
  color: #374151;
  text-align: left;
}

.company-comparison-table tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 719px) {
  .company-comparison-table {
    margin-bottom: 2rem;
  }
  
  .company-comparison-table table {
    width: 100%;
    table-layout: fixed;
  }
  
  .company-comparison-table th,
  .company-comparison-table td {
    padding: 0.6rem 0.4rem;
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
  }
  
  .company-comparison-table th {
    width: 38%;
    font-size: 1.1rem;
  }
  
  .company-comparison-table td {
    width: 62%;
    font-weight: normal;
  }
}

.company-logo {
  width: 100%;
  height: 100px;
  max-width: 180px;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  object-fit: contain;
}

.company-header h3 {
  color: #1F2937;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.rating-stars {
  color: #FBBF24;
  font-size: 1.4rem;
  font-weight: bold;
}

/* Company Specialty */
.company-specialty {
  margin-bottom: 2rem;
  text-align: left;
}

.company-specialty h4 {
  color: #D97706;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.specialty-desc {
  color: #6B7280;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
}

/* Pros and Cons */
.pros-cons {
  margin-bottom: 2rem;
}

.pros, .cons {
  margin-bottom: 1.5rem;
}

.pros h5 {
  color: #D97706;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cons h5 {
  color: #DC2626;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros ul, .cons ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.pros li {
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.cons li {
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Recommended For */
.recommended-for {
  background: #FEF3C7;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid #F59E0B;
}

.recommended-for h5 {
  color: #D97706;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recommended-for ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.recommended-for li {
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Customer Voice */
.customer-voice {
  background: #F9FAFB;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  border: 1px solid #E5E7EB;
}

.customer-voice h5 {
  color: #374151;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customer-voice p {
  color: #4B5563;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}

.customer-info {
  display: block;
  margin-top: 1rem;
  color: #D97706;
  font-weight: bold;
  font-style: normal;
  font-size: 1.4rem;
}

/* CTA Button */
.cta-button {
  text-align: center;
}

.cta-button .c-button {
  width: 100%;
  max-width: none;
}

/* Comparison Summary */
.comparison-summary {
  background: #FEF3C7;
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 3rem;
  border: 2px solid #BBF7D0;
}

.comparison-summary h3 {
  color: #D97706;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media screen and (max-width: 719px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

.choice-item {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.choice-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.choice-item strong {
  color: #1F2937;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.choice-item p {
  color: #D97706;
  font-weight: bold;
  margin-bottom: 0;
}

/* FAQ Container */
.faq-container {
  background: #F9FAFB;
  padding: 3rem;
  border-radius: 1rem;
}

@media screen and (max-width: 719px) {
  .faq-container {
    padding: 2rem 1.5rem;
  }
}

.faq-item {
  background: #FFFFFF;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  background: #FFFFFF;
  border: none;
  width: 100%;
  padding: 2rem 2.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: bold;
  color: #D97706;
  line-height: 1.5;
}

.faq-question-text {
  display: flex;
  align-items: flex-start;
  flex: 1;
  text-align: left;
}

@media screen and (max-width: 719px) {
  .faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
  }
}

.faq-question:hover {
  background: #FEF3C7;
}

.faq-question.active {
  background: #E5F2FF;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  color: #D97706;
  font-weight: bold;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #FFFFFF;
}

.faq-answer.active {
  max-height: 300px;
}

.faq-answer-content {
  padding: 1.5rem 2.5rem 2rem 2.5rem;
  color: #374151;
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: bold;
  border-top: 1px solid #F3F4F6;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

@media screen and (max-width: 719px) {
  .faq-answer-content {
    padding: 1.2rem 2rem 1.5rem 2rem;
    font-size: 1.4rem;
  }
}

/* Q/A バッジのスタイル */
.q-badge, .a-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 0.8rem;
}

.q-badge {
  background: #007AFF;
  color: #FFFFFF;
}

.a-badge {
  background: #D97706;
  color: #FFFFFF;
  margin-top: 0.2rem;
}

@media screen and (max-width: 719px) {
  .q-badge, .a-badge {
    width: 26px;
    height: 26px;
    font-size: 1.4rem;
    margin-right: 0.6rem;
  }
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  margin: 4rem 0;
}

@media screen and (max-width: 719px) {
  .final-cta {
    text-align: center;
  }
}

.final-cta h2 {
  color: #333333;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  border: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.4;
}

.next-energy-summary {
  text-align: center;
  margin-bottom: 2rem;
}

.next-energy-summary h3 {
  text-align: center;
}

@media screen and (max-width: 719px) {
  .next-energy-summary {
    text-align: left;
  }
  
  .next-energy-summary h3 {
    text-align: left;
  }
}

.cta-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.cta-point {
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

@media screen and (max-width: 719px) {
  .cta-point {
    text-align: left;
  }
}

.cta-point h4 {
  color: #DC2626;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.cta-point p {
  color: #4B5563;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 719px) {
  .cta-buttons {
    justify-content: flex-start;
  }
}

.cta-buttons .c-button {
  white-space: nowrap;
}

/* Footer */
.footer {
  background: #1F2937;
  padding: 3rem 0 2rem;
  text-align: center;
  margin-top: 4rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.footer-content {
  color: #9CA3AF;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 300px;
}

@media screen and (max-width: 719px) {
  .footer-logo-img {
    height: 45px;
    max-width: 250px;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 719px) {
  .footer-links {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

.footer-link {
  color: #D1D5DB;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media screen and (max-width: 719px) {
  .footer-link {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    width: 200px;
    text-align: center;
  }
}

.footer-content p {
  margin: 0;
  font-size: 1.4rem;
  color: #9CA3AF;
}

/* New FV Styles */
.c-mainvisual-new {
  padding: 4rem 0 4rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

/* 背景画像 */
.c-mainvisual-new::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background-image: url('../../images/FV_haikei.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(2px);
}


.fv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 0 6rem 0 12rem;
  position: relative;
  z-index: 1;
}

.fv-text {
  position: relative;
  z-index: 2;
  padding-left: 0;
}

.fv-catch {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}

.fv-title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: white;
  margin: 0 0 2.5rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
  word-break: keep-all;
  overflow-wrap: normal;
}

.fv-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.fv-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  font-size: 2rem;
  color: #FCD34D;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1.7rem;
  color: white;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.5);
}

.fv-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.fv-badge {
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
  padding: 1.8rem 2.5rem;
  border-radius: 14px;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 150px;
}

.badge-label {
  display: block;
  font-size: 1.5rem;
  color: #92400E;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.badge-rank {
  display: block;
  font-size: 2.8rem;
  color: white;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fv-cta {
  margin-top: 2rem;
}

.fv-cta-button {
  display: inline-block;
  background: white;
  color: #FF6B35 !important;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.6rem 3.5rem;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.fv-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.fv-note {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: white;
  line-height: 1.6;
  opacity: 0.9;
}

.fv-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.fv-image-area {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-left: 0;
  margin-left: -25rem;
  margin-bottom: -4rem;
  z-index: 2;
}

.fv-phone-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.fv-main-image {
  width: 140%;
  max-width: 850px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  border-radius: 12px;
}

.fv-phone-img {
  height: auto;
  max-width: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.fv-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* スマホ対応 */
@media screen and (max-width: 719px) {
  .c-mainvisual-new {
    padding: 3rem 0 5rem;
  }

  .fv-content {
    display: block;
    padding: 0 2rem;
    position: relative;
  }

  .fv-image {
    order: -1;
  }

  .fv-image-area {
    position: absolute;
    right: 2rem;
    top: 60%;
    transform: translateY(-50%);
    padding-left: 0;
    margin: 0;
  }

  .fv-phone-image {
    max-width: 120px;
  }

  .fv-main-image {
    max-width: 250px;
    border-radius: 8px;
  }

  .fv-text {
    padding-left: 0;
    padding-right: 0;
  }

  .fv-features {
    padding-right: 140px;
  }

  .feature-text {
    font-size: 1.3rem;
    white-space: nowrap;
  }

  .feature-icon {
    font-size: 1.5rem;
  }


  .fv-phone-img {
    max-width: 150px !important;
    width: 150px !important;
    display: block !important;
  }

  .fv-image {
    order: -1;
    max-width: 150px !important;
    margin: 0 auto !important;
  }

  .fv-catch {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .fv-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    padding-right: 140px;
  }

  .fv-badges {
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .fv-badge {
    padding: 1rem 1.5rem;
    min-width: 110px;
  }

  .badge-label {
    font-size: 1.0rem;
  }

  .badge-rank {
    font-size: 1.8rem;
  }

  .fv-cta {
    margin-top: 4.5rem;
    padding-right: 0px;
  }

  .fv-cta-button {
    width: 100%;
    font-size: 1.4rem;
    padding: 1.3rem 1rem;
    text-align: center;
    white-space: nowrap;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
      transform: scale(1.02);
      box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
  }

  .fv-note {
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.5;
  }

  .fv-wave {
    height: 40px;
  }
}

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

/* Fixed Footer CTA Mobile */
.fixed-footer-cta {
  display: none;
}

/* PC版右下追従CTA */
.fixed-bottom-right-cta {
  display: none;
}

@media screen and (min-width: 720px) {
  .fixed-bottom-right-cta {
    display: block;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
  }

  @keyframes pulse-pc {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(16, 185, 129, 0.7);
    }
  }

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

  .fixed-bottom-right-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  .fixed-bottom-right-logo {
    height: 35px;
    width: auto;
  }

  .fixed-bottom-right-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white !important;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: pulse-pc 1.5s ease-in-out infinite;
  }

  .fixed-bottom-right-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine-pc 3s ease-in-out infinite;
  }

  .fixed-bottom-right-button::after {
    content: '→';
    margin-left: 0.5rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
  }

  .fixed-bottom-right-button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.6);
  }

  .fixed-bottom-right-button:hover::after {
    transform: translateX(4px);
  }
}

@media screen and (max-width: 719px) {
  .fixed-footer-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 1.5rem;
  }

  .fixed-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fixed-footer-copy {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
  }

  .fixed-footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .fixed-footer-logo {
    height: 40px;
    width: auto;
  }

  @keyframes pulse-button {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 6px 28px rgba(16, 185, 129, 0.7);
    }
  }

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

  .fixed-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white !important;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    animation: pulse-button 1.5s ease-in-out infinite;
  }

  .fixed-footer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
  }

  .fixed-footer-button:active::before {
    left: 100%;
  }

  .fixed-footer-button::after {
    content: '→';
    margin-left: 0.5rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
  }

  .fixed-footer-button:active {
    transform: scale(0.96);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.4);
  }

  .fixed-footer-button:active::after {
    transform: translateX(4px);
  }

  /* メインコンテンツの下部余白を追加 */
  body {
    padding-bottom: 85px;
  }
}

/* Utility Classes */
.invisible {
  display: none !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

/* ボタンアニメーション */
.c-button {
  position: relative;
  overflow: hidden;
  animation: wiggle 0.4s ease-in-out infinite;
  transition: all 0.3s ease;
  text-decoration: none !important;
  border: 2px solid transparent !important;
}

/* 常時ぷるぷる揺れアニメーション */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-1deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(1deg); }
}

/* ホバー時のキラキラエフェクト */
.c-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 50%, 
    transparent 100%
  );
  transition: left 0.6s ease;
}

.c-button:hover::before {
  left: 100%;
}

/* ホバー時の追加エフェクト */
.c-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(92, 197, 216, 0.3);
  animation-play-state: paused;
  text-decoration: none !important;
  background: transparent !important;
  border: 2px solid #5cc5d8 !important;
}

/* アニメーション遅延で自然な感じに */
.c-button:nth-child(odd) {
  animation-delay: 0.5s;
}

.c-button:nth-child(even) {
  animation-delay: 1s;
}

/* 比較表の見やすさ改善 */
.p-top3table__point {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-align: center;
  position: relative;
  padding: 40px 10px 10px !important;
  margin: 0 !important;
}

/* アイコンを上部に配置 */
.p-top3table__point::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: #D97706;
}

/* ◎ 二重丸アイコン */
.p-top3table__point.--doublecircle::before {
  content: '◎';
  color: #16A34A;
  font-size: 2.8rem;
  font-weight: bold;
}

/* ○ 丸アイコン */
.p-top3table__point.--circle::before {
  content: '○';
  color: #F59E0B;
  font-size: 2.4rem;
}

/* △ 三角アイコン */
.p-top3table__point.--triangle::before {
  content: '△';
  color: #ef4444;
}

/* テキスト部分のスタイリング */
.p-top3table__point li,
.p-top3table__point {
  color: #333 !important;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 719px) {
  .p-top3table__point li,
  .p-top3table__point {
    font-size: 1.2rem;
  }

  .p-top3table__point {
    padding: 50px 10px 10px !important;
  }

  .p-top3table__point::before {
    top: 12px !important;
  }
}

.p-top3table__point li {
  list-style: none;
  margin: 2px 0;
}

/* 比較表ヘッダーの固定表示 */
.c-table-group {
  position: relative;
  overflow: visible;
}

.table {
  position: relative;
  overflow: visible;
}

.table-title {
  background: #D97706;
  color: #ffffff !important;
  padding: 15px 20px;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.inner-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}

.inner-table td {
  width: 33.33%;
  vertical-align: top;
  font-size: 1.4rem;
}

@media screen and (max-width: 719px) {
  .inner-table td {
    font-size: 1.2rem;
  }
}

.inner-table thead.fixed-row {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.inner-table thead.fixed-row th {
  background: #ffffff !important;
  padding: 20px 15px !important;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
  width: 33.33%;
}

/* 業者名リンクスタイル */
.company-link {
  color: #2563eb !important;
  text-decoration: underline !important;
  cursor: pointer;
  transition: color 0.2s ease;
}

.company-link:hover {
  color: #1d4ed8 !important;
  text-decoration: underline !important;
}

/* ロゴをクリッカブルに */
.company-logo-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

.company-logo-link:hover {
  transform: scale(1.05);
}

/* マイクロコピースタイル */
.micro-copy {
  font-size: 14px;
  color: #D97706;
  font-weight: bold;
  line-height: 1.4;
  margin: 10px 0;
  text-align: center;
}

.final-cta .micro-copy {
  text-align: left;
  font-style: normal;
  text-align: center;
  padding: 8px 12px;
}

/* 星アイコンスタイル */
.star-icon {
  width: 16px;
  height: 16px;
  margin-right: 2px;
  vertical-align: middle;
}

/* リストのチェックマークスタイル */
.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url('../../images/check.webp');
  background-size: contain;
  background-repeat: no-repeat;
}

/* 気になる点専用のチェックマークスタイル */
.cons .check-list li::before {
  background-image: url('../../images/check-2.webp');
}

/* いい点・気になる点のh5スタイル */
.pros-cons h5 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: bold;
}

/* 画像バナースペース */
.image-banner-space {
  margin: 20px 0;
  text-align: center;
}

.image-banner-space img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 2カラムヘッダーレイアウト */
.company-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.company-header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.company-header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 15px;
  min-width: 0;
  overflow: hidden;
}

.company-header-right h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  text-align: left;
  word-wrap: break-word;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media screen and (max-width: 719px) {
  .company-header {
    grid-template-columns: 100px 1fr;
    gap: 15px;
  }
  
  .company-header-right {
    margin-left: 0;
  }
  
  .company-header-right h3 {
    font-size: 1.8rem;
  }
}

/* 各案件詳細カードのホバーエフェクトを無効化 */
.company-detail-card:hover {
  border-color: #E5E7EB !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  transform: none !important;
}

/* スライダーのスタイル */
.testimonial-slider {
  position: relative;
  margin: 10px 0 40px;
}

@media screen and (min-width: 720px) {
  .testimonial-slider {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 2.5rem;
  }
}

.slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial-slide {
  width: calc(100% / 9); /* 9つのスライドに対応 */
  min-width: calc(100% / 9);
  padding: 0 8px;
  box-sizing: border-box;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 30px;
  height: 100%;
  border: 2px solid #e5e7eb;
  transform: scale(0.95);
  opacity: 0.7;
  transition: all 0.3s ease;
}


.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  background: #D97706;
  border-radius: 8px;
  color: white;
}

.user-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.user-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.user-info h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: bold;
}

.user-info p {
  margin: 2px 0;
  font-size: 14px;
  opacity: 0.9;
}

.cost-info {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  text-align: center;
  border: 2px solid #D97706;
}

.cost-info h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #333;
}

.cost-amount {
  font-size: 24px;
  font-weight: bold;
  color: #dc2626;
}

.savings-info {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  text-align: center;
}

.savings-info h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #333;
}

.savings-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.before {
  font-size: 18px;
  font-weight: bold;
  color: #dc2626;
}

.arrow {
  font-size: 20px;
  color: #D97706;
  font-weight: bold;
}

.after {
  font-size: 18px;
  font-weight: bold;
  color: #D97706;
}

.process-details, .features, .user-comment {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.process-details h4, .features h4, .user-comment h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #D97706;
  border-bottom: 2px solid #D97706;
  padding-bottom: 5px;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  padding: 3px 0;
  font-size: 14px;
}

.user-comment p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* スライダーボタン */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #D97706;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #007AFF;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 768px) {
  .slider-container {
    margin: 0;
    padding: 0 50px;
  }
  
  .testimonial-slide {
    padding: 0 4px;
    margin-bottom: 12px;
  }
  
  .testimonial-card {
    padding: 20px 16px 16px;
  }
  
  .prev-btn {
    left: 5px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .next-btn {
    right: 5px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .testimonial-header {
    padding: 16px;
    margin-bottom: 14px;
    flex-direction: column;
    text-align: left;
  }
  
  .user-icon {
    width: 60px;
    height: 60px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .user-info {
    width: 100%;
  }
  
  .user-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  
  .user-info p {
    font-size: 13px;
    margin: 2px 0;
  }
  
  .cost-info,
  .savings-info,
  .process-details,
  .features,
  .user-comment {
    padding: 14px 12px;
    margin: 12px 0;
    text-align: left;
  }
  
  .cost-info h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .cost-info h4::after {
    content: "：";
  }
  
  .cost-info p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .cost-amount {
    font-size: 22px;
    font-weight: bold;
  }
  
  .savings-info {
    text-align: center;
  }
  
  .savings-info h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .savings-comparison {
    font-size: 16px;
    gap: 10px;
  }
  
  .savings-comparison .before,
  .savings-comparison .after {
    font-size: 16px;
    font-weight: bold;
  }
  
  .savings-comparison .arrow {
    font-size: 14px;
  }
  
  .savings-info p {
    font-size: 13px;
    margin-top: 6px;
  }
  
  .process-details h4,
  .features h4,
  .user-comment h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .process-details p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .features li {
    padding: 4px 0;
    font-size: 13px;
    line-height: 1.5;
  }
  
  .user-comment {
    margin-bottom: 0;
  }
  
  .user-comment p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* シミュレーション上下配置スタイル */
.simulation-box-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.simulation-item {
  background: #ffffff;
  border: 3px solid #D97706;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.simulation-item.before {
  border-color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.simulation-item.before h4 {
  color: #ef4444;
  font-size: 20px;
  margin: 0 0 15px 0;
  font-weight: bold;
}

.simulation-item.after h4 {
  color: #D97706;
  font-size: 20px;
  margin: 0 0 15px 0;
  font-weight: bold;
}

.simulation-item .amount {
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
  color: #333;
}

.simulation-item .annual {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
}

.simulation-item .income {
  font-size: 16px;
  color: #D97706;
  font-weight: bold;
  margin: 8px 0;
}

.simulation-item .total {
  font-size: 18px;
  color: #D97706;
  font-weight: bold;
  margin: 10px 0 0 0;
}

.arrow-vertical {
  text-align: center;
  font-size: 30px;
  color: #D97706;
  font-weight: bold;
  margin: 10px 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .simulation-box-vertical {
    margin: 20px 15px;
    max-width: none;
  }
  
  .simulation-item {
    padding: 20px 15px;
  }
  
  .simulation-item h4 {
    font-size: 18px;
  }
  
  .simulation-item .amount {
    font-size: 16px;
  }
  
  .simulation-item .total {
    font-size: 16px;
  }
  
  .arrow-vertical {
    font-size: 24px;
    margin: 5px 0;
  }
}

/* 紹介文スタイル */
.company-introduction {
  margin: 20px 0;
  padding: 20px;
  background: #f9fafb;
  border-radius: 10px;
  line-height: 1.8;
}

.introduction-preview {
  color: #374151;
  font-size: 15px;
  margin-bottom: 15px;
}

.introduction-full {
  color: #374151;
  font-size: 15px;
}

.introduction-full p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.introduction-full p:last-child {
  margin-bottom: 0;
}

.read-more-btn {
  background: none;
  color: #2563eb;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
  transition: color 0.2s ease;
  display: inline-block;
  margin: 15px 0 0;
}

.read-more-btn:hover {
  color: #1d4ed8;
}

@media screen and (max-width: 719px) {
  .company-introduction {
    padding: 15px;
  }
  
  .introduction-preview,
  .introduction-full {
    font-size: 14px;
  }
  
  .read-more-btn {
    padding: 8px 25px;
    font-size: 14px;
  }
}

/* お客様の声スタイル */
.customer-review {
  margin: 20px 0;
}

.customer-review h5 {
  font-size: 18px;
  color: #D97706;
  margin-bottom: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.customer-review h5::before {
  content: "";
  font-size: 20px;
}

.review-item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.review-item:hover {
  border-color: #007AFF;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
  transform: translateY(-2px);
}

.review-item::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 48px;
  color: #d1fae5;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-item:last-child {
  margin-bottom: 0;
}

.review-item p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
}

.customer-info {
  color: #6B7280;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  display: block;
  text-align: right;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
}

@media screen and (max-width: 719px) {
  .customer-review h5 {
    font-size: 16px;
  }
  
  .review-item {
    padding: 16px 20px;
  }
  
  .review-item::before {
    font-size: 36px;
    top: 8px;
    left: 12px;
  }
  
  .review-item p {
    font-size: 14px;
    padding-left: 15px;
  }
  
  .customer-info {
    font-size: 14px;
  }
}

.page-section {
  margin-bottom: 60px;
}

.page-section h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #191919;
  padding-bottom: 16px;
  border-bottom: 3px solid #F59E0B;
  margin-bottom: 30px;
  position: relative;
}

.page-section h2:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #007AFF;
  border-radius: 2px;
}

.page-section h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #191919;
  margin-top: 30px;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #F59E0B;
  position: relative;
}

.page-section h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 20px;
  background: #007AFF;
  border-radius: 2px;
}

.page-section h4 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #191919;
  margin-top: 20px;
  margin-bottom: 12px;
}

.page-section p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-section ul,
.page-section ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.page-section li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.info-table,
.result-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.info-table th,
.info-table td,
.result-table th,
.result-table td {
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  text-align: left;
}

.info-table th,
.result-table th {
  background-color: #F3F4F6;
  font-weight: bold;
  width: 30%;
}

.result-table th {
  width: auto;
  text-align: center;
}

.result-table td {
  text-align: center;
}

@media screen and (max-width: 719px) {
  .page-section h2 {
    font-size: 2rem;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
  
  .page-section h3 {
    font-size: 1.6rem;
    margin-top: 24px;
    margin-bottom: 12px;
    padding-left: 10px;
  }
  
  .page-section h4 {
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

/* =================================================================
   Pattern用CSS - コスパ重視、スピード重視、信頼性重視のスタイル
   ================================================================= */

/* CSS変数の定義 */
:root {
  --primary-color: #D97706;
  --primary-light: #F59E0B;
  --primary-dark: #B45309;
}

/* 共通ランク1スタイル */
.rank-1 {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), transparent);
}

/* 共通ボタンスタイル */
.btn-primary {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* ヘッダーボーダー */
header {
  /* border-bottom削除 */
}


/* 必要性ブロックのスパン */
.necessity-block span {
  background: #FFD700 !important;
  color: #333333 !important;
}

/* 理由3選の見やすさ改善 */
.necessity-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0 0 12px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* 番号バッジと配色のコントラスト確保 */
.necessity-block span {
  color: #333333 !important;
  text-shadow: none;
}

/* オレンジ背景×オレンジ文字の可読性を確保 */
.highlight {
  color: #C2410C; /* やや濃いめのオレンジでコントラスト向上 */
}

/* 緊急ボックス内の強調色も読みやすく */
.emergency-box {
  color: #1F2937;
}
.emergency-box .highlight {
  color: #B43403;
}

/* ハイライトテキスト */
.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* 緊急ボックス */
.emergency-box {
  background: #FEF3C7;
}

/* 比較理由3選の番号スタイル */
.reason-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #007AFF;
  color: white;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.3);
  flex-shrink: 0;
}

/* CTA企業ロゴエリア */
.cta-companies {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 30px;
  gap: 40px;
}

.cta-company {
  text-align: center;
  background: transparent;
  border-radius: 10px;
  padding: 25px 20px;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  width: 180px;
}

.cta-company:hover {
  transform: translateY(-5px);
}

.cta-company .company-logo {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-company h4 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  white-space: nowrap;
}

.cta-company .company-link {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.cta-company .company-link:hover {
  color: #007AFF;
}

.cta-company p {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
}

/* 品質比較（Pattern3用） */
.quality-comparison {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.quality-label {
  min-width: 120px;
  font-size: 1.6rem;
  color: #333;
}

.quality-bar {
  flex: 1;
  height: 20px;
  background: #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}

.quality-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

/* =================================================================
   Pattern1 - コスパ重視サムネイル用スタイル
   ================================================================= */
.pattern1 {
  background: url('../../images/haikei.jpeg') center center / cover no-repeat fixed !important;
}

.pattern1 .c-mainvisual {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 50%, #F59E0B 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pattern1 .thumbnail-bg-pattern {
  display: none;
}

.pattern1 .thumbnail-main-title {
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  color: #1F2937;
  text-shadow: 2px 2px 8px rgba(255,255,255,0.9);
  line-height: 1.3;
  margin-bottom: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .pattern1 .c-mainvisual {
    height: 220px;
    padding: 2rem 1rem;
  }
  
  .pattern1 .thumbnail-main-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  
  .pattern1 .thumbnail-sub-title {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }

  /* CTA企業ロゴのスマホ調整 */
  .cta-companies {
    justify-content: center;
    padding: 0 20px;
    gap: 15px;
    flex-wrap: nowrap;
  }

  .cta-company {
    padding: 15px 10px;
    flex: 1 1 30%;
    width: auto;
  }

  .cta-company .company-logo {
    width: 100px;
    margin-bottom: 10px;
    padding: 10px;
  }

  .cta-company h4 {
    font-size: 1.3rem;
  }
}

.pattern1 .thumbnail-sub-title {
  position: relative;
  font-size: 1.4rem;
  color: #FFFFFF;
  font-weight: 600;
  background: rgba(31, 41, 55, 0.9);
  padding: 1rem 2rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 2px solid #1F2937;
}

.pattern1 .thumbnail-cost-highlight {
  position: absolute;
  top: 200px;
  left: 60px;
  background: #D97706;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(233, 85, 19, 0.3);
}

.pattern1 .thumbnail-comparison-box {
  position: absolute;
  top: 260px;
  left: 60px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 5px solid #E95513;
}

.pattern1 .thumbnail-comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  font-size: 16px;
}

.pattern1 .thumbnail-old-price {
  text-decoration: line-through;
  color: #999;
}

.pattern1 .thumbnail-new-price {
  color: #E95513;
  font-weight: bold;
  font-size: 18px;
}

.pattern1 .thumbnail-app-icons {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 300px;
  height: 240px;
}

.pattern1 .thumbnail-app-icon {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border: 3px solid #E95513;
}

.pattern1 .thumbnail-app-icon.rank1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: scale(1.1);
  background: linear-gradient(135deg, #FFF5F0, #FFEBE0);
}

.pattern1 .thumbnail-app-icon.rank2 {
  top: 50px;
  left: 120px;
  z-index: 2;
  border-color: #6B7280;
}

.pattern1 .thumbnail-app-icon.rank3 {
  top: 100px;
  left: 60px;
  z-index: 1;
  border-color: #9CA3AF;
}

.pattern1 .thumbnail-rank-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 30px;
  height: 30px;
  background: #D97706;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.pattern1 .thumbnail-savings-badge {
  position: absolute;
  bottom: 60px;
  right: 80px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: white;
  padding: 15px 25px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 8px 25px rgba(233, 85, 19, 0.4);
  transform: rotate(-5deg);
}

.pattern1 .thumbnail-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(225deg, #D97706, transparent);
  opacity: 0.1;
}

/* =================================================================
   Pattern2 - スピード重視サムネイル用スタイル
   ================================================================= */
.pattern2 .c-mainvisual {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFEBE0 30%, #FFD4B3 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pattern2 .thumbnail-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: 
    linear-gradient(45deg, #E95513 25%, transparent 25%),
    linear-gradient(-45deg, #E95513 25%, transparent 25%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.pattern2 .thumbnail-speed-icon {
  position: absolute;
  top: 40px;
  left: 60px;
  font-size: 60px;
  color: #E95513;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.pattern2 .thumbnail-main-title {
  position: absolute;
  top: 60px;
  left: 150px;
  font-size: 48px;
  font-weight: bold;
  color: #E95513;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  line-height: 1.2;
}

.pattern2 .thumbnail-sub-title {
  position: absolute;
  top: 150px;
  left: 150px;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.pattern2 .thumbnail-speed-highlight {
  position: absolute;
  top: 190px;
  left: 150px;
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(233, 85, 19, 0.3);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 4px 15px rgba(233, 85, 19, 0.3); }
  to { box-shadow: 0 4px 25px rgba(233, 85, 19, 0.6); }
}

.pattern2 .thumbnail-timeline {
  position: absolute;
  top: 240px;
  left: 60px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 5px solid #E95513;
  width: 400px;
}

.pattern2 .thumbnail-timeline-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 14px;
}

.pattern2 .thumbnail-time {
  background: #D97706;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
  min-width: 60px;
  text-align: center;
  margin-right: 12px;
}

.pattern2 .thumbnail-event {
  color: #333;
}

.pattern2 .thumbnail-highlight-text {
  color: #E95513;
  font-weight: bold;
}

.pattern2 .thumbnail-app-showcase {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 300px;
  height: 240px;
}

.pattern2 .thumbnail-main-app {
  position: absolute;
  top: 0;
  left: 70px;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFF5F0, #FFEBE0);
  box-shadow: 0 12px 35px rgba(233, 85, 19, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #E95513;
  border: 4px solid #E95513;
  z-index: 3;
}

.pattern2 .thumbnail-speed-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #D97706;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(15deg);
}

.pattern2 .thumbnail-support-apps {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #6B7280;
  z-index: 2;
}

.pattern2 .thumbnail-support-apps2 {
  position: absolute;
  top: 140px;
  right: 0;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #9CA3AF;
  z-index: 1;
}

.pattern2 .thumbnail-urgent-badge {
  position: absolute;
  bottom: 50px;
  right: 60px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: white;
  padding: 15px 20px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 8px 25px rgba(233, 85, 19, 0.4);
  transform: rotate(-8deg);
  animation: shake 3s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(-8deg) translateX(0); }
  25% { transform: rotate(-8deg) translateX(-2px); }
  75% { transform: rotate(-8deg) translateX(2px); }
}

.pattern2 .thumbnail-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(225deg, #D97706, transparent);
  opacity: 0.15;
}

/* =================================================================
   Pattern3 - 信頼性重視サムネイル用スタイル
   ================================================================= */
.pattern3 .c-mainvisual {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #FFF5F0 0%, #FFEBE0 40%, #FFE0CC 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pattern3 .thumbnail-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E95513' fill-opacity='1'%3E%3Cpath d='M30 0l15 15-15 15-15-15L30 0zM0 30l15 15-15 15-15-15L0 30zm60 0l15 15-15 15-15-15L60 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pattern3 .thumbnail-trust-icon {
  position: absolute;
  top: 40px;
  left: 60px;
  font-size: 50px;
  color: #E95513;
}

.pattern3 .thumbnail-main-title {
  position: absolute;
  top: 60px;
  left: 140px;
  font-size: 48px;
  font-weight: bold;
  color: #E95513;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  line-height: 1.2;
}

.pattern3 .thumbnail-sub-title {
  position: absolute;
  top: 150px;  
  left: 140px;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.pattern3 .thumbnail-trust-highlight {
  position: absolute;
  top: 190px;
  left: 140px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(233, 85, 19, 0.3);
}

.pattern3 .thumbnail-stats-grid {
  position: absolute;
  top: 240px;
  left: 60px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 5px solid #E95513;
  width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.pattern3 .thumbnail-stat-item {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: #FFF5F0;
}

.pattern3 .thumbnail-stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #E95513;
  display: block;
}

.pattern3 .thumbnail-stat-label {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.pattern3 .thumbnail-trust-indicators {
  position: absolute;
  right: 80px;
  top: 80px;
  width: 300px;
  height: 240px;
}

.pattern3 .thumbnail-main-company {
  position: absolute;
  top: 30px;
  left: 80px;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFF5F0, #FFEBE0);
  box-shadow: 0 12px 35px rgba(233, 85, 19, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #E95513;
  border: 4px solid #E95513;
  z-index: 3;
  position: relative;
}

.pattern3 .thumbnail-trust-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #D97706;
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.pattern3 .thumbnail-rating-stars {
  margin-top: 8px;
  font-size: 14px;
  color: #D97706;
}

.pattern3 .thumbnail-support-company1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #6B7280;
  z-index: 2;
}

.pattern3 .thumbnail-support-company2 {
  position: absolute;
  top: 140px;
  right: 0;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #9CA3AF;
  z-index: 1;
}

.pattern3 .thumbnail-trust-seal {
  position: absolute;
  bottom: 50px;
  right: 70px;
  background: linear-gradient(135deg, #D97706, #B45309);
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 8px 25px rgba(233, 85, 19, 0.4);
  transform: rotate(8deg);
}

.pattern3 .thumbnail-facility-count {
  position: absolute;
  top: 10px;
  right: 60px;
  background: rgba(217, 119, 6, 0.1);
  color: #E95513;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #E95513;
}

.pattern3 .thumbnail-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: linear-gradient(225deg, #D97706, transparent);
  opacity: 0.12;
}

.pattern3 .thumbnail-quality-indicators {
  position: absolute;
  bottom: 20px;
  left: 60px;
  display: flex;
  gap: 10px;
}

.pattern3 .thumbnail-quality-badge {
  background: white;
  color: #E95513;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #E95513;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* CTA Button Hover Styles - index.html specific buttons */
#cta-btn-1:hover,
#cta-btn-2:hover,
#cta-btn-3:hover,
#cta-btn-4:hover,
#cta-btn-5:hover,
#cta-btn-6:hover,
#cta-btn-7:hover,
#cta-btn-8:hover {
  background: white !important;
  color: #FF6B35 !important;
  border: 2px solid #FF6B35 !important;
}

/* モバイル向けコンパクトスタイル */
@media screen and (max-width: 719px) {
  /* 新セクションのモバイル最適化 */
  section[style*="padding: 3rem 2rem"],
  section[style*="padding: 4rem 2rem"],
  section[style*="padding: 5rem 2rem"] {
    padding: 2rem 1.5rem !important;
  }

  /* タイトルサイズ調整 */
  h2[style*="font-size: 2.4rem"],
  h2[style*="font-size: 2.6rem"],
  h2[style*="font-size: 3rem"] {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  h3[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* カード系のパディング調整 */
  div[style*="padding: 3rem"],
  div[style*="padding: 2.5rem"],
  div[style*="padding: 2rem"] {
    padding: 1.5rem 1rem !important;
  }

  /* フォントサイズ調整 */
  p[style*="font-size: 2.2rem"] {
    font-size: 1.6rem !important;
  }

  p[style*="font-size: 1.8rem"] {
    font-size: 1.4rem !important;
  }

  p[style*="font-size: 1.6rem"] {
    font-size: 1.3rem !important;
  }

  p[style*="font-size: 1.4rem"] {
    font-size: 1.2rem !important;
  }

  /* 大きな数字のサイズ調整 */
  p[style*="font-size: 4rem"],
  p[style*="font-size: 5rem"] {
    font-size: 2.8rem !important;
  }

  span[style*="font-size: 2.8rem"] {
    font-size: 2rem !important;
  }

  /* CTAボタンのサイズ調整 */
  a[style*="font-size: 2rem"],
  a[style*="font-size: 2.4rem"] {
    font-size: 1.6rem !important;
    padding: 1.5rem 2.5rem !important;
  }

  /* グリッドレイアウトの調整 */
  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* マージン調整 */
  section[style*="margin: 3rem 0"],
  section[style*="margin: 4rem 0"] {
    margin: 2rem 0 !important;
  }

  div[style*="margin-bottom: 3rem"] {
    margin-bottom: 2rem !important;
  }

  /* Before/Afterセクションの特別調整 - モバイルでも横並び維持 */

  /* 最終CTAセクションの調整 */
  section[style*="padding: 5rem 2rem"] h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  section[style*="padding: 5rem 2rem"] p[style*="font-size: 2.2rem"] {
    font-size: 1.5rem !important;
  }
}