@charset "utf-8";
/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", Arial, Helvetica, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333;
  max-width: 2560px;
  margin: 0 auto;
  background-color: #fff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}
main {
  display: block;
}

/* == utility ============================================== */
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.u-sp {
  display: none !important;
}
.u-arial {
  font-family: Arial, Helvetica, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-style: italic;
  font-weight: 700;
}
.u-mincyo {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "MS PMincho", serif;
}
.u-no-post {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

/* == parts ============================================== */
/*** page loading *********************************/
#loading {
  width: 100%;
  height: 100vh;
  background: #215879;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transition: all 0.3s;
}
#loading .item {
  width: 110px;
  height: 110px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*** mouse pointer *********************************/
#cursor {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  cursor: none;
  pointer-events: none;
  background: url(../img/icon_drag.svg) no-repeat center;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
#cursor.is-active {
  opacity: 1;
  visibility: visible;
}
.js-scrollable * {
  cursor: none;
}

/*** inner *********************************/
.l-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/*** headline *********************************/
.c-heading {
  text-align: center;
}
.c-heading .en {
  display: block;
  font-size: 8rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: #0983cd;
  margin: 0 0 4px;
}
.c-heading .en:first-letter {
  /* color: #a4c6db; */
  color: #215879;
}
.c-heading .ja {
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  position: relative;
  background: linear-gradient(transparent 80%, #fcc224 80%);
}
/* --- 左揃え --- */
.c-heading--left {
  text-align: left;
}
/* --- カラーバリエーション --- */
.c-heading--white .en,
.c-heading--white .ja {
  color: #fff;
}
.c-heading.c-heading--white .en:first-letter {
  color: #a4c6db;
}
.c-heading--navy .en,
.c-heading--navy .ja {
  color: #215879;
}
/* --- */
.c-title1 {
  text-align: center;
}
.c-title1 .en {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 4px;
}
.c-title1 .ja {
  display: block;
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1.4;
}
.c-title1 .ja:first-letter {
  color: #0983cd;
}
.c-title2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  color: #215879;
}
.c-title2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #215879;
  margin: 14px auto 24px;
}
.c-title3 {
  color: #215879;
  font-weight: 700;
  background: #a4c6db;
  padding: 6px 16px;
}

/*** button *********************************/
.c-btn a {
  display: inline-block;
  min-width: 240px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: center;
  color: #333;
  padding: 18px 60px;
  position: relative;
}
.c-btn a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
/* ------ */
.c-btn .line {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-btn .line--1::before,
.c-btn .line--1::after {
  content: "";
  position: absolute;
  background: #333;
  width: 0;
  height: 2px;
  transition: all 0.18s linear;
}
.c-btn .line--1::before {
  right: 0;
  bottom: 0;
}
.c-btn .line--1::after {
  left: 0;
  top: 0;
}
.c-btn .line--2::before,
.c-btn .line--2::after {
  content: "";
  position: absolute;
  background: #333;
  width: 2px;
  height: 0;
  transition: all 0.14s linear;
}
.c-btn .line--2::before {
  left: 0;
  bottom: 0;
}
.c-btn .line--2::after {
  right: 0;
  top: 0;
}
/* ------ */
.c-btn .arrow {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 40px;
  overflow: hidden;
  transform: translateY(-50%);
}
.c-btn .arrow::before,
.c-btn .arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border: 1px solid #333;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  transition: left 0.3s;
}
.c-btn .arrow::before {
  top: 2px;
  left: 0;
}
.c-btn .arrow::after {
  top: 2px;
  left: -10px;
}
/* ------ */
.c-btn .txt-wrap {
  width: 100%;
  display: inline-block;
  display: block;
  position: relative;
  line-height: 1;
  overflow: hidden;
}
.c-btn .txt-wrap .txt-before {
  display: block;
}
.c-btn .txt-wrap .txt-after {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-btn .txt-wrap .txt span {
  display: inline-block;
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.c-btn .txt-wrap .txt-before span {
  transform: translate(0, 120%);
}
/* --- 中央揃え --- */
.c-btn--center {
  text-align: center;
}
/* --- カラーバリエーション --- */
.c-btn--2 a {
  color: #fff;
}
.c-btn--2 a::before {
  border-color: #fff;
}
.c-btn--2 .line--1::before,
.c-btn--2 .line--1::after,
.c-btn--2 .line--2::before,
.c-btn--2 .line--2::after {
  background: #0983cd;
}
.c-btn--2 .arrow::before {
  border-color: #fff;
}
.c-btn--2 .arrow::after {
  border-color: #0983cd;
}
.c-btn--2 .txt-wrap .txt-before {
  color: #0983cd;
}
/* --- */
.c-btn--3 a {
  color: #fff;
}
.c-btn--3 a::before {
  border-color: #fff;
}
.c-btn--3 .line--1::before,
.c-btn--3 .line--1::after,
.c-btn--3 .line--2::before,
.c-btn--3 .line--2::after {
  background: #a4c6db;
}
.c-btn--3 .arrow::before {
  border-color: #fff;
}
.c-btn--3 .arrow::after {
  border-color: #a4c6db;
}
.c-btn--3 .txt-wrap .txt-before {
  color: #a4c6db;
}
/* --- hover --- */
.c-btn a:hover .arrow::before {
  left: 10px;
}
.c-btn a:hover .arrow::after {
  left: 0px;
}
.c-btn a:hover .line--1::before,
.c-btn a:hover .line--1::after {
  width: 100%;
}
.c-btn a:hover .line--1::after {
  transition-delay: 0s;
}
.c-btn a:hover .line--1::before {
  transition-delay: 0.28s;
}
.c-btn a:hover .line--2::before,
.c-btn a:hover .line--2::after {
  height: 100%;
}
.c-btn a:hover .line--2::before {
  transition-delay: 0.5s;
}
.c-btn a:hover .line--2::after {
  transition-delay: 0.2s;
}
.c-btn a:hover .txt-wrap .txt-before span {
  transform: translate(0, 0);
}
.c-btn a:hover .txt-wrap .txt-after span {
  transform: translate(0, -120%);
}

/*** breadcrumb *********************************/
.c-breadcrumb {
  background: #f4f4f4;
  position: relative;
  z-index: 1;
}
.c-breadcrumb::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(164, 198, 219, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-breadcrumb .list_bread {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0;
  padding: 2px 0 3px 0;
}
.c-breadcrumb .list_bread li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.c-breadcrumb .list_bread li + li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  border: 1px solid #333;
  border-width: 1px 1px 0 0;
  transform: translateY(-2px) rotate(45deg);
  margin: 0 14px;
}
.c-breadcrumb .list_bread li a {
  color: #215879;
  text-decoration: underline;
}
/* --- hover --- */
.c-breadcrumb .list_bread li a:hover {
  text-decoration: none;
}

/*** under title *********************************/
.c-under-title {
  padding: 80px 0 0;
}
.c-under-title .c-heading .ja {
  color: #215879;
}
.c-under-title .lead_box {
  letter-spacing: 0.04em;
  text-align: center;
  margin: 40px 0 0;
}
.c-under-title .img_box {
  width: 100%;
  height: 340px;
  margin: 60px 0 0;
  background: #edf4f8;
  position: relative;
  overflow: hidden;
}
.c-under-title .img_box img {
  min-height: 340px;
}
.c-under-title.interview-title .img_box {
  height: 604px;
}
.c-under-title.interview-title .img_box img {
  min-height: 604px;
}
.c-under-title .img_box img {
  width: auto;
  height: auto;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .c-under-title .img_box img {
    position: static;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: none;
  }
}
.c-under-title .slick-track {
  /* height: 340px; */
  height: 604px;
}
/*** under lead2 *********************************/
.c-under-lead {
  background: #fff;
}
.c-under-lead .lead_box {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.c-under-lead .text_box {
  width: 480px;
  min-height: 450px;
  background: #fff;
  padding: 80px 24px 80px 0px;
  position: relative;
  z-index: 1;
}
.c-under-lead .text_box .c-title1 {
  text-align: left;
  margin: 0 0 40px;
}
.c-under-lead .text_box .c-title1 .ja {
  line-height: 1.3;
}
.c-under-lead .img_box {
  width: calc(95% - 480px);
  max-width: 704px;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
.c-under-lead .img_box img {
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: none;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@supports (object-fit: cover) {
  .c-under-lead .img_box img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 1140px) {
  .c-under-lead .text_box {
    width: 100%;
    min-height: auto;
    text-align: center;
    padding: 80px 0 60px;
  }
  .c-under-lead .text_box .c-title1 {
    text-align: center;
  }
  .c-under-lead .img_box {
    width: 90%;
    max-width: 704px;
    height: auto;
    margin: 0 auto;
    position: relative;
  }
  .c-under-lead .img_box img {
    position: static;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}

/*** banner list *********************************/
.p-bnr-area {
  background: #edf4f8;
  padding: 75px 0 45px;
}
.p-bnr-area .l-inner {
  max-width: 900px;
}
.c-list-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-list-bnr li {
  width: 31.12%;
  margin: 0 3.2% 3.2% 0;
}
.c-list-bnr li:nth-of-type(3n) {
  margin-right: 0;
}
.c-list-bnr li a {
  display: block;
  width: 100%;
  padding-top: 36%;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}
.c-list-bnr li a img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
/* --- hover --- */
.c-list-bnr li a:hover {
  opacity: 0.6;
}

/*** contact area *********************************/
.p-contact-area {
  background: #0983cd;
  overflow: hidden;
}
.p-contact-area a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
/* .p-contact-area a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg_contact_pc.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
} */
.p-contact-area .c-heading .en {
  font-size: 6.4rem;
}
.p-contact-area .desc {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin: 36px 0 0;
}
.p-contact-area .arrow {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  margin: 20px auto 0;
  position: relative;
}
.p-contact-area .arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #215879;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  left: 21px;
  transform: rotate(45deg);
}
.p-contact-area .arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0px 0px 8px 5px #fff inset;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@keyframes ripples-anime {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
/* --- hover --- */
.p-contact-area a:hover::before {
  opacity: 0.8;
  transform: scale(1.1);
}
.p-contact-area a:hover .arrow::after {
  animation: ripples-anime 0.8s;
}

/*** sns share area *********************************/
.p-share-area {
  background: #edf4f8;
  padding: 80px 0;
  margin: 80px 0 40px;
}
.p-share-area .like_box {
  text-align: center;
}
.p-share-area .like_box .title {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #215879;
  margin: 0 0 10px;
}
.p-share-area .share_box .list_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
.p-share-area .share_box .list_share li {
  display: table;
  width: 300px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: #1877f2;
  margin: 16px;
  transition: opacity 0.3s;
}
.p-share-area .share_box .list_share li a {
  padding: 22px 10px;
  display: table-cell;
  vertical-align: middle;
}
.p-share-area .share_box .list_share li span {
  display: inline-block;
  padding-left: 40px;
  position: relative;
  text-align: left;
}
.p-share-area .share_box .list_share li span::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/icon_facebook.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-share-area .share_box .list_share li.twitter {
  background: #1da1f2;
}
.p-share-area .share_box .list_share li.twitter span::before {
  background-image: url(../img/icon_twitter.svg);
}
/* --- hover --- */
.p-share-area .share_box .list_share li:hover {
  opacity: 0.8;
}

/*** pickup card *********************************/
.c-pickup {
  width: 100%;
  max-width: 892px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
}
.c-pickup a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #215879;
  padding: 20px 118px 20px 20px;
  position: relative;
  transition: background-color 0.3s;
}
.c-pickup__thum {
  width: 38.47%;
}
.c-pickup__thum .thum_box {
  width: 100%;
  padding-top: 68.97%;
  position: relative;
  overflow: hidden;
}
.c-pickup__thum .thum_box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .c-pickup__thum .thum_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.c-pickup__text {
  width: 56.24%;
  padding: 20px 0;
  color: #fff;
}
.c-pickup__date {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3;
  margin: 0 20px 0 0;
}
.c-pickup__cat {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3;
  border: 1px solid #fff;
  border-width: 0 1px;
  padding: 0 18px;
}
.c-pickup__title {
  margin: 10px 0 0;
}
.c-pickup__arrow {
  display: block;
  width: 54px;
  height: 54px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 32px;
  z-index: 1;
  transform: translateY(-50%);
}
.c-pickup__arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 20px;
  left: 18px;
  transform: rotate(45deg);
}
/* --- hover --- */
.c-pickup a:hover {
  background: #3fa9cb;
}

/*** card *********************************/
.c-card {
  width: 570px;
}
.c-card a {
  display: block;
}
.c-card__thum {
  width: 100%;
  padding-top: 66.67%;
  position: relative;
  overflow: hidden;
}
.c-card__thum::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 34px 0 0;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-card__thum img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
@supports (object-fit: cover) {
  .c-card__thum img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.c-card__text {
  margin: 16px 0 0;
}
.c-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.33;
  color: #215879;
}
.c-card__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #333;
  margin: 16px auto 10px 0;
}
.c-card__excerpt {
  font-weight: 500;
}
.c-card-tag {
  margin: 40px 0 0;
  font-size: 0;
}
.c-card-tag li {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: #215879;
  border-radius: 10px;
  background: rgba(164, 198, 219, 0.5);
  padding: 2px 10px;
  margin: 0 10px 10px 0;
}
/* --- hover --- */
.c-card a:hover .c-card__thum img {
  transform: translate(-50%, -50%) scale(1.1);
}

/*** card list *********************************/
.c-list-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-list-card .c-card {
  margin-bottom: 80px;
}
.c-list-card .c-card {
  width: 31.2%;
  margin-right: 3.2%;
}
.c-list-card .c-card:nth-of-type(3n) {
  margin-right: 0;
}
.js-card-wrap .c-list-card .c-card:nth-of-type(4),
.js-card-wrap .c-list-card .c-card:nth-of-type(5) {
  width: 48.3%;
  margin-right: 3.4%;
}
.js-card-wrap .c-list-card .c-card:nth-of-type(5) {
  margin-right: 0;
}
.c-list-card--large .c-card {
  width: 48.3%;
  margin-right: 3.4%;
}
.c-list-card--large .c-card:nth-of-type(2n) {
  margin-right: 0;
}
.c-list-card--large .c-card:nth-of-type(3n) {
  margin-right: 3.4%;
}

/*** column card *********************************/
.c-column {
  width: 100%;
  max-width: 312px;
}
.c-column a {
  display: block;
}
.c-column__thum {
  width: 100%;
  padding-top: 60.9%;
  position: relative;
  overflow: hidden;
}
.c-column__thum img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
@supports (object-fit: cover) {
  .c-column__thum img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.c-column__text {
  margin: 16px 0 0;
}
.c-column__title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  color: #000;
  transition: color 0.3s;
}
.c-column__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #333;
  margin: 16px auto 8px 0;
}
.c-column__cat {
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #0983cd;
}
/* --- hover --- */
.c-column a:hover .c-column__thum img {
  transform: translate(-50%, -50%) scale(1.1);
}
.c-column a:hover .c-column__title {
  color: #0983cd;
}

/*** column list *********************************/
.c-list-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-list-column .c-column {
  width: 31.2%;
  max-width: 31.2%;
  margin: 0 3.2% 0 0;
}
.c-list-column .c-column:nth-of-type(2n) {
  margin-top: 40px;
}
.c-list-column .c-column:nth-of-type(3n) {
  margin-right: 0;
  margin-top: 80px;
}

/*** article card *********************************/
.c-article {
  width: 100%;
}
.c-article a {
  display: block;
  padding: 18px 170px 18px 32px;
  background: #fff;
  position: relative;
  transition: background-color 0.3s;
}
.c-article__date {
  display: inline-block;
  vertical-align: middle;
  color: #666;
  font-weight: 500;
  margin: 0 20px 0 0;
}
.c-article__cat {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  color: #fff;
  background: #0983cd;
  border-radius: 14px;
  padding: 0 16px;
}
.c-article__title {
  font-weight: 500;
  margin: 12px 0 0;
}
.c-article__arrow {
  display: block;
  width: 54px;
  height: 54px;
  background: #fff;
  border: 1px solid #0983cd;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 1;
  transform: translateY(-50%);
  transition: border-color 0.3s;
}
.c-article__arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #0983cd;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 20px;
  left: 18px;
  transform: rotate(45deg);
}
/* --- hover --- */
.c-article a:hover {
  background: #a4c6db;
}
.c-article a:hover .c-article__arrow {
  border-color: #a4c6db;
}

/*** article list *********************************/
.c-list-article .c-article {
  border-top: 1px solid #a4c6db;
}
.c-list-article .c-article:last-of-type {
  border-bottom: 1px solid #a4c6db;
}

/*** white card *********************************/
.c-whiteCard {
  width: 100%;
  max-width: 720px;
  border: 1px solid #ccc;
  background: #000;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-whiteCard::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.c-whiteCard a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 56px 60px 220px;
}
.c-whiteCard .title {
  color: #333;
  font-weight: 700;
}
.c-whiteCard .title .en {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.c-whiteCard .title .ja {
  display: block;
  font-size: 3.2rem;
  line-height: 1.5;
}
.c-whiteCard .title .ja:first-letter {
  color: #0983cd;
}
.c-whiteCard .title .blank,
.list_solution .c-title1 .blank {
  display: inline;
  padding-right: 30px;
  background: url(/assets/img/icons_blank.svg) no-repeat right 14px;
}
.c-whiteCard:hover .title .blank {
  display: inline;
  padding-right: 30px;
  background: url(/assets/img/icons_blank_white.svg) no-repeat right 14px;
}
.nav_list li a span.blank {
  display: inline;
  padding-right: 20px;
  background: url(/assets/img/icons_blank_white.svg) no-repeat right center;
  background-size: 12px;
}
.l-footer .nav_list li a span.blank {
  display: inline;
  padding-right: 20px;
  background: url(/assets/img/icons_blank_gray.svg) no-repeat right center;
  background-size: 12px;
}
.l-header.is-done .header_nav .nav_list li a span.blank {
  display: inline;
  padding-right: 28px;
  background: url(/assets/img/icons_blank_white.svg) no-repeat right center;
  background-size: 15px;
}
.c-whiteCard .text_box {
  color: #fff;
  margin-top: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
}
.c-whiteCard .arrow {
  display: block;
  width: 110px;
  height: 110px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
}
.c-whiteCard .arrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-width: 6px 6px 0 0;
  position: absolute;
  top: 42px;
  left: 38px;
  transform: rotate(45deg);
}
.c-whiteCard .bg_box {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
}
.c-whiteCard .bg_box img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .c-whiteCard .bg_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
/* --- hover --- */
.c-whiteCard:hover::after {
  opacity: 0;
}
.c-whiteCard:hover .title {
  color: #fff;
}
.c-whiteCard:hover .title .ja:first-letter {
  color: #fcc224;
}
.c-whiteCard:hover .text_box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*** white card list *********************************/
.c-list-whiteCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-list-whiteCard .c-whiteCard {
  width: 50%;
  max-width: none;
  min-height: 440px;
  border-width: 2px 1px 0;
}
.c-list-whiteCard .c-whiteCard:nth-of-type(-n + 2) {
  border-width: 0 1px 0;
}
@media screen and (max-width: 991px) {
  .c-list-whiteCard {
    display: block;
  }
  .c-list-whiteCard .c-whiteCard {
    width: 100%;
    min-height: 440px;
  }
  .c-list-whiteCard .c-whiteCard:nth-of-type(-n + 2) {
    border-width: 2px 1px 0;
  }
  .c-list-whiteCard .c-whiteCard:first-of-type {
    border-width: 0 1px 0;
  }
}
.p-list-solution.c-list-whiteCard .c-whiteCard {
  width: 33.33%;
  min-height: 634px;
}
.p-list-solution.c-list-whiteCard .c-whiteCard:nth-of-type(-n + 3) {
  border-width: 0 1px 0;
}
.p-list-solution.c-list-whiteCard .c-whiteCard:nth-of-type(4),
.p-list-solution.c-list-whiteCard .c-whiteCard:nth-of-type(5) {
  width: 50%;
  min-height: 440px;
  border-width: 2px 1px 0;
}
@media screen and (max-width: 991px) {
  .p-list-solution.c-list-whiteCard .c-whiteCard {
    width: 100%;
    min-height: 440px;
  }
  .p-list-solution.c-list-whiteCard .c-whiteCard:nth-of-type(-n + 3) {
    border-width: 2px 1px 0;
  }
  .p-list-solution.c-list-whiteCard .c-whiteCard:first-of-type {
    border-width: 0 1px 0;
  }
  .p-list-solution.c-list-whiteCard .c-whiteCard:nth-of-type(4),
  .p-list-solution.c-list-whiteCard .c-whiteCard:nth-of-type(5) {
    width: 100%;
  }
}

/*** selector widget *********************************/
.c-selector {
  width: 230px;
  height: 40px;
  position: relative;
  z-index: 10;
}
.c-selector .touch-select {
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #215879;
  background: #fff;
  border-bottom: 1px solid #a4c6db;
  cursor: pointer;
  padding: 10px 0px 10px 28px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.c-selector .touch-select::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  top: 16px;
  left: 0px;
  transition: transform 0.3s;
}
.c-selector .touch-select span {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s;
}
.c-selector .list_select {
  width: 100%;
  max-height: 260px;
  background: rgba(232, 244, 252, 0.95);
  padding: 0 0 16px;
  margin: 40px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  display: none;
}
.c-selector .list_select::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.c-selector .list_select::-webkit-scrollbar-track {
  background: transparent;
}
.c-selector .list_select::-webkit-scrollbar-thumb {
  background: #3fa9cb;
  border-radius: 3px;
}
.c-selector .list_select li {
  margin-top: 10px;
  font-weight: normal;
  font-size: 1.4rem;
  color: #215879;
}
.c-selector .list_select li a {
  display: block;
  padding: 0 16px;
  transition: opacity 0.3s;
}
/* --- hover --- */
.c-selector .touch-select:hover span {
  opacity: 0.6;
}
.c-selector .list_select li a:hover {
  opacity: 0.6;
}
/* --- active --- */
.c-selector .touch-select.is-open::before {
  transform: rotate(-180deg);
}

/*** pagenation *********************************/
.c-pagenation {
  padding: 80px 0 120px;
}
.c-pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}
.c-pagenation ul li {
  width: 32px;
  height: 32px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 28px;
  color: #a4c6db;
  text-align: center;
  margin: 0 8px;
  border: 1px solid #a4c6db;
  border-radius: 50%;
  position: relative;
}
.c-pagenation ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: color 0.3s;
}
/* --- prev / next --- */
.c-pagenation ul li.prev,
.c-pagenation ul li.next {
  border: 0;
}
.c-pagenation ul li.prev a::before,
.c-pagenation ul li.next a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #0983cd;
  border-width: 0 0 2px 2px;
  position: absolute;
  top: 12px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-pagenation ul li.prev a::before {
  left: 12px;
}
.c-pagenation ul li.next a::before {
  border-width: 2px 2px 0 0;
  left: 10px;
}
/* --- current --- */
.c-pagenation ul li.is-current {
  color: #fff;
  background: #0983cd;
  border-color: #0983cd;
}
/* --- hover --- */
.c-pagenation ul li a:hover {
  color: #0983cd;
}

/*** dl style *********************************/
.c-dl-style,
.c-dl-style dt,
.c-dl-style dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-dl-style dt,
.c-dl-style dd {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-dl-style {
  letter-spacing: 0.04em;
}
.c-dl-style dt {
  width: 226px;
  color: #fff;
  font-weight: 500;
  background: #215879;
  border: 1px solid #1187ce;
  border-width: 1px 1px 0;
  padding: 10px;
}
.c-dl-style dt span {
  width: 100%;
  text-align: center;
}
.c-dl-style dd {
  width: calc(100% - 226px);
  border: 1px solid #ccc;
  border-width: 1px 1px 0 0;
  padding: 10px 24px;
}
.c-dl-style dt:last-of-type {
  border-width: 1px;
}
.c-dl-style dd:last-of-type {
  border-width: 1px 1px 1px 0;
}

/*** list style *********************************/
/* --- 非順序リスト --- */
.c-list-style ul {
  padding: 0 20px;
}
.c-list-style ul ul,
.c-list-style ol ul {
  padding: 0;
  margin: 0;
}
.c-list-style ul > li {
  text-indent: -18px;
  margin: 10px 0 0 24px;
}
.c-list-style ul > li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #215879;
  margin: 0 10px 4px 0px;
}
/* --- 順序リスト --- */
.c-list-style ol {
  counter-reset: num;
  padding: 0 20px;
}
.c-list-style ol ol,
.c-list-style ul ol {
  padding: 0;
  margin: 0;
}
.c-list-style ol > li {
  text-indent: -22px;
  margin: 10px 0 0 22px;
}
.c-list-style ol > li::before {
  counter-increment: num;
  content: counter(num) ".";
  display: inline;
  width: auto;
  height: auto;
  font-weight: 700;
  color: #215879;
  border-radius: 0;
  background: transparent;
  vertical-align: baseline;
  margin: 0 4px 0 0;
}

/*** anchor list *********************************/
.c-list-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.3% 32px;
}
.c-list-anchor li {
  width: 14%;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
  border-bottom: 4px solid #0983cd;
  margin: 0 1.3%;
}
.c-list-anchor li.small {
  font-size: 1.2rem;
}
.c-list-anchor li a {
  display: table;
  width: 100%;
  padding: 0 0 40px;
  position: relative;
  transition: color 0.3s;
}
.c-list-anchor li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #215879;
  border-width: 0 3px 3px 0;
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%) rotate(45deg);
  transition: all 0.2s linear;
}
.c-list-anchor li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: #0983cd;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: height 0.3s;
}
.c-list-anchor li span {
  display: table-cell;
  vertical-align: middle;
  height: 50px;
}
@media screen and (max-width: 991px) {
  .c-list-anchor li {
    width: 30%;
    margin-bottom: 20px;
  }
}
/* --- hover --- */
.c-list-anchor li a:hover {
  color: #0983cd;
}
.c-list-anchor li a:hover::before {
  border-color: #fff;
  bottom: 12px;
}
.c-list-anchor li a:hover::after {
  height: 32px;
}

/* == header ============================================== */
.l-header {
  width: 100%;
  height: 120px;
  background: #f4f4f4;
}
#page_front .l-header {
  display: none;
  height: auto;
}
#page_front .l-header.is-done {
  display: block;
}
.l-header .fixed-box {
  width: 96%;
  max-width: 1100px;
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
}
.l-header .fixed-box.under-layer {
  z-index: 10;
}
#page_front .l-header .fixed-box {
  opacity: 0;
  display: none;
}
.l-header .logo {
  width: 78px;
  height: 54px;
  background: url(../img/logo.svg) no-repeat center;
  background-size: contain;
  pointer-events: all;
}
/* @supports (mix-blend-mode: exclusion) {
  .l-header .fixed-box.mix-blend {
    mix-blend-mode: exclusion;
  }
  .l-header .logo {
    background: url(../img/logo_w.svg) no-repeat center;
    background-size: contain;
  }
} */
.l-header .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 120%;
  white-space: nowrap;
  overflow: hidden;
}
.l-header .header_nav {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.l-header .header_nav .nav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 38px;
  right: 0;
}
.l-header .header_nav .nav_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header .header_nav .nav_box + .nav_box,
.l-header .header_nav .nav_set + .nav_set {
  margin: 0 0 0 28px;
}
.l-header .header_nav li {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .l-header .header_nav .nav_box + .nav_box,
  .l-header .header_nav .nav_set + .nav_set {
    margin: 0 0 0 16px;
  }
  .l-header .header_nav li {
    font-size: 1.4rem;
  }
}
.l-header .header_nav .nav_list li a {
  display: block;
  transition: color 0.3s, opacity 0.3s;
}
.l-header .header_nav .nav_list li a.u-pc {
  display: none;
}
.l-header .header_nav .nav_list li a.u-pc.is-active {
  display: block;
}
/* --- drop item --- */
.l-header .header_nav .nav_list .drop_item {
  position: relative;
}
.l-header .header_nav .nav_list .drop_trigger {
  display: block;
  position: relative;
  padding: 0 12px 0 0;
  transition: color 0.3s;
}
.l-header .header_nav .nav_list .drop_trigger::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3.5px 0 3.5px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
/* --- active --- */
.l-header .header_nav .nav_list .drop_trigger.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}
.l-header .header_nav .nav_list .drop_menu {
  display: none;
  width: 200px;
  position: absolute;
  top: 110%;
  left: 0;
  padding: 16px 10px;
  background: rgba(33, 88, 121, 0.9);
}
.l-header .header_nav .nav_list .drop_menu.solution {
  width: 200px;
}
.l-header .header_nav .nav_list .drop_menu.about {
  width: 170px;
}
.l-header .header_nav .nav_list .drop_menu.recruit {
  width: 120px;
}
.l-header .header_nav .nav_list .drop_menu li {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.l-header .header_nav .nav_list .drop_menu li + li {
  margin: 10px 0 0;
}
.l-header .header_nav .nav_list .drop_menu li a {
  display: block;
  position: relative;
}
/* --- hover --- */
.l-header .header_nav .nav_list li a:hover,
.l-header .header_nav .nav_list .drop_trigger:hover,
.l-header .header_nav .nav_list .drop_trigger.is-active {
  color: #0983cd;
}
.l-header .header_nav .nav_list .drop_menu li a:hover {
  color: #fff;
  opacity: 0.6;
}
.l-header.is-done {
  background: transparent;
}
.l-header.is-done .header_nav {
  width: 100%;
  max-width: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  transition: opacity 0.6s, visibility 0.4s;
}
.l-header.is-done .header_nav.no-trans {
  transition: none;
}
.l-header.is-done .header_nav .nav_inner {
  display: block;
  width: 90%;
  max-width: 910px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header.is-done .header_nav .nav_box {
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l-header.is-done .header_nav .nav_box + .nav_box {
  margin: 32px 0 0;
}
.l-header.is-done .header_nav .nav_set {
  margin: 0;
  width: calc(100% / 3);
}
.l-header.is-done .header_nav .nav_set:nth-child(2) {
  padding: 0 30px 0 70px;
}
.l-header.is-done .header_nav .nav_set:nth-child(3) {
  padding: 0 0 0 50px;
}
.l-header.is-done .header_nav .nav_list li a {
  display: block;
  font-family: Arial, Helvetica, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-style: italic;
  line-height: 1;
  color: #fff;
  position: relative;
  padding: 0 10px 0 0;
  transition: opacity 0.3s;
}
.l-header.is-done .header_nav .nav_list li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.l-header.is-done .header_nav .nav_list li a span {
  display: inline-block;
}
.l-header.is-done .header_nav .nav_list li a span:first-letter {
  color: #fcc224;
}
.l-header.is-done .header_nav .nav_list .drop_menu {
  display: block !important;
  width: 100%;
  position: static;
  background: transparent;
  margin: 24px 0 0;
  padding: 0;
}
.l-header.is-done .header_nav .nav_list .drop_trigger.is-hidden {
  display: none;
}
.l-header.is-done .header_nav .nav_list .drop_list li + li {
  margin: 10px 0 0;
}
.l-header.is-done .header_nav .nav_list .drop_list li a {
  font-family: "Noto Sans JP", Arial, Helvetica, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.75;
}
.l-header.is-done .header_nav .nav_list .drop_list li a span:first-letter {
  color: #fff;
}
/* --- hover --- */
.l-header.is-done .header_nav .nav_list li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .l-header.is-done .header_nav .nav_list li a {
    font-size: 3rem;
  }
  .l-header.is-done .header_nav .nav_list .drop_list li a {
    font-size: 1.4rem;
  }
}
.l-header .circle_bg {
  display: block;
  width: 48px;
  height: 48px;
  background: #215879;
  opacity: 0.9;
  border-radius: 50%;
  transform: scale(1);
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, opacity 0.3s;
  opacity: 0;
}
.l-header.is-done .circle_bg {
  opacity: 1;
}
.c-hamburger {
  width: 48px;
  height: 48px;
  outline: none;
  appearance: none;
  padding: 0;
  border: 1px solid #a4c6db;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  overflow: visible;
  pointer-events: all;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.l-header.is-done .c-hamburger {
  opacity: 1;
  visibility: visible;
}
.c-hamburger .hamburger__cube {
  width: 5px;
  height: 5px;
  background: #333;
  position: absolute;
  transition: top 0.4s;
}
.c-hamburger .hamburger__cube--1 {
  top: 16px;
  left: 12px;
}
.c-hamburger .hamburger__cube--2 {
  top: 16px;
  left: 20px;
}
.c-hamburger .hamburger__cube--3 {
  top: 16px;
  left: 28px;
}
.c-hamburger .hamburger__cube--4 {
  top: 25px;
  left: 12px;
}
.c-hamburger .hamburger__cube--5 {
  top: 25px;
  left: 20px;
}
.c-hamburger .hamburger__cube--6 {
  top: 25px;
  left: 28px;
}
.c-hamburger .hamburger__text {
  width: 46px;
  height: 18px;
  position: absolute;
  top: 16px;
  left: -50px;
  overflow: hidden;
}
.c-hamburger .hamburger__text .txt {
  display: block;
  width: 100%;
  height: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
  text-align: center;
  color: #333;
  position: absolute;
  transition: top 0.3s;
}
.c-hamburger .hamburger__text .txt1 {
  top: 0;
}
.c-hamburger .hamburger__text .txt2 {
  letter-spacing: -0.04em;
  color: #fff;
  top: 18px;
}
/* --- active --- */
.c-hamburger.is-active .hamburger__cube--2,
.c-hamburger.is-active .hamburger__cube--5 {
  top: 20px;
}
.c-hamburger.is-active .hamburger__text .txt1 {
  top: -18px;
}
.c-hamburger.is-active .hamburger__text .txt2 {
  top: 0;
}
.l-header.is-active .circle_bg {
  transform: scale(100);
}
.l-header.is-active .header_nav {
  opacity: 1;
  visibility: visible;
}

/* == footer ============================================== */
.l-footer {
  border-top: 1px solid #a4c6db;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.l-footer .scroll-top {
  width: 80%;
  min-width: 900px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  pointer-events: none;
}
.l-footer .scroll-top .circle-text {
  width: 166px;
  height: 166px;
  background: url(../img/scroll_top_arrow.svg) no-repeat center;
  background-size: contain;
  margin: 0 0 0 auto;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: all;
  transition: 0.3s;
}
.l-footer .scroll-top .circle-text:hover {
  opacity: 0.7;
}
.l-footer .scroll-top .circle-text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/scroll_top_ring.svg) no-repeat center;
  background-size: contain;
  animation: rotate-topRing 20s linear infinite;
}
@keyframes rotate-topRing {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.l-footer .inner {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
}
.l-footer .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l-footer .footer_nav .nav_list {
  width: calc(100% / 4);
}
.l-footer .footer_nav .nav_list:nth-of-type(2) {
  padding: 0 0 0 50px;
}
.l-footer .footer_nav .nav_list:nth-of-type(3) {
  padding: 0 0 0 70px;
}
.l-footer .footer_nav .nav_list:nth-of-type(4) {
  padding: 0 0 0 70px;
}
.l-footer .footer_nav .nav_list li + li {
  margin: 20px 0 0;
}
.l-footer .footer_nav .nav_list li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #215879;
  border-left: 2px solid #a4c6db;
  padding: 0 0 0 6px;
  transition: opacity 0.3s;
}
.l-footer .footer_nav .sub_nav_list {
  border-left: 2px solid #eee;
  padding: 10px 0 0;
}
.l-footer .footer_nav .sub_nav_list li + li {
  margin: 6px 0 0;
}
.l-footer .footer_nav .sub_nav_list li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  border: 0;
}
.l-footer .copyright {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: url(../img/logo.svg) no-repeat center left;
  background-size: 62px auto;
  padding: 20px 0 20px 80px;
  margin: 60px 0 0;
}
/* --- hover --- */
.l-footer .footer_nav .nav_list li a:hover {
  opacity: 0.6;
}

/* == frontpage ============================================== */
/* --- block_front-top -------------------- */
.block_front-top {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  position: relative;
}
.block_front-top .bg_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #003978;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.block_front-top .bg_box .bgImg {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../img/top/mv_bg_pc.png) no-repeat;
  background-size: cover;
}
.block_front-top .bg_box .bgImg01 {
  animation: bg-loop 50s -25s linear infinite;
}
.block_front-top .bg_box .bgImg02 {
  animation: bg-loop2 50s linear infinite;
}
@keyframes bg-loop {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes bg-loop2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
/* ------ */
.block_front-top .main-copy {
  width: 100%;
  height: 100%;
  background: url(../img/top/copy_pc.svg) no-repeat center;
  background-size: cover;
  transform-origin: 48.8% 60%; /* x-offset | y-offset */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
/* ------ */
.block_front-top .header_box {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  padding: 30px 0 0;
}
.block_front-top .header_box .inner {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.block_front-top .header_box .logo {
  width: 108px;
  height: 76px;
  background: url(../img/logo.svg) no-repeat center;
  background-size: contain;
  margin: 0 auto 30px;
}
.block_front-top .header_box .logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 120%;
  white-space: nowrap;
  overflow: hidden;
}
.block_front-top .front_nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.block_front-top .front_nav .nav_list li {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.block_front-top .front_nav .nav_list li + li {
  margin-left: 28px;
}
.block_front-top .front_nav .nav_list li a {
  display: block;
  transition: all 0.3s;
}
/* --- drop item --- */
.block_front-top .front_nav .nav_list .drop_item {
  position: relative;
}
.block_front-top .front_nav .nav_list .drop_trigger {
  display: block;
  position: relative;
  padding: 0 12px 0 0;
  transition: all 0.3s;
}
.block_front-top .front_nav .nav_list .drop_trigger::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3.5px 0 3.5px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
/* --- active --- */
.block_front-top .front_nav .nav_list .drop_trigger.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}
.block_front-top .front_nav .nav_list .drop_menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 180%;
  padding: 16px 10px;
  background: rgba(33, 88, 121, 0.9);
}
.block_front-top .front_nav .nav_list .drop_menu.solution {
  width: 200px;
}
.block_front-top .front_nav .nav_list .drop_menu.about {
  width: 170px;
}
.block_front-top .front_nav .nav_list .drop_menu.recruit {
  width: 120px;
}
.block_front-top .front_nav .nav_list .drop_menu li {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.block_front-top .front_nav .nav_list .drop_menu li + li {
  margin-top: 10px;
}
.block_front-top .front_nav .nav_list .drop_menu li a {
  display: block;
  position: relative;
}
/* --- hover --- */
.block_front-top .front_nav .nav_list li a:hover,
.block_front-top .front_nav .nav_list .drop_trigger:hover,
.block_front-top .front_nav .nav_list .drop_trigger.is-active {
  color: #0983cd;
}
.block_front-top .front_nav .nav_list .drop_menu li a:hover {
  color: #fff;
  opacity: 0.6;
}
/* ------ */
.block_front-top .sub-copy {
  width: 100%;
  height: 245px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.block_front-top .sub-copy .copy {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #333;
}
.block_front-top .sub-copy .copy span {
  font-size: 2.4rem;
}
/* ------ */
.block_front-top .scroll-down {
  width: 80%;
  min-width: 900px;
  position: absolute;
  bottom: 68px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
}
.block_front-top .scroll-down .circle-text {
  width: 166px;
  height: 166px;
  background: url(../img/top/scroll_down_arrow.svg) no-repeat center;
  background-size: contain;
  margin: 0 0 0 auto;
  display: block;
  transition: 0.3s;
}
.block_front-top .scroll-down .circle-text:hover {
  opacity: 0.7;
}
.block_front-top .scroll-down .circle-text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/top/scroll_down_ring.svg) no-repeat center;
  background-size: contain;
  animation: rotate-downRing 20s linear infinite;
}
@keyframes rotate-downRing {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ------ */
.block_front-top .about_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.block_front-top .about_box .bg {
  width: 100%;
  height: 100%;
  background: #215879;
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.block_front-top .about_box .loop-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 140px 0 0;
}
.block_front-top .about_box .loop-text .text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  font-size: 18rem;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  padding: 0 60px 0 0;
}
.block_front-top .about_box .loop-text .text01 {
  animation: text-loop 100s -50s linear infinite;
}
.block_front-top .about_box .loop-text .text02 {
  animation: text-loop2 100s linear infinite;
}
@keyframes text-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text-loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.block_front-top .about_box .text_box {
  text-align: center;
  color: #fff;
  letter-spacing: 0.04em;
}
.block_front-top .about_box .text_box .title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}
.block_front-top .about_box .c-btn {
  margin-top: 60px;
}

/* --- block_front-pickup -------------------- */
.block_front-pickup {
  padding: 120px 0 10px;
}
.block_front-pickup .c-heading {
  margin-bottom: 40px;
}

/* --- block_front-solution -------------------- */
.block_front-solution {
  padding: 120px 0 0;
}
.block_front-solution .solution_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_front-solution .solution_header .c-heading {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.block_front-solution .solution_header .read_box {
  max-width: 516px;
  margin-left: 30px;
}
.block_front-solution .c-list-whiteCard {
  margin-top: 64px;
}

/* --- block_front-projects -------------------- */
.block_front-projects {
  background: #0983cd;
  padding: 120px 0 120px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.block_front-projects::before {
  content: "";
  display: block;
  width: 100%;
  height: 580px;
  background: linear-gradient(#0983cd 0%, #a4c6db 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.block_front-projects .u-no-post {
  color: #fff;
}
.block_front-projects .l-inner {
  position: relative;
  z-index: 1;
}
.block_front-projects .projects_header .c-heading {
  display: inline-block;
  vertical-align: top;
  margin: 0 80px 20px 0;
}
.block_front-projects .projects_header .c-btn {
  display: inline-block;
  vertical-align: top;
  margin: 10px 0 0;
}
.block_front-projects .list_projects {
  overflow: hidden;
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  text-align: center;
  padding: 0 15.6%;
  margin: 64px 0 0;
}
.block_front-projects .list_projects::-webkit-scrollbar {
  display: none;
}
.block_front-projects .list_projects .c-card {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  text-align: left;
  margin: 0 56px 0 0;
}
.block_front-projects .list_projects .c-card__thum::before {
  border-color: #0983cd transparent transparent transparent;
}
.block_front-projects .list_projects .c-card__title,
.block_front-projects .list_projects .c-card__excerpt {
  color: #fff;
}
.block_front-projects .list_projects .c-card__title::after {
  background: #fff;
}

/* --- block_front-column -------------------- */
.block_front-column {
  padding: 120px 0 170px;
  position: relative;
}
.block_front-column::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 90vw 50vw 0 0;
  border-color: #f4f4f4 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.block_front-column .c-heading {
  margin: 0 0 40px;
}
.block_front-column .desc {
  text-align: center;
  margin: 40px 0 64px;
}
.block_front-column .c-btn {
  margin-top: 60px;
}

/* --- block_front-recruit -------------------- */
.block_front-recruit {
  min-height: 620px;
  background: url(../img/top/recruit_bg_pc.jpg) no-repeat top left #0983cd;
  background-size: cover;
  padding: 84px 0 128px;
}
.block_front-recruit .text_box {
  color: #fff;
  margin-top: 54px;
}
.block_front-recruit .c-btn {
  margin-top: 76px;
}

/* --- block_front-about -------------------- */
.front-bg {
  position: relative;
  overflow: hidden;
}
.front-bg::before {
  content: "";
  display: block;
  width: 1042px;
  height: 200%;
  background: #f4f4f4;
  position: absolute;
  top: -45%;
  right: 0;
  z-index: -1;
  transform: rotate(30deg);
}
.block_front-about {
  padding: 120px 0 0;
}
.block_front-about .l-inner {
  max-width: 890px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_front-about .set {
  width: 50%;
  text-align: center;
  padding: 96px 11.5% 96px 0;
}
.block_front-about .set + .set {
  border-left: 1px solid #b4b4b4;
  padding-left: 11.5%;
  padding-right: 0;
}
.block_front-about .set .text_box {
  margin-top: 56px;
}
.block_front-about .set .text_box .title {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin: 20px 0;
}
.block_front-about .set .text_box .desc {
  letter-spacing: 0.05em;
  text-align: left;
  max-width: 340px;
  min-height: 112px;
  margin: 10px auto 0;
}
.block_front-about .set .c-btn {
  margin-top: 40px;
}

/* --- block_front-news -------------------- */
.block_front-news {
  padding: 120px 0;
}
.block_front-news .c-list-article {
  margin-top: 56px;
}
.block_front-news .c-btn {
  margin-top: 60px;
}

/* == underpage ============================================== */
/* ======
page-name #NEWS
======*/
/* --- block_news -------------------- */
.block_news {
  padding: 80px 0 0;
}
.block_news .c-selector {
  margin: 0 40px 40px 0;
  display: inline-block;
  vertical-align: top;
}
.block_news .c-selector.cat-selector {
  z-index: 10;
}
.block_news .c-selector.year-selector {
  z-index: 9;
}

/* ======
page-name #NEWS詳細
======*/
/* --- block_news-detail -------------------- */
.block_news-detail {
  padding: 50px 0 80px;
}
.block_news-detail .entry-header .upper {
  margin-bottom: 30px;
}
.block_news-detail .entry-header .date {
  display: inline-block;
  vertical-align: middle;
  color: #666;
  font-weight: 500;
  margin: 0 20px 0 0;
}
.block_news-detail .entry-header .cat {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background: #0983cd;
  border-radius: 14px;
  padding: 0 16px;
  margin: 6px 0;
}
.block_news-detail .entry-header .entry-title {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1.4;
  color: #0983cd;
}
.block_news-detail .entry-content {
  margin: 80px 0 100px;
}

/* ======
page-name #SOLUTION
======*/
/* --- block_solution -------------------- */
.block_solution {
  overflow: hidden;
}
.block_solution .list_solution {
  padding: 100px 0 120px;
}
.block_solution .list_solution .set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_solution .list_solution .set:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.block_solution .list_solution .set + .set {
  margin: 80px 0 0;
}
.block_solution .list_solution .img_box {
  width: 50%;
  position: relative;
}
.block_solution .list_solution .set:nth-of-type(2n) .img_box {
  margin: 0 20px 0 0;
}
.block_solution .list_solution .img_box::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 64%;
  background: rgba(234, 234, 234, 0.8);
  box-shadow: 0 0 8px 8px rgba(234, 234, 234, 0.8);
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: -1;
  transform: rotate(2deg);
}
.block_solution .list_solution .img_wrap {
  width: 100%;
  padding-top: 64%;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.block_solution .list_solution .img_wrap::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 34px 34px 0 0;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.block_solution .list_solution .img_wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .block_solution .list_solution .img_wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.block_solution .list_solution .text_box {
  width: 43%;
}
.block_solution .list_solution .c-title1 {
  text-align: left;
  margin: 0 0 24px;
}
.block_solution .list_solution .c-title1 .ja {
  font-size: 3.2rem;
}
.block_solution .list_solution .desc {
  letter-spacing: 0.04em;
}
.block_solution .list_solution .example {
  margin: 40px 0 0;
}
.block_solution .list_solution .example .title {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.block_solution .list_solution .list_example {
  display: block;
}
.block_solution .list_solution .list_example li {
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.block_solution .list_solution .c-btn {
  margin: 40px 0 0;
}

/* ======
page-name #SOLUTION詳細
======*/
/* --- block_solution-detail -------------------- */
.block_solution-detail .example {
  background: #edf4f8;
  padding: 54px 0 80px;
}
.block_solution-detail .example .c-title2 {
  margin-bottom: 40px;
}
.block_solution-detail .example .list_case li {
  letter-spacing: 0.04em;
  border-left: 4px solid #a4c6db;
  padding-left: 20px;
}
.block_solution-detail .example .list_case li + li {
  margin-top: 24px;
}
.block_solution-detail .possible {
  padding: 80px 0 0;
}
.block_solution-detail .possible .c-title1 {
  margin-bottom: 74px;
}

/* ======
page-name #PROJECT
======*/
/* --- block_projects -------------------- */
.block_projects {
  padding: 40px 0 0;
}
.block_projects .c-selector {
  margin-bottom: 40px;
}
.block_projects .c-pagenation ul {
  margin-top: 0;
}

/* ======
page-name #PROJECT詳細
======*/
/* --- block_projects-detail -------------------- */
.block_projects-detail {
  padding: 50px 0 80px;
}
.block_projects-detail .entry-header .entry-subTitle {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.block_projects-detail .entry-header .entry-title {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1.4;
  color: #0983cd;
}
.block_projects-detail .entry-header .list_tag {
  margin: 40px 0 0;
  font-size: 0;
}
.block_projects-detail .entry-header .list_tag li {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: #215879;
  border-radius: 10px;
  background: rgba(164, 198, 219, 0.5);
  padding: 2px 10px;
  margin: 0 10px 10px 0;
}
.block_projects-detail .entry-content {
  margin: 80px 0 100px;
}
/* --- */
.block_projects-detail .other-projects {
  padding: 80px 0 0;
}
.block_projects-detail .other-projects .c-heading {
  margin-bottom: 64px;
}
.block_projects-detail .other-projects .c-heading .en {
  font-size: 6.4rem;
}

/* ======
page-name #ABOUT
======*/
/* --- block_about -------------------- */
.block_about {
  padding: 0 0 80px;
}

/* --- block_about-title -------------------- */
.block_about-title {
  background: url(../img/about/title_img.jpg) no-repeat center #215879;
  background-size: cover;
  padding: 100px 0;
}
.block_about-title .l-inner {
  position: relative;
}
.block_about-title .l-inner::before {
  content: "";
  display: block;
  width: 40%;
  max-width: 414px;
  height: 62px;
  background: url(../img/about/logo.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.block_about-title .text_box {
  max-width: 410px;
  color: #fff;
}
.block_about-title .text_box .c-heading {
  margin-bottom: 40px;
}

/* --- block_about -------------------- */
.block_about .lead_box {
  margin: 80px 0 100px;
  text-align: center;
}

/* ======
page-name #ABOUT / 代表メッセージ
======*/
/* --- block_message-title -------------------- */
.block_message-title {
  background: url(../img/about/message/title_img_pc.jpg) no-repeat center #215879;
  background-size: cover;
  padding: 140px 0 160px;
}
.block_message-title .text_box {
  color: #fff;
}
.block_message-title .text_box .c-heading {
  margin-bottom: 80px;
}
.block_message-title .text_box .lead {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.block_message-title .text_box .lead span {
  font-size: 2.4rem;
}

/* --- block_message -------------------- */
.block_message {
  padding: 0 0 70px;
}
.block_message .vision {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.block_message .vision::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 110vw 64vw 0 0;
  border-color: #f4f4f4 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.block_message .vision .text_box {
  letter-spacing: 0.04em;
}
.block_message .vision .text_box p + p {
  margin-top: 24px;
}
.block_message .vision .text_box .name {
  font-weight: 700;
  text-align: right;
  margin-top: 40px;
}
.block_message .vision .text_box .name .large {
  font-size: 2.4rem;
}
/* --- */
.block_message .profile {
  padding: 60px 0 160px;
  position: relative;
  overflow: hidden;
}
.block_message .profile::before {
  content: "";
  display: block;
  width: 100%;
  height: 320px;
  background: #ededed;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.block_message .profile .l-inner {
  max-width: 828px;
}
.block_message .profile .f-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_message .profile .text_box {
  /* width: 62.32%; */
  letter-spacing: 0.04em;
}
.block_message .profile .text_box .name {
  font-weight: 700;
  margin-bottom: 30px;
}
.block_message .profile .text_box .name .large {
  font-size: 2.4rem;
}
.block_message .profile .text_box .name .small {
  font-size: 1.2rem;
  font-weight: 500;
}
.block_message .profile .img_box {
  width: 30.92%;
}
.block_message .profile .img_box img {
  display: block;
  border-radius: 16px;
}

/* ======
page-name #ABOUT / 沿革・会社概要
======*/
/* --- block_company -------------------- */
.block_company {
  padding: 80px 0;
}
.block_company .c-list-anchor li {
  width: 22.4%;
}
.block_company .set {
  margin-top: 96px;
}
.block_company .set .heading {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.block_company .set .heading:first-letter {
  color: #0983cd;
}
/* --- */
.block_company .set.profile .map_img {
  max-width: 720px;
  background: #a4c6db;
  border-radius: 14px;
  text-align: center;
  padding: 20px;
  margin: 40px auto 0;
}
.block_company .set.profile .map_img img {
  display: block;
  margin: 0 auto;
}
/* --- */
.block_company .set.award .c-title3 {
  margin: 60px 0 20px;
}
.block_company .set.award .c-title3:first-of-type {
  margin-top: 0;
}
/* --- */
.block_company .set.access .map_box {
  width: 100%;
  height: 450px;
  margin: 10px 0;
}
.block_company .set.access .map_box iframe {
  width: 100%;
  height: 100%;
}

/* ======
page-name #ABOUT / スタッフ
======*/
/* --- block_staff -------------------- */
.block_staff {
  padding: 60px 0 80px;
}
.block_staff .set {
  padding: 60px 0 0;
}
.block_staff .set .c-title1 {
  margin-bottom: 64px;
}
.block_staff .set .c-title1 .ja {
  font-size: 3.2rem;
}
.block_staff .set:nth-of-type(even) {
  background: #edf4f8;
}
.block_staff .list_staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.block_staff .list_staff li {
  width: 22.6%;
  margin: 0 3.2% 80px 0;
  font-size: 1.4rem;
  line-height: 2;
}
.block_staff .list_staff li:nth-of-type(4n) {
  margin-right: 0;
}
.block_staff .list_staff .img_box {
  width: 79.65%;
  margin: 0 auto 16px;
  position: relative;
  overflow: hidden;
}
.block_staff .list_staff .img_wrap {
  width: 100%;
  padding-top: 181.12%;
}
.block_staff .list_staff .img_wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ======
page-name #ABOUT / SDGs
======*/
/* --- block_sdgs -------------------- */
.block_sdgs {
  padding: 80px 0 160px;
}
.block_sdgs .sdgs_top .sdgs_img {
  display: block;
  margin: 0 auto 80px;
}
.block_sdgs .sdgs_top .set {
  max-width: 828px;
  letter-spacing: 0.04em;
  margin: 0 auto;
}
.block_sdgs .sdgs_top .set + .set {
  margin-top: 80px;
}
/* --- */
.block_sdgs .sdgs_plan {
  margin-top: 160px;
}
.block_sdgs .sdgs_plan .c-title1 {
  margin-bottom: 80px;
}
.block_sdgs .sdgs_plan .set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.block_sdgs .sdgs_plan .set + .set {
  margin-top: 120px;
}
.block_sdgs .sdgs_plan .set:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.block_sdgs .sdgs_plan .set .img_box {
  width: 31.2%;
}
.block_sdgs .sdgs_plan .set .text_box {
  width: 65.6%;
}
.block_sdgs .sdgs_plan .set .c-title2 {
  font-size: 2.4rem;
  letter-spacing: 0;
  text-align: left;
}
.block_sdgs .sdgs_plan .set .c-title2::after {
  margin: 14px 0 14px;
}
.block_sdgs .sdgs_plan .set .c-title3 {
  margin: 40px 0 16px;
}
.block_sdgs .sdgs_plan .set .arrow {
  display: block;
  width: 16px;
  height: 20px;
  position: relative;
  margin: 16px auto;
}
.block_sdgs .sdgs_plan .set .arrow::before,
.block_sdgs .sdgs_plan .set .arrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #215879;
  border-width: 0 3px 3px 0;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.block_sdgs .sdgs_plan .set .arrow::after {
  top: 6px;
}
/* --- */
.block_sdgs .c-btn {
  margin-top: 160px;
}

/* ======
page-name #RECRUIT
======*/
/* --- block_recruit -------------------- */
.block_recruit .message {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.block_recruit .message::before {
  content: "";
  display: block;
  width: 980px;
  height: 250%;
  background: #f4f4f4;
  position: absolute;
  top: -40%;
  right: -5%;
  z-index: -1;
  transform: rotate(30deg);
}
.block_recruit .message .text_box {
  max-width: 484px;
  text-align: center;
  margin: 40px auto 56px;
}
.block_recruit .message .c-btn {
  margin-top: 56px;
}
/* --- */
.block_recruit .interview {
  background: #0b82d0;
  color: #fff;
  padding: 80px 0 0;
}
.block_recruit .interview .c-title1 {
  color: #fff;
  text-align: left;
  margin-bottom: 40px;
}
.block_recruit .interview .c-title1 .ja:first-letter {
  color: #a4c6db;
}
.block_recruit .interview .lead_box {
  margin-bottom: 64px;
}
.block_recruit .interview .c-card__thum::before {
  border-color: #0b82d0 transparent transparent transparent;
}
.block_recruit .interview .c-card__title {
  color: #fff;
}
.block_recruit .interview .c-card__title::after {
  background: #fff;
}
.block_recruit .interview .c-card__title span {
  font-size: 1.6rem;
}
/* --- */
.block_recruit .guidelines {
  padding: 80px 0 0;
}
.block_recruit .guidelines .list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.block_recruit .guidelines .list_link li {
  width: 50%;
  min-height: 320px;
  background: #0983cd;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.block_recruit .guidelines .list_link li a {
  display: table;
  width: 100%;
  height: 100%;
  padding: 90px 20px 130px;
}
.block_recruit .guidelines .list_link li .title {
  display: table-cell;
  vertical-align: middle;
  font-size: 4.4rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.block_recruit .guidelines .list_link li .title:first-letter {
  color: #a4c6db;
}
.block_recruit .guidelines .list_link li .title::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  background: #fcc224;
  margin: 12px auto;
}
.block_recruit .guidelines .list_link li .arrow {
  display: block;
  width: 62px;
  height: 62px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
}
.block_recruit .guidelines .list_link li .arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #215879;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  left: 22px;
  transform: rotate(45deg);
}
.block_recruit .guidelines .list_link li .bg_box {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
  transition: all 0.3s;
}
.block_recruit .guidelines .list_link li .bg_box img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .block_recruit .guidelines .list_link li .bg_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 991px) {
  .block_recruit .guidelines .list_link li {
    width: 100%;
  }
}
/* --- hover --- */
.block_recruit .guidelines .list_link li a:hover .bg_box {
  opacity: 0.8;
  transform: scale(1.1);
}
/* --- */
.block_recruit .faq {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.block_recruit .faq::before {
  content: "";
  display: block;
  width: 980px;
  height: 250%;
  background: #f4f4f4;
  position: absolute;
  top: -100%;
  left: -26%;
  z-index: -1;
  transform: rotate(30deg);
}
.block_recruit .faq .text_box {
  max-width: 484px;
  text-align: center;
  margin: 40px auto 56px;
}
.block_recruit .faq .c-btn {
  margin-top: 56px;
}

/* ======
page-name #RECRUIT / 採用メッセージ
======*/
.recruit-message-title.c-under-title .lead_box {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
/* --- block_recruit-message -------------------- */
.block_recruit-message .lead_box {
  letter-spacing: 0.04em;
  margin: 80px 0;
}
.block_recruit-message .lead_box .l-inner {
  max-width: 828px;
}
/* --- */
.block_recruit-message .message_box {
  margin: 80px 0;
}
.block_recruit-message .message_box .l-inner {
  position: relative;
  z-index: 1;
}
.block_recruit-message .message_box .bg-img {
  width: 400px;
  height: 480px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.block_recruit-message .message_box .contents {
  width: 68.8%;
  max-width: 688px;
  min-height: 480px;
  letter-spacing: 0.04em;
  padding: 60px 0;
  margin: 0 0 0 auto;
}
.block_recruit-message .message_box .c-title1 {
  text-align: left;
  margin-bottom: 40px;
}
/* --- */
.block_recruit-message .solution_box {
  margin: 80px 0;
}
.block_recruit-message .solution_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 70px;
}
.block_recruit-message .solution_header .c-title1 {
  text-align: left;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.block_recruit-message .solution_header .text_box {
  max-width: 742px;
  margin-left: 30px;
  padding-top: 10px;
  letter-spacing: 0.04em;
}

/* ======
page-name #RECRUIT / インタビュー
======*/
.interview-title.c-under-title .lead_box {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
.interview-title.c-under-title .img_box .inner {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  /* bottom: 20px; */
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.interview-title.c-under-title .img_box .name {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 80px #215879;
}

/* --- block_interview -------------------- */
.block_interview .lead_box {
  padding: 80px 0;
  text-align: center;
}
.block_interview .lead_box .department {
  font-weight: 700;
  margin: 0 0 16px;
}
.block_interview .lead_box .person {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.block_interview .lead_box .person .name {
  font-size: 4rem;
}
.block_interview .lead_box .person .small {
  font-size: 2.4rem;
}
.block_interview .lead_box .join {
  font-weight: 500;
  font-size: 1.4rem;
}
.block_interview .lead_box .text_box {
  max-width: 828px;
  text-align: left;
  margin: 40px auto 0;
}
/* --- */
.block_interview .interview-set {
  background: #ededed;
  padding: 80px 0;
  overflow: hidden;
}
.block_interview .interview-set .l-inner {
  position: relative;
  z-index: 1;
}
.block_interview .interview-set .bg-title {
  font-size: 14.8rem;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  color: #a4c6db;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.block_interview .interview-set .bg-title:first-letter {
  color: #3fa9cb;
}
.block_interview .interview-set .contents {
  width: 77.4%;
  max-width: 774px;
  margin: 0 0 0 auto;
}
/* --- */
.block_interview .faq_box {
  min-height: 400px;
}
.block_interview .faq_box .faq_dl dt {
  font-weight: 700;
  font-size: 2.4rem;
  margin: 70px 0 24px;
}
.block_interview .faq_box .faq_dl dt span {
  color: #0983cd;
  margin-right: 10px;
}
.block_interview .faq_box .faq_dl dt:first-of-type {
  margin-top: 0;
}
/* --- */
.block_interview .schedule_box {
  min-height: 980px;
}
.block_interview .schedule_box .c-title1 {
  text-align: left;
  margin-bottom: 28px;
}
.block_interview .schedule_box .time_table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #a4c6db;
  border-width: 1px 0;
}
.block_interview .schedule_box .time_table th {
  width: 140px;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  vertical-align: top;
  color: #0983cd;
  background: rgba(255, 255, 255, 0.5);
  padding: 24px 10px;
}
.block_interview .schedule_box .time_table td {
  color: #666;
  border-bottom: 1px solid #a4c6db;
  padding: 24px 10px 24px 30px;
}
.block_interview .schedule_box .time_table td .event {
  display: block;
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 500;
  color: #0983cd;
}
/* --- */
.p-other-interview {
  padding: 100px 0;
  background: #fff;
}
.p-other-interview .list_interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-other-interview .list_interview .c-card {
  width: 31.3%;
  margin: 0 3% 40px 0;
}
.p-other-interview .list_interview .c-card:last-of-type {
  margin-right: 0;
}
.p-other-interview .c-card__title {
  color: #333;
}
.p-other-interview .c-card__title span {
  font-size: 1.6rem;
}
.p-other-interview .c-card__excerpt {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}
.p-other-interview .c-btn {
  text-align: center;
  margin-top: 40px;
}

/* ======
page-name #RECRUIT / 募集要項
======*/
/* --- block_guideline -------------------- */
.block_guideline {
  padding: 80px 0;
}
.block_guideline .set + .set {
  margin-top: 96px;
}
.block_guideline .set .heading {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.block_guideline .set .heading:first-letter {
  color: #0983cd;
}
.block_guideline .howto {
  margin-top: 40px;
  font-weight: 500;
}
.block_guideline .howto .c-title3 {
  margin-bottom: 40px;
}
.block_guideline .howto .title {
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  margin: 40px 0 0;
}
.block_guideline .howto .title span {
  color: #0983cd;
}
.block_guideline .howto .small {
  font-size: 1.2rem;
}
.block_guideline .howto p {
  margin: 1em 0;
}
.block_guideline .howto a {
  transition: opacity 0.3s;
}
.block_guideline .howto a:hover {
  opacity: 0.6;
}
.block_guideline .howto ol {
  list-style-type: decimal;
  margin: 1em 0 1em 1em;
}
.block_guideline .info_box {
  text-align: center;
  border-radius: 16px;
  background: #edf4f8;
  padding: 54px 20px;
  margin: 60px 0 0;
}
.block_guideline .scholarship {
  width: 85%;
  margin: 40px 0 0;
}
.block_guideline .scholarship .scholar-wrap {
  margin: 0 0 20px;
}
.block_guideline .scholarship .scholar-wrap .title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #215879;
}
.block_guideline .scholarship .text-area {
  display: flex;
  flex-direction: row-reverse;
}
.block_guideline .scholarship .text-area .text {
  width: 57%;
  margin-left: 3%;
}
.block_guideline .scholarship .text-area .title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.block_guideline .scholarship .text-area a {
  display: inline-block;
  margin: 15px 0 0;
  color: #215879;
  text-decoration: underline;
}
.block_guideline .scholarship .text-area a:hover {
  text-decoration: none;
}
.block_guideline .scholarship .text-area .img {
  width: 40%;
}
/* ======
page-name #RECRUIT / FAQ
======*/
/* --- block_faq -------------------- */
.block_faq {
  padding: 80px 0;
}
.block_faq dl {
  counter-reset: numberQ numberA 0;
}
.block_faq dl dt {
  font-weight: 700;
  font-size: 2.4rem;
  padding: 10px 60px 10px 84px;
  cursor: pointer;
  position: relative;
}
.block_faq dl dd {
  background: #f4f4f4;
  padding: 16px 20px 16px 84px;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  transition: all 0.5s;
}
.block_faq dl dt::before,
.block_faq dl dd::before {
  content: "";
  display: block;
  width: 70px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #0983cd;
  position: absolute;
}
.block_faq dl dt::before {
  counter-increment: numberQ 1;
  content: "Q" counter(numberQ) ".";
  top: 20px;
  left: 14px;
}
.block_faq dl dd::before {
  counter-increment: numberA 1;
  content: "A" counter(numberA) ".";
  top: 17px;
  left: 16px;
}
.block_faq dl dt span::before,
.block_faq dl dt span::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #0983cd;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.block_faq dl dt span::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
.block_faq .c-btn {
  margin-top: 80px;
}
/* --- active --- */
.block_faq dl dt.is-active span::after {
  transform: translateY(-50%) rotate(0deg);
}
.block_faq dl dd.is-active {
  height: auto;
  padding: 16px 20px 16px 84px;
  margin: 10px 0 40px;
}

/* ======
page-name #COLUMN
======*/
.column-bg {
  position: relative;
  overflow: hidden;
}
.column-bg::before {
  content: "";
  display: block;
  width: 980px;
  height: 200%;
  background: #f4f4f4;
  position: absolute;
  top: -40%;
  right: 0;
  z-index: -1;
  transform: rotate(30deg);
}
/* --- block_column -------------------- */
.block_column {
  padding: 80px 0 0;
}
.block_column .c-selector {
  margin-bottom: 40px;
}

/* ======
page-name #COLUMN詳細
======*/
/* --- block_column-detail -------------------- */
.block_column-detail {
  padding: 50px 0 80px;
}
.block_column-detail .entry-header .upper {
  margin-bottom: 30px;
}
.block_column-detail .entry-header .date {
  display: inline-block;
  vertical-align: middle;
  color: #666;
  font-weight: 500;
  margin: 0 20px 0 0;
}
.block_column-detail .entry-header .cat {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #0983cd;
  margin: 6px 0;
}
.block_column-detail .entry-header .entry-title {
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1.4;
  color: #0983cd;
}
.block_column-detail .entry-content {
  margin: 80px 0 100px;
}
/* --- */
.block_column-detail .other-column {
  padding: 80px 0 0;
}
.block_column-detail .other-column .c-title2 {
  margin-bottom: 64px;
}
.block_column-detail .c-list-column .c-column:nth-of-type(2n),
.block_column-detail .c-list-column .c-column:nth-of-type(3n) {
  margin-top: 0;
  margin-top: 0;
}
.block_column-detail .other-column .c-btn {
  margin-top: 64px;
}

/* ======
page-name #CONTACT
======*/
.block_contact {
  padding: 40px 0 120px;
}
.block_contact .l-inner {
  max-width: 760px;
}
.block_contact .text_box {
  text-align: center;
  margin: 0 auto 40px;
}
.block_contact .text_box .caution {
  color: #ff0000;
  font-weight: 700;
}
.block_contact dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block_contact dl + dl {
  margin-top: 30px;
}
.block_contact dl dt {
  width: 218px;
  font-size: 1.6rem;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 12px 0 0;
}
.block_contact dl dt label {
  cursor: pointer;
}
.block_contact dl dd {
  width: calc(100% - 218px);
  position: relative;
  word-break: break-all;
}
.block_contact form input {
  width: 100%;
  font-size: 1.6rem;
  color: #333;
  background: #f4f4f4;
  border: 0;
  border-radius: 6px;
  padding: 16px 16px 14px;
}
.block_contact form select {
  width: 100%;
  font-family: "Noto Sans JP", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  color: #333;
  border-radius: 6px;
  padding: 10px;
  background: #f4f4f4;
  border: 1px solid #e3e5e6;
}
.block_contact form textarea {
  width: 100%;
  font-family: "Noto Sans JP", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.85;
  color: #333;
  background: #f4f4f4;
  border: 0;
  border-radius: 6px;
  -webkit-font-smoothing: antialiased;
  padding: 12px 16px 10px;
}
.block_contact .douisho {
  margin: 80px 0 0;
  text-align: center;
}
.block_contact .douisho .title {
  text-align: center;
  margin-bottom: 30px;
}
.block_contact .douisho .douisho_txt {
  width: 700px;
  height: 400px;
  overflow-y: auto;
  border: solid #e3e5e6 1px;
  text-align: left;
  margin: 0 auto;
  padding: 30px 30px;
}
.block_contact .douisho .douisho_txt p {
  margin: 1em 0;
}
.block_contact .douisho .douisho_txt p span {
  font-weight: 700;
}
.block_contact .douisho .douisho_txt .txt_title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.block_contact .douisho input[type="checkbox"] {
  display: none;
}
.block_contact .douisho .checkbox {
  font-weight: 500;
  position: relative;
  margin: 20px 0 0;
  display: inline-block;
  padding: 0px 0px 0px 20px;
  cursor: pointer;
}
.block_contact .douisho .checkbox:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 0px;
  border: 1px solid #999;
}
.block_contact .douisho .checkbox:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border-right: 2px solid #0983cd;
  border-bottom: 2px solid #0983cd;
  opacity: 0;
  position: absolute;
  top: 8px;
  left: 5px;
  transform: rotate(45deg);
}
.block_contact .douisho input[type="checkbox"]:checked + .checkbox:before {
  border: 1px solid #0983cd;
}
.block_contact .douisho input[type="checkbox"]:checked + .checkbox:after {
  opacity: 1;
}
.block_contact #button {
  text-align: center;
  margin: 40px 00;
}
.block_contact #button .c-btn {
  display: inline-block;
  margin: 20px;
}
.block_contact #button .c-btn a {
  padding: 18px 18px;
}

/* --- validation error --- */
.block_contact form .contact-errortext {
  font-size: 1.4rem;
  color: #ff0000;
}
.block_contact form .contact-error {
  border: #ff0000 solid 1px !important;
}

/* --- 確認画面 --- */
.block_contact dl.contact-confirm {
  padding: 20px;
}
.block_contact dl.contact-confirm + dl {
  margin-top: 0;
  border-top: 1px solid #e6e6e6;
}
.block_contact dl.contact-confirm dt {
  padding: 0;
}

/* ======
page-name #プライバシーポリシー
======*/
/* --- block_privacy -------------------- */
.block_privacy {
  padding: 120px 0;
}

/* == base style ============================================== */
.c-mainText {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  color: #333;
  word-break: break-all;
}
.c-mainText::after {
  content: "";
  display: block;
  clear: both;
}
.c-mainText > *:first-child {
  margin-top: 0;
}
.c-mainText > *:last-child {
  margin-bottom: 0;
}
/* --- 見出し --- */
.c-mainText h1 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0983cd;
  margin: 3em 0 1em;
}
.c-mainText h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #215879;
  margin: 3em 0 1em;
}
.c-mainText h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #215879;
  margin: 14px 0 0;
}
.c-mainText h3 {
  color: #215879;
  font-weight: 700;
  background: #a4c6db;
  padding: 6px 16px;
  margin: 3em 0 1em;
}
.c-mainText h4,
.c-mainText h5,
.c-mainText h6 {
  font-weight: 700;
  color: #215879;
}
/* --- 段落 --- */
.c-mainText p {
  margin: 1.5em 0;
}
/* --- 引用 --- */
.c-mainText blockquote {
  background: #f4f4f4;
  padding: 40px;
  margin: 40px 0;
  text-indent: 0;
}
.c-mainText blockquote > *:first-child {
  margin-top: 0;
}
.c-mainText blockquote > *:last-child {
  margin-bottom: 0;
}
/* --- テーブル --- */
.c-mainText .tableScroll {
  width: 100%;
  max-width: none;
  min-height: 0.01%;
  overflow: auto;
  overflow-y: hidden;
  margin: 30px 0;
}
.c-mainText .tableScroll::-webkit-scrollbar {
  height: 5px;
}
.c-mainText .tableScroll::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText .tableScroll::-webkit-scrollbar-thumb {
  background: #cbcbcb;
}
.c-mainText table {
  /* width: 100%; */
  /* table-layout: fixed; */
}
.c-mainText table,
.c-mainText table tr,
.c-mainText table th,
.c-mainText table td {
  border: 1px solid #cbcbcb;
}
.c-mainText table th {
  background: #f4f4f4;
  font-weight: 700;
  padding: 10px;
}
.c-mainText table td {
  padding: 10px;
}
.c-mainText caption {
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
}
/* --- 定義リスト --- */
.c-mainText dl,
.c-mainText dt,
.c-mainText dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-mainText dt,
.c-mainText dd {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-mainText dl {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.04em;
  border: 2px solid #d2d2d2;
  border-width: 2px 0;
  margin: 40px 0;
}
.c-mainText dt {
  width: 200px;
  color: #215879;
  font-weight: 700;
  border-bottom: 1px solid #dcdcdc;
  padding: 20px 0;
}
.c-mainText dd {
  width: calc(100% - 200px);
  font-weight: 500;
  border-bottom: 1px solid #dcdcdc;
  padding: 20px 10px 20px 20px;
}
.c-mainText dt:last-of-type,
.c-mainText dd:last-of-type {
  border: 0;
}
/* --- 非順序リスト --- */
.c-mainText ul {
  margin: 20px auto;
  padding: 0 20px;
}
.c-mainText ul ul,
.c-mainText ol ul {
  padding: 0;
  margin: 0;
}
.c-mainText ul > li {
  text-indent: -18px;
  margin: 24px 0 0 24px;
}
.c-mainText ul > li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #215879;
  margin: 0 10px 4px 0px;
}
/* --- 順序リスト --- */
.c-mainText ol {
  counter-reset: num;
  margin: 20px auto;
  padding: 0 20px;
}
.c-mainText ol ol,
.c-mainText ul ol {
  padding: 0;
  margin: 0;
}
.c-mainText ol > li {
  text-indent: -22px;
  margin: 24px 0 0 22px;
}
.c-mainText ol > li::before {
  counter-increment: num;
  content: counter(num) ".";
  display: inline;
  width: auto;
  height: auto;
  font-weight: 700;
  color: #215879;
  border-radius: 0;
  background: transparent;
  vertical-align: baseline;
  margin: 0 4px 0 0;
}
/* --- 要素タグ --- */
/* [罫線] */
.c-mainText hr {
  margin: 20px 0;
}
/* [強調] */
.c-mainText strong {
  font-weight: 700;
}
/* [強調] ( 斜体 ) */
.c-mainText em {
  font-style: italic;
}
/* [強調] ( マーカー ) */
.c-mainText mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #a4c6db));
  background: -o-linear-gradient(transparent 70%, #a4c6db 70%);
  background: linear-gradient(transparent 70%, #a4c6db 70%);
}
/* [打ち消し] */
.c-mainText del {
  text-decoration: line-through;
}
/* [住所] */
.c-mainText address,
.c-mainText address * {
  font-style: italic;
}
/* [アンカー] ( リンク ) */
.c-mainText a {
  color: #215879;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.c-mainText a:hover {
  text-decoration: none;
  opacity: 0.7;
}
/* [略語、頭字語] ( abbreviation ) */
.c-mainText abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-style: dotted;
}
/* [引用元] */
.c-mainText cite {
  font-style: italic;
}
/* [コード] */
.c-mainText code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: rgba(239, 242, 244, 0.6);
  border-radius: 3px;
  border: solid 1px #cbcbcb;
}
/* [追加、挿入] */
.c-mainText ins {
  text-decoration: underline;
}
/* [キーボード入力要素] */
.c-mainText kbd {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: rgba(239, 242, 244, 0.6);
  border-radius: 3px;
  border: solid 1px #cbcbcb;
}
/* [コードブロック] */
.c-mainText pre {
  margin: 1em 0;
  padding: 1em;
  border-radius: 5px;
  background: #25292f;
  color: #fff;
  /* white-space: pre-wrap; */
  overflow: auto;
  overflow-y: hidden;
}
.c-mainText pre::-webkit-scrollbar {
  height: 5px;
}
.c-mainText pre::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText pre::-webkit-scrollbar-thumb {
  background: #cbcbcb;
}
/* [一部引用] */
.c-mainText q::before {
  content: open-quote;
}
.c-mainText q::after {
  content: close-quote;
}
/* [下付き、上付き文字] */
.c-mainText sub,
.c-mainText sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.c-mainText sub {
  bottom: -0.25em;
}
.c-mainText sup {
  top: -0.5em;
}
/* [変数、引数、因数] */
.c-mainText var {
  font-style: italic;
}
/* --- 画像 --- */
.c-mainText img {
  max-width: 100%;
  margin: 30px auto 0;
}
.c-mainText figcaption,
.c-mainText .wp-caption,
.c-mainText .wp-caption-text,
.c-mainText .wp-block-embed figcaption {
  max-width: 100%;
  font-size: 1.4rem;
  line-height: 1.66;
  color: #606060;
}
.c-mainText .wp-caption-text {
  margin: 0;
}
/* --- 配置 --- */
.c-mainText img.alignright {
  display: inline;
  margin: 0 auto 30px 25px;
}
.c-mainText img.alignleft {
  display: inline;
  margin: 0 25px 30px auto;
}
.c-mainText img.aligncenter {
  display: block;
  margin: 20px auto;
}
.c-mainText .alignright {
  float: right;
  margin: 0 auto 30px 25px;
}
.c-mainText .alignleft {
  float: left;
  margin: 0 25px 30px auto;
}
.c-mainText .aligncenter {
  clear: both;
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
/* --- 動画(embed) --- */
.c-mainText .youtube,
.c-mainText .is-provider-youtube .wp-block-embed__wrapper {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  margin: 40px 0 20px;
}
.c-mainText .youtube iframe,
.c-mainText .is-provider-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
