@charset "UTF-8";
.container {
  max-width: 1280px;
  margin: auto;
  width: 90%;
}

.post-wrap {
  background-color: #fff;
  padding: 150px 0;
}
@media (max-width: 768px) {
  .post-wrap {
    padding: 24px 0;
  }
}
.post-wrap .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .post-wrap .category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
}
.post-wrap .category-label {
  display: block;
  position: relative;
  border: 1px solid #36536E;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 0 5px 5px 0;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .post-wrap .category-label {
    width: 40%;
    padding: 4px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.post-wrap .category-label:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.post-wrap .category-label.is-color-1 {
  color: #fff;
  background-color: #001A51;
  border-color: #001A51;
}
.post-wrap .category-label.is-color-2 {
  color: #fff;
  background-color: #00579E;
  border-color: #00579E;
}
.post-wrap .category-label.is-color-3 {
  color: #fff;
  background-color: #00A0E9;
  border-color: #00A0E9;
}
.post-wrap .category-label svg {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .post-wrap .category-label a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .post-wrap .category-label a span {
    display: block;
    text-align: center;
  }
}
.post-wrap .category-label::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 39px;
  left: -11px;
  top: -1.5px;
  background-image: url(../img/post/cat-deco.png);
  background-size: cover;
  background-position: center;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 768px) {
  .post-wrap .category-label::before {
    height: calc(100% + 2px);
    top: -1px;
  }
}
.post-wrap .archive-nav {
  margin-bottom: 50px;
}
.post-wrap .post-list .post-item {
  padding: 30px 0;
  border-bottom: 1px solid #000;
}
.post-wrap .post-list .post-item:first-child {
  border-top: 1px solid #000;
}
.post-wrap .post-list .post-item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .inner {
    gap: 8px;
  }
}
.post-wrap .post-list .post-item .inner .thumb-wrap {
  width: 20%;
  aspect-ratio: 252/192;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .inner .thumb-wrap {
    width: 31%;
  }
}
.post-wrap .post-list .post-item .inner .thumb-wrap img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .inner .thumb-wrap img {
    aspect-ratio: 96/74;
    height: unset;
  }
}
.post-wrap .post-list .post-item .inner .post-content {
  width: calc(80% - 48px - 32px);
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .inner .post-content {
    width: calc(69% - 8px);
  }
}
.post-wrap .post-list .post-item .category-label {
  margin-left: 12px;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .category-label {
    width: 100%;
    font-size: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.post-wrap .post-list .post-item .info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    margin-top: 10px;
  }
}
.post-wrap .post-list .post-item .info-wrap .post-date {
  width: 90px;
  line-height: 1.8;
  font-size: 16px;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .info-wrap .post-date {
    width: 100%;
    line-height: 1.2;
  }
}
.post-wrap .post-list .post-item .info-wrap .post-title {
  font-size: 20px;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .info-wrap .post-title {
    width: 100%;
    font-size: 16px;
  }
}
.post-wrap .post-list .post-item .info-wrap .post-title .post-excerpt {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
}
.post-wrap .post-list .post-item .arr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .post-wrap .post-list .post-item .arr {
    display: none;
  }
}
.post-wrap .post-list .post-item a:hover .arr {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.post-wrap .post-list .pagination-wrapper {
  margin-top: 40px;
}
.post-wrap .post-list .wp-pagenavi {
  text-align: center;
}
.post-wrap .post-list .wp-pagenavi .current, .post-wrap .post-list .wp-pagenavi a {
  font-weight: 700;
  font-size: 16px;
  margin: 0 15px;
  display: inline-block;
}
.post-wrap .post-list .wp-pagenavi .current {
  padding: 0 10px;
  line-height: 2;
}
.post-wrap .post-list .wp-pagenavi a {
  border: none;
  color: #6D7FAC;
}

/* news 個別ページの背景：上部だけ淡いブルー→白のグラデーション */
.single-news .p-single {
  background: -webkit-gradient(linear, left top, left bottom, from(#E0EDFF), color-stop(10%, #E0EDFF), color-stop(25%, #fff), to(#fff));
  background: linear-gradient(to bottom, #E0EDFF 0%, #E0EDFF 10%, #fff 25%, #fff 100%);
}

.p-single {
  background-color: #fff;
  padding-top: 200px;
}
@media (max-width: 768px) {
  .p-single {
    padding-top: 40px;
  }
}
.p-single .news-single {
  margin: auto;
}
.p-single .news-single svg {
  display: block;
  margin: auto;
  max-width: 100%;
  margin-top: 30px;
}
.p-single .cat-label {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background-color: #001A51;
  font-size: 24px;
}
.p-single .date {
  display: block;
  margin-bottom: 15px;
  text-align: right;
}
.p-single .single-content {
  padding: 0 15px 50px;
}
@media (max-width: 768px) {
  .p-single .single-content {
    padding-bottom: 0px;
  }
}
.p-single .single-content h2 {
  font-weight: 700;
  color: #0068B7;
  border-bottom: dotted 2px #00579E;
  font-size: clamp(24px, 2.6315789474vw, 40px);
  line-height: 1.5;
  margin-bottom: 25px;
}
.p-single .single-content h3 {
  font-weight: 700;
  padding-left: 20px;
  color: #001A51;
  font-size: clamp(22px, 2.3684210526vw, 36px);
  border-left: 8px solid #00579E;
  line-height: 1;
  margin-bottom: 25px;
}
.p-single .single-content h4, .p-single .single-content h5, .p-single .single-content h6 {
  color: #001A51;
  font-weight: 700;
  margin-bottom: 25px;
}
.p-single .single-content h4 {
  font-size: clamp(21px, 2.1052631579vw, 32px);
}
.p-single .single-content h5 {
  font-size: clamp(20px, 1.8421052632vw, 28px);
}
.p-single .single-content h6 {
  font-size: clamp(18px, 1.5789473684vw, 24px);
}
.p-single .single-content p {
  font-size: clamp(16px, 1.3157894737vw, 20px);
}
.p-single .single-content > * {
  margin-bottom: 1.5rem;
}
.p-single .single-content p {
  margin-bottom: 1.5em;
}
.p-single .single-content ul, .p-single .single-content ol {
  padding-left: 1.5em;
  margin-bottom: 2em;
}
.p-single .single-content ul li, .p-single .single-content ol li {
  margin-bottom: 0.5em;
}
.p-single .single-content ul {
  list-style: disc;
}
.p-single .single-content ol {
  list-style-type: decimal;
}
.p-single .single-content blockquote {
  padding: 20px 30px;
  background: #f8f9fa;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #666;
  margin: 2em 0;
}
.p-single .single-content strong, .p-single .single-content b {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(255, 241, 0, 0.4)));
  background: linear-gradient(transparent 70%, rgba(255, 241, 0, 0.4) 70%);
}
.p-single .single-content figure {
  margin: 1em 0;
}
.p-single .single-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  vertical-align: bottom;
}
.p-single .single-content figure figcaption {
  margin-top: 0.8em;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}
.p-single .single-content .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.p-single .single-content .alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1em;
}
.p-single .single-content .alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1em;
}
.p-single .single-content .wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .p-single .single-content .wp-block-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em;
  }
}
.p-single .single-content .wp-block-columns .wp-block-column {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
  word-break: break-word;
}
.p-single .single-content .wp-block-columns .wp-block-column > *:last-child {
  margin-bottom: 0;
}
.p-single .single-content .wp-block-table {
  margin: 2em 0;
  overflow-x: auto;
}
.p-single .single-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
.p-single .single-content .wp-block-table table th, .p-single .single-content .wp-block-table table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}
.p-single .single-content .wp-block-table table th {
  background: #f2f2f2;
  font-weight: bold;
}
.p-single .single-content hr.wp-block-separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 3em auto;
}
.p-single .single-content .wp-block-button {
  margin-bottom: 1.5em;
}
.p-single .single-content .wp-block-button .wp-block-button__link {
  display: block;
  margin: auto;
  border: 3px solid #6D7FAC;
  color: #6D7FAC;
  background-color: #E5E9F1;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-single .single-content .wp-block-button .wp-block-button__link:hover {
  opacity: 0.8;
}
.p-single .single-control {
  background-color: #00579E;
}
@media (max-width: 768px) {
  .p-single .single-control .category-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
    max-width: 400px;
    margin: auto;
    margin-left: 20px;
  }
}
.p-single .single-control .category-list .category-label {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-single .single-control .category-list .category-label::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-single .single-control .category-list .category-label svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-single .single-control {
  padding: 50px 0;
}
.p-single .single-control .container {
  max-width: 1800px;
  width: 95%;
}
.p-single .single-control .border {
  margin: 15px 0 30px;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.p-single .single-control .link-btn {
  color: #fff;
  font-size: 24px;
}
.p-single .single-control .link-btn .txt {
  margin-left: 20px;
}
.p-single .single-control .link-btn:hover svg {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-single .case-post-top a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-single .case-post-top .link-btn {
  margin: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #6D7FAC;
  font-weight: 500;
}

@-webkit-keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}

@keyframes fv-w {
  0% {
    stroke-dashoffset: var(--len);
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1.5px;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
.page-tit.case-single .fv-bg::before {
  background-image: url(../img/post/case_fv_bg.png);
}
.page-tit.case-single .inner {
  padding: 150px 0 0px;
  text-align: center;
}
.page-tit.case-single .inner .line-tit path {
  stroke: #fff;
  -webkit-animation: fv-w 2s forwards 0.8s;
          animation: fv-w 2s forwards 0.8s;
}
.page-tit.case-single .inner .tit-ja {
  color: #fff;
}
.page-tit.case-single .inner .tit-en, .page-tit.case-single .inner .tit-ja {
  display: inline-block;
}
.page-tit.case-single .inner-2 {
  padding: 0 0 50px;
}
.page-tit.case-single .inner-2 .bg_ttl {
  color: #fff;
  background-color: #00579E;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 0 6px rgba(15, 82, 107, 0.8);
          box-shadow: 0 0 6px rgba(15, 82, 107, 0.8);
  font-weight: 700;
  padding: 10px 20px;
  font-size: clamp(30px, 2.9166666667vw, 56px);
  margin: auto;
}/*# sourceMappingURL=post.css.map */