#index {
  padding-bottom: 100px;
}
#index #visual {
  text-align: center;
  padding: 50px 0 50px;
}
#index #visual h1 {
  color: #005587;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #index #visual h1 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
#index #visual p {
  font-size: clamp(1.8rem, 1.488rem + 0.4vw, 2rem);
}
@media screen and (max-width: 767px) {
  #index #visual p {
    font-size: 1.4rem;
  }
}
#index #lists .list-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
#index #lists .list-layout .box {
  width: calc((100% - 64px) / 3);
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  #index #lists .list-layout .box {
    width: 100%;
  }
}
#index #lists .list-layout .box .image {
  position: relative;
  line-height: 0;
}
#index #lists .list-layout .box .image ul {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  line-height: 1;
}
#index #lists .list-layout .box .image ul li {
  padding: 6px 15px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
#index #lists .list-layout .box .image ul li.new {
  background-color: #00A3E0;
}
#index #lists .list-layout .box .image ul li.entry {
  background-color: #005587;
}
#index #lists .list-layout .box .image ul li.type1 {
  background-color: #008F86;
}
#index #lists .list-layout .box .image ul li.type2 {
  background-color: #43b02a;
}
#index #lists .list-layout .box .image ul li.type3 {
  background-color: #6c2ba8;
}
#index #lists .list-layout .box .text {
  padding: 40px 5%;
}
@media screen and (max-width: 767px) {
  #index #lists .list-layout .box .text {
    padding: 25px 5%;
  }
}
#index #lists .list-layout .box .text .lead {
  color: #00A3E0;
  font-weight: bold;
  font-size: clamp(1.6rem, 0.976rem + 0.8vw, 2rem);
  padding-bottom: 30px;
  border-bottom: 1px dotted #333;
}
#index #lists .list-layout .box .text .det {
  padding-top: 30px;
}
#index #lists .list-layout .box .text .det h3 {
  color: #005587;
  font-weight: bold;
}
#index #lists .list-layout .box .text .det p {
  margin-bottom: 2rem;
  font-size: clamp(1.2rem, 0.732rem + 0.6vw, 1.5rem);
  font-weight: 500;
}
#index #lists .list-layout .box .text .det ul {
  padding-left: 25px;
  list-style-type: disc;
  margin-bottom: 25px;
}
#index #lists .list-layout .box .text .det ul li {
  font-weight: 500;
  font-size: clamp(1.2rem, 0.732rem + 0.6vw, 1.5rem);
}
#index #lists .list-layout .box .text .det .btn {
  display: block;
  background-color: #00BFB4;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  line-height: 1;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 15px;
}
#index #lists .list-layout .box .text .det .btn:hover {
  background-color: rgb(0, 140, 131.9371727749);
}
#index #lists .list-layout .box .text .det .btn.apply {
  background-color: #00A3E0;
}
#index #lists .list-layout .box .text .det .btn.apply:hover {
  background-color: rgb(0, 125.8883928571, 173);
}

#detail {
  padding-bottom: 100px;
}
#detail #visual {
  text-align: center;
  padding: 50px 0 50px;
}
@media screen and (max-width: 767px) {
  #detail #visual {
    padding: 30px 0 30px;
  }
}
#detail #visual h1 {
  color: #005587;
  font-size: 3.2rem;
  font-weight: 500;
}
#detail #content-block {
  background-color: #fff;
}
#detail #content-block .content-inner {
  padding: 80px 8%;
}
@media screen and (max-width: 767px) {
  #detail #content-block .content-inner {
    padding: 30px 5%;
  }
}
#detail #content-block .lead {
  font-size: clamp(2.4rem, 1.464rem + 1.2vw, 3rem);
  font-weight: bold;
  color: #00A3E0;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #detail #content-block .lead {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }
}
#detail .apply {
  max-width: 574px;
  border-radius: 100px;
  background: linear-gradient(90deg, #00BFB3, #008F86);
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 35px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  #detail .apply {
    font-size: 1.6rem;
    padding: 25px;
    margin-bottom: 40px;
  }
}
#detail .detail-box {
  background-color: #F7F7F7;
  padding: 8%;
}
@media screen and (max-width: 767px) {
  #detail .detail-box {
    padding: 5%;
  }
}
#detail .detail-box dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #detail .detail-box dl {
    margin-bottom: 30px;
  }
}
#detail .detail-box dl dt {
  width: 20%;
  padding: 30px 0;
  color: #005587;
  font-weight: bold;
  border-bottom: 1px dotted #333;
}
@media screen and (max-width: 767px) {
  #detail .detail-box dl dt {
    width: 100%;
    padding-block: 15px 0;
    border: none;
  }
}
#detail .detail-box dl dd {
  width: 80%;
  padding: 30px 0;
  font-weight: 500;
  border-bottom: 1px dotted #333;
}
@media screen and (max-width: 767px) {
  #detail .detail-box dl dd {
    width: 100%;
    padding-block: 1rem 15px;
  }
}
#detail .detail-box dl dd p.note {
  font-size: 1.2rem;
  font-weight: 400;
}
#detail .detail-box dl .last {
  border-bottom: none;
}
#detail .favorite-point {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  #detail .favorite-point {
    flex-direction: column;
  }
}
#detail .favorite-point.single {
  justify-content: center;
}
#detail .favorite-point.single .box {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #detail .favorite-point.single .box {
    flex-direction: column;
  }
}
#detail .favorite-point.single .box h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  margin-right: 20px;
  padding-right: 20px;
  border: none;
  border-right: 1px dotted #fff;
}
@media screen and (max-width: 767px) {
  #detail .favorite-point.single .box h3 {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px dotted #fff;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
#detail .favorite-point.mt {
  margin-top: 40px;
}
#detail .favorite-point .box {
  width: 50%;
  border-radius: 6px;
  padding: 5%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #detail .favorite-point .box {
    width: 100%;
  }
}
#detail .favorite-point .box.favorite {
  background-color: #00BFB3;
}
#detail .favorite-point .box.point {
  background-color: #43B02A;
}
#detail .favorite-point .box .title {
  text-align: center;
  border-bottom: 1px dotted #fff;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #detail .favorite-point .box .title {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
#detail .favorite-point .box .title .icon {
  margin-bottom: 10px;
}
#detail .favorite-point .box .title span {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #detail .favorite-point .box .title span {
    font-size: 2rem;
  }
}
#detail .message {
  padding: 5%;
}
@media screen and (max-width: 767px) {
  #detail .message {
    padding: 30px 0;
  }
}
#detail .message h3 {
  color: #005587;
  font-weight: bold;
  padding-left: 30px;
  border-left: 5px solid #005587;
  font-size: clamp(2rem, 1.376rem + 0.8vw, 2.4rem);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #detail .message h3 {
    font-size: 1.7rem;
    padding-left: 15px;
  }
}
#detail .message p {
  margin-bottom: 3rem;
  font-weight: 500;
}
#detail .message p b {
  font-weight: bold;
}
#detail .access h2 {
  color: #005587;
  font-weight: bold;
  font-size: clamp(2.4rem, 1.464rem + 1.2vw, 3rem);
  margin-bottom: 20px;
  text-align: center;
}
#detail .access .info {
  text-align: center;
  z-index: 1.6rem;
  font-weight: 500;
  margin-bottom: 40px;
}
#detail .access .block {
  max-width: 900px;
  margin: 0 auto 50px;
}
#detail .access .block h3 {
  position: relative;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 1.488rem + 0.4vw, 2rem);
  color: #005587;
}
#detail .access .block h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #005587;
}
#detail .access .block .image {
  margin: auto;
  text-align: center;
}
#detail .persons {
  padding: 0 5%;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  #detail .persons {
    padding: 0;
  }
}
#detail .persons h3 {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1rem;
}
#detail .persons .person {
  display: flex;
  gap: 5%;
  margin-bottom: 3rem;
}
#detail .persons .person .image {
  width: 150px;
}
@media screen and (max-width: 767px) {
  #detail .persons .person .image {
    width: 80px;
  }
}
#detail .persons .person p {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #detail .persons .person p {
    font-size: 1.3rem;
  }
}
#detail .persons .person p .name {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  #detail .persons .person p .name {
    font-size: 1.5rem;
  }
}
#detail .contact {
  margin-top: 60px;
  background-color: #F7F7F7;
  padding: 5%;
  margin-bottom: 50px;
  text-align: center;
}
#detail .contact h3 {
  font-weight: bold;
  margin-bottom: 3rem;
}
#detail .contact p {
  font-weight: 500;
}
#detail .other {
  max-width: 398px;
  border-radius: 100px;
  border: 1px solid #140C42;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 20px;
  margin: 0 auto 0;
}
@media screen and (max-width: 767px) {
  #detail .other {
    font-size: 1.6rem;
    padding: 15px;
  }
}