/* ========================================
   style.css - ページ別スタイル
   注意: CSS変数は base.css で定義済み
   注意: PDFモーダル、step-flow は components.css で定義済み
   ======================================== */

/* ========================================
   基本スタイル (from App.css)
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "游明朝体", Yu Mincho, YuMincho, "ヒラギノ明朝 Pro", Hiragino Mincho Pro, "MS P明朝", MS PMincho, serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.App {
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   共通クラス (from index.css)
   ======================================== */
/* タイトル下線 - センター配置 */
.title-underline {
  width: var(--underline-width);
  height: var(--underline-height);
  background-color: var(--underline-color);
  margin: 0 auto;
}

/* タイトル下線 - 左寄せ */
.title-underline-left {
  width: 100%;
  max-width: var(--underline-width);
  height: var(--underline-height);
  background-color: var(--underline-color);
  margin: 0;
}

/* セクションタイトル下線（ボーダー式） */
.section-title-underline {
  border-bottom: var(--underline-height) solid var(--underline-color);
  padding-bottom: 1rem;
}

/* 共通ボタンスタイル */
.btn-primary {
  background-color: var(--color-button-primary);
  color: var(--color-text-primary);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

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

.btn-secondary {
  background-color: var(--color-button-secondary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

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

/* 各セクションにて、センターよりでの下線引き */
.section-main-center-title {
  position: relative;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.section-main-center-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5%;
  border-bottom: 4px solid #AAA;
}

.section-main-left-title {
  position: relative;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: normal;
  color: #333;
  padding-bottom: 8px;
}

.section-main-left-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 15%;
  border-bottom: 4px solid #e0e0e0;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* heroタイトル用テンプレCSS */
.black-hero-title {
  position: absolute;
  top: 60%;
  left: 25%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 900;
  color: #333;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
               0 0 40px rgba(200, 200, 200, 1),
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 30px rgba(255, 255, 255, 0.4);
}

.white-hero-title {
  position: absolute;
  top: 60%;
  left: 20%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
               0 0 40px rgba(0, 0, 0, 1),
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 30px rgba(255, 255, 255, 0.4);
}

/* ========================================
   ヘッダー (from Header.css)
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  gap: 3rem;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav a {
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  white-space: nowrap;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: #333;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s;
}

/* ========================================
   ヒーローセクション (from App.css)
   ======================================== */
.hero-wrapper {
  margin-top: 70px;
}

.hero {
  height: 65vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 3s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  animation: zoomOut 3s ease-out forwards;
  transform: scale(1);
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  background: white;
}

.indicator {
  width: 40px;
  height: 2px;
  background: var(--color-border-medium);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: #fbcbb3;
}

.indicator:hover {
  background: #aaa;
}

.hero-content {
  color: white;
  text-align: center;
  z-index: 5;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: "游明朝体", Yu Mincho, YuMincho, "ヒラギノ明朝 Pro", Hiragino Mincho Pro, "MS P明朝", MS PMincho, serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 30px rgba(255, 255, 255, 0.4);
}

.hero-content h1 .char,
.hero-content h1 .char-static {
  display: inline-block;
}

.hero-content h1 .char {
  opacity: 0;
  animation: charFadeIn 0.5s ease-in forwards;
}

.hero-content h1 .char-static {
  opacity: 0;
}

@keyframes charFadeIn {
  to {
    opacity: 1;
  }
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-button {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: var(--color-button-secondary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.hero-button:hover {
  background: var(--color-button-secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

/* イントロテキスト */
.intro-title {
  font-size: 1.8rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.intro-text {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* ========================================
   コンテンツコンテナ (from App.css)
   ======================================== */
.content-container {
  max-width: var(--container-width-standard);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   お知らせ (from App.css)
   ======================================== */
.notice {
  padding: 0;
}

.notice .content-container {
  background: var(--color-bg-primary);
  border: 2px solid var(--color-border-medium);
}

.notice-link {
  display: block;
  padding: 0.3rem 0;
  text-decoration: none;
  color: #000;
  transition: background 0.3s;
  font-size: 1.4rem;
  font-weight: 400;
}

.notice-link:hover {
  background: var(--color-bg-light);
}

.notice-link dl {
  margin: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.notice-link dt {
  font-weight: 450;
  color: #000;
}

.notice-link dd {
  margin: 0;
}

/* ========================================
   バナーセクション (from App.css)
   ======================================== */
.banner-section {
  padding: 3rem 0;
}

.banner-full {
  width: 100%;
  margin-bottom: 2rem;
}

.banner-full a {
  display: block;
  text-align: center;
  transition: transform 0.3s;
}

.banner-full a:hover {
  transform: translateY(-5px);
}

.banner-full img {
  width: 50%;
  height: auto;
  display: inline-block;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.banner-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
}

.banner-item:hover {
  transform: translateY(-5px);
}

.banner-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   サービスセクション (from App.css)
   ======================================== */
.services-main,
.services-sub {
  padding: 4rem 0;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ========================================
   サービスカード (from ServiceCard.css)
   ======================================== */
.service-card {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-title {
  padding: 1.2rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.service-title .icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.service-image {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.service-card.large .service-image {
  height: 190px;
}

.service-card.small .service-image {
  height: 110px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-description {
  padding: 1.2rem 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
}

/* ========================================
   CTAセクション (from App.css)
   ======================================== */
.cta-section {
  padding: 3rem 0;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* .cta-button, .cta-button-icon は base.css で定義済み */

.index-contact-button {
  display: block;
  padding: 1.5rem 2rem;
  border: 2px solid #ffefe1;
  background: #FFF;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
}

.index-contact-button:hover {
  background: #fffcfa;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #fbceb6;
}

.cta-assist {
  margin-top: 1.5rem;
}

.assist-button {
  display: block;
  padding: 1rem 2rem;
  border: 2px solid #999;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  width: 50%;
  margin-left: auto;
  margin-right: 0;
}

.assist-button:hover {
  background: var(--color-bg-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #bbb;
}

.cta-button-icon {
  margin-left: 0.5rem;
}

/* ========================================
   フッター (from Footer.css)
   ======================================== */
.fixed-top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fixed-top-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-top-button img {
  width: 70px;
  height: 70px;
}

.fixed-top-button:hover {
  background: #f0f0f0;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer {
  background-color: #f9f9f9;
  color: #333;
  padding: 1.2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2.6fr 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: start;
}

.footer-logo {
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 0.7;
}

.footer-logo img {
  height: 110px;
  width: auto;
}

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-address {
  line-height: 1.8;
  color: #111;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-copyright-text {
  font-size: 0.75rem;
  color: #111;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column li {
}

.footer-links-column a {
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links-column a:hover {
  color: #333;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.privacy-mark {
  transition: opacity 0.3s;
}

.privacy-mark:hover {
  opacity: 0.7;
}

.privacy-mark img {
  height: 80px;
  width: auto;
}

/* PDFモーダルは components.css で定義済み */

/* ========================================
   ページ共通ヒーロー
   ======================================== */
.page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ========================================
   卒業アルバムページ (from GraduationAlbum.css)
   ======================================== */
.graduation-album-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.album-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.album-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.album-content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  flex: 1;
}

.album-intro {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
}

.album-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  align-items: center;
}

.album-feature .feature-image {
  width: 100%;
}

.album-feature .feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.album-feature .feature-content {
  padding: 1rem 0;
}

.album-feature .feature-text {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

.album-feature .feature-text:last-child {
  margin-bottom: 0;
}

.album-cta {
  text-align: center;
  padding: 4rem 0;
}

.reasons-section {
  background-color: #FFF;
  padding: 3rem 0;
  margin-top: 2rem;
}

.graduation-content-container .cta-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

/* ========================================
   AlbumFeaturePoint (from AlbumFeaturePoint.css)
   ======================================== */
.feature-point {
  margin-bottom: 3rem;
  width: 100%;
}

.point-header {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.8rem 2rem;
  margin-bottom: 0.5rem;
  position: relative;
  border: 2px solid var(--corner-color);
  width: 100%;
}

.corner {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #FFF;
}

.corner-tl {
  top: -2px;
  left: -2px;
  border-radius: 0 0 40px 0;
  border-right: 2px solid var(--corner-color);
  border-bottom: 2px solid var(--corner-color);
}

.corner-tr {
  top: -2px;
  right: -2px;
  border-radius: 0 0 0 40px;
  border-left: 2px solid var(--corner-color);
  border-bottom: 2px solid var(--corner-color);
}

.corner-bl {
  bottom: -2px;
  left: -2px;
  border-radius: 0 40px 0 0;
  border-right: 2px solid var(--corner-color);
  border-top: 2px solid var(--corner-color);
}

.corner-br {
  bottom: -2px;
  right: -2px;
  border-radius: 40px 0 0 0;
  border-left: 2px solid var(--corner-color);
  border-top: 2px solid var(--corner-color);
}

.point-label {
  font-size: 1.5rem;
  color: #999;
  font-weight: normal;
  margin-left: 1rem;
  margin-right: 0.3rem;
}

.point-title-block {
  transform: translateX(-40px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.point-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  line-height: 1;
  margin-right: -0.5rem;
}

.point-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.point-subtitle {
  font-size: 0.95rem;
  color: #444;
  font-weight: bold;
  padding-left: 1rem;
}

.point-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.point-text {
  padding: 1rem;
}

.point-content {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.point-detail {
  margin-bottom: 1.5rem;
}

.detail-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
  padding-left: 0.8rem;
  border-left: 3px solid #333;
}

.detail-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.point-button-wrapper {
  margin-top: 2rem;
}

.point-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background-color: #d4a574;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.point-button:hover {
  background-color: #c59563;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-cta-button-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.point-button:hover .button-cta-button-icon {
  transform: translateX(4px);
}

.point-image {
  padding: 1rem;
  width: 100%;
}

.point-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-point.reverse .point-body {
  direction: rtl;
}

.feature-point.reverse .point-body > * {
  direction: ltr;
}

/* StepFlowは components.css で定義済み */

/* ========================================
   ContactCTA (from ContactCTA.css)
   ======================================== */
.contact-cta-section {
  background-color: #fff;
  padding: 60px 0 80px;
}

.contact-cta-text {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.contact-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* ========================================
   写真/動画ページ
   ======================================== */
.photo-page,
.design-page,
.print-page,
.webdesign-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.page-intro {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
}

/* 2カラムレイアウト */
.col-2-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.col-2-container.reverse {
  direction: rtl;
}

.col-2-container.reverse > * {
  direction: ltr;
}

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.col-content {
  padding: 1rem 0;
}

.col-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.col-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ========================================
   記念誌ページ (Kinenshi)
   ======================================== */
.kinenshi-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.kinenshi-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kinenshi-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.kinenshi-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.kinenshi-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.kinenshi-intro h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.kinenshi-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.kinenshi-section {
  margin-bottom: 4rem;
}

.kinenshi-section h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ddd;
}

.kinenshi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.kinenshi-item {
  text-align: center;
}

.kinenshi-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.kinenshi-item h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.kinenshi-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   採用情報ページ (Recruit)
   ======================================== */
.recruit-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.recruit-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.recruit-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.recruit-container-2col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 60px 0;
}

.recruit-main-content {
  min-width: 0;
}

.recruit-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.recruit-intro h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.recruit-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.recruit-section {
  margin-bottom: 4rem;
}

.recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.recruit-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.recruit-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recruit-card-image {
  height: 200px;
  overflow: hidden;
}

.recruit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-card-content {
  padding: 1.5rem;
}

.recruit-card-content h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.recruit-card-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* サイドバー */
.recruit-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-section {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.sidebar-section h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ddd;
}

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

.sidebar-section li {
  margin-bottom: 0.5rem;
}

.sidebar-section a {
  color: #555;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.sidebar-section a:hover {
  color: #333;
  text-decoration: underline;
}

/* ========================================
   実績ページ (Works)
   ======================================== */
.works-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.works-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.works-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.works-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-button {
  padding: 0.5rem 1.5rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.filter-button:hover,
.filter-button.active {
  background: var(--color-button-primary);
  border-color: var(--color-button-primary);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.work-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.work-item:hover {
  transform: translateY(-5px);
}

.work-item-image {
  height: 200px;
  overflow: hidden;
}

.work-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item-content {
  padding: 1.5rem;
}

.work-item-content h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.work-item-content p {
  font-size: 0.85rem;
  color: #666;
}

.work-item-category {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: #f5f5f5;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
}

/* ========================================
   お問い合わせページ (Contact)
   ======================================== */
.contact-consent-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consent-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.consent-heading {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-policy {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  max-height: 400px;
  overflow-y: auto;
}

.privacy-policy h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.policy-intro {
  color: #666;
  margin-bottom: 1.5rem;
}

.policy-content section {
  margin-bottom: 1.5rem;
}

.policy-content h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.policy-content p {
  color: #555;
  line-height: 1.7;
}

.consent-notice {
  text-align: center;
  margin-top: 2rem;
}

.agreement-section {
  text-align: center;
  margin: 2rem 0;
}

.agreement-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.agreement-checkbox input {
  width: 20px;
  height: 20px;
}

.consent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.consent-button.disabled {
  background: #ccc;
  color: #999;
  cursor: not-allowed;
}

.consent-button.active {
  background: #ff6b35;
  color: #fff;
}

/* ========================================
   スクールフォトページ (SchoolPhoto)
   ======================================== */
.schoolphoto-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.schoolphoto-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.schoolphoto-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.schoolphoto-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 2rem;
  text-align: center;
}

.schoolphoto-logo {
  margin-bottom: 3rem;
}

.schoolphoto-logo img {
  max-width: 300px;
}

.schoolphoto-text {
  margin-bottom: 3rem;
}

.schoolphoto-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.schoolphoto-button-container {
  margin-top: 2rem;
}

.schoolphoto-button {
  display: inline-block;
  background: #e74c3c;
  padding: 1rem 2rem;
  border-radius: 8px;
}

.schoolphoto-button img {
  height: 40px;
}

/* ========================================
   OC-Assistページ
   ======================================== */
.oc-assist-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.oc-assist-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.oc-assist-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem;
}

/* ========================================
   Pmarkページ
   ======================================== */
.pmark-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pmark-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pmark-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.pmark-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.pmark-document {
  background: #fff;
  padding: 3rem;
}

.document-number {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.document-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.document-info {
  text-align: right;
  margin-bottom: 2rem;
}

.document-body ol {
  padding-left: 1.5rem;
}

.document-body li {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.document-end {
  text-align: right;
  margin-top: 2rem;
}

.contact-section {
  background: #f5f5f5;
  padding: 60px 2rem;
  text-align: center;
}

.contact-box {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-handling-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.privacy-handling-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
}

.privacy-table th,
.privacy-table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: left;
}

.privacy-table th {
  background-color: #f5f5f5;
}

/* ========================================
   カメラマンページ (Cameraman)
   ======================================== */
.cameraman-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cameraman-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cameraman-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem;
}

/* ========================================
   会社概要ページ (About)
   ======================================== */
.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-container-2col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

.about-main-content-wrapper {
  min-width: 0;
}

.about-section {
  margin-bottom: 4rem;
}

.ceo-greeting-content {
  margin-top: 2rem;
}

.greeting-text p {
  color: #555;
  line-height: 1.9;
}

.ceo-signature {
  text-align: right;
  margin-top: 2rem;
}

.signature-title {
  color: #666;
}

.signature-name {
  font-size: 1.3rem;
  font-weight: bold;
}

.company-info-container {
  margin-top: 2rem;
}

.company-info-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

.info-section {
  margin-bottom: 3rem;
}

.info-section-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.info-section-divider {
  height: 2px;
  background: #333;
  margin-bottom: 1.5rem;
}

.info-section-content {
  display: grid;
  gap: 1rem;
}

.info-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.info-item-label {
  font-weight: bold;
  color: #333;
}

.info-item-value {
  color: #555;
}

.network-content {
  margin-top: 2rem;
}

.network-box {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.network-box-text {
  color: #555;
  line-height: 1.8;
}

.network-diagram img {
  width: 100%;
}

.social-content {
  margin-top: 2rem;
}

.social-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.social-item.social-item-reverse {
  direction: rtl;
}

.social-item.social-item-reverse > * {
  direction: ltr;
}

.social-item-image img {
  width: 100%;
  border-radius: 8px;
}

.social-item-description {
  color: #555;
  line-height: 1.8;
}

/* ========================================
   動画ページ (Movie)
   ======================================== */
.movie-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.movie-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.movie-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-button::after {
  content: '';
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.video-content {
  padding: 1.5rem;
}

.video-content h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.video-content p {
  font-size: 0.9rem;
  color: #666;
}

/* ========================================
   アルバム制作実績ページ (AlbumWork)
   ======================================== */
.album-work-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.album-work-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.album-work-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 2rem;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sample-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.sample-item:hover {
  transform: translateY(-5px);
}

.sample-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sample-item-content {
  padding: 1rem;
}

.sample-item-content h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.sample-item-content p {
  font-size: 0.85rem;
  color: #666;
}

/* ライトボックス */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ========================================
   PC/SP切り替え
   ======================================== */
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

/* ========================================
   レスポンシブ (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   レスポンシブ (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  /* ヘッダー */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .nav.active {
    max-height: 500px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav ul {
    flex-direction: column;
    padding: 2rem;
    gap: 0;
  }

  .nav li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }

  /* ヒーロー */
  .hero {
    height: 90vh;
  }

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

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

  /* グリッド */
  .services-grid-3,
  .services-grid-4 {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    grid-template-columns: 1fr;
  }

  .banner-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* SP表示 */
  .sp {
    display: inline;
  }

  .pc {
    display: none;
  }

  /* フッター */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-left {
    text-align: center;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-right {
    align-items: center;
  }

  /* 2カラム → 1カラム */
  .album-feature,
  .col-2-container,
  .social-item {
    grid-template-columns: 1fr;
  }

  .recruit-container-2col,
  .about-container-2col {
    grid-template-columns: 1fr;
  }

  .recruit-sidebar,
  .about-sidebar {
    display: none;
  }

  .recruit-cards,
  .samples-grid,
  .videos-grid,
  .works-grid,
  .kinenshi-grid {
    grid-template-columns: 1fr;
  }

  /* タイトル */
  .white-hero-title,
  .black-hero-title {
    font-size: 2rem;
  }

  /* StepFlow は components.css のレスポンシブで定義済み */

  /* FeaturePoint */
  .point-header {
    padding: 0.6rem 1.5rem;
  }

  .point-number {
    font-size: 2rem;
  }

  .point-title {
    font-size: 1rem;
  }

  .point-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-point.reverse .point-body {
    direction: ltr;
  }

  /* ContactCTA */
  .contact-cta-section {
    padding: 50px 0 60px;
  }

  .contact-cta-text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-buttons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-cta-button {
    padding: 18px 24px;
    font-size: 15px;
  }

  /* info-item */
  .info-item {
    grid-template-columns: 1fr;
  }

  /* セクションタイトル */
  .section-main-center-title {
    font-size: 1.5rem;
  }

  /* PDFモーダル は components.css のレスポンシブで定義済み */

  /* 採用ページレスポンシブ */
  .recruit-content-wrapper {
    padding: 0 1rem;
  }

  .recruit-intro {
    padding: 2rem 1rem;
  }

  .our-work-item,
  .our-work-item.reverse {
    grid-template-columns: 1fr;
  }

  .atmosphere-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   採用ページ追加スタイル (from Recruit.css)
   ======================================== */
.recruit-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.recruit-hero {
  position: relative;
  width: 100%;
}

.recruit-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.recruit-intro {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.recruit-intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.recruit-intro-title {
  font-size: 2rem;
  font-weight: normal;
  color: #111;
  margin-bottom: 1.5rem;
}

.recruit-intro-text {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.recruit-intro-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.recruit-list-section {
  background-color: #fff;
  padding: 1rem 0;
}

.recruit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.recruit-card-link {
  text-decoration: none;
  display: block;
}

.recruit-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid #eee;
}

.recruit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  background-color: #f9f9f9;
}

.recruit-card-title {
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.card-cta-button-icon {
  font-size: 1.5rem;
  color: #666;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}

.recruit-card:hover .card-cta-button-icon {
  transform: translateX(5px);
}

.recruit-flow {
  padding: 3rem 0;
}

/* 私達の仕事 */
.our-work-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.our-work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.our-work-item.reverse {
  direction: rtl;
}

.our-work-item.reverse > * {
  direction: ltr;
}

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

.our-work-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.our-work-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* 社内の雰囲気 */
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.atmosphere-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 採用お問い合わせ窓口 */
.contact-window {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.contact-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}

.contact-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
}

.contact-info-title {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}

.company-info {
  text-align: center;
}

.company-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.company-tel {
  font-size: 1.2rem;
  color: #333;
}

.company-tel a {
  color: #0066cc;
  text-decoration: none;
}

.company-tel a:hover {
  text-decoration: underline;
}

.tel-hours {
  font-size: 0.85rem;
  color: #666;
}

.company-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}

.company-person {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #333;
}

.person-name {
  font-weight: bold;
}

/* サイドバー */
.recruit-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-sticky {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ddd;
}

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

.sidebar-nav li {
  margin-bottom: 0.8rem;
}

.sidebar-nav a {
  color: #555;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-nav a:hover {
  color: #333;
  text-decoration: underline;
}
