/* -------------------------------- index.html -------------------------------- */
body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
}

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

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 40px;
  color: #38424F;
  text-decoration: none;
  z-index: 10;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
}

.menu-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid #38424F;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
}

.menu-button span {
  width: 30px;
  height: 3px;
  background-color: #38424F;
  margin: 3px 0;
}

.hidden {
  display: none !important;
}

.menu-list {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-list a {
  color: #38424F;
  text-decoration: none;
  font-size: 3.6rem;
  margin: 0.5rem 0;
  font-weight: bold;
}

.menu-list a:hover {
  font-size: 4rem;
  text-decoration: none;
  transition: font-size 0.2s ease;
}

.menu-list.active {
  opacity: 1;
  pointer-events: auto;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid #38424F;
  border-radius: 50%;
  background-color: transparent;
  color: #38424F;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.footer-fixed {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #38424F;
  font-size: 0.9rem;
  z-index: 500;
  background-color: transparent;
}

.fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade.show {
  opacity: 1;
}

/* -------------------------------- index.html -------------------------------- */

/* -------------------------------- about.html -------------------------------- */
.page-about .footer-fixed {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #38424F;
  font-size: 0.9rem;
  z-index: 500;
  background-color: transparent;
}

.page-about .page-title {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 3.5rem;
  color: #38424F;
  font-weight: bold;
  z-index: 100;
}

.page-about .about-section {
  position: relative;  /* ← absolute を relative に変更 */
  top: 0;
  left: 0;
  transform: none;
  width: 100vw;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;  /* ← center → flex-start に変更 */
  justify-content: flex-start; /* ← center → flex-start に変更 */
  gap: 2rem;
  padding: 0;
  color: #38424F;
}

.page-about .about-container {
  display: block;      /* ← 横並びをやめて縦並びに */
  height: auto;
}

.page-about .about-image {
  width: 40vw;
  height: 95vh;         /* ← ここで下端を圧縮 */
  overflow: hidden;     /* ← はみ出した下部分を隠す */
}
  .page-about .about-image img {
    width: 100%;
    height: 100%;           /* ← コンテナにフィットさせる */
    object-fit: cover;
    object-position: left center; /* ← 左端固定 */
    display: block;
    margin: 0;
    border-radius: 0 0 40px 0;
  }

.fixed-about-text {
  position: fixed;
  top: 40%;
  left: 58%;
  width: 35vw;
  max-width: 500px;
  color: #38424F;
  z-index: 10;
  font-size: 1.8rem;
  line-height: 1.6;
}

.fixed-about-text h1 {
  margin: 0 0 1rem 0;
}

@media screen and (max-width: 768px) {
  .fixed-about-text {
    position: static;
    width: 90vw;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
  }
}
/* -------------------------------- about.html -------------------------------- */

/* --------------------- news.html --------------------- */
 .page-news .footer-fixed {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #38424F;
  font-size: 0.9rem;
  z-index: 500;
  background-color: transparent;
 }
 
 .page-news .page-title {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 3.5rem;
  color: #38424F;
  font-weight: bold;
  z-index: 100;
 }
 
 .page-news .news-section {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  width: 100vw;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
  color: #38424F;
 }
 
 .page-news .news-container {
  display: block;
  height: auto;
 }
 
 .page-news .news-image {
  width: 40vw;
  height: 95vh;
  overflow: hidden;
 }
  .page-news .news-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: left center;
   display: block;
   margin: 0;
   border-radius: 0 0 40px 0;
  }
 
 .fixed-news-text {
  position: fixed;
  top: 40%;
  left: 58%;
  width: 35vw;
  max-width: 500px;
  color: #38424F;
  z-index: 10;
  font-size: 1.8rem;
  line-height: 1.6;
 }
 
 .fixed-news-text > p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

 .fixed-news-text h1 {
  margin: 0 0 1rem 0;
 }

 .news-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.news-item {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.news-date {
  min-width: 6em;
  font-weight: bold;
  color: #38424F;
  font-size: 1.05rem;
}

.news-title {
  flex: 1;
  word-break: break-word;
}

 @media screen and (max-width: 768px) {
  .fixed-news-text {
   position: static;
   width: 90vw;
   margin: 2rem auto;
   padding: 1rem;
   text-align: center;
  }
 }
/* --------------------- news.html --------------------- */

/* --------------------- menu.html --------------------- */
 .page-menu .footer-fixed {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #38424F;
  font-size: 0.9rem;
  z-index: 500;
  background-color: transparent;
 }
 
 .page-menu .page-title {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 3.5rem;
  color: #38424F;
  font-weight: bold;
  z-index: 100;
 }
 
 .page-menu .menu-section {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  width: 100vw;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
  color: #38424F;
 }
 
 .page-menu .menu-container {
  display: block;
  height: auto;
 }
 
 .page-menu .menu-image {
  width: 40vw;
  height: 95vh;
  overflow: hidden;
 }
  .page-menu .menu-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: left center;
   display: block;
   margin: 0;
   border-radius: 0 0 40px 0;
  }
 
 .fixed-menu-text {
  position: fixed;
  top: 40%;
  left: 58%;
  width: 35vw;
  max-width: 500px;
  color: #38424F;
  z-index: 10;
  font-size: 1.8rem;
  line-height: 1.6;
 }
 
 .fixed-menu-text h1 {
  margin: 0 0 1rem 0;
 }

 @media screen and (max-width: 768px) {
  .fixed-menu-text {
   position: static;
   width: 90vw;
   margin: 2rem auto;
   padding: 1rem;
   text-align: center;
  }
 }
/* --------------------- menu.html --------------------- */

/* --------------------- information.html --------------------- */
 .page-information .footer-fixed {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #38424F;
  font-size: 0.9rem;
  z-index: 500;
  background-color: transparent;
 }
 
 .page-information .page-title {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 3.5rem;
  color: #38424F;
  font-weight: bold;
  z-index: 100;
 }
 
 .page-information .information-section {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  width: 100vw;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
  color: #38424F;
 }
 
 .page-information .information-container {
  display: block;
  height: auto;
 }
 
 .page-information .information-image {
  width: 40vw;
  height: 95vh;
  overflow: hidden;
 }
  .page-information .information-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: left center;
   display: block;
   margin: 0;
   border-radius: 0 0 40px 0;
  }
 
 .fixed-information-text {
  position: fixed;
  top: 40%;
  left: 58%;
  width: 35vw;
  max-width: 500px;
  color: #38424F;
  z-index: 10;
  font-size: 1.8rem;
  line-height: 1.6;
 }
 
 .fixed-information-text h1 {
  margin: 0 0 1rem 0;
 }
 

 .information-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.information-item {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.information-date {
  min-width: 6em;
  font-weight: bold;
  color: #38424F;
  font-size: 1.05rem;
}

.information-title {
  flex: 1;
  word-break: break-word;
}

 @media screen and (max-width: 768px) {
  .fixed-information-text {
   position: static;
   width: 90vw;
   margin: 2rem auto;
   padding: 1rem;
   text-align: center;
  }
 }
/* --------------------- information.html --------------------- */

/* --------------------- products.html --------------------- */
 .page-products .footer-fixed {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #38424F;
  font-size: 0.9rem;
  z-index: 500;
  background-color: transparent;
 }
 
 .page-products .page-title {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 3.5rem;
  color: #38424F;
  font-weight: bold;
  z-index: 100;
 }
 
 .page-products .products-section {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  width: 100vw;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
  color: #38424F;
 }
 
 .page-products .products-container {
  display: block;
  height: auto;
 }
 
 .page-products .products-image {
  width: 40vw;
  height: 95vh;
  overflow: hidden;
 }
  .page-products .products-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: left center;
   display: block;
   margin: 0;
   border-radius: 0 0 40px 0;
  }
 
 .fixed-products-text {
  position: fixed;
  top: 40%;
  left: 58%;
  width: 35vw;
  max-width: 500px;
  color: #38424F;
  z-index: 10;
  font-size: 1.8rem;
  line-height: 1.6;
 }
 
 .fixed-products-text h1 {
  margin: 0 0 1rem 0;
 }
 
 @media screen and (max-width: 768px) {
  .fixed-products-text {
   position: static;
   width: 90vw;
   margin: 2rem auto;
   padding: 1rem;
   text-align: center;
  }
 }
/* --------------------- products.html --------------------- */

/* --------------------- access.html --------------------- */
 .page-access .footer-fixed {
  position: fixed;
  bottom: 10px;
  right: 20px;
  color: #38424F;
  font-size: 0.9rem;
  z-index: 500;
  background-color: transparent;
 }
 
 .page-access .page-title {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 3.5rem;
  color: #38424F;
  font-weight: bold;
  z-index: 100;
 }
 
 .page-access .access-section {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  width: 100vw;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
  color: #38424F;
 }
 
 .page-access .access-container {
  display: block;
  height: auto;
 }
 
 .page-access .access-image {
  width: 40vw;
  height: 95vh;
  overflow: hidden;
 }
  .page-access .access-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: left center;
   display: block;
   margin: 0;
   border-radius: 0 0 40px 0;
  }
 
 .fixed-access-text {
  position: fixed;
  top: 40%;
  left: 58%;
  width: 35vw;
  max-width: 500px;
  color: #38424F;
  z-index: 10;
  font-size: 1.8rem;
  line-height: 1.6;
 }
 
 .fixed-access-text h1 {
  margin: 0 0 1rem 0;
 }
 
 @media screen and (max-width: 768px) {
  .fixed-access-text {
   position: static;
   width: 90vw;
   margin: 2rem auto;
   padding: 1rem;
   text-align: center;
  }
 }
/* --------------------- access.html --------------------- */

