@charset "UTF-8";

footer {
    padding-top: 1px;
}

main {
    margin-top: 120px;
}

/*メインビジュアル*/
#hero_Wrap {
    position: relative;
    width: 100%;
    background: url(../../common/img/bg.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding: 50px 0;
}
#hero_Wrap h2 {
    font-size: min(6vw,30px);
    text-align: center;
    color: #fff;
    letter-spacing: 0.2em;
}
#hero_Wrap h2 span {
    font-size: 12px;;
}



/*メインコンテンツ*/
.contents {
    padding: 0px 0 0 !important;
    color: #552121;
}

.plan_List {
  width: 100%;
  padding: 50px 0;
  background: #edece8;
  background: linear-gradient(56deg, rgba(237, 236, 232, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(237, 236, 232, 1) 100%);
}

.plan_List h3 {
  text-align: center;
  font-size: 20px;
    margin: 20px auto 30px;
  line-height: 1.6;
}

.plan_List > ul {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap:4%;
}
.plan_List > ul li {
  background: url(../../common/img/bg.jpg) no-repeat;
  background-size: cover;
  padding: 15px 1% 1%;
}
.plan_List > ul li .ttl {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
  color: #fff;
  margin-bottom: 15px;
}
.plan_List > ul li .ttl h4 {
  font-size: 30px;
  font-weight: normal;
  margin-right: 20px;
}
.plan_List > ul li .ttl h4 strong {
  font-size: 170%;
  font-weight: normal;
}
.plan_List > ul li .ttl p {
  font-size: 16px;
  letter-spacing: 0.1em;
}
.plan_List > ul li .ttl p small {
  font-size: 12px;
}
.plan_List > ul li .ttl p strong {
  font-size: 200%;
  font-weight: normal;
}
.plan_List > ul li .ttl > div {
  display: flex;
  justify-content: center;
  color: #fff;
  gap:2%;
  width: 90%;
  margin: 10px auto 0;
}
.plan_List > ul li .ttl > div p {
  border: 1px solid #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  width: 48%;
  text-align: center;
  padding: 3px 0;
}
.plan_List > ul li figure {
  position: relative;
}
.plan_List > ul li figure figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 80%;
  padding: 10px 0;
  background: #9a8f5a;
  color: #fff;
  text-align: center;
  font-size: 15px;
}

.pass_Area {
  padding: 70px 0;
  margin-top: 0;
}

.notes {
  margin: 30px auto 0;
}
.notes p {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
    
    /*メインビジュアル*/
    main {
        margin-top: 60px;
    }
    #hero_Wrap {
        background: url(../../common/img/bg.jpg) no-repeat;
        background-size: cover;
        background-position: center bottom;
    }
    
    
    /*メインコンテンツ*/
    .contents {
        padding: 0px 0 0;
    }
  
  .plan_List h3 {
    font-size: 20px;
  }
  .plan_List > ul {
    flex-wrap: wrap;
    max-width: 78%;
  }
  .plan_List > ul li {
    width: 100%;
    margin-bottom: 30px;
  }
    
    .notes {
        width: 90%;
        margin: 30px auto;
    }
    .notes p {
        text-align: left;
        text-indent: -1em;
        padding-left: 1em;
    }
}