@charset "UTF-8";
/*
|---------------------------------------------------------------
| ec-connector-2025 css
|---------------------------------------------------------------
*/
:root {
  --ecc-body-color: #000000;
  --ecc-body-bgcolor: #ffffff;
  --ecc-font-family-base: Noto Sans JP, Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, YuGothic, Yu Gothic, sans-serif;
  --ecc-font-family-en: Lato, Noto Sans JP, Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, YuGothic, Yu Gothic, sans-serif;
  --ecc-font-size-base: 16px;
  --ecc-container-maxwidth: 1100px;
  --ecc-container-padding: 15px;
  --ecc-section-title-border-color: #004688;
  --ecc-button-color: #000000;
  --ecc-button-bgcolor: #ffffff;
  --ecc-button-border-color: #000000;
  --ecc-button-hover-color: #ffffff;
  --ecc-button-hover-bgcolor: #004688;
  --ecc-button-hover-border-color: var(--ecc-button-hover-bgcolor, #004688);
  --ecc-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.27);
  --ecc-light-color: #f2f0f0;
}

/*
 * base
------------------------------------------------*/
body {
  min-width: 320px;
  color: var(--ecc-body-color, #000000);
  background: var(--ecc-body-bgcolor, #ffffff);
  font-family: var(--ecc-font-family-base, sans-serif);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

::-moz-selection {
  background-color: rgba(0, 70, 136, 0.4);
}

::selection {
  background-color: rgba(0, 70, 136, 0.4);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.6;
}

sup {
  top: -0.25em;
}

/*
 * Device
------------------------------------------------*/
@media (min-width: 750.02px) {
  .d-none--pc {
    display: none !important;
  }
}
@media (max-width: 750px) {
  .d-none--sp {
    display: none !important;
  }
}

/*
 * Container
------------------------------------------------*/
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1130px;
  padding-left: 15px;
  padding-right: 15px;
  max-width: calc(var(--ecc-container-maxwidth, 1100px) + var(--ecc-container-padding, 15px) * 2);
  padding-left: var(--ecc-container-padding, 15px);
  padding-right: var(--ecc-container-padding, 15px);
}

/*
 * Breadcrumb
------------------------------------------------*/
.ecc-breadcrumb {
  display: block;
  width: 100%;
  overflow: hidden;
  font-size: clamp(10px, 1.33vw, 14px);
}
.ecc-breadcrumb__list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.ecc-breadcrumb__list__item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.ecc-breadcrumb__list__item + .ecc-breadcrumb__list__item::before {
  content: "";
  width: 1px;
  height: 0.75em;
  background: #000000;
  margin: 0 1em;
  flex-shrink: 0;
}

.ecc-breadcrumb-text {
  display: block;
  color: inherit;
  font-weight: 600;
}
.ecc-breadcrumb-text[href] {
  font-weight: 400;
  text-decoration: none;
}
.ecc-breadcrumb-text[href]:hover {
  text-decoration: underline;
}

/*
 * Button
------------------------------------------------*/
.ecc-button {
  width: 20.31em;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  padding: 0.69em 0.5em;
  font-weight: 800;
  text-align: center;
  color: var(--ecc-button-color, #000000);
  background-color: var(--ecc-button-bgcolor, #ffffff);
  border: 2px solid var(--ecc-button-border-color, #000000);
  border-radius: 2.5em;
  overflow: hidden;
  transition: color 0.25s, background-color 0.3s, border-color 0.3s;
}
@media (min-width: 750.02px) {
  .ecc-button {
    width: 22.22em;
    font-size: 18px;
    line-height: 1.5;
    padding-top: 1.03em;
    padding-bottom: 1.03em;
    border-width: 3px;
  }
}
.ecc-button[href] {
  text-decoration: none;
}
.ecc-button[href]:hover {
  opacity: 1;
  color: var(--ecc-button-hover-color, #ffffff);
  background-color: var(--ecc-button-hover-bgcolor, #004688);
  border-color: var(--ecc-button-hover-border-color, #004688);
}
.ecc-button[href].has-left::before {
  --fa: "\f053";
  content: var(--fa);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-decoration: none;
  margin-right: 0.25em;
}
.ecc-button[href].has-right::after {
  --fa: "\f054";
  content: var(--fa);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-decoration: none;
  margin-left: 0.25em;
}

/*--------------- Theme ---------------*/
.ecc-button.is-cta-primary {
  --ecc-button-color: #000000;
  --ecc-button-bgcolor: #e6c450;
  --ecc-button-border-color: #e6c450;
  --ecc-button-hover-color: var(--ecc-button-color);
  --ecc-button-hover-bgcolor: #fcd358;
  --ecc-button-hover-border-color: var(--ecc-button-hover-bgcolor);
  font-weight: 600;
}
.ecc-button.is-cta-secondary {
  --ecc-button-color: #000000;
  --ecc-button-bgcolor: #ffffff;
  --ecc-button-border-color: #ffffff;
  --ecc-button-hover-color: var(--ecc-button-color);
  --ecc-button-hover-bgcolor: #c4e8f9;
  --ecc-button-hover-border-color: var(--ecc-button-hover-bgcolor);
  font-weight: 600;
}

/*
 * Price
------------------------------------------------*/
.ecc-price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.ecc-price__main {
  display: inline-flex;
  align-items: baseline;
}
.ecc-price__main__value {
  display: block;
  font-family: var(--ecc-font-family-en, var(--ecc-font-family-base, sans-serif));
  font-size: 1.57em;
  letter-spacing: 0.025em;
}
.ecc-price__main__addon {
  display: block;
}
.ecc-price__addon {
  display: block;
  font-size: 0.71em;
}

/*--------------- xx円 / xx ---------------*/
.ecc-perPrice {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.ecc-perPrice__addon {
  display: block;
}

/*--------------- xx: xx円 ---------------*/
.ecc-genrePrice {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 5px;
}
@media (min-width: 750.02px) {
  .ecc-genrePrice {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
}
.ecc-genrePrice__group {
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
@media (min-width: 750.02px) {
  .ecc-genrePrice__group {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.ecc-genrePrice__group + .ecc-genrePrice__group {
  margin-top: 5px;
}
.ecc-genrePrice__head {
  display: block;
  font-size: 14px;
  line-height: 1;
  padding: 0.21em 0.5em;
  font-weight: 700;
  text-align: center;
  margin: 0;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 1.5em;
  overflow: hidden;
}
@media (min-width: 750.02px) {
  .ecc-genrePrice__head {
    font-size: 20px;
    line-height: 1.5;
    padding: 0.13em 1em;
  }
}
.ecc-genrePrice__body {
  flex-grow: 1;
  flex-basis: 0;
}

/*
 * Pagination
------------------------------------------------*/
.ecc-pagination {
  display: block;
  width: 100%;
  margin: 25px 0;
}
@media (min-width: 750.02px) {
  .ecc-pagination {
    margin: 50px 0;
  }
}
.ecc-pagination__list {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ecc-pagination__list__item {
  display: block;
}
@media (min-width: 750.02px) {
  .ecc-pagination__list {
    gap: 15px;
  }
}

.ecc-pagination-link {
  display: block;
  min-width: 1.8em;
  font-size: 20px;
  line-height: 1.5;
  padding: 0.15em 0.25em;
  font-family: var(--ecc-font-family-en, var(--ecc-font-family-base, sans-serif));
  color: #5d5c5c;
  text-align: center;
  text-decoration: none;
  border-radius: 2.5px;
  overflow: hidden;
}
@media (min-width: 750.02px) {
  .ecc-pagination-link {
    font-size: 20px;
    border-radius: 5px;
  }
}
.ecc-pagination-link[href]:hover {
  text-decoration: underline;
}

.ecc-pagination__list__item.is-current .ecc-pagination-link {
  font-weight: bold;
}
.ecc-pagination__list__item.is-prev .ecc-pagination-link, .ecc-pagination__list__item.is-next .ecc-pagination-link {
  color: #ffffff;
  background: #5d5c5c;
  text-decoration: none !important;
}
.ecc-pagination__list__item.is-prev {
  margin-right: 10px;
}
.ecc-pagination__list__item.is-next {
  margin-left: 10px;
}
@media (min-width: 750.02px) {
  .ecc-pagination__list__item.is-prev {
    margin-right: 15px;
  }
  .ecc-pagination__list__item.is-next {
    margin-left: 15px;
  }
}

/*
 * Article Pager
------------------------------------------------*/
.ecc-pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 750.02px) {
  .ecc-pager {
    font-size: 16px;
  }
}
.ecc-pager__prev::after, .ecc-pager__next::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: currentColor;
}
.ecc-pager__prev::after {
  margin-left: 1.25em;
}
.ecc-pager__next::before {
  margin-right: 1.25em;
}
.ecc-pager__prev, .ecc-pager__next {
  display: flex;
  align-items: center;
}
.ecc-pager__prev {
  justify-content: flex-end;
}
.ecc-pager__next {
  justify-content: flex-start;
}
.ecc-pager__home {
  padding: 0 1.25em;
}

.ecc-pager-link {
  color: inherit;
  text-decoration: none;
}
.ecc-pager-link[href]:hover {
  text-decoration: underline;
}

/*
 * 読み込み中
------------------------------------------------*/
.ecc-loading {
  display: block;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/*
 * Section
------------------------------------------------*/
.ecc-section {
  display: block;
  width: 100%;
  padding: 50px 0;
}
.ecc-section__header {
  display: block;
  width: 100%;
}
.ecc-section__body {
  display: block;
  width: 100%;
}
.ecc-section__nav {
  display: block;
  width: 100%;
  margin-top: clamp(40px, 5.33vw, 60px);
}

.ecc-section-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  margin: 0 0 1em;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 0 0 15px;
  background-image: linear-gradient(var(--ecc-section-title-border-color) 0%, var(--ecc-section-title-border-color) 100%);
  background-repeat: no-repeat;
  background-size: 75px 3px;
  background-position: center bottom;
}
@media (min-width: 750.02px) {
  .ecc-section-title {
    padding: 0 0 20px;
    font-size: 42px;
    background-size: 90px 5px;
  }
}
.ecc-section-title span {
  display: block;
  width: auto;
  max-width: 100%;
}
.ecc-section-title small {
  display: block;
  width: 100%;
  font-size: 0.67em;
}
@media (min-width: 750.02px) {
  .ecc-section-title small {
    font-size: 0.57em;
  }
}

.ecc-section-lead {
  display: block;
  width: 100%;
  margin: 0 0 2em;
  font-size: clamp(14px, 1.87vw, 18px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.ecc-section-lead span {
  display: inline-block;
}

/*
 * Share
------------------------------------------------*/
.ecc-share {
  --ecc-sns-btn-height: 30px;
  display: block;
  width: 100%;
  margin: 15px 0;
}
.ecc-share__list {
  list-style: none;
  padding-left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
}
.ecc-share-snsLink {
  display: block;
  width: auto;
  height: var(--ecc-sns-btn-height);
  aspect-ratio: 1;
}
.ecc-share-snsLink img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ecc-share-copyBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: var(--ecc-sns-btn-height);
  padding: 0.25em 1em;
  border: 1px solid #000000;
  border-radius: 1.5em;
  color: #000000;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  opacity: 0.5;
  cursor: not-allowed;
}
.ecc-share-copyBtn.js--active {
  transition: all 0.25s;
  cursor: pointer;
  opacity: 1;
}
.ecc-share-copyBtn.js--active:hover {
  color: #ffffff;
  background-color: #1a81c8;
  border-color: #1a81c8;
}

/*
 * hashtag
------------------------------------------------*/
.ecc-hashtag::before {
  content: "#";
}
.ecc-hashtag[href] {
  text-decoration: underline;
  color: inherit;
}

/*
 * Page
------------------------------------------------*/
.ecc-page {
  display: block;
  width: 100%;
}
.ecc-page__header {
  display: block;
  width: 100%;
  padding: 80px 0;
  color: #ffffff;
  background-color: #1372b9;
  background-image: linear-gradient(90deg, #004688 0%, #1372b9 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  overflow: hidden;
}
.ecc-page__header::after {
  content: "";
  display: block;
  pointer-events: none;
  opacity: 0.1;
  width: 277px;
  height: auto;
  aspect-ratio: 570/405;
  background-image: url(../images/page/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 45px;
  left: auto;
  right: -40px;
  bottom: auto;
  z-index: 1;
  margin: auto;
}
.ecc-page__header > * {
  position: relative;
  z-index: 2;
}
@media (min-width: 750.02px) {
  .ecc-page__header {
    padding: 100px 0;
  }
  .ecc-page__header::after {
    width: 570px;
    top: 50px;
    right: -70px;
  }
}
.ecc-page__header.is-light {
  color: var(--ecc-body-color);
  background: var(--ecc-light-color);
}
.ecc-page__header.is-light::after {
  opacity: 1;
  width: 375px;
  top: auto;
  right: -90px;
  bottom: -70px;
}
@media (min-width: 750.02px) {
  .ecc-page__header.is-light::after {
    width: 42.45%;
    top: auto;
    right: -100px;
    bottom: -120px;
  }
}
.ecc-page__body {
  display: block;
  width: 100%;
  padding: 0 0 50px;
}
@media (min-width: 750.02px) {
  .ecc-page__body {
    padding-bottom: clamp(50px, 6.67vw, 120px);
  }
}
.ecc-page__breadcrumb {
  display: block;
  width: 100%;
  padding: clamp(20px, 2.67vw, 30px) 0;
}
.ecc-page__content {
  display: block;
  width: 100%;
}
@media (max-width: 750px) {
  .ecc-page__content {
    --ecc-container-padding: 0px;
  }
}
.ecc-page__pagination {
  display: block;
  width: 100%;
  padding: 30px 0;
  color: var(--ecc-body-color);
  background: var(--ecc-light-color);
}
@media (min-width: 750.02px) {
  .ecc-page__pagination {
    padding: 50px 0;
  }
}

.ecc-page-title {
  display: block;
  width: 100%;
  font-size: 30px;
  font-size: min(30px, 8vw);
  font-weight: 600;
  text-align: center;
}
@media (min-width: 750.02px) {
  .ecc-page-title {
    font-size: 50px;
  }
}

.ecc-page-lead {
  display: block;
  width: 100%;
  font-size: 13px;
  font-size: min(13px, 3.47vw);
  font-weight: 400;
  text-align: center;
}
@media (min-width: 750.02px) {
  .ecc-page-lead {
    font-size: 16px;
  }
}

/*
 * Brand
------------------------------------------------*/
.sitelogo {
  display: block;
  width: 100%;
  height: auto;
}
.sitelogo img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/*
 * Service
------------------------------------------------*/
.ecc-service {
  width: 100%;
  display: block;
}
.ecc-service__list {
  list-style: none;
  padding-left: 0;
}
.ecc-service__list__item {
  display: block;
}

.ecc-service-group {
  width: 100%;
  display: block;
}
.ecc-service-group__head {
  display: block;
  width: 100%;
  margin: 0 0 1em;
  font-size: 1em;
  font-weight: 500;
}
.ecc-service-group__body {
  width: 100%;
  display: block;
}

.ecc-service-block {
  width: 100%;
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.ecc-service-block__image {
  display: block;
  flex: 0 0 40px;
  max-width: 40px;
  margin-right: 1em;
}
.ecc-service-block__image img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.ecc-service-block__body {
  display: block;
  flex-grow: 1;
  flex-basis: 0;
}

.ecc-service-catchcopy {
  display: block;
  font-size: 0.88em;
  font-weight: 500;
}

.ecc-service-name {
  display: block;
  font-size: 1.25em;
  font-family: var(--ecc-font-family-en, var(--ecc-font-family-base, sans-serif));
  font-weight: 600;
}

/*
 * CTA
------------------------------------------------*/
.ecc-ctas {
  display: block;
  width: 100%;
  padding: 60px 0;
  color: #ffffff;
  background-color: #004688;
  background-image: url("../images/bg-cta_sp.jpg?t=1751243670439");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (min-width: 750.02px) {
  .ecc-ctas {
    padding: 100px 0;
    background-image: url("../images/bg-cta_pc.jpg?t=1751243670439");
    background-position: center;
  }
}

.ecc-cta {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.ecc-cta__header {
  display: block;
  width: 100%;
}
.ecc-cta__body {
  display: block;
  width: 100%;
}

.ecc-cta-title {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25em 0;
  margin: 0 0 2em;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 750.02px) {
  .ecc-cta-title {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 1.5em;
  }
}
.ecc-cta-title span {
  display: block;
}

/*--------------- Navs ---------------*/
.ecc-cta-navs {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 15px;
}
@media (min-width: 750.02px) {
  .ecc-cta-navs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 40px;
  }
}

.ecc-cta-nav {
  display: block;
}
.ecc-cta-nav__head {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.ecc-cta-nav__head__text {
  display: block;
  width: 100%;
}
.ecc-cta-nav__body {
  padding: 0 10px;
}
.ecc-cta-nav__head + .ecc-cta-nav__body::before {
  content: "";
  display: block;
  width: 100%;
  width: 92.31%;
  height: 4px;
  background-color: currentColor;
  margin: 0.5em auto;
  clip-path: polygon(0% 0%, calc(50% - 2.5px) 0%, 50% 62.5%, calc(50% + 2.5px) 0%, 100% 0%, 100% 25%, calc(50% + 2.5px) 25%, 50% 100%, calc(50% - 2.5px) 25%, 0% 25%);
}
@media (min-width: 750.02px) {
  .ecc-cta-nav {
    display: flex;
    flex-direction: column;
  }
  .ecc-cta-nav__head {
    font-size: clamp(14px, 1.87vw, 16px);
  }
  .ecc-cta-nav__body {
    width: 100%;
    padding: 0 10px;
    margin-top: auto;
  }
  .ecc-cta-nav__head + .ecc-cta-nav__body::before {
    height: 8px;
    clip-path: polygon(0% 0%, calc(50% - 4px) 0%, 50% calc(100% - 2px), calc(50% + 4px) 0%, 100% 0%, 100% 1px, calc(50% + 5px) 1px, 50% 100%, calc(50% - 5px) 1px, 0% 1px);
  }
}

@media (min-width: 750.02px) {
  .ecc-ctas .ecc-cta-nav {
    display: flex;
    flex-direction: column;
  }
  .ecc-ctas .ecc-cta-nav__head {
    width: 100%;
    margin: 0 0 0.5em;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75em;
    font-size: min(2.4vw, 24px);
    font-weight: 500;
  }
  .ecc-ctas .ecc-cta-nav__head::before, .ecc-ctas .ecc-cta-nav__head::after {
    content: "";
    display: block;
    width: 1em;
    height: 1px;
    background-color: currentColor;
  }
  .ecc-ctas .ecc-cta-nav__head__text {
    width: auto;
  }
  .ecc-ctas .ecc-cta-nav__body {
    width: 100%;
    padding: 0 10px;
    margin-top: auto;
  }
  .ecc-ctas .ecc-cta-nav__body::before {
    display: none;
  }
}

/*
 * News
------------------------------------------------*/
.ecc-news {
  display: block;
  width: 100%;
}
.ecc-news__list {
  list-style: none;
  padding-left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 10px;
}
.ecc-news__list__item {
  display: block;
  width: 100%;
}

.ecc-news-block {
  width: 100%;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: 5em minmax(0, 1fr);
  grid-gap: 10px;
  grid-template-areas: "category date" "title title";
  align-items: center;
  color: #000000;
  background: #e7edf4;
  border-radius: 5px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}
.ecc-news-block__category {
  grid-area: category;
}
.ecc-news-block__date {
  grid-area: date;
}
.ecc-news-block__title {
  grid-area: title;
}
.ecc-news-block__excerpt {
  grid-area: excerpt;
  display: none;
}
@media (min-width: 750.02px) {
  .ecc-news-block {
    padding: 20px 30px;
    grid-template-columns: 6.25em 6.25em minmax(0, 1fr);
    grid-template-areas: "category date title";
    grid-gap: 15px 20px;
    font-size: 16px;
  }
}

.ecc-news-category {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  padding: 0.08em 0.25em;
  color: #ffffff;
  background: #004688;
  border-radius: 1.5em;
  text-align: center;
}
@media (min-width: 750.02px) {
  .ecc-news-category {
    font-size: 16px;
    line-height: 1.5;
    padding: 0.19em 0.25em;
  }
}

.ecc-news-date {
  display: block;
  font-size: 12px;
  color: #1a81c8;
  font-weight: 500;
}
@media (min-width: 750.02px) {
  .ecc-news-date {
    font-size: 1em;
  }
}

.ecc-news-title {
  display: block;
  font-size: 1em;
}

/*
 * 掲載ロゴ
------------------------------------------------*/
.ecc-worklogos {
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 0 0 20px;
}
.ecc-worklogos__list {
  list-style: none;
  padding-left: 0;
}
.ecc-worklogos__list__item {
  display: flex;
}
.ecc-worklogos:not(.swiper-initialized) .ecc-worklogos__list {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}

.ecc-worklogos-image {
  display: block;
  width: 100%;
}
.ecc-worklogos-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  pointer-events: none;
}
