@charset "UTF-8";

/*=============================================
 * HOME
*=============================================*/
#mv {
   display: grid;
   grid-template-columns: 1fr 390px;
   align-items: flex-end;
   gap: 80px;
   width: 100%;
   height: 100vh;
   background: url("../img/index/mv-bg.png") no-repeat center top/cover;
   color: #fff;
   box-sizing: border-box;
   padding: 40px;
   position: relative;
}

#mv video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
   z-index: -1;
}

#mv h2 {
   max-width: 893px;
}

#mv .feed {
   font-weight: 500;
   font-size: 15px;
   letter-spacing: 0.02em;
   line-height: 20px;
}

#mv .feed h3 {
   font-size: 18px;
   letter-spacing: 0.02em;
   padding-bottom: 18px;
}

#mv .feed p {
   display: grid;
   grid-template-columns: 75px 1fr;
   gap: 10px;
}

#mv .feed time {
   font-weight: 400;
}

#mv .feed a {
   display: block;
   position: relative;
   padding-right: 30px;
}

#mv .feed a span {
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   display: -webkit-box;
   overflow: hidden;
}

#mv .feed a:after {
   content: '';
   width: 22px;
   height: 7px;
   background: url("../img/common/arrow-right-white.png") no-repeat center top/100% auto;
   position: absolute;
   top: 50%;
   right: 0;
   transform: translate(0, -50%);
   transition: all 0.3s;
}

#mv .feed a:hover:after {
   transform: translate(5px, -50%);
}

@media screen and (max-width: 1023px) {
   #mv {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 50px;
   }

   #mv .feed {
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #mv {
      gap: 20px;
      padding: 20px;
   }

   #mv .feed h3 {
      padding-bottom: 10px;
   }

   #mv .feed p {
      grid-template-columns: 1fr;
      gap: 10px;
   }
}

/* -- --*/
#top__about {
   padding-bottom: 100px;
   position: relative;
}

#top__about:before {
   content: '';
   width: 64%;
   height: 100px;
   background-color: #193990;
   clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
   position: absolute;
   bottom: 0;
   right: 0;
}

#top__about .row {
   color: #fff;
   padding: 125px 0 40px;
   position: relative;
}

#top__about .row:before {
   content: '';
   width: 100%;
   background: url("../img/index/about-bg.jpg") no-repeat center top/cover;
   position: absolute;
   top: 0;
   bottom: -200px;
   left: 0;
}

#top__about .row .wrap {
   display: flex;
   justify-content: space-between;
   gap: 30px;
}

#top__about .row .col {
   width: 420px;
}

#top__about .row .txt {
   padding-top: 30px;
}

#top__about .row .txt p+p {
   padding-top: 50px;
}

#top__about .row .button {
   padding-top: 40px;
}

#top__about .row figure {
   width: 446px;
}

@media screen and (max-width: 1023px) {
   #top__about .row .wrap {
      flex-direction: column;
      align-items: center;
      gap: 0px;
   }

   #top__about .row .col {
      display: contents;
   }

   #top__about .row h2 {
      order: 1;
      text-align: center;
   }

   #top__about .row figure {
      order: 2;
   }

   #top__about .row .txt {
      order: 3;
   }

   #top__about .row .button {
      order: 4;
   }
}

@media screen and (max-width: 767px) {
   #top__about {
      padding-bottom: 50px;
   }

   #top__about:before {
      height: 50px;
   }

   #top__about .row {
      padding: 50px 0;
   }

   #top__about .row figure {
      width: 100%;
   }

   #top__about .row .txt {
      padding-top: 20px;
   }

   #top__about .row .txt p+p {
      padding-top: 30px;
   }

   #top__about .row .button {
      padding-top: 30px;
   }
}

/* -- --*/
#top__company {
   padding: 80px 0 200px;
   position: relative;
}

#top__company:before {
   content: '';
   width: 64%;
   height: 220px;
   background-color: #193990;
   clip-path: polygon(0 0, 85% 0%, 100% 100%, 0 100%);
   position: absolute;
   bottom: -120px;
   left: 0;
}

#top__company .deco {
   width: 42%;
   max-width: 604px;
   position: absolute;
   bottom: 100px;
   right: 0;
}

#top__company .wrap {
   display: flex;
   gap: 90px;
   max-width: 100%;
   padding: 0 40px;
}

#top__company .photos {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;
   width: calc(50% + 30px);
}

#top__company .photos figure:nth-child(2) {
   padding-top: 100px;
}

#top__company .col {
   width: 380px;
   padding: 100px 0 0;
}

#top__company .txt {
   padding-top: 30px;
}

#top__company .txt p+p {
   padding-top: 50px;
}

#top__company .button {
   padding-top: 40px;
}

@media screen and (max-width: 1200px) {
   #top__company .wrap {
      gap: 30px;
   }
}

@media screen and (max-width: 1023px) {
   #top__company .wrap {
      flex-direction: column;
      align-items: center;
      gap: 0px;
   }

   #top__company .col {
      display: contents;
      padding: 0;
   }

   #top__company h2 {
      order: 1;
      text-align: center;
   }

   #top__company .photos {
      width: 100%;
      order: 2;
      padding-top: 50px;
   }

   #top__company .txt {
      order: 3;
   }

   #top__company .button {
      order: 4;
   }
}

@media screen and (max-width: 767px) {
   #top__company {
      padding: 50px 0 100px;
   }

   #top__company:before {
      height: 120px;
      bottom: -70px;
      clip-path: polygon(0 0, 75% 0%, 100% 100%, 0 100%);
   }

   #top__company .wrap {
      padding: 0 20px;
   }

   #top__company .photos {
      gap: 20px;
      padding-top: 30px;
   }

   #top__company .photos figure:nth-child(2) {
      padding-top: 50px;
   }

   #top__company .txt {
      padding-top: 20px;
   }

   #top__company .txt p+p {
      padding-top: 30px;
   }

   #top__company .button {
      padding-top: 30px;
   }
}

/* -- --*/
#top__recruit {
   position: relative;
}

#top__recruit:before {
   content: '';
   width: 100%;
   background-color: #193990;
   position: absolute;
   top: 120px;
   bottom: 0;
   left: 0;
}

#top__recruit .swiper-slide {
   width: 370px;
   margin-right: 10px;
}

#top__recruit .wrap {
   padding-top: 60px;
   padding-bottom: 40px;
}

#top__recruit .wrap a {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;
   background: url("../img/index/recruit-photo-5.jpg") no-repeat center top/cover;
   color: #fff;
   width: 100%;
   height: 240px;
   padding: 0 40px;
   box-sizing: border-box;
}

#top__recruit h2 {
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 0.08em;
   line-height: 24px;
}

#top__recruit h2 .sub {
   display: block;
   font-weight: 400;
   font-size: 38px;
   letter-spacing: 0.04em;
   line-height: 42px;
   padding-bottom: 5px;
}

#top__recruit h2 .ja {
   display: inline-block;
   background: url("../img/common/icon-blank.png") no-repeat center right/15px auto;
   padding-right: 23px;
}

#top__recruit .h-26 {
   letter-spacing: 0.14em;
}

@media screen and (max-width: 767px) {
   #top__recruit:before {
      top: 70px;
   }

   #top__recruit .swiper-slide {
      width: 185px;
   }

   #top__recruit .wrap {
      padding-top: 20px;
      padding-bottom: 20px;
   }

   #top__recruit .wrap a {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 20px;
      padding: 0 20px;
   }
}

/* =============================================
 * 事業内容
*=============================================*/
#about__lead {
   position: relative;
   overflow: hidden;
}

#about__lead .wrap {
   padding-top: 60px;
   padding-bottom: 220px;
}

#about__lead .photo-1 {
   width: 430px;
   position: absolute;
   top: 82px;
   left: calc(50% + 290px);
}

#about__lead .photo-2 {
   width: 150px;
   position: absolute;
   bottom: 100px;
   right: calc(50% + 570px);
}

#about__lead h2 {
   line-height: 60px;
}

#about__lead .txt {
   max-width: 726px;
   padding-top: 34px;
}

@media screen and (max-width: 1200px) {
   #about__lead {
      text-align: center;
   }

   #about__lead .wrap {
      padding-bottom: 100px;
   }

   #about__lead .photos {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding-top: 30px;
   }

   #about__lead .photo-1,
   #about__lead .photo-2 {
      position: static;
   }

   #about__lead .photo-2 {
      width: 173px;
   }

   #about__lead .txt {
      margin: 0 auto;
   }
}

@media screen and (max-width: 767px) {
   #about__lead h2 {
      line-height: 40px;
   }

   #about__lead .txt {
      padding-top: 20px;
   }
}

/* -- -- */
.service-item {
   position: relative;
}

.service-item:not(.img-r) {
   background-image: linear-gradient(to top, #000C57, #1E2974);
   color: #fff;
}

.service-item:not(.img-r):before {
   content: '';
   width: 64%;
   height: 73px;
   background-color: #1E2974;
   clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
   position: absolute;
   top: -72px;
   right: 0;
}

.service-item.img-r:before {
   content: '';
   width: 64%;
   height: 73px;
   background-color: #fff;
   clip-path: polygon(0 0, 93% 0%, 100% 100%, 0 100%);
   position: absolute;
   top: -72px;
   left: 0;
}

.service-item .row-1 {
   display: flex;
   gap: 110px;
   position: relative;
   padding-bottom: 60px;
}

.service-item .row-1 figure {
   width: calc(50% - 50px);
   height: 420px;
}

.service-item .row-1 .col {
   width: 440px;
   padding: 30px 0;
   position: relative;
}

.service-item .row-1 .txt {
   padding-top: 28px;
}

.service-item .row-1 .no {
   font-weight: 400;
   font-size: 250px;
   line-height: 1;
   color: #68B1D8;
   opacity: 0.2;
   position: absolute;
   bottom: -86px;
   right: -100px;
}

.service-item .row-2 {
   padding-bottom: 173px;
}

.service-item .row-2 h3 {
   text-align: center;
   position: relative;
   padding-top: 140px;
}

.service-item .row-2 h3:before {
   content: '';
   height: 120px;
   border-left: 1px solid #fff;
   position: absolute;
   top: 0;
   left: 50%;
}

.service-item .row-2 h3:after {
   content: '';
   width: 8px;
   height: 8px;
   background: #fff;
   position: absolute;
   top: 112px;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 50%;
}

.service-item .row-2 .desc {
   padding-top: 30px;
}

.service-item .row-2 .box-1 {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 50px;
   padding-top: 30px;
}

.service-item .row-2 .box-1 .col {
   border: 1px solid;
   padding: 30px 20px;
}

.service-item .row-2 .box-1 .txt {
   line-height: 28px;
   padding-top: 10px;
}

.service-item .row-2 .box-2 {
   margin-top: 20px;
   padding: 35px 20px;
   border: 1px solid #fff;
}

.service-item .row-2 .box-2 h4 {
   padding-bottom: 35px;
}

.service-item .row-2 .box-2 .list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   align-items: flex-start;
   gap: 65px;
}

.service-item .row-2 .box-2 .list dl+dl {
   padding-top: 20px;
}

.service-item .row-2 .box-2 .list dl dt {
   text-indent: -20px;
   padding-left: 20px;
}

.service-item .row-2 .box-2 .list dl dd {
   line-height: 28px;
   padding: 10px 0 0 20px;
}

.service-item .row-2 .box-3 {
   line-height: 28px;
   border: 1px solid #000;
   margin-top: 30px;
   padding: 30px 20px;
}

.service-item.img-r .row-1 {
   flex-direction: row-reverse;
}

.service-item.img-r .row-1 .no {
   right: auto;
   left: -100px;
}

.service-item.img-r .row-2 h3:before {
   border-left-color: #000;
}

.service-item.img-r .row-2 h3:after {
   background-color: #000;
}

.service-item.last .row-2 {
   padding-bottom: 100px;
}

@media screen and (max-width: 1200px) {
   .service-item .row-1 {
      gap: 30px;
   }

   .service-item .row-1 figure {
      width: calc(100% - 500px);
   }

   .service-item .row-1 .no {
      right: -30px;
   }

   .service-item.img-r .row-1 .no {
      left: -30px;
   }
}

@media screen and (max-width: 1023px) {
   .service-item .row-1 {
      flex-direction: column;
      align-items: center;
      padding-bottom: 0;
   }

   .service-item .row-1 figure {
      width: 100%;
      height: auto;
   }

   .service-item .row-1 .col {
      width: 100%;
      padding: 0 30px 100px;
      box-sizing: border-box;
   }

   .service-item .row-1 .no {
      right: 0;
      bottom: 0;
   }

   .service-item .row-2 .box-1 {
      gap: 20px;
   }

   .service-item.img-r .row-1 {
      flex-direction: column;
   }

   .service-item.img-r .row-1 .no {
      left: 0;
   }
}

@media screen and (max-width: 767px) {

   .service-item:not(.img-r):before,
   .service-item.img-r:before {
      height: 50px;
      top: -49px;
   }

   .service-item .row-1 {
      flex-direction: column;
      align-items: center;
   }

   .service-item .row-1 figure {
      width: 100%;
      height: auto;
   }

   .service-item .row-1 .col {
      padding: 0 20px 60px;
   }

   .service-item .row-1 .txt {
      padding-top: 20px;
   }

   .service-item .row-1 .no {
      font-size: 150px;
      right: 0;
   }

   .service-item .row-2 {
      padding-bottom: 100px;
   }

   .service-item .row-2 .box-1 {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .service-item .row-2 .box-2 .list {
      grid-template-columns: 1fr;
      gap: 20px;
   }

   .service-item.img-r .row-1 {
      flex-direction: column;
   }
}

/* =============================================
 * 会社概要
*=============================================*/
#company__message {
   padding-top: 120px;
   position: relative;
}

#company__message .deco {
   width: 45%;
   max-width: 645px;
   position: absolute;
   top: 0;
   left: 0;
}

#company__message .wrap {
   display: flex;
   justify-content: flex-end;
   gap: 100px;
}

#company__message .col {
   width: 420px;
}

#company__message .txt,
#company__message .name {
   padding-top: 30px;
}

#company__message .name .h-22 {
   font-size: 22px;
}

#company__message .photo {
   width: 580px;
}

#company__message .photo figure:nth-child(1) {
   width: 90%;
   max-width: 520px;
}

#company__message .photo figure:nth-child(2) {
   width: 70%;
   max-width: 400px;
   margin-left: auto;
   padding-top: 40px;
}

#company__message .photo-full {
   padding-top: 110px;
}

@media screen and (max-width: 1023px) {
   #company__message .wrap {
      flex-direction: column;
      align-items: center;
   }

   #company__message .col {
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #company__message {
      padding-top: 50px;
   }

   #company__message .wrap {
      gap: 30px;
   }

   #company__message .txt,
   #company__message .name {
      padding-top: 20px;
   }

   #company__message .photo {
      width: 100%;
   }

   #company__message .photo figure:nth-child(2) {
      padding-top: 20px;
   }

   #company__message .photo-full {
      padding-top: 50px;
   }
}

/* -- -- */
#company__overview {
   padding: 200px 0 100px;
   position: relative;
}

#company__overview:before {
   content: '';
   width: 64%;
   height: 100px;
   background-color: #193990;
   clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
   position: absolute;
   top: 0;
   left: 0;
}

#company__overview .tb-info {
   padding-top: 40px;
}

#company__overview .tb-info a[target="_blank"] {
   display: inline-block;
   background: url("../img/common/icon-blank-blue.png") no-repeat center right/15px auto;
   color: #193990;
   padding-right: 23px;
   text-decoration: underline;
}

#company__overview .tb-info a[target="_blank"]:hover {
   text-decoration: none;
}

#company__overview figure {
   background-color: #fff;
   max-width: 640px;
   margin: 40px auto 0;
}

.page-id-36 #company__overview {
   padding-top: 100px;
}

.page-id-36 #company__overview:before {
   display: none;
}

@media screen and (max-width: 767px) {
   #company__overview {
      padding: 100px 0 50px;
   }

   #company__overview:before {
      height: 50px;
   }

   #company__overview .tb-info {
      padding-top: 20px;
   }

   .page-id-36 #company__overview {
      padding-top: 50px;
   }
}

/* -- -- */
#company__service {
   padding-bottom: 100px;
}

#company__service .wrap {
   background-color: #fff;
   padding: 60px 100px;
}

#company__service h2 {
   font-size: 30px;
}

#company__service .box {
   display: grid;
   grid-template-columns: auto auto;
   gap: 30px 60px;
   padding-top: 60px;
   line-height: 30px;
}

#company__service .box .item {
   display: grid;
   grid-template-columns: 180px 1fr;
}

#company__service .box h3 {
   color: #193990;
   font-weight: 500;
}

#company__service .box ul li {
   text-indent: -16px;
   padding-left: 16px;
}

@media screen and (max-width: 1200px) {
   #company__service .wrap {
      padding: 60px;
   }
}

@media screen and (max-width: 1023px) {
   #company__service .box {
      grid-template-columns: 1fr;
   }
}

@media screen and (max-width: 767px) {
   #company__service {
      padding: 0 20px 50px;
   }

   #company__service .wrap {
      padding: 30px 20px;
   }

   #company__service h2 {
      font-size: 26px;
   }

   #company__service .box {
      gap: 20px;
      padding-top: 30px;
   }

   #company__service .box .item {
      grid-template-columns: 100px 1fr;
   }

   #company__service .box ul li {
      text-indent: -14px;
      padding-left: 14px;
   }
}

/* -- -- */
#company__history {
   padding-top: 100px;
}

#company__history .box {
   width: 560px;
   margin-left: auto;
   padding-top: 40px;
   line-height: 30px;
}

#company__history .box .item {
   position: relative;
}

#company__history .box .item:not(:last-child) {
   padding-bottom: 60px;
}

#company__history .box .item:not(:last-child):before {
   content: '';
   border-left: 1px solid #68B1D8;
   position: absolute;
   top: 45px;
   bottom: 7px;
   left: 10px;
}

#company__history .box h3 {
   color: #68B1D8;
   position: relative;
   padding-left: 60px;
}

#company__history .box h3:before {
   content: '';
   width: 20px;
   height: 18px;
   border: 2px solid #193990;
   position: absolute;
   top: 10px;
   left: 0;
   transform: rotate(-52deg);
   box-sizing: border-box;
   border-radius: 50%;
}

#company__history .box .txt {
   padding: 13px 0 0 60px;
}

#company__history .photo-full {
   padding-top: 180px;
}

@media screen and (max-width: 767px) {
   #company__history {
      padding-top: 50px;
   }

   #company__history .box {
      width: 100%;
   }

   #company__history .box .item:not(:last-child) {
      padding-bottom: 30px;
   }

   #company__history .box .item:not(:last-child):before {
      top: 40px;
      bottom: 5px;
   }

   #company__history .box h3 {
      padding-left: 30px;
   }

   #company__history .box h3:before {
      top: 7px;
   }

   #company__history .box .txt {
      padding: 10px 0 0 30px;
   }

   #company__history .photo-full {
      padding-top: 50px;
   }
}

/* -- -- */
/*=============================================
 * Contact
 *=============================================*/
.mailform {
   padding: 100px 0 160px;
}

.mailform__desc {
   padding-bottom: 120px;
}

.mailform__tel {
   background-color: #EAEDF2;
   padding: 60px 20px 40px;
}

.mailform__tel .ttl {
   letter-spacing: 0.04em;
}

.mailform__tel .number {
   max-width: 360px;
   margin: 0 auto;
   padding: 4px 40px 0 0;
}

.mailform__tel .time {
   font-size: 15px;
   line-height: 20px;
}

.mailform__form {
   padding-bottom: 100px;
}

.mailform .form-row {
   display: grid;
   grid-template-columns: 305px 1fr;
   align-items: flex-start;
   position: relative;
}

.mailform .form-row+.form-row {
   border-top: 1px solid #BBD4E2;
   margin-top: 40px;
   padding-top: 40px;
}

.mailform .form-row .caption {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 500;
   font-size: 18px;
   line-height: 28px;
}

.mailform .form-row .caption span {
   background-color: #F02A05;
   color: #fff;
   width: 50px;
   text-align: center;
   font-weight: 500;
   font-size: 15px;
   letter-spacing: 0.1em;
   line-height: 24px;
}

.mailform .form-row .input {
   font-weight: 500;
}

.mailform .form-note {
   display: block;
   font-size: 15px;
   line-height: 20px;
   padding-top: 5px;
}

.mailform .form-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding-top: 100px;
}

.mailform .form-btn input {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   cursor: pointer;
}

.mailform .form-btn p {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   width: 260px;
   height: 66px;
   background-color: #193990;
   color: #fff;
   line-height: 24px;
   box-sizing: border-box;
   padding: 0 20px;
   position: relative;
   border-radius: 0;
   text-align: center;
   transition: all 0.3s;
   cursor: pointer;
}

.mailform .form-btn p:after {
   content: '';
   width: 22px;
   height: 7px;
   background: url("../img/common/arrow-right-white.png") no-repeat center top/100% auto;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
}

.mailform .form-btn p:hover {
   background-color: #000;
   opacity: 1;
}

.mailform .form-btn .btn-back {
   background-color: #ccc;
   color: #4B4B4B;
}

.mailform .form-btn .btn-back:hover {
   opacity: 0.7;
}

.mailform .form-btn .wpcf7-spinner {
   display: none;
}

.mailform__thanks .txt p+p {
   padding-top: 30px;
}

.mailform__thanks .button {
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   .mailform {
      padding: 50px 0 80px;
   }

   .mailform__desc {
      padding-bottom: 50px;
   }

   .mailform__form {
      padding-bottom: 50px;
   }

   .mailform__tel {
      padding: 30px 20px;
   }

   .mailform__tel .number {
      padding: 5px 0 0;
   }

   .mailform__tel .time {
      font-size: 14px;
   }

   .mailform .form-row {
      grid-template-columns: 1fr;
      gap: 15px;
   }

   .mailform .form-row+.form-row {
      margin-top: 30px;
      padding-top: 30px;
   }

   .mailform .form-btn {
      flex-direction: column;
      padding-top: 30px;
   }

   .mailform__thanks .txt {
      font-size: 13px;
      text-align: justify;
   }

   .mailform__thanks .txt p+p {
      padding-top: 20px;
   }

   .mailform__thanks .button {
      padding-top: 30px;
   }
}

/* =============================================
 * Post Type
*=============================================*/
.wp-pagenavi {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
}

.wp-pagenavi>span,
.wp-pagenavi>a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 35px;
   height: 35px;
   border: 1px solid #263495;
   background-color: #263495;
   color: #fff;
   font-family: "Times New Roman", sans-serif;
   font-weight: 400;
   font-size: 20px;
   line-height: 24px;
   text-align: center;
   padding-bottom: 2px;
}

.wp-pagenavi .pages {
   display: none;
}

.wp-pagenavi a:hover {
   background-color: transparent;
   color: #263495;
   opacity: 1;
}

.wp-pagenavi .current {
   pointer-events: none;
   background-color: transparent;
   color: #263495;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
   background-color: transparent;
   color: #263495;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
   background-color: #263495;
   color: #fff;
}

.wp-pagenavi .previouspostslink {
   margin-right: 50px;
}

.wp-pagenavi .nextpostslink {
   margin-left: 50px;
}

@media screen and (max-width: 767px) {
   .wp-pagenavi .previouspostslink {
      margin-right: 10px;
   }

   .wp-pagenavi .nextpostslink {
      margin-left: 10px;
   }
}

/* -- -- */
.news-list {
   display: grid;
   gap: 20px;
   line-height: 26px;
}

.news-list .item {
   display: grid;
   grid-template-columns: auto auto 1fr;
   align-items: center;
   gap: 30px;
   background-color: #EAEDF2;
   padding: 20px 30px;
}

.news-list .cat {
   font-weight: 500;
   font-size: 15px;
}

.news-list .cat a {
   display: block;
   min-width: 140px;
   background-color: #193990;
   color: #fff;
   padding: 2px 5px 3px;
   text-align: center;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   display: -webkit-box;
   overflow: hidden;
}

.news-list .cat a:hover {
   background-color: #000;
   opacity: 1;
}

.news-list .ttl {
   font-size: 18px;
   letter-spacing: 0.02em;
}

.news-list .ttl a {
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   display: -webkit-box;
   overflow: hidden;
}

.news-list .ttl a:hover {
   color: #193990;
   opacity: 1;
}

@media screen and (max-width: 767px) {
   .news-list .item {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 10px 20px;
   }

   .news-list .cat {
      font-size: 14px;
   }

   .news-list .cat a {
      min-width: inherit;
      padding: 2px 10px;
   }

   .news-list .ttl {
      font-size: 16px;
   }

   .news-list .ttl a {
      -webkit-line-clamp: 2;
   }
}

/* -- -- */
.sidebar {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   flex-wrap: wrap;
   gap: 5px;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 26px;
}

.sidebar a {
   display: block;
   color: #193990;
   border-radius: 50px;
   padding: 4px 22px 6px;
}

.sidebar a.current,
.sidebar a:hover {
   background-color: #193990;
   color: #fff;
   opacity: 1;
}

@media screen and (max-width: 767px) {
   .sidebar {
      font-size: 16px;
   }

   .sidebar a {
      padding: 4px 12px;
   }
}

/*=============================================
 * 
 *=============================================*/
#cpt-news {
   padding: 100px 0 160px;
}

#cpt-news .news-list {
   padding-top: 60px;
}

#cpt-news .wp-pagenavi {
   padding-top: 100px;
}

@media screen and (max-width: 767px) {
   #cpt-news {
      padding: 50px 0 80px;
   }

   #cpt-news .news-list {
      padding-top: 30px;
   }

   #cpt-news .wp-pagenavi {
      padding-top: 50px;
   }
}

/*=============================================
 * Post Detail
 *=============================================*/
.cpt-single {
   padding: 100px 0 160px;
}

.cpt-single-meta {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 20px;
   color: #193990;
   line-height: 20px;
}

.cpt-single-meta .cat {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px;
   font-weight: 500;
   font-size: 15px;
   letter-spacing: 0.1em;
}

.cpt-single-meta .cat a {
   display: block;
   background-color: #193990;
   color: #fff;
   padding: 3px 13px;
}

.cpt-single-title {
   color: #193990;
   font-weight: 400;
   letter-spacing: 0.02em;
   line-height: 50px;
   padding-top: 15px;
}

.cpt-single-content {
   padding-top: 20px;
}

.cpt-single-content h2 {
   color: #193990;
   font-weight: 400;
   font-size: 25px;
   line-height: 36px;
   margin: 40px 0 15px;
   padding: 0;
}

.cpt-single-content h3 {
   color: #193990;
   font-weight: 500;
   font-size: 20px;
   line-height: 30px;
   margin: 40px 0 15px;
   padding: 0;
   box-sizing: border-box;
}

.cpt-single-content h4 {
   color: #193990;
   font-weight: 400;
   font-size: 18px;
   line-height: 26px;
   margin: 40px 0 15px;
   padding: 0;
}

.cpt-single-content h1:first-child,
.cpt-single-content h2:first-child,
.cpt-single-content h3:first-child,
.cpt-single-content h4:first-child,
.cpt-single-content h5:first-child,
.cpt-single-content h6:first-child {
   margin-top: 0;
}

.cpt-single-content h2+h3,
.cpt-single-content h2+h4,
.cpt-single-content h3+h4 {
   margin-top: 0;
}

.cpt-single-content mark {
   background-color: #ffb357;
   color: #333;
}

.cpt-single-content div:has(h3 + ul) {
   background-color: #F5F5F5;
   padding: 40px;
}

.cpt-single-content div:has(h3 + ul) ul {
   font-size: 18px;
}

.cpt-single-content div:has(h3 + ul) ul li {
   text-indent: -18px;
   padding-left: 18px;
}

.cpt-single-content div:has(img, h3 + ol):after {
   content: "." !important;
   clear: both !important;
   display: block !important;
   height: 0 !important;
   visibility: hidden !important;
}

.cpt-single-content div:has(img, h3 + ol) p:first-child {
   width: 46%;
   float: left;
   margin-right: 4%;
}

.cpt-single-content div:has(img, h3 + ol) h3 {
   margin: 0;
   padding: 15px 0;
}

.cpt-single-content div:has(img, h3 + ol) ol li {
   text-indent: -16px;
   padding-left: 16px;
}

.cpt-single-content p img {
   display: inline-block;
   vertical-align: top;
   margin-right: 10px;
}

.cpt-single-content p img.aligncenter {
   display: block;
   margin: 0 auto;
}

.cpt-single-content p img.alignright {
   display: block;
   margin-left: auto;
}

.cpt-single-content p img:last-child {
   margin-right: 0;
}

.cpt-single-btn {
   font-size: 15px;
   line-height: 20px;
   padding-top: 50px;
}

.cpt-single-btn ul {
   display: grid;
   grid-template-columns: 35px 106px 35px;
   justify-content: center;
   align-items: center;
   gap: 60px;
}

.cpt-single-btn a {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 35px;
   color: #263495;
   border: 1px solid #263495;
   box-sizing: border-box;
   text-align: center;
}

.cpt-single-btn a:hover {
   background-color: #263495;
   color: #fff;
   opacity: 1;
}

@media screen and (max-width: 1023px) {
   .cpt-single-content p img {
      display: block;
      margin: 0 auto 15px;
   }

   .cpt-single-content p img:last-child {
      margin: 0 auto;
   }

   .cpt-single-content div:has(img, h3 + p) p:first-child {
      width: auto;
      float: none;
      margin-right: 0;
   }
}

@media screen and (max-width: 767px) {
   .cpt-single-title {
      font-size: 24px;
      line-height: 36px;
   }

   .cpt-single-content h2 {
      font-size: 20px;
   }

   .cpt-single-content h3 {
      font-size: 18px;
   }

   .cpt-single-content h4 {
      font-size: 16px;
   }

   .cpt-single-content div:has(h3 + ul) {
      padding: 20px;
   }

   .cpt-single-content div:has(h3 + ul) ul {
      font-size: 16px;
   }

   .cpt-single-content div:has(h3 + ul) ul li {
      text-indent: -16px;
      padding-left: 16px;
   }

   .cpt-single-content div:has(img, h3 + ol) ol li {
      text-indent: -14px;
      padding-left: 14px;
   }

   .cpt-single-content p img {
      display: block;
      margin: 0 auto 15px;
   }

   .cpt-single-content p img.alignright {
      margin: 0 auto 15px;
   }

   .cpt-single-content p img:last-child {
      margin: 0 auto;
   }

   .cpt-single-btn {
      padding-top: 40px;
   }

   .cpt-single-btn ul {
      gap: 20px;
   }
}

/*# sourceMappingURL=contents.css.map */