@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

body{
    color: #231815;
    font-size: 1.4rem;
    font-weight: normal;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    font-family: "Noto Sans JP", sans-serif, "Noto Serif JP", serif;
    line-height: 2.0;
}

ul{list-style: none;}
a{text-decoration: none;}

a:hover{
  color: inherit;
  text-decoration: underline;
  transition: .3s;
}

.display_none {
  display: none;
}

.wrap{
  max-width: 1080px;
  margin: auto;
}

/*header*/
header {
  position: fixed; /*** ← fixedで固定 ***/
  z-index: 999;
  width: 100%;
  background-color: rgb(213, 241, 255);
}

.header-wrap{
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 2rem 0;
}

.header-wrap a{
  width: 18%;
  height: auto;
}

.header-pcNav {
  display: flex;
  align-items: flex-end;
}

.header-pcNav nav ul{
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
}

/*fv*/
main .fv{
  width: 100%;
  padding-bottom: 8%;
  background-image: url(../image/fv-img.jpg);
  background-repeat: no-repeat;
  background-position: 50% 10%;
  background-size: cover;
  position: relative;
}

.fv-wrap{
  padding-top: 30%;
  padding-left: 3%;
}

.fv-wrap h1{
  font-size: min(3vw,45px);;
  line-height: 1.5;
}

.fv-wrap h2{
  font-size: min(2vw,30px);
  font-weight: 800;
  padding-top: 5vw;
}

/*title*/
.title{
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10%;
  margin-bottom: 5%;
  padding-top: 5%;
}

/*about*/

#about .about-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10%;
  padding: 0 5%;
}

#about .about-wrap img{
  width: 90%;
  object-fit: cover;
}

#about .about-wrap h2{
  font-family: serif;
  margin-top: 8%;
  margin-bottom: 10%;
  align-items: right;
}
#about .about-wrap h2 span{
  font-size: 2rem;
}

.ft-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10%;
  padding: 5% 12%;
  gap: 1rem;
}

.ft-wrap h3{
  font-size: 2rem;
  font-weight: 700;
  color: #1e72ba;
margin: 5% 0;
}

.ft-wrap img {
  width: 50%;
}

#about .about-wrap .about-text{
  width: 55%;
}

#about .about-wrap .about-text p{

  padding-bottom: 3%;
}

/*example*/
.ex-box{
  background: rgba(128,197,238,0.2);
  padding: 7% 5%;
}

.sub-ttl{
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5%;
}

.ex-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 7%;
}

.ex-item{
  width: calc(100%/3);
  text-align: center;
  margin-bottom: 3rem;
}

.ex-item img{
  width: 85%;
  margin-bottom: 1rem;
}

/*feature*/
.ft-container {
  text-align: center;
}

.ft-container img{
  width: 65%;
  margin-top: 3%;
}


/*info*/

.info-box{
  max-width: 960px;
  padding: 0 5%;
}

.info-list{
  margin-bottom: 5%;
}

#info .info-list li{
  display: flex;
  justify-content: flex-start;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: .1rem;
  padding: 1rem 0;
}

#info .info-list li p {
  padding-left: 5%;
  word-break: break-all;
}

#info .botton {
  width: 45%;
  padding: 2% 0;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  background-color: rgba(128, 197, 238, 0.8);
  margin: auto;
}

/*company*/
#company{
  background: rgba(128,197,238,0.2);
  padding: 0 5% 5% 5%;
}

.co-list li{
  display: flex;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
}

.co-list li .co-ttl {
  position: relative;
  width: 20%;
  margin-bottom: 30px;
  padding-bottom: 5px;
  padding-left: 10%;
  font-weight: 700;
}

.co-list li .co-cont{
  position: relative;
  width: calc(100% - 9em);
  margin-bottom: 30px;
  padding-bottom: 5px;
  padding-left: 8%;
    }


/*access*/
#access{
  margin-bottom: 15%;
}

#access h4{
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
}

.honsya{
  width: 65%;
  text-align: center;
  margin-bottom: 5%;
}

.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  margin: auto;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.honsya p {
  text-align: left;
}

.map-column{
  width: 90%;
}

.map-column ul {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.map-column ul li{
  width: calc(100%/2);
}


/*fotter*/
footer{
  background: rgba(128, 197, 238, 0.2);
}

.footer-wrap {
  text-align: center;
  padding: 10% 5% 5% 5%;
}

.contact-btn {
  width: 45%;
  background: rgba(128, 197, 238, 0.8);
  font-size: 1.7rem;
  border: 1px #231815 solid;
  margin: auto;
  padding: 2% 1%;
}

.footer-txt {
  margin-top: 5%;
}

.footer-txt img{
  width: 25%;
  margin-top: 5%;
}

.footer-wrap .pp{
  padding-top: 10%;
}

footer .copy{
  font-size: 1.2rem;
  text-align: center;
}

footer .insta-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20%;
  gap: 5rem;
}

.footer-insta h3{
  font-size: 1.8rem;
  color: #1e72ba;
  margin: 10% 0 2% 0;
}

.insta-wrap img{
  width: 40%;
}



/*privacy page*/
#privacy .wrap h2{
  font-size: 2.4rem;
  font-weight: 700;
  padding-top: 20rem;
  margin-bottom: 5%;
}

.pri-txt {
  padding: 0% 2% 10% 2%;
}

.txt-wrap h4{
  font-size: 1.6;
  font-weight: 700;
  margin-top: 6rem;
}

.txt-wrap p {
  word-break: break-all;
}




/*        sp          */

@media(min-width:961px){
  .sp{
      display: none !important;
  }
}

@media screen and (max-width:960px) {

  .pc{
    display: none !important;
  }

  #about .about-wrap{
    display: block;
    text-align: center;
  }

  #about .about-wrap img {
    width: 50%;
    object-fit: cover;
    margin: 0 auto;
}

#about .about-wrap .about-text {
  width: 100%;
  text-align: left;
  margin-top: 5%;
}

.ft-wrap{
  padding: 5% 7%;
}

  .header-wrap{
    padding: 4% 5% 3% 5%;
  }

  main .fv{
    padding-bottom: 20%;
  }

  .fv-wrap{
    padding: 35% 8% 0 8%;
  }

  .ft-container img{
    width: 80%;
  }

  .footer-txt img{
    width: 30%;
  }

  .contact-btn{
    width: 70%;
  }

  .co-list li .co-ttl {
    width: 30%;
    margin-bottom: 20px;
  }

  .co-list li .co-cont{
    margin-bottom: 20px;
  }

  .insta-wrap img{
    width: 100%;
  }
  

    /*privacy*/
    #privacy{
      padding: 0 5%;

}
}


@media screen and (max-width:560px) {


  .header-wrap{
    display: block;
  }

  .header-wrap img{
    width: 40%;
  }

  .header-pcNav{
    display: flex;
    justify-content: flex-end;
  }

  .header-pcNav nav ul{
    gap:1rem;
    flex-wrap: wrap;
  }


  main .fv{
    background-position: 60% -180%;
    padding-bottom: 15%;
  }

  .fv-wrap h1 {
    font-size: 4vw;
    font-weight: 500;
    padding-top: 80%;
  }

  .fv-wrap h2{
    font-size: 3vw;
  }

  #about .about-wrap .about-text{
    margin-top: 5%;
  }

  .ft-container img{
    width: 80%;
  }

  .co-list li{
    display: block;
  }

  .co-list li .co-ttl{
    width: 30%;
    margin-bottom: 5px;
    padding-bottom: 5px;
    padding-left: 5%;
  }
  .co-list li .co-cont{
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-left: 5%;
  }


  /*privacy*/
  #privacy{
    padding: 0 2%;

  }
}