@charset "UTF-8";
/* -----------------------------------------------
home
----------------------------------------------- */
/* -----------------------------------------------
recruit
----------------------------------------------- */
/* ====================================================
layout
==================================================== */
/* -----------------------------------------------
header
----------------------------------------------- */
.l-header {
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  height: 8rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .l-header {
    height: 5rem;
  }
}
.l-header.js-min_header {
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  .l-header.js-min_header {
    height: 6rem;
  }
}
.l-header__logo {
  width: 26rem;
  display: block;
  background-size: cover;
}
@media print, screen and (max-width: 768px) {
  .l-header__logo {
    width: 20rem;
  }
}
@media print, screen and (min-width: 768px) {
  .js-min_header .l-header__logo {
    width: 22rem;
  }
}
.l-header__inner {
  padding: 0 3rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
@media print, screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0 2rem;
    justify-content: space-between;
  }
}
.l-header__nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  z-index: 9999;
}
@media print, screen and (max-width: 768px) {
  .l-header__nav {
    margin-left: 0;
    width: 100%;
    padding: 5rem 2rem 0;
    position: absolute;
    left: 0;
    top: 5rem;
    background-color: #ebeced;
    height: calc(100vh - 5rem);
    display: none;
  }
  .l-header__nav.is_open {
    display: block;
  }
}
.l-header__links {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media print, screen and (max-width: 768px) {
  .l-header__links {
    display: block;
    width: 100%;
    height: auto;
    font-size: 1.8rem;
  }
}
.l-header__links > li {
  position: relative;
  margin-right: 4rem;
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li {
    width: 100%;
    border-bottom: 1px solid #c3c3c0;
  }
}
.l-header__links > li > a {
  color: #135984;
  display: block;
  position: relative;
  cursor: pointer;
  height: 100%;
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .js-min_header .l-header__links > li > a {
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li > a {
    padding: 1.8rem 0;
    height: auto;
    font-size: 1.5rem;
  }
}
.l-header__links > li > a:hover {
  color: #53a9ab;
}
.l-header__btn {
  line-height: 1;
  padding: 1.5rem 2rem 1.5rem 2rem;
  color: #fff;
  display: block;
  background-color: #135984;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .js-min_header .l-header__btn {
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header__btn {
    margin-top: 4rem;
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-left: 0;
    background-size: 2.8rem;
    padding: 2rem 2rem 2rem 3rem;
  }
}

/* -----------------------------------------------
hamburger
----------------------------------------------- */
.l-hamburger {
  display: none;
  cursor: pointer;
  margin-left: 1.6rem;
  z-index: 99999;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-hamburger {
    display: block;
    width: 2.5rem;
    height: 2rem;
  }
}
.l-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0%;
  margin: auto;
  height: 2px;
  border-radius: 2rem;
  width: 100%;
  background: #1c1c1c;
}
.js-min_header .l-hamburger span {
  background: #1c1c1c;
}
.l-hamburger span:nth-of-type(1) {
  top: 0;
}
.l-hamburger span:nth-of-type(2) {
  top: calc(50% - 0.1rem);
}
.l-hamburger span:nth-of-type(3) {
  bottom: 0;
}
.l-hamburger.is_open {
  height: 2.5rem;
}
.l-hamburger.is_open span:nth-of-type(1) {
  top: 1.3rem;
  transform: translateY(0) rotate(-223deg);
}
.l-hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger.is_open span:nth-of-type(3) {
  bottom: 1rem;
  transform: translateY(0) rotate(223deg);
}

/* ====================================================
footer
==================================================== */
.l-footer {
  background-color: #135984;
  padding: 8rem 0 5rem;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .l-footer {
    padding: 5rem 0 5rem;
  }
}
.l-footer__logo {
  width: 30rem;
  display: block;
}
.l-footer__logo > img {
  width: 100%;
}
.l-footer__head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__head {
    display: block;
  }
}
.l-footer__head > figcaption {
  width: calc(100% - 30rem);
}
@media print, screen and (max-width: 768px) {
  .l-footer__head > figcaption {
    width: 100%;
  }
}
.l-footer__head > figcaption > .add {
  font-weight: 400;
  margin-top: 3rem;
}
.l-footer__head > figcaption > .add > a {
  color: #fff;
}
.l-footer__head > figcaption > .btnarea {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__head > figcaption > .btnarea {
    gap: 1rem;
  }
}
.l-footer__head > figcaption > .btnarea > a {
  border: 1px solid #89acc2;
  color: #fff;
  display: block;
  width: 24rem;
  text-align: center;
  font-weight: 400;
  padding: 0.2rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__head > figcaption > .btnarea > a {
    width: auto;
    flex: 1;
    padding: 0.5rem;
  }
}
.l-footer__head > figcaption > .btnarea > a + a {
  margin-left: 2rem;
}
.l-footer__head > figure {
  width: 30rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__head > figure {
    width: 100%;
    margin-top: 2rem;
  }
}
.l-footer-nav {
  display: grid;
  color: #fff;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  border-top: 1px solid #89acc2;
  border-bottom: 1px solid #89acc2;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer-nav {
    display: none;
  }
}
.l-footer-nav a {
  color: #fff;
  font-size: 1.4rem;
}
.l-footer-nav__list > li {
  position: relative;
  padding-left: 1em;
}
.l-footer-nav__list > li::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 200;
  margin: auto;
  color: #fff;
  font-size: 1em;
}
.l-footer-nav__list > li + li {
  margin-top: 1rem;
}
.l-footer-nav__list > ul {
  display: grid;
  font-size: 1.4rem;
  grid-template-columns: repeat(2, max-content);
  margin-top: 0.7rem;
}
.l-footer-nav__list > ul > li {
  position: relative;
  padding-left: 1em;
  margin-right: 3rem;
}
.l-footer-nav__list > ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 1em;
  margin: auto;
  color: #fff;
  font-size: 0.5em;
}
.l-footer-nav__list > ul > li > a {
  font-weight: 400;
}
.l-footer__foot {
  padding-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 400;
}
@media print, screen and (max-width: 768px) {
  .l-footer__foot {
    display: block;
    text-align: center;
    border-top: 1px solid #89acc2;
  }
}
.l-footer__foot > .links > a {
  display: block;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .l-footer__foot > .links > a {
    margin-bottom: 1rem;
  }
}

/* ====================================================
contact
==================================================== */
.l-contact {
  background-color: #aac3d3;
  padding: 4.5rem 0;
  text-align: center;
}
.l-contact__title {
  line-height: 1.3;
  color: #135984;
  margin-bottom: 2rem;
}
.l-contact__title > .en {
  display: block;
  font-size: 4.4rem;
}
.l-contact__title > .ja {
  display: block;
  font-size: 1.5rem;
}
.l-contact__list {
  display: flex;
  margin-top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .l-contact__list {
    margin-top: 0;
    display: block;
  }
}
.l-contact__list > dl {
  width: 50%;
}
@media print, screen and (max-width: 768px) {
  .l-contact__list > dl {
    width: 100%;
    padding: 2rem 0;
  }
}
.l-contact__list > dl + dl {
  border-left: 1px solid #135984;
}
@media print, screen and (max-width: 768px) {
  .l-contact__list > dl + dl {
    border-top: 1px solid #135984;
    border-left: none;
  }
}
.l-contact__list > dl > dt {
  color: #135984;
  font-size: 2rem;
}
@media print, screen and (max-width: 768px) {
  .l-contact__list > dl > dt {
    font-size: 1.8rem;
  }
}
.l-contact__list > dl > dd > .btn {
  width: 35rem;
  margin: 0.4rem auto;
  height: 5.4rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-contact__list > dl > dd > .btn + p {
  font-weight: 400;
}
.l-contact__list > dl > dd > .btn-tell {
  font-size: 3.2rem;
}
.l-contact__list > dl > dd > .btn-contact {
  font-size: 2.2rem;
}
.l-contact__list > dl > dd > .btn-contact > span {
  display: inline-block;
  padding-left: 3rem;
  position: relative;
}
.l-contact__list > dl > dd > .btn-contact > span::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2.4rem;
  height: 1.7rem;
  background-image: url(../img/common/icon-mail.svg);
  background-size: cover;
}

/* ====================================================
mv
==================================================== */
.l-mv {
  padding-top: 4rem;
  overflow: hidden;
}
.l-mv__title {
  padding-left: 14rem;
  line-height: 1;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-mv__title {
    padding-left: 2rem;
  }
}
.l-mv__title::after {
  height: 1px;
  background-color: #135984;
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  margin: auto;
  width: calc(100% - 14rem);
  bottom: 0.3em;
}
@media print, screen and (max-width: 768px) {
  .l-mv__title::after {
    width: 95%;
    bottom: 0;
  }
}
.l-mv__title > .en {
  font-size: 7rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .l-mv__title > .en {
    font-size: 4rem;
    display: block;
  }
}
.l-mv__title > .ja {
  color: #135984;
  font-size: 3rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  margin-left: 4rem;
}
@media print, screen and (max-width: 768px) {
  .l-mv__title > .ja {
    font-size: 1.5rem;
    display: block;
    margin-left: 0;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }
}
.l-mv__img {
  width: calc(100% - 14rem);
  margin-left: auto;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .l-mv__img {
    width: 95%;
  }
}
.l-mv__category {
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: 29rem;
  margin-top: 4rem;
  padding-left: 4rem;
}
@media print, screen and (max-width: 768px) {
  .l-mv__category {
    height: 22rem;
    padding-left: 2rem;
    margin-top: 2rem;
    background-position: center;
  }
}
.l-mv__category.category-water {
  background-image: url(../img/consulting/water/mv.jpg);
}
.l-mv__category.category-sewer {
  background-image: url(../img/consulting/sewer/mv.jpg);
}
.l-mv__category.category-civil {
  background-image: url(../img/consulting/civil/mv.jpg);
}
.l-mv__category.category-survey {
  background-image: url(../img/consulting/survey/mv.jpg);
}
.l-mv__category.category-hydro {
  background-image: url(../img/consulting/hydro/mv.jpg);
}
.l-mv__category.category-longevity {
  background-image: url(../img/consulting/longevity/mv.jpg);
}
.l-mv__category.category-disaster {
  background-image: url(../img/consulting/disaster/mv.jpg);
}
.l-mv__category.category-geosoil {
  background-image: url(../img/consulting/geosoil/mv.jpg);
}
.l-mv__category.category-ict {
  background-image: url(../img/consulting/ict/mv.jpg);
}
.l-mv__category > .label {
  color: #fff;
  font-size: 4rem;
  padding: 0.2em 1em;
  line-height: 1.4;
  background: linear-gradient(139.61deg, #3191cd 2.57%, #24bd82 94.37%);
}
@media print, screen and (max-width: 768px) {
  .l-mv__category > .label {
    font-size: 2.8rem;
    padding: 0.2em 0.5em;
  }
}

/* ====================================================
sec
==================================================== */
.l-head {
  margin: 8rem 0;
}
@media print, screen and (max-width: 768px) {
  .l-head {
    margin: 4rem 0;
  }
}

.l-sec {
  margin: 10rem 0;
}
@media print, screen and (max-width: 768px) {
  .l-sec {
    margin: 8rem 0;
  }
}

.l-geometry_bg {
  background: url(../img/common/geometry_bg-bottom.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 40rem;
}
.l-geometry_bg .l-sec:last-child {
  margin-bottom: 0;
  padding-bottom: 10rem;
}
@media print, screen and (max-width: 768px) {
  .l-geometry_bg .l-sec:last-child {
    padding-bottom: 8rem;
  }
}

/* ====================================================
side
==================================================== */
.l-sidenav {
  position: fixed;
  left: 2rem;
  top: 12rem;
  z-index: 10;
}
@media print, screen and (max-width: 768px) {
  .l-sidenav {
    position: static;
    opacity: 1;
    padding: 3rem 2rem 0;
  }
}
@media print, screen and (max-width: 768px) {
  .l-sidenav ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
@media print, screen and (max-width: 768px) {
  .l-sidenav ul li {
    margin-right: 4rem;
  }
}
.l-sidenav ul li a {
  font-size: 1.4rem;
  color: #135984;
  opacity: 0.5;
  transition: color 0.3s;
  padding-left: 1.5rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-sidenav ul li a {
    color: #53a9ab;
    opacity: 1;
    padding-left: 1.8rem;
  }
  .l-sidenav ul li a::after {
    content: "";
    position: absolute;
    background-color: transparent;
    border-radius: 0;
    top: 40%;
    width: 0.4em;
    height: 0.4em;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(-45deg);
    left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .l-sidenav ul li a.is-active {
    color: #53a9ab;
    opacity: 1;
  }
  .l-sidenav ul li a.is-active::after {
    position: absolute;
    content: "";
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #53a9ab;
    width: 0.6em;
    height: 0.6em;
    border-radius: 50%;
    line-height: 1;
  }
}
.l-sidenav ul li a:hover {
  color: #53a9ab;
  opacity: 1;
}
.l-sidenav.is-philosophy ul li a {
  color: #9cc0d6;
}
.l-sidenav.is-philosophy ul li a.is-active {
  color: #53a9ab;
}

.l-sidecont {
  width: 110rem;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .l-sidecont {
    width: 100%;
  }
}
.l-sidecont__sec {
  padding: 6rem 0;
}
@media print, screen and (max-width: 768px) {
  .l-sidecont__sec {
    padding: 4rem 0;
  }
}
.l-sidecont__inner {
  padding: 0 14rem;
}
@media print, screen and (max-width: 768px) {
  .l-sidecont__inner {
    padding: 0 2rem;
  }
}

/* -----------------------------------------------
home
----------------------------------------------- */
.home-mv {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 76rem;
  height: calc(60rem - 8rem);
}
@media print, screen and (max-width: 768px) {
  .home-mv {
    padding: 2rem 3rem 0;
    height: 58rem;
  }
}
.home-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 3;
}
@media print, screen and (max-width: 768px) {
  .home-mv__inner {
    justify-content: space-between;
  }
}
.home-mv__slider {
  position: absolute !important;
  bottom: 0;
  right: 0;
  z-index: 1;
  margin-inline: auto;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 70%;
}
@media print, screen and (max-width: 768px) {
  .home-mv__slider {
    height: auto;
  }
}
.home-mv__slider .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}
.home-mv__slider .slick-img {
  aspect-ratio: 1280 / 530;
}
@media print, screen and (max-width: 768px) {
  .home-mv__slider .slick-img {
    aspect-ratio: 1 / 0.8;
  }
}
.home-mv__slider .slick-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-mv__slider.slick-img, .home-mv__slider.slick-img img {
  width: 100%;
  height: 100%;
}
.home-mv__title {
  font-size: 6.5rem;
  color: #135984;
  writing-mode: vertical-rl;
  order: 2;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .home-mv__title {
    font-size: 4.6rem;
    letter-spacing: 0;
    padding-right: 0;
    margin-top: 2rem;
  }
}
.home-mv__title > span {
  display: block;
}
.home-mv__title > span + span {
  text-indent: 0.5em;
}
.home-mv__txt {
  font-size: 2.4rem;
  color: #53a9ab;
  margin-top: 10rem;
}
@media print, screen and (max-width: 768px) {
  .home-mv__txt {
    font-size: 1.8rem;
    margin-top: 11rem;
  }
}
.home-mv > .logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90rem;
  z-index: 2;
  bottom: -14rem;
}
@media print, screen and (max-width: 768px) {
  .home-mv > .logo {
    width: 150%;
    bottom: 0;
    right: -15rem;
  }
}
.home-mv > .logo > img {
  width: 100%;
}
.home-copy {
  font-weight: 400;
  font-size: 6rem;
}
@media print, screen and (max-width: 768px) {
  .home-copy {
    font-size: 4rem;
  }
}
.home-strong {
  padding-top: 12rem;
  padding-bottom: 12rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .home-strong {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}
.home-strong .home-copy {
  position: absolute;
  left: 8rem;
  line-height: 1;
  z-index: 2;
  top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .home-strong .home-copy {
    right: 1rem;
    left: auto;
    top: auto;
  }
}
.home-strong__title {
  position: absolute;
  top: 14rem;
  left: 53rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #135984;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media print, screen and (max-width: 768px) {
  .home-strong__title {
    position: static;
    z-index: 2;
    font-size: 1.8rem;
    padding-left: 2rem;
    writing-mode: horizontal-tb;
  }
}
.home-strong__title .arrow-container {
  position: relative;
  animation: moveDown 1.5s infinite alternate;
  height: 50rem;
}
@media print, screen and (max-width: 768px) {
  .home-strong__title .arrow-container {
    display: none;
  }
}
.home-strong__title .arrow-container .arrow {
  width: 2px;
  height: 100%;
  background-color: #135984;
  position: absolute;
  left: 50%;
}
.home-strong__title .arrow-container .arrow::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0.7rem;
  transform: translateX(-50%) rotate(35deg);
  width: 1px;
  height: 2.5rem;
  border-right: 2px solid #135984;
}
@keyframes moveDown {
  0% {
    height: 45rem;
  }
  100% {
    height: 50rem;
  }
}
.home-strong__fix {
  z-index: 2;
  position: fixed;
  top: 30vh;
  bottom: 0;
  left: 23rem;
  color: #fff;
  font-size: 8rem;
  pointer-events: none;
  opacity: 0;
  line-height: 1;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@media print, screen and (max-width: 768px) {
  .home-strong__fix {
    display: none;
  }
}
.home-strong__fix.is-show {
  opacity: 1;
  transform: translateY(0);
}
.home-strong__fix li {
  font-weight: 700;
  margin-bottom: 3rem;
  opacity: 0.2;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.home-strong__fix li.is-active {
  opacity: 1;
  transform: scale(1);
  background: linear-gradient(90deg, #3191cd, #24bd82, #3191cd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease-in-out infinite alternate;
}
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.home-strong-sec {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14rem;
}
@media print, screen and (max-width: 768px) {
  .home-strong-sec {
    display: block;
  }
}
.home-strong-sec > figure {
  flex: 1;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .home-strong-sec > figure {
    aspect-ratio: 4 / 2;
    overflow: hidden;
  }
  .home-strong-sec > figure img {
    object-fit: cover;
  }
}
.home-strong-sec > figure > p {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .home-strong-sec > figure > p {
    display: block;
    font-size: 6rem;
    bottom: -1rem;
    right: 0;
    line-height: 1;
    position: absolute;
    background: linear-gradient(90deg, #3191cd, #24bd82, #3191cd);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s ease-in-out infinite alternate;
  }
}
.home-strong-sec > figcaption {
  flex: 1;
  padding-right: 14rem;
}
@media print, screen and (max-width: 768px) {
  .home-strong-sec > figcaption {
    padding: 2rem;
  }
}
.home-strong-sec > figcaption > .title {
  font-size: 2.6rem;
  margin-bottom: 3.4rem;
  color: #53a9ab;
}
@media print, screen and (max-width: 768px) {
  .home-strong-sec > figcaption > .title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
.home-bg--city {
  background-image: url(../img/home/bg-city.png);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: left bottom 6rem;
}
@media print, screen and (max-width: 768px) {
  .home-bg--city {
    background-size: 100%;
    background-position: left bottom 30rem;
  }
}
.home-consul > .title, .home-company > .title {
  width: 100%;
  text-align: center;
}
.home-consul > .title > .en, .home-company > .title > .en {
  display: block;
  position: relative;
  line-height: 1;
}
.home-consul > .title > .en::after, .home-company > .title > .en::after {
  height: 1px;
  background-color: #135984;
}
.home-consul > .title > .ja, .home-company > .title > .ja {
  display: block;
  margin-top: 1rem;
}
.home-consul > .inner, .home-company > .inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.home-consul > .inner .home-copy, .home-company > .inner .home-copy {
  color: #135984;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
}
.home-consul > .inner > .txtarea, .home-company > .inner > .txtarea {
  width: 35.5rem;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .inner > .txtarea, .home-company > .inner > .txtarea {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.home-consul > .inner > .txtarea > .btn, .home-company > .inner > .txtarea > .btn {
  margin: 4rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .inner > .txtarea > .btn, .home-company > .inner > .txtarea > .btn {
    display: none;
  }
}
.home-consul > .inner > .list, .home-company > .inner > .list {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3列 */
  gap: 1.8rem 2rem;
  width: 38rem;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .inner > .list, .home-company > .inner > .list {
    width: 33rem;
    gap: 3rem 1rem;
    align-items: flex-end;
  }
}
.home-consul > .inner > .list > li > a, .home-company > .inner > .list > li > a {
  display: block;
  transition: transform 1.5s ease;
}
.home-consul > .inner > .list > li > a:hover, .home-company > .inner > .list > li > a:hover {
  opacity: 1;
  transform: translateY(-1.5rem);
  /* 少し浮かせる効果 */
}
.home-consul > .inner > .list > li > a > figcaption, .home-company > .inner > .list > li > a > figcaption {
  min-height: 4rem;
  line-height: 1.4;
  font-size: 1.4rem;
  color: #1c1c1c;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .inner > .list > li > a > figcaption, .home-company > .inner > .list > li > a > figcaption {
    font-size: 1.4rem;
    min-height: 4rem;
  }
}
.home-consul > .inner > .list > li > a > figure, .home-company > .inner > .list > li > a > figure {
  width: 65%;
  margin: 1rem auto 0;
}
.home-consul {
  padding-bottom: 18rem;
}
@media print, screen and (max-width: 768px) {
  .home-consul {
    padding-bottom: 8rem;
  }
}
.home-consul > .title {
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .title {
    margin-bottom: 3rem;
  }
}
.home-consul > .title > .en::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  margin: auto;
  width: 88.7rem;
  bottom: 0.1em;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .title > .en::after {
    width: 100%;
  }
}
.home-consul > .inner {
  justify-content: space-between;
  width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .inner {
    width: 100%;
  }
}
.home-consul > .inner .home-copy {
  order: 2;
}
.home-consul > .inner > .txtarea {
  order: 1;
  margin-top: 9rem;
}
@media print, screen and (max-width: 768px) {
  .home-consul > .inner > .txtarea {
    margin-top: 0;
  }
}
.home-consul > .inner > .list {
  order: 3;
}
.home-consul > .device_sp {
  width: 100%;
}
.home-consul > .device_sp > .btn {
  margin: 4rem auto 0;
}
.home-company {
  padding-bottom: 7rem;
}
@media print, screen and (max-width: 768px) {
  .home-company {
    padding-bottom: 5rem;
  }
}
.home-company > .title {
  margin-bottom: 5rem;
}
@media print, screen and (max-width: 768px) {
  .home-company > .title {
    margin-bottom: 3rem;
  }
}
.home-company > .title > .en::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  margin: auto;
  width: 85rem;
  bottom: 0.1em;
}
@media print, screen and (max-width: 768px) {
  .home-company > .title > .en::after {
    width: 100%;
  }
}
.home-company > .inner {
  justify-content: flex-end;
  width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (max-width: 768px) {
  .home-company > .inner {
    justify-content: space-between;
    width: 100%;
  }
}
.home-company > .inner .home-copy {
  margin-right: 5rem;
}
@media print, screen and (max-width: 768px) {
  .home-company > .inner .home-copy {
    margin-right: 2rem;
  }
}
.home-company > .inner > .txtarea {
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .home-company > .inner > .txtarea {
    width: 78%;
    margin-top: 0;
  }
}
.home-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 38rem;
  padding: 4rem 2rem 0;
  overflow: hidden;
  flex: 1;
}
@media print, screen and (max-width: 768px) {
  .home-link {
    flex: auto;
    padding: 4rem 2rem 4rem;
    height: auto;
  }
}
.home-link:hover {
  opacity: 1;
}
.home-link:hover .home-link__bg img {
  transform: scale(1.08);
}
.home-link:hover .home-link__bg::after {
  left: 0;
  right: auto;
  width: 100%;
}
.home-link > .txt {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.home-link-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.home-link__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.home-link__bg img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: 0.8s transform cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home-link__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 54, 54, 0.5);
}
.home-link__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  transition: 0.75s width cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home-topics {
  margin-top: 10rem;
  padding-top: 5rem;
  position: relative;
  margin-bottom: 10rem;
}
@media print, screen and (max-width: 768px) {
  .home-topics {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.home-topics::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  margin: auto;
  background-color: #ebeced;
  width: 100%;
  height: 80%;
  z-index: -1;
}
.home-topics__head {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.home-topics__head > .title {
  width: 100%;
}
.home-topics__head > .title > .en {
  display: block;
}
.home-topics__head > .title > .ja {
  display: block;
}
.home-topics__head > .btn {
  margin-left: auto;
}
.home-topics .js-slider_topics .slick-prev,
.home-topics .js-slider_topics .slick-next {
  cursor: pointer;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3.2rem;
  height: 3.2rem;
  z-index: 1;
  border: none;
  font-size: 0;
}
@media print, screen and (max-width: 768px) {
  .home-topics .js-slider_topics .slick-prev,
  .home-topics .js-slider_topics .slick-next {
    width: 3rem;
    height: 3rem;
  }
}
.home-topics .js-slider_topics .slick-prev:before,
.home-topics .js-slider_topics .slick-next:before {
  content: none !important;
}
.home-topics .js-slider_topics .slick-prev {
  right: auto;
  left: -5rem;
  background: url("../img/home/topics-prev.svg") no-repeat center;
  background-size: contain;
}
@media print, screen and (max-width: 768px) {
  .home-topics .js-slider_topics .slick-prev {
    left: 0;
  }
}
.home-topics .js-slider_topics .slick-next {
  left: auto;
  right: -5rem;
  background: url("../img/home/topics-next.svg") no-repeat center;
  background-size: contain;
}
@media print, screen and (max-width: 768px) {
  .home-topics .js-slider_topics .slick-next {
    right: 0;
  }
}
.home-topics .js-slider_topics .slick-slide {
  padding: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .home-topics .js-slider_topics .slick-slide {
    padding: 0 4rem;
  }
}
.home-topics .js-slider_topics .slick-list {
  margin: 0 -1.5rem;
  height: fit-content;
}
.home-topics .js-slider_topics img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.home-recruit {
  background-image: url(../img/home/recruit_bg.jpg);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 15rem;
}
@media print, screen and (max-width: 768px) {
  .home-recruit {
    padding-bottom: 8rem;
    background-size: 250% auto;
    overflow: hidden;
  }
}
.home-recruit__head {
  padding: 11rem 0 18rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__head {
    padding: 6rem 0 5rem;
  }
}
.home-recruit__head > .left {
  color: #fff;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__head > .left {
    margin-bottom: 2rem;
  }
}
.home-recruit__head > .left > .txt01 {
  font-size: 4rem;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__head > .left > .txt01 {
    font-size: 3rem;
  }
}
.home-recruit__head > .left > .txt02 {
  font-size: 1.8rem;
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__head > .left > .txt02 {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
.home-recruit__head > .right {
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__head > .right > .title {
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 2rem;
    line-height: 0;
  }
  .home-recruit__head > .right > .title > span {
    line-height: 0;
  }
}
.home-recruit__head > .right > .btn {
  margin: auto;
}
.home-recruit__head > .right > .btn > span {
  transform: skewX(20deg);
  display: block;
}
.home-recruit__grid {
  padding: 0 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  margin-top: -10rem;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__grid {
    margin-top: 0;
    display: block;
    padding: 0 0;
  }
}
.home-recruit__btn {
  position: relative;
  width: fit-content;
  margin: -2rem 0 0 auto;
  display: block;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__btn {
    margin: 2rem 0 0 auto;
  }
}
.home-recruit__btn:hover {
  opacity: 1;
}
.home-recruit__btn:hover::after {
  right: 1.5rem;
}
.home-recruit__btn::after {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  left: auto;
  right: -0.5rem;
  top: 1rem;
  bottom: auto;
  margin: auto;
  width: 19rem;
  height: 8rem;
  margin: auto;
  background: linear-gradient(139.61deg, #3191cd 2.57%, #24bd82 94.37%);
  background-size: cover;
  z-index: -2;
  transform: skewX(-20deg);
}
@media print, screen and (max-width: 768px) {
  .home-recruit__btn::after {
    width: 17rem;
    height: 7rem;
  }
}
.home-recruit__btn > p {
  background-color: #135984;
  padding: 1.6rem 3rem;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  transform: skewX(-20deg);
  display: block;
  width: fit-content;
  line-height: 1.5;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .home-recruit__btn > p {
    font-size: 1.4rem;
  }
}
.home-recruit__btn > p > span {
  transform: skewX(20deg);
  display: block;
}
.home-recruit-card {
  position: relative;
  display: block;
  transform: scale(1.2);
  transition: all 0.3s ease;
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card {
    transform: scale(1);
    margin-bottom: 4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .home-recruit-card:hover {
    opacity: 1;
    transform: scale(1.25);
  }
  .home-recruit-card:hover .home-recruit-card__head::after {
    right: 5rem;
  }
}
.home-recruit-card--left {
  margin-top: 0;
}
.home-recruit-card--center {
  margin-top: 20rem;
  transform: translateX(1rem) scale(1.2);
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card--center {
    margin-top: 0;
    transform: translateX(0) scale(1);
  }
}
.home-recruit-card--right {
  margin-top: 4rem;
  z-index: 1;
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card--right {
    margin-top: 0;
  }
}
.home-recruit-card__head {
  position: relative;
  padding-bottom: 5rem;
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card__head {
    padding-bottom: 0;
  }
}
.home-recruit-card__head::after {
  transition: all 0.3s ease;
  position: absolute;
  content: "";
  left: auto;
  right: 2rem;
  top: 2rem;
  bottom: auto;
  margin: auto;
  width: 24rem;
  height: 29rem;
  margin: auto;
  background: linear-gradient(139.61deg, #3191cd 2.57%, #24bd82 94.37%);
  background-size: cover;
  z-index: 1;
  transform: skewX(-13deg);
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card__head::after {
    display: none;
  }
}
.home-recruit-card__head > figure {
  z-index: 2;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card__head > figure {
    width: 60%;
  }
}
.home-recruit-card__label {
  position: absolute;
  bottom: 0;
  left: 5rem;
  background: #135984;
  color: #fff;
  padding: 1.5rem 2rem;
  line-height: 1.6;
  transform: skewX(-20deg);
  font-size: 1.5rem;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card__label {
    top: 2rem;
    right: 0;
    bottom: auto;
    left: auto;
    font-size: 1.5rem;
  }
}
.home-recruit-card__label > span {
  transform: skewX(20deg);
  display: block;
}
.home-recruit-card__text {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-left: 7.5rem;
  color: #1c1c1c;
}
@media print, screen and (max-width: 768px) {
  .home-recruit-card__text {
    margin-top: 0;
    margin-left: 0;
    width: 47%;
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.home-group {
  background-image: url(../img/home/group_bg.jpg);
  background-size: cover;
  padding: 6rem 0;
  text-align: center;
}
.home-group > .title {
  color: #fff;
  font-size: 4rem;
}
@media print, screen and (max-width: 768px) {
  .home-group > .title {
    font-size: 3rem;
  }
}
.home-group > .btn {
  margin: 2rem auto 0;
}

/* -----------------------------------------------
consul
----------------------------------------------- */
.consul-sec {
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .consul-sec {
    margin-top: 0;
  }
}
.consul-sec.sec-plan .consul-sec__head {
  background-image: url(../img/consulting/plan_head.jpg);
  margin-left: 14rem;
}
@media print, screen and (max-width: 768px) {
  .consul-sec.sec-plan .consul-sec__head {
    margin-left: 0;
  }
}
.consul-sec.sec-service {
  background-image: url(../img/consulting/body_bg.png);
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.consul-sec.sec-service .consul-sec__head {
  background-image: url(../img/consulting/service_head.jpg);
  margin-right: 14rem;
}
@media print, screen and (max-width: 768px) {
  .consul-sec.sec-service .consul-sec__head {
    margin-right: 0;
  }
}
.consul-sec.sec-service .consul-sec__head > .title {
  width: calc(100% - 14rem);
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .consul-sec.sec-service .consul-sec__head > .title {
    width: fit-content;
  }
}
.consul-sec__head {
  background-image: url(../img/consulting/plan_head.jpg);
  background-size: cover;
  width: calc(100% - 14rem);
  height: 39.8rem;
  display: flex;
}
@media print, screen and (max-width: 768px) {
  .consul-sec__head {
    width: 100%;
    height: 20rem;
  }
}
.consul-sec__head > .title {
  display: inline-block;
  background-color: #fff;
  padding: 4rem 2rem 0 6rem;
  color: #135984;
  font-size: 3.6rem;
  font-weight: 600;
  min-width: 60rem;
  margin-top: auto;
}
@media print, screen and (max-width: 768px) {
  .consul-sec__head > .title {
    padding: 0.5rem 2rem 0 2rem;
    font-size: 2.2rem;
    min-width: auto;
  }
}
.consul-sec__body {
  padding: 6rem 0 7rem;
}
@media print, screen and (max-width: 768px) {
  .consul-sec__body {
    padding: 4rem 0 6rem;
  }
}
.consul__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 0;
}
@media print, screen and (max-width: 768px) {
  .consul__list {
    gap: 1rem 0;
  }
}
.consul__list > li {
  width: 33.3%;
  border-right: 1px solid #dbe0e2;
  padding: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .consul__list > li {
    width: 50%;
    padding: 0;
  }
}
.consul-card {
  text-align: center;
  padding: 3.8rem 1rem 3rem;
  color: #135984;
  display: block;
  background-size: cover;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .consul-card {
    padding: 1rem 1rem 1rem;
  }
}
.consul-card.water::before {
  background-image: url(../img/consulting/water.png);
}
.consul-card.sewer::before {
  background-image: url(../img/consulting/sewer.png);
}
.consul-card.civil::before {
  background-image: url(../img/consulting/civil.png);
}
.consul-card.survey::before {
  background-image: url(../img/consulting/survey.png);
}
.consul-card.hydro::before {
  background-image: url(../img/consulting/hydro.png);
}
.consul-card.longevity::before {
  background-image: url(../img/consulting/longevity.png);
}
.consul-card.disaster::before {
  background-image: url(../img/consulting/disaster.png);
}
.consul-card.geosoil::before {
  background-image: url(../img/consulting/geosoil.png);
}
.consul-card.ict::before {
  background-image: url(../img/consulting/ict.png);
}
.consul-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  z-index: 0;
  opacity: 0;
}
.consul-card:hover {
  opacity: 1;
}
.consul-card:hover::before {
  opacity: 1;
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.05);
}
.consul-card > figcaption {
  color: #135984;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .consul-card > figcaption > p {
    font-size: 1.2rem;
  }
}
.consul-card > figcaption > .title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1rem;
}
@media print, screen and (max-width: 768px) {
  .consul-card > figcaption > .title {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}
.consul-card > figure {
  width: 14.8rem;
  margin: 2rem auto 0;
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .consul-card > figure {
    width: 50%;
    margin: 1rem auto 0;
  }
}

/* -----------------------------------------------
porivacy
----------------------------------------------- */
.porivacy-sec {
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .porivacy-sec {
    margin-top: 4rem;
  }
}
.porivacy__title {
  font-size: 3.6rem;
  color: #53a9ab;
  margin-bottom: 1rem;
}
@media print, screen and (max-width: 768px) {
  .porivacy__title {
    font-size: 2.4rem;
  }
}
.porivacy__subtitle {
  font-weight: 600;
  font-size: 1.8rem;
}
@media print, screen and (max-width: 768px) {
  .porivacy__subtitle {
    font-size: 1.7rem;
  }
}

/* -----------------------------------------------
about
----------------------------------------------- */
.about-message {
  padding-top: 12rem;
}
@media print, screen and (max-width: 768px) {
  .about-message {
    padding-top: 4rem;
  }
}
.about-message__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6.4rem;
}
@media print, screen and (max-width: 768px) {
  .about-message__wrap {
    gap: 2rem;
    display: block;
  }
}
.about-message__wrap > .txt {
  flex: 1.5;
  padding-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .about-message__wrap > .txt {
    padding-top: 0;
  }
}
.about-message__wrap > .img {
  flex: 1;
}
@media print, screen and (max-width: 768px) {
  .about-message__wrap > .img {
    margin: 2rem auto 0;
    width: 70%;
  }
}
.about-message__wrap > .img > figcaption {
  margin-top: 1rem;
  font-size: 2.8rem;
  font-weight: 600;
}
@media print, screen and (max-width: 768px) {
  .about-message__wrap > .img > figcaption {
    font-size: 1.5rem;
  }
}
.about-philosophy {
  position: relative;
}
.about-philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/about/philosophy_bg.jpg);
  background-size: cover;
  margin-left: calc(50% - 50vw - 10rem);
  z-index: -1;
}
.about-philosophy__head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media print, screen and (max-width: 768px) {
  .about-philosophy__head {
    display: block;
    margin-bottom: 4rem;
  }
}
.about-philosophy__head > .about-philosophy__title {
  color: #fff;
  padding-top: 0;
  line-height: 1.4;
}
.about-philosophy__head > .about-philosophy__title::after {
  display: none;
}
.about-philosophy__head > p {
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .about-philosophy__head > p {
    margin-top: 2rem;
  }
}
.about-philosophy__body > .line {
  color: #fff;
  position: relative;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .about-philosophy__body > .line {
    font-size: 1.7rem;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
}
.about-philosophy__body > .line::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  margin: auto;
  width: calc(100% + 14rem);
  height: 1px;
  background-color: #fff;
}
@media print, screen and (max-width: 768px) {
  .about-philosophy__body > .line::after {
    width: 100%;
  }
}
.about-philosophy__body > .list {
  counter-reset: strength;
}
.about-philosophy__body > .list > li {
  position: relative;
  padding-left: 3.4rem;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.6;
  display: block;
  width: fit-content;
  margin-top: 1rem;
  border-bottom: 10px solid #135984;
}
@media print, screen and (max-width: 768px) {
  .about-philosophy__body > .list > li {
    font-size: 1.8rem;
    padding-left: 3.5rem;
  }
}
.about-philosophy__body > .list > li::before {
  counter-increment: strength;
  content: counter(strength);
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 1.7em;
  font-weight: 700;
  color: #2dd4bf;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-style: italic;
}
@media print, screen and (max-width: 768px) {
  .about-philosophy__body > .list > li::before {
    font-size: 1.8em;
  }
}
.about-philosophy__body > .list > li:nth-child(2n) {
  margin-left: 35rem;
}
@media print, screen and (max-width: 768px) {
  .about-philosophy__body > .list > li:nth-child(2n) {
    margin-left: 2em;
  }
}
.about-company-table th {
  width: 25%;
}
.about-history {
  color: #135984;
}
.about-history-list {
  margin-top: 3rem;
  position: relative;
  /* 縦ライン */
}
.about-history-list::before {
  content: "";
  position: absolute;
  top: 1.8rem;
  left: 7.65rem;
  width: 1px;
  height: calc(100% - 3.6rem);
  background: #135984;
}
.about-history-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  padding: 0.5rem 0;
  border-top: 1px solid #dbe0e2;
  border-bottom: 1px solid #dbe0e2;
}
.about-history-item:nth-child(even) {
  background: #eaf7f3;
}
.about-history-year {
  font-weight: 600;
  font-size: 0.8em;
  text-align: right;
}
.about-history-body {
  font-size: 0.8em;
}
.about-history-body p {
  margin: 0 0 0;
  line-height: 1.8;
  position: relative;
  padding-left: 2rem;
}
.about-history-body p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  background: #135984;
  border-radius: 50%;
}
.about-history-body p + p {
  margin-top: 0.2rem;
}
.about-history-month {
  display: inline-block;
  min-width: 3.5rem;
  font-weight: 600;
  margin-right: 0.5em;
}
.about-officer-table {
  line-height: 1.2;
}
.about-officer-table thead th:nth-child(1), .about-officer-table thead th:nth-child(2) {
  width: 35%;
}
.about-officer-table thead th:nth-child(3), .about-officer-table thead th:nth-child(4) {
  width: 15%;
}
.about-officer-table th,
.about-officer-table td {
  border: 1px solid #dbe0e2;
  color: #135984;
  font-family: "Noto Serif JP", serif;
}
.about-officer-table tbody td {
  text-align: center;
  vertical-align: middle;
}
.about-quality {
  position: relative;
}
.about-quality::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #d2e1e5;
  background-size: cover;
  margin-left: calc(50% - 50vw - 10rem);
  z-index: -1;
}
@media print, screen and (max-width: 768px) {
  .about-quality::before {
    margin-left: 0;
  }
}
.about-quality__title {
  padding-top: 0;
  line-height: 1.4;
}
.about-quality__title::after {
  display: none;
}
.about-quality-card {
  margin-top: 5rem;
  position: relative;
  height: 53rem;
}
@media print, screen and (max-width: 768px) {
  .about-quality-card {
    height: auto;
  }
}
.about-quality-card.quality02 {
  padding-right: 14rem;
}
@media print, screen and (max-width: 768px) {
  .about-quality-card.quality02 {
    padding-right: 0;
  }
}
.about-quality-card.quality02 > figcaption {
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .about-quality-card.quality02 > figcaption {
    margin-left: 0;
  }
}
.about-quality-card.quality02 > figure {
  left: 0;
  right: auto;
}
.about-quality-card > figcaption {
  width: fit-content;
  padding: 5rem;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
  z-index: 2;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .about-quality-card > figcaption {
    padding: 2rem;
    width: 90%;
  }
}
.about-quality-card > figcaption > .title {
  writing-mode: vertical-rl;
  font-size: 5.8rem;
  font-weight: 400;
  line-height: 1.2;
}
@media print, screen and (max-width: 768px) {
  .about-quality-card > figcaption > .title {
    font-size: 2.8rem;
  }
}
.about-quality-card > figcaption > p {
  width: 35rem;
  margin-top: 4.5rem;
}
@media print, screen and (max-width: 768px) {
  .about-quality-card > figcaption > p {
    width: 27rem;
    margin-top: 2rem;
  }
}
.about-quality-card > figure {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 64rem;
}
@media print, screen and (max-width: 768px) {
  .about-quality-card > figure {
    width: 80%;
    position: static;
    margin-left: auto;
  }
}
.about-quality-registration {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .about-quality-registration {
    gap: 2rem;
  }
}
.about-quality-registration > table {
  flex: 2;
}
@media print, screen and (max-width: 768px) {
  .about-quality-registration > table {
    flex: none;
    order: 2;
  }
}
.about-quality-registration > table tbody tr th {
  text-align: center;
  width: 30%;
  vertical-align: middle;
}
.about-quality-registration > table tbody tr td {
  width: 70%;
}
.about-quality-registration > figure {
  flex: 1;
}
@media print, screen and (max-width: 768px) {
  .about-quality-registration > figure {
    flex: none;
    width: 70%;
    margin: auto;
    order: 1;
  }
}
.about-sdgs__logo {
  width: 80%;
  margin: 4rem auto;
}
.about-sdgs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: stretch;
}
@media print, screen and (max-width: 768px) {
  .about-sdgs__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.about-sdgs__list > li {
  padding: 3rem;
  background: #ffffff;
  border: 1px solid #dbe0e2;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.11);
  border-radius: 5px;
}
.about-sdgs__list > li > figure {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}
.about-sdgs__list > li > figure > img {
  width: 15rem;
  display: inline-block;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .about-sdgs__list > li > figure > img {
    width: 10rem;
  }
}
.about-initiative__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6rem;
}
@media print, screen and (max-width: 768px) {
  .about-initiative__wrap {
    display: block;
  }
}
.about-initiative__wrap > figcaption {
  flex: 2;
}
.about-initiative__wrap > figure {
  flex: 1;
}
@media print, screen and (max-width: 768px) {
  .about-initiative__wrap > figure {
    margin: 2rem auto 0;
    width: 70%;
  }
}
.about-area__list {
  display: grid;
  gap: 4rem;
}
@media print, screen and (max-width: 768px) {
  .about-area__list {
    gap: 2rem;
  }
}
.about-area-item .c-title--md {
  font-size: 1.8rem;
}
.about-area-item > .add {
  margin-top: 1rem;
  min-height: 6em;
}
@media print, screen and (max-width: 768px) {
  .about-area-item > .add {
    min-height: auto;
  }
}
.about-area-item > .tel {
  font-size: 0.75em;
  background-color: #f0f5f7;
  padding: 0.5em;
  color: #135984;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.about-area-item > .tel > a {
  color: #135984;
}
.about-area-item > .map {
  margin-top: 1rem;
}
.about-area-item > .map > iframe {
  width: 100%;
  height: 20rem;
}
.about-area-item > .mapbtn {
  box-shadow: inset 0px 0px 5.9px 5px rgba(52, 144, 192, 0.2);
  text-align: center;
  display: block;
  color: #135984;
  margin: 0.5rem auto 0;
  font-weight: 400;
  padding: 0.2em;
  border-radius: 5px;
  border: 1px solid #135984;
  font-family: "Lato", sans-serif;
  width: 80%;
}
.about-area-item > .mapbtn > span {
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
}
.about-area-item > .mapbtn > span::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.2em;
  height: 1.2em;
  background-image: url(../img/about/icon-map.svg);
  background-size: cover;
}
.about-area__linetitle {
  color: #135984;
  font-size: 2.2rem;
  padding-bottom: 0.5em;
  margin-bottom: 3rem;
  border-bottom: 2px solid #dbe0e2;
}
@media print, screen and (max-width: 768px) {
  .about-area__linetitle {
    font-size: 2rem;
  }
}
.about-area--head {
  margin-top: 4rem;
}
@media print, screen and (max-width: 768px) {
  .about-area--head {
    margin-top: 2rem;
  }
}
.about-area--head .about-area__list {
  grid-template-columns: repeat(2, 1fr);
}
.about-area--side {
  margin-top: 5rem;
}
.about-area--side .about-area__list {
  grid-template-columns: repeat(3, 1fr);
}
@media print, screen and (max-width: 768px) {
  .about-area--side .about-area__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-group {
  background-image: url(../img/about/group_bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media print, screen and (max-width: 768px) {
  .about-group {
    background-size: 200% auto;
    background-position: top right;
  }
}
.about-group__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  padding-top: 4rem;
}
.about-group__head::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  margin: auto;
  width: calc(100% + 14rem);
  height: 1px;
  background-color: #fff;
}
@media print, screen and (max-width: 768px) {
  .about-group__head::after {
    width: 100%;
  }
}
.about-group__head .c-title--xl {
  color: #fff;
  padding-top: 0;
}
.about-group__head .c-title--xl::after {
  display: none;
}
.about-group__body {
  position: relative;
  padding-top: 5rem;
  margin-top: 6rem;
}
.about-group__body::before {
  z-index: 2;
  content: "";
  position: absolute;
  width: calc(100% - 8rem);
  margin-left: auto;
  background-color: #fff;
  right: 0;
  top: 0;
  height: 100%;
}
@media print, screen and (max-width: 768px) {
  .about-group__body::before {
    width: 100%;
  }
}
.about-group__body__wrap {
  position: relative;
  z-index: 2;
}
.about-group__body__wrap > figcaption {
  font-size: 1.5rem;
}
.about-group__body__wrap > figcaption > .c-bnr {
  width: 26rem;
}
@media print, screen and (max-width: 768px) {
  .about-group__body__wrap > figcaption > .c-bnr {
    width: 20rem;
  }
}
.about-group__body__wrap > figure {
  width: 100%;
  text-align: center;
}
.about-group__body__wrap > figure > img {
  width: 80%;
  margin: -13rem auto 0;
}
@media print, screen and (max-width: 768px) {
  .about-group__body__wrap > figure > img {
    width: 100%;
    margin: 0 auto 0;
  }
}

/* -----------------------------------------------
consulting
----------------------------------------------- */
.consulting-child {
  background: url(../img/common/geometry_bg-top.png);
  background-position: top 20rem left;
  background-repeat: no-repeat;
  background-size: 50rem;
}
.consulting-child .p-table thead tr th:nth-child(1) {
  width: 20%;
}
.consulting-child .p-table thead tr th:nth-child(2) {
  width: 40%;
}
.consulting-child .p-table thead tr th:nth-child(3) {
  width: 40%;
}
.consulting-child .p-table tbody tr th,
.consulting-child .p-table tbody tr td {
  border: 1px solid #dbe0e2;
}

.consulting-flow__img {
  width: 70%;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .consulting-flow__img {
    width: 100%;
  }
}
.consulting-gallery {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  cursor: pointer;
}
@media print, screen and (max-width: 768px) {
  .consulting-gallery {
    gap: 2rem;
  }
}
.consulting-gallery.is-one .consulting-gallery__item {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}
.consulting-gallery.is-three .consulting-gallery__item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}
.consulting-gallery__item {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.consulting-gallery__item::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  margin: auto;
  width: 4rem;
  height: 4rem;
  background-image: url(../img/consulting/icon-serch.svg);
  background-size: cover;
}
.consulting-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}
.consulting-gallery__item:hover img {
  transform: scale(1.05);
}
.consulting__bnr.c-bnr {
  padding: 0.5em 1em;
  color: #135984;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  font-size: 1.8rem;
  background-color: #fff;
}
@media print, screen and (max-width: 768px) {
  .consulting__bnr.c-bnr {
    font-size: 1.5rem;
    justify-content: flex-start;
    height: 100%;
  }
}
.consulting__bnr.c-bnr > .icon {
  display: inline-block;
  flex: 1;
  margin-right: 1em;
}
@media print, screen and (max-width: 768px) {
  .consulting__bnr.c-bnr > .icon {
    width: 3rem;
  }
}
.consulting__bnr.c-bnr > .icon > img {
  width: 100%;
}
.consulting__bnr.c-bnr > .text {
  display: inline-block;
  flex: 4;
}
.consulting__btnarea {
  background-color: #e7f7f1;
  padding: 4rem;
  margin-top: 7rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 7rem;
}
@media print, screen and (max-width: 768px) {
  .consulting__btnarea {
    padding: 2rem;
    margin-top: 3rem;
    gap: 2rem;
  }
}
.consulting__btnarea > a {
  flex: 1;
}

.cases-item {
  position: relative;
  z-index: 2;
}
.cases-item > figure {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.cases-item > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-modal .cases-item {
  width: 66rem;
  padding: 3rem 3rem;
  font-size: 1.5rem;
  background-color: #fff;
  overflow-y: scroll;
  max-height: 50rem;
}
.p-modal .cases-item .c-title--md {
  font-size: 1.7rem;
}
.p-modal .cases-item .c-list--square {
  font-size: 1.4rem;
}
.cases-item .c-title--md {
  font-size: 2.2rem;
}

/* -----------------------------------------------
notfind
----------------------------------------------- */
.error404 {
  background-image: url(../img/notfind/notfind_bg.jpg);
  background-size: 100% auto;
  background-position: top right;
  background-repeat: no-repeat;
}
.error404 .l-mv {
  padding-top: 8rem;
}
.error404__wrap {
  padding: 4rem 0 8rem;
}

.notfind__wrap {
  padding: 4rem 0 8rem;
}

/* ====================================================
component
==================================================== */
.c-txtgrad {
  background: linear-gradient(90deg, #3191cd, #24bd82, #3191cd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease-in-out infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.c-title > .en {
  font-size: 6rem;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .c-title > .en {
    font-size: 5rem;
  }
}
.c-title > .ja {
  color: #135984;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .c-title > .ja {
    font-size: 1.5rem;
  }
}
.c-title--xl {
  font-size: 3rem;
  color: #53a9ab;
  padding-top: 2rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .c-title--xl {
    font-size: 2.6rem;
    padding-top: 1rem;
  }
}
.c-title--xl::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  margin: auto;
  width: calc(100% + 14rem);
  height: 1px;
  background-color: #53a9ab;
}
@media print, screen and (max-width: 768px) {
  .c-title--xl::after {
    width: 100%;
  }
}
.c-title--lg {
  background-color: #135984;
  color: #fff;
  padding: 0.2em 1em;
  font-size: 2.6rem;
}
@media print, screen and (max-width: 768px) {
  .c-title--lg {
    font-size: 2.2rem;
  }
}
.c-title--md {
  font-size: 2.4rem;
  border-left: 5px solid #53a9ab;
  padding-left: 1.5rem;
  line-height: 1.4;
}
@media print, screen and (max-width: 768px) {
  .c-title--md {
    font-size: 2.2rem;
  }
}

.c-btn--sm {
  display: block;
  width: 20rem;
}
.c-btn--w {
  border: 1px solid #ffffff;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  background: transparent;
  border-radius: 5px;
  padding: 2rem;
}
@media print, screen and (max-width: 768px) {
  .c-btn--w {
    padding: 1.5rem;
  }
}
.c-btn--w:hover {
  opacity: 1;
  background-color: #135984;
}
.c-btn--inblue {
  display: block;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  color: #135984;
  font-weight: 400;
  text-align: center;
  background: #ffffff;
  border: 1px solid #135984;
  box-shadow: inset 0px 0px 5.9px 5px rgba(52, 144, 192, 0.46);
  border-radius: 5px;
  padding: 2rem;
}
@media print, screen and (max-width: 768px) {
  .c-btn--inblue {
    padding: 1.5rem;
  }
}
.c-btn--inblue:hover {
  opacity: 1;
  background-color: #135984;
  color: #ffffff;
}
.c-btn--grad {
  line-height: 1.3;
  text-align: center;
  display: block;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  background: linear-gradient(139.61deg, #3191cd 2.57%, #24bd82 94.37%);
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 2rem;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .c-btn--grad {
    padding: 1.5rem;
  }
}

/* ====================================================
topics
==================================================== */
.c-time {
  font-size: 1.4rem;
}

/* ====================================================
list
==================================================== */
.c-list--square {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-list--square li {
  position: relative;
  padding-left: 1.2em;
}
.c-list--square li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.6em;
  height: 0.6em;
  background-color: #4fb3a7;
  /* 画像に近い青緑 */
}
.c-list--square li + li {
  margin-top: 0.2em;
}

/* ====================================================
parts
==================================================== */
.c-bnr {
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.11);
  border-radius: 5px;
  display: block;
  overflow: hidden;
  border: 1px solid #135984;
}
.c-bnr > img {
  display: block;
  width: 100%;
}

/* ====================================================
project
==================================================== */
/* -----------------------------------------------
inner
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .p-inner--pc {
    width: 100rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) and (min-width: 768px) {
  .p-inner--pc {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-inner--sp {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
/* -----------------------------------------------
topics
----------------------------------------------- */
.p-topics__card {
  display: block;
  padding: 1rem;
  background: #ffffff;
  color: #1c1c1c;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.11);
}
.p-topics__card > figure {
  width: 100%;
  border: 1px solid #b7b7b7;
  aspect-ratio: 59 / 44;
  position: relative;
  overflow: hidden;
}
.p-topics__card > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-topics__card > figcaption {
  font-size: 1.5rem;
  padding-top: 1.5rem;
}
.p-topics__card > figcaption > p {
  min-height: 4em;
}
@media print, screen and (max-width: 768px) {
  .p-topics__card > figcaption > p {
    min-height: auto;
  }
}
.p-topics-detail__head {
  margin-top: 4rem;
}
.p-topics-detail__data {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-topics-detail__data > .btn {
  margin-left: auto;
  font-size: 1.4rem;
  color: #135984;
}
.p-topics-detail__body {
  padding-bottom: 10rem;
}
@media print, screen and (max-width: 768px) {
  .p-topics-detail__body {
    padding-bottom: 6rem;
  }
}
.p-topics-detail__body p {
  margin-top: 1em;
}
.p-topics-detail__body figure {
  margin-top: 1em;
}
.p-topics-detail__title {
  font-size: 3rem;
  color: #53a9ab;
  padding-top: 2rem;
  position: relative;
  line-height: 1.6;
}
@media print, screen and (max-width: 768px) {
  .p-topics-detail__title {
    font-size: 2.6rem;
    padding-top: 1rem;
  }
}
.p-topics-detail__title::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  margin: auto;
  width: calc(100% + 14rem);
  height: 1px;
  background-color: #53a9ab;
}
@media print, screen and (max-width: 768px) {
  .p-topics-detail__title::after {
    width: 100%;
  }
}
.p-topics-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

/* -----------------------------------------------
table
----------------------------------------------- */
.p-table {
  width: 100%;
  font-size: 0.8em;
  border-collapse: collapse;
}
.p-table th,
.p-table td {
  padding: 0.7rem 1.5rem;
  border-top: 1px solid #dbe0e2;
  border-bottom: 1px solid #dbe0e2;
  vertical-align: top;
}
.p-table th.c-cell-gray,
.p-table td.c-cell-gray {
  background-color: #777777;
  border: 1px solid #fff;
  color: #fff;
}
.p-table th {
  background: #e7f7f1;
  color: #135984;
  font-weight: 600;
  text-align: left;
  font-family: "Noto Serif JP", serif;
}
.p-table td {
  background: #fff;
}
.p-table__label {
  margin: 0 0 0.8rem;
  color: #4fb7b1;
  font-weight: 600;
}

/* -----------------------------------------------
infocard
----------------------------------------------- */
.p-infocard {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.11);
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.p-infocard > dt {
  background-color: #135984;
  text-align: center;
  color: #fff;
  padding: 0.4em;
  border-radius: 10px 10px 0 0;
}
.p-infocard > dd {
  border: 1px solid #135984;
  padding: 1rem 2rem;
  font-size: 1.4rem;
}
.p-infocard__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.p-bnr-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
}
@media print, screen and (max-width: 768px) {
  .p-bnr-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2rem;
  }
}

/* -----------------------------------------------
modal
----------------------------------------------- */
.p-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.p-modal.is-open {
  display: flex;
}
.p-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.p-modal__close {
  cursor: pointer;
  width: 3rem;
  position: absolute;
  top: 0;
  right: 0;
}
.p-modal__close > img {
  width: 100%;
}
.p-modal__cont {
  position: relative;
}
.p-modal__img {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.p-modal__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.is-modal-open {
  overflow: hidden;
}

.p-pager {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.p-pager a,
.p-pager span {
  padding: 8px 14px;
  border: 1px solid #ccc;
}

.p-pager .current {
  background: #1ca9f5;
  color: #fff;
}

/* ====================================================
flex
==================================================== */
.u-fl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.u-fl.ai-str {
  align-items: stretch;
}
.u-fl.ai-cen {
  align-items: center;
}
.u-fl.jc-cen {
  justify-content: center;
}
.u-fl .fl-item1 {
  flex: 1;
}
.u-fl .fl-item2 {
  flex: 2;
}
@media print, screen and (max-width: 768px) {
  .u-fl .u-item-auto-sp {
    flex: auto;
  }
}

.u-od2 {
  order: 2;
}

@media print, screen and (max-width: 768px) {
  .u-od0-sp {
    order: 0;
  }

  .u-od2-sp {
    order: 2;
  }
}
.u-fl-col2 {
  flex-wrap: wrap;
}

.u-fl-col2 > * {
  width: 50%;
}

.u-fl-col2.gap {
  gap: 5rem;
}

.u-fl-col2.gap > * {
  width: calc(50% - 2.5rem);
}

@media print, screen and (max-width: 768px) {
  .u-fl-col2.u-fl-block_sp > * {
    width: 100%;
  }

  .u-fl-col2.gap.u-fl-block_sp > * {
    margin-bottom: 0;
  }

  .u-fl_sp-col2 > * {
    width: 50%;
  }

  .u-fl_sp-col2.gap {
    gap: 2rem;
  }

  .u-fl_sp-col2.gap > * {
    width: calc(50% - 1rem);
  }
}
/* ====================================================
font
==================================================== */
.u-ft-serif {
  font-family: "Noto Serif JP", serif;
}

.u-ft-lato {
  font-family: "Lato", sans-serif;
}

.u-text-xxs {
  font-size: 0.4em;
}

.u-text-xs {
  font-size: 0.5em;
}

.u-text-sm {
  font-size: 0.75em;
}

.u-text-md {
  font-size: 1em;
}

.u-text-lg {
  font-size: 1.25em;
}

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

/* ====================================================
font-size
==================================================== */
.u-fs12 {
  font-size: 1.2rem;
}

.u-fs13 {
  font-size: 1.3rem;
}

.u-fs14 {
  font-size: 1.4rem;
}

.u-fs15 {
  font-size: 1.5rem;
}

.u-fs16 {
  font-size: 1.6rem;
}

.u-fs17 {
  font-size: 1.7rem;
}

.u-fs18 {
  font-size: 1.8rem;
}

.u-fs19 {
  font-size: 1.9rem;
}

.u-fs20 {
  font-size: 2rem;
}

.u-fs20 {
  font-size: 2rem;
}

.u-fs22 {
  font-size: 2.2rem;
}

.u-fs30 {
  font-size: 3rem;
}

.u-fs40 {
  font-size: 4rem;
}

@media print, screen and (max-width: 768px) {
  .u-fs10-sp {
    font-size: 1rem;
  }

  .u-fs11-sp {
    font-size: 1.1rem;
  }

  .u-fs12-sp {
    font-size: 1.2rem;
  }

  .u-fs13-sp {
    font-size: 1.3rem;
  }

  .u-fs14-sp {
    font-size: 1.4rem;
  }

  .u-fs15-sp {
    font-size: 1.5rem;
  }

  .u-fs16-sp {
    font-size: 1.6rem;
  }

  .u-fs17-sp {
    font-size: 1.7rem;
  }

  .u-fs18-sp {
    font-size: 1.8rem;
  }

  .u-fs19-sp {
    font-size: 1.9rem;
  }

  .u-fs20-sp {
    font-size: 2rem;
  }
}
/* ====================================================
color
==================================================== */
.u-txtc--blue {
  color: #135984;
}

.u-txtc--org {
  color: #ec613a;
}

/* ====================================================
list
==================================================== */
.u-list-dot {
  list-style: disc;
  padding-left: 1.5em;
}

/* ====================================================
padding
==================================================== */
.u-pl10 {
  padding-left: 1rem;
}

.u-pl20 {
  padding-left: 2rem;
}

.u-pl30 {
  padding-left: 3rem;
}

.u-pl40 {
  padding-left: 4rem;
}

.u-pl50 {
  padding-left: 5rem;
}

.u-pl60 {
  padding-left: 6rem;
}

.u-pl70 {
  padding-left: 7rem;
}

@media print, screen and (max-width: 768px) {
  .u-pl0-sp {
    padding-left: 0rem;
  }

  .u-pl10-sp {
    padding-left: 1rem;
  }

  .u-pl20-sp {
    padding-left: 2rem;
  }
}
/* ====================================================
width
==================================================== */
.u-wi100p {
  width: 100%;
}

@media print, screen and (max-width: 768px) {
  .u-full-sp {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}
/* ====================================================
margin
==================================================== */
.u-mt10 {
  margin-top: 1rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt70 {
  margin-top: 7rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt90 {
  margin-top: 9rem;
}

.u-mt100 {
  margin-top: 8rem;
}

.u-mlr-auto {
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 768px) {
  .u-mt10-sp {
    margin-top: 1rem;
  }

  .u-mt20-sp {
    margin-top: 2rem;
  }

  .u-mt30-sp {
    margin-top: 3rem;
  }

  .u-mt40-sp {
    margin-top: 4rem;
  }

  .u-mt50-sp {
    margin-top: 5rem;
  }

  .u-mt60-sp {
    margin-top: 6rem;
  }

  .u-mt70-sp {
    margin-top: 7rem;
  }

  .u-mt80-sp {
    margin-top: 8rem;
  }

  .u-mt90-sp {
    margin-top: 9rem;
  }

  .u-mt100-sp {
    margin-top: 10rem;
  }
}
