@charset "UTF-8";
/*--------------------------------
csr.html
CSR活動
---------------------------------*/
.csr-bg {
  background: #f4f7fa;
  position: relative;
  padding: clamp(30px, 6vw, 60px) 0;
}

.csr-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2vw;
  gap: max(2vw, 12px);
}

.csr-item {
  position: relative;
  border-radius: 10px;
  border: 2px solid #6083a5;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(80px, 14vw, 120px);
  text-align: center;
  transition: 0.3s;
}

.csr-item:hover {
  transform: scale(0.96, 0.96);
}

.csr-item::after {
  content: url(../img/common/arrow-circle.svg);
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.csr-item a {
  font-size: 18px;
  color: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1.4;
}

/*--------------------------------
csr.html
CSR活動
---------------------------------*/
.csr-title {
  /* font-size: 28px; */
  font-size: clamp(22px, 3vw, 28px);
  position: relative;
  font-weight: 700;
  line-height: 1.5;
  /* 下線の装飾 */
  padding-bottom: 48px;
  margin-bottom: 48px;
  padding-bottom: 1.7em;
  margin-bottom: 1.7em;
  background-image: linear-gradient(90deg, #39668f 9.26%, #7896b2 71.3%);
  background-repeat: no-repeat;
  background-size: 54px 3px;
  background-position: left bottom;
}

.csr-bg_white {
  background: #fff;
  /* padding: clamp(40px, 7%, 80px); */
   padding:clamp(40px, 7%, 50px) clamp(40px, 7%, 80px) clamp(40px, 7%, 80px);
   border-radius: 10px;
}

.csr-text {
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 32px;
}

.csr-right {
  margin-top: 40px;
  text-align: right;
  line-height: 1.7;
}

.csr-bold {
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 1em;
}

.csr-pmark {
  width: 96px;
  margin-bottom: 1em;
}

.pmark-about {
  display: flex;
  gap: 3%;
  margin-top: clamp(40px, 7%, 80px);
  align-items: start;
}

.pmark-about_title {
  flex-shrink: 0;
  color: var(--navy);
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  margin-bottom: 16px;
}

.pmark-about_title img {
  width: 20px;
}

.pmark-about_text {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .pmark-about {
    flex-direction: column;
  }
}

/*--------------------------------
disclosure.html
---------------------------------*/

ol.csr-numlist {
  list-style-type: decimal;
  margin-left: 1.3em;
  margin-bottom: 32px;
}

li.csr-numitem {
  line-height: 1.6;
  margin-bottom: 0.8em;
  list-style-type: decimal;
}
.csr-numitem_sublist {
  margin-left: 1em;
}

.grey-box {
  background-color: #EFEFEF;
  text-align: center;
  border-radius: 10px;
  padding: 30px;
}

.csr-bold {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
} 
.csr-bold.-l {
  font-size: 24px;
} 

 @media screen and (max-width: 575px) {
  ol.csr-numlist {
    margin-bottom: 24px;
  }
  .csr-right {
    margin-top: 24px;
  }
  .csr-bold.-l {
  font-size: 20px;
} 

 }