@charset "utf-8";

*,
::before,
::after{
  padding: 0;
  margin: 0;
box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

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



body {  
  font-family:  'LineSeedJP', sans-serif,"Yu Gothic",游ゴシック, "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3,  メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  background-color: #000000;
}

/* フッター下の黒を消す */
html, body {
  height: 100%;
}

body::after {
  content: '';
  display: block;
  height: 150px; /* フッター下の余白分 */
  background-color: #ffffff; 
}




img {
  max-width: 100%;
  
}


.toggle-menu-button{
  display: none;
}



#logo{
  align-items: center; 
  margin-right: 60px; 
  width: 65px;
  height: 65px;
  
}

  #logo img {
  width: 100%;
  height: auto;
}




  /* ヘッダー */

/* ===== デスクトップメニュー ===== */

.header-menu {
  display: flex;
  align-items: center; /* ← これで縦位置が揃う */
  height: 85px;
  padding-left: 40px;
  padding-top: 10px;
  background: #fff; /* 背景色は好みで */

}

.desktop-nav ul {
  display: flex;
  gap: 40px; /* 項目の間隔 */
  margin: 0;
}

.desktop-nav li {
  list-style: none;
}

.desktop-nav li a {
  font-size: 15px;
  font-weight: 500;
  color: #000;
   line-height: 1.2;
  position: relative;
  text-decoration: none;
}

.desktop-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

.desktop-nav li a:hover::after {
  width: 100%;
}

/* ===== ハンバーガーメニュー ===== */
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
}

.menu-toggle__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 3px;
  background-color: #000000;
  transition: all 0.6s;
}

.menu-toggle__line:nth-of-type(1) { top: 14px; }
.menu-toggle__line:nth-of-type(2) { top: 23px; }
.menu-toggle__line:nth-of-type(3) { top: 32px; }

.menu-toggle.active .menu-toggle__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.menu-toggle.active .menu-toggle__line:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active .menu-toggle__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

/* ===== オーバーレイメニュー ===== */
.menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-nav ul {
  text-align: center;
}

.menu-nav ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.menu-nav.active {
  visibility: visible;
  opacity: 1;
}

.menu-nav.active ul li {
  opacity: 1;
  transform: translateY(0);
}

.menu-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.menu-nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
.menu-nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
.menu-nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
.menu-nav.active ul li:nth-child(5) { transition-delay: 0.5s; }

.menu-nav ul li a {
  color: #000000;
  font-size: 24px;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-nav {
    display: flex;
  }
}






    /* ===== 固定テキスト ===== */
   .fixed-text {
  position: relative;
  margin: 30px auto;
  text-align: center;
  font-size: 28px;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  line-height:4.0;
  max-width: 900px;
  padding: 0 20px;
}

/* 画像エリア */
.fullpage-container {
  position: relative;
  width: 80%;          /* 写真エリアの幅（全体の80%） */
  max-width: 1000px;   /* 最大幅を制限 */
  margin: 60px auto;   /* 画面中央に配置＆上下余白 */
  aspect-ratio: 16/9;  /* アスペクト比を16:9に固定（任意） */
  overflow: hidden;
  border-radius: 12px; /* 角を丸める（不要なら削除） */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* 影を追加 */
}

.img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3.5s ease-in-out;
}

.img-box.visible {
  opacity: 1;
  z-index: 1;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 枠に収める */
  display: block;
}

/* swiper */
.swiper {
  position: relative;
  width: 80%;          /* 写真エリアの幅（全体の80%） */
  max-width: 1000px;   /* 最大幅を制限 */
  margin: 60px auto;   /* 画面中央に配置＆上下余白 */
  aspect-ratio: 16/9;  /* アスペクト比を16:9に固定（任意） */
  overflow: hidden;
  border-radius: 12px; /* 角を丸める（不要なら削除） */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* 影を追加 */
}

.swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 枠に収める */
  display: block;
}

.swiper-button-prev {
  position:absolute;
  top:calc( 50% - 25px );
  right:10px;
  z-index:2;
  cursor: pointer;

}

.swiper-button-next {
  position:absolute;
  top:calc( 50% - 25px );
  left:10px;
  z-index:2;
  cursor: pointer;
  transform: scaleX(-1);
}

.swiper-navigation-icon {
	width:30px;
	height:30px;
	color:#ffffff;
}

.swiper-button-prev:hover .swiper-navigation-icon,
.swiper-button-next:hover .swiper-navigation-icon {
	color:rgba(163,163,163,0.5);
}


/* ===== レスポンシブ対応 ===== */
@media screen and (max-width: 1024px) {
  .fullpage-container {
    width: 90%;
    margin: 40px auto;
  }

  .fixed-text {
    font-size: clamp(22px, 3.5vw, 28px);
  }
  
  .swiper {
    width: 90%;
    margin: 40px auto;
  }

}

@media screen and (max-width: 768px) {
  .fullpage-container {
    width: 95%;
    margin: 30px auto;
    aspect-ratio: 4/3; /* スマホは縦横比を少し変える */
  }

  .fixed-text {
    font-size: clamp(18px, 4.5vw, 22px);
    line-height: 1.6;
  }
  
  .swiper {
    width: 95%;
    margin: 30px auto;
    aspect-ratio: 4/3; /* スマホは縦横比を少し変える */
  }

}




@media (any-hover: hover) {
  .buttonNeumorphism {
    transition: box-shadow 0.6s;
  }


.buttonNeumorphism:hover {
  box-shadow: -10px -10px 10px #ffffff, 2px 2px 4px rgb(255, 255, 255);
}

.buttonNeumorphism:active {
  background-color: #e6e6e6;
  box-shadow: inset 10px 10px 20px rgba(228, 230, 241, 0.16);
}
}



.footer {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  width: 100%;
  max-width: 960px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* .footer-left を中央に寄せる */
.footer-left {
  display: flex;
  gap: 30px;
  
  justify-content: center;
  flex: 1; 
  align-items: center; 
}

.footer-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-item.tel {
  font-size: 25px;
  margin-top: -2px;
  line-height: 40px; 
  height: 40px;
  display: inline-block;
  color: #000000;
  text-decoration: none;
}

/* 電話スタイル */
.la-phone {
  position: relative;
  top: 2px;
}


.footer-nav-item a:hover {
  opacity: 0.7;
}


/* メールボタン内のSVGは上下中央 */
.buttonNeumorphism svg {
 height: 30px;  /* ボタン内で少し小さめ */
  width: auto;
  display: block;
  margin: 0;
}


/* メールボタンスタイル */
.buttonNeumorphism {
 width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 5px 5px 20px #c8c9cc, inset -5px -5px 20px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;;
  padding: 0; /* 念のため */
}

.iconEmail {
  margin: 0;
 
}

/* インスタ画像とメールボタンの高さを揃える */
.footer-menu img
 {
  height: 30px;
  display: block; /* 不要な下余白を消す */
  width: auto;    /* 横幅は自動調整 */
  margin-top: 5px; /* 例えば上下5px調整で垂直中心に近づける */
  margin-bottom: 5px;
}


/* コピーライト */
.footer-copyright {
  margin-top: 80px;
  text-align: center;

}


/***追従するトップへ戻るボタン***/
#page-top {
  margin-bottom: 100px;
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #272727;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/