@charset "UTF-8";
.yellow {
  background-color: var(--Milk);
}
/* ----------------------------------------------
ヘッダー・ページメインタイトル
----------------------------------------------*/
.mainTitle {
  position: relative;
  width: 100%;
  height: 160px;
  background: url(../img/link-top-sp.webp) no-repeat left center;
  background-size: cover;
}
.mainTitle::after {
  content: "";
  position: absolute;
  background: linear-gradient(270deg, rgba(26, 69, 60, 0.70) 0%, rgba(26, 69, 60, 0.00) 100%);
  width: 310px;
  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%;
	text-align: right;
}
@media print, screen and (min-width: 768px) {
  header {
    background: rgba(255, 255, 255, 0.80);
  }
  .mainTitle {
    height: 450px;
    background: url(../img/link-top-pc.webp) no-repeat center center;
    background-size: cover;
    margin-top: -120px;
  }
  .mainTitle::after {
    width: 920px;
    height: 450px;
  }
  .mainTitle h1 {
    gap: 30px;
    top: 177px;
    right: 50px;
  }
  .mainTitle h1 .titleEn {
    font-size: 2.4rem;
  }
  .mainTitle h1 .titleJa {
    font-size: 6.0rem;
  }
}
/* ----------------------------------------------
リード部分
----------------------------------------------*/
.leadWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 15px 0 15px;
  gap: 18px;
}
.lead {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--textBase);
  line-height: 180%;
}
.leadWrap .btn {
  min-height: fit-content;
}
.leadWrap span.btnSpan {
  padding: 0 45px 0 18px;
}
.leadWrap .btn a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
}
.leadWrap .btn span.btnSpan::after,
.leadWrap .btn span.btnSpan::before {
  border-top: 23px solid #FFF;
}
@media print, screen and (min-width: 768px) {
  .leadWrap {
    padding-top: 100px;
    gap: 50px;
  }
  .lead {
    font-size: 1.7rem;
    text-align: center;
  }
  .leadWrap .btn {
    width: 420px;
  }
  .leadWrap .btn a {
    font-size: 1.8rem;
  }
  .leadWrap .btn a:hover {
    background-color: var(--Milk);
  }
}

/* ----------------------------------------------
連携団体
----------------------------------------------*/
section.partnerArea {
  padding: 80px 10px 60px 15px;
}
li.partnerListItem {
  padding: 30px 5px;
}
li.partnerListItem.yellow {
  padding: 30px 10px;
}
.partnerName {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 155%;
  color: var(--textBase);
  margin-bottom: 15px;
}
.partnerName a {
  color: var(--textBase);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: from-font;
}
.partnerInfo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--textBase);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.partnerInfo span {
  display: inline-block;
}
@media print, screen and (max-width: 767px) {
  li.partnerListItem {
    border-top: 1px dashed var(--Green);
  }
  li.partnerListItem:first-of-type {
    border: none;
  }
}
@media print, screen and (min-width: 768px) {
  section.partnerArea {
    padding: 100px 15px;
  }
  ul.partnerList {
    max-width: 980px;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, calc(100% / 3));
    padding: 0;
    margin: 0 auto;
  }
  li.partnerListItem {
    width: 100%;
    padding: 30px;
    outline: 1px dashed var(--Green);
  }
  li.partnerListItem.yellow {
    padding: 30px;
  }
  .partnerName {
    font-size: 1.9rem;
    line-height: 150%;
  }
  .partnerName a:hover {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
  }
}

/* ----------------------------------------------
消費者センター
----------------------------------------------*/
section.consumerArea {
  padding: 60px 10px;
  background-image: url(../../img/background-pattern.webp);
  background-size: cover;
}
.consumerArea .telFax span {
  display: block;
}
@media print, screen and (min-width: 768px) {
  section.consumerArea {
    padding: 100px 15px;
  }
}