/**
 * 共通部品
 *
 * @format
 */

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
/* ここから記述します。 */
.header {
  display: flex;
  width: 100%;
  /* justify-content: space-between; */
  background: #188888;
  color: #fff;
  padding: 12px 0;
}
.u-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  /* padding: 0 30px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width:798px) {
  .header__inner {
    flex-direction: column;
    gap: 12px;
    align-items: start;
  }
}

.header__title {
  font-size: 24px;
  font-weight: bold;
}
.header__nav {
  display: flex;
  list-style: none;
  font-size: 1.0rem;
}
@media screen and (max-width:798px) {
  .header__nav {
    align-self: end;
  }
}

.header__navItem {
  padding: 0 20px;
}
@media screen and (max-width:798px) {
  .header__navItem {
    flex-direction: column;
    padding: 0;
    padding-left: 20px;
  }
}

.firstView {
  display: flex;
  background-image: url(../image/FV.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  justify-content: center;
  align-items: center;
}
.firstviewTitle {
  font-weight: bold;
  font-size: 40px;
  padding: 7px 27px;
  background-color: #fff;
}

.section-wrapper {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}

.course {
  padding: 50px 0;
}

.course ul {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width:798px) {
  .course ul {
    flex-direction: column;
  }
}


.course__cards {
  width: 270px;
  height: 480px;
  margin-right: 20px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 5px 10px 8px rgb(200, 200, 200, 0.3); /* 影の付け方がわからない*/
}
@media screen and (max-width:798px) {
  .course__cards {
    width: 330px;
    margin-right: 0px;
  }
}


.course__pic {
  width: 100%;
}

.course__title {
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  text-align: center;
}

.course__cards .course__caption {
  text-align: left;
  font-size: 1.0rem;
  width: 85%;
}

.news {
  background-color: #f1ffff;
  padding: 50px 0;
}

.news-date {
  background-color: #188888;
  font-weight: bold;
  color: #f1ffff;
  width: 280px;
  height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:798px) {
  .news-date {
    width: 170px;
  }
}

.news-contents {
  width: 100%;
}

.news-contents li {
  display: flex;
  margin: 15px 0;
}
.news-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-left: 30px;
  background-color: #fff;
}

.listView {
  background-color: #fa9a1d;
  color: #fff;
  width: 250px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 50px 0;
}

.form {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding: 50px 0;
}

.form__label {
  margin-top: 30px;
}

.form__input {
  border: 1px solid #cacaca;
  margin: 10px 0;
  padding: 10px;
}

.form__textarea {
  height: 150px;
}

.form__submit {
  text-align: center;
  padding: 15px 20px;
  background-color: #fa9a1d;
  color: #fff;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 70px auto;
}

.contact {
  padding: 50px 0;
}

.copyright {
  display: flex;
  font-size: 14px;
  width: 100%;
  justify-content: center;
  background: #188888;
  color: #fff;
  padding: 20px 0;
}