/* 基本設定 */
body {
  margin: 0;
  background: #FFFBF9;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  color:#8d4A4A;
}

.wave0 {
  width: 100%;        /* 親要素に合わせる */
  overflow: hidden;   /* はみ出し防止 (optional) */
  line-height: 0;     /* 下の隙間対策 */
  margin-top: 20px;
  position: relative;     /* ← 追加 */
  z-index: 100;
}

.wave0 img {
  display: block;     /* 下に隙間ができないように */
  width: 100%;        /* 横幅を画面いっぱい */
  height: auto;       /* 比率を保つ */
}
.wave1 {
  width: 100%;        /* 親要素に合わせる */
  overflow: hidden;   /* はみ出し防止 (optional) */
  line-height: 0;     /* 下の隙間対策 */
  margin-top: -100px;
  position: relative;     /* ← 追加 */
  z-index: 100;
}

.wave1 img {
  display: block;     /* 下に隙間ができないように */
  width: 100%;        /* 横幅を画面いっぱい */
  height: auto;       /* 比率を保つ */
}

.wave2 {
  width: 100%;        /* 親要素に合わせる */
  overflow: hidden;   /* はみ出し防止 (optional) */
  line-height: 0;     /* 下の隙間対策 */
  margin-bottom: -20px;
  position: relative;     /* ← 追加 */
  z-index: 100;
}


.wave2 img {
  display: block;     /* 下に隙間ができないように */
  width: 100%;        /* 横幅を画面いっぱい */
  height: auto;       /* 比率を保つ */
}

.wave3 {
  width: 100%;        /* 親要素に合わせる */
  overflow: hidden;   /* はみ出し防止 (optional) */
  line-height: 0;     /* 下の隙間対策 */
  margin-bottom: -20px;
  position: relative;     /* ← 追加 */
  z-index: 100;
}

.wave3 img {
  display: block;  
  width: 100%;      
  height: auto;   
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}


/* 全体の固定と配置 */
/* ヘッダー全体 */
.header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.logo {
    margin-top:-60px;
    margin-bottom:-60px;
    margin-left:0px;
}
/* ロゴ */
.logo img {
  height: 20px;
}

/* ナビ中央配置（絶対位置） */
.nav {
  position: absolute;
  left: 50vw;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}


.nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #8d4A4A;
  font-weight: 550;
  font-size: 0.8em;
  text-align: center;
}

.nav-sub {
  display: block;
  font-size: 8pt;
  color: #8d4A4A;
  font-weight: 500;
}

.nav-close {
  display:none;
}

/* 右側アイコン */
.icons {
  display: flex;
  gap: 20px;
  margin-right:30px;
}

.icons img {
  height: 24px;
  width: auto;
}

/* スクロールしても固定 */
body {
  padding-top: 80px; /* ヘッダー高さ分余白をつける */
}




/*==============================
  ファーストビュー全体
==============================*/
.first-view {
  margin-top: 30px;
  background: #FFFBF9;
  position: center;
  overflow: hidden;
}

/* スライダー枠 */
.slider-wrapper {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider-wrapper::-webkit-scrollbar {
  display: none;
}

/* スライダー本体 */
.slider {
  display: flex;
  gap: 0;           /* ← スライドの間なし */
  text-align: center;
  padding: 0;
}

/* スライド */
.slide {
  position: relative; /* 疑似要素の基準 */
  flex: 0 0 60vw;
  scroll-snap-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* スライド画像 */
.slide img {
  width: 100%;
  text-align: center;
  border-radius: 8px;
  display: block;
}

/* 非currentスライドは縮小・暗く・ブラー */
.slide:not(.current) {
  transform: scale(0.85);
  z-index: 0;
}

.slide:not(.current)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8); /* ← 白っぽいフィルター感 */
  backdrop-filter: blur(2px);           /* ← 背景ぼかし効果（対応ブラウザのみ） */
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
}

/* currentは強調 */
.slide.current {
  filter: none;
  transform: scale(1);
}

/* ドットナビゲーション */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}

.slider-nav .dot {
  width: 10px;
  height: 10px;
  background: #DDA094;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.slider-nav .dot.active {
  opacity: 1;
  background: #8d4A4A;
}

/* 矢印 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.slider-arrow.prev {
  left: 14%;
}

.slider-arrow.next {
  right: 14%;
}

/* ←画像を左右反転して「前へ」っぽく */
.slider-arrow.prev img {
  transform: scaleX(-1);
}


.spacer {
  flex: 0 0 20vw;
  pointer-events: none;
}







.brand-concept {
  position: relative;
  background: #FFFBF9;
  overflow: hidden;
}

.brand-concept h2 {
  padding: 0 50px;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight:400;
  color: #8b2d2d;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.brand-concept h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50px; /* paddingと揃える */
  width: 250px;
  height: 1px;
  background: #8b2d2d;
}

.brand-concept .sub {
  padding: 0 50px;
  margin-top: 0px;
  color: #8b2d2d;
}

/* キャッチコピーを明朝体 */
.brand-concept .text h3 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: normal;
  line-height:2;
  font-size: 22pt;
  color:#8d4A4A;
}

/* 説明文をおしゃれゴシック */
.brand-concept .text p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 3;
  font-size:10pt;
  color:#8d4A4A;
}

/* 背景テキストを一番背面に、太くポップに */
.brand-concept .background-icon {
  position: absolute;
  top: 200px;  /* 調整してください */
  left: 200px;
}

.brand-concept .background-icon img{
    height:400px;
    opacity: 0.2;
}

.brand-concept .concept-content {
  display: flex;
  position: relative;
  z-index: 2;  /* 背景より上に */
  min-height: 400px; /* 必要に応じて高さ調整 */
  display: flex;
  align-items: center; 
  padding: 0 50px;
}

.brand-concept .text {
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
}


.brand-concept .image {
  width: 30%;
  height: 300px;
  flex-shrink: 0;
  position: relative; /* 子要素の絶対位置の基準 */
  margin-bottom:40px;
  margin-top:-130px;
}

.brand-concept .image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  position: absolute;
}

/* 前面画像 */
.brand-concept .image .img-front {
  z-index: 1;
  top: 0;
  left: 0;
}

/* 背面画像（少し下＆右にずらして見せる） */
.brand-concept .image .img-back {
  z-index: 2;
  top: 300px;
  left: 200px;
}





.shop {
  background: #dda094;
  padding: 50px;
  margin-top:-30px;
}

.shop h2 {
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 400;
}

.shop h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left:0px;
  width: 250px;
  height: 1px;
  background: #fff;
}

.shop .sub {
  margin-top: 0px;
  color: #fff;
}

.shop .shop-content {
  display: flex;
  justify-content: center; /* ← space-between を center に */
  align-items: center;
  gap: 40px;
}

.shop .pick-up {
  text-align: center;
  max-width: 300px;
}

.shop .pick-up h3 {
  flex: 1;   /* 左カラム: 余白もつける */
  font-size: 50px;
  font-weight: bolder;
  margin-bottom: -30px;
  color: #8b2d2d;
  line-height: 1.1;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.shop .pick-up p {
  flex: 1; 
  color: #8b2d2d;
  margin-top:50px;
}

.shop .products {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  margin-left: 0;
}

.shop .product-card {
  background: #FFFBF9;
  border-radius: 0px;
  overflow: hidden;
  text-align: center;
  width: 200px;
  height: 200px;
  flex-shrink: 0;   /* flexで縮まない */
}

.shop .product-card img {
  width: 100%;
   /* 画像サイズ固定 */
  object-fit: cover; /* 中央トリミング */
  display: block;
}

.shop .product-name {
  margin: 10px 0;
  font-size: 12px;
  text-align: center;
  color:#8b2d2d;
}


.shop-links {
  margin-top: 40px;
  margin-right:30px;
  display: flex;
  flex-direction: column;       /* 縦方向に並べる */
  align-items: flex-end;        /* 子要素を右揃えに */
  gap: 20px;                    /* 縦方向の間隔 */
}


.shop-link {
  display: inline-flex;      /* 横並びを維持 */
  align-items: center;       /* 縦中央揃え */
  background: #FFFBF9;
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  gap: 8px;                  /* 要素同士の間隔 */
}

.shop-link:hover {
  background: linear-gradient(to right, #FFFBF9, #F3D7D3);
}

.shop-link .icon {
  height: 20px;              /* 矢印アイコンの高さ */
  width: auto;
  margin-left:10px;
}

.shop-link .logo {
  height: 20px;              /* ロゴの高さ */
  width: auto;
  margin: 5px;
}

.shop-links a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  gap: 8px; /* 画像とテキストの間隔 */
}

.product-card {
  width: 100px;
  height: 100px;
  background: #fff;
}



.category {
  background: #FFFBF9;
}

.category h2 {
  padding: 0 50px;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #8b2d2d;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  margin-top:80px;
}

.category h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50px; /* paddingと揃える */
  width: 250px;
  height: 1px;
  background: #8b2d2d;
}

.category .sub {
  padding: 0 50px;
  margin-top: 0px;
  color: #8b2d2d;
}

.category-list {
  padding: 20px 200px;                      /* ← 周囲の余白を少なく */
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr)); /* ← 列を小さめに */
  gap: 16px;
}


.category-item {
  background: #FFFBF9;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border: 1px solid #F3D7D3;        /* ← これを追加 */
  border-radius: 8px;            /* お好みで角を丸く */
  color:#dda094;
  font-weight:500;
  font-weight:bold;
}

.category-icon {
  width: 30px;
  height: 30px;
  margin:5px;
  object-fit: contain;
}

.category-item:hover {
  background: linear-gradient(to right, #FFFBF9, #F3D7D3);
  color: #8b2d2d;
}

.category-item:hover span {
  color: #8b2d2d;
}




.news {
  background: #F3D7D3;
  margin-bottom: 80px;
}

/* News見出し（アンダーバー付き）*/
.news h2 {
  padding: 0 50px;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #8b2d2d;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.news h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50px; /* paddingと揃える */
  width: 250px;
  height: 1px;
  background: #8b2d2d;
}

.news .sub {
  padding: 0 50px;
  margin-top: 0px;
  color: #8b2d2d;
}

.news .recently {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 0 50px;
  flex-wrap: wrap;
}

.recently-left {
  flex: 1;
}

.recently-left h3 {
  font-size: 80px;
  font-weight: bolder;
  margin-bottom: -30px;
  color: #F3D7D3;
}

.recently-left p {
  color: #F3D7D3;
}

.recently-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  gap: 60px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 15px;
}

.news-date {
  text-align: left;
  flex: 1;
  color: #8b2d2d;
}

.news-title {
  text-align: right;
  flex: 2;
  color: #8b2d2d;
}

/* View More を右寄せ */
.view-more {
  margin-bottom: 60px;
  text-align: right;
}

.view-more a {
  display: inline-block;
  color: #8b2d2d;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 16px;
  border: 1px solid #8b2d2d;
  border-radius: 8px;
}

.view-more a:hover {
  background-color: #8b2d2d;
  color: #ffffff;
}




/* セクション全体 */
.about {
  background: #FFFBF9;
  padding: 50px;
}

.about .sub {
    margin-top: -70px;
    color: #333;
}

.about h2 {
  display: flex;
  align-items: center;       /* ← テキストとロゴを垂直中央揃え */
  gap: 10px;                 /* テキストとロゴの間隔 */
  margin-top:-60px;
  margin-bottom: 10px;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  position: relative;
  display: inline-block;
}

.about h2::after {
  content: "";
  position: absolute;
  bottom: 65px;
  left: 0px; 
  width: 250px;
  height: 1px;
  background: #333;
}

.logo-about img {
  height: 160px;              /* テキストと高さを揃える適正サイズ */
  vertical-align: middle;
  margin-left:-30px;
}



/* 表 */
.about table {
  text-align: center;
  border-collapse: separate;
  border-spacing: 0;
  width: 80%;
  max-width: 700px;
  margin: 0 auto;   
  overflow: hidden;
  font-size: 14px;
  padding: 30px;
}

/* 左列：グレー背景、右列：白背景 */
.about th {
  background-color: #E9E3E2;
  color: #333;
  padding: 15px;
  text-align: left;
  width: 35%;
  font-weight: 600;
}

.about td {
  background-color: #FFFBF9;
  padding: 15px;
  text-align: left;
  color: #333;
}





.footer {
  background: #9B9492;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-logo {
    margin-top:-50px;
    margin-bottom:-50px;
}
.footer-logo img {
  height: 200px;
  z-index: 2;
}

.footer p {
  margin-top:0px;
  font-size:x-small
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0px;
  z-index:1;
}

.footer-links a {
  display: inline-block;
  padding: 10px 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  z-index:0;
}

.footer-links a:hover {
  text-decoration: underline;
}




.burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}




@media (min-width: 769px) {
  .nav .nav-close {
    display: none;
  }
}

@media (max-width: 768px) {

  /* ========== ヘッダー ========== */
  .header {
    padding: 10px;
    z-index: 1000;
    background: none;
  }

  .icons {
    display: none;
  }


.burger {
  display: block;
  position: absolute;
  right: 0px;
  top: 5px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
  color: #8b2d2d;
}
.burger.hidden {
  display: none !important;
}

.nav {
    position: absolute;
    top: 0;
    left: 0; 
    gap:0;      
    transform: none;        
    display: none;
    flex-direction: column;
    width: 100%;
    background: #FFFBF9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.nav.open {
  display: flex;
}

.nav a {
  border-bottom: 1px solid #ddd;
  padding:20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #8b2d2d;
  text-decoration: none;
  font-weight: 500;
}

/* 閉じるボタン */
.nav .nav-close {
  background: #f0e1dd;
  font-weight: bold;
  border-top: 1px solid #ddd;
  cursor: pointer;
  color: #8b2d2d;
}



  .slider-arrow {
    display:none;
  }

 .logo {
    margin-top:0px;
    margin-left:20px;
  }

  /* スライド */
.slide {
  position: relative; /* 疑似要素の基準 */
  flex: 0 0 80vw;
  scroll-snap-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* スライド画像 */
.slide img {
  width: 100%;
  text-align: center;
  border-radius: 8px;
  display: block;
}


  /* ========== ブランドセクション ========== */
 
 .brand-concept h2 {
  padding: 0 30px;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight:400;
  color: #8b2d2d;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.brand-concept h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 30px; /* paddingと揃える */
  width: 250px;
  height: 1px;
  background: #8b2d2d;
}
.brand-concept .sub {
  padding: 0 30px;
  margin-top: 0px;
  color: #8b2d2d;
}

  .brand-concept .concept-content {
    flex-direction: column;
    padding: 0px;
  }

  .brand-concept .image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding:0 50px;
  }

  .brand-concept .image img {
     display: none;
  }

  .brand-concept .text {
    width: 100%;
    padding: 0 30px;
    text-align: center;
  }
  /* キャッチコピーを明朝体 */
.brand-concept .text h3 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: normal;
  line-height:2;
  font-size: 16pt;
  color:#8d4A4A;
}

/* 説明文をおしゃれゴシック */
.brand-concept .text p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 3;
  font-size:10pt;
  color:#8d4A4A;
}

/* 背景テキストを一番背面に、太くポップに */
.brand-concept .background-icon {
  position: absolute;
  top: 140px;  /* 調整してください */
  left: 90px;
}

.brand-concept .background-icon img{
    height:400px;
    opacity: 0.2;
}


  /* ========== ショップセクション ========== */
  .shop {
  background: #dda094;
  padding: 30px;
  margin-top:-30px;
}

  .shop .shop-content {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .shop .pick-up {
    text-align: center;
  }

  .shop .pick-up h3 {
    font-size:30pt;
  }

  .shop .pick-up p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .shop .products {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .shop .product {
    width: 100px;
    text-align: center;
  }

  .shop .product-card {
    width: 100px;
    height: 100px;
  }

  .shop .product-name {
    font-size: 12px;
    margin-top: 8px;
  }

  /* ========== カテゴリーはそのままOK ========== */

.category h2 {
  padding: 0 30px;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #8b2d2d;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  margin-top:80px;
}

.category h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 30px; /* paddingと揃える */
  width: 250px;
  height: 1px;
  background: #8b2d2d;
}

.category .sub {
  padding: 0 30px;
  margin-top: 0px;
  color: #8b2d2d;
}
  .category-list {
    padding: 60px;  /* 左右の余白を縮小 */
    grid-template-columns: 1fr;  /* ← 1列に */
    gap: 12px;
  }

  .category-item {
    padding: 10px;
    font-size: 13px;
  }

  .category-icon {
    width: 24px;
    height: 24px;
    margin: 4px;
    margin-right:30px;
  }



  /* ========== ニュースセクション ========== */
.news h2 {
  padding: 0 30px;
  font-family: "Lao MN", "Karla", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #8b2d2d;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.news h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 30px; /* paddingと揃える */
  width: 250px;
  height: 1px;
  background: #8b2d2d;
}

.news .sub {
  padding: 0 30px;
  margin-top: 0px;
  color: #8b2d2d;
}
  .news h2 {
    margin-top:100px;
  }
  .news .recently {
    padding: 0 20px;
    flex-direction: column;
    align-items: center;  /* ← ここで中央寄せ */
    text-align: center;
  }

  .recently-left,
  .recently-right {
    width: 100%;
    align-items: center;
  }

  .news-list {
    width: 80%;
    margin-top:-100px;
    padding-left: 50px;
    padding-right:50px;
  }

  .recently-left h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
  }

  .recently-left p {
    text-align: center;
    margin-bottom: 20px;
  }

  .recently-right {
    padding-top: 0;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .news-date {
    font-size: 12px;
  }

  .news-title {
    font-size: 14px;
  }

  .view-more {
    width: 100%;
    text-align: center;
  }

  /* ========== 会社概要セクション ========== */
  
  .about {
  background: #FFFBF9;
  padding: 30px;
}
  .about table {
    width: calc(100% - 0px); /* 左右に50px余白 */
    margin: 0 auto;
  }

  .about th,
  .about td {
    font-size: 12px;
    padding: 10px;
  }
}



#transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 9999;
}

#transition-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeOut 1.2s ease forwards;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}


/* スプラッシュ画像 */
#splash {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('img/transition.png') no-repeat center center/cover;
  z-index: 9999;
  animation: fadeOut 2s ease 3s forwards; /* 3秒待機後、2秒でフェードアウト */
}

/* フェードアウトのアニメーション */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* メインコンテンツは初期状態で非表示 */
#main-content {
  display: none;
  padding: 2rem;
}

/* スプラッシュ終了後に表示 */
body.loaded #main-content {
  display: block;
}

/* スプラッシュ後にスクロール可能にしたい場合 */
body.loaded {
  overflow: auto;
}
