@charset "utf-8";
/**
 * 共通部品
 *
 * @format
 */

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
/* ここから記述します。 */
.u-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 100px;
}

.u-sectionTitle {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 4px;
}

.u-sectionSubTitle {
    text-align: center;
    margin-bottom: 64px;
    font-size: 18px;
}
.u-button {
    display: block;
    color: #ffffff;
    background-color: #ec8812;
    font-size: 20px;
    margin: 0 auto;
    padding: 16px 64px;
    border: none;
    cursor: pointer;

}
 @media screen and (max-width:768px) {
    .u-wrapper {
        padding: 0 20px;
    }
    .u-sectionSubTitle {
        margin-bottom: 40px;
    }
 }

/* header */
.header {
    display: flex;
    background-color: #188888;
    color: #ffffff;
    padding: 38px 0;
    width: 100%;
    justify-content: space-between;
}
.header__inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.header__title {
    font-size: 24px;
    font-weight: bold;
}
.header__navList {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.header__navItem a {
    color: #ffffff;
}
.header__navItem a:hover {
    text-decoration: underline;
}

 @media screen and (max-width:768px) {
    .header {
        padding: 16px;
    }
    .header__title {
        margin-bottom: 10px;
    }
    .header__inner {
        flex-direction: column;
    }
 }

 /* firstview */

 .firstview {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../image/FV.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;
 }

 .firstview__title {
    padding: 8px 32px;
    background-color: #ffffff;
    font-weight: bold;
    font-size: 40px;
    margin: 0;
 }
 @media screen and (max-width:768px) {
    .firstview {
        height: 540px;
    }
    .firstview__title {
        font-size: 32px;
    }
 }

 /* course */
 .course {
    padding: 80px 0;
 }
 .course__cards {
    display: flex;
justify-content: space-between;
gap: 20px;
 }

 .course__textBox {
    padding: 24px;
 }

 .course__cardTitle {
    font-size: 24px;
    margin: 0 0 16px;
    font-weight: bold;
    text-align: center;
 }
 .course__card {
    background-color: #ffffff;
    filter: drop-shadow(0 4px 15px rgba(51,51,51,0.25));
 }

 .course__cardImg {
    width: 100%;
    height: auto;
 }
 .course__cardDescription {
    font-size: 16px;
 }

  @media screen and (max-width:768px) {
    .course {
        padding: 64px 0;
    }
    .course__cards {
        flex-direction: column;
    }
 }
 /* news */ 
 .news {
    background-color: #f1f8f8;
    padding: 80px 0;
 }
 .news__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 64px;
 }
 .news__item {
    display: flex;
    background-color: #ffffff;
 }
 .news__date {
    background-color: #188888;
    padding: 24px 0;
    width: 22%;
    text-align: center;
    color: #ffffff;
}
.news__description {
    padding: 24px 50px 24px 24px;
}
 @media screen and (max-width:768px) {
    .news {
        padding: 66px 0;
    }
    .news__list {
        gap: 32px;
    }
    .news__item {
        flex-direction: column;
    }
    .news__date {
        width: 100%;
        padding: 12px 16px;
        }
    .news__description {
        width: 100%;
        padding: 12px 16px;
    }
 }
/* contact */
.contact {
    padding: 80px 0 ;
    margin: 0 auto;
    max-width: 640px;
}

.contact__label {
    margin-bottom: 12px;
}

.contact__input,
.contact__textarea {
    margin: 0 0 32px;
    padding: 10px;
    font-size: 16px;
    border: solid 1px #c4c4c4;
}
.contact__textarea {
min-height: 160px;
}
.contact__form {
    display: flex;
    flex-direction: column;
}
.contact__button {
    margin-top: 64px;
}

 @media screen and (max-width:768px) {
    .contact {
        padding: 64px 30px;
    }
    .contact__button {
        margin-top: 40px;
    }
 }
/*footer */
.footer {
    background-color: #188888;
    padding: 30px 0;

}

.footer__text {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}