@charset "UTF-8";

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 15px;
  margin-bottom: 1em;
  border-radius: 10px;
}

.list-grid li {
  position: relative;
  padding-left: 1.5em;
  box-sizing: border-box;
  color: #1c1c1c;
}

.list-grid li::before {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  top: 0.58em;
  left: 0.35em;
}


.list-grid.blue {
  background: #e0f0fd;
}
.list-grid.blue li::before {
  background: #0092ec;
}

.list-grid.red {
  background: #f9e2eb;
}
.list-grid.red li::before {
  background: #ff5e73;
}

@media screen and (max-width: 767px) {
  .list-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    padding: 10px;
  }
}

.under h5 {
  margin-top: 2em;
}

/* フロー */
.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-bottom: 2em;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #8EB83C;
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #8EB83C;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #8EB83C;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

/* ヘッダー改修 */
@media screen and (min-width: 768px) {
  #menu-header-nav ul.sub-menu {
    left: 50%;
    transform: translateX(-50%);
    width: 55vw !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f1f1f1 !important;
    opacity: 0;
    transition: all 0.3s ease-out;
  }

  #menu-header-nav>li:hover>ul.sub-menu {
    opacity: 1;
  }

  #menu-header-nav>li:hover>ul.sub-menu li {
    border-top: unset !important;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  #menu-header-nav ul.sub-menu li a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    font-weight: bold;
  }

  #menu-header-nav ul.sub-menu li a:after {
    background: url(img/icon_arrow03.svg) no-repeat center/contain;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-bottom: 4px;
  }

  #menu-header-nav ul.sub-menu li a:hover {
    background: #84c8c1 !important;
    color: #fff;
  }

  #menu-header-nav ul.sub-menu li a:hover:after {
    filter: brightness(0) invert(1);
  }
}

/* コラム一覧 */
.column-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2em;
}

.column-list__item {
  margin: 0;
}

.column-list__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.column-list__link:hover .column-list__image {
  transform: scale(1.1);
  opacity: 1 !important;
}

.column-list__thumb {
  overflow: hidden;
  height: 180px;
  background: #e8e8e8;
  flex-shrink: 0;
}

.column-list__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.column-list__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.column-list__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: #1c1c1c;
  margin: 0 0 8px !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.column-list__date {
  font-size: 14px;
  line-height: 1.4;
  color: #2b5694;
  margin: auto 0 0 0 !important;
}

.column-list + .pager {
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .column-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .column-list__link {
    flex-direction: row;
    align-items: stretch;
    min-height: 100px;
    border-radius: 10px;
  }

  .column-list__thumb {
    flex: 0 0 40%;
    width: 40%;
    height: auto;
    align-self: stretch;
  }

  .column-list__thumb .column-list__image {
    min-height: 90px;
  }

  .column-list__body {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .column-list__title {
    font-size: 14px;
    margin-bottom: 8px !important;
  }

  .column-list__date {
    font-size: 12px;
  }
}

/* 個別記事サムネイル */
.entry-block .entry-thumb {
  margin: 0 0 1.5em;
  overflow: hidden;
  border-radius: 8px;
  max-width: 500px;
  margin-inline: auto;
}

.entry-block .entry-thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .entry-block .entry-thumb {
    margin-bottom: 1em;
    border-radius: 6px;
  }
}

/* コラム個別ページ 見出し */
.column.single h3 {
  padding-left: 0 !important;
}

.column.single h3::before {
  display: none;
}

.column.single h4 {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 2.5em 0 1.2em;
  padding: 0.8em 1.2em;
  background: linear-gradient(135deg, #84c8c1 0%, #5fafaa 100%);
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(95, 175, 170, 0.25);
}

.column.single h4:first-child {
  margin-top: 0;
}

.column.single h5 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #333;
  margin: 1.8em 0 0.9em;
  padding: 0 0 0.65em 1.5em;
  position: relative;
  border-bottom: 2px dotted #b8ddd8;
}

.column.single h5::before {
  content: "";
  position: absolute;
  left: 0.3em;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2b5694;
  box-shadow: 0 0 0 3px rgba(43, 86, 148, 0.12);
}

.column.single h4 + h5 {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .column.single h4 {
    font-size: 17px;
    margin-top: 2em;
    padding: 0.7em 1em;
    border-radius: 5px;
  }

  .column.single h5 {
    font-size: 15px;
    margin-top: 1.5em;
    padding-left: 1.3em;
  }

  .column.single h5::before {
    width: 8px;
    height: 8px;
    top: 0.5em;
  }
}

.column .menu-blog {
  display: none;
}

/*------------------------------
float cta
------------------------------*/
.float-cta {
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 110px;
  height: 110px;
  z-index: 9999;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  display: none;
}
.float-cta a {
  text-decoration: none !important;
}
.float-cta__link-text {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  line-height: 1.43;
}

@media screen and (max-width: 767px) {
  .float-cta {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: linear-gradient(to right, #000078, #0071f1);
    display: flex;
    transition: unset;
  }
  .float-cta__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1;
  }
  .float-cta__link:hover {
    opacity: 1 !important;
  }
  .float-cta__link:hover .float-cta__link-image {
    opacity: 1 !important;
  }
  .float-cta__link:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 1);
  }
  .float-cta__link-image {
    width: 34px;
    height: auto;
    aspect-ratio: 40/40;
    flex-shrink: 0;
  }

  .float-cta__link-text {
    font-size: 13px;
  }
}