/**
 * 共通部品
 *
 * @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;

  @media screen and (max-width: 768px) {
    padding: 0 20px;
  }
}

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

.u-sabtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 80px;

  @media screen and (max-width: 768px) {
    margin-bottom: 40px;
  }
}

.u-button {
  display: block;
  background-color: #ec8812;
  margin: 0 auto;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  padding: 16px 64px;
}

/* -------------
header
------------- */

.header {
  display: flex;
  justify-content: space-between;
  background-color: #188888;
  color: #fff;
  width: 100%;
  padding: 38px 0;

  @media screen and (max-width: 768px) {
    padding: 16px;
  }
}

.header__title {
  font-size: 24px;
  font-weight: bold;
  
  @media screen and (max-width: 768px) {
   margin-bottom: 10px;
  }
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.header__navList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.header__navList a:hover {
 text-decoration: underline;
}

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

  @media screen and (max-width: 768px) {
		height: 540px;
	}
}

.firstView__title {
  margin: 0 auto;
  padding: 8px 32px;
  font-size: 40px;
  font-weight: bold;
  background-color: #fff;

   @media screen and (max-width: 768px) {
		font-size: 32px;
	}
}

/* -------------
course
------------- */
.Course_section {
  padding: 80px 0;

  @media screen and (max-width: 768px) {
   padding: 64px;
  }
}

.Coruse__cards {
  display: flex;
  justify-content: space-between;
  gap:20px;

  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.Couse__card {
  background: #fff;
  filter: drop-shadow(0 4px 15px rgba(51, 51, 51, 0.25));
}

.Course_image {
  width: 100%;
  height: auto;
}

.Course__texstbox {
  padding: 24px;
}

.card__taitle {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.card__texst {
  font-size: 16px;
}

/* -------------
news
------------- */
.News__section {
  background-color: #F1F8F8;
  padding: 80px 0;

  @media screen and (max-width: 768px) {
    padding: 64px 0;
  }
}

.News__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 64px;

  @media screen and (max-width: 768px) {
		gap: 32px;
	}
}

.News__item {
  display: flex;
  @media screen and (max-width: 768px) {
		flex-direction: column;
	}
}

.News__date {
  background-color: #188888;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 24px 0px;
  width: 22%;

  @media screen and (max-width: 768px) {
		width: 100%;
    padding: 12px 16px;
	}
}

.News__description {
  background-color: #fff;
  width: 78%;
  text-align: left;
  padding: 24px 50px 24px 24px;
  margin: 0;

  @media screen and (max-width: 768px) {
		width: 100%;
    padding: 12px 16px;
	}
}



/* -------------
contact
------------- */
.Contact__section {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 0;

  @media screen and (max-width: 768px) {
    padding: 64px 30px;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
}

.contact__label {
margin-bottom: 12px;
}

.contact__input,
.meassage__textarea  {
  border: solid 1px #c4c4c4;
  padding: 10px;
  margin-bottom: 32px;
  font-size: 16px;
}

.meassage__textarea {
  min-height: 160px;
}

.contact__button {
  margin-top: 64px;
  
  @media screen and (max-width: 768px) {
		margin-top: 40px;
	}
}

/* -------------
footer
------------- */

.footer {
background-color: #188888;
}

.footer__u-warpper {
  text-align: center;
  padding: 30px;
}

.footer__text {
  color: #fff;
  font-size: 14px;
}