@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

body.is-fixed {
  overflow: hidden;
}

/* ヘッダー */
.header {
  background-color: #009bcb;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header__container {
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.header__contents {
  display: flex;
  gap: 18px;
}

.header__logo {
  display: inline-block;
  padding: 14px 24px;
  font-size: 30px;
  color: #fff;
}

.header__nav {
  display: none;
}

.header__link,
.drawer__nav-link {
  text-decoration: none;
  color: #fff;
}

.header__menu-button {
  border: none;
  margin-right: 15px;
  width: 35px;
  height: 40px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) center center no-repeat;
  background-size: 100% auto;
}

.header__menu-button.is-checked {
  background: url(../img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}

/*--- ドロワー ---*/
.drawer {
  display: none;
  height: 100vh;
  border-top: 1px solid #fff;
  padding-top: 60px;
}

.drawer__contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 55px;
  list-style-type: none;
}

.drawer__text {
  color: #fff;
}

/* ページ内リンク先の位置でヘッダーの高さを考慮 */
:target {
  scroll-margin-top: 72.5px;
}

/*--- ファーストビュー ---*/
.fv {
  position: relative;
  margin-top: 70px;
  background-image: url(../img/first-view.jpeg);
  background-size: cover;
  background-position: top center;
  height: 40vh;
}

.fv__contents {
  position: absolute;
  bottom: 20%;
  background: rgba(255, 255, 255, 0.7);
  background-size: 100% auto;
  padding: 10px;
}

.fv__heading {
  display: block;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.section {
  padding: 40px 0;
}

.section__inner {
  padding: 0 32px;
}

.section__head {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
}

/* トップに戻る */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  padding: 10px 14px;
  background-color: #7acbe1;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  z-index: 10;
}

/* スワイパー */
.swiper {
  width: 100%;
  /* max-width: 600px; */
}

.swiper-wrapper {
  padding: 0;
}

.swiper-slide img {
  width: 100%; /* スライドの幅にフィット */
  height: auto; /* アスペクト比を維持 */
  display: block; /* 不要な隙間をなくす */
}

.swiper-button-prev, .swiper-button-next {
  display: none;
}

/* アコーディオン */
.accordion__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.accordion__item {
  width: 100%;
  border: 2px solid #38383e;
  border-radius: 5px;
  overflow: hidden;
  max-width: 500px;
}

.accordion__item-head {
  text-align: center;
  background-color: #009bcb;
  padding: 10px;
  cursor: pointer;
  color: #fff;
}

.accordion__item-text {
  padding: 10px;
  display: none;
  border-top: 1px solid #ccc;
}

.active {
  display: block;
}

/*--- フォーム ---*/
/* フォーム全体のスタイル */
.form-items {
  max-width: 600px;
  padding: 0 20px;
}

/* 各入力エリアのデザイン */
.text-field,
.select-box,
.check-box,
.radio-button,
.text-area,
.submit {
  margin-bottom: 20px;
  padding: 10px;
}

/* ラベルのデザイン */
label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

/* テキストフィールドのスタイル */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input[type="submit"] {
  width: 100px;
  height: 50px;
  font-size: 20px;
  background-color: #7acbe1;
  border-radius: 8px;
  border: 1px solid #555;
}

textarea {
  width: 100%;
  max-width: 500px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* セレクトボックスのスタイル */
select {
  width: 100%;
  max-width: 200px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff;
}

.form-item-text {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.form-item-text-sub {
  font-weight: normal;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

/*--- プロフィール ---*/
.profile-section {
  padding: 0 0 50px;
}

.profile__text {
  line-height: 1.7;
}

/*--- フッター ---*/
.footer {
  background-color: #009bcb;
  color: #fff;
  padding: 10px 10px 15px 10px;
  text-align: center;
}

.footer__copy {
  font-family: "Noto Sans JP", sans-serif;
}

/*-------------------------------
// pc
-------------------------------*/
@media screen and (min-width: 768px) {
  /*--- ヘッダー ---*/
  .header {
    padding: 20px 20px;
  }
  .header__container {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .header__nav {
    display: block;
    color: #fff;
  }

  .header__menu-button {
    display: none;
  }

  .header__contents {
    list-style-type: none;
    padding-top: 0;
    overflow: hidden;
  }

  .header__item {
    text-align: center;
  }

  /*--- 共通クラス ---*/
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }

  .section__head {
    font-size: 60px;
  }

  /*--- ファーストビュー ---*/
  .fv {
    height: 55vh;
  }

  .fv__contents {
    background: rgba(255, 255, 255, 0.7);
    background-size: 100% auto;
    bottom: 20%;
    left: 0;
    height: 150px;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }

  .fv__heading {
    font-size: 60px;
  }

  /*--- スワイパー ---*/
.swiper__area {
  position: relative;
}

  .swiper-button-prev, .swiper-button-next {
    display: block;
    position: absolute;
    top: 50%;
  }

  .swiper-button-prev {
    left: -15px;
  }

  .swiper-button-next {
    right: -15px;
  }

.swiper-pagination {
  position: absolute;
  bottom: -50px;
}

  /*--- ページトップへ戻るボタン ---*/
  .back-to-top {
    padding: 10px 20px;
    font-size: 40px;
  }

  /* アコーディオン */
  .accordion__items {
    flex-direction: row;
    align-items: flex-start;
  }

  .accordion__item-head {
    padding: 15px;
    font-size: 1.2em;
  }

  .accordion__item-text {
    padding: 15px;
  }
}
