@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap);
:root {
  --ff-noto-sans: "Noto Sans JP", Meiryo, sans-serif;
  --c-white: #ffffff;
  --c-black: #000000;
  --c-gray-light: #eeeeee;
  --c-green-primary: #23ac48;
  --c-green-dark: #009943;
  --c-green-light: #7bcd91;
  --c-text-main: #333333;
  --c-red-accent: #b34040;
}

/* ==========================================================================//
//
//　calc関数、エディターコンパイル用
//（calc関数をそのままscssに入れてコンパイルすると、自動で計算後のvwに変換されるため用意しています。）
//
//
// ========================================================================== */
/** -------------------------------- **
	PC用
*** ----------------------------------------------------------------- ***/
/*-- 基本ヘッダーフッター用、またはコンテンツ幅を超えてアートボードいっぱいにデザインされているもの --*/
/*-- mainタグ内（デザインのコンテンツ幅1280pxと両サイドのpadding40pxを足して1320） --*/
/** -------------------------------- **
	タブレット用
*** ----------------------------------------------------------------- ***/
/** -------------------------------- **
	SP用
*** ----------------------------------------------------------------- ***/
.anchor-nav {
  max-width: 1200px;
  margin-block: min(calc(32 / 1320 * 100vw), 32px) min(calc(60 / 1320 * 100vw), 60px);
  margin-inline: auto;
  padding-inline: min(calc(20 / 1320 * 100vw), 20px);
  text-align: center;
}
@media (max-width: 767px) {
  .anchor-nav {
    margin-block: calc( 30/375 * 100vw) calc( 60/375 * 100vw);
    padding-inline: calc( 0/375 * 100vw);
  }
}
.anchor-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(calc(120 / 1320 * 100vw), 120px), 1fr));
  justify-items: center;
}
@media (max-width: 767px) {
  .anchor-nav__list {
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .anchor-nav__list {
    gap: min(calc(20 / 1320 * 100vw), 20px);
  }
}
.anchor-nav__item {
  width: 100%;
}
@media (max-width: 767px) {
  .anchor-nav__item:nth-child(2n) .anchor-nav__link {
    border-right: none;
  }
  .anchor-nav__item:nth-of-type(1) .anchor-nav__link, .anchor-nav__item:nth-of-type(2) .anchor-nav__link {
    border-bottom: none;
  }
}
.anchor-nav__link {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: min(calc(56 / 1320 * 100vw), 56px);
  border: 1px solid var(--c-green-dark);
  background-color: var(--c-white);
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  font-weight: 600;
  color: var(--c-green-dark);
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media (any-hover: hover) {
  .anchor-nav__link:hover {
    background-color: var(--c-green-light);
    color: var(--c-white);
    border-color: var(--c-green-light);
  }
  .anchor-nav__link:hover::after {
    border-color: var(--c-white);
  }
}
@media (max-width: 767px) {
  .anchor-nav__link {
    height: calc( 48/375 * 100vw);
    border-radius: 0;
    padding-right: calc( 10/375 * 100vw);
    border-left: none;
    font-size: calc( 16/375 * 100vw);
  }
}
.anchor-nav__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: min(calc(30 / 1320 * 100vw), 30px);
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--c-green-dark);
  border-bottom: 2px solid var(--c-green-dark);
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .anchor-nav__link::after {
    right: calc( 22/375 * 100vw);
    width: calc( 12/375 * 100vw);
    height: calc( 12/375 * 100vw);
  }
}
@media (min-width: 768px) {
  .anchor-nav__link {
    border-radius: min(calc(40 / 1320 * 100vw), 40px);
  }
}

.company-profile {
  padding-block: min(calc(115 / 1320 * 100vw), 115px) 0;
}
@media (max-width: 767px) {
  .company-profile {
    padding-block: calc( 60/375 * 100vw) 0;
  }
}
.company-profile__content {
  width: 100%;
}
.company-profile__table {
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
}
.company-profile {
  /* =====================
     行（基本）
  ===================== */
}
.company-profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(30 / 1320 * 100vw), 30px);
  padding-block: min(calc(30 / 1320 * 100vw), 30px) min(calc(31 / 1320 * 100vw), 31px);
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .company-profile__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc( 0/375 * 100vw);
    padding-block: calc( 30/375 * 100vw) calc( 0/375 * 100vw);
  }
}
.company-profile__row--split .company-profile__desc {
  padding-top: 0;
}
.company-profile__term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  padding-block: min(calc(12 / 1320 * 100vw), 12px) min(calc(12 / 1320 * 100vw), 12px);
  background-color: #d3eeda;
  text-align: center;
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  font-weight: 600;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .company-profile__term {
    width: 100%;
    padding-block: calc( 19/375 * 100vw) calc( 19/375 * 100vw);
    font-size: calc( 16/375 * 100vw);
  }
}
.company-profile__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: min(calc(10 / 1320 * 100vw), 10px) min(calc(13 / 1320 * 100vw), 13px);
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  line-height: 2;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .company-profile__desc {
    padding-block: calc( 20/375 * 100vw) calc( 23/375 * 100vw);
    font-size: calc( 16/375 * 100vw);
  }
}
@media (max-width: 767px) {
  .company-profile__desc > .company-profile__list {
    padding-block: calc( 20/375 * 100vw) calc( 20/375 * 100vw);
  }
}
.company-profile {
  /* =====================
     サブテーブル（入れ子DL）
  ===================== */
}
.company-profile__subtable {
  padding: 0;
  border-top: 1px dotted #ccc;
}
@media (max-width: 767px) {
  .company-profile__subtable {
    border-top: none;
  }
}
.company-profile__subtable--address .company-profile__subterm {
  width: 90px;
}
@media (max-width: 767px) {
  .company-profile__subtable--address .company-profile__subterm {
    width: 100%;
  }
}
.company-profile__subtable--business .company-profile__subrow {
  gap: min(calc(20 / 1320 * 100vw), 20px);
}
.company-profile__subtable--business .company-profile__subterm {
  width: 170px;
}
.company-profile__subtable--business .company-profile__list {
  margin-block: min(calc(-3 / 1320 * 100vw), -3px) min(calc(2 / 1320 * 100vw), 2px);
  padding-left: min(calc(28 / 1320 * 100vw), 28px);
}
@media (max-width: 767px) {
  .company-profile__subtable--business .company-profile__subrow {
    gap: 0;
  }
  .company-profile__subtable--business .company-profile__subterm {
    width: 100%;
  }
  .company-profile__subtable--business .company-profile__subdesc {
    -webkit-padding-before: calc( 15/375 * 100vw);
            padding-block-start: calc( 15/375 * 100vw);
  }
  .company-profile__subtable--business .company-profile__list {
    -webkit-margin-start: calc( 10/375 * 100vw);
            margin-inline-start: calc( 10/375 * 100vw);
  }
}
.company-profile__subrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(40 / 1320 * 100vw), 40px);
  border-bottom: 1px dotted #ccc;
}
@media (max-width: 767px) {
  .company-profile__subrow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc( 12/375 * 100vw);
    padding-block: calc( 20/375 * 100vw) calc( 15/375 * 100vw);
  }
}
.company-profile__subterm {
  padding-block: min(calc(12 / 1320 * 100vw), 12px) min(calc(14 / 1320 * 100vw), 14px);
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  font-weight: 600;
}
@media (max-width: 767px) {
  .company-profile__subterm {
    padding-block: 0;
    font-size: calc( 16/375 * 100vw);
  }
}
.company-profile__subdesc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: min(calc(12 / 1320 * 100vw), 12px) min(calc(14 / 1320 * 100vw), 14px);
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  line-height: 2;
}
@media (max-width: 767px) {
  .company-profile__subdesc {
    padding-block: calc( 0/375 * 100vw) calc( 10/375 * 100vw);
    font-size: calc( 14/375 * 100vw);
  }
}
.company-profile {
  /* =====================
     リスト
  ===================== */
}
.company-profile__list {
  margin: 0;
  margin-block: min(calc(-8 / 1320 * 100vw), -8px);
  padding-left: min(calc(18 / 1320 * 100vw), 18px);
}
@media (max-width: 767px) {
  .company-profile__list {
    margin-block: calc( 0/375 * 100vw) calc( 0/375 * 100vw);
    padding-left: calc( 18/375 * 100vw);
  }
}
.company-profile__list-item {
  position: relative;
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  line-height: 2;
}
@media (max-width: 767px) {
  .company-profile__list-item {
    font-size: calc( 16/375 * 100vw);
  }
}
.company-profile__list-item::before {
  content: "●";
  position: absolute;
  left: -2em;
  top: 1.1em;
  display: inline;
  color: var(--c-green-light);
  font-size: min(calc(8 / 1320 * 100vw), 8px);
}
@media (max-width: 767px) {
  .company-profile__list-item::before {
    font-size: calc( 8/375 * 100vw);
  }
}
.company-profile__list-item + .company-profile__list-item {
  margin-top: min(calc(10 / 1320 * 100vw), 10px);
}
@media (max-width: 767px) {
  .company-profile__list-item + .company-profile__list-item {
    margin-top: calc( 10/375 * 100vw);
  }
}
.company-profile {
  /* =====================
     横並びカラム
  ===================== */
}
.company-profile__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(40 / 1320 * 100vw), 40px);
}
@media (max-width: 767px) {
  .company-profile__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc( 20/375 * 100vw);
    padding-block: calc( 10/375 * 100vw) calc( 20/375 * 100vw);
  }
}
.company-profile__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.iso-logo {
  width: min(calc(279 / 1320 * 100vw), 279px);
  display: block;
}
@media (max-width: 767px) {
  .iso-logo {
    width: 80%;
    margin-block: calc( 30/375 * 100vw) auto;
    margin-inline: auto;
  }
}
.iso-logo img {
  width: 100%;
  height: auto;
}
.iso-logo figcaption {
  margin-top: min(calc(8 / 1320 * 100vw), 8px);
  text-align: center;
  font-size: min(calc(11 / 1320 * 100vw), 11px);
  color: var(--c-text-sub);
}
@media (max-width: 767px) {
  .iso-logo figcaption {
    margin-top: calc( 6/375 * 100vw);
    font-size: calc( 12/375 * 100vw);
  }
}
.iso-logo figcaption a {
  color: var(--c-text-sub);
  text-decoration: none;
}
@media (any-hover: hover) {
  .iso-logo figcaption a:hover {
    text-decoration: underline;
  }
}

.company-history {
  padding-block: min(calc(100 / 1320 * 100vw), 100px) 0;
  padding-inline: min(calc(20 / 1320 * 100vw), 20px);
}
@media (max-width: 767px) {
  .company-history {
    padding-block: calc( 100/375 * 100vw) 0;
    padding-inline: calc( 20/375 * 100vw);
  }
}
.company-history__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(80 / 1320 * 100vw), 80px);
  max-width: 1160px;
  padding: min(calc(60 / 1320 * 100vw), 60px) 0;
  background-color: #f3f3f3;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .company-history__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc( 48/375 * 100vw);
    padding-block: calc( 40/375 * 100vw) calc( 40/375 * 100vw);
    border-radius: 15px;
  }
}
.company-history__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(calc(480 / 1320 * 100vw), 480px);
}
@media (max-width: 767px) {
  .company-history__heading {
    width: 100%;
    text-align: center;
  }
}
.company-history__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .company-history__title {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.company-history__title-en {
  background: -webkit-gradient(linear, left bottom, left top, from(#23ac48), to(#7bcd91));
  background: linear-gradient(0deg, #23ac48 0%, #7bcd91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: italic;
  font-size: min(calc(80 / 1320 * 100vw), 80px);
  letter-spacing: 0.025em;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .company-history__title-en {
    font-size: calc( 54/375 * 100vw);
  }
}
.company-history__title-jp {
  -webkit-margin-before: min(calc(15 / 1320 * 100vw), 15px);
          margin-block-start: min(calc(15 / 1320 * 100vw), 15px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(calc(26 / 1320 * 100vw), 26px);
  line-height: 1;
  color: var(--c-black);
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .company-history__title-jp {
    -webkit-margin-before: calc( 8/375 * 100vw);
            margin-block-start: calc( 8/375 * 100vw);
    font-size: calc( 20/375 * 100vw);
  }
}
@media (min-width: 768px) {
  .company-history__title-jp {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}
.company-history__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .company-history__content {
    padding-inline: calc( 30/375 * 100vw);
  }
}
@media (min-width: 768px) {
  .company-history__content {
    margin-top: min(calc(3 / 1320 * 100vw), 3px);
    margin-left: min(calc(5 / 1320 * 100vw), 4px);
  }
}
.company-history__list {
  padding-left: min(calc(30 / 1320 * 100vw), 30px);
}
@media (max-width: 767px) {
  .company-history__list {
    padding-left: calc( 18/375 * 100vw);
    text-align: left;
  }
}
.company-history__list > * {
  position: relative;
  padding-left: min(calc(15 / 1320 * 100vw), 15px);
}
@media (max-width: 767px) {
  .company-history__list > * {
    padding-left: calc( 21/375 * 100vw);
  }
}
.company-history__list + * {
  margin-top: min(calc(10 / 1320 * 100vw), 10px);
}
@media (max-width: 767px) {
  .company-history__list + * {
    margin-top: calc( 16/375 * 100vw);
  }
}
.company-history__date {
  font-size: min(calc(14 / 1320 * 100vw), 14px);
  font-weight: 600;
  color: var(--c-green-dark);
  line-height: 1;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .company-history__date {
    font-size: calc( 14/375 * 100vw);
  }
}
.company-history__date::before {
  display: block;
  content: "";
  position: absolute;
  left: min(calc(-23 / 1320 * 100vw), -23px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(calc(20 / 1320 * 100vw), 20px);
  height: min(calc(20 / 1320 * 100vw), 20px);
  border-radius: 50%;
  background-color: var(--c-green-dark);
}
@media (max-width: 767px) {
  .company-history__date::before {
    width: calc( 20/375 * 100vw);
    height: calc( 20/375 * 100vw);
    left: calc( -18/375 * 100vw);
  }
}
.company-history__description {
  margin-top: min(calc(13 / 1320 * 100vw), 13px);
  padding-block: min(calc(11 / 1320 * 100vw), 11px) min(calc(21 / 1320 * 100vw), 21px);
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  line-height: 2;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .company-history__description {
    margin-top: calc( 13/375 * 100vw);
    padding-block: calc( 11/375 * 100vw) calc( 21/375 * 100vw);
    font-size: calc( 16/375 * 100vw);
  }
}
.company-history__description::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: min(calc(-17 / 1320 * 100vw), -17px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(calc(4 / 1320 * 100vw), 4px);
  height: 100%;
  background-color: #ccc;
}
@media (max-width: 767px) {
  .company-history__description::before {
    left: calc( -10/375 * 100vw);
    width: calc( 4/375 * 100vw);
  }
}

.company-access {
  margin-top: min(calc(100 / 1320 * 100vw), 100px);
  padding-block: min(calc(100 / 1320 * 100vw), 100px) 0;
  padding-inline: min(calc(20 / 1320 * 100vw), 20px);
}
@media (max-width: 767px) {
  .company-access {
    margin-top: calc( 100/375 * 100vw);
    padding-block: calc( 100/375 * 100vw) calc( 0/375 * 100vw);
    padding-inline: calc( 0/375 * 100vw);
  }
}
.company-access__inner {
  margin: 0 auto;
}
.company-access__content {
  width: 100%;
}
.company-access__office {
  margin-bottom: min(calc(70 / 1320 * 100vw), 70px);
}
@media (max-width: 767px) {
  .company-access__office {
    margin-bottom: calc( 60/375 * 100vw);
  }
}
.company-access__office-heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: min(calc(30 / 1320 * 100vw), 30px);
  padding-bottom: min(calc(18 / 1320 * 100vw), 18px);
  font-size: min(calc(24 / 1320 * 100vw), 24px);
  font-weight: 600;
  color: var(--c-black);
}
@media (max-width: 767px) {
  .company-access__office-heading {
    margin-bottom: calc( 40/375 * 100vw);
    padding-bottom: calc( 22/375 * 100vw);
    font-size: calc( 20/375 * 100vw);
  }
}
.company-access__office-heading::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.company-access__office-icon {
  display: inline-block;
  width: min(calc(20 / 1320 * 100vw), 20px);
  height: auto;
  margin-right: min(calc(18 / 1320 * 100vw), 18px);
}
@media (max-width: 767px) {
  .company-access__office-icon {
    width: calc( 20/375 * 100vw);
    margin-right: calc( 17/375 * 100vw);
  }
}
.company-access__office-icon svg {
  width: 100%;
  height: auto;
  fill: var(--c-green-primary);
  color: var(--c-green-primary);
}
.company-access__office-name {
  font-size: min(calc(30 / 1320 * 100vw), 30px);
  font-weight: 600;
  color: var(--c-black);
}
@media (max-width: 767px) {
  .company-access__office-name {
    font-size: calc( 20/375 * 100vw);
  }
}
.company-access__office-en {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  color: var(--c-green-light);
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .company-access__office-en {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: calc( 16/375 * 100vw);
  }
}
.company-access__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: min(calc(40 / 1320 * 100vw), 40px);
  width: 100%;
}
@media (max-width: 767px) {
  .company-access__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: calc( 30/375 * 100vw);
  }
}
.company-access__details > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company-access__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: min(calc(16 / 1320 * 100vw), 16px);
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  line-height: 2;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .company-access__info {
    font-size: calc( 16/375 * 100vw);
    margin-bottom: calc( 12/375 * 100vw);
  }
}
.company-access__address {
  color: var(--c-blackgreen-dark);
}
.company-access__tel {
  color: var(--c-black);
}
.company-access__fax {
  color: var(--c-black);
}
.company-access__station {
  margin-top: min(calc(22 / 1320 * 100vw), 22px);
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  color: var(--c-black);
}
@media (max-width: 767px) {
  .company-access__station {
    margin-top: calc( 43/375 * 100vw);
    font-size: calc( 16/375 * 100vw);
  }
}
.company-access__station-term {
  -webkit-margin-after: min(calc(10 / 1320 * 100vw), 10px);
          margin-block-end: min(calc(10 / 1320 * 100vw), 10px);
  font-weight: 600;
  color: var(--c-black);
}
.company-access__station-desc {
  margin-left: min(calc(4 / 1320 * 100vw), 4px);
}
@media (max-width: 767px) {
  .company-access__station-desc {
    margin-top: calc( 10/375 * 100vw);
    margin-left: calc( -3/375 * 100vw);
  }
}
.company-access__station-list {
  margin-top: min(calc(4 / 1320 * 100vw), 4px);
  padding-left: min(calc(18 / 1320 * 100vw), 18px);
}
@media (max-width: 767px) {
  .company-access__station-list {
    margin-top: calc( 2/375 * 100vw);
    padding-left: calc( 18/375 * 100vw);
  }
}
.company-access__station-item {
  position: relative;
}
.company-access__station-item::before {
  content: "●";
  position: absolute;
  left: -2em;
  top: 1.1em;
  display: inline;
  color: var(--c-green-light);
  font-size: min(calc(8 / 1320 * 100vw), 8px);
}
@media (max-width: 767px) {
  .company-access__station-item::before {
    top: calc( 9/375 * 100vw);
    font-size: calc( 8/375 * 100vw);
  }
}
.company-access__station-item + .company-access__station-item {
  margin-top: min(calc(10 / 1320 * 100vw), 10px);
}
@media (max-width: 767px) {
  .company-access__station-item + .company-access__station-item {
    margin-top: calc( 11/375 * 100vw);
  }
}
.company-access__map-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 min(46.9696969697vw, 620px);
          flex: 0 0 min(46.9696969697vw, 620px);
  width: 100%;
}
.company-access__map {
  overflow: hidden;
  border: 1px solid #ccc;
  /* マップの口コミ枠の削除ここから */
  position: relative;
  overflow-y: hidden;
  width: 100%;
  padding-top: 65%;
  /* マップの口コミ枠の削除ここまで */
}
.company-access__map iframe {
  /* 枠ありの場合下記を復活する */
  /* display: block;
  width: 100%;
  aspect-ratio: 620 / 310;
  border: 0; */
  /* マップの口コミ枠の削除ここから */
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 300px);
  /* マップの口コミ枠の削除ここまで */
}

.company-group {
  margin-top: min(calc(100 / 1320 * 100vw), 100px);
  padding-block: min(calc(100 / 1320 * 100vw), 100px);
  padding-inline: min(calc(20 / 1320 * 100vw), 20px);
}
@media (max-width: 767px) {
  .company-group {
    margin-top: calc( 60/375 * 100vw);
    padding-block: calc( 100/375 * 100vw) calc( 100/375 * 100vw);
    padding-inline: calc( 0/375 * 100vw);
  }
}
.company-group__inner {
  margin: 0 auto;
}
.company-group__lead {
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  line-height: 2;
  letter-spacing: 0.025em;
  margin-bottom: min(calc(60 / 1320 * 100vw), 60px);
}
@media (max-width: 767px) {
  .company-group__lead {
    font-size: calc( 14/375 * 100vw);
    margin-bottom: calc( 75/375 * 100vw);
  }
}
.company-group__main-logo {
  width: min(calc(244 / 1320 * 100vw), 244px);
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .company-group__main-logo {
    width: 73%;
  }
}
.company-group__main-logo img {
  display: block;
  width: 100%;
}
.company-group__subheading {
  position: relative;
  margin-block: min(calc(60 / 1320 * 100vw), 60px) min(calc(40 / 1320 * 100vw), 40px);
  -webkit-padding-start: min(calc(37 / 1320 * 100vw), 37px);
          padding-inline-start: min(calc(37 / 1320 * 100vw), 37px);
  -webkit-padding-after: min(calc(18 / 1320 * 100vw), 18px);
          padding-block-end: min(calc(18 / 1320 * 100vw), 18px);
  font-size: min(calc(30 / 1320 * 100vw), 30px);
  font-weight: 600;
  color: var(--c-black);
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .company-group__subheading {
    margin-block: calc( 100/375 * 100vw) calc( 40/375 * 100vw);
    -webkit-padding-start: calc( 36/375 * 100vw);
            padding-inline-start: calc( 36/375 * 100vw);
    -webkit-padding-after: calc( 23/375 * 100vw);
            padding-block-end: calc( 23/375 * 100vw);
    font-size: calc( 20/375 * 100vw);
  }
}
.company-group__subheading::after {
  content: "";
  position: absolute;
  top: min(calc(10 / 1320 * 100vw), 10px);
  left: 0;
  width: min(calc(20 / 1320 * 100vw), 20px);
  height: min(calc(20 / 1320 * 100vw), 20px);
  background-color: var(--c-green-primary);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .company-group__subheading::after {
    top: calc( 2/375 * 100vw);
    width: calc( 20/375 * 100vw);
    height: calc( 20/375 * 100vw);
  }
}
.company-group__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(30 / 1320 * 100vw), 30px);
}
@media (max-width: 767px) {
  .company-group__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc( 20/375 * 100vw);
  }
}
.company-group__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: min(calc(40 / 1320 * 100vw), 40px) min(calc(18 / 1320 * 100vw), 18px);
  background-color: #f3f3f3;
  border-radius: min(calc(20 / 1320 * 100vw), 20px);
}
@media (max-width: 767px) {
  .company-group__item {
    padding: calc( 35/375 * 100vw) calc( 30/375 * 100vw) calc( 45/375 * 100vw);
    border-radius: calc( 10/375 * 100vw);
  }
}
.company-group__company-name {
  text-align: center;
  font-size: min(calc(20 / 1320 * 100vw), 20px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .company-group__company-name {
    font-size: calc( 20/375 * 100vw);
  }
}
.company-group__description {
  margin-top: min(calc(16 / 1320 * 100vw), 16px);
  text-align: center;
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.025em;
}
@media (max-width: 767px) {
  .company-group__description {
    margin-top: calc( 28/375 * 100vw);
    font-size: calc( 16/375 * 100vw);
  }
}
.company-group__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: min(calc(80 / 1320 * 100vw), 80px);
  margin: 0 auto min(calc(30 / 1320 * 100vw), 30px);
}
@media (max-width: 767px) {
  .company-group__logo {
    min-height: auto;
    margin: calc( 30/375 * 100vw) auto 0;
  }
}
.company-group__logo img {
  display: block;
}
.company-group__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(40 / 1320 * 100vw), 40px);
  margin-top: min(calc(60 / 1320 * 100vw), 60px);
}
@media (max-width: 767px) {
  .company-group__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc( 10/375 * 100vw);
    margin-top: calc( 70/375 * 100vw);
  }
}
.company-group__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.company-group__text-list {
  padding-left: min(calc(18 / 1320 * 100vw), 18px);
}
@media (max-width: 767px) {
  .company-group__text-list {
    padding-left: calc( 18/375 * 100vw);
  }
}
.company-group__text-item {
  position: relative;
  font-size: min(calc(16 / 1320 * 100vw), 16px);
  line-height: 2;
}
@media (max-width: 767px) {
  .company-group__text-item {
    font-size: calc( 16/375 * 100vw);
  }
}
.company-group__text-item::before {
  content: "●";
  position: absolute;
  left: -2em;
  top: 1.1em;
  display: inline;
  color: var(--c-green-light);
  font-size: min(calc(8 / 1320 * 100vw), 8px);
}
@media (max-width: 767px) {
  .company-group__text-item::before {
    font-size: calc( 8/375 * 100vw);
  }
}
.company-group__text-item + .company-group__text-item {
  margin-top: min(calc(10 / 1320 * 100vw), 10px);
}
@media (max-width: 767px) {
  .company-group__text-item + .company-group__text-item {
    margin-top: calc( 10/375 * 100vw);
  }
}