@charset "UTF-8";

.innr {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 430px) {
  .innr {
    padding: 0 20px;
  }
}

.innr img {
  max-width: 100%;
}

.hdr {
  padding: 40px 0;
}

.hdr .lead {
  color: #C91337;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 430px) {
  .hdr .lead {
    font-size: 4.5vw;
  }
}

.hdr .lead br {
  display: none;
}

@media screen and (max-width: 430px) {
  .hdr .lead br {
    display: block;
  }
}

.hdr .main_img {
  text-align: center;
  margin-bottom: 20px;
}

.hdr .main_img img {
  display: inline-block;
}

@media screen and (max-width: 430px) {
  .hdr .main_img img {
    max-width: 61.35vw;
  }
}

.hdr .logo_gft {
  text-align: center;
  margin-bottom: 20px;
}

.hdr .logo_blc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}

@media screen and (max-width: 430px) {
  .hdr .logo_blc {
    padding: 0 30px;
  }

  .hdr .logo_blc .logo {
    width: calc((100% - 40px) / 3);
  }
}

.hdr .hdr_txt {
  font-size: 17px;
  font-weight: 600;
  margin: 30px 0;
}

.hdr .hdr_txt br {
  display: none;
}

.hdr .hdr_txt br.pc_on {
  display: block;
}

@media screen and (max-width: 430px) {
  .hdr .hdr_txt {
    font-size: 4vw;
  }

  .hdr .hdr_txt br {
    display: block;
  }
}

.hdr .attn_blc {
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 20px 70px;
  text-align: left;
}

.hdr .attn_blc .ttl {
  color: #C91337;
  font-size: 17px;
  font-weight: 700;
}

.hdr .attn_blc ul {
  padding-left: 0;
  margin: 0;
}

.hdr .attn_blc ul li {
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  text-indent: -1em;
  margin-left: 1em;
}

@media screen and (max-width: 430px) {
  .hdr .attn_blc {
    padding: 15px 13px;
  }

  .hdr .attn_blc .ttl {
    font-size: 3.8vw;
  }

  .hdr .attn_blc ul li {
    font-size: 3.5vw;
  }
}

.clm01 {
  padding: 0px 0 0px;
  text-align: center;
  /* このクラスがついた時に開く */
}

.clm01 .accordion-header {
  color: #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  background: #363636;
  border: none;
  border-radius: 100px;
  display: inline-block;
  width: 400px;
  max-width: 100%;
  position: relative;
}

.clm01 .accordion-header br {
  display: none;
}

@media screen and (max-width: 430px) {
  .clm01 .accordion-header {
    font-size: 4.3vw;
    padding: 10px 0;
  }

  .clm01 .accordion-header br {
    display: block;
  }
}

.clm01 .accordion-header::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 5px;
  transition: transform 0.3s ease-out;
}

.clm01 .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
  margin: 30px 0 20px;
  padding: 0px 20px;
  text-align: left;
}

@media screen and (max-width: 430px) {
  .clm01 .accordion-content {
    padding: 0;
  }
}

.clm01 .accordion-content dl dt {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.clm01 .accordion-content dl dd {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.clm01 .accordion-content dl dd>ul {
  padding-left: 0;
}

.clm01 .accordion-content dl dd>ul li {
  text-indent: -1.3em;
  margin-left: 1.3em;
  list-style-type: none;
}

.clm01 .accordion-content dl dd>ul li ul {
  padding-left: 0;
}

.clm01 .accordion-content dl dd>ul li ul li {
  text-indent: -1.7em;
  margin-left: 1.7em;
}

.clm01 .accordion-content p {
  font-size: 14px;
}

.clm01 .accordion-content p.date {
  margin: 20px 0;
}

.clm01 .accordion-content p.sm {
  margin-bottom: 20px;
}

.clm01 .accordion-content a {
  color: #1616F4;
}

.clm01 .is-open .accordion-content {
  max-height: 10000px;
  margin-bottom: 30px;
}

.clm02 {
  padding: 0 20px 40px;
}

@media screen and (max-width: 430px) {
  .clm02 {
    padding: 0 0 40px;
  }
}

.clm02 .ttl_blc {
  background-color: #C91337;
  padding: 10px 0;
}

.clm02 .ttl_blc p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 430px) {
  .clm02 .ttl_blc p {
    font-size: 4.3vw;
  }
}

.clm02 .bdy {
  background-color: #FFF5DE;
  padding: 30px 40px;
}

@media screen and (max-width: 430px) {
  .clm02 .bdy {
    padding: 30px 13px;
  }
}

.clm02 .bdy .gft_img {
  margin: 10px 0;
}

.clm02 .bdy .lead {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media screen and (max-width: 430px) {
  .clm02 .bdy .lead {
    font-size: 4.3vw;
  }
}

.clm02 .logo_blc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}

@media screen and (max-width: 430px) {
  .clm02 .logo_blc {
    padding: 0 20px;
  }

  .clm02 .logo_blc .logo {
    width: calc((100% - 40px) / 3);
  }
}

.clm02 .attn_blc {
  margin-top: 10px;
}

.clm02 .attn_blc p {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-indent: -1em;
  margin-left: 1em;
}