@charset "UTF-8";
/* Colors */
:root {
  --clr-txt-bold: #2b2b2b;
  --clr-txt-base: #333;
  --clr-txt-button: #f6f7f7;
  --clr-body: linear-gradient(180deg, #eaf4f7 0%, #fff 100%);
  --clr-white: #fff;
  --clr-primary: #2082e0;
  --clr-gradient: linear-gradient(90deg, #2188de 1.75%, #2bcbc6 97.75%);
}

/* Font Sizes Tokens */
:root {
  --step--2: clamp(0.5628rem, 0.5138rem + 0.2447vw, 0.7035rem);
  --step--1: clamp(0.7502rem, 0.685rem + 0.3262vw, 0.9377rem);
  --step-0: clamp(1rem, 0.913rem + 0.4348vw, 1.25rem);
  --step-1: clamp(1.333rem, 1.2171rem + 0.5796vw, 1.6663rem);
  --step-2: clamp(1.7769rem, 1.6224rem + 0.7726vw, 2.2211rem);
  --step-3: clamp(2.3686rem, 2.1626rem + 1.0298vw, 2.9607rem);
  --step-4: clamp(3.1573rem, 2.8828rem + 1.3728vw, 3.9467rem);
  --step-5: clamp(4.2087rem, 3.8428rem + 1.8299vw, 5.2609rem);
}

/* Spacing */
/* @link https://utopia.fyi/space/calculator?c=320,16,1.333,1240,20,1.333,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
:root {
  --space-3xs: clamp(0.25rem, 0.2283rem + 0.1087vw, 0.3125rem);
  --space-2xs: clamp(0.5rem, 0.4565rem + 0.2174vw, 0.625rem);
  --space-xs: clamp(0.75rem, 0.6848rem + 0.3261vw, 0.9375rem);
  --space-s: clamp(1rem, 0.913rem + 0.4348vw, 1.25rem);
  --space-m: clamp(1.5rem, 1.3696rem + 0.6522vw, 1.875rem);
  --space-l: clamp(2rem, 1.8261rem + 0.8696vw, 2.5rem);
  --space-xl: clamp(3rem, 2.7391rem + 1.3043vw, 3.75rem);
  --space-2xl: clamp(4rem, 3.6522rem + 1.7391vw, 5rem);
  --space-3xl: clamp(6rem, 5.4783rem + 2.6087vw, 7.5rem);
  /* One-up pairs */
  --space-3xs-2xs: clamp(0.25rem, 0.1196rem + 0.6522vw, 0.625rem);
  --space-2xs-xs: clamp(0.5rem, 0.3478rem + 0.7609vw, 0.9375rem);
  --space-xs-s: clamp(0.75rem, 0.5761rem + 0.8696vw, 1.25rem);
  --space-s-m: clamp(1rem, 0.6957rem + 1.5217vw, 1.875rem);
  --space-m-l: clamp(1.5rem, 1.1522rem + 1.7391vw, 2.5rem);
  --space-l-xl: clamp(2rem, 1.3913rem + 3.0435vw, 3.75rem);
  --space-xl-2xl: clamp(3rem, 2.3043rem + 3.4783vw, 5rem);
  --space-2xl-3xl: clamp(4rem, 2.7826rem + 6.087vw, 7.5rem);
  /* Custom pairs */
  --space-s-l: clamp(1rem, 0.4783rem + 2.6087vw, 2.5rem);
}

/* NOTE: 「未満」を表現ー「not」キーワードhttps://liginc.co.jp/576294
HACK: @media not (min-width: 768px) {*/
/* BOILERPLATE*/
:root {
  interpolate-size: allow-keywords;
}

body {
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-txt-base);
  background: var(--clr-body) no-repeat;
}

/* HEADER-NAVBAR */
.header__inner {
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 48em) {
  .header__inner {
    max-width: 1360px;
    margin-inline: auto;
    padding-inline: 40px;
    padding-top: 26px;
    align-items: center;
  }
}

.header__logo img {
  width: 160px;
}

.header__nav-list {
  display: none;
}
@media (min-width: 48em) {
  .header__nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}

.header__nav-link {
  display: block;
  position: relative;
  padding: 20px;
  text-decoration: none;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 60%;
  height: 2px;
  background-color: var(--clr-primary);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

.header__nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* HAMBURGER */
:root {
  --hamburger-margin-top: 24px;
  --hamburger-margin-side: 15px;
  --bar-width: 40px;
  --bar-height: 3px;
  --hamburger-gap: 10px;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  --foreground: #2082e0;
  --background: #fff;
  --fg-gradient: linear-gradient(
    180deg,
    rgba(34, 142, 221, 0.9) 0%,
    rgba(43, 198, 201, 0.9) 100%
  );
  --bg-gradient: linear-gradient(180deg, #eaf4f7 0%, #fff 100%);
  --animation-timing: 1000ms ease-in-out;
}

.hamburger {
  --x-width: calc(var(--hamburger-height) * 1.41421);
  display: flex;
  flex-direction: column;
  gap: var(--hamburger-gap);
  width: max-content;
  position: absolute;
  top: var(--hamburger-margin-top);
  right: var(--hamburger-margin-side);
  z-index: 2;
  cursor: pointer;
}
@media (min-width: 48em) {
  .hamburger {
    display: none;
  }
}

.hamburger input {
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}

.hamburger::before,
.hamburger::after,
.hamburger input {
  content: "";
  width: var(--bar-width);
  height: var(--bar-height);
  border-radius: var(--bar-height);
  background-color: var(--foreground);
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing), rotate var(--animation-timing), translate var(--animation-timing), background-color var(--animation-timing);
}

.hamburger:has(input:checked) {
  --foreground: white;
  --background: #2082e0;
}

.hamburger:has(input:checked)::before {
  rotate: 45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / -2);
}

.hamburger:has(input:checked)::after {
  rotate: -45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / 2);
}

.hamburger input:checked {
  opacity: 0;
  width: 0;
}

.hamburger:has(input:checked) + .sidebar {
  translate: 0;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  width: 100%;
  transition: translate var(--animation-timing);
  translate: 100%;
  padding-top: 8.125rem;
  background-image: var(--clr-gradient);
  color: var(--clr-white);
  text-align: center;
  min-height: 100vh;
}
@media (min-width: 48em) {
  .sidebar {
    display: none;
  }
}
.sidebar .sidebar__logo img {
  width: 11.25rem;
}
.sidebar .sidebar__nav-list {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.sidebar .sidebar__nav-link {
  font-size: 1.25rem;
}

/* COMMON */
.inner {
  padding-inline: 15px;
}
@media (min-width: 48em) {
  .inner {
    padding-inline: 30px;
  }
}

.button {
  display: inline-block;
  padding: 9px 54px;
  border-radius: 48px;
  box-shadow: 4px 3px 26px 0 rgba(0, 0, 0, 0.16);
  text-align: center;
  font-weight: 700;
  letter-spacing: 3px;
  background-image: var(--clr-gradient);
  color: var(--clr-txt-button);
}
.button:hover {
  opacity: 0.7;
}

.button--border {
  background: transparent;
  border: 2px solid currentColor;
}

.button__link {
  display: inline-block;
  padding: 5px 24px;
  border-radius: 2px;
  border: 1px solid #2392db;
  box-shadow: 4px 3px 26px 0px rgba(0, 0, 0, 0.16);
  color: #2392db;
  font-weight: 700;
  letter-spacing: 3px;
}
.button__link:hover {
  background: #2392db;
  color: #fff;
}

.heading__bottom {
  text-align: center;
  position: relative;
}
.heading__bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #238fdc;
}

.heading__en, .price__charge,
.price__charge--free {
  color: #228ddd;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 3.6px;
}

.heading__ja {
  color: #228bde;
  font-size: 0.875rem;
  letter-spacing: 2.66px;
  margin-top: 2px;
}

/* FIRST VIEW */
.mv {
  padding-top: 38px;
  padding-bottom: 80px;
}

@media (min-width: 48em) {
  .mv__inner {
    max-width: 1180px;
    margin-inline: auto;
    text-align: left;
    display: flex;
    justify-content: space-around;
    flex-direction: row-reverse;
  }
}

.mv__img {
  text-align: center;
}
.mv__img img {
  width: 398px;
  height: auto;
}
@media (min-width: 48em) {
  .mv__img img {
    width: 650px;
  }
}

.mv__content {
  padding-top: 40px;
  text-align: center;
}
@media (min-width: 48em) {
  .mv__content {
    text-align: left;
  }
}

.mv__logo img {
  width: 250px;
}

.mv__title {
  padding-top: 20px;
  color: var(--clr-bold);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 48em) {
  .mv__title {
    text-align: left;
  }
}

.mv__desc {
  padding-top: 20px;
  color: var(--clr-base);
  text-align: center;
  font-weight: 400;
  line-height: 2;
}
@media (min-width: 48em) {
  .mv__desc {
    text-align: left;
  }
}

.mv__button {
  margin-top: 30px;
}

/* NEWS  */
.news {
  background: #fff;
  padding-block: 60px;
}

@media (min-width: 48em) {
  .news__inner {
    max-width: 740px;
    margin-inline: auto;
    padding-inline: 30px;
  }
}

.news__wrapper {
  margin-top: 46px;
}
@media (min-width: 48em) {
  .news__wrapper {
    margin-top: 70px;
  }
}

.news__content {
  padding-block: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.news__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e3e3e3;
}
@media (min-width: 48em) {
  .news__content {
    flex-direction: row;
    gap: 30px;
  }
}

.news__date {
  font-size: 0.875rem;
  width: 120px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news__desc {
  font-size: 0.9375rem;
}

.news__page-wrapper {
  margin-block: 46px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 48em) {
  .news__page-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.news__pages {
  display: flex;
  gap: min(20px, 4vw);
}
@media (min-width: 48em) {
  .news__pages {
    gap: min(20px, 1vw);
  }
}

.news__page {
  width: 36px;
  height: 36px;
  text-align: center;
  border: #828282 solid 1px;
}
.news__page a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background 0.3s ease, color 0.3s ease;
}
.news__page a:hover {
  background: #2392db;
  color: #fff;
}

/* CONCEPT  */
.concept {
  padding-block: 60px;
}
@media (min-width: 48em) {
  .concept {
    padding-top: 100px;
  }
}

.concept__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 48em) {
  .concept__inner {
    max-width: 1040px;
    margin-inline: auto;
    flex-direction: row;
    gap: 80px;
  }
}

.concept__img {
  text-align: center;
}
.concept__img img {
  min-width: max(310px, 55vw);
}
@media (min-width: 48em) {
  .concept__img img {
    min-width: min(450px, 45vw);
  }
}

.concept__title {
  margin-bottom: 30px;
  color: #228ddd;
  font-size: 1.5rem;
  font-weight: 700;
}

.concept_desc {
  margin-bottom: 30px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

.concept__cta {
  text-align: center;
}
@media (min-width: 48em) {
  .concept__cta {
    text-align: left;
  }
}

/* SEMINAR  */
.seminar {
  padding-block: 60px;
  background: #fff;
}
@media (min-width: 48em) {
  .seminar {
    padding-block: 6.25rem;
  }
}

@media (min-width: 48em) {
  .seminar__inner {
    max-width: 1140px;
    margin-inline: auto;
  }
}

.seminar__card {
  border-radius: 6px;
  border: 0px solid #707070;
  background: #fff;
  box-shadow: 5px 7px 34px 0px #f1f1f1;
  margin-bottom: 36px;
  padding-inline: 12px;
  padding-block: 24px 30px;
}
@media (min-width: 48em) {
  .seminar__card {
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 24px;
    padding-block: 24px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
}

.seminar__card:first-child {
  margin-top: 46px;
}

.seminar__card:last-child {
  margin-bottom: 46px;
}

.seminar__img {
  text-align: center;
}
.seminar__img img {
  min-width: 324px;
}

.seminar__date {
  margin-block: 22px 14px;
}

.date-tag {
  margin-top: 28px;
  margin-right: 10px;
  text-align: center;
  width: 60px;
  height: 24px;
  border-radius: 2px;
  background: #2392db;
  padding: 5px 12px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.date {
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
}

.seminar__title {
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 700;
}

.seminar__desc {
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 22px;
}

.seminar__link {
  text-align: right;
}

.seminar__button {
  text-align: center;
}

/* FAQ  */
.faq {
  padding-block: 60px;
}
@media (min-width: 48em) {
  .faq {
    padding-block: 6.25rem;
  }
}

@media (min-width: 48em) {
  .faq__inner {
    max-width: 860px;
    margin-inline: auto;
  }
}

.accordion__item {
  text-align: left;
}

.accordion__icon {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  border-radius: 10px 0px 0px 10px;
  background: #238fdc;
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically center the content */
  width: 50px;
  flex-shrink: 0;
}

.accordion summary {
  margin-block: 12px;
  font-size: 0.9375rem;
  font-weight: 400;
  padding-block: 0;
  border-radius: 10px;
  border: 0px solid #707070;
  background: #fff;
  cursor: pointer;
  position: relative;
  padding-inline: 0;
  padding-right: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
}

.accordion summary {
  list-style: none; /* 矢印アイコンを非表示にする */
}

.accordion summary::-webkit-details-marker {
  display: none; /* 矢印アイコンを非表示にする */
}

.accordion summary:after {
  content: "+";
  color: #238fdc;
  font-size: 40px;
  position: absolute;
  right: 15px; /* アイコンの位置を調整 */
  top: 50%;
  transform: translateY(-50%); /* アイコンを中央に配置 */
  transition: transform 0.5s ease; /* アニメーションを追加 */
}

.accordion[open] summary:after {
  content: "-";
  color: #238fdc;
  font-size: 60px;
  position: absolute;
  right: 15px; /* アイコンの位置を調整 */
  top: 50%;
  transform: translateY(-50%); /* アイコンを中央に配置 */
  transition: transform 0.5s ease; /* アニメーションを追加 */
}

.accordion .content {
  margin-block: 12px;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

details::details-content {
  block-size: 0;
  transition: block-size 1s ease, content-visibility 1s;
  transition-behavior: allow-discrete;
}

details[open]::details-content {
  block-size: auto;
}

/* PRICE  */
.price {
  padding-block: 3.75rem;
}
@media (min-width: 48em) {
  .price {
    padding-block: 6.25rem;
  }
}

@media (min-width: 48em) {
  .price__inner {
    max-width: 1180px;
    margin-inline: auto;
  }
}

.price__wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 48em) {
  .price__wrapper {
    flex-direction: row;
    justify-content: center;
  }
}

.price__card {
  padding-block: 30px;
  border-radius: 10px;
  border: 0px solid #707070;
  background: #fff;
}

.price__plan {
  color: #2392db;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.price__charge,
.price__charge--free {
  margin-bottom: 30px;
}

.price__charge::before {
  content: "月";
  color: var(--clr-txt-base);
  font-size: 1rem;
  font-weight: 700;
  padding-right: 4px;
}
.price__charge::after {
  content: "円";
  color: var(--clr-txt-base);
  font-size: 1rem;
  font-weight: 700;
  padding-right: 4px;
}

.price__table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 261px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.price__table tbody tr {
  display: block;
  border-bottom: 1px solid #c2c2c2;
}
.price__table th,
.price__table td {
  height: 39px;
  vertical-align: middle;
}
.price__table th:first-child,
.price__table td:first-child {
  text-align: left;
  padding-left: 12px;
  width: 120px;
}
.price__table th:nth-child(2),
.price__table td:nth-child(2) {
  text-align-last: right;
  width: 141px;
}

/* CASE STUDY  */
.casestudy {
  background: #fff;
  padding-block: 3.75rem;
}
@media (min-width: 48em) {
  .casestudy {
    padding-top: 6.25rem;
    padding-bottom: 3.75rem;
  }
}

@media (min-width: 48em) {
  .casestudy__inner {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 80px;
  }
}

.casestudy__slider {
  margin-top: 50px;
}
@media (min-width: 48em) {
  .casestudy__slider {
    margin-top: 40px;
  }
}

.casestudy__swiper {
  padding-bottom: 42px;
  padding-inline: 8px;
}
.casestudy__swiper .swiper-wrapper {
  gap: 18px;
}

.casestudy__slide {
  width: 320px !important;
  height: 330px;
  border-radius: 4px;
  background: #fff;
}

.casestudy-card__image img {
  min-width: 320px;
}

.casestudy-card__keyword {
  padding-top: 14px;
  color: #228ddd;
  font-size: 0.9375rem;
  font-weight: 700;
}

.casestudy-card__company {
  padding-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.casestudy-card__addition {
  font-size: 0.75rem;
  font-weight: 700;
}
.casestudy-card__addition::before {
  content: "　";
  font-size: 0.75rem;
  font-weight: 700;
}

.casestudy-card__industry {
  padding-top: 10px;
  color: #9d9d9d;
  font-size: 12px;
  font-weight: 400;
}

.casestudy-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.casestudy-pagination .casestudy-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-inline: 0 !important;
  background: #e1e1e1;
  opacity: 1;
}
.casestudy-pagination .casestudy-pagination-bullet.casestudy-pagination-bullet-active {
  background: #2f7dc8;
}

.casestudy__prev,
.casestudy__next {
  width: 44px;
  height: 44px;
  margin-top: -30px;
}
.casestudy__prev::after,
.casestudy__next::after {
  display: none;
}

.casestudy__prev {
  background: url(../img/prev.png) no-repeat center center/contain;
  left: 0;
}

.casestudy__next {
  right: 0;
  background: url(../img/next.png) no-repeat center center/contain;
}

.casestudy__link {
  margin-top: 30px;
  text-align: center;
}

/* CV */
.cv {
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  color: #fff;
  padding-block: 60px;
  text-align: center;
}
@media (min-width: 48em) {
  .cv {
    padding-block: 80px;
  }
}

.cv__content h2 {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 2.6px;
  margin-bottom: 8px;
}

.cv__content p {
  letter-spacing: 1.6px;
  margin-bottom: 17px;
}

/* COMPANY  */
.company {
  padding-block: 60px;
}
@media (min-width: 48em) {
  .company {
    padding-block: 100px;
  }
}

@media (min-width: 48em) {
  .company__inner {
    max-width: 960px;
    margin-inline: auto;
    padding-inline: 30px;
  }
}

/** タブメニュー */
.tab-menu {
  --tag-item-checked-color: #2392db;
  --tab-menu-item-height: 46px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}

.tab-menu > input {
  display: none;
}

.tab-menu .tab-menu-item {
  margin-top: 68px;
  align-items: center;
  padding-inline: 5px; /* Add padding inside the items */
  background: #fff;
  color: #2392db;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  flex-basis: 30%;
  height: var(--tab-menu-item-height);
  justify-content: center;
  order: -1;
  position: relative;
  bottom: -23px; /* Adjust this value to move the tab items down */
}
@media (min-width: 48em) {
  .tab-menu .tab-menu-item {
    margin-top: 80px;
    flex-basis: 20%;
  }
}
.tab-menu .tab-menu-item::before {
  content: "";
  background-image: url("../img/vector-36.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  height: 8px;
  width: 8px;
  vertical-align: middle;
  position: absolute; /* Position the pseudo-element absolutely */
  left: 5px; /* Position it 10px from the left */
  top: 50%; /* Center it vertically */
  transform: translateY(-50%); /* Adjust for vertical centering */
}

.tab-menu > input:checked + .tab-menu-item {
  background-color: var(--tag-item-checked-color);
  border-color: var(--tag-item-checked-color);
  color: #fff;
}
.tab-menu > input:checked + .tab-menu-item::before {
  background-image: url("../img/vector-34.svg");
}

.tab-menu .tab-menu-contents {
  display: none;
  border: 2px solid #2392db;
  background: #fff;
  text-align: center;
  width: 100%;
  min-height: 510px;
}

.tab-menu > input:checked + .tab-menu-item + .tab-menu-contents {
  display: block;
}

/** タブメニューここまで */
.company__tab-contents-item-title h3 {
  padding-top: 60px;
  font-size: 1.375rem;
  font-weight: 700;
}
.company__tab-contents-item-title p {
  padding-top: 20px;
  font-weight: 400;
}

.company__tab-contents-item-table {
  margin-inline: auto;
  margin-top: 20px;
  margin-bottom: 50px;
  width: 85%;
  border-collapse: collapse;
  table-layout: fixed;
}
.company__tab-contents-item-table tr {
  border: 1px solid #dbdbdb;
}
.company__tab-contents-item-table tr th {
  width: 160px;
  border: 1px solid #dbdbdb;
  background: #f2f2f2;
  padding-block: 14px;
  text-align: center;
  font-weight: 700;
}
.company__tab-contents-item-table tr td {
  padding-left: 10px;
  text-align: left;
  font-weight: 400;
}
@media (min-width: 48em) {
  .company__tab-contents-item-table {
    display: none;
  }
}

.company__tab-contents-item-table--pc {
  display: none;
}
@media (min-width: 48em) {
  .company__tab-contents-item-table--pc {
    display: block;
    margin-inline: auto;
    margin-top: 40px;
    margin-bottom: 97px;
    width: 85%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .company__tab-contents-item-table--pc tr {
    border: 1px solid #dbdbdb;
  }
  .company__tab-contents-item-table--pc tr th {
    border: 1px solid #dbdbdb;
    background: #f2f2f2;
    padding-block: 14px;
    text-align: center;
    width: 160px;
    font-weight: 700;
  }
  .company__tab-contents-item-table--pc tr td {
    padding-left: 10px;
    text-align: left;
    font-weight: 400;
    width: 250px;
    word-wrap: break-word;
  }
}

.company__tab-contents-item-history {
  margin-top: 44px;
  margin-left: 47px;
  text-align: left;
}
@media (min-width: 48em) {
  .company__tab-contents-item-history {
    margin-top: 80px;
    text-align: center;
  }
}
.company__tab-contents-item-history time {
  color: #2392db;
  font-weight: 700;
  padding-bottom: 2px;
  position: relative; /* Add relative positioning to the parent */
}
.company__tab-contents-item-history time::before {
  content: "";
  background-image: url("../img/ellipse-4.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  height: 9px;
  width: 9px;
  vertical-align: middle;
  position: absolute; /* Position the pseudo-element absolutely */
  left: -17px;
  top: 50%; /* Center it vertically */
  transform: translateY(-50%); /* Adjust for vertical centering */
}
.company__tab-contents-item-history p {
  padding-bottom: 16px;
  font-weight: 400;
}

.company__tab-contents-item-certification {
  margin-top: 58px;
  margin-inline: 30px;
  text-align: left;
}
@media (min-width: 48em) {
  .company__tab-contents-item-certification {
    margin-top: 80px;
    max-width: 600px;
    margin-inline: auto;
  }
}
.company__tab-contents-item-certification h3 {
  color: #2392db;
  font-weight: 700;
  margin-bottom: 14px;
}

/* FOOTER  */
.footer {
  background: linear-gradient(90deg, #2390dc 0%, #2bc8c8 100%);
  color: #fff;
  font-size: 0.875rem;
}

.footer__inner {
  text-align: center;
}
@media (min-width: 48em) {
  .footer__inner {
    max-width: 1140px;
    margin-inline: auto;
  }
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media (min-width: 48em) {
  .footer__contact {
    align-items: flex-start;
  }
}

.footer__logo img {
  width: 160px;
}

.footer__address {
  margin-top: 36px;
}

.footer__tel {
  padding-top: 4px;
}

.footer__fax {
  padding-top: 4px;
}

.nav {
  margin-top: 36px;
}
@media (min-width: 48em) {
  .nav {
    margin-top: 0;
  }
}

.footer__wrapper {
  padding-top: 46px;
}
@media (min-width: 48em) {
  .footer__wrapper {
    padding-top: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}

.nav__items {
  text-align: center;
}
@media (min-width: 48em) {
  .nav__items {
    display: flex;
  }
}

.nav__items li {
  border-left: 1px solid #fff;
  padding-inline: 25px;
}

.nav__items li:nth-of-type(1) {
  border-left: none;
}

/* aをblockにすることで全体がclickableに */
.nav__link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.nav__link::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
}
.nav__link:hover {
  opacity: 0.7;
}

.footer__sns {
  margin-top: 36px;
  text-align: center;
}
@media (min-width: 48em) {
  .footer__sns {
    margin-top: 0;
  }
}
.footer__sns img {
  width: 122px;
}

.footer__copywrite {
  margin-top: 36px;
  padding-block: 11px;
  font-size: 0.75rem;
}

/* PAGETOP  */
.pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (min-width: 48em) {
  .pagetop {
    bottom: 30px;
    right: 16px;
    width: 76px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=style.css.map */
