    /* 共通リセット＆変数 */
    
    :root {
      --primary-color: #ff6b35;
      --primary-dark: #e55a2b;
      --primary-light: #ff8c5a;
      --text-dark: #2d3748;
      --text-light: #718096;
      --border-color: #e2e8f0;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      --orange-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
      --fujifilm-green: #00b04f;
      --fujifilm-green-dark: #009643;
    }

    .idphoto-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ヒーロー */
    .idphoto-hero {
      position: relative;
      z-index: 1;
      background: linear-gradient(135deg, #fafafa, #f5f5f5);
      padding: 4rem 20px 2rem;
      text-align: center;
    }

    .idphoto-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .idphoto-hero h1::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: var(--primary-color);
      margin: 1rem auto 0;
    }

    .idphoto-hero p {
      font-size: 1.1rem;
      color: var(--text-light);
    }

    /* メイン画像セクション */
    .idphoto-main-image-section {
      overflow-x: hidden;
      margin-bottom: -20px;
    }

    .idphoto-main-image {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 1rem;
    }

    .idphoto-main-image img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* メイン画像セクション2 */
    .idphoto-main-image-section2 {
      overflow-x: hidden;
      margin-bottom: 50px;
    }

    .idphoto-main-image2 {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-bottom: 1rem;
    }

    .idphoto-main-image2 img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 選ばれる理由 */
    .idphoto-reasons-section {
      background-color: #fafafa;
      padding: 4rem 0;
      margin-bottom: 3rem;
    }

    .idphoto-reasons-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 3rem;
      color: var(--text-dark);
    }

    .idphoto-reasons-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
      margin: 1rem auto 0;
    }

    .idphoto-reasons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
    }

    .idphoto-reason-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .idphoto-reason-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--orange-shadow);
      border-color: var(--primary-light);
    }

    .idphoto-reason-number {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .idphoto-reason-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
      color: var(--text-dark);
    }

    .idphoto-reason-card p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* 価格セクション */
    .idphoto-price-section {
      margin-bottom: 3rem;
    }

    .idphoto-section-title {
      font-size: 1.75rem;
      margin-bottom: 2rem;
      padding-bottom: 0.5rem;
      border-bottom: 3px solid var(--primary-color);
      display: inline-block;
      color: var(--text-dark);
    }
    
    /* 少しだけ強いサブタイトル */
.idphoto-subtitle{
  position: relative;
  padding-left: 1.45rem;     /* 棒(0.85) + gap(0.6) の合計 */
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
  margin: -1rem 0 1.25rem;
  color: rgba(0,0,0,0.68);
  max-width: 80rem;
}

.idphoto-subtitle::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.85rem;
  height: 3px;
  background: var(--primary-color);
  border-radius: 99px;
  opacity: 0.7;
}

/* さりげないアクセントも少し強く */
.idphoto-subtitle::before{
  content: "";
  display: inline-block;
  width: 0.85rem;             /* 0.75 -> 0.85 */
  height: 3px;
  margin-right: 0.6rem;
  vertical-align: middle;
  background: var(--primary-color);
  border-radius: 99px;
  opacity: 0.7;               /* 0.55 -> 0.7 */
}

@media (max-width: 480px){
  .idphoto-subtitle{
    font-size: 1.03rem;        /* 1.00 -> 1.03 */
    margin: -0.9rem 0 1.1rem;
  }
}

    .idphoto-price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .idphoto-price-card {
      background: white;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 1.5rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .idphoto-price-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .idphoto-card-header {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .idphoto-size-badge {
      background: var(--text-dark);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .idphoto-price-details {
      margin-bottom: 0.5rem;
    }

    .idphoto-price-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 0;
      border-bottom: 1px solid #f5f5f5;
    }

    .idphoto-price-item:last-child {
      border-bottom: none;
    }

    .idphoto-price-amount {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-color);
    }

    /* SmaFaceカード */
    .idphoto-smaface-card {
      background: linear-gradient(135deg, #f8fff8, #f0fff4);
      border: 2px solid var(--fujifilm-green);
      border-radius: 16px;
      padding: 2rem;
      margin: 2rem 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 176, 79, 0.15);
    }

    .idphoto-smaface-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(0, 176, 79, 0.1), transparent 70%);
      border-radius: 50%;
    }

    .idphoto-smaface-badge {
      display: inline-flex;
      align-items: center;
      background: var(--fujifilm-green);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.875rem;
      margin-bottom: 1rem;
      animation: pulse 2s infinite;
    }

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

    .idphoto-smaface-logo {
      background: var(--fujifilm-green);
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: 1px;
      margin-bottom: 1rem;
      font-family: 'Arial', sans-serif;
      display: inline-block;
    }

    .idphoto-smaface-header {
      margin-bottom: 1.5rem;
    }

    .idphoto-smaface-title {
      font-size: 1.5rem;
      color: var(--fujifilm-green-dark);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .idphoto-smaface-subtitle {
      font-size: 1rem;
      color: var(--text-light);
    }

    .idphoto-smaface-price {
      background: white;
      border: 1px solid var(--fujifilm-green);
      border-radius: 12px;
      margin: 2rem 0;
      padding: 2rem;
      text-align: center;
    }

    .idphoto-smaface-price-amount {
      font-size: 3rem;
      font-weight: 700;
      color: var(--fujifilm-green);
      margin-bottom: 0.5rem;
      line-height: 1;
    }

    .idphoto-smaface-price-label {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-dark);
    }

    .idphoto-smaface-notes {
      background: rgba(255, 255, 255, 0.8);
      padding: 1.5rem;
      border-radius: 12px;
      margin-top: 1.5rem;
    }

    .idphoto-smaface-notes h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--fujifilm-green-dark);
      margin-bottom: 1rem;
    }

    .idphoto-smaface-notes ul {
      list-style: none;
      padding: 0;
    }

    .idphoto-smaface-notes li {
      position: relative;
      padding: 0.5rem 0 0.5rem 1.5rem;
      color: var(--text-dark);
      line-height: 1.6;
    }

    .idphoto-smaface-notes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--fujifilm-green);
      font-weight: 700;
    }

    .idphoto-smaface-link {
      display: inline-flex;
      align-items: center;
      background: var(--fujifilm-green);
      color: white !important;
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1rem;
      transition: all 0.3s ease;
    }

    .idphoto-smaface-link::after {
      content: '→';
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
    }

    .idphoto-smaface-link:hover {
      background: var(--fujifilm-green-dark);
      box-shadow: 0 4px 12px rgba(0, 176, 79, 0.3);
      transform: translateY(-2px);
    }

    .idphoto-smaface-link:hover::after {
      transform: translateX(3px);
    }

    /* 就職活動応援パック */
    .idphoto-special-section {
      position: relative;
      padding: 3rem 0;
      margin-bottom: 3rem;
    }

    .idphoto-special-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0vw;
      right: 0vw;
      bottom: 0;
      background: linear-gradient(135deg, #fff8f5, #fff5f0);
      z-index: -1;
    }

    .idphoto-special-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .idphoto-special-header h2 {
      font-size: 1.75rem;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .idphoto-special-header p {
      font-size: 1rem;
      color: var(--text-light);
    }

    .idphoto-special-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }

    .idphoto-special-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .idphoto-special-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .idphoto-special-card-header {
      padding: 1.5rem;
      color: white;
      background: linear-gradient(135deg, var(--text-dark), #4a5568);
      position: relative;
    }

    .idphoto-special-card:nth-child(2) .idphoto-special-card-header {
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    }

    .idphoto-special-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      backdrop-filter: blur(10px);
    }

    .idphoto-special-card-body {
      padding: 2rem;
    }

    .idphoto-special-price-item {
      padding: 1rem 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .idphoto-special-price-item:last-child {
      border-bottom: none;
    }

    .idphoto-special-price-label {
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: var(--text-dark);
      display: block;
    }

    .idphoto-special-price-detail {
      font-size: 0.875rem;
      color: var(--text-light);
      display: block;
      margin-bottom: 0.5rem;
    }

    .idphoto-special-price-amount {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-color);
      text-align: right;
      display: block;
    }

    /* オプションリスト */
    .idphoto-option-list {
      list-style: none;
    }

    .idphoto-option-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: #f8f9fa;
      border-radius: 8px;
      margin-bottom: 0.75rem;
      border: 1px solid var(--border-color);
      transition: background 0.3s;
    }

    .idphoto-option-item:hover {
      background: #f0f0f0;
    }

    .idphoto-option-note {
      display: block;
      font-size: 0.8rem;
      color: var(--text-light);
      margin-top: 1rem;
      padding-right: 20px;
    }

    /* その他サービス */
.idphoto-other-services {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  /* もしここで中央寄せされていたら上書き */
  text-align: left;
}

.idphoto-service-item {
  display: flex;
  justify-content: flex-start; /* ← 追加 */
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.idphoto-service-item:last-child {
  border-bottom: none;
}

.idphoto-service-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.idphoto-service-content {
  /* テキストの左揃え */
  text-align: left;
}

.idphoto-service-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.idphoto-service-content p {
  color: var(--text-light);
  line-height: 1.7;
}

.idphoto-highlight-text {
  color: var(--primary-color);
  font-weight: 600;
}

    .idphoto-footer {
      background: var(--text-dark);
      color: white;
      padding: 2rem 0;
      text-align: center;
    }


 .idphoto-cut-link {
      display: inline-flex;
      align-items: center;
      background: var(--primary-color);
      color: white !important;
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1rem;
      transition: all 0.3s ease;
    }

    .idphoto-cut-link::after {
      content: '→';
      margin-left: 0.5rem;
      transition: transform 0.3s ease;
    }

    .idphoto-cut-link:hover {
      background: var(--primary-dark);
    box-shadow: 0 4px 12px var(--primary-light);
      transform: translateY(-2px);
    }



    /* よくある質問 */
    .idphoto-faq-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .idphoto-faq-item {
      background: #f9f9f9;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .idphoto-faq-item summary {
      cursor: pointer;
      padding: 1.25rem 1rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-dark);
      position: relative;
      list-style: none;
    }

    .idphoto-faq-item[open] summary {
      background: #f0f0f0;
    }

    .idphoto-faq-item summary::after {
      content: '＋';
      position: absolute;
      right: 1rem;
      font-weight: bold;
    }

    .idphoto-faq-item[open] summary::after {
      content: '－';
    }

    .idphoto-faq-answer {
      padding: 0 1rem 1rem;
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.6;
    }

 /* 注意書き */
    .idphoto-attention-box {
  max-width: 1200px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  margin: 50px auto;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
    .idphoto-attention-box h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--primary-color);
    }

    .idphoto-attention-box ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .idphoto-attention-box li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
      color: var(--text-dark);
    }

    .idphoto-attention-box li::before {
      content: '※';
      position: absolute;
      left: 0;
      top: 0;
    }

    /* レスポンシブ */
    @media (max-width: 768px) {
      .idphoto-hero {
        padding: 3rem 1rem 1.5rem;
      }

      .idphoto-hero h1 {
        font-size: 2rem;
      }

      .idphoto-main-image {
        margin-top: 1rem;
        padding: 0 1rem;
      }

      .idphoto-main-image img {
        max-width: 100%;
        height: auto;
      }

      .idphoto-reasons-grid,
      .idphoto-price-grid,
      .idphoto-special-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .idphoto-service-item {
        flex-direction: column;
        text-align: center;
      }

      .idphoto-service-icon {
        margin: 0 0 1rem 0;
      }
    }
    
    
     /* アクセス */

      /* セクションタイトル - モダンスタイル */


     
          #access{
  margin: 40px 0;
  padding: 40px 0;
background: #fbfbfb;
}

.store-info-section{
  margin: 40px 0;
  
}

.store-info{
  max-width: 1000px;
  margin: 0 auto;
  
}

.info-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.info-item{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;                 /* idphoto系に寄せて12px */
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);           /* ← ここが統一ポイント */
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-item:hover{
  transform: translateY(-2px);
  box-shadow: var(--orange-shadow);    /* ← hoverはオレンジ影に */
  border-color: var(--primary-light);
}

.info-icon{
  font-size: 1.75rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f0;                 /* 既存のグラデと馴染む薄オレンジ */
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.info-content{ flex: 1; }

.info-label{
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.info-value{
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.4;
}

/* 地図を入れる場合だけ（任意） */
.info-map{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 768px){
  .info-grid{ grid-template-columns: 1fr; gap: 20px; }
  .info-item{ padding: 20px; }
  .info-icon{ width: 40px; height: 40px; font-size: 1.5rem; }
  .info-value{ font-size: 1rem; }
}


