@charset "UTF-8";

/* 色の変数 */
:root {
    --cherry-red: #DD2051;  /* メインの赤 */
    --leaf-green: #7CB356;  /* サブの緑 */
    --dark-pink1: #F9EDEF;    /* 濃いピンク背景 */
    --dark-pink2: #FCF8F9;    /* 次に濃いピンク背景 */
    --bg-main: #FEFDFE;    /* 白背景風 */
    --white: #ffffff;   /* ボタン背景の白 */
    --main-text: #2A160A;   /* メインテキストカラー */
    --contact-btn:#F9EDF0; /*ハートコンタクトボタン */
}

/* トップページ用ヘッター */



/* ------------------
firstview 
--------------------*/
.first-view {
    position: relative;
    width: 95.14vw;
    height: 44.1vw;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .first-view-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    z-index: 1;
    overflow: hidden;

    opacity: 0;
    transform: scale(1.03);
    transition: opacity 2s ease, transform 2s ease;
    /* transition-delay: 5s; */
  }
  
  /* body.loaded がついたらふわ〜ん表示 */
  body.loaded .first-view-bg {
    opacity: 1;
    transform: scale(1);
  }

  

  .first-view-bg__img {
    padding: 0 2.4vw;
    width: 100%;
  }
  .first-view-bg.for-pc {
    background-image: url(../../assets/images/photos/hero-image.webp);
  }
  

  .first-view-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
  }
  
  .first-view-text h2 img {
    height: auto;
    margin: 0 auto;
    width: 33.3vw;
  }
  
  .first-view-text p {
    letter-spacing: 0.48em;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    font-size: 1.66vw;
    font-weight: 500;
  }
  

  /* 空き状況整理中・・・・・・・・・・・・ */
  .status {
    position: absolute;
    z-index: 3;
    bottom: 2vw;
    left: 3vw;
  }
  @media (max-width:1024px) {
    .status {
    bottom: 1.4vw;
  }
  }
  @media (max-width:600px) {
    .status {
    width: 100%;
    left: 0;
    }
  }
 
  
  .status-wrap__pc {
    display: flex;
  }
  @media (max-width:600px) {
    .status-wrap__pc {
    margin-bottom: 3.5%;
    justify-content: center;
    }
  }
  

  .status-wrap__pc-left {
    width: 260px;
    height: 45px;
    border-radius: 50px 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: var(--dark-pink1);
    font-family: "Zen Maru Gothic";
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  @media (max-width: 1024px) {
    .status-wrap__pc-left {
      height: 38px;
    }
  }
  /* @media (max-width:768px) {
    .status-wrap__pc-left {
      width:225px;
      gap: 12px;
      
    }
  } */
  @media (max-width:768px) {
    .status-wrap__pc-left {
    flex-direction: column;
    width: 35%;
    max-width: 123px;
    font-size: 1.2rem;
    gap: 0;
    }
    
  }
  

  .status-wrap__pc-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 23px;
    width: 583px;
    height: 45px;
    background-color: var(--bg-main);
    font-size: 1.2rem;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  @media (max-width:1024px) {
    .status-wrap__pc-right {
      height: 38px;
      width: 431px;
      padding: 0px 11px;
    }
  }
  @media (max-width:600px) {
    .status-wrap__pc-right {
      width: 61%;
      max-width: 200px;
      text-align: center;
      padding: 0 9px;
    }
  }



  @media (max-width:1024px) {
    .status-wrap__pc-left p:last-child {
      font-weight: normal;
    }
}

  

  .status-wrap__pc-right p {
    width: 129px;
    height: 26px;
    padding: 4px 19px;
    border-radius: 50px;
    border: 0.5px solid var(--main-text);
  }
  @media (max-width: 1024px) {
  .status-wrap__pc-right p {
    display: none;
    }
  }

  .for-sp2 {
    display: none;
  }
  @media (max-width:600px) {
    .for-sp2 {
      display: block;
    }
  }

.status-wrap__pc-right ul {
  display: flex;
  gap: 16px;
}
@media (max-width:600px) {
  .status-wrap__pc-right ul {
    gap: 0;
    width: 100%;
    justify-content: space-between;
  }
}

.status-wrap__pc-right ul span {
  margin-left: 16px;
  font-weight: bold;
}
@media (max-width:600px){
  .status-wrap__pc-right ul span {
    margin-left: 0;
    font-weight: bold;
    display: inline-block;
    transform: translateY(-20%);
  }
}

.status-pink {
  color: var(--cherry-red);
}

.status-wrap__pc-right li:not(:first-child)::before {
  content: "/";
  margin-right: 14px;
  color: var(--main-text); 
}



.status a {
  display: block;
  border-radius: 50px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.status a:hover {
  transform: scale(1.02);
  background-color: #fdf0f5; /* やわらかいピンク背景 */
}




@media (max-width: 768px) {
  .topheader {
    height: 70px;
    margin-top: 2.111vw;
  }

  .header-logo img { 
    width: 277px;
  }

  .first-view-bg.for-sp {
    background-image: url(../../assets/images/photos/hero-image-sp.webp);
  }

  .first-view {
    width: 93.33vw;
    height: 145.33vw;
  }

  .first-view-text {
    top: 55%;
    width: 80%;
  }

  .first-view-text h2 img {
    width: 100%;
  }

  .first-view-text p {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 20px; /* 117.647% */
    letter-spacing: 6.8px;
  }
}

@media (max-width: 600px) {
  .status-wrap__pc-left p:last-of-type {
    font-size: 1rem;
  }

  .status-wrap__pc-right li:not(:first-child)::before {
  display: none; 
  }

  .status-wrap__pc-right div {
    margin-bottom: 2px;
  }
}





/* ------------------
lead
--------------------*/
.intro__text {
  position: relative;
  text-align: center;
  margin-top: 4.58vw;
}

.intro__title {
  font-size: clamp(2.4rem, 2.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.56; 
  letter-spacing: 6.4px;
}

.intro_co {
  color: var(--cherry-red);
}

.intro__lead {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.5; 
  letter-spacing: 4px;
  margin-top: 3.12vw;
  position: relative;
}

/* ピンクボタン（共通クラス） */
.c-pinkbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 287px;
  height: 60px;
  background-color:var(--cherry-red);
  border-radius: 100px; 
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
  justify-content: space-between;
  padding: 0 16px;
}

.intro__link {
  margin-top: 50px;
}

/* テキスト（pタグ） */
.intro__btntext {
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 24px;
}

/* 丸背景 */
.intro__iconwrap {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* 矢印アイコン */
.intro__iconwrap img {
  width: 32px;
  height: auto;
  display: block;
}

/* ホバーでぷにっと動く（おまけ） */
.c-pinkbtn:hover .intro__iconwrap {
  transform: scale(1.1);
}

/* 写真とイラストの配置 */
.intro__concept-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.intro__img {
  position: absolute; 
  height: auto;
}

/* 個別の配置調整 */
.intro__img1 {
  top: 50px;
  left: 75px;
  width: 19.5vw;
  max-width: 282px;
}

.intro__img3 {
  bottom: -50px;
  left: 30px;
  width: 17.6vw;
  max-width: 255px;
}

.intro__img2 {
  bottom: 20px;
  right: 30px;
  width: 15.1vw;
  max-width: 218px;
}

.intro__imgil {
  top: 81px;
  right: 150px;
  width: 11.6vw;
  max-width: 167px;
  animation: leaf-slide 5s ease-in-out infinite;
  transform-origin: center;
  z-index: 1;
}

@keyframes leaf-slide {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50px, 50px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}


.intro__imgi2 {
  bottom: -90px;
  left: 200px;
  width: 10.2vw;
  max-width: 223px;
  animation: pendulum-swing 6s ease-in-out infinite;
  transform-origin: top center;
  z-index: 15;
}

@keyframes pendulum-swing {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(-10deg); }
  20%  { transform: rotate(8deg); }
  30%  { transform: rotate(-6deg); }
  40%  { transform: rotate(4deg); }
  50%  { transform: rotate(-2deg); }
  60%  { transform: rotate(1deg); }
  70%  { transform: rotate(-0.5deg); }
  80%  { transform: rotate(0.2deg); }
  90%  { transform: rotate(-0.1deg); }
  100% { transform: rotate(0deg); }
}


.intro__body {
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 1160px) {
  .intro__body {
    max-width: auto;
    padding: 0 3vw;
  } 

  .intro__img1 {
    top: 80px;
    left: -6px;
    width: 19.5vw;
    max-width: 282px;
  }

  .intro__imgil {
    top: 81px;
    right: 10px;
    width: 11.6vw;
    max-width: 167px;
  }

  .intro__imgi2 {
    bottom: -9vw;
    left: 17vw;
  }

}

@media (max-width: 768px) {
  .intro__title {
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    letter-spacing: 1.68px;
  }

  .intro__lead {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 24px;
  }

  .intro__link {
    margin-top: 24px;
  }

  .intro__img {
    position: static;
    position: absolute;
  }

  .intro__concept-deco {
    position: static;
    position: relative;
    width: 90%;
    height: 100vw;
    margin: 0 auto;
    margin-top: 40px;

  }
    /* 個別の配置調整 */

  .intro__img1 {
    top: 35px;
    left: -2px;
    width: 45.35vw;;
  }

  .intro__img3 {
    right: 10px;
    width: 32vw;
    bottom: 25vw;
  }

  .intro__img2 {
    top: 120px;
    right: -10px;
    width: 40.26vw;
  }

  .intro__imgil {
    top: 21px;
    right: 8vw;
    width: 25.86vw;
    max-width: 120px;
  }


  .intro__imgi2 {
    bottom: 8%;
    left: 2%;
    width: 27.46vw;
    max-width: 150px;
  }

}


/* ------------------
about
--------------------*/
.about.section__body {
  background-color:var(--dark-pink1);
  padding: 60px 0 120px;
  margin-top: 120px;
}

/* ===== 中央揃えのラッパー ===== */
.wrap-about__body {
  max-width: 1126px;
  margin: 0 auto;
}

/* ===== 見出し部分 ===== */
.about .main-section__heading {
  text-align: center;
  margin-bottom:100px;
}

.main-section__title--small {
  color: var(--cherry-red); /* 小見出し */
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title__main::after {
  position: absolute;
  content: "";
  top: 270%;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 49px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about .section-title__main::after {
  background-image: url(../../assets/images/decorations/about-head-illust.png);
}




/* ===== カード全体（横並び） ===== */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(100vw / 1440 * 30);
}

/* ===== 各カード ===== */
.about-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 2%;
  text-align: center;
  transition: transform 0.3s ease;
  gap: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  margin-top: 20px;
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-card__img {
  width: 83%;
  margin: 0 auto;
}

.about-card__img img {
  width: 100%;
}

/* ===== タイトル・サブ・テキスト ===== */
.about-card__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 10px;
}

.about-card__title-title {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.about-card__title {
  font-size: clamp(1.6rem, 1.3vw, 2.0rem);
  
  margin-bottom: 4px;
}

.about-card__title-img {
  width: 16%;
  height: auto;
}


.about-card__subtitle {
  font-size: 12px;
  color: var(--cherry-red);
  letter-spacing: 1px;
  padding-left: 6px;
  
}

.about-card__text {
  line-height: 1.8;
  text-align: justify;
  width: 88%;
  margin: 0px auto;
  margin-top: 10px;
  height: 94px;
  font-size: clamp(1.5rem, 1.4vw, 1.6rem);
}

/* ===== ボタンリンク ===== */
.about-card__link {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 3%;
  border: 2px solid var(--cherry-red);
  border-radius: 999px;
  color: var(--cherry-red);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 92%;
  position: relative;
}

.about-card__link::after {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/arrow-right-pink.svg);
  width: 13%;
  height: 70%;
  top: 16%;
  right: 6px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-card__link:hover {
  background-color: #F3D6DC;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .about-card {
    width: 300px;
    padding: 3%;
  }

  .about-card__img {
    width: 227px;
  }

  .about .main-section__heading {
    margin-bottom: 70px;
  }

  .section-title__main {
    font-size: 2rem;
  } 

  .section-title__main::after {
    top: 335%;
    width: 50px;
    height: 30px;
  }

  .main-section__title--small {
    margin-bottom: 0px;
  }
  .about.section__body {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .wrap-about__body .main-section__heading p {
    margin-top: 10px;
  }

  
  
  .about.section__body {
    margin-top: 40px;
  }

  .about-cards {
    flex-direction: column;
    align-items: center;
  }

}


/* ------------------
feature
--------------------*/
.features {
  margin-top: 80px;
} 

.features .section-title__main::after {
  background-image: url(../../assets/images/decorations/feature-head-illust.png);
  width: 86px; 
  height: 81px;
  top: 130%;
}

.features .main-section__heading {
  text-align: center;
  margin-bottom: 160px;
}


/* ===== カード一覧エリア（2列×2行） ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 60px;
}

.features-list .feature-card:nth-child(2),
.features-list .feature-card:nth-child(4) {
  margin-top: 80px; 
}

@media (max-width: 768px) {
  
  .features .main-section__heading {
    margin-bottom: 130px;
  }

  .features {
    margin-top: 36px;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features .section-title__main::after {
    width: 50px;
    height: 53px;
    top: 110%;
  }

  .features-list .feature-card:nth-child(3) {
    margin-top: 80px; 
  }


}

/* ===== 各カード ===== */
.feature-card {
  width: 78%;
  position: relative;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* ===== POINTラベル（番号） ===== */
.feature-card__point {
  position: absolute;
  top: -70px;
  left: -59px;
  background-color: var(--dark-pink1);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: var(--cherry-red);
  z-index: -1;
}

.feature-card__point strong {
  font-size: 4rem;
  font-weight: bold;
  color: var(--cherry-red);
  margin-top: -10px;
}

/* ===== 画像エリア ===== */
.feature-card__img img {
  width: 100%;
}

/* ===== タイトル・テキスト ===== */
.feature-card__title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--cherry-red);
    background-color: var(--bg-main);
    padding: 10px 20px 10px 10px;
    display: inline-block;
    border-radius: 0 19px 0 0;
    position: relative;
    top: -23px;
}

.feature-card__text {
    line-height: 1.8;
    margin-top: -10px;
}

@media (max-width:1024px) {
  .feature-card__point {
    width: 80px;
    height: 80px;
    top: -59px;
    left: -34px;
  }  

  .feature-card__point strong {
    font-size: 3.2rem;
  }
}

@media (max-width:768px) {
  .feature-card__title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}

/* ------------------
news
--------------------*/
.news {
  background-color:var(--dark-pink1);
  padding: 80px 16px 0px;
}

.wrap-news__body {
  max-width: 1126px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* ===== 見出しまわり ===== */
.news .main-section__heading {
  text-align: center;
  width: 170px;
  margin-right: 70px;
}

.smain-section__title--small {
  color: var(--logo, #DD2051);
font-family: "Wix Madefor Display";
font-size: 1.6rem;
font-weight: 700;
letter-spacing: 2.56px;
}

.section-title__main {
  font-weight: bold;
  position: relative;
}

.news .section-title__main::after {
  position: absolute;
  content: ""; 
  background-image: url(../../assets/images/decorations/outhi.png);
  width: 58px;
  height: 47px;
  top: 82px;
}

.news-section__wrap {
   width: calc(100% - 240px);
}


.news-list {
  list-style: none;
  
  padding: 0;
  margin: 0;
  border-top: 2px dashed #EADFD7;
 
}

.news-item {
  border-bottom: 2px dashed #EADFD7;
}

.news-item a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  gap: 1.66vw;
  transition: color 0.3s;
}

.news-item a:hover {
  color: var(--cherry-red);
}

/* ===== ラベル（バッジ） ===== */
.news-item__label {
  display: inline-block;
  border-radius: 8px;
  font-family: "Zen Maru Gothic";
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  width: 131px;
  height: 27px;
  text-align: center;
}

/* ラベルのバリエーション */
.news-item__label--info {
  background-color: var(--leaf-green); 
}

.news-item__label--recruit {
  background-color: var(--cherry-red);
}

/* ===== 日付 ===== */
.news-item__date {
  font-family: "Wix Madefor Text";
  font-weight: 500;
  width: 70px;
}

/* ===== タイトル ===== */
.news-item__title {
  flex: 1;
  font-weight: bold;
  font-family: "Zen Maru Gothic";
}

.news-item div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.news-item div:nth-child(2) {
  width: 72%;
  justify-content: space-between;
}

/* ===== 矢印 ===== */
.news-item__arrow {
  background-image: url(../../assets/images/decorations/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 29px;
  height: 29px;
  display: inline-block;
}

/* ===== もっと見るボタン ===== */
.news-section__cta {
  margin-top: 110px;
}

.news-section__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cherry-red);
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

.news-section__cta img {
  width: 22px;
  height: auto;
}
 
/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
  .news {
    padding-top: 40px;
  }

  .news-list {
    max-width: 582px;
    margin: 0 auto;
  }

  .news .main-section__heading {
    width: 246px;
    margin: 0 auto;
    padding-right: 50px;
    margin-bottom: 20px;
  }

  .news .section-title__main::after {
    top: -20px;
    left: 93%;
  }

  .wrap-news__body {
    flex-direction: column;
  }

  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news-item div {
    margin: 0 4%;

  }
  .news-item__title {
    width: 100%;
  }

  .news-section__cta {
    text-align: center;
  }

  .news-section__wrap {
    width: 100%;
  }

  .news-item__label {
    font-size: 1.4rem;
    width: 92px;
    height: 25px;
    border-radius: 6px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .news-item div:nth-child(2) {
  width: 92%;
  }

  .news-section__cta {
    margin-top: 20px;
    text-align: right;
  }


}



/* ----------------
ローディング画面全体 
------------------*/

.loading-screen {
  position: fixed;
  inset: 0;
  background-color:#F9EDEF; /* ←好みの背景に変更OK */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: loading-fadeout 1.5s ease 5s forwards;
}

/* ロゴふわっと */
.loading-logo {
  width: 160px;
  opacity: 0;
  animation: logo-fadein 4s ease-in-out forwards;
}
@media (max-width:768px) {
  .loading-logo {
    width: 120px;
  }
}

@keyframes logo-fadein {
  0%   { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes loading-fadeout {
  to { opacity: 0; visibility: hidden; }
}
