@charset "UTF-8";
/* ----------------------------------------------
ヘッダー・ページメインタイトル
----------------------------------------------*/
.mainTitle {
  position: relative;
  width: 100%;
  height: 160px;
  background: url(../img/about-top-sp.webp) no-repeat center center;
  background-size: cover;
}
.mainTitle::after {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, rgba(21, 62, 10, 0.60) 0%, rgba(21, 62, 10, 0.00) 100%);
  width: 240px;
  height: 160px;
  top: 0;
  right: 0;
  z-index: 1;
}
.mainTitle h1 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  color: #FFF;
  top: 20px;
  right: 15px;
  z-index: 2;
}
.mainTitle h1 .titleEn {
  font-size: 1.6rem;
  font-weight: 400;
}
.mainTitle h1 .titleJa {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
}
@media print, screen and (min-width: 768px) {
  header {
    background: rgba(255, 255, 255, 0.80);
  }
  .mainTitle {
    height: 450px;
    background: url(../img/about-top-pc.webp) no-repeat left center;
    background-size: cover;
    margin-top: -120px;
  }
  .mainTitle::after {
    width: 730px;
    height: 450px;
  }
  .mainTitle h1 {
    gap: 30px;
    top: 177px;
    right: 50px;
  }
  .mainTitle h1 .titleEn {
    font-size: 2.4rem;
  }
  .mainTitle h1 .titleJa {
    font-size: 6.0rem;
  }
}


/* ----------------------------------------------
事業活動
----------------------------------------------*/
.bizAct h2 {
  margin: 60px 0 18px 0;
}
.text {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-base, #333);
  line-height: 180%;
}

p.lead {
  padding: 0 15px;
  margin-bottom: 30px;
  line-height: 180%;
}

.actWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.actList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-bottom: 80px;
}
.actList li {
  padding: 0 10px;
}
.actList h3 {
  position: relative;
  height: 60px;
  width: 100%;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--textBase);
  background-color: #FFFFE7;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px dashed #CDCD77;
  border-top: 1px dashed #CDCD77;
  padding: 0 10px;
  margin-bottom: 20px;
}
.actList span.num {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background: #ABAB30;
  border-radius: 100px;
  margin: 0 10px 0 30px;
  padding: 6px 10px 9px 10px;
  line-height: 100%;
}
.actList h3::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #CDCD77;
  top: 50%;
  left: 10px;
  border-radius: 100px;
}
.actCont {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 5px;
}
.actCont .btn {
  height: 75px;
}
.actCont .btn .btnSpan {
  flex-direction: column;
}
.actCont .btn a {
  background-position: calc(100% - 20px) center;
  background-size: 14px 18px;
}
.btn span.assocName {
  font-size: 1.6rem;
  color: var(--Milk);
  padding: 0;
}
.btn a span.btnSpan::before,
.btn a span.btnSpan::after {
  border-top: 23px solid #FFF;
}
@media print, screen and (min-width: 768px) {
  .bizAct h2 {
    margin: 100px 0 50px 0;
  }
  .text {
    font-size: 1.7rem;
    line-height: 170%;
  }
  p.lead {
    max-width: 980px;
    text-align: center;
    margin: 0 auto 70px;
  }
  .actWrap {
    max-width: 980px;
    margin: 0 auto;
  }
  .actList {
    gap: 80px;
    margin-bottom: 150px;
  }
  .actList li {
    padding: 0px;
  }
  .actList h3 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .actList span.num {
    width: 34px;
    height: 34px;
    font-size: 2.2rem;
  }
  .actCont {
    flex-direction: row;
    align-items: center;
    padding: 0 15px;
    gap: 50px;
  }
  .actCont .text {
    width: 555px;
  }
  .actCont .btn a:hover {
    background-color: var(--Milk);
    transition: 0.3s ease;
  }
  .actCont .btn a:hover span {
    color: var(--Blue);
    transition: 0.3s;
  }
}

/* その他の活動状況 */
.activity h3 span,
.pubs h3 span {
  padding: 0 0 0 30px;
}
.activity .actBtnBox {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 140%;
}
.activity .actBtnBox .btnSpan {
  gap: 7px;
}
.actBtnBox div:last-of-type {
  height: 104px;
}
.actBtnBox .subTxt {
  font-size: 1.6rem;
  padding: 0;
}
/* 主な出版物 */
.pubs ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 5px;
}
.pubs li {
  position: relative;
  font-size: 1.6rem;
  line-height: 140%;
  padding: 0 0 0 18px;
  color: var(--text-base, #333);
  font-weight: 400;
  line-height: 140%;
}
.pubs li::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #CDCD77;
  border-radius: 100px;
  top: 0.75rem;
  left: 0px;
}
.pubs a {
  color: var(--Blue);
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-position: from-font;
}

@media print, screen and (min-width: 768px) {
  /* その他の活動状況 */
  .activity .actCont {
    flex-direction: column;
    align-items: stretch;
  }
  .activity .actCont .text {
    width: 100%;
  }
  .activity .actBtnBox {
    flex-direction: row;
    justify-content: space-between;
  }
  .activity .actBtnBox .btn {
    width: 300px;
    height: 100px;
  }
  .activity .actBtnBox .btnSpan {
    font-size: 2.0rem;
    padding: 0 25px 0 5px;
  }
  .activity .btn .assocName {
    font-size: 1.5rem;
    line-height: 140%;
  }
  .activity .btn a {
    background-image: url(../img/allow-white-02.svg);
    background-position: calc(100% - 8px) center;
  }
  .activity .btn a:hover {
    background-image: url(../img/allow-blue-02.svg);
    background-color: var(--Milk);
    background-position: calc(100% - 8px) center;
  }
  /* 主な出版物 */
  .pubs li {
    font-size: 1.7rem;
  }
  .pubs a:hover {
    text-decoration: none;
    color: #CDCD77;
    transition: 0.3s;
  }
  .activity .btn a:hover,
  .pubs a:hover {
    transition: 0.3s ease;
  }
}

/* ----------------------------------------------
設立経緯
----------------------------------------------*/
section.history {
  background-color: #FCFCE8;
  background-image: url(../../img/background-pattern.webp);
  background-size: contain;
  padding: 60px 15px;
}
.history h2 {
  font-size: 2rem;
  line-height: 130%;
}
.history .historyWrap {
  width: 100%;
  height: auto;
}
.historyWrap dl {
  width: 100%;
}
.histCont {
  display: flex;
  align-items: baseline;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--textBase);
  line-height: 180%;
  padding: 15px 0;
  border-bottom: 1px dashed var(--Green);
  gap: 5px;
}
.histCont:last-of-type {
  border: none;
}
.histCont dt {
  min-width: 7.5rem;
}
@media print, screen and (min-width: 768px) {
  section.history {
    padding: 100px 15px;
  }
  .history h2 {
    font-size: 3rem;
  }
  .history .historyWrap {
    max-width: 700px;
    margin: 0 auto;
  }
  .histCont {
    font-size: 1.7rem;
    line-height: 160%;
    padding: 20px 10px;
  }
  .histCont dt {
    min-width: 10rem;
  }
}