@charset "UTF-8";

/* =======================================================
* btnArea
* ======================================================= */
#btnArea ul {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  align-items: center;
}

#btnArea ul a {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: .1em;
  background: var(--color-navy);
  padding: 10px 0;
  border-radius: 30px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width:950px) {
  #btnArea ul {
    grid-template-columns: repeat(2, 1fr);
  }

  #btnArea ul a {
    font-size: 1.2rem;
  }
}


/* =======================================================
* benefit
* ======================================================= */
#benefit ul {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px auto 90px;
}

#benefit ul li {
  padding: 20px 30px 15px;
  background: rgb(255 255 255 / 10%);
  border-radius: 0px 0 20px 0;
  font-size: 1.4rem;
}

#benefit ul li h5 {
  font-weight: bold;
  border-bottom: 1px dotted #777;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 1.7rem;
  letter-spacing: .1em;
}

#benefit ul li h5 span {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
}

@media screen and (max-width:950px) {
  #benefit ul {
    grid-template-columns: 1fr;
  }
}


/* =======================================================
* program
* ======================================================= */
#program {
  padding-top: 5rem;
}

#program dl {
  margin-top: 50px;
}

#program dl dt {
  width: 40%;
  background: rgb(255 255 255 / 10%);
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

#program dl dd {
  width: 55%;
  margin-bottom: 20px;
}

@media screen and (max-width:950px) {
  #program dl dt {
    width: 100%;
    margin-bottom: 10px;
  }

  #program dl dd {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* =======================================================
* support
* ======================================================= */
#support .support_detail {
  margin-top: 20px;
}

#support .support_detail p {
  background: rgb(255 255 255 / 10%);
  padding: 10px 30px;
  margin: 7px 5px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
}

#support .support_img {
  max-width: 600px;
  margin: 80px auto 0;
}

/* fixImage */
.fixImage {
  background: url(../images/service_bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
  position: relative;
}

.fixImage::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}

@media screen and (max-width:950px) {
  #support .support_detail p {
    display: block;
    margin: 12px 0px;
  }

  #support .support_img {
    margin: 60px auto 30px;
  }

  .fixImage {
    height: 180px;
    background-attachment: unset;
  }
}


/* =======================================================
* differences
* ======================================================= */
#differences {
  background: rgb(17 17 17 / 60%);
}

#differences table {
  max-width: 1000px;
  margin: 30px auto;
}

#differences table,
td,
th {
  border: 1px solid #595959;
  border-collapse: collapse;
  background-color: rgb(255 255 255 / 10%);
  font-size: 1.4rem;
  text-align: center;
}

#differences th {
  padding: 10px;
  width: 300px;
  text-align: center;
}

#differences td {
  padding: 10px;
  width: 200px;
  font-weight: bold;
  box-sizing: border-box;
  vertical-align: middle;
}

#differences td.hino {
  background: var(--color-navy);
}

@media screen and (max-width:950px) {
  .scroll-box {
    overflow-x: auto;
    width: 100%;
  }

  #differences table {
    width: 750px;
    margin: 10px auto 30px;
  }
}

/* =======================================================
* flow
* ======================================================= */
#flow ul {
  display: flex;
  overflow-x: scroll;
  padding-bottom: 50px;
  margin-top: 50px;
  margin-right: calc(50% - 50vw);
}

#flow ul li {
  min-width: 30%;
  background: var(--color-lightgray);
  color: var(--color-black);
  padding: 30px 30px 25px;
  margin-right: 20px;
  border-radius: 0 0 30px;
  position: relative;
}

#flow ul li div {
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  font-size: 2.5rem;
  top: 0px;
  left: 0px;
  background: #2c4f85;
  border-radius: 0 0 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 1.5;
  color: var(--color-white);
}

#flow ul li h5 {
  font-weight: bold;
  font-size: 1.7rem;
  text-align: center;
}

@media screen and (max-width:950px) {
  #flow ul {
    padding-bottom: 30px;
    margin-bottom: 90px;
  }
  #flow ul li {
    min-width: 80%;
    padding: 30px 20px 25px;
  }

  #flow ul li h5 {
    font-size: 1.6rem;
  }

  #flow ul li div {
    font-size: 2rem;
    width: 40px;
    height: 40px;
    line-height: 1.7;
  }
}