@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: #231815;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

img {
  max-width: 100%;
}

.block_img img {
  display: block;
  margin: 30px auto;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

p {
  line-height: 2;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  animation-name: zoom;
  animation-duration: 0.6s;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.border_title {
  text-align: center;
  border-top: 1px solid #000000;
  font-weight: bold;
  margin-bottom: 40px;
  padding-top: 15px;
  font-size: 32px;
}

.gmenu {
  display: none;
  position: absolute;
  z-index: 30;
  border: 1px solid #000000;
  background: #fff;
  align-items: center;
  justify-content: center;
  width: 370px;
  height: 370px;
  border-radius: 370px;
  right: unset;
  left: -370px;
  top: 0;
}
.gmenu.open {
  display: flex;
}
.gmenu nav {
  width: auto;
}
.gmenu nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.gmenu nav ul li {
  border-bottom: 1px solid #000000;
}
.gmenu nav ul li:last-child {
  border-bottom: 1px solid #000000;
}
.gmenu nav ul li a {
  display: block;
  padding: 7px 15px;
  font-size: 12px;
}

.paging nav .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.paging nav .pagination .page-item {
  list-style: none;
  letter-spacing: -2px;
  margin-right: 10px;
}
.paging nav .pagination .page-item .sep {
  color: #C1C9F8;
}
.paging nav .pagination .page-item .page-link {
  display: inline-block;
  text-decoration: none;
  color: #283CB4;
  font-size: 24px;
  font-weight: 600;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #C1C9F8;
}
.paging nav .pagination .page-item.active .page-link {
  background-color: #283CB4;
  color: #ffffff;
}
.paging nav .pagination .page-item a:hover {
  background-color: #283CB4;
  color: #ffffff;
}
.paging nav .pagination .page-item.first, .paging nav .pagination .page-item.last {
  display: flex;
  align-items: center;
}
.paging nav .pagination .page-item.first.disabled, .paging nav .pagination .page-item.last.disabled {
  display: none;
}
.paging nav .pagination .page-item.first .page-link, .paging nav .pagination .page-item.last .page-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.paging nav .pagination .page-item.first a:hover, .paging nav .pagination .page-item.last a:hover {
  background-color: #C1C9F8;
  color: #283CB4;
}
.paging nav .pagination .page-item.first .page-link {
  background-image: url(../img/paging_prev.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotatez(180deg);
}
.paging nav .pagination .page-item.last {
  margin-right: 0;
}
.paging nav .pagination .page-item.last .page-link {
  background-image: url(../img/paging_next.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 1200px;
  padding-left: 0;
  padding-right: 0;
}

.pagetop {
  position: fixed;
  z-index: 2000;
  cursor: pointer;
  background-color: transparent;
  width: 82px;
  height: 82px;
  bottom: 30px;
  right: 0;
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon_pagetop.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
}

.side_ebook {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 20;
}
.side_ebook a {
  display: block;
}
.side_ebook a img {
  display: block;
  width: 65px;
}

.site_header .wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.site_header .wrap .logo {
  width: min(280px, 50%);
}
.site_header .wrap .logo a {
  display: block;
}
.site_header .wrap .logo a img {
  display: block;
  width: auto;
}
.site_header .wrap .navs {
  flex: 1;
}
.site_header .wrap .navs > nav > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
.site_header .wrap .navs > nav > ul > li {
  list-style: none;
  border-left: 1px solid #707070;
  font-size: 16px;
  position: relative;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.site_header .wrap .navs > nav > ul > li.link_search {
  display: block;
  text-align: center;
  width: 80px;
  border-right: 0;
}
.site_header .wrap .navs > nav > ul > li.link_search img {
  display: block;
  margin: auto;
}
.site_header .wrap .navs > nav > ul > li a {
  text-decoration: none;
  color: #231815;
  display: block;
}
.site_header .wrap .navs > nav > ul > li.btn_gmenu {
  display: block;
  border-left: none;
  padding-right: 0;
}
.site_header .wrap .navs > nav > ul > li.btn_gmenu > a {
  display: block;
  background-image: url(../img/icon_gmenu.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  width: 80px;
  height: 80px;
}
.site_header .wrap .navs > nav > ul > li.btn_gmenu > a.open {
  background-image: url(../img/icon_gmenu_close.png);
}
.site_header .wrap .navs > nav > ul > li.contact {
  padding-right: 0;
}
.site_header .wrap .navs > nav > ul > li.contact a {
  background-color: #283CB4;
  color: #ffffff;
  padding: 1px 8px;
}
.site_header .search_box {
  display: none;
  position: absolute;
  z-index: 20;
  border: 1px solid #707070;
  top: 40px;
  background: #ffffff;
  right: unset;
  left: 0;
  width: 500px;
  height: 110px;
  padding: 20px;
}
.site_header .search_box form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site_header .search_box form input {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 20px;
}
.site_header .search_box form button {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
  width: 70px;
  height: 70px;
  border-radius: 70px;
}

.search_keyword {
  border: 1px solid #707070;
  padding: 20px;
  margin-bottom: 80px;
}

.btn_area {
  text-align: center;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_area a {
  width: 380px;
  height: 48px;
  line-height: 48px;
  text-decoration: none;
  color: #ffffff;
  background: #283CB4;
  text-align: center;
  display: block;
}

.section_top_tama {
  padding-bottom: 50px;
}

.section_top_category {
  padding-bottom: 50px;
}

.category_wrap {
  background: #F0F0F0;
  margin-bottom: 70px;
  padding: 36px 40px;
}
.category_wrap nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}
.category_wrap nav li {
  list-style: none;
  border-bottom: 1px solid #000000;
  padding: 7px 14px;
  margin-bottom: 25px;
  width: 250px;
  margin-right: 40px;
}
.category_wrap nav li:nth-child(4n) {
  margin-right: 0;
}
.category_wrap nav li a {
  text-decoration: none;
  color: #000000;
  display: block;
  line-height: 1;
}
.category_wrap nav li .hash {
  color: #19B9B9;
}
.category_wrap nav ul.parent {
  justify-content: space-between;
}
.category_wrap nav ul.parent li {
  margin-right: 0;
  border: 1px solid #000000;
  width: 360px;
}

.current_area {
  text-align: center;
  font-weight: normal;
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 65px;
}
.current_area .hash {
  color: #19B9B9;
  padding-right: 0.5rem;
}

.section_top_area .link_buttons {
  margin-bottom: 42px;
}
.section_top_area .link_buttons ul {
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
}
.section_top_area .link_buttons li {
  list-style: none;
  width: auto;
  margin-right: 31px;
}
.section_top_area .link_buttons li a {
  text-align: center;
  display: block;
  text-decoration: none;
  color: #ffffff;
  background: #283CB4;
  height: 48px;
  line-height: 48px;
  width: 200px;
}
.section_top_area .map_wrap {
  background: #EBEBEB;
  padding: 15px 20px;
  display: block;
}
.section_top_area .map_wrap img {
  display: block;
  width: 850px;
  height: auto;
  margin: auto;
}
.section_top_area .category_wrap {
  display: none;
}

.site_footer {
  border-top: 4px solid #000000;
  margin-top: 150px;
}
.site_footer .wrap {
  display: flex;
  flex-wrap: nowrap;
}
.site_footer .logo {
  width: 390px;
  padding-left: 47px;
  padding-right: 47px;
  padding-bottom: 33px;
  padding-top: 86px;
}
.site_footer .logo a {
  display: block;
}
.site_footer .logo img {
  display: block;
  margin: auto;
  width: auto;
}
.site_footer .navs {
  background: #283CB4;
  flex: 1;
  padding-right: 41px;
  padding-left: 32px;
  padding-top: 19px;
}
.site_footer .navs .links {
  display: flex;
  flex-wrap: nowrap;
}
.site_footer .navs .links ul {
  margin: initial;
  margin-right: 50px;
  padding: initial;
  width: auto;
}
.site_footer .navs .links li {
  list-style: none;
  margin-bottom: 10px;
  display: block;
  width: auto;
}
.site_footer .navs .links a {
  color: #ffffff;
  text-decoration: none;
}
.site_footer .navs .links a:hover {
  text-decoration: underline;
}
.site_footer .copyright {
  color: #ffffff;
  text-align: right;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: 16px;
}

.top_slide {
  margin-bottom: 3rem;
}

.swiper {
  width: 100%;
}
.swiper .swiper-slide img {
  display: block;
  margin: auto;
}
.swiper .icon-wrap {
  position: absolute;
  top: 0;
  z-index: 10;
  height: auto;
  top: 50%;
  width: 50%;
  left: 50%;
  transform: translate(-50%);
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  top: 45%;
  width: 81px;
  height: 81px;
}
.swiper .swiper-button-next {
  right: -30px;
}
.swiper .swiper-button-prev {
  left: -30px;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  display: block;
  background-size: 100% auto;
  width: 60px;
  height: 60px;
}
.swiper .swiper-button-prev:after {
  background-image: url(../img/slide_prev.png);
}
.swiper .swiper-button-next:after {
  background-image: url(../img/slide_next.png);
}

.concept {
  width: 90%;
  margin: auto;
  text-align: center;
  margin-bottom: 90px;
}

.section_header {
  border-top: 3px solid #000000;
  padding-top: 30px;
  margin-bottom: 100px;
}
.section_header img {
  display: block;
}
.section_header.news {
  margin-bottom: 50px;
}

.section_title {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.section_title:after {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000000;
  top: 48%;
  z-index: -1;
}
.section_title span {
  display: inline-block;
  background-color: #283CB4;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  width: 380px;
  height: 60px;
  line-height: 60px;
  font-size: 28px;
}

.section_list .section_title {
  margin-bottom: 60px;
}
.section_list.search .section_title {
  margin-bottom: 40px;
}

.article_detail_header {
  margin-bottom: 60px;
  border-top: 3px solid #000000;
  padding-top: 30px;
  position: relative;
}
.article_detail_header .date {
  border-bottom: 1px solid #000000;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 24px;
}
.article_detail_header .areas {
  margin-bottom: 15px;
  font-size: 24px;
}
.article_detail_header .cats a {
  text-decoration: none;
  color: #000000;
}
.article_detail_header .title {
  margin-top: 38px;
  margin-bottom: 10px;
  font-size: 48px;
}
.article_detail_header .subtitle {
  margin-bottom: 10px;
  font-size: 32px;
}
.article_detail_header .link_pdf {
  position: absolute;
  right: 0;
  top: 10px;
  width: 50px;
}

.section_single p {
  margin-bottom: 2rem;
}

.detail_border {
  padding: 45px 0;
}

.article_body {
  line-height: 1.85;
  letter-spacing: 1px;
}
.article_body.point {
  border-bottom: 1px solid #000000;
  padding-bottom: 45px;
  margin-bottom: 45px;
}
.article_body.point:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.article_body p,
.article_footer p {
  margin-top: 0;
  word-break: break-word;
}

.point_title {
  font-weight: 600;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 32px;
}
.point_title span {
  padding-left: 1rem;
}

.news_detail_header {
  position: relative;
  margin-bottom: 0.25rem;
}
.news_detail_header .date {
  font-size: 21px;
  margin-bottom: 15px;
}
.news_detail_header .title_block {
  background-image: url(../img/title_shoutengai_bg.png);
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: left top;
  padding: 10px 20px;
}
.news_detail_header .title_block .title {
  margin-bottom: 10px;
  font-size: 32px;
  max-width: 70%;
}
.news_detail_header .title_block .target {
  font-size: 18px;
  max-width: 70%;
}
.news_detail_header .face {
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 15px;
  width: 320px;
  height: 320px;
}
.news_detail_header .face img {
  display: block;
  margin: auto;
}

.sns_block {
  text-align: center;
}
.sns_block p {
  margin: 0;
  margin-bottom: 1rem;
  font-size: 26px;
}
.sns_block .icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns_block .icons a {
  display: block;
  padding: 5px;
  width: 80px;
}

.category_accordion {
  background-color: #EBEBEB;
}
.category_accordion .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}
.category_accordion .header .title {
  font-size: 22px;
  font-weight: 600;
}
.category_accordion .header .arr {
  cursor: pointer;
}
.category_accordion .header .arr.open {
  transform: rotate(180deg);
}
.category_accordion .body {
  display: none;
}
.category_accordion .category_wrap {
  margin-bottom: 0;
  background-color: #EBEBEB;
}

.category_accordion + .article_list,
.category_header + .article_list {
  margin-top: 35px;
}

.article_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.article_list .article {
  margin-bottom: 50px;
  border-bottom: 3px solid #000000;
  font-size: 14px;
  width: 340px;
}
.article_list .article.dummy {
  border-color: transparent;
}
.article_list .article a {
  text-decoration: none;
  color: #231815;
}
.article_list .article .img {
  margin-bottom: 8px;
}
.article_list .article .img img {
  margin: auto;
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.article_list .article .img.dummy {
  width: 100%;
  height: 220px;
  border: 1px solid #F0F0F0;
}
.article_list .article .article_title {
  font-weight: 600;
  line-height: 1.25;
  font-size: 20px;
  height: 60px;
  margin-bottom: 19px;
}
.article_list .article .target {
  margin-bottom: 13px;
}
.article_list .article .body {
  border-bottom: 1px solid #000000;
}
.article_list .article .cats {
  text-align: right;
  border-bottom: 1px solid #000000;
  padding: 9px 1px;
}
.article_list .article .cats .hash {
  margin-right: 1px;
}
.article_list .article .dates {
  text-align: right;
  font-size: 15px;
  padding: 9px 1px;
}
.article_list .article:not(:first-child) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  display: block;
}
.article_list .article:not(:first-child) .img img {
  width: 135px;
  height: 135px;
  object-fit: cover;
}
.article_list .article:not(:first-child) .target,
.article_list .article:not(:first-child) .cats {
  display: none;
}
.article_list .article:not(:first-child) .body {
  border-bottom: none;
}
.article_list .article:not(:first-child) .dates {
  text-align: left;
}
.article_list .article:not(:first-child) .img img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}
.article_list .article:not(:first-child) .target,
.article_list .article:not(:first-child) .cats {
  display: block;
}
.article_list .article:not(:first-child) .body {
  border-bottom: 1px solid #000000;
}
.article_list .article:not(:first-child) .dates {
  text-align: right;
}
.article_list .news .body {
  border-bottom: 1px solid #000000;
}
.article_list .news .body_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}
.article_list .news .body_header .dates {
  text-align: left;
  padding: 0;
}
.article_list .news .body_header .label {
  background-color: #f00;
  color: #ffffff;
  font-size: 14px;
}
.article_list .news .target {
  font-weight: normal;
}/*# sourceMappingURL=print.css.map */