@charset "UTF-8";

body{
  margin: 0;
  font-family: sans-serif;
}
/* ヘッダー */
.header{
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  justify-content: space-between;
  

  padding: 20px 60px;
  box-sizing: border-box;

  z-index: 100;
}

/* ロゴ */
.logo{
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

/* メニュー */
.nav-list{
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* リンク */
.nav-list a{
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;

  transition: .3s;
}

.nav-list a:hover{
  opacity: .7;
}
/* メインビジュアル */
.mv{
  width: 100%;
  height: 100vh;

background: rgba(217, 108, 161, 1.00);

  display: flex;
  justify-content: left;
  align-items: center;

  padding: 0px;
  box-sizing: border-box;
}


/* スライダー */
.slider-wrap{
  width: 65%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 20% 0% 20% 0%;
  box-shadow:none;
}

/* Swiper */
.swiper{
  width: 100%;
  height: 75vh;
}
/* フェード時のはみ出し防止 */
.swiper-slide{
  overflow: hidden;
}
.content{
  background: #f5f5f5; /* 好きな色 */
  padding: 100px 20px;
}
/* ゆっくりズーム */
@keyframes zoomAnime{
  0%{
    transform: scale(1);
  }

  100%{
    transform: scale(1.1);
  }
}
/* 画像 */
.swiper-slide img{
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
animation: zoomAnime 8s ease-in-out infinite;
}

/* ドット */
.swiper-pagination-bullet{
  background: #fff;
  opacity: .7;
}
/* ハンバーガー（PCでは非表示） */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #333;
}
.swiper-pagination-bullet-active{
  opacity: 1;
}
  .social a img.instagram-icon {
    width: 50px;
    height:50px;
  }
/* フローティング問い合わせタブ
.floating-tab{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  background: transparent;
 */
  /* 文字を白 
  color: #fff;
 */
  /* 枠線も白
  border: 3px double #fff;
  padding: 16px 22px;
  writing-mode: vertical-rl;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 0px;
  box-shadow: none;
  z-index: 999;
  transition: 0.3s;
} */
.contact-table.pc-only {
  border-collapse: collapse;
  position: fixed;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  z-index: 999;
}
.contact-table.pc-only td{
  width:200px;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
  display: block;
}
.maincontents{
background-color: #f3f1f1;
}
.sp-only{
  display: none;
}

/* ホバー */
.floating-tab:hover{
  background: rgba(255,255,255,0.15);
}
@media screen and (max-width: 768px) {
  .mv{
    height: 60vh;  /* ←ここで短くする */
  }
/* スライダー */
.swiper {
    height: 40vh; /* スマホはこれくらいがちょうどいいことが多い */
  }
/* ハンバーガー */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 3000;
}

/* 線を白にする */
.hamburger span {
  width: 28px;
  height: 2px;
  background: #fff;
  display: block;
}
   /* メニューは最初隠す */
  .nav {
  position: fixed;
  top: 0;
  left: 0;

  width: 70%;
  height: 100vh;

  background: rgba(255, 255, 255, 0.8);

  padding-top: 100px;

  transform: translateX(-100%); /* ←最初は必ず隠す */
  transition: .5s ease;

  z-index: 2500;
}
  /* 開いたとき */
   .nav.active{
    transform: translateX(0);
  }
   /* 縦並び */
  .nav-list{
    flex-direction: column;
    gap: 0;
  }
  .nav-list li{
    border-bottom: 1px solid #ddd;
    padding: 20px;
  }
   .nav-list a{
    color: #333;
    font-size: 16px;
  } 
.slider-wrap{
  width: 80%;
  max-width: 1200px;
  transform: translateY(10px);
  overflow: hidden;
  border-radius: 20% 0% 20% 0%;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.25);
}
.swiper-slide {
    overflow: hidden;
  }
 .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  /* フローティング問い合わせタブ */
.floating-tab{
  position: fixed;
  right: 0;
  top: 37%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 12px;
  writing-mode: vertical-rl;
  text-decoration: none;
  font-weight: normal;
  letter-spacing: 2px;
  border-radius: 0px;
  z-index: 999;
  transition: 0.3s;
}

/* ヘッダー */
.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
}
.header{ display: flex;
  align-items: center;
  gap: 15px; /* ロゴとアイコンの間隔 */
}
/* Instagramアイコンを右寄せ */
.social {
  margin-left: auto; /* これだけで右端に押し出される */
  display: flex;
  align-items: center;
}
/* Instagramアイコン */
.social a img.instagram-icon {
  width: 28px;   /* サイズ調整 */
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s;
}

.social a img.instagram-icon:hover {
  transform: scale(1.1); /* ホバーで少し拡大 */
}

/* ロゴ */
.logo{
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}

/* メニュー */
.nav-list{
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* リンク */
.nav-list a{
  color: #565454;
  text-decoration-style: dotted;
  text-decoration-color:#565454;
  font-size: 12px;
  font-weight: normal;
  transition: .3s;
}
.nav-list li{
border-bottom: 1px solid #beb8b8;
padding:3px 3px;rgb(143, 136, 136)rgb(129, 124, 124)

}
/* スマホではPC用を隠す */
 .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  } 
  .social a img.instagram-icon {
    width: 24px;
    height: 24px;
  }
  .maincontents{
   padding:5%; 
.date{
  width:80px; 
  background-color: rgb(156, 155, 204);
  opacity: 0.5;
  text-align: center;
  height:30px;
}
.title1{
  font-size: 23px;
  margin-top: 0;
}
.title2{
    font-size: 19px;
}
}
