/* ========== Google Fonts ========== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Noto+Serif+JP:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* ========== Reset CSS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2C2C2C;
  line-height: 1.6;
  background-color: #FFFFFF;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

/* 共通コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* タブレット版（768px〜1023px） */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}

/* スマホ版（767px以下） */
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

/* ========== セクション共通フォント設計 ========== */

/* 英文（Product / Articles など）*/
.section-subtitle,
.mission-subtitle
.nav-list li a{
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #f2c586;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

/* 和文セクションタイトル */
.section-title,
.mission-title{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: gray;
  margin-bottom: 40px;
}

/* PC */
@media (min-width: 768px){
  .section-subtitle,
  .mission-subtitle{
    font-size: 32px;
  }

  .section-title,
  .mission-title{
    font-size: 20px;
  }
}

/* SP */
@media (max-width: 767px){
  .section-subtitle,
  .mission-subtitle{
    font-size: 28px;
  }

  .section-title,
  .mission-title{
    font-size: 18px;
  }
}

.section-header .section-subtitle{
  margin: 0 0 8px 0;
}

.section-header .section-title{
  margin: 0;
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 24px;
}

.header-logo {
  height: 40px;
}

.hamburger {
  display: block;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2C2C2C;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.header-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: #FFFFFF;
  padding: 40px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}

.header-nav.active {
  transform: translateX(0);
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav-list li a{
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2C2C2C;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-list li a:hover {
  color: gainsboro;
}

/* ========== Header (PC) ========== */
@media (min-width: 1024px) {
  .header-inner {
    padding: 0 80px;
  }

  .hamburger {
    display: none;
  }

  .header-nav {
    position: static;
    transform: translateX(0);
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .nav-list li {
    display: flex;
    align-items: center;
  }

  .nav-list li::after {
    content: '|';
    color: #2C2C2C;
    font-size: 16px;
    margin-left: 16px;
  }

  .nav-list li:last-child::after {
    content: '';
    margin-left: 0;
  }

  .nav-list li a {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C2C2C;
    text-decoration: none;
    padding: 0;
    border-bottom: none;
  }

  .nav-list li a:hover {
    color: gainsboro;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header-inner {
    padding: 0 40px;
  }
}

/* ========== HERO SECTION FINAL ========== */
.hero{
  position:relative;
  width:100%;
  height:800px;
  overflow:hidden;
}

/* slideshow */
.hero-slideshow{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

.hero-slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease;
}

.hero-slide.active{opacity:1;}

.hero-slide:nth-child(1){
  background-image:url('/assets/images/Hero_Section_img_1.jpg');
  background-position:40% center;
}

/* overlay */
.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background:rgba(10,10,10,0.08);
  z-index:1;
} 

/* ===== copy area ===== */
.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  transform: translateY(-200px);
  height:100%;
  padding-left:80px;
  padding-right:80px;
  text-align:left;
}

/* title */
.hero-title{
  font-family:"Noto Sans JP",sans-serif;
  font-weight:600;
  color:#fff;
  letter-spacing:0.04em;
  line-height:1.5;
  text-shadow:0 2px 10px rgba(0,0,0,0.18);
  margin:0 0 16px;
  max-width:620px;
}

/* sub */
.hero-text{
  font-family:"Noto Sans JP",sans-serif;
  font-weight:400;
  color:#fff;
  line-height:1.9;
  letter-spacing:0.02em;
  text-shadow:0 2px 14px rgba(0,0,0,0.22);
  max-width:560px;
  opacity:.95;
  margin-top:clamp(18px,3vw,30px);
  margin-left: 12px;
}

/* CTA */
.hero-cta{
  position:absolute;
  z-index: 3;
  text-align: center;
  letter-spacing: 0.06em;
  left: 80px;
  bottom: 60px;
  transform: none;
  text-align: left;
}

.btn-hero{
  display:inline-block;
  padding:14px 34px;
  font-size:13px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF; font-family: 'Noto Sans JP',sans-serif; 
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

/* hover */
.btn-hero:hover {
  background-color: rgba(0, 0, 0, 0.01);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* ===== PC ===== */
@media (min-width:1024px){
.hero-title{font-size:42px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-top: 40px;
  max-width: 820px; 
}
  .hero-text{font-size:18px;}
}

/* ===== tablet ===== */
@media (min-width:768px) and (max-width:1023px){

  .hero{height:620px;}

  .hero-content{
    padding-left:40px;
    padding-right:40px;
    transform: translateY(-180px);
  }

  .hero-title{font-size:38px;
  letter-spacing: 0.01em;}
  .hero-text{font-size:16px;}

  .hero-cta{
    left:40px;
    bottom:60px;
  }
}

/* ===== mobile ===== */
@media (max-width:767px){

  .hero{height:520px;}

  .hero-content{
    padding-left:25px;
    padding-right:20px;
    transform: translateY(-120px);
  }

  .hero-title{font-size:28px;}
  .hero-text{font-size:15px;}

  .hero-cta{
    left:20px;
    bottom:40px;
  }

  .btn-hero{
    font-size:14px;
    padding:11px 22px;
  }
}

/* ========== Category Section ========== */
.category {
  background-color: #F5F2ED;
  padding: 40px 20px;
}

.category-card {
  background-color: #FFFFFF;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category-info {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.category-name {
  font-size: 18px;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 12px;
  margin-left: 8px;
}

.category-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 20px;
  flex: 1;
  margin-left: 8px;
}

.btn-category {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 28px;
  background-color: #FAF9F7;
  color: #8B6F47;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f2c586;
  border-radius: 24px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
}

.btn-category:hover {
  background-color: #e6e3de;
  color: #FAF9F7;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .category-grid {
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    gap: 40px;
  }
}

/* ========== New Product Section ========== */
.new-product {
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin: 40px 0 24px;
}

.product-card {
  background-color: #FAF9F7;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 24px 20px;
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 8px;
}

.product-date {
  font-size: 13px;
  color: #8B6F47;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.btn-product {
  display: block;
  margin: 0 auto;
  width: fit-content;
  padding: 12px 28px;
  background-color: #FFFFFF;
  color: #8B6F47;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f2c586;
  border-radius: 24px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ========== Video Section ========== */
.video {
  padding: 40px 20px;
  background-color: #FAF9F7;
}

.video-card {
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

/* YouTubeスタイルのプレイボタン */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background-color: rgba(255, 0, 0, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 三角形の再生アイコン */
.play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #FFFFFF;
  margin-left: 4px;
}

.video-thumbnail:hover .play-button {
  background-color: rgba(255, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
  font-size: 16px;
  font-weight: 500;
  color: #2C2C2C;
  padding: 10px 10px;
  text-align: left;
}

.video-cta {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.btn-more {
  display: inline-block;
  padding: 12px 28px;
  background-color: #FFFFFF;
  color: #8B6F47;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #f2c586;
  border-radius: 24px;
  transition: all 0.3s;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-more:hover {
  background-color: #e6e3de;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* PC版 */
@media (min-width: 768px) {
  .video {
    padding: 40px 20px;
  }

  .video .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .video .section-header {
    grid-column: 1 / -1;
  }

  .video-card {
    margin-bottom: 0;
  }

  .video-thumbnail img {
    height: 220px;
  }

  .video-title {
    padding: 10px 10px;
  }

  .video-cta {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

/* ========== Mission Section ========== */
.mission {
  position: relative;
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.mission-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.mission-content {
  position: relative;
  z-index: 2;
  max-width: 335px;
  margin: 0 auto;
}

.mission-content .mission-headline,
.mission-content h3 {
  font-size: 20px; /* スマホ */
  font-weight: 700;
  color: #2C2C2C;
  margin-bottom: 30px;
  line-height: 1.8;
}

.mission-text {
  font-size: 14px;
  line-height: 2.0;
  color: #2C2C2C;
  margin-bottom: 40px;
}

.mission-image {
  width: 100%;
  border-radius: 0px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* PC版 */
@media (min-width: 768px) {
  .mission {
    padding: 40px 40px 40px;
  }

  .mission-content {
    max-width: 900px;
  }

  .mission-content .mission-headline,
  .mission-content h3 {
    font-size: 24px;
    font-weight: 600;
  }

  .mission-text {
    font-size: 16px;
  }
}

/* ========== History Section ========== */
.history {
  padding: 40px 20px;
  background-color: #FAF9F7;
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
}

/* 中央の縦線 */
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #f2c586;
}

.timeline-item {
  margin-bottom: 30px;
  margin-left: 60px;
  position: relative;
  padding-left: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 2px;
  width: 8px;
  height: 8px;
  background-color: #f2c586;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #f2c586;
}

.timeline-year {
  font-size: 16px;
  font-weight: 700;
  color: #f2c586;
  margin-bottom: 8px;
}

.timeline-content {
  background-color: #FFFFFF;
  padding: 16px 16px;
  border-radius: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-text {
  font-size: 14px;
  line-height: 1.8;
  color: #2C2C2C;
  margin: 0;
}

/* PC版 */
@media (min-width: 768px) {
  .history {
    padding: 60px 40px;
  }

  .timeline {
    max-width: 800px;
    margin: 0 auto;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    margin-bottom: 40px;
    margin-left: 60px;
  }

  .timeline-item::before {
    left: -46px;
    top: 2px;
  }

  .timeline-year {
    font-size: 18px;
  }

  .timeline-text {
    font-size: 15px;
  }
}

/* ========== Footer ========== */
.footer {
  background-color: #f2c586;
  color: #FFFFFF;
  padding: 40px 0 30px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  height: 36px;
  margin: 0 auto 20px;
}

.footer-company {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-address,
.footer-contact {
  font-size: 13px;
  line-height: 1.8;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #FFFFFF;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
}

.footer-social a {
  color: grey;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #FAF9F7;
}

.footer-social span {
  color: gray;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: grey;
  padding-top: 20px;
  border-top: 1px solid #444444;
}

/* ========== jQuery Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive: PC版対応(768px以上) ========== */
@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }

  /* New Product: PC版 */
  .new-product {
    padding: 60px 40px;
  }

  .new-product .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .section-header {
    grid-column: 1 / -1;
  }

  .product-card {
    margin-bottom: 0;
  }

  .product-card img {
    height: 350px;
  }

  /* Category: PC版 */
  .category {
    padding: 60px 40px;
  }

  .category .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  .category .section-header {
    grid-column: 1 / -1;
  }

  .category-card {
    margin-bottom: 0;
  }

  .category-card img {
    height: 280px;
  }

  /* Video: PC版 */
  .video {
    padding: 40px 40px;
  }

  .video .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .video .section-header {
    grid-column: 1 / -1;
  }

  .video-card {
    margin-bottom: 0;
  }

  .video-thumbnail img {
    height: 220px;
  }

  .video-cta {
    grid-column: 1 / -1;
  }

  /* Mission: PC版 */
  .mission {
    padding: 60px 40px;
  }

  .mission-content {
    max-width: 900px;
  }

  .mission-headline {
    font-size: 36px;
  }

  .mission-text {
    font-size: 16px;
  }

  /* Footer: PC版 */
  .footer {
    padding: 40px 40px 30px;
  }
}

/* ===== 全セクション共通：タイトル余白 ===== */
.section-header{
  text-align: center;
  margin: 20px 0 24px;
}

@media (min-width: 768px){
  .section-header{
    margin: 20px 0 32px;
  }
}

/* ========== Customer's Voice Section ========== */
.customer-voice {
  background-color: #FAF9F7;
  padding: 40px 0;
}

.customer-voice-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

/* セクションタイトル */
.customer-voice-content .section-subtitle { margin-bottom: 4px; }
.customer-voice-content .section-title { margin-bottom: 30px; }

/* 説明文 */
.customer-voice-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2.0;
  color: #2C2C2C;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* お客様の手紙画像 */
.voice-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
}

.voice-letters-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* CTA ボタン */
.voice-cta {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
}

.btn-voice-more {
  display: inline-block;
  padding: 14px 36px;
  background: #FFFFFF;
  color: #8B6F47;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f2c586;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-voice-more:hover {
  background: #e6e3de;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* スマホ版（767px以下） */
@media (max-width: 767px) {
  .customer-voice { padding: 40px 0; }
  .customer-voice-content { padding: 0 20px; }
}

/* PC版（768px以上） */
@media (min-width: 768px) {
  .customer-voice { padding: 60px 40px; }
  .customer-voice-content {
    max-width: 900px;
    padding: 0 40px;
  }
  .customer-voice-text { font-size: 16px; }
  .voice-image-wrapper { max-width: 700px; }
}

/* ===== スマホだけ改行する br-sp ===== */
.br-sp { display: none; }
@media (max-width: 767px){
  .br-sp { display: inline; }
}

/* ========== News / お知らせ ========== */
.news {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .news {
    padding: 4% 0;
  }
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.news-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) max-content;
  column-gap: 32px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.news-date {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
  white-space: nowrap;
}

.news-text {
  margin: 0;
  color: rgba(0,0,0,0.72);
}

.news a {
  text-decoration: none;
}

.news-link {
  color: rgba(0,0,0,0.48);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.news-link:hover {
  color: rgba(0,0,0,0.72);
}

/* ===== News: SPは縦3行（date / text / link）にする ===== */
@media (max-width: 767px) {
  .news-item{
    display: grid;
    grid-template-columns: 1fr;   /* 1列 */
    grid-template-rows: auto auto auto; /* 3行 */
    row-gap: 8px;
    padding: 16px 0;
  }

  .news-date{
    grid-column: 1;
    grid-row: 1;
    font-size: 14px;
  }

  .news-text{
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    line-height: 1.7;
  }

  .news-link{
    grid-column: 1;
    grid-row: 3;

    /* PC用の nowrap が残ってると不自然になるのでSPだけ解除 */
    white-space: normal;
  }
}

/* ========== Company Info Section ========== */
.company-info {
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.company-info-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #E8E8E8;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  background-color: #F5F2ED;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #2C2C2C;
  text-align: left;
}

.info-value {
  background-color: #FFFFFF;
  padding: 16px 20px;
  font-size: 14px;
  color: #2C2C2C;
  line-height: 1.8;
  text-align: left;
}

.info-value a {
  color: #8B6F47;
  text-decoration: underline;
  transition: color 0.3s;
}

.info-value a:hover {
  color: #f2c586;
}

/* スマホ版 */
@media (max-width: 767px) {
  .company-info {
    padding: 40px 20px;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .info-label {
    background-color: #f2c586;
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 16px;
  }

  .info-value {
    background-color: #FAF9F7;
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* PC版 */
@media (min-width: 768px) {
  .company-info {
    padding: 60px 40px;
  }

  .company-info-table {
    max-width: 800px;
  }

  .info-row {
    grid-template-columns: 200px 1fr;
  }

  .info-label {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
  }

  .info-value {
    padding: 20px 24px;
    font-size: 14px;
  }
}

/* ===== hero title PC1行 / SP改行制御 ===== */

/* PC・タブレットは1行固定 */
@media (min-width:768px){
  .hero-title{
    white-space: nowrap;
  }
}

/* スマホだけ改行 */
.sp-br{
  display:none;
}

@media (max-width:767px){
  .sp-br{
    display:block;
  }
}
