/* === 共通設定 === */
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #fff;
    color: #333;
  }
  
  html, body {
    height: 100%;
  }
  
  /* === ヘッダー === */
  header {
    background-color: white;
    height: 100px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    margin-top: 1rem;
  }
  
  nav {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    color: #1a237e; /* ネイビーに変更 */
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-light {
    color: black !important;
    font-weight: normal !important;
  }
  
  nav a:hover, .nav-light:hover {
    text-decoration: underline;
  }
  
  /* === HEROスライド === */
  /* HERO下に斜めカットを追加 */
  .hero {
    position: relative;
    height: 600px; /* スライド画像の最大高さに合わせて固定 */
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }
  
  .slide.active {
    display: block;
    opacity: 1;
  }
  
  .hero::after {
    content: "▼ SCROLL";
    display: flex;
    align-items: center; /* 下から少し上に移動：bottom → center に */
    justify-content: right;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff; 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #1a237e;  /* 色はお好みで */
    clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
    z-index: 2;
    padding-right: 20px;
    padding-bottom: 10px; /* ★ 文字をもう少し上にしたい場合ここを増やす */
    box-sizing: border-box;
    pointer-events: none;
  }
  
  
  
  
  .slide.active {
    display: block;
    opacity: 1;
  }
  
  /* === Productsセクション === */
  .products {
    background-color: #fff;
    padding: 50px 0;
  }
  
  .products__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    background-color: #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
  }
  
  .product-image {
    background-color: #ccc;
    height: 200px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .product-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .product-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6f00;
  color: white;
    border-radius: 5px;
  }
  
  /* === Newsセクション === */
  .news {
    background-color: #fff;
    padding: 50px 0;
  }
  
  .news__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .news-item {
    margin-bottom: 20px;
  }
  
  .news-date {
    color: #888;
    font-size: 14px;
  }
  
  .news-title {
    font-size: 16px; /* 小さく修正 */
    color: #333;
    margin-top: 5px;
  }
  
  .news-link {
    color: #1a237e;
    font-size: 16px;
    text-decoration: underline;
  }
  
  .news-separator {
    border-top: 1px solid #ddd;
    margin: 20px 0;
  }
  
  /* === Policyセクション === */
  .policy {
    background-color: #f5f9fb;
    padding: 50px 0;
    text-align: center;
  }
  
  .policy__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .policy h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .policy-box {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    text-align: left;
  }
  
  .policy-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .policy-box p {
    line-height: 2; /* 行間を広く修正 */
    margin-bottom: 20px;
  }
  
  /* === Companyセクション === */
  .company {
    background: linear-gradient(135deg, #1a237e 0%, #6c7ef7 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
  }
  
  .company__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .company h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .company__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 0 auto;
    max-width: 600px;
  }
  
  .company__info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .company__label {
    flex: 0 0 100px;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    text-align: left;
  }
  
  .company__info-item p {
    font-size: 16px;
    margin: 0;
    text-align: left;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  
  
  .company__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .contact-button, .guidelines-button {
    background: white;
    color: #1a237e;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
  }
  
  .contact-button:hover, .guidelines-button:hover {
    background-color: #1a237e;
    color: white;
  }
  
  /* === フッター === */
  footer {
    text-align: right;
    padding: 2rem;
    background: #eee;
    font-size: 0.9rem;
    min-height: 150px;
  }
  
.product-link:hover {
  background-color: #e65100;
  text-decoration: none;
}
