@charset "UTF-8";
/** -----------------------------------
    ①トップページ
-------------------------------------**/


/* mainvisual */

#top-mainvisual {
  margin-bottom: 150px;
  padding-inline: 0;
  position: relative;
}
#top-mainvisual .main-image{
  width: 100%;
  height:450px;
  object-fit: cover;
}


.main-title {
  font-size: 2.7rem;
  position: absolute;
  bottom: -15%;
  left: 2%;
  text-align: left;
  font-weight: 700;
}
.main-title .main-title-text {
  background-color: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 5px 15px;
  display: block;
}
.main-title .main-title-text:last-child {
  display: inline-block;
}


.scroll-down {
  display: none;
}

  
/** -------- レスポンシブ -------- **/
@media all and (min-width: 600px){
  .main-title {
    bottom: -10%;
  }

}

@media all and (min-width: 750px) {
  #top-mainvisual {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    padding-inline: 2%;
  
  }

  #top-mainvisual .main-image{
    width: 90%;
    height:auto;
  }



  
  .main-title {
    font-size: 3.5rem;
    bottom: 10%;
    left: 5%;
  }
  .scroll-down {
    display: inline-block;
    position: absolute;
    color: var(--gray);
    font-size: 1rem;
    font-family: var(--font);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    right: -5%;
    bottom: 230px;
    padding: 10px 10px 50px;
  }
  
  .scroll-down .line {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 1px;
    height: 30px;
    background-color:var(--pink);
    transform: scaleY(0);
    transform-origin: top;
    animation: scroll_down_line 1.5s ease-in-out infinite;
    }
  
    @keyframes scroll_down_line {
      0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
      }
    
      30% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
      }
    
      50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
      }
    
      51% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
      }
      
    
      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }


}
@media all and (min-width: 1000px){


  .main-title {
    font-size: 4rem;
  }

}


/* about */

/* 他ページも共通 */
.flex-content .image {
  width: 100%;
  position: relative;
}
.flex-content .image img:first-of-type{
  margin-bottom: 20px;
}
.flex-content .illust-pink-c {
  width: 50px;
  position: absolute;
  top: -5%;
  right: 0;
}
.flex-content .content {
  margin-bottom: 30px;
}


/* facility-service */
#facility-service {
  position: relative;
}
#facility-service .illust {
  width: 120px;
  position: absolute;
  top: 50px;
  right: 20px;
  z-index: 10;
}
#facility-service .illust-b {
  display: none;

}

#facility-service .illust-green-2 {
  position: absolute;
  top: 25%;
  right: 0;
  width: 100px;
}
#facility-service .grid-item{
  margin-bottom: 20px;
}


/** -------- レスポンシブ -------- **/

@media all and (min-width: 750px) {

/* 他ページも共通 */
  .flex-content {
    display: flex;
  }
  #about .flex-content{
    flex-direction: row-reverse;


  }
  .flex-content .text {
    width: 50%;
    padding-right: 30px;
  }

  .flex-content .image {
    width: 50%;
  }
  #about .flex-content .image img:first-of-type{
    margin-bottom: 0px;
  }
  .flex-content .illust-pink-c {
    width: 80px;
    right: -20px;
  }



  #facility-service .top-sec-title{
    margin-bottom: 60px;
  }
  #facility-service .illust{
    width: 150px;
    position: absolute;
    top: -30px;
    left: 30px;

  }
  #facility-service .illust-b {
    display: block;
    transform: scaleX(-1);

  }
  
  #facility-service .illust-green-2 {
    top: 50%;
  
  }
  #facility-service .grid-item{
    margin-bottom: 0px;
  }
  

  
}
@media all and (min-width: 1000px){
  .flex-content .text {
    padding-right: 70px;
  }
  #facility-service .illust{
    width: 200px;
  }
  #facility-service .illust{
    left: 60px;
  }
  

}