@charset "UTF-8";
/* Scss Document */
#wrapper {
  padding-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  #wrapper {
    border-top: solid 20px #F4F4F4;
  }
}

#container {
  padding: 20px 0;
}
@media only screen and (max-width: 1023.8px) {
  #container {
    padding: 30px 0 40px;
  }
}

@media print, screen and (min-width: 1024px) {
  #content {
    margin-bottom: 105px;
  }
}
/*お知らせ*/
.information_list {
  position: relative;
  margin-bottom: 70px;
}
@media print, screen and (min-width: 1024px) {
  .information_list {
    display: flex;
    align-items: baseline;
  }
}
.information_list .title {
  background-color: #E6E6E6;
  color: #131313;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 8px;
  line-height: 1.2;
}
@media only screen and (max-width: 1023.8px) {
  .information_list .title {
    display: inline-block;
    font-size: calc(1.4rem + 4 * (100vw - 375px)/649);
    padding: 5px 8px;
    margin-bottom: 10px;
  }
  .information_list .title span {
    padding-right: 5px;
  }
  .information_list .title br {
    display: none;
  }
}
.information_list .info_list {
  list-style: none;
  color: #325494;
  font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
  .information_list .info_list {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 1023.8px) {
  .information_list .info_list {
    font-size: calc(1.2rem + 4 * (100vw - 375px)/649);
  }
  .information_list .info_list li {
    display: flex;
  }
  .information_list .info_list li + li {
    margin-top: 5px;
  }
  .information_list .info_list span {
    display: block;
  }
}
.information_list .info_list .content {
  padding-left: 15px;
}
.information_list .info_list a {
  text-decoration: underline;
}
@media print, screen and (min-width: 1024.2px) {
  .information_list .info_list a:hover {
    text-decoration: none;
  }
}
.information_list .more_btn {
  cursor: pointer;
  font-size: 1.7rem;
  color: #898987;
  border: solid 1px #898987;
  border-radius: 20px;
  text-align: center;
  position: absolute;
  bottom: -45px;
  padding: 8px 10px 12px;
  width: 130px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1em;
  left: 0;
  right: 0;
  margin-inline: auto;
  transition: 0.4s;
}
@media only screen and (max-width: 1023.8px) {
  .information_list .more_btn {
    font-size: calc(1.4rem + 3 * (100vw - 375px)/649);
    width: 120px;
    padding: 6px 10px 10px;
  }
}
@media print, screen and (min-width: 1024.2px) {
  .information_list .more_btn:hover {
    background-color: #EDEDED;
  }
}
.information_list .more_btn .arrow {
  padding-right: 10px;
}
.information_list .more_btn .arrow::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 3px solid #898987;
  border-right: 3px solid #898987;
  transform: translateY(-2px) rotate(135deg);
  box-sizing: border-box;
  margin-left: 5px;
}

/*コンテンツ*/
.toppage_section + .toppage_section {
  margin-top: 75px;
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section + .toppage_section {
    margin-top: 40px;
  }
}
.toppage_section h2, .toppage_section h3 {
  font-weight: 700;
}
.toppage_section h2 {
  font-size: 2.7rem;
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section h2 {
    font-size: calc(1.6rem + 11 * (100vw - 375px)/649);
  }
}
.toppage_section h3 {
  color: #91D6FF;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section h3 {
    font-size: calc(1.1rem + 7 * (100vw - 375px)/649);
  }
}
.toppage_section .content-header {
  display: flex;
}
.toppage_section .section_ti {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.toppage_section .section_ti h2 {
  width: max-content;
  width: -webkit-max-content;
  margin-right: 30px;
}
.toppage_section .section_ti .copy {
  color: #646464;
  font-size: 400;
  font-size: 1.7rem;
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section .section_ti .copy {
    font-size: calc(1.2rem + 5 * (100vw - 375px)/649);
  }
}
/*新着記事*/
@media print, screen and (min-width: 1024.2px) {
  .toppage_section .new_articles_list {
    display: grid;
    grid-template-columns: 383px 1fr 425px;
  }
  .toppage_section .new_articles_list a {
    transition: 0.4s;
  }
  .toppage_section .new_articles_list a:hover {
    opacity: 0.6;
  }
  .toppage_section .new_articles_list .post .thumb a:hover img {
    transform: scale(1.1);
  }
}
@media only screen and (max-width: 1400px) {
  .toppage_section .new_articles_list {
    grid-template-columns: 46% 4% 50%;
  }
}
.toppage_section .new_articles_list .post .thumb {
  width: 100%;
}
.toppage_section .new_articles_list .post .thumb a {
  display: block;
  background-color: #e6e6e6;
  position: relative;
  overflow: hidden;
}
.toppage_section .new_articles_list .post .thumb img {
  object-fit: cover;
  height: 100%;
  margin-inline: auto;
}
@media print, screen and (min-width: 1024.2px) {
  .toppage_section .new_articles_list .post .thumb img {
    transition: transform .6s ease;
  }
}
.toppage_section .new_articles_list .post .post_detail {
  display: flex;
  flex-wrap: wrap;
}
.toppage_section .new_articles_list .post .post_detail .title {
  font-weight: 700;
  width: 100%;
  margin-bottom: 3px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section .new_articles_list .post .post_detail .title {
    font-size: calc(1.4rem + 2 * (100vw - 375px)/649);
  }
}
.toppage_section .new_articles_list .post .post_detail .date {
  font-size: 1.3rem;
  color: #999;
  margin-right: 15px;
}
.toppage_section .new_articles_list .post .post_detail .tag {
  font-size: 1.3rem;
  list-style: none;
  display: flex;
  color: #999;
  flex-wrap: wrap;
}
.toppage_section .new_articles_list .post .post_detail .tag li {
  margin-right: 10px;
}
.toppage_section .new_articles_list .post .post_detail .tag li:last-child {
  margin-right: 0;
}
.toppage_section .new_articles_list .post:nth-of-type(1) {
  grid-row: 1 / 4;
  grid-column: 1 / 2;
}
.toppage_section .new_articles_list .post:nth-of-type(1) .title {
  -webkit-line-clamp: 2;
}
.toppage_section .new_articles_list .post:nth-of-type(1) .thumb {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1024px) {
  .toppage_section .new_articles_list .post:nth-of-type(1) .thumb {
    max-width: 400px;
    margin-inline: auto;
  }
}
.toppage_section .new_articles_list .post:nth-of-type(1) .thumb a figure {
  width: 100%;
  aspect-ratio: 4 / 3;
}
@media only screen and (max-width: 1024px) {
  .toppage_section .new_articles_list .post:nth-of-type(1) {
    border-bottom: solid 1px #E3E5E8;
    padding-bottom: 12px;
    margin-bottom: 10px;
  }
}
.toppage_section .new_articles_list .post:nth-of-type(2) {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}
.toppage_section .new_articles_list .post:nth-of-type(3) {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}
.toppage_section .new_articles_list .post:nth-of-type(4) {
  grid-row: 3 / 4;
  grid-column: 3 / 4;
}
.toppage_section .new_articles_list .post:nth-of-type(2), .toppage_section .new_articles_list .post:nth-of-type(3), .toppage_section .new_articles_list .post:nth-of-type(4) {
  display: flex;
  align-self: start;
  border-bottom: solid 1px #E3E5E8;
  padding-bottom: 12px;
  margin-bottom: 10px;
}
.toppage_section .new_articles_list .post:nth-of-type(2) .thumb, .toppage_section .new_articles_list .post:nth-of-type(3) .thumb, .toppage_section .new_articles_list .post:nth-of-type(4) .thumb {
  width: 114px;
  order: 2;
}
.toppage_section .new_articles_list .post:nth-of-type(2) .thumb a figure, .toppage_section .new_articles_list .post:nth-of-type(3) .thumb a figure, .toppage_section .new_articles_list .post:nth-of-type(4) .thumb a figure {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.toppage_section .new_articles_list .post:nth-of-type(2) .post_detail, .toppage_section .new_articles_list .post:nth-of-type(3) .post_detail, .toppage_section .new_articles_list .post:nth-of-type(4) .post_detail {
  flex: 1;
  order: 1;
  flex-wrap: wrap;
  margin-right: 20px;
}
.toppage_section .post_more_link {
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .toppage_section .post_more_link {
    margin-bottom: 30px;
  }
}
.toppage_section .post_more_link a {
  display: flex;
  align-items: center;
  color: #898987;
  font-size: 1.7rem;
  font-weight: 500;
  transition: all .3s;
}
@media only screen and (max-width: 768px) {
  .toppage_section .post_more_link a {
    font-size: 1.5rem;
  }
}
.toppage_section .post_more_link a::after {
  content: "";
  display: block;
  margin-left: 10px;
  width: 8px;
  height: 13px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 18'%3E%3Cpath fill='%23898987' d='M9.5,10.2l-7.1,7.6c-0.3,0.3-0.8,0.3-1.1,0c0,0,0,0,0,0l-1.1-1.1c-0.3-0.3-0.3-0.8,0-1.1	l5.4-5.9c0.3-0.3,0.3-0.8,0-1.1L0.2,2.5c-0.3-0.3-0.3-0.8,0-1.1l1.1-1.1c0.3-0.3,0.8-0.3,1.1,0c0,0,0,0,0,0l7.1,7.6	C10.2,8.5,10.2,9.5,9.5,10.2z'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
  background-size: contain;
}
@media print, screen and (min-width: 1024.2px) {
  .toppage_section .post_more_link a:hover {
    opacity: 0.6;
  }
}
/*企業リリース*/
.toppage_section .company_post_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 1200.2px) {
  .toppage_section .company_post_list::before {
    content: "";
    display: block;
    width: calc((100% - 24px) / 4);
    order: 1;
  }
  .toppage_section .company_post_list::after {
    content: "";
    display: block;
    width: calc((100% - 24px) / 4);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .toppage_section .company_post_list::after {
    content: "";
    display: block;
    width: 32%;
  }
}
.toppage_section .company_post_list .post {
  width: calc((100% - 24px) / 4);
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .toppage_section .company_post_list .post {
    width: 32%;
  }
  .toppage_section .company_post_list .post:nth-of-type(n+4) {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 1200.2px) {
  .toppage_section .company_post_list .post:nth-of-type(n+5) {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section .company_post_list .post {
    width: 48%;
    max-width: 275px;
  }
  .toppage_section .company_post_list .post:nth-of-type(n+3) {
    margin-top: 10px;
  }
}
.toppage_section .company_post_list .post a {
  display: block;
  border: solid 1px #D2D2D2;
  border-radius: 3px;
  height: 100%;
  transition: 0.4s;
}
@media print, screen and (min-width: 1024.2px) {
  .toppage_section .company_post_list .post a:hover {
    opacity: 0.6;
  }
  .toppage_section .company_post_list .post a:hover .thumb figure > img {
    transform: scale(1.1);
  }
}
.toppage_section .company_post_list .post a .thumb {
  width: 100%;
  background-color: #e6e6e6;
  position: relative;
  overflow: hidden;
}
.toppage_section .company_post_list .post a .thumb figure {
  width: 100%;
  aspect-ratio: 4 / 3;
}
.toppage_section .company_post_list .post a .thumb figure > img {
  object-fit: cover;
  height: 100%;
  margin-inline: auto;
}
@media print, screen and (min-width: 1024.2px) {
  .toppage_section .company_post_list .post a .thumb figure > img {
    transition: transform .6s ease;
  }
}
.toppage_section .company_post_list .post a .pr {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  padding: 2px 5px 6px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 0 0 12px;
  background-color: #0D0D0D;
}
.toppage_section .company_post_list .post a .pickup {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
}
.toppage_section .company_post_list .post .post_detail {
  padding: 10px 15px 15px;
}
.toppage_section .company_post_list .post .post_detail .title {
  font-weight: 700;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section .company_post_list .post .post_detail .title {
    font-size: calc(1.2rem + 4 * (100vw - 375px)/649);
  }
}
.toppage_section .company_post_list .post .post_detail .date, .toppage_section .company_post_list .post .post_detail .company_name {
  font-size: 1.3rem;
  color: #999;
}
@media only screen and (max-width: 1023.8px) {
  .toppage_section .company_post_list .post .post_detail .date, .toppage_section .company_post_list .post .post_detail .company_name {
    font-size: calc(1.1rem + 2 * (100vw - 375px)/649);
  }
}
.toppage_section .company_post_list .post .post_detail .company_name {
  margin-bottom: 12px;
}

@media print, screen and (min-width: 768px) {
  .category_banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.category_banner li {
  list-style: none;
  width: 33%;
}
@media print, screen and (min-width: 768px) {
  .category_banner li {
    max-width: 275px;
  }
  .category_banner li:nth-of-type(n+4) {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 1024.2px) {
  .category_banner li a:hover img {
    opacity: 0.6;
  }
  .category_banner li img {
    transition: 0.4s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023.8px) {
  .category_banner li {
    width: 48%;
  }
  .category_banner li:nth-of-type(n+3) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767.8px) {
  .category_banner li {
    width: 100%;
  }
  .category_banner li + li {
    margin-top: 10px !important;
  }
}

#contact {
  padding: 80px 20px;
  font-size: 1.7rem;
  color: #646464;
  font-weight: 500;
  background-color: #F4F4F4;
}
@media print, screen and (min-width: 1024px) {
  #contact {
    text-align: center;
  }
}
@media only screen and (max-width: 1023.8px) {
  #contact {
    padding: 40px 10%;
    font-size: calc(1.3rem + 3 * (100vw - 375px)/649);
  }
}
#contact h2 {
  font-weight: 700;
  font-size: 2.7rem;
  color: #08131A;
}
@media only screen and (max-width: 1023.8px) {
  #contact h2 {
    font-size: calc(2.0rem + 7 * (100vw - 375px)/649);
  }
}

/*メインスライダー*/
#swiper-container {
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #swiper-container {
    width: 95%;
  }
}

#main_slider {
  max-width: 1230px;
}
@media only screen and (max-width: 1023.8px) {
  #main_slider {
    width: 95%;
  }
}
#main_slider .swiper-slide {
  margin: 0;
  width: 650px;
}
@media only screen and (max-width: 767.8px) {
  #main_slider .swiper-slide {
    width: 100%;
  }
}
#main_slider .swiper-slide a {
  transition: 0.4s;
  text-decoration: none;
  display: block;
}
@media print, screen and (min-width: 1024.2px) {
  #main_slider .swiper-slide a:hover {
    opacity: 0.6;
  }
}
#main_slider .caption_slider a {
  position: relative;
}
#main_slider .caption_slider .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
}
@media only screen and (max-width: 1023.8px) {
  #main_slider .caption_slider .caption {
    font-size: 1.4rem;
  }
}

/* Arrows */
.swiper-prev,
.swiper-next {
  position: absolute;
  z-index: 2;
  display: block;
  height: 50px;
  width: 50px;
  border: solid 1px #898987;
  border-radius: 25px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.6);
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  outline: none;
  transition: 0.4s;
}
@media only screen and (max-width: 767.8px) {
  .swiper-prev,
  .swiper-next {
    height: 28px;
    width: 28px;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media print, screen and (min-width: 1024.2px) {
  .swiper-prev:hover,
  .swiper-next:hover {
    outline: none;
    background: rgba(195, 195, 195, 0.6);
    color: transparent;
  }
  .swiper-prev:hover:before,
  .swiper-next:hover:before {
    opacity: 0.5;
  }
}
.swiper-prev:before,
.swiper-next:before {
  content: "";
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 17'%3E%3Cpath fill='%23898987' d='M15.52,6.9H4.94l4.32-4.3c.58-.58.6-1.54.03-2.14-.57-.6-1.51-.61-2.09-.03L.45,7.16c-.58.58-.6,1.53-.04,2.13l6.75,7.25c.29.31.68.47,1.07.47.37,0,.73-.14,1.02-.42.59-.58.61-1.53.05-2.14l-4.21-4.52h10.43c.82,0,1.48-.68,1.48-1.51s-.66-1.51-1.48-1.51Z'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
  background-size: cover;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 767.8px) {
  .swiper-prev:before,
  .swiper-next:before {
    width: 10px;
    height: 10px;
  }
}

.swiper-prev {
  left: 5px;
}

.swiper-next {
  right: 5px;
}
.swiper-next:before {
  transform: rotate(180deg);
}

@media print, screen and (min-width: 1340px) {
  .swiper-prev {
    left: -45px;
  }

  .swiper-next {
    right: -45px;
  }
}
@media only screen and (max-width: 1023.8px) {
  .swiper-prev {
    left: 0;
  }

  .swiper-next {
    right: 0;
  }
}
/* Dots */
.swiper-pagination {
  position: static;
  margin-top: 22px;
}
@media only screen and (max-width: 1023.8px) {
  .swiper-pagination {
    margin-top: 15px;
  }
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #BFBFBF;
  opacity: 1;
}
@media only screen and (max-width: 1023.8px) {
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}

.swiper-pagination-bullet-active {
  background: #00A0FF;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}
