@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP');
body, button {
  font-family: 'Noto Serif JP', sans-serif;
  text-align: justify;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: hidden;
  color: #333;
}
/* menu */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
  border-bottom: solid 1px #bead96;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  overflow: hidden;
  /*max-height: 0;*/
  opacity: 1;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  background-color: white;
}
.nav-links li a {
  text-decoration: none;
  font-weight: 700;
  padding: 3px;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
  color: #2b2b2b;
}
.nav-links li a:hover {
  color: #fff;
  background-color: #999;
  transform: scale(1.1);
}
/* ハンバーガーメニュー対応 */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}
/* ロゴのホバーエフェクト */
.logo img {
  transition: 0.5s;
}
.logo img:hover {
  filter: contrast(130%);
}
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px 0px 20px;
    margin: 0px;
    font-size: 6px;
  }
  .logo img {
    width: 125px;
    padding: 10px 0px 0px 10px;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    top: 2px;
    right: 20px;
    font-size: 27px;
    font-weight: 100;
  }
  .menu-toggle span {
    display: block;
    font-size: 6px;
    margin-top: -9px;
  }
  .menu-toggle.fade {
    opacity: 0.1;
  }
  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
  }
  .nav-links li a {
    color: #454545;
    font-weight: normal;
  }
  .nav-links li {
    border-bottom: 1px solid #efefef;
    width: 55%;
    padding: 0px 0px 2px 0px;
  }
  .nav-links.active {
    font-size: 15px;
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
    visibility: visible;
  }
}
/* /menu */
/* index */
/* フェードイン効果 */
.slider {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.slider.visible {
  opacity: 1;
  transform: translateY(0);
}
/* スライダー */
.slider {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  margin: 0px auto;
}
.slide {
  position: absolute;
  width: 100%;
  height: 650px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .slider {
    width: 100%;
    height: 500px;
  }
  .slide {
    position: absolute;
    width: 100%;
    height: 500px;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* カルーセルのボタン */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
/* インジケーター */
.indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.indicator {
  width: 10px;
  height: 10px;
  background-color: #f7f7f7;
  border-radius: 50%;
  cursor: pointer;
}
.indicator.active {
  background-color: #bead96;
  transition: none;
}
/* テキストエリアとボタン */
.text-area {
  padding: 0px 20px 20px 20px;
  text-align: center;
}
.text-area p {
  font-size: 14px;
  color: #333;
}
.text-area button {
  padding: 10px 20px;
  font-size: 14px;
  border: 2px solid #bead96;
  background: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.text-area button:hover {
  background-color: #bead96;
  color: #fff;
}
.image-gallery-top {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.image-gallery {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.gallery-item {
  position: relative;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.gallery-item-sample {
  position: relative;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item-sample.visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.gallery-item-sample img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.gallery-item p {
  font-size: smaller;
}
.gallery-item button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  font-size: 15px;
  border: 2px solid #bead96;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.gallery-item button:hover {
  background-color: #bead96;
  color: #fff;
}
@media (max-width: 480px) {
  .image-gallery-top {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .gallery-item img {
    width: 80%;
  }
  .gallery-item-sample img {
    display: none;
  }
}
/* aboutusのスタイル */
.about-section-bg {
  background-color: #f5f2e9;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.sp {
  display: none;
}
.about-section-bg.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-section-bg.visible {
  display: flex;
  flex-direction: row;
  opacity: 1;
  transform: translateY(0);
}
.about-section {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  text-align: left;
}
.about-section img {
  width: 200px;
  height: auto;
  border-radius: 5px;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text p {
  margin: auto auto 10px auto;
  font-size: 14px;
  color: #333;
}
.about-text button {
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 15px;
  border: 2px solid #bead96;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  color: #333;
}
.about-text a {
  color: #333;
}
.about-text button:hover {
  background-color: #bead96;
  color: #fff;
}
@media (max-width: 480px) {
  .about-section-bg.visible {
    display: block;
  }
  .about-section {
    width: auto;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .about-section.chosei {
    padding-top: 0px;
  }
  .about-section img {
    width: 200px;
  }
  .about-text p {
    margin: 10px 0px 10px 0px;
    font-size: 14px;
    color: #333;
  }
  .sp {
    display: block;
  }
}
/* アイディンティティーセクションのスタイル */
.identity {
  font-size: 14px;
  color: #333;
  margin: 25px;
}
/* セクションのスタイル */
.section-box {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  margin-bottom: 20px;
  background-color: #f5f2e9;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section-box img {
  width: 250px;
  height: auto;
  border-radius: 5px;
}
.section-text {
  flex: 1;
  padding-right: 20px;
}
.gmap {
  width: 600px;
  height: 450px;
  border: 0; /* 既存のスタイルをそのまま適用 */
}
.section-text-ant {
  flex: 1;
  padding-left: 20px;
}
.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #bead96;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 0px;
}
.section-subtitle {
  font-size: 18px;
  color: #bead96;
  margin-bottom: 15px;
}
.section-description {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.alceltwo {
	text-align: left;
	width: 35%;
    padding-left: 30px;
}
.intro {
  margin-bottom: 50px
}
.intro_description {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 30px;
  padding-left: 100px;
  text-align: left;
  line-height: 2em;
}
.intro h1 img {
  margin: 40px 0px 3px 0px;
}
.intro img {
  width: 600px;
}
@media (max-width: 480px) {
	.identity {
  font-size: 12px;
}
  .section-box {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 20px;
    background-color: #f5f2e9;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .section-text {
    flex: 1;
    padding: 1px 20px;
  }
  .section-text-ant {
    flex: 1;
    padding: 1px 10px 1px 10px;
  }
  .gmap {
    width: 350px;
    height: 400px;
  }
  .section-box img {
    width: 100%;
  }
  .section-box-two img {
    width: 100%;
  }
  .intro h1 img {
    width: 80%;
  }
  .intro img {
    width: 80%;
  }
  .intro_description {
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.6em;
    margin-top: 30px;
    padding: 10px 20px 0px 20px;
    text-align: left;
  }
  .section-description {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    text-align: left;
  }
	.alceltwo{
	text-align: left;
	width: 35%;
    padding-left: 0px;
}
}
/* アニメーション効果 */
.identity, .main-content, .section-box, .section-box-two {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.identity.visible, .main-content.visible, .section-box.visible, .section-box-two.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-box-two {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  margin-bottom: 20px;
  background-color: #faf9f9;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section-box-two img {
  width: 250px;
  border-radius: 5px;
}
.section-box img {
  width: 250px;
  border-radius: 5px;
}
@media (max-width: 480px) {
  .section-box {
    flex-direction: column;
    text-align: center;
  }
  .section-box-two {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
  }
  .section-box img {
    width: auto;
    height: auto;
  }
  .section-box-two img {
    width: auto;
    height: auto;
  }
}
/* フッターのスタイル */
.footer {
  text-align: center;
  padding: 40px;
  background-color: #d2c4a3;
  font-size: 14px;
  color: #404040;
}