@charset "UTF-8";
html {
  font-size: 62.5%;
}
body {
  font-size: 1.4rem;
  font-family: 'Zen Kaku Gothic New', 'Quicksand', sans-serif;
  /* font-family: "Zen Kaku Gothic New", sans-serif; */
  /* font-family: "Quicksand", sans-serif; */
  color: var(--black);
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
}
a:active{
  opacity: 0.8;
}

ul {
  list-style: none;
}

/** -----------------------------------
    変数
-------------------------------------**/
:root {
  --black: #333;
  --green: #00c4a3;
  --green2:#e5f9f6;
  --pink: #ff99a7;
  --pink2:#fff5f6;
  --yellow: #fffcf2;
  --gray: #999999;
  --gray2:#dddddd;
  --gray3:#acacac;
  --gray4:#b8b8b8;
  --white: #fff;
  --red:#eb585d;
  --blue:#eff1f2;
  --main-font: "Zen Kaku Gothic New", sans-serif;
  --font: "Quicksand", sans-serif;
}

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

@media all and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  a:hover{
    opacity: 0.8;
  }
}

/** -----------------------------------
    レイアウト
-------------------------------------**/
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 5%;
}

.wrapper {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 5%;
}
main{
  padding-top: 30px;
}
section {
  margin-bottom: 50px;
}



a.link-pink {
  display: flex;
  align-items: center;
  font-weight: bold;
}
a.link-pink:active{
  opacity: 0.8;
  
}
a.link-pink img{
  width: 40px;
  margin-right: 20px;
}


/* instagram */

.instagram {
  position: relative;
  /* height: 500px; */
}
.instagram .illust {
  width: 200px;
  position: absolute;
  top: -30px;
  right: 0px;
  /* transform: scaleX(-1); */
}
.instagram a {
  justify-content: center;
}
.instagram .illust-otange-c {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: -1;
  width:100px
}
.instagram .illust-pink-t {
  position: absolute;
  top: 80%;
  right: 0;
  z-index: -1;
  width: 100px;
}
  /* facility-grid */

.facility-grid {
  margin-bottom: 30px;

}
#facility-grid .grid-item{
  margin-bottom: 20px;
}
.facility-grid .image {
  position: relative;
  margin-bottom: 20px;
}
.facility-grid .image img {
  width: 100%;
}

.facility-grid .image p {
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: var(--green);
  padding: 5px 10px;
  border-radius: 10px;
  color: var(--white);
}

div.breadcrumbs {
  max-width: 1000px;
  margin:20px auto;
  text-align: left;
}
.breadcrumbs .current-item {
  color: #999; 
  pointer-events: none; 
}
/** -------- レスポンシブ -------- **/

@media all and (min-width: 768px) {
  .container {
    padding-inline: 2%;
  }

  .wrapper {
    padding-inline: 2%;
  }
  section {
    margin-bottom: 80px;
  }
  a.link-pink:hover{
    opacity: 0.8;
    
  }
  
  .to-top {
    position: fixed;
    z-index: 20;
    right: 50px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    background-color: var(--gray);
    border-radius: 50%;
    
  }
  .to-top img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%) rotate(-90deg);
  }
  /* instagram */
  .instagram .illust {
    width: 300px;
    top: -30px;
    right: -80px;
  }
  .instagram .illust-otange-c {
    width:150px
  }
  .instagram .illust-pink-t {
    width: 150px;
  }
  /* facility-grid */
  .facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
/** -----------------------------------
    テキスト
-------------------------------------**/
h2 {
  margin-bottom: 30px;
}
h2.top-sec-title {
  color: var(--black);
}
h2.top-sec-title .en {
  font-family: var(--font);
  font-size: 3.2rem;
  margin-bottom: 10px;
  letter-spacing: 0.3rem;

}
h2.top-sec-title .ja {
  font-size: 1.6rem;
}
h1.page-title{
  text-align: center;
}
h2.sec-title {
  color: var(--black);
  text-align: left;
  
}
h2.sec-title .ja{
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2.sec-title .en {
  font-family: var(--font);
  font-size: 1.8rem;
}

h3.feature-title{
  font-weight: bold;
  margin-bottom: 10px;
}
h3.feature-title span{
  color: var(--white);
  background-color: var(--green);
  padding: 5px;
  margin-right: 10px;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 10px;
  
} 
.feature-content{
  margin-bottom: 20px;
}
.feature-content p{
  line-height: 2;
}
.green {
  color: var(--green);
}
.pink {
  color: var(--pink);
}

.sp-only {
  display: block;
}



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

@media all and (min-width: 768px) {
  h2.top-sec-title {
    text-align: center;
  }
  h2.top-sec-title .en {
    font-size: 4rem;
  }
  h2.top-sec-title .ja {
    font-size: 2.2rem;
  }

  h2.sec-title {
    text-align: center;
    font-size: 3rem;
  }

  .sp-only {
    display: none;
  }

}



