@charset "UTF-8";
/*----------------------------------------------
top
----------------------------------------------*/
section {
  padding: 60px 15px;
}
.flexCol {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text {
  font-size: 1.6rem;
  color: var(--textBase);
  font-weight: 400;
  line-height: 1.7;
}
@media print, screen and (min-width: 768px) {
  section {
    padding: 100px 0;
  }
  .text {
    font-size: 1.7rem;
  }
  .textCenter {
    text-align: center;
  }
}
/*----------------------------------------------
ヘッダー,メインビジュアル
----------------------------------------------*/
header {
  background-color: none;
}

#mainVisual {
  position: relative;
  display: block;
  width: 100%;
  height: 667px;
  margin-top: -60px;
  overflow: hidden;
  background: url(../top-img/top-main-sp.webp) no-repeat center center / cover;
}
#mainVisual img {
  display: block;
}
#mainVisual h1 {
  position: absolute;
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
  top: 90px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 22px 20px 22px 15px;
  border-radius: 0 15px 15px 0;
}
@media print, screen and (min-width: 768px) {
  header {
    background-color: rgba(255, 255, 255, 0.8);
  }
  #mainVisual {
    height: 970px;
    width: 100%;
    margin-top: -120px;
    background: url(../top-img/top-main-pc.webp) no-repeat center bottom / cover;
  }
  #mainVisual h1 {
    font-size: 3.6rem;
    top: 40%;
    padding: 22px 42px 22px 40px;
    line-height: 1.8;
  }
}

/*----------------------------------------------
協会について
----------------------------------------------*/
#aboutUs .flexCol {
  gap: 25px;
  align-items: flex-start;
}

/*----------------------------------------------
新規入会について
----------------------------------------------*/
#aboutMem, #QA {
  background-color: var(--Milk);
}
#aboutMem .flexCol, #QA .flexCol {
  gap: 35px;
}
@media print, screen and (min-width: 768px) {
  #aboutMem .flexCol, #QA .flexCol {
    gap: 50px;
  }
}
/*----------------------------------------------
中国地区しろあり対策協会
----------------------------------------------*/
.btnBox {
  max-width: 860px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin: 35px auto 0;
}
.btnBox .btn {
  width: 50%;
  text-align: center;
}
.green span.btnSpan {
  height: 70px;
  line-height: 130%;
}
.green span.onlyPc {
  display: none;
}
/* -------------ボタン　緑色-------------- */
/* 左上 */
.green .btn {
  height: 120px;
  width: 50%;
}
.green .btn span {
  padding: 0;
}
.green .btn a {
  background-color: var(--DarkGreen);
  background-image: url(../top-img/allow-dot.svg);
  background-size: 49px 16px;
  background-position: center calc(100% - 20px);
  padding: 0 0 40px 0;
  border-color: var(--DarkGreen);
}
.green .btn a span.btnSpan::before {
  border-top: 20px solid #fff;
}
/* 右下 */
.green .btn a span.btnSpan::after {
  border-top: 20px solid #fff;
}
/* 左上線 */
.green .btn a::before {
  background: var(--DarkGreen);
}
/* 右下線 */
.green .btn a::after {
  background: var(--DarkGreen);
}
@media print, screen and (min-width: 768px) {
  .btnBox {
    margin: 0 auto;
  }
  .green .btn {
    height: 120px;
    width: 400px;
  }
  .green .btn a:hover {
    background-color: #F3FFEB;
    color: var(--DarkGreen);
    background-image: url(../top-img/allow-dot-hv.svg);
    transition: 0.3s ease;
  }
  .green span.onlyPc {
    display: inline-block;
    width: auto;
    height: auto;
  }
}
/*----------------------------------------------
Q&A
----------------------------------------------*/