/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 27 2026 | 12:43:51 */
/* ==========================================================================
   Story Section (Intro)
   ========================================================================== */
.ats-story-block {
  margin-bottom: 80px;
}
.ats-story-header {
  text-align: center;
  margin-bottom: 40px;
}
.ats-story-name {
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  color: #5d4037;
  margin-bottom: 15px;
  display: block;
}
.ats-story-name-en {
  font-size: 1.2rem;
  color: #7d6b5d;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}
.ats-story-role {
  display: block;
  font-size: 1.2rem;
  color: #7d6b5d;
  margin-top: 5px;
  font-weight: normal;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}
.ats-story-catch {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.6;
}

.ats-story-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 50px;
  gap: 30px;
  text-align: left;
}
.ats-story-icon {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.ats-story-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ▼ PC Font Size: 18px */
.ats-story-desc {
  font-size: 1.125rem; /* ~18px */
  line-height: 1.8;
  margin-bottom: 0;
}

/* Story Grid (2-Col) */
.ats-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 0;
  padding: 40px;
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.03);
}

/* Story List (Left) */
.ats-story-item {
  padding: 20px;
  border-left: 4px solid #ddd;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 15px;
  background: transparent;
}
.ats-story-item:last-child { margin-bottom: 0; }
.ats-story-item:hover {
  background: rgba(255,255,255,0.5);
}
.ats-story-item.active {
  border-left-color: #5d4037;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 0 10px 10px 0;
}
.ats-story-item-title {
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.1rem;
  color: #5d4037;
  margin-bottom: 8px;
}

/* ▼ PC Font Size: 18px */
.ats-story-item-text {
  font-size: 1.125rem; /* ~18px */
  color: #7d6b5d;
  line-height: 1.6;
}

.ats-story-sp-img {
  display: none; /* Hidden on PC */
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.ats-story-sp-img img {
  width: 100%;
  display: block;
}

/* Story Visual (Right) */
.ats-story-visual {
  position: relative;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.ats-story-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.ats-story-img.active {
  opacity: 1;
  pointer-events: auto;
}
.ats-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  /* Mobile Story Section */
  .ats-story-intro {
    flex-direction: column;
    text-align: center;
  }
  
  /* ▼ SP Font Size: 16px */
  .ats-story-desc {
    text-align: justify;
    font-size: 1rem; /* 16px */
  }
  .ats-story-grid {
    display: block;
    padding: 20px 0;
  }
  .ats-story-visual {
    display: none; /* Hide large visual area on mobile */
  }
  .ats-story-item {
    border-left: none;
    border-top: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 0;
    pointer-events: none; /* Disable click on mobile */
  }
  
  /* ▼ SP Font Size: 16px */
  .ats-story-item-text {
    font-size: 1rem; /* 16px */
  }

  .ats-story-item:hover { background: transparent; }
  .ats-story-item.active {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .ats-story-sp-img {
    display: block; /* Show inline image on mobile */
  }
} 