@charset "utf-8";
/* ===================
 inner
 ===================== */
.l-inner {
  padding-inline: 20px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: 40px;
    max-width: calc(1100px + 40px * 2);
  }
}

/* ===================
緑の角丸ボタン
 ===================== */
.c-button__contact-link:hover p{
  opacity: 0.7;
}

.c-button__contact-link p {
  font-size: 14px;
  color: var(--color-white);
  background: #007989;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 50px;
  padding-inline: 27px;
}

.c-button__contact-link p::before {
  content: "";
  width: 20px;
  aspect-ratio: 20/15;
  height: auto;
  background: url(../images/mail-icon.svg) no-repeat center center / contain;
}

/* ===================
 top heading
 ===================== */
.c-heading {
  text-align: center;
  position: relative;
}

.c-heading::before {
  content: "";
  position: absolute;
  width: 4%;
  height: 10px;
  top: -23%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/heading-icon.svg) no-repeat center center / contain;
}

@media screen and (min-width: 1367px) {
  .c-heading::before {
    width: 26px;
  }
}

.c-heading__en {
  font-family: var(--ff-en);
  font-size: clamp(40px, 5.13vw, 70px);
  font-weight: 600;
}

.c-heading__ja {
  margin-top: 21px;
  font-size: clamp(15px, 1.32vw, 18px);
  font-weight: 700;
}

/* top aboutとserviceのタイトル */
.section__head-wrap {
  display: flex;
  flex-direction: column;
}

.section__head-title-flex {
  display: flex;
  align-items: center;
}

.section__head-title {
  font-size: clamp(20px, 2.93vw, 40px);
  font-weight: 700;
  line-height: calc(60 / 40);
}

.section__head-title-g {
  color: #008984;
}


/* ===================
 top heading text
 ===================== */
.section__text {
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 400;
  line-height: calc(30 / 14);
}

/* ===================
キーフレーム
 ===================== */
/* テキストスライダー */
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ==============
case
================= */
.case__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.case__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3; /* 3行にまたがる */
  gap: 12px; /* アイテム内の要素間の間隔 */
}

.case__link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.case__item-head {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 340/223;
  width: 100%;
  height: auto;
}

.case__item-head img {
  aspect-ratio: 340/223;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.case__item-title {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: calc(26 / 14);
}

@media screen and (min-width: 768px) {
  .case__item-title {
    font-size: 14px;
  }
}

.case__item-tag span {
  border-radius: 4px;
  justify-self: start;
  display: inline-block;
  color: rgba(0, 121, 137, 0.9);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 9px 4px 9px;
  border: 1px solid #007989;
  background: var(--color-white);
}

/* ======================
パンくずリスト
========================= */
.c-breadcrumbs {
  margin-top: 50px;
  margin-left: -17px;
}

.c-breadcrumbs__wrapper {
  display: flex;
  align-items: center;
}

.c-breadcrumbs__link,
.c-breadcrumbs__text {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: calc(60 / 1000 * 1em);
  line-height: calc(16 / 13);
}

.c-breadcrumbs__text {
  margin-left: 16px;
}

.c-breadcrumbs__icon {
  margin-left: 22px;
  width: 7px;
  aspect-ratio: 7/8;
  height: auto;
}

.c-breadcrumbs__icon img {
  display: block;
  aspect-ratio: 7/8;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

