@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

:root {
  --color-site-primary: #000;
  --color-site-secondary: #0A4EAA;
  --color-site-tertiary: #B5D5FF;
  --color-site-quaternary: #F7FAFF;
}

::selection {
  color: #fff;
  background-color: var(--color-site-secondary);
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow-x: clip;
  color: var(--color-site-primary);
  background-color: var(--color-site-quaternary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-optical-sizing: auto;
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  line-break: strict; /* 禁則処理を厳格に適用 */
  text-autospace: normal; /* 和文中の英数字に余白 */
}

a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  vertical-align: bottom;
}

@media only screen and (width <= 768px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (width > 768px) {
  .u-use--sp {
    display: none !important;
  }
}

.logo {
  width: 130px;
}
@media print, screen and (width > 768px) {
  .logo {
    width: 160px;
  }
}
.logo__img {
  width: 100%;
}
.logo--footer {
  width: 255px;
  margin-bottom: 20px;
}
@media print, screen and (width > 768px) {
  .logo--footer {
    width: 230px;
  }
}

.title {
  display: grid;
  row-gap: 3px;
  color: var(--color-site-secondary);
}
@media print, screen and (width > 768px) {
  .title {
    row-gap: 9px;
  }
}
.title__main {
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}
@media print, screen and (width > 768px) {
  .title__main {
    font-size: 60px;
  }
}
.title__sub {
  position: relative;
  padding-left: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media print, screen and (width > 768px) {
  .title__sub {
    padding-left: 16px;
    font-size: 20px;
  }
}
.title__sub::before {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--color-site-secondary);
  border-radius: 50%;
}
@media print, screen and (width > 768px) {
  .title__sub::before {
    left: 4px;
    width: 8px;
    height: 8px;
  }
}

.btn {
  display: grid;
  width: fit-content;
  height: 41px;
  color: #fff;
  font-weight: 500;
  text-decoration: none !important;
  border: 1px solid var(--color-site-secondary);
  background-color: var(--color-site-secondary);
}
@media print, screen and (width > 768px) {
  .btn:hover {
    background-color: #fff;
    color: var(--color-site-secondary);
  }
  .btn:hover .btn__inner::after {
    background-color: var(--color-site-secondary);
  }
}
.btn__inner {
  position: relative;
}
.btn__inner::after {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
  width: 13px;
  height: 11px;
  mask-image: url(../images/teaser/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: 100%;
  -webkit-mask-image: url(../images/teaser/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-size: 100%;
  background-color: #fff;
}
.btn--primary {
  padding: 0 15px;
  place-items: center start;
}
.btn--primary .btn__inner {
  padding-right: 69px;
}
.btn--secondary {
  width: 260px;
  place-items: center;
}
.btn--secondary .btn__inner {
  padding-right: 33px;
}

.header {
  width: calc(100% - 56px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .header {
    width: min(1140px, 96.6101694915vw);
  }
}
.header {
  position: absolute;
  z-index: 5;
  top: 23px;
  left: 50%;
  translate: -50% 0;
}

.main {
  position: relative;
  z-index: 2;
}

.kv {
  padding: 20px 0 45px;
  display: grid;
  place-items: center;
  row-gap: 18px;
}
@media print, screen and (width > 768px) {
  .kv {
    grid-template-columns: 1fr min(34.722svw, 500px) min(43.055svw, 620px) 1fr;
  }
}
.kv__picture {
  width: 93svw;
}
@media print, screen and (width > 768px) {
  .kv__picture {
    grid-column: 3/4;
    grid-row: 1/2;
    width: 100%;
  }
}
.kv__img {
  width: 100%;
}
.kv__inner {
  margin-top: max(-60px, -16svw);
}
@media print, screen and (width > 768px) {
  .kv__inner {
    max-width: 500px;
    margin-top: min(210px, 14.583svw);
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: start;
  }
}
.kv__copy {
  width: max(270px, 72svw);
  color: var(--color-site-secondary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2em;
  word-break: keep-all;
}
@media print, screen and (width > 768px) {
  .kv__copy {
    width: 100%;
    font-size: clamp(36px, 4.166svw, 60px);
    font-weight: 800;
    line-height: 1.68;
  }
}
.kv__lead {
  width: max(240px, 64svw);
  margin-top: 7px;
  line-height: 1.5625;
}
@media print, screen and (width > 768px) {
  .kv__lead {
    width: 100%;
    margin-top: 33px;
    font-size: clamp(16px, 1.25svw, 18px);
    line-height: 1.833;
  }
}

.banner {
  width: calc(100% - 56px);
  margin: 0 auto 45px;
}
@media print, screen and (width > 768px) {
  .banner {
    width: min(1160px, 96.6666666667vw);
  }
}
@media print, screen and (width > 768px) {
  .banner {
    margin-bottom: 70px;
    container-type: inline-size;
    container-name: banner;
  }
}
.banner__note {
  margin-top: 45px;
  text-align: center;
  font-size: 14px;
  line-height: 1.78;
}
@media print, screen and (width > 768px) {
  .banner__note {
    margin-top: 72px;
    font-size: 15px;
    line-height: 2.2;
  }
}
.banner__list {
  display: grid;
  gap: 17px 5.172%;
}
@media print, screen and (width > 768px) {
  .banner__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.banner__link {
  display: grid;
  grid-template-columns: 94px 1fr;
  place-items: center start;
  min-height: 128px;
  text-decoration: none !important;
  background-color: #fff;
}
@media print, screen and (width > 768px) {
  .banner__link {
    grid-template-columns: clamp(100px, 14.6551724138cqw, 170px) 1fr;
    min-height: 132px;
  }
  .banner__link:hover .banner__title {
    color: #3d7fd8;
  }
  .banner__link:hover .banner__icon {
    background-color: #3d7fd8;
  }
  .banner__link:hover .banner__icon::before {
    background-color: #fff;
  }
}
.banner__thumbnail {
  height: 100%;
}
.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__inner {
  position: relative;
  width: 100%;
  padding: 0 43px 0 22px;
}
@media print, screen and (width > 768px) {
  .banner__inner {
    padding-right: min(8.8793103448cqw, 103px);
    padding-left: min(2.4137931034cqw, 28px);
  }
}
.banner__title {
  margin-bottom: 4px;
  color: var(--color-site-secondary);
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .banner__title {
    font-size: clamp(17px, 1.724137931cqw, 20px);
  }
}
.banner__text {
  color: var(--color-site-primary);
  font-size: 14px;
  line-height: 1.42;
}
@media print, screen and (width > 768px) {
  .banner__text {
    font-size: clamp(14px, 1.3793103448cqw, 16px);
    line-height: 1.5;
  }
}
.banner__icon {
  display: grid;
  place-items: center;
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 26px;
  height: 26px;
  background-color: var(--color-site-tertiary);
  border-radius: 5px;
}
@media print, screen and (width > 768px) {
  .banner__icon {
    top: 50%;
    right: 1.724137931cqw;
    translate: 0 -50%;
    width: min(5.8620689655cqw, 68px);
    height: min(5.8620689655cqw, 68px);
  }
}
.banner__icon::before {
  content: "";
  width: 10px;
  height: 7px;
  mask-image: url(../images/teaser/icon_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: 100%;
  -webkit-mask-image: url(../images/teaser/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-size: 100%;
  background-color: var(--color-site-secondary);
}
@media print, screen and (width > 768px) {
  .banner__icon::before {
    width: clamp(19px, 1.8965517241cqw, 22px);
    height: clamp(16px, 1.6379310345cqw, 19px);
  }
}

.news {
  background-color: #fff;
  padding: 45px 0 110px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media print, screen and (width > 768px) {
  .news {
    padding: 75px 0 210px;
    border-radius: 35px 35px 0 0;
  }
}
.news__inner {
  width: calc(100% - 56px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .news__inner {
    width: min(1140px, 96.6101694915vw);
  }
}
.news__inner {
  display: grid;
}
@media print, screen and (width > 768px) {
  .news__inner {
    grid-template-columns: auto 1fr;
    column-gap: 10.526%;
  }
}
.news__head {
  margin-bottom: 27px;
}
@media print, screen and (width > 768px) {
  .news__head {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-bottom: 0;
  }
}
.news__list {
  margin-bottom: 45px;
}
@media print, screen and (width > 768px) {
  .news__list {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-bottom: 0;
  }
}
@media only screen and (width <= 768px) {
  .news__list {
    border-top: 1px solid #ddd;
  }
}
.news__item {
  border-bottom: 1px solid #ddd;
}
.news__link {
  display: grid;
  padding: 30px 0 15px;
  row-gap: 10px;
  color: var(--color-site-primary);
  text-decoration: none !important;
}
@media print, screen and (width > 768px) {
  .news__link {
    grid-template-columns: auto 1fr;
    gap: 0 50px;
    padding: 30px 0;
  }
}
.news__time {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}
.news__text {
  font-weight: 500;
}
@media print, screen and (width > 768px) {
  .news__bottom {
    grid-column: 1/2;
    grid-row: 2/3;
    align-self: end;
  }
}
@media only screen and (width <= 768px) {
  .news__bottom .btn--primary {
    margin: auto;
  }
}

.intro::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: min(18.4svw, 69px);
  background: url(../images/teaser/bg_shape01_sp.svg) no-repeat left top;
  background-size: 100% auto;
}
@media print, screen and (width > 768px) {
  .intro::before {
    height: min(211px, 14.652svw);
    background-image: url(../images/teaser/bg_shape01.svg);
  }
}
.intro {
  position: relative;
  z-index: 2;
  padding: 0 28px 106px;
  background-color: var(--color-site-quaternary);
}
@media print, screen and (width > 768px) {
  .intro {
    padding: 0 0 210px;
  }
}
.intro::before {
  top: -61px;
}
@media print, screen and (width > 768px) {
  .intro::before {
    top: max(-129px, -8.958svw);
  }
}
.intro__inner {
  position: relative;
  z-index: 2;
}

.company {
  width: calc(100% - 0px);
  margin: 0 auto 45px;
}
@media print, screen and (width > 768px) {
  .company {
    width: min(1140px, 96.6101694915vw);
  }
}
.company {
  display: grid;
  position: relative;
  z-index: 2;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--color-site-secondary);
}
@media print, screen and (width > 768px) {
  .company {
    padding-bottom: 70px;
    margin-bottom: 105px;
    container-type: inline-size;
    container-name: company;
  }
}
.company__copy {
  margin-top: 24px;
  color: var(--color-site-secondary);
  font-size: min(9.7435897436vw, 38px);
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5;
  word-break: keep-all;
}
@media print, screen and (width > 768px) {
  .company__copy {
    grid-row: 3/4;
    margin-top: 40px;
    text-align: center;
    font-size: min(6.9298245614cqw, 79px);
    letter-spacing: 0.263em;
    line-height: 1.44;
  }
}
@media print, screen and (width > 768px) {
  .company__head {
    grid-row: 1/2;
  }
}
@media print, screen and (width > 768px) {
  .company__body {
    grid-row: 2/3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: max(-50px, -4.3859649123cqw);
  }
}
@media print, screen and (width > 768px) {
  .company__kv {
    width: 96.2280701754cqw;
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
.company__inner {
  padding-top: 15px;
}
@media print, screen and (width > 768px) {
  .company__inner {
    grid-row: 1/2;
    grid-column: 2/3;
    padding-top: 59.649122807cqw;
    padding-left: 1.4912280702cqw;
  }
}
.company__text {
  width: 82.758%;
  margin-bottom: 23px;
  color: var(--color-site-secondary);
}
@media only screen and (width <= 768px) {
  .company__text {
    width: max(255px, 68svw);
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.8;
  }
}
@media only screen and (width <= 768px) {
  .company .btn--primary {
    margin: auto;
  }
}

.message {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .message {
    width: min(1140px, 96.6101694915vw);
  }
}
.message {
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 768px) {
  .message {
    container-type: inline-size;
    container-name: message;
  }
}
.message__inner {
  display: grid;
}
@media print, screen and (width > 768px) {
  .message__inner {
    grid-template-columns: 1fr clamp(270px, 27.8947368421cqw, 318px);
    column-gap: 6.4035087719cqw;
  }
}
.message__main {
  padding-top: 35px;
}
@media print, screen and (width > 768px) {
  .message__main {
    padding-top: 70px;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.message__lead {
  margin-bottom: 33px;
  color: var(--color-site-secondary);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.95;
  letter-spacing: 0.03em;
}
@media print, screen and (width > 768px) {
  .message__lead {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 1.5;
  }
}
.message__text:not(:last-child) {
  margin-bottom: 36px;
}
@media only screen and (width <= 768px) {
  .message__side {
    display: grid;
    place-items: center;
    width: fit-content;
    margin: auto;
  }
}
@media print, screen and (width > 768px) {
  .message__side {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.message__president {
  width: max(142px, 37.8666666667vw);
  margin: 18px 0 10px;
}
@media print, screen and (width > 768px) {
  .message__president {
    margin-top: 0;
    width: 253px;
  }
}
.message__position {
  font-size: 14px;
  margin: 10px 0;
  justify-self: start;
}
@media print, screen and (width > 768px) {
  .message__position {
    margin-left: 2.1052631579cqw;
  }
}
.message__name {
  width: max(187px, 49.8666666667vw);
}
@media print, screen and (width > 768px) {
  .message__name {
    width: 216px;
    margin-left: 2.9824561404cqw;
  }
}
.message__name__img {
  width: 100%;
}

.service::before, .service::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: min(18.4svw, 69px);
  background: url(../images/teaser/bg_shape02_sp.svg) no-repeat left top;
  background-size: 100% auto;
}
@media print, screen and (width > 768px) {
  .service::before, .service::after {
    height: min(211px, 14.652svw);
    background-image: url(../images/teaser/bg_shape02.svg);
  }
}
.service::after {
  rotate: 180deg;
}
.service {
  position: relative;
  z-index: 3;
  padding: 0 28px 56px;
  background: var(--color-site-secondary);
}
@media print, screen and (width > 768px) {
  .service {
    padding: 0;
  }
}
.service::before {
  top: -45px;
}
@media print, screen and (width > 768px) {
  .service::before {
    top: max(-88px, -6.111svw);
  }
}
.service::after {
  bottom: max(-68px, -18.133svw);
}
@media print, screen and (width > 768px) {
  .service::after {
    bottom: max(-190px, -13.194svw);
  }
}
.service__inner {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .service__inner {
    width: min(1140px, 96.6101694915vw);
  }
}
.service__inner {
  position: relative;
  z-index: 2;
  container-type: inline-size;
  container-name: service;
}
.service__section {
  margin-bottom: 40px;
}
@media print, screen and (width > 768px) {
  .service__section {
    margin-bottom: 60px;
  }
}
.service__head {
  width: fit-content;
  display: grid;
  place-items: center start;
  grid-template-columns: 100px 1fr;
  column-gap: 15px;
  margin-bottom: 20px;
}
@media print, screen and (width > 768px) {
  .service__head {
    grid-template-columns: 130px 1fr;
    column-gap: 18px;
    padding-right: 190px;
    margin-bottom: 50px;
    position: relative;
  }
  .service__head::after {
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    content: "";
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    mix-blend-mode: multiply;
  }
}
@media print, screen and (width > 768px) {
  .service__head--investigate::after {
    width: 142px;
    height: 186px;
    background-image: url(../images/teaser/img_service01.svg);
  }
}
@media print, screen and (width > 768px) {
  .service__head--construction::after {
    width: 156px;
    height: 140px;
    background-image: url(../images/teaser/img_service02.svg);
  }
}
.service__title {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media print, screen and (width > 768px) {
  .service__title {
    width: 130px;
    height: 130px;
    font-size: 20px;
  }
}
.service__lead {
  color: #fff;
  font-size: 15px;
  line-height: 1.666;
}
@media print, screen and (width > 768px) {
  .service__lead {
    font-size: 17px;
  }
}
.service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 13px;
}
@media print, screen and (width > 768px) {
  .service__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.6315789474cqw;
  }
}
.service__link {
  text-decoration: none !important;
}
.service__thumbnail {
  display: block;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 5px;
}
@media print, screen and (width > 768px) {
  .service__thumbnail {
    border-radius: 10px;
  }
}
.service__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__name {
  margin-bottom: 4px;
  color: #fff;
  font-weight: 600;
}
@media print, screen and (width > 768px) {
  .service__name {
    margin-bottom: 8px;
    font-size: 25px;
  }
}
.service__desc {
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}
@media print, screen and (width > 768px) {
  .service__desc {
    font-size: 16px;
  }
}
.service__illustbox {
  position: relative;
}
@media print, screen and (width > 768px) {
  .service__illustbox {
    display: none !important;
  }
}
.service__illust {
  position: absolute;
}
@media print, screen and (width > 768px) {
  .service__illust {
    display: none !important;
  }
}
.service__illust--01 {
  top: 0;
  left: 3.4666666667vw;
  width: min(22.9333333333vw, 106px);
  height: min(29.8666666667vw, 132px);
}
.service__illust--02 {
  top: 52.8925619835%;
  left: 11.4666666667vw;
  width: min(29.0666666667vw, 129px);
  height: min(26.1333333333vw, 118px);
}
.service--other {
  display: grid;
  row-gap: 35px;
}
@media print, screen and (width > 768px) {
  .service--other {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(3.125rem, -3.438rem + 13.672vi, 7.5rem);
  }
}
.service--other__item {
  padding-top: 43px;
  position: relative;
}
@media print, screen and (width > 768px) {
  .service--other__item {
    padding-top: 75px;
  }
}
.service--other__item::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 151px;
  height: 147px;
  background-color: #fff;
  border-radius: 50%;
}
@media print, screen and (width > 768px) {
  .service--other__item::before {
    width: 276px;
    height: 266px;
  }
}
.service--other__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 75px 26px 36px;
  text-decoration: none !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 7px 6px #0c2d93;
}
@media print, screen and (width > 768px) {
  .service--other__link {
    padding: 150px 7.4561403509cqw 54px;
    border-radius: 20px;
  }
  .service--other__link:hover .service--other__img {
    scale: 1.15;
  }
  .service--other__link:hover::after {
    background-color: var(--color-site-secondary);
  }
}
.service--other__link::after {
  position: absolute;
  right: 7px;
  bottom: 9px;
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--color-site-tertiary);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media print, screen and (width > 768px) {
  .service--other__link::after {
    right: 15px;
    bottom: 15px;
    width: 23px;
    height: 23px;
  }
}
.service--other__img {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 179px;
  height: auto;
  transition: scale 0.3s;
  transform-origin: bottom;
}
.service--other__img--01 {
  top: -35px;
}
@media only screen and (width <= 768px) {
  .service--other__img--01 {
    top: -25px;
    width: 93px;
    height: 86px;
  }
}
.service--other__img--02 {
  top: -55px;
}
@media only screen and (width <= 768px) {
  .service--other__img--02 {
    top: -38px;
    width: 107px;
    height: 100px;
  }
}
.service--other__name {
  margin-bottom: 8px;
  color: var(--color-site-secondary);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media print, screen and (width > 768px) {
  .service--other__name {
    margin-bottom: 12px;
    font-size: 20px;
  }
}
.service--other__desc {
  color: var(--color-site-primary);
  font-size: 14px;
  line-height: 1.57;
}
@media print, screen and (width > 768px) {
  .service--other__desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.6875;
  }
}
.service .title {
  margin-bottom: 30px;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .service .title {
    margin-bottom: 35px;
  }
}
.service .title__sub::before {
  background-color: #fff;
}

.blog {
  width: calc(100% - 56px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .blog {
    width: min(1130px, 96.5811965812vw);
  }
}
.blog {
  position: relative;
  z-index: 1;
  padding: 75px 0 90px;
}
@media print, screen and (width > 768px) {
  .blog {
    padding-top: 266px;
    padding-bottom: 130px;
  }
}
.blog__list {
  display: grid;
  gap: 40px clamp(2.5rem, -1.719rem + 8.789vi, 5.313rem);
  margin-bottom: 60px;
}
@media print, screen and (width > 768px) {
  .blog__list {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 75px;
  }
}
.blog__link {
  text-decoration: none !important;
}
@media print, screen and (width > 768px) {
  .blog__link:hover .blog__title {
    color: #767676;
  }
}
.blog__thumbnail {
  display: block;
  width: 100%;
  margin-bottom: 25px;
  border-radius: 20px;
  aspect-ratio: 320/210;
  object-fit: cover;
}
.blog__time {
  font-family: "Jost", sans-serif;
  color: var(--color-site-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.21;
}
.blog__title {
  color: var(--color-site-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.47;
}
.blog .title {
  margin-bottom: 40px;
}
@media print, screen and (width > 768px) {
  .blog .title {
    margin-bottom: 57px;
  }
}
.blog .btn--secondary {
  margin: auto;
}

.recruit {
  position: relative;
  z-index: 2;
  padding: 60px 28px 100px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: url(../images/teaser/img_recruit_sp.jpg) no-repeat left top;
  background-size: cover;
}
@media print, screen and (width > 768px) {
  .recruit {
    padding: 215px 0 248px;
    border-radius: 35px 35px 0 0;
    background-image: url(../images/teaser/img_recruit.jpg);
  }
}
.recruit::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #5F728C;
  mix-blend-mode: multiply;
}
.recruit__inner {
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .recruit__inner {
    width: min(1120px, 96.5517241379vw);
  }
}
.recruit__inner {
  position: relative;
  z-index: 2;
}
.recruit__inner .title {
  margin-bottom: 27px;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .recruit__inner .title {
    place-items: center;
    row-gap: 0;
  }
}
.recruit__inner .title__main {
  font-size: 40px;
}
@media print, screen and (width > 768px) {
  .recruit__inner .title__main {
    font-size: 80px;
  }
}
.recruit__inner .title__sub {
  padding-left: 0 !important;
  font-size: 15px;
}
.recruit__inner .title__sub::before {
  display: none !important;
}
@media print, screen and (width > 768px) {
  .recruit__inner .title__sub {
    font-size: 20px;
  }
}
.recruit__copy {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.666;
  letter-spacing: 0.15em;
  margin-bottom: 27px;
}
@media print, screen and (width > 768px) {
  .recruit__copy {
    text-align: center;
    font-size: 31px;
    letter-spacing: 0.3em;
    margin-bottom: 26px;
  }
}
.recruit__txt {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-right: 33.06svw;
}
@media print, screen and (width > 768px) {
  .recruit__txt {
    width: 405px;
    padding-right: 0;
    margin: auto;
    font-size: 16px;
  }
}
.recruit__link {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: 61px;
  height: 61px;
}
@media print, screen and (width > 768px) {
  .recruit__link {
    bottom: -95px;
    width: 90px;
    height: 90px;
  }
  .recruit__link:hover {
    opacity: 0.7;
  }
}
.recruit__link__img {
  width: 100%;
}

.contact::before, .contact::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: min(18.4svw, 69px);
  background: url(../images/teaser/bg_shape02_sp.svg) no-repeat left top;
  background-size: 100% auto;
}
@media print, screen and (width > 768px) {
  .contact::before, .contact::after {
    height: min(211px, 14.652svw);
    background-image: url(../images/teaser/bg_shape02.svg);
  }
}
.contact::after {
  rotate: 180deg;
}
.contact {
  position: relative;
  z-index: 3;
  background-color: var(--color-site-secondary);
  padding: 12px 28px 30px;
}
@media print, screen and (width > 768px) {
  .contact {
    padding: 64px 0 0;
  }
}
.contact::before {
  top: max(-68px, -18.3svw);
}
@media print, screen and (width > 768px) {
  .contact::before {
    top: max(-100px, -6.944svw);
  }
}
.contact::after {
  bottom: max(-68px, -18.133svw);
}
@media print, screen and (width > 768px) {
  .contact::after {
    bottom: max(-208px, -14.444svw);
  }
}
.contact__inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 0px);
  margin: 0 auto 0;
}
@media print, screen and (width > 768px) {
  .contact__inner {
    width: min(1248px, 96.8944099379vw);
  }
}
@media print, screen and (width > 768px) {
  .contact__inner::after {
    position: absolute;
    right: 0;
    top: -20px;
    content: "";
    width: min(15.9027777778vw, 229px);
    height: min(23.9583333333vw, 345px);
    background: url(../images/teaser/img_anime.gif) no-repeat left top;
    background-size: 100%;
  }
}
.contact__inner .title {
  margin-bottom: 27px;
  color: #fff;
}
@media print, screen and (width > 768px) {
  .contact__inner .title {
    place-items: center;
    row-gap: 0;
  }
}
.contact__inner .title__main {
  font-size: 40px;
}
@media print, screen and (width > 768px) {
  .contact__inner .title__main {
    font-size: 80px;
  }
}
.contact__inner .title__sub {
  padding-left: 0 !important;
  font-size: 15px;
}
.contact__inner .title__sub::before {
  display: none !important;
}
@media print, screen and (width > 768px) {
  .contact__inner .title__sub {
    font-size: 20px;
  }
}
.contact__txt {
  margin-bottom: 35px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.666;
  letter-spacing: 0.05em;
}
@media print, screen and (width > 768px) {
  .contact__txt {
    margin-bottom: 45px;
    font-size: 16px;
  }
}
.contact__links {
  display: grid;
  gap: 34px 67px;
  width: min(85.333svw, 320px);
  margin: auto;
}
@media print, screen and (width > 768px) {
  .contact__links {
    width: fit-content;
    grid-template-columns: repeat(2, 320px);
  }
}
.contact__btn {
  display: grid;
  place-items: center;
  width: 100%;
  height: 75px;
  color: var(--color-site-secondary);
  text-decoration: none !important;
  background-color: #fff;
  border-radius: 15px;
}
@media print, screen and (width > 768px) {
  .contact__btn:hover {
    color: #0D6BEA;
  }
  .contact__btn:hover .contact__btn__inner::before {
    background-color: #0d6bea;
  }
}
.contact__btn__inner {
  position: relative;
}
.contact__btn__inner::before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100%;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  background-color: var(--color-site-secondary);
}
.contact__btn--tel {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.44;
}
@media print, screen and (width > 768px) {
  .contact__btn--tel {
    pointer-events: none;
  }
}
.contact__btn--tel .contact__btn__inner {
  padding-left: 27px;
}
.contact__btn--tel .contact__btn__inner::before {
  left: 0;
  width: 20px;
  height: 20px;
  mask-image: url(../images/teaser/icon_tel.svg);
  -webkit-mask-image: url(../images/teaser/icon_tel.svg);
}
.contact__btn--contact {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}
.contact__btn--contact .contact__btn__inner {
  padding-right: 27px;
}
.contact__btn--contact .contact__btn__inner::before {
  right: 0;
  width: 16px;
  height: 14px;
  mask-image: url(../images/teaser/icon_arrow.svg);
  -webkit-mask-image: url(../images/teaser/icon_arrow.svg);
}

.footer {
  position: sticky;
  z-index: 1;
  left: 0;
  top: 100svh;
  background-color: #fff;
  padding: 85px 28px 40px;
}
@media print, screen and (width > 768px) {
  .footer {
    padding: 260px 0 60px;
  }
}
.footer__inner {
  margin: auto;
}
@media print, screen and (width > 768px) {
  .footer__inner {
    width: min(1120px, 96.551svw);
  }
}

.address a {
  color: inherit !important;
  pointer-events: initial;
}

.copyright {
  margin-top: 70px;
  font-size: 13px;
  line-height: 1.46;
}
@media print, screen and (width > 768px) {
  .copyright {
    margin-top: 20px;
  }
}

.pagetop {
  display: grid;
  row-gap: 2px;
  place-items: center;
  position: fixed;
  z-index: 50;
  right: 50px;
  bottom: 40px;
  text-decoration: none !important;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s;
}
.pagetop.is-show {
  opacity: 1;
}
@media print, screen and (width > 768px) {
  .pagetop {
    bottom: 50px;
    right: 50%;
    translate: 38.888svw 0;
  }
  .pagetop:hover {
    opacity: 0.7;
  }
}
.pagetop__img {
  width: 45px;
}
.pagetop__txt {
  font-family: "Jost", sans-serif;
  color: var(--color-site-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
