@charset "UTF-8";

@import url("../../../resource/css/reset.css");
@import url("../../../resource/css/header.css");
@import url("../../../resource/css/footer.css");

/* Document専用のReset設定
 * ======================================== */
.document_contents {
  font-size: 14px;
}

.document_contents * {
  border: 0;
  box-sizing: border-box;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ",
    Meiryo, "Yu Gothic", YuGothic, Verdana, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

.document_contents a {
  color: #0a508d;
}


@media (min-width: 801px) {
  .show_mobile {
    display: none;
  }
}

@media (max-width: 800px) {
  .inner {
    padding: 0 16px;
  }

  .hide_mobile {
    display: none;
  }
}

/* Heroエリア
 * ======================================== */
.hero {
  padding: 60px 0 50px;
  width: 100%;
  background-color: #fff;
}
.hero__wrap{
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero .hero__txt{
  width: 100%;
  text-align: center;
}
.hero h1 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #073e6e;
}
.hero p {
  font-size: 16px;
  color: #333;
}

@media (max-width: 1100px) {
  .hero {
    padding: 32px 40px;
  }
}
@media (max-width: 960px) {
  .hero {
    padding: 32px 16px;
  }
  .hero h1 {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .hero {
    padding: 28px 16px;
  }
}

/* Pickupエリア
 * ======================================== */

#pickup {
  background: linear-gradient(180deg, #fff 0%, #fff 45%, #F6F9FB 45%, #F6F9FB 100%);
  margin-bottom: -24px;
}

.swiper {
  width: 100%;
  margin-bottom: 1rem;
}

.swiper-slide {
  width: 816px;
  height: 230px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #E6EAED;
}

.slide_area{
  display: flex;
}

.slide_thumbnail img{
  width: 408px;
}

.slide {
  background-color: #fff;
}

.slide a:hover {
  opacity: 0.8;
}

.slide_title {
  padding: 2rem 1.8rem 2rem 2.2rem;
  position: relative;
}

.slide_title h4 {
  font-size: 23px;
  line-height: 30px;
  margin-bottom: 1rem;
  text-align: center;
}

.slide_title p {
  color: #333333;
}

.slide_title .slide_btn {
  position: absolute;
  bottom: 1.4rem;
  left: 75px;
  display: block;
  background-color: #FF5577;
  width: 260px;
  height: 52px;
  border-radius: 52px;
  text-align: center;
  line-height: 52px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination {
  position: static;
  margin-bottom: 1.5rem;
}

.swiper-button {
  position: relative;
  width: 960px;
  margin: 0 auto;
}

.swiper-button-prev {
  top: -130px;
  left: 20px;
}

.swiper-button-next {
  top: -130px;
  right: 20px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #073e6e;;
  font-size: 1rem;
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 35px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #E6EAED;
}

.swiper-pagination-bullet {
  width: 80px;
  height: 5px;
  border-radius: 2px;
}

.swiper-pagination-bullet-active {
  background-color: #073e6e;
}

.swiper-slide-prev, .swiper-slide-next {
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 960px) {
  .swiper-slide {
    width: 100%;
    height: auto;
  }

  .slide_title {
    width: 55%;
    padding: 1rem;
  }

  .slide_thumbnail {
    width: 45%;
  }

  .slide_thumbnail img{
    width: 100%;
  }

  .swiper-button {
    display: none;
  }

  .slide_title .slide_btn {
    display: none;
  }
}

/* Searchエリア
 * ======================================== */
.search {
  padding: 40px 0;
  width: 100%;
  background: #F6F9FB;
}
.search__wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.search-bd{
  padding: 20px 40px 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E6EAED;
}
.search-bd-nav{
  display: flex;
  border-bottom: 1px solid #E6EAED;
}
.search-bd-nav__item{
  padding: 14px 10px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: color ease 0.4s;
}
.search-bd-nav__item br{
  display: none;
}
.search-bd-nav__item:hover{
  color: #0A508D;
}
.search-bd-nav__item.-selected{
  border-bottom: 2px solid #0A508D;
  color: #0A508D;
}
.search-bd-tags{
  margin-top: 12px;
}
.search-bd-tags__list{
  display: flex;
  flex-wrap: wrap;
}
.search-bd-tags__list__item{
  margin-top: 12px;
  padding: 15px 32px;
  line-height: 1;
  color: #333 !important;
  border-radius: 50px;
  border: 1px solid #E6EAED;
  cursor: pointer;
  transition: border ease 0.4s, color ease 0.4s;
}
.search-bd-tags__list__item:hover{
  color: #0A508D !important;
  border: 1px solid #0A508D;
}
.search-bd-tags__list__item.-selected{
  color: #fff !important;
  background: #0A508D;
  border: none;
}
.search-bd-tags__list__item:not(:last-child){
  margin-right: 10px;
}

@media (max-width: 1100px) {
  .search {
    padding: 40px 20px;
  }
}
@media (max-width: 960px) {
  .search {
    padding: 32px 16px;
  }
  .search-bd {
    padding: 20px 20px 32px;
  }
}
@media (max-width: 420px) {
  .search-bd {
    padding: 8px 16px 20px;
  }
  .search-bd-nav__item {
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    line-height: 1.35;
  }
  .search-bd-tags {
    margin-top: 12px;
  }
  .search-bd-tags__list__item {
    margin-top: 8px;
    padding: 12px 20px;
    font-size: 13px;
  }
  .search-bd-tags__list__item:not(:last-child) {
    margin-right: 4px;
  }
  .search-bd-nav__item br{
    display: block;
  }
}

/* カテゴリアンカー
 * ======================================== */
.sections .inner{
  padding-top: 60px;
}

.sections .document_list:not(first-child){
  padding-top: 80px;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  border-top: 1px solid #F4F7F9;
}

.category_anchor_list ul {
  display: flex;
  justify-content: center;
  margin: 64px 0;
}

.category_anchor:last-child {
  margin-right: 0;
}

.category_anchor a {
  display: block;
  width: 168px;
  height: 48px;
  margin-right: 24px;
  background: #eff4f8;
  font-weight: bold;
  color: #073e6e;
  text-align: center;
  line-height: 48px;
  padding-left: 10px;
}

.category_anchor a:hover {
  outline: 1px solid #778fa3;
}

.category_anchor i {
  margin-left: 8px;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 960px) {
  .category_anchor_list ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .category_anchor {
    width: 45%;
  }

  .category_anchor a {
    width: 100%;
    min-width: 160px;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

/* 資料エリア
 * ======================================== */
.sections{
  padding: 0 40px;
}

.document_list h2 {
  color: #073e6e;
  text-align: center;
  font-size: 1.6rem;
}

.document_prev {
  margin: 32px auto 0;
  width: 100%;
  max-width: 240px;
  height: 50px;
  color: #0A508D !important;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  border: 1px solid #0A508D;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all ease 0.4s;
}
@media (min-width: 961px) {
  .document_prev:hover {
    opacity: .8;
  }
}
@media (max-width: 960px) {
  .document_prev {
    margin: 20px auto 0;
  }
}

.main_document_list,
.sub_document_list {
  display: flex;
  flex-wrap: wrap;
}

.sub_document_list {
  margin-top: 60px;
}

.main_document_list {
  justify-content: center;
}

.main_document_list .list_item {
  max-width: 465px;
  margin-bottom: 56px;
}

.main_document_list .list_item:nth-child(even) {
  margin-left: 30px;
}

.sub_document_list .list_item {
  max-width: 310px;
  margin-right: 35px;
  margin-bottom: 60px;
}

.sub_document_list .list_item:nth-child(3n) {
  margin-right: 0;
}

.list_item {
  position: relative;
}

.list_item .balloon {
  content: "";
  display: flex;
  height: 100px;
  width: 100px;
  padding: 8px;
  border-radius: 100px;
  background-color: #fe0;
  align-items: center;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  top: -56px;
  right: -40px;
  z-index: 20;
  transform: rotate(15deg);
  color: #111;
}

.download_link_area {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.4s;
  backface-visibility:hidden;
}

.download_link_area .img {
  width: 100%;
  border: solid #E6EAED 1px;
  border-radius: 8px;
  overflow: hidden;
}

.download_link_area img {
  width: 100%;
  transition: transform 0.4s;
  will-change: transform;
}

.download_link_area:hover img {
  transform: scale(1.05);
}

.list_item figcaption {
  position: relative;
  padding-top: 15px;
  background-color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.document_status{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.document_status .document_status__new{
  padding: 4px 6px 5px;
  border-radius: 2px;
  background: #FFCBD5;
  color: #FF5577;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
}
.document_status .document_status__category{
  padding: 4px 8px 5px;
  border-radius: 2px;
  /* background: #FFCBD5; */
  color: #fff;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
}

.document_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}
.document_tag .tag_item {
  color: #778FA3;
  font-size: 12px;
}
.document_tag .tag_item a {
  padding: 2px 10px;
  display: block;
  border: 1px solid #778FA3;
  border-radius: 12px;
  transition: all ease .4s;
}
.document_tag .tag_item a:hover {
  opacity: 0.8;
}

.download_link_area:hover {
  opacity: 0.8;
}

@media (max-width: 1100px) {
  .sub_document_list {
    justify-content: space-around;
  }
  .sub_document_list .list_item {
    margin-right: 0;
    max-width: 300px;
  }
}
@media (max-width: 960px) {
  .sections{
    padding: 0 20px;
  }
  .sections .document_list:not(first-child) {
    padding-top: 60px;
  }
  .main_document_list .list_item:nth-child(even) {
    margin-left: 0;
  }
  .sub_document_list {
    flex-direction: column;
    align-items: center;
  }
  .sub_document_list .list_item {
    max-width: inherit;
    margin-right: 0;
  }
  .list_item .balloon {
    right: 0;
  }
  .sub_document_list .list_item {
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  .sections{
    padding: 0 16px;
  }
  .sub_document_list .list_item {
    margin-bottom: 24px;
  }
  .sections .document_list:not(first-child) {
    padding-top: 40px;
  }
  .document_list h2 {
    font-size: 6vw;
  }
  .sub_document_list {
    margin-top: 32px;
  }
}

/* footerエリア
 * ======================================== */
.footer {
  min-height: 184px;
  margin-top: 120px;
  padding: 48px 0;
  background-image: url(../images/bg_footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.footer p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.footer_link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.support_link {
  display: block;
  width: 265px;
  height: 50px;
  background-color: #fff;
  line-height: 50px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity ease 0.4s;
  color: #073e6e;
}

.support_link:hover {
  opacity: 0.8;
}

.link_btns {
  display: flex;
}

.link_btns li {
  margin-left: 15px;
}

.link_btns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  border: solid 1px #fff;
  transition: opacity ease 0.4s;
}

.link_btns li a:hover {
  opacity: 0.8;
}

.link_btns .case_link {
  width: 150px;
}

.link_btns .format_link {
  width: 142px;
}

.no_input_download {
  margin: 50px 0 0;
}

.no_input_download p {
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}

@media (max-width: 960px) {
  .footer {
    padding-top: 38px;
  }

  .footer .inner {
    padding: 0 34px;
  }

  .footer p {
    font-size: 17px;
    line-height: 1.4;
  }

  .support_link {
    width: 100%;
  }

  .link_btns {
    width: 100%;
    justify-content: space-between;
    margin: 16px 0 0;
  }

  .link_btns li {
    margin: 0;
  }

  .link_btns .case_link {
    width: 48.859934853%;
  }

  .link_btns .format_link {
    width: 46.254071661%;
  }
  .no_input_download {
    margin: 50px 1rem 0;
  }
}