@charset "utf-8";
/* CSS Document */
/* 画面全体を覆うスプラッシュスクリーン */
#splash{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background-image: linear-gradient(
    0deg,
    rgba(251,241,244,0.9) 0%,
    rgba(254,218,218,0.9) 100%
  );
  
  opacity: 1;
  transition: opacity 1.2s ease;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:0;

  z-index:9999;

  font-size:var(--30px);
  color:#fff;
  text-shadow:1px 1px 3px rgba(229,80,122,1);
}
/* ふわふわ動かす要素（ロゴ） */
#splash-logo img{
  width:65px;
  opacity:0;

  animation:
  fadeIn 2.5s ease 1s forwards,
  fluffy 2s ease-in-out 3s infinite alternate;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* 少し下から上に移動する効果 */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ふわふわするアニメーションの定義 */
@keyframes fluffy {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px); /* 上に20px移動 */
    opacity: 1;
  }
}
/**/
#splash-house img{
  width:300px;
  opacity:0;

  animation: fadeIn 2s ease 1.5s forwards;
}
/* スプラッシュ文字の動き */
#text{
	margin-top: -20px;
}
/* 文字の基本スタイル */
.char {
  opacity: 0; /* 最初は非表示 */
  display: inline-block;
  animation: fadeInChar 2.2s forwards, fadeOut 3.0s ease-out 2.5s forwards;
}
/* 各文字のディレイ設定 (文字数分追加) */
.char:nth-child(1) {
  font-size: var(--35px);
  animation-delay: 0.1s;
}
.char:nth-child(2) {
  font-size: var(--35px);
  animation-delay: 0.2s;
}
.char:nth-child(3) {
  font-size: var(--35px);
  animation-delay: 0.3s;
}
.char:nth-child(4) {
  font-size: var(--35px);
  animation-delay: 0.4s;
}
.char:nth-child(5) {
  font-size: var(--35px);
  animation-delay: 0.5s;
}
.char:nth-child(6) {
  animation-delay: 0.6s;
}
.char:nth-child(7) {
  animation-delay: 0.7s;
}
.char:nth-child(8) {
  animation-delay: 0.8s;
}
.char:nth-child(9) {
  animation-delay: 0.9s;
}
.char:nth-child(7) {
  animation-delay: 1.0s;
}
.char:nth-child(8) {
  animation-delay: 1.1s;
}
.char:nth-child(9) {
  animation-delay: 1.2s;
}
.char:nth-child(10) {
  animation-delay: 1.3s;
}
.char:nth-child(11) {
  animation-delay: 1.4s;
}
.char:nth-child(12) {
  animation-delay: 1.5s;
}
.char:nth-child(13) {
  animation-delay: 1.6s;
}
.char:nth-child(14) {
  animation-delay: 1.7s;
}
.char:nth-child(15) {
  animation-delay: 1.8s;
}
.char:nth-child(16) {
  animation-delay: 1.9s;
}
.char:nth-child(17) {
  animation-delay: 2.0s;
}
.char:nth-child(18) {
  animation-delay: 2.1s;
}
.char:nth-child(19) {
  animation-delay: 2.2s;
}
/* フェードインのキーフレーム */
@keyframes fadeInChar {
  0% {
    opacity: 0;
    transform: translateY(10px); /* 下からふわっと */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#splash.hidden {
  opacity: 0;
  pointer-events: none;
}
/*スライダー*/
.mv_container .swiper-wrapper {
  /* wrapperのサイズを調整 */
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1920/742;
  position: relative;
}
.mv_container .swiper-slide .text_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8em;
  z-index: 1;
  position: absolute;
  bottom: 0.5em;
  left: 0;
}
.mv_container .swiper-slide img {
  width: 85%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
.swiper-Build-center {
  position: relative;
}
/*スライダーペイジャー*/
.swiper-Build-center .swiper-pagination {
  max-width: 50px;
  position: absolute;
  top: 20%;
  left: -83%; /* ← 数値で位置調整 */
  display: flex;
  flex-direction: column;
  gap: 3.0em;
  width: 1.0em;
  text-align: center;
  margin: auto;
  right: 0;
}
.swiper-Build-center .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: /*clamp(6px,0.52vw,9px)*/ 20px;
  height: /*clamp(6px,0.52vw,9px)*/ 20px;
  background-image: /*#d7bed0;*/ radial-gradient(circle, rgba(215, 190, 208, 1) 0%, rgba(215, 190, 208, 1) 30%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
  opacity: 1;
}
.swiper-Build-center .swiper-pagination-bullet-active {
  background: transparent;
}
.swiper-Build-center .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: /*clamp(20px,1.56vw,30px)*/ 30px;
  aspect-ratio: 30/26.2276;
  background: url("../images/top/heart@2x.webp") no-repeat center / contain;
  transform: translate(-50%, -50%);
}
/*リード文*/
.mv_text {
  height: 1.6em;
  font-size: var(--50px);
  font-family: var(--mincho);
  color: #ffffff;
  padding-left: 0.2em;
  letter-spacing: 0.12em;
}
.text1, .text2 {
  background-color: #e5507a;
}
.text3, .text4 {
  background-color: #dd9900;
}
.text5, .text6 {
  background-color: #934f7f;
}
.textS {
  font-size: var(--30px);
}
.textSS {
  font-size: var(--27px);
  vertical-align: 0.3em;
}
/*mv下*/
.under_mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: start;
  background-image: linear-gradient(270deg, rgba(251, 241, 244, 1) 0%, rgba(254, 218, 218, 1) 100%);
  padding: 12vh 0;
}
.under_mv .about {
  font-size: var(--20px);
  font-weight: 500;
  line-height: 2.2em;
  padding-top: 5.0em;
  padding-left: 12em;
}
.under_mv img {
  padding-top: 10em;
}
/*sec02_ハッピーの理由*/
.top02 {
  font-family: var(--marugo);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 2.5%, rgba(255, 255, 255, 1) 2.5%, rgba(255, 255, 255, 1) 97.5%, rgba(255, 255, 255, 0) 97.5%, rgba(255, 255, 255, 0) 100%), repeating-linear-gradient(-45deg, #fff 0 10px, #d5e1f1 10px 20px);
  padding: 10vh 0;
}
.top02 h2 {
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 3.0em;
}
.top02 .h2 {
  font-size: var(--35px);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 0;
}
.top02 .h2::before {
  content: "";
  width: 100%;
  height: 0.4em;
  background-color: #f6c1d0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top02 .huki {
  font-size: var(--23px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.top02 .huki::before {
  content: "";
  width: 1.3em;
  height: 1.5px;
  box-sizing: border-box;
  background-color: #333333;
  rotate: 60deg;
}
.top02 .huki::after {
  content: "";
  width: 1.3em;
  height: 1.5px;
  box-sizing: border-box;
  background-color: #333333;
  rotate: -60deg;
}
.swiper-happy {
  overflow: visible;
}
.swiper-happy .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.swiper-happy .swiper-slide {
  width: auto;
}
.swiper-happy .swiper-button-prev, .swiper-happy .swiper-button-next {
  display: none;
}
.happy {
  border: solid 1px #e5507a;
  border-radius: 10px;
}
.happy_txbox {
  padding: 0 5%;
}
.item2 {
  font-size: var(--16px);
  line-height: 1.2em;
  letter-spacing: 0.1em;
  text-align: center;
  padding-left: 50%;
  margin-top: -6.0em;
  margin-bottom: 4.0em;
  position: relative;
  z-index: 0;
}
.item2::before {
  content: "";
  width: 11em;
  height: 8.5em;
  background-image: url(../images/top/hukidashi@2x.webp);
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.item1 {
  font-family: var(--marugo);
  font-size: var(--20px);
  font-weight: 500;
  color: #e5507a;
  padding-left: 1.0em;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #e5507a;
  position: relative
}
.item1 span {
  font-size: var(--18px);
  vertical-align: 0.1em;
}
.item3 {
  padding: 0.3em 1.0em 1.0em;
  font-size: var(--18px);
  line-height: 1.8em;
}
.hp_photo {
  width: 100%;
  aspect-ratio: 405/268;
  margin-bottom: 1.0em;
}
.hp_photo img {
  border-radius: 10px;
}
/*sec03お客様の声*/
.top03 {
  padding: 5.0em 0;
  margin-bottom: 15vh;
  background-image: linear-gradient(0deg, rgba(251, 241, 244, 1) 0%, rgba(254, 218, 218, 1) 100%);
  font-family: var(--mincho);
}
.top3_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2em;
  margin-bottom: 3.5em;
}
.top03 h2 {
  width: 35%;
  height: auto;
  margin: 0 auto 2.0rem;
}
.top03 .title {
  font-size: var(--35px);
}
.sec3_manzoku {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: 0.1fr 0.3fr 0.2fr 0.5fr 0.1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  margin-bottom: 20vh;
}
.sec3_manzoku h3 {
  font-size: var(--25px);
  margin-bottom: 1.0rem;
  grid-area: 1 / 2 / 2 / 3;
}
.sec3_manzoku h3 span {
  text-transform: capitalize;
}
.sec3_manzoku_lead1 {
  position: relative;
  padding-left: 0.6em;
  margin-bottom: 1.0rem;
  white-space: nowrap;
  grid-area: 2 / 2 / 3 / 3;
}
.sec3_manzoku_lead1::before {
  content: "";
  width: 90%;
  height: 80%;
  background-color: rgba(216, 62, 83, 0.11);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-65%, -50%);
}
.sec3_manzoku_lead2 {
  position: relative;
  font-size: clamp(18px, 1.8vw, 35px);
  margin-bottom: 10%;
  padding-left: 0.8em;
  white-space: nowrap;
  grid-area: 3 / 2 / 4 / 3;
}
.sec3_manzoku_lead2::before {
  content: "";
  width: 15em;
  height: 100%;
  background-color: rgba(216, 62, 83, 0.11);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-69%, -50%);
}
.sec3_leadL {
  font-size: clamp(70px, 7.4vw, 150px);
  color: #d83e53;
}
.sec3_leadM {
  font-size: var(--80px);
  color: #d83e53;
  vertical-align: 0.25em;
}
.sec3_leadS {
  font-size: var(--60px);
  vertical-align: 0.5em;
}
.sec3_caption {
  grid-area: 5 / 2 / 6 / 3;
}
.glaph_box {
  grid-area: 1 / 1 / 6 / 2;
  flex-shrink: 0;
}
.arrow_box {
  text-align: center;
  margin-bottom: 15vh;
}
.arrow {
  display: inline-block;
  width: clamp(120px, 15.6vw, 227px);
  height: clamp(70px, 9.5vw, 138px);
  background: #d83e53;
  clip-path: polygon(0 39.1%, 22.7% 39.1%, 22.7% 0, 77.3% 0, 77.3% 39.1%, 100% 39.1%, 50% 100%);
}
/*アンケート*/
.sec3_voice {
  font-family: var(--marugo);
  text-align: center;
}
.sec3_voice h3 {
  font-size: var(--35px);
  font-weight: 500;
  position: relative;
  margin-bottom: 2.0em;
}
.sec3_voice h3::before {
  content: "owner's voice";
  font-size: clamp(55px, 6vw, 102px);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(216, 62, 83, 0.15);
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.voice_box {
  display: grid;
  max-width: 1280px;
  margin: 0 auto 5.5em;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10%;
  grid-row-gap: 12%;
}
@media (max-width: 1465px) {
  .happy_box {
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  }
  /*.item2 {

    font-size: 10px;

    right: -4.0em;

  }*/
}
@media (max-width: 1190px) {
  .text1, .text3, .text5, .text2, .text4, .text6 {
    left: -28%;
  }
  .swiper-Build-center .swiper-pagination {
    position: absolute;
    top: 40%;
    left: -84%;
    transform: translateY(-50%);
    gap: 2.0em;
  }
  /*スワイパー*/
  .under_mv .about {
    padding-left: clamp(50px, 10vw, 100px);
  }
  .sec3_manzoku_lead1::before {
    width: 100%;
    left: 58%;
  }
  .sec3_manzoku_lead2::before {
    width: 16em;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
  }
  .item2 {
    font-size: 10px;
    right: -4.0em;
    z-index: 50;
  }
}
@media (max-width: 768px) {

  .mv_container .swiper-wrapper {
    /* wrapperのサイズを調整 */
    width: 100%;
    aspect-ratio: 750/530;
  }
  .swiper-Build-center .swiper-pagination {
    top: 50%;
    left: -83%;
    gap: 3.0em;
  }
  .mv_text {
    font-size: var(--40px);
  }
  .textS {
    font-size: var(--23px);
  }
  .textSS {
    font-size: var(--18px);
    vertical-align: 0.3em;
  }
  .mv_container .swiper-slide .text_wrap {
    bottom: -7.0em;
  }
  .mv_container .swiper-slide {
    position: relative;
    margin-top: -5.0em;
  }
  .mv_container .swiper-slide .haikei::after {
    content: "";
    width: 100%;
    height: 7.0em;
    position: absolute;
    bottom: -7.0em;
    left: 0;
    background-image: linear-gradient(270deg, rgba(251, 241, 244, 1) 0%, rgba(254, 218, 218, 1) 100%);
  }
  .under_mv {
    display: flex;
    flex-direction: column;
  }
  .under_mv img {
    padding-left: clamp(50px, 10vw, 100px);
    padding-top: 4em;
  }
  /*ハッピー*/
  .swiper-happy {
    overflow: hidden;
    position: relative;
  }
  .top02 {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 1) 4%, rgba(255, 255, 255, 1) 96%, rgba(255, 255, 255, 0) 96%, rgba(255, 255, 255, 0) 100%), repeating-linear-gradient(-45deg, #fff 0 10px, #d5e1f1 10px 20px);
  }
  .container_sp {
    width: 75%;
  }
  .swiper-happy .swiper-wrapper {
    display: flex !important;
    width: auto !important;
    gap: 0;
  }
  .swiper-happy .swiper-slide {
    height: 100%;
  }

  .swiper-happy .swiper-button-prev, .swiper-happy .swiper-button-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .swiper-happy .swiper-button-next::after, .swiper-happy .swiper-button-prev::after {
    display: none;
  }
  .swiper-happy .swiper-button-prev {
    left: 5px;
  }
  .swiper-happy .swiper-button-next {
    right: 5px;
  }
  .swiper-button-next {
    width: 30px;
    height: 30px;
    background-image: url("../images/top/next.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-image: url("../images/top/prev.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .item1 {
    font-size: var(--23px);
  }
  .item2 {
    font-size: var(--18px);
    right: 0em;
  }
  /*満足度*/
  .sec3_manzoku_lead1::before {
    content: "";
    width: 90%;
    height: 80%;
    background-color: rgba(216, 62, 83, 0.11);
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
  }
  .sec3_manzoku_lead2::before {
    content: "";
    width: 15em;
    height: 100%;
    background-color: rgba(216, 62, 83, 0.11);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .top03 .title {
    font-size: var(--30px);
  }
  .sec3_manzoku {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.1fr 0.25fr 0.1fr 3fr 0.1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 80%;
    margin: 0 auto 10vh;
  }
  .sec3_manzoku h3 {
    grid-area: 1 / 1 / 2 / 2;
    font-size: var(--20px);
  }
  .sec3_manzoku_lead1 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .sec3_manzoku_lead2 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .sec3_leadS {
    vertical-align: 0;
  }
  .sec3_leadM {
    font-size: var(--50px);
    vertical-align: 0.15em;
  }
  .sec3_caption {
    grid-area: 5 / 1 / 6 / 2;
    text-align: center;
  }
  .glaph_box {
    width: 90%;
    margin: 0 auto 1.5em;
    grid-area: 4 / 1 / 5 / 2;
  }
  /*お客様の声*/
  .sec3_voice h3 {
    font-size: var(--30px);
  }
  .sec3_voice h3::before {
    font-size: 2.2em;
  }
  .voice_box {
    display: grid;
    max-width: 768px;
    margin: 0 auto 8.5em;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10%;
    grid-row-gap: 7%;
  }
}
@media (max-width: 650px) {
  .mv_container .swiper-slide .text_wrap {
    bottom: -5.5em;
  }
  .mv_container .swiper-slide .haikei::after {
    height: 5.5em;
    bottom: -5.5em;
  }
  /*スワイパー*/
  .swiper-Build-center .swiper-pagination {
    gap: 1.6em;
  }
}
@media (max-width: 500px) {
  /* 画面全体を覆うスプラッシュスクリーン */
#splash{
	font-size: var(--20px);
	letter-spacing: -0.1em;
	}
	.char:nth-child(1),.char:nth-child(2),.char:nth-child(3),.char:nth-child(4),.char:nth-child(5){
		font-size: var(--23px);
	}

  .swiper-Build-center .swiper-pagination {
    gap: 2.0em;
  }
  .mv_container .swiper-slide {
    margin-top: -3.5em;
  }
  .mv_container .swiper-slide .text_wrap {
    bottom: -3.6em;
  }
  .mv_container .swiper-slide .haikei::after {
    height: 3.6em;
    bottom: -3.6em;
  }
  .swiper-Build-center .swiper-pagination {
    gap: 1.2em;
  }
  .swiper-Build-center .swiper-pagination-bullet-active::before {
    width: 16px;
  }
  .mv_text {
    font-size: var(--27px);
  }
  .textS {
    font-size: var(--20px);
  }
  .textSS {
    font-size: var(--16px);
    vertical-align: 0.2em;
  }
  .under_mv {
    padding: 5vh 0;
  }
  .under_mv .about {
    padding: 0 clamp(50px, 10vw, 100px);
    font-size: 14px;
  }
  /*happy*/
  .container_sp {
    width: 90%;
  }
  .top02 .h2 {
    font-size: var(--27px);
  }
  .item2 {
    font-size: var(--16px);
  }
  .sec3_manzoku_lead1::before {
    width: 14em;
  }
  .sec3_leadL {
    font-size: 48px;
  }
  .sec3_leadM {
    font-size: 36px;
    vertical-align: 0.1em;
  }
  .sec3_leadS {
    font-size: 22px;
    vertical-align: 0.3em;
  }
  .sec3_manzoku_lead2::before {
    width: 15em;
  }
  .sec3_manzoku_lead2 {
    font-size: 15px;
  }
}