@charset "UTF-8";
/* ブレイクポイント
================================================================================================= */
/* color
========================================================================== */
/* font
========================================================================== */
/* 会社概要ページ共通
------------------------------------------------------------*/
.mdbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .mdbr {
    display: inline;
  }
}

.companyHeader {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  .companyHeader {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .companyHeader {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .companyHeader {
    margin-bottom: 26px;
  }
}
.companyHeader h1 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .companyHeader h1 {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .companyHeader p {
    font-size: 1.4rem;
  }
}

.companyContent {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  .companyContent {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .companyContent {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .companyContent {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.conpanyLinks {
  background-color: #F5FFF3;
  padding: 40px 0;
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .conpanyLinks {
    padding: 20px 0;
    margin: 40px 0;
  }
}
.conpanyLinks ul {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .conpanyLinks ul {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 640px) {
  .conpanyLinks ul {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .conpanyLinks ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.conpanyLinks a {
  text-decoration: none;
}
.conpanyLinks span {
  display: block;
  font-size: 1.4rem;
  padding: 8px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .conpanyLinks span {
    font-size: 1.3rem;
    padding: 4px 8px;
  }
}

.engLabelHeading {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
}
.engLabelHeading small {
  font-size: 1.6rem;
  color: #7BC4C4;
  display: block;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .engLabelHeading small {
    font-size: 1.4rem;
    margin-bottom: 2px;
    line-height: 1;
  }
}
.engLabelHeading span {
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .engLabelHeading span {
    font-size: 2rem;
  }
}

/* 会社案内TOP : /company
------------------------------------------------------------*/
.companyTopWrapper {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .companyTopWrapper {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.companyTopWrapper::before, .companyTopWrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  display: block;
}
.companyTopWrapper::before {
  background-image: url("../img/company-top-bg.jpg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.companyTopWrapper::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, rgba(255, 255, 255, 0.5)), color-stop(80%, #F5FFF3));
  background-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.5) 50%, #F5FFF3 80%);
}
.companyTop__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  padding: 40px;
  background-color: rgba(255, 249, 229, 0.8);
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .companyTop__list {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
    border-radius: 8px;
    gap: 20px 10px;
  }
}
.companyTop__list a {
  text-decoration: none;
}
.companyTop__list span {
  display: block;
  font-size: 2.2rem;
  padding: 10px 16px;
  line-height: 1.5;
  color: #333;
  font-weight: bold;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .companyTop__list span {
    font-size: 1.3rem;
    padding: 4px 8px;
  }
}

/* 会社概要 : /company/outline
------------------------------------------------------------*/
.outlineImage {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 80px;
  display: block;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .outlineImage {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 768px) {
  .outlineImage {
    width: calc(100% - 60px);
    margin-bottom: 40px;
  }
}
.outlineImage .arrow_box {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.outlineImage .prev-arrow,
.outlineImage .next-arrow {
  display: block;
  width: 20px;
  aspect-ratio: 1/1.6;
  background: #7BC4C4;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .outlineImage .prev-arrow,
  .outlineImage .next-arrow {
    width: 15px;
  }
}
.outlineImage .prev-arrow {
  left: -40px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
          clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
@media screen and (max-width: 768px) {
  .outlineImage .prev-arrow {
    left: -25px;
  }
}
.outlineImage .next-arrow {
  right: -40px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 768px) {
  .outlineImage .next-arrow {
    right: -25px;
  }
}

.outlineInfo {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 80px;
}
.outlineInfo dt {
  background-color: #419391;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 20px;
  line-height: 1;
  border: 1px solid #333;
  border-bottom: 0;
}
@media screen and (max-width: 640px) {
  .outlineInfo dt {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}
.outlineInfo dd {
  border: 1px solid #333;
  padding: 16px 20px;
  font-size: 1.6rem;
  border-bottom: 0;
}
.outlineInfo dd:last-child {
  border-bottom: 1px solid #333;
}
.outlineInfo dd small {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .outlineInfo dd {
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}
.outlineInfo a {
  color: #7BC4C4;
}
.outlineInfo__officers li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.outlineInfo__officers li span:nth-child(1) {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .outlineInfo__officers li span:nth-child(1) {
    width: 140px;
  }
}
.outlineInfo__officers li span:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.outlineInfo__officers small {
  display: inline-block;
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .outlineInfo__officers small {
    margin-left: 0px;
  }
}

.outlineHistory {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 80px;
}
.outlineHistory dl {
  display: grid;
  grid-template-columns: 120px 1fr;
}
@media screen and (max-width: 768px) {
  .outlineHistory dl {
    grid-template-columns: 90px 1fr;
  }
}
.outlineHistory dt {
  border-right: 4px solid #7BC4C4;
  padding: 5px 0px;
}
@media screen and (max-width: 768px) {
  .outlineHistory dt {
    padding: 5px 10px 5px 0;
    font-size: 1.4rem;
    text-align: right;
  }
}
.outlineHistory dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px 30px;
}
@media screen and (max-width: 768px) {
  .outlineHistory dd {
    padding: 5px 0 5px 10px;
    font-size: 1.4rem;
  }
}

/* 事業内容 : /company/business
------------------------------------------------------------*/
.businessDetails {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .businessDetails {
    margin-bottom: 30px;
  }
}
.businessDetails dt {
  background-color: #419391;
  color: #fff;
  font-size: 1.6rem;
  padding: 10px 20px;
  line-height: 1;
  border: 1px solid #333;
  border-bottom: 0;
}
@media screen and (max-width: 640px) {
  .businessDetails dt {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}
.businessDetails dd {
  border: 1px solid #333;
  padding: 16px 20px;
  font-size: 1.6rem;
  border-bottom: 0;
}
.businessDetails dd:last-child {
  border-bottom: 1px solid #333;
}
.businessDetails dd small {
  font-size: 1.3rem;
}
@media screen and (max-width: 640px) {
  .businessDetails dd {
    padding: 10px 20px;
    font-size: 1.4rem;
  }
}
.businessDetails__list {
  list-style: disc;
  padding-left: 20px;
}

.businessLinks {
  border: 1px solid #419391;
  border-radius: 12px;
  padding: 20px 60px 40px;
  background-color: #FFF9E5;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .businessLinks {
    padding: 20px 10px 20px;
    border-radius: 6px;
  }
}
.businessLinks__text {
  text-align: center;
  color: #419391;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .businessLinks__text {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.businessLinks ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .businessLinks ul {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
}
.businessLinks a {
  background-color: #419391;
  color: #fff;
  font-size: 1.8rem;
  padding: 30px 0px;
  display: block;
  text-decoration: none;
  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;
  border-bottom: 3px solid #2a5e5d;
  position: relative;
}
@media screen and (max-width: 768px) {
  .businessLinks a {
    font-size: 1.4rem;
    padding: 16px 0px;
  }
}
.businessLinks a::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .businessLinks a::after {
    right: 10px;
    width: 8px;
    height: 8px;
  }
}

/* 会社紹介動画 : /company/movies
------------------------------------------------------------*/
.companyMovies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .companyMovies {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
  }
}
.companyMovies__item:nth-child(even) {
  background-color: #F5FFF3;
}
.companyMovies__item:nth-child(odd) {
  background-color: #FFF9E5;
}
.companyMovies__item p {
  padding: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .companyMovies__item p {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.companyMovies__thumbnail {
  cursor: pointer;
  aspect-ratio: 4/3;
  overflow: clip;
}

/* フィロソフィー : /company/identity
------------------------------------------------------------*/
.companyIdentify {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1024px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .companyIdentify {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 40px;
  }
}
.companyIdentify__item {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .companyIdentify__item {
    margin-bottom: 40px;
  }
}
.companyIdentify__item:last-child {
  margin-bottom: 0;
}
.companyIdentify__heading {
  border-bottom: 4px solid #419391;
  padding: 0 0 10px 50px;
  position: relative;
  margin-bottom: 20px;
  color: #419391;
}
@media screen and (max-width: 768px) {
  .companyIdentify__heading {
    font-size: 2rem;
    border-width: 2px;
    padding: 0 0 5px 25px;
    text-wrap: auto;
  }
}
.companyIdentify__heading::before {
  position: absolute;
  top: 5px;
  left: 20px;
  width: 4px;
  height: 70%;
  background-color: #419391;
  content: "";
  display: block;
  rotate: 45deg;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .companyIdentify__heading::before {
    left: 10px;
    width: 2px;
    height: 50%;
  }
}
.companyIdentify__text {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .companyIdentify__text {
    padding-left: 0px;
    font-size: 1.4rem;
  }
}
.companyIdentify__text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .companyIdentify__text ul {
    margin-bottom: 10px;
  }
}
.companyIdentify__text ul li {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .companyIdentify__text ul li {
    margin-bottom: 10px;
  }
}
.companyIdentify__text ul li:last-child {
  margin-bottom: 0;
}
.companyIdentify__text ul li p {
  margin: 0;
}

.companyPresident {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .companyPresident {
    margin-top: 40px;
  }
}
.companyPresident__image {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .companyPresident__image {
    width: 180px;
  }
}
.companyPresident__title {
  font-size: 1.5rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .companyPresident__title {
    font-size: 1.4rem;
  }
}
.companyPresident__name {
  font-size: 2rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .companyPresident__name {
    font-size: 1.6rem;
  }
}

/* CSR : /company/contributions
------------------------------------------------------------*/
.companyContributions {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 80px;
  max-width: 1024px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .companyContributions {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 40px;
  }
}
.companyContributions__item {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .companyContributions__item {
    margin-bottom: 40px;
  }
}
.companyContributions__item:last-child {
  margin-bottom: 0;
}
.companyContributions__heading {
  border-bottom: 4px solid #419391;
  padding: 0 0 10px 50px;
  position: relative;
  margin-bottom: 20px;
  color: #419391;
}
@media screen and (max-width: 768px) {
  .companyContributions__heading {
    font-size: 2rem;
    border-width: 2px;
    padding: 0 0 5px 25px;
    text-wrap: auto;
  }
}
.companyContributions__heading::before {
  position: absolute;
  top: 5px;
  left: 20px;
  width: 4px;
  height: 70%;
  background-color: #419391;
  content: "";
  display: block;
  rotate: 45deg;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .companyContributions__heading::before {
    left: 10px;
    width: 2px;
    height: 50%;
  }
}
.companyContributions__text {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .companyContributions__text {
    padding-left: 0px;
    font-size: 1.4rem;
  }
}
.companyContributions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px 60px;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .companyContributions__grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px 16px;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 20px;
  }
}
.companyContributions__gridItem {
  padding: 10px;
  border: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.companyContributions__gridItem.hidden {
  display: none;
}
.companyContributions__gridItem date {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .companyContributions__gridItem date {
    font-size: 1.3rem;
  }
}
.companyContributions__gridItem h3 {
  font-size: 1.8rem;
  color: #419391;
  margin-bottom: 10px;
  border-bottom: 2px solid #419391;
  padding-bottom: 10px;
  text-wrap: auto;
}
@media screen and (max-width: 768px) {
  .companyContributions__gridItem h3 {
    font-size: 1.4rem;
    border-bottom: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
    min-height: calc(3em - 2px);
    padding-bottom: 0px;
  }
}
.companyContributions__gridItem p {
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  min-height: 3em;
}
@media screen and (max-width: 768px) {
  .companyContributions__gridItem p {
    display: none;
  }
}
.companyContributions__gridItem img {
  width: auto;
  height: 120px;
  margin: 10px auto 20px;
}
@media screen and (max-width: 768px) {
  .companyContributions__gridItem img {
    height: 80px;
    margin: 10px auto 10px;
  }
}
.companyContributions__open {
  color: #Fff;
  background-color: #333;
  display: block;
  text-align: center;
  width: 200px;
  margin: auto auto 0;
  border-radius: 99px;
  padding: 3px 0 4px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .companyContributions__open {
    width: 120px;
    font-size: 1.3rem;
  }
}
.companyContributions__readmore {
  text-align: center;
  margin-top: 40px;
  margin: 40px auto 0;
  position: relative;
}
.companyContributions__readmore span {
  cursor: pointer;
  color: #fff;
  background-color: #419391;
  padding: 10px 20px;
  border-radius: 99px;
  width: 300px;
  font-size: 1.6rem;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .companyContributions__readmore span {
    width: 200px;
    font-size: 1.4rem;
  }
}
.companyContributions__readmore::before, .companyContributions__readmore::after {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  height: 1px;
  background-color: #419391;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc((100% - 300px) / 2 - 20px);
}
@media screen and (max-width: 768px) {
  .companyContributions__readmore::before, .companyContributions__readmore::after {
    width: calc((100% - 200px) / 2 - 10px);
  }
}
.companyContributions__readmore::after {
  right: 0%;
}
.companyContributions__readmore::before {
  left: 0%;
}
.companyContributions__gridItem-modal__inner img {
  max-width: 50%;
  margin: 0 auto;
}

.modaal-inner-wrapper .modaal-container .modaal-content {
  height: auto;
  max-height: 70vh;
}
@media screen and (max-width: 768px) {
  .modaal-inner-wrapper .modaal-container .modaal-content {
    padding: 10px;
  }
  .modaal-inner-wrapper .modaal-container .modaal-content h3 {
    font-size: 1.8rem !important;
    border-width: 0 !important;
    margin-bottom: 10px !important;
    text-wrap: auto !important;
  }
  .modaal-inner-wrapper .modaal-container .modaal-content p {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }
}

/* IR : /company/ir
------------------------------------------------------------*/
.companyIRNews {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .companyIRNews {
    margin-bottom: 50px;
  }
}
.companyIRNews__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .companyIRNews__item {
    display: block;
  }
}
.companyIRNews__item date {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .companyIRNews__item date {
    width: 100%;
    display: block;
    font-weight: 700;
  }
}
.companyIRNews__item img {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .companyIRNews__item img {
    display: inline;
    margin-bottom: 0;
    position: relative;
    top: 2px;
  }
}
.companyIRNews__item a {
  text-decoration: none;
}
.companyIRNews__size {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .companyIRNews__size {
    margin-left: 5px;
  }
}

.companyIRRelease .eir_area_area_news_001 {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .companyIRRelease .eir_area_area_news_001 {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .companyIRRelease .s_eirTab {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }
}
.companyIRRelease .s_eirTab li {
  border-bottom: 5px solid #419391;
}
@media screen and (max-width: 768px) {
  .companyIRRelease .s_eirTab li {
    width: 100%;
    border-bottom: unset;
    background-color: #c1e4e4;
    border-radius: 99px;
    overflow: clip;
  }
}
@media screen and (max-width: 768px) {
  .companyIRRelease .s_eirTab li a {
    font-size: 1.2rem;
    color: #333;
    padding: 5px 10px;
  }
}
.companyIRRelease .s_eirTab li.active a,
.companyIRRelease .s_eirTab li:hover a {
  background-color: #419391;
}
.companyIRRelease .s_eirModule_category_icon {
  background-color: #419391;
}

/* 従業員紹介 : /company/staff
------------------------------------------------------------*/
.companyStaffGraph {
  max-width: 1024px;
  width: 100%;
  margin: 80px auto 0;
}
.companyStaffGraph__heading {
  border-bottom: 4px solid #419391;
  padding: 0 0 10px 50px;
  position: relative;
  margin-bottom: 20px;
  color: #419391;
  text-wrap: auto;
}
@media screen and (max-width: 768px) {
  .companyStaffGraph__heading {
    font-size: 2rem;
    border-width: 2px;
    padding: 0 0 5px 0px;
    text-wrap: auto;
  }
}
.companyStaffGraph__heading::before {
  position: absolute;
  top: 5px;
  left: 20px;
  width: 4px;
  height: 70%;
  background-color: #419391;
  content: "";
  display: block;
  rotate: 45deg;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .companyStaffGraph__heading::before {
    display: none;
  }
}
.companyStaffGraph__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.companyStaffGraph__list span {
  font-size: 1.3rem;
}
.companyStaffGraph__list img {
  margin: 0 auto;
}
.companyStaffGraph__list small {
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .companyStaffGraph__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.companyStaffGraph__note {
  font-size: 1.2rem;
  text-align: right;
}

.companyStaffList {
  max-width: 1024px;
  width: 100%;
  margin: 80px auto 0;
}
.companyStaffList__heading {
  border-bottom: 4px solid #419391;
  padding: 0 0 10px 50px;
  position: relative;
  margin-bottom: 10px;
  color: #419391;
  text-wrap: auto;
}
@media screen and (max-width: 768px) {
  .companyStaffList__heading {
    font-size: 2rem;
    border-width: 2px;
    padding: 0 0 5px 25px;
    text-wrap: auto;
  }
}
.companyStaffList__heading::before {
  position: absolute;
  top: 5px;
  left: 20px;
  width: 4px;
  height: 70%;
  background-color: #419391;
  content: "";
  display: block;
  rotate: 45deg;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .companyStaffList__heading::before {
    left: 10px;
    width: 2px;
    height: 50%;
  }
}
.companyStaffList__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .companyStaffList__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.companyStaffList__text {
  display: block;
  line-height: 1;
  font-size: 1.4rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .companyStaffList__text {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.companyStaffList__itemLink {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-size: 1.4rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .companyStaffList__itemLink {
    font-size: 1.2rem;
    padding: 10px;
  }
}
.companyStaffList__itemImage {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 1px 1px 3px #9a9a9a;
          box-shadow: 1px 1px 3px #9a9a9a;
}
@media screen and (max-width: 768px) {
  .companyStaffList__itemImage {
    margin-bottom: 5px;
  }
}
.companyStaffList__itemName {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .companyStaffList__itemName {
    font-size: 1.6rem;
    margin-bottom: 0px;
  }
}
.companyStaffList__itemIntroduction {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 12px;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  text-align: left;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .companyStaffList__itemIntroduction {
    display: none;
  }
}

.companyStaffModdal__header {
  margin-bottom: 30px;
}
.companyStaffModdal__header h3 {
  font-size: 3rem;
}
.companyStaffModdal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 640px) {
  .companyStaffModdal__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.companyStaffModdal__bodyImage {
  width: 300px;
  max-width: 100%;
}
@media screen and (max-width: 640px) {
  .companyStaffModdal__bodyImage {
    width: 100%;
  }
}
.companyStaffModdal__bodyImage img {
  width: 100%;
}
.companyStaffModdal__bodyText {
  font-size: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.companyStaffModdal__bodyText dl {
  margin-bottom: 20px;
}
.companyStaffModdal__bodyText dt {
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .contributions-modal-wrapper .modaal-container {
    overflow: unset;
  }
  .contributions-modal-wrapper .modaal-container .modaal-close {
    position: absolute;
    top: -70px;
    left: -10px;
  }
}
/* 公開情報 : /company/businessreport
------------------------------------------------------------*/
.companyBusinessReport {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1024px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 40px;
  }
}
.companyBusinessReport__item {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport__item {
    margin-bottom: 40px;
  }
}
.companyBusinessReport__item:last-child {
  margin-bottom: 0;
}
.companyBusinessReport__heading {
  border-bottom: 4px solid #419391;
  padding: 0 0 10px 50px;
  position: relative;
  margin-bottom: 20px;
  color: #419391;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport__heading {
    font-size: 2rem;
    border-width: 2px;
    padding: 0 0 5px 25px;
    text-wrap: auto;
  }
}
.companyBusinessReport__heading::before {
  position: absolute;
  top: 5px;
  left: 20px;
  width: 4px;
  height: 70%;
  background-color: #419391;
  content: "";
  display: block;
  rotate: 45deg;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport__heading::before {
    left: 10px;
    width: 2px;
    height: 50%;
  }
}
.companyBusinessReport__text {
  padding-left: 50px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport__text {
    padding-left: 0px;
    font-size: 1.4rem;
  }
}
.companyBusinessReport__text ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport__text ul {
    margin-bottom: 30px;
    padding-left: 0;
  }
}
.companyBusinessReport__text ul li {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.companyBusinessReport__text ul li::before {
  content: "";
  background-color: #419391;
  width: 6px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.companyBusinessReport__text ul li small {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport__text ul li {
    margin-bottom: 10px;
  }
}
.companyBusinessReport__text ul li:last-child {
  margin-bottom: 0;
}
.companyBusinessReport__text ul li p {
  margin: 0;
}
.companyBusinessReport .pdficon {
  width: 14px;
  margin-top: 2px;
}
.companyBusinessReport__aar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .companyBusinessReport__aar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}