@charset "UTF-8";

/*-------------------------------------------
common
-------------------------------------------*/
:root {
  --red: #FF3301;
  --green: #129459;
  --table-y-green: #e9f5ef;
}
body {
  line-height: 1.75;
}
.company-container {
  max-width: 920px;
  padding-inline: 20px;
  margin-inline: auto;
}
.company-section-title {
  font-size: min(3.7vw, 32px);
  font-weight: bold;
  color: var(--green);
  text-align: center;
  margin-bottom: 25px;
}

/*-------------------------------------------
mv
-------------------------------------------*/
.page-mv {
  background-image: url(../img/company/company-mv.jpg);
}

/*-------------------------------------------
月額パンダ
-------------------------------------------*/
.company-panda {
  margin-bottom: 100px;
}
.company-panda .page-section-title {
  margin-bottom: 80px;
}
.company-img {
  max-width: 228px;
  margin-inline: auto;
  margin-bottom: 80px;
}
.company-text {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/*-------------------------------------------
会社概要
-------------------------------------------*/
.company-table {
  margin-bottom: 200px;
}
.company-table .page-section-title {
  margin-bottom: 25px;
}
.company-table dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.company-table dt {
  width: 35%;
  border-top: 1px solid #707070;
}
.company-table dd {
  width: 65%;
  border-top: 1px solid #707070;
}
.company-table dt:last-of-type,
.company-table dd:last-of-type {
  border-bottom: 1px solid #707070;
}
.company-table dt,
.company-table dd {
  font-size: min(2vw, 17px);
  font-weight: 500;
  line-height: 2;
  padding: 0.8em 1em 0.8em 0;
}
.company-table dd a {
  color: #0299FD;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* common
  -------------------------------------------*/
  .company-section-title {
    font-size: max(3.3vw, 20px);
  }

  /* mv
  -------------------------------------------*/
  .page-mv {
    background-image: url(../img/company/company-mv-sp.jpg);
  }

    /* 月額パンダ
  -------------------------------------------*/
  .company-panda {
    margin-bottom: 50px;
  }
  .company-panda .page-section-title {
    margin-bottom: 60px;
  }
  .company-img {
    width: 50%;
    margin-bottom: 40px;
  }
  .company-text {
    font-size: max(2.5vw, 16px);
  }

  /* 会社概要
  -------------------------------------------*/
  .company-table {
    margin-bottom: 100px;
  }
  .company-table dl {
    flex-direction: column;
  }
  .company-table dt {
    width: 100%;
    background-color: var(--table-y-green);
  }
  .company-table dd {
    width: 100%;
    border-top: none;
  }
  .company-table dt:last-of-type {
    border-bottom: none;
  }
  .company-table dt,
  .company-table dd {
    font-size: max(2.3vw, 16px);
    padding: 0.3em 0.5em;
  }
  .company-table dd li {
    padding-left: 5em;
    text-indent: -5em;
  }
  .nowrap {
    white-space: nowrap;
  }
}