@charset "utf-8";

    /* 中央配置 */
.slider-center {
  width: 320px; /* 好きな幅に調整OK */
  margin: 0 auto;
  position: relative;
}

.fv-slider {
  width: 510px; /* PCはしっかり見せる */
  margin: 0 auto;
  position: relative;
}

.fv-slide-img {
  width: 100%;
  height: 75vh; /* ←ここをvhに */
  background-size: cover;
  background-position: center;
}

/* スライド重ねる */
.fv-slider-list {
  position: relative;
  padding: 0;
  margin: 0;
}

.fv-slide {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transition: opacity 1s ease;
}

/* 表示中 */
.fv-slide.active {
  opacity: 1;
  position: relative;
}

/* バー */
.fv-slider-dots {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.fv-slider-dots span {
  flex: 1;
  height: 2px;
  background: #ddd;
  transition: 0.3s;
}

/* 今の位置 */
.fv-slider-dots span.active {
  background: #333;
}

#logo_wrap_top {
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* ←消す */
}

#box1 {
  padding-top: 30px;
}

#about,
#stephen,
#topics,
#pamphlet {
    padding: 70px 5%;
    position: relative;
}



#planlist {
  margin-top: 60px;
}

.reportbox_photo {
  display: grid!important;
  gap: 40px;           /* ←余白を広げる（横も縦も） */
  max-width: 900px;    /* ←全体を少し細くする */
  margin: 0 auto;      /* ←中央寄せ */
}

.reportbox_photo li:nth-child(even) {
  margin-top: 60px;
}


#planlist .maru1 {
  width: 100%;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  border-radius: 0;     /* ←長丸対策 */
}

/* グリッド化 */
.reportbox3,
.reportbox4 {
  display: grid!important;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.reportbox3 li:nth-child(even),
.reportbox4 li:nth-child(even) {
  margin-top: 60px;
}

/* 画像（長方形） */
.reportbox3 li div,
.reportbox4 li div {
  width: 100%;
  aspect-ratio: 2 / 3;
  background-size: cover;
  background-position: center;
}


/* グリッド化 */
.reportbox {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0px auto 0;
}

/* 画像（長方形） */
.reportbox li div {
  width: 100%;
  aspect-ratio: 2 / 3;
  background-size: cover;
  background-position: center;
}

/* ジグザグ（1枚ずつ） */
.reportbox li:nth-child(even) {
  margin-top: 60px;
}

.sub_content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}
.sub_content li a div:first-child {
  height: 150px; /* 好きな高さ */
  background-size: cover;
  background-position: center;
}

/* カード */
.my-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 4; /* 横長 */
  overflow: hidden;
}

/* 背景 */
.my-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* 文字中央 */
.my-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.my-text p {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

/* 暗幕 */
.my-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.my-card:hover .my-bg {
  filter: grayscale(60%) brightness(0.9);
}



/* リンク全体 */
.circle-link {
  display: inline-block;
}

/* 枠（これが固定サイズ） */
.circle-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden; /* ←これ重要 */
  margin-top: 60px;
}

/* 画像本体 */
.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.4s ease;
}

/* ホバーで画像だけズーム */
.circle-link:hover .circle-img img {
  transform: scale(1.1);
}


/* 枠（これはそのまま固定） */
.square-img,
.square-img2 {
  width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

/* 画像を疑似要素で表示 */
.square-img::before,
.square-img2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit; /* ←HTMLのbackground-imageを引き継ぐ */
  background-size: cover;
  background-position: center;

  transition: transform 0.6s ease;
}

/* ホバー時：画像だけズーム */
.square-link:hover .square-img::before,
.square-link:hover .square-img2::before {
  transform: scale(1.1);
}

.square-link {
  display: inline-block;
}
/* テキストを画像の上に */
.square-img::after,
.square-img2::after {
  content: "レンタル受付中";
  position: absolute;
  bottom: 30px; /* 下寄せ */
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  text-shadow: 0 0 5px rgba(0,0,0,0.7); /* ドロップシャドウ */
}


.square-img2::after {
  content: "8月1日より予約開始";
}

.square-caption {
  margin-top: 15px;
  font-size: 14px;       /* 小さめ */
  letter-spacing: 0.05em;
}

/*-末広がりパーツ -*/
.dress-mask {
  width: 100%;

  background-image: url(../img/index/maskimg_01.jpg);
  background-size: cover;
  background-position: center;

  -webkit-mask-image: url(../img/index/dress_mask.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;

  mask-image: url(../img/index/dress_mask.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}

.dress-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dress-mask01{ /* 背景の写真差し替えはこのclassを複製して、背景指定→dress-maskの後ろにclassをつける */
    background-image: url(../img/index/maskimg_02.jpg);
}

@media (max-width: 600px) {
  #box1 {
    padding-top: 20px;
  }
    .fv-slider {
    width: 70%;
  }

  .fv-slide-img {
    height: 60vh; /* ←スマホは少し低め */
  }
}