@charset "utf-8";
/* CSS Document */

.section-top-wrapper{
  margin: 0 calc(50% - 50vw) 90px;
  background-color: #FFE40E;
}
  .section-top{
    margin: -174px auto 0;
    padding-top: 80px;
  }

.top-images{
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  transform: translateY(5px);
}

.top-images-sp{
  display:none;
}
.top-images img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media(max-width:800px){
  .top-images{
    display: none;
  }
  .top-images-sp{
    display: block;
    transform: translateY(5px);
  }
}

.section-bosai{
  background-color: #E5F8F8;
  max-width: 1100px;
  margin: 0 100px 100px 0;
  padding: 40px 0 20px 60px;
  box-shadow: 2px 2px 4px #c9c9c9;
}
.section-bosai-wrapper{
  display: flex;
  align-items: center;
}

.bosai-text{
  width: 60%;
  padding: 10px 0;
}

.section-bosai h2{
  color: #0DA3AE;
  font-size: 2.6rem;
  margin-bottom: 5px;
}

.section-bosai p{
  font-weight: 500;
  margin-bottom: 20px;
  width: 115%;
}

.section-bosai figure {
  transform: translateX(26%);
}

.section-bosai figure img{
  max-width: 740px;
  width: 100%;
  height: auto;
}

.section-bosai figure figcaption{
  font-size: 14px;
  color: #707070;
  margin-top: -10px;
  }

/*20250515 お知らせテキスト追加*/
  .section-bosai2 h4 {
    text-align: center;
}

.section-bosai2 p {
    text-align: center;
    font-weight: 600;
    margin: 0 auto 50px;
    max-width:800px;
}
.section-bosai2 a{
  color:blue
}


@media(max-width:1000px){
  .section-bosai{
    margin: 0 auto 200px;
    padding: 25px 15px;
    height: 590px;
   }
  .section-bosai-wrapper{
    flex-direction: column;
   }
  
  .bosai-text{
    width: 100%;
    padding: 20px 0;
   }
  
  .section-bosai h2{
    text-align: center;
   }
  
  .section-bosai p{
    width: 100%;
   }
  
  .section-bosai figure {
    transform: translateX(0%);
   }
  }

.section-program-wrapper{
  background-color: #D1F5E8;
  margin: 0 calc(50% - 50vw);
}

.section-program{
  padding: 50px 60px 60px;
  text-align: center;
  margin: 0 auto 100px;
  max-width: 1100px;
}
.section-program::before{
  position: absolute;
  content: "";
  background-color: #D1F5E8;
  top: 0;
  left: 0;
  
}

h3{
  position: relative;
  font-size: 3.7rem;
  margin-bottom: 60px;
}
h3 span::before{
  position: absolute;
  content: "";
  border-bottom: 1px solid #000000;
  width: 70px;
  top: 13px;
  transform: translateX(-90px);
}
h3 span::after{
  position: absolute;
  content: "";
  border-bottom: 2px solid #000000;
  width: 70px;
  top: 13px;
  transform: translateX(15px);
}


.section-program h3{
  color: #0DAE77;
}

.section-program h3 span::before{
   border-bottom: 2px solid #0DAE77;
}

.section-program h3 span::after{
   border-bottom: 2px solid #0DAE77;
}
.section-program ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 120px;
  row-gap: 50px;
}

@media(min-width:1150px){
  .section-program ul{
    justify-content: space-between;
  }
}

.section-program ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 426px;
  height: 140px;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 3.0rem;
  letter-spacing: -0.2rem;
  background-color: #0DAE77;
  box-shadow: 2px 2px 4px #c9c9c9;
}

.section-program ul li a:hover{
  box-shadow: none;
  position: relative;
  top: 2px;
  opacity: 0.7;
}

@media(max-width:1000px){
  .section-program{
    margin: 0 auto 50px;
    padding: 25px 15px 50px;
   }
  
  h3{
  position: relative;
  font-size: 2rem;
  margin-bottom: 40px;
  }
  h3 span::before{
    width: 30px;
    transform: translateX(-40px);
  }
  h3 span::after{
    width: 30px;
    transform: translateX(10px);
  }
  
  .section-program ul{
    column-gap: 40px;
    row-gap: 30px;
  }
  
  .section-program ul li{
    width: 100%;
    max-width: 330px;
  }
  
  .section-program ul li a{
    width: 100%;
    height: 100px;
    padding: 0 15px;
    font-size: 1.8rem;
    flex-direction: column;
  }
}

.section-manual{
  text-align: center;
  margin: 0 auto 100px;
}

.section-manual h3{
  color: #1D74BF;
}
.section-manual h3 span::before{
   border-bottom: 2px solid #1D74BF;
}

.section-manual h3 span::after{
   border-bottom: 2px solid #1D74BF;
}

.manual_pamphlet-wrapper{
  display:flex;
  flex-wrap: wrap;
  gap:40px;
  justify-content: center;
}
.section-manual a{
  width:300px;
  color: #ffffff;
  border-radius: 50px 50px;
  padding: 5px 0px;
  box-shadow: 2px 2px 4px #c9c9c9;
  font-weight: 500;
  letter-spacing: 0.2rem;
  transition: .3s;
}
.section-manual a:hover{
  position: relative;
  box-shadow: none;
  top: 2px;
  opacity: 0.9;
  background-color: #ffffff;
}
.guide_manual{
  background-color: #1D74BF;
  border: 3px solid #1D74BF;
}
.program_pamphlet{
  background-color: #279CCF;
  border: 3px solid #279CCF;
}
.guide_manual:hover{
  border: 3px solid #1D74BF;
  color: #1D74BF;
}
.program_pamphlet:hover{
  border: 3px solid #279CCF;
  color: #279CCF;
}
.text{
  text-align: center;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 17px;
  top: -15px;
  left: 4rem;
  border-radius: 9999px;
  border-bottom: 2px solid;
  color: #ffffff;
}
.program_pamphlet .arrow {
  left: 6rem;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 9px;
  border-radius: 9999px;
  border-bottom: 2px solid;
  color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}
.arrow::before {
  transform: rotate(47.3deg);
}
.arrow::after {
  transform: rotate(-47.3deg);
}

.guide_manual:hover .arrow,
.guide_manual:hover .arrow::before,
.guide_manual:hover .arrow::after {
    color: #1D74BF;
}
.program_pamphlet:hover .arrow,
.program_pamphlet:hover .arrow::before,
.program_pamphlet:hover .arrow::after {
    color: #279CCF;
}

@media(max-width:1000px){
  .section-manual{
    margin: 0 auto 50px;
   }
  .section-manual p{
    width: 100%;
   }
  .manual_pamphlet-wrapper{
    gap:20px;
  }
  .program_pamphlet .arrow {
    left: 5rem;
  }
}

.section-facility{
  text-align: center;
  margin: 0 auto 150px;
  background-color: #F7F8E5;
  padding: 60px 0 80px;
}
.section-facility h3{
  color: #FF6400;
  margin-bottom: 115px;
}
.section-facility h3 span::before{
   border-bottom: 2px solid #FF6400;
}

.section-facility h3 span::after{
   border-bottom: 2px solid #FF6400;
}
.section-facility ul{
  display: flex;
  justify-content: center;
  column-gap: 40px;
  row-gap: 80px;
  flex-wrap: wrap;
}
.section-facility ul li a{
  display: block;
  background-color: #FF6400;
  padding: 0 15px 15px;
  color: #ffffff;
  height: 223px;
  box-shadow: 2px 2px 4px #c9c9c9;
}
.section-facility ul li a:hover{
  box-shadow: none;
  position: relative;
  top: 2px;
  opacity: 0.7;
}
.facility_img{
  width: 327px;
  height: 207px;
  transform: translateY(-50px);
}
.section-facility ul li img{
  max-width: 327px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-facility ul li h4{
  text-align: left;
  margin-top: -40px;
  font-size: 1.9rem;
}
.section-facility ul li h4 span{
  font-size: 1.4rem;
}

@media(max-width:1000px){
  .section-facility ul{
    column-gap: 20px;
  }
  .facility_img{
    width: 287px;
    height: 187px;
    transform: translateY(-20px);
  }
  .section-facility ul li h4{
    margin-top: -16px;
  }
  .section-facility ul li a{
    height: 250px;
  }
}

@media(max-width:650px){
  .section-facility{
    padding: 40px 0 40px;
    margin: 0 auto 50px;
  }
  .section-facility h3{
    margin-bottom: 50px;
  }
  .section-facility ul{
    row-gap:40px;
    column-gap: 5px;
    padding: 0 10px;
    justify-content: space-evenly;
  }
  .section-facility ul li a{
    height: 140px;
    padding: 0 7px 150px;
  }
  .facility_img{
    width: 140px;
    height: 90px;
    transform: translateY(-10px);
  }
  .section-facility ul li h4{
    font-size: 1.3rem;
    margin-top: -8px;
    line-height: 2rem;
  }
  .section-facility ul li h4 span{
    font-size: 1.1rem;
  }
}

 


























