@charset "UTF-8";

/* ローディング画面全体 */
/* 最初に main コンテンツだけ非表示にする */
body:not(.loaded) main,
body:not(.loaded) header,
body:not(.loaded) footer,
body:not(.loaded) .floating-logo-container,
body:not(.loaded) .sns-qr {
  display: none;
}

/* ローディング中はスクロール禁止 */
body:not(.loaded) {
  overflow: hidden;
}

/* ローディングが完了したら、すべて表示される */
body.loaded {
  overflow: auto;
}
body:not(.loaded) .header__menu {
  opacity: 0 !important;
  visibility: hidden !important;
}





/* ローディング画面 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/bg_floor_yoko-big.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.6s ease-in-out;
  overflow: hidden;
}

/* ロゴアニメーション */
.loading__logo {
  width: 180px;
  opacity: 0;
  animation: fadeInOut 2.8s ease-in-out forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

/* ローディング終了時にスライドアップ */
body.loaded .loading {
  transform: translateY(-100%);
  transition: transform 0.6s ease-in-out;
}






#wrapper {
  overflow: hidden;
  background: url(../img/bg_flower.jpg) center center fixed;
  background-size: cover;
  position: relative;
}
.contentsArea {
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-shadow: 10px 0 15px rgba(0, 0, 0, 0.1), -10px 0 15px rgba(0, 0, 0, 0.1); 
}
@media (min-width: 450px) {
  .contentsArea {
    max-width: 400px; /* PC時にコンテンツを少し広くする（400px～480pxの範囲で調整） */
  }
}  
section {
  padding: 0 35px;
}

/* ----------------------mv---------------------- */
.mv {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 450px) {
  .mv {
    background: url(../img/bg_flower-sp.jpg) center center;
    background-size: cover;
  }
}
/* @media (min-width: 768px) {
  .mv {
    height: 700px
  }
} */
.mv__container {
  text-align: center;
}
.mv__logo {
  max-width: 143px;
  margin: 0 auto 50px;
}
.mv__ttl {
  max-width: 92px;
  margin: 0 auto 15px;
}
.mv__tel {
  display: block;
  margin: 0 auto;
}
.mv__tel,.mv__time {
  max-width: 213px;
}
.mv__iconArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.mv__iconArea-img {
  max-width: 31px;
  display: flex;
  align-items: center;
}

.mv__scroll {
  width: 40px;
  margin-top: 60px;
  animation: scrollBounce 1.5s infinite ease-in-out;
}

/* スクロールのふわふわアニメーション */
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}



/* ----------------------service---------------------- */
.service {
  background: url(../img/bg_floor.jpg)no-repeat center;
  background-size: cover;
  position: relative;
  padding: 60px 35px;
}
.logo-top-container {
  text-align: left;
}
.circle-menu {
  position: relative;
  margin: 0 auto;
  max-width: 300px;
}
.circle-menu__title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 120px;
}
.circle-menu__list {
	aspect-ratio: 1;
	margin: 40px;
	position: relative;
  margin-bottom: 50px;
  max-width: 100%
}
.circle-menu__item {
  width: 100%;
	max-width: 85px;
	height: auto;
	color: #fff;
	text-align: center;
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
/* PCサイズ（768px以上）のときのみホバーで拡大 */
@media (min-width: 768px) {
  .circle-menu__link img {
    transition: transform 0.3s ease;
  }
  .circle-menu__link:hover img {
    transform: scale(1.2);
  }
}
@media (max-width: 365px) {
  .circle-menu__title {
    max-width: 100px;
}
  .circle-menu__item {
    max-width: 70px;
  }
}
.service__arrow {
  max-width: 25px;
  margin: 30px auto 10px;
}
.service__contact {
  max-width: 143px;
}

/* ----------------------product---------------------- */
.product {
  background: #fff;
  position: relative;
}
.product__title {
  position: absolute;
  left: -20px;
  top: 44%;
  transform: rotate(90deg);
  font-size: 2.8rem;
  z-index: 10;
  text-shadow: 
  0px 0px 8px rgba(255, 255, 255, 0.9),
  0px 0px 12px rgba(255, 255, 255, 0.8),
  0px 0px 18px rgba(255, 255, 255, 0.7),
  0px 0px 25px rgba(255, 255, 255, 0.5),
  0px 0px 35px rgba(255, 255, 255, 0.3); 
}
/* スライダーエリア */
.product__slider {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__image-wrapper {
  width: 100%;
  height: 380px;
}
@media (max-width: 450px) {
  .product__slider {
    height: 395px;
  }
  .product__image-wrapper {
    height: 395px;
  }
}
.product__image-wrapper img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  max-width: 121.3%;
  display: block;
  margin-left: -35px;
}
@media (max-width: 400px) {
  .product__image-wrapper img {
    max-width: 124%;
  }
}
@media (max-width: 390px) {
  .product__title {
    top: 42%;
    font-size: 2.6rem;
  }
}
@media (max-width: 360px) {
  .product__image-wrapper img {
    max-width: 127%;
  }
}
@media (max-width: 350px) {
  .product__title {
    top: 39%;
  }
}
/* 左右の矢印 */
.product__arrow {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  width: 60px;
  top: 50%;
  transform: translateY(-50%);
}
.product__arrow--left {
  left: -30px;
}
.product__arrow--right {
  right: -30px;
}
/* インジケーター */
.product__indicator {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}
.product__dot {
  width: 12px;
  height: 12px;
  border: 1px solid #363737;
  border-radius: 50%;
}
.product__dot.active {
  background-color: #b4f091;
}
/* カテゴリー情報 */
.product__info {
  margin-top: 20px;
}
.product__name-price {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
}
.product__price {
  font-size: 1.6rem;
}
.product__description {
  font-size: 1.6rem;
  width: 100%;
  margin-top: 10px;
  text-align: left;
}
/* カテゴリー選択（縦書き） */
.product__category {
  background: url(../img/bg_product_floor.jpg);
  padding: 20px 0;
  display: flex;
  justify-content: center; /* 中央配置 */
  margin-top: 20px;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  max-width: 121.3%;
  margin-left: -35px;
  position: relative;
}
.product__category::before {
  content: ''; 
  width: 74px; /* 画像のサイズ */
  height: 81px;
  background-image: url(../img/img_service-menu_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  left: -15px;
  z-index: 100;
}
.product__category::after {
  content: ''; 
  width: 106px; /* 画像のサイズ */
  height: 96px;
  background-image: url(../img/img_service-menu_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  right: -18px;
  z-index: 10;
}
.product__category ul {
  display: flex; /* 横並びにする */
  gap: 10px; /* カテゴリー間の間隔 */
  list-style: none;
  padding: 0;
  justify-content: center; /* 横並び配置 */
}
.product__category li {
  font-size: 1.6rem;
  cursor: pointer;
  padding: 5px;
  writing-mode: vertical-rl;
  text-align: center;
  position: relative;
  transition: background-color 0.3s ease, width 0.3s ease; /* スムーズな変化 */
}
.product__category li.active {
  background-color: #b4f091;
}

@media (max-width: 360px) {
  .product__category {
    max-width: 126%;
  }
  .product__category ul {
    gap: 2px; 
  }
}


/*追加0314*/
.product_box {
    display: none;
}
.product_box.active {
    display: block;
}
.swiper-container {
	width: calc(100% + 70px);
	margin-left: -35px;
	padding-bottom: 27px;
}

.swiper-slide {
	cursor: pointer;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    z-index: 10;
    cursor: pointer;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next {
	background-image: url(../img/img_product__arrow-right.png);
}

.swiper-button-prev {
	background-image: url(../img/img_product__arrow-left.png);
}

.swiper-pagination {
	width: 100%;
	display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #363737;
    border-radius: 50%;
	background: #FFF;
	opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #363737;
    border-radius: 50%;
	background: #FFF;
	opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
	background: #b4f091;
}

/* ポップアップの背景（初期は非表示） */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none; /* 初期は非表示 */
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 10000;
}

/* ポップアップが表示された時 */
.popup-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* 画像コンテナ */
.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像サイズ調整 */
.popup-image {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
}

/* 閉じるボタン */
.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 3.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* 矢印ボタン */
.popup-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
}
.popup-arrow img {
  width: 100%;
}

/* 左右矢印の配置 */
.popup-arrow--left {
  left: -60px;
}
.popup-arrow--right {
  right: -60px;
}

/* スマホではポップアップを無効にする */
@media (max-width: 500px) {
  .popup-overlay {
    display: none !important;
  }
}


/* ----------------------concept---------------------- */
.concept {
  background: url(../img/bg_floor.jpg)no-repeat center;
  background-size: cover;
  position: relative;
  padding: 60px 35px;
}
.concept__main-ttl {
  font-family: "EB Garamond", serif;
  font-size: 2.8rem;
  border-bottom: 1px solid #363737;
  display: inline-block;
  line-height: 1.1;
  margin-bottom: 30px;
}
.concept__ttl-container {
  text-align: left;  
}
.concept__ttl {
  font-size: 2.8rem;
}
@media (max-width: 360px) {
  .concept__ttl {
    letter-spacing: -0.1rem;
  }
}
.concept__subTtl {
  max-width: 285px;
}
.concept__img {
    width: 100vw; /* 画面幅100% */
    max-width: 121.3%; /* 画像の最大幅を制限 */
    display: block; /* 余計な隙間をなくす */
    margin-left: -35px; 
    margin-top: 15px;
    margin-bottom: 15px;
}
@media (max-width: 400px) {
  .concept__img {
    max-width: 124%;
  }
}
@media (max-width: 360px) {
  .concept__img {
    max-width: 127%;
  }
}
.concept__btn {
  max-width: 90px;
  display: block;
  margin: 20px auto 0;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .concept__btn:hover {
    transform: scale(1.1);
  }
}


/* ----------------------information---------------------- */
.information {
  background: #fff;
  position: relative;
  padding-bottom: 40px;
}
.information__img {
  margin: 0 auto 20px;
}
.information__ttl {
  position: absolute;
  transform: rotate(90deg) translate(-50%, -100%);
  top: 295px; /* 上下の中央 */
  left: 35px;
  transform-origin: left top;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 2px;
  font-family: "EB Garamond", serif;
}
.information__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 135px); /* 文字幅 + 100px */
  height: 1px;
  background-color: #363737; /* 線の色 */
}
.information__logo {
  max-width: 145px;
  margin: 5px auto 20px;
}
.information__txt {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.information__map {
  width: 100vw; /* 画面幅100% */
  max-width: 121.3%; /* 画像の最大幅を制限 */
  display: block; /* 余計な隙間をなくす */
  margin-left: -35px;
  z-index: 5;
  position: relative;
}
@media (max-width: 400px) {
  .information__map {
    max-width: 124%;
  }
}
@media (max-width: 360px) {
  .information__map {
    max-width: 127%;
  }
}
