@charset "UTF-8";
.c-btn-01 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: #ffffff;
  border: 1px solid #3FA7D1;
  color: #3FA7D1;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-01::after {
  background-image: url("../images/common/icon-arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

.c-btn-02 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-02::after {
  background-image: url("../images/common/icon-arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

/* =========================================================
download
========================================================= */
.p-download-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 10vh;
}
@media screen and (max-width: 767px) {
  .p-download-mv {
    margin-bottom: 40px;
  }
}
.p-download-mv_wrap {
  position: relative;
  width: 97%;
  height: 80vh;
  min-height: 500px;
  background-image: url("../images/common/mv-download.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-left: 3%;
  padding-left: 10%;
  border-bottom-left-radius: 120px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .p-download-mv_wrap {
    height: 50vh;
    min-height: 360px;
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-download-mv_wrap {
    width: 100%;
    margin-left: 0;
    height: 40vh;
    min-height: 280px;
    border-bottom-left-radius: 60px;
  }
}
.p-download-mv_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 110, 140, 0.75) 0%, rgba(63, 167, 209, 0.45) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.p-download-mv_head {
  background-color: #ffffff;
  border-radius: 0 12px 12px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px 120px 20px 20px;
}
@media screen and (max-width: 991px) {
  .p-download-mv_head {
    padding: 16px 60px 16px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-download-mv_head {
    padding: 12px 30px 12px 16px;
  }
}
.p-download-mv_ttl {
  color: #333333;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.p-download-mv_ttl .en {
  color: #3FA7D1;
  display: block;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  margin-bottom: 4px;
}
.p-download-cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 94%;
  max-width: 1280px;
  margin: 0 auto 10vh;
}
@media screen and (max-width: 991px) {
  .p-download-cont {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-download-cont {
    margin-bottom: 60px;
  }
}
.p-download-sidenav {
  width: 25%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
@media screen and (max-width: 991px) {
  .p-download-sidenav {
    display: none;
  }
}
.p-download-sidenav_ttl {
  border-bottom: 3px solid #333333;
  color: #333333;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: flex-end;
}
.p-download-sidenav_item a {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-download-sidenav_item a::before {
  background-image: url(../images/common/icon-arrow_right-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}
.p-download-sidenav_item a:hover {
  color: #3FA7D1;
  background-color: #f8fcfe;
}
.p-download-sidenav_item a:hover::before {
  transform: translateX(4px);
}
.p-download-sidenav_item.is-current a {
  color: #3FA7D1;
  font-weight: 700;
  background-color: #f8fcfe;
}
.p-download-sidenav_item.is-current a::before {
  background-image: url(../images/common/icon-arrow_right.svg);
  transform: translateX(4px);
}
.p-download-box {
  width: 72%;
  /* リード文・注意書きエリア */
  /* ダウンロードリストスタイル（PC時は2列、背景#3FA7D1・白文字） */
}
@media screen and (max-width: 991px) {
  .p-download-box {
    width: 100%;
  }
}
.p-download-box_head {
  border-bottom: 3px solid #333333;
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-download-box_head {
    margin-bottom: 24px;
    padding-bottom: 8px;
    min-height: auto;
  }
}
.p-download-box_ttl {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1;
}
.p-download-box_ttl::before {
  background-image: url(../images/common/icon-tooth.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
  margin-right: 14px;
  flex-shrink: 0;
}
.p-download-box_pagenav {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-download-box_pagenav {
    margin-bottom: 30px;
  }
}
.p-download-box_pagenavlist {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 2%;
}
@media screen and (max-width: 1199px) {
  .p-download-box_pagenavlist {
    gap: 12px 8%;
  }
}
.p-download-box_pagenavitem {
  width: 32%;
  height: 56px;
}
@media screen and (max-width: 1199px) {
  .p-download-box_pagenavitem {
    width: 46%;
    height: 50px;
  }
}
@media screen and (max-width: 619px) {
  .p-download-box_pagenavitem {
    width: 100%;
    height: 50px;
  }
}
.p-download-box_pagenavitem a {
  border: 2px solid #8ccde4;
  background-color: #ffffff;
  border-radius: 30px;
  color: #3FA7D1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 700;
  width: 100%;
  height: 100%;
  padding-inline: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-download-box_pagenavitem a {
    padding-inline: 16px;
  }
}
.p-download-box_pagenavitem a:hover {
  background-color: #3FA7D1;
  border-color: #3FA7D1;
  color: #ffffff;
}
.p-download-box_pagenavitem a:hover .num {
  color: #ffffff;
}
.p-download-box_pagenavitem a:hover .icon-arrow {
  filter: brightness(0) invert(1);
}
.p-download-box_pagenavitem a .num {
  color: #3FA7D1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  transition: color 0.3s ease;
}
.p-download-box_pagenavitem a .icon-arrow {
  background-image: url(../images/common/icon-arrow_downward.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: filter 0.3s ease;
}
.p-download-box_note {
  background-color: #fff9f9;
  border: 1px solid rgba(220, 100, 100, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-download-box_note {
    padding: 16px;
    margin-bottom: 30px;
  }
}
.p-download-box_note-ttl {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  color: #d25555;
  text-align: center;
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 2px dashed rgba(210, 85, 85, 0.3);
  border-bottom: 2px dashed rgba(210, 85, 85, 0.3);
  letter-spacing: 0.05em;
}
.p-download-box_note-lead {
  color: #333333;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 700;
  margin-bottom: 12px;
}
.p-download-box_note-list {
  color: #333333;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.6;
  margin: 0;
}
.p-download-box_note-list dt {
  font-weight: 700;
}
.p-download-box_note-list dd::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #333333;
  border-radius: 50%;
  margin-right: 8px;
}
.p-download-box_gp {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-download-box_gp {
    margin-bottom: 40px;
  }
}
.p-download-box_subttl {
  border-left: 6px solid #3FA7D1;
  color: #333333;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-download-box_subttl {
    margin-bottom: 20px;
  }
}
.p-download-box_subttl .en {
  color: #C4C4C4;
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  margin-top: 2px;
}
.p-download-box_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 429px) {
  .p-download-box_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-download-box_list li {
  margin: 0;
}
.p-download-box_list a {
  background-color: #3FA7D1;
  border: 1px solid #3FA7D1;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  padding: 18px 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(63, 167, 209, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  /* 左側アイコン（PDFなど） */
  /* 右側の矢印アイコン */
  /* ホバー時の演出（少し沈み込む/浮き上がる、色味の変化など） */
}
@media screen and (max-width: 767px) {
  .p-download-box_list a {
    padding: 14px 16px;
  }
}
.p-download-box_list a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon-pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 12px;
  flex-shrink: 0;
  filter: brightness(0) invert(1); /* 白背景用に白抜き */
}
.p-download-box_list a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../images/common/icon-recruit.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.p-download-box_list a:hover {
  background-color: #2e8ab0;
  border-color: #2e8ab0;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(63, 167, 209, 0.35);
}
.p-download-box_list a:hover::after {
  transform: translateX(4px);
}
/*# sourceMappingURL=style-download.css.map */