@charset "UTF-8";
body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#contents {
  width: 980px;
  margin: 0 auto;
}
.title {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  font-weight: bold;
}
.title span {
  border-bottom: 2px solid #FF0000;
}
.area .add2025{
  padding: 1em 2em;
}

.area 
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.indent1 {
  padding-left: 2em;
  text-indent: -1em;
}
.indent2 {
  padding-left: 2em;
  text-indent: -2em;
}
.sbtitle {
  padding: 0 8px;
  border-left: 4px solid #FF0004;
  font-weight: bold;
  margin: 40px 0 10px;
  font-size: 16px;
}
.about {
  font-size: 1.5rem;
}
.maintext {
  font-size: 14px;
  text-align: center;
  margin: 8px;
}
.text {
  font-size: 1.5rem;
}
.text a {
  color: #1a0dab;
}
.text2 {
  font-size: 14px;
  padding-left: 2em;
}
.text2 a {
  color: #1a0dab;
}
.lead {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 20px;
  margin-top: 15px;
}
.lead2 {
  font-size: 1.5rem;
  padding-left: 35px;
}
.btnarea {
  width: 70%;
}
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 40px;
  position: relative;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #FF0000;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none !important;
  transition-duration: 0.3s;
  margin: 15px 15px 5px;
  font-weight: bold;
}
a.btn:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #FF0000;
  border-right: 2px solid #FF0000;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn:hover {
  background: #FF0000;
  color: #fff;
}
a.btn:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.last {
  margin: 50px;
}
.imgarea{
	margin: 10px 30px;
}

@media screen and (max-width:799px) {
  body {
    width: 100%;
  }
  #contents {
    width: 100%;
    font-size: 1.4rem;
  }
  main {
    margin: 1.5rem;
  }
  .area {
    margin-left: 0px;
  }
  #contents .title {
    font-size: 1.5rem;
  }
  .indent1 {
    padding-left: 2em;
    text-indent: -1em;
  }
  .indent3 {
    padding-left: 2em;
    text-indent: -1.8em;
  }
  .sbtitle {
    margin: 5px;
    font-size: 14px;
  }
  .maintext {
    font-size: 14px;
    text-align: left;
  }
  .btnarea {
    width: 100%;
    padding-left: 10px;
  }
  a.btn {
    font-size: 13px;
    width: 100%;
    height: 50px;
    ;
    margin: 10px 0;
  }
  .text {
    font-size: 1.3rem;
  }
  .text2 {
    font-size: 1.3rem;
  }
  .lead {
    font-size: 1.3rem;
  }
  .lead2 {
    font-size: 1.3rem;
    margin-left: 17px;
    padding-left: 0;
  }
}
/*アコーディオン*/
.acd-check {
  display: none;
}
/*.acd-label {
    padding: 10px 15px;
    box-sizing: border-box;
    background: #eee;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 5px;
    width: 80%;
}
*/
.acd-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  height: 40px;
  position: relative;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #FF0000;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none !important;
  transition-duration: 0.3s;
  margin: 10px 15px 5px;
  font-weight: bold;
}
.acd-label::after {
  display: flex;
  align-items: center;
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-weight: 900;
  transition: all 0.3s;
}
.acd-content {
  height: 0;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 90%;
  padding: 0;
  margin: 0 auto;
background-color: #f7f7f0;	
}
.acd-check:checked + .acd-label + .acd-content {
  height: auto;
  opacity: 1;
  padding: 15px 15px!important;
  visibility: visible;
  align-items: center;
  word-break: break-all;
	margin-left: 1em;
}
.acd-check:checked + .acd-label::after {
  transform: rotate(180deg);
}


.button {
  position: relative;
  display: inline-block;
  padding: 0.3em 2em;
  background-color: #fff;
  border: 2px solid #FF0004;
  color: #FF0004;
  text-align: center;
  text-decoration: none!important;
  transition: all .3s;
  font-size: 15px;
  font-weight: bold;
}
.button::after {
  position: absolute;
  top: 50%;
  right: .2em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #FF0004;
  transition: all .3s;
}
.button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 960px) {
  .acd-label {
    justify-content: space-between;
    font-size: 13px;
    width: 100%;
    height: 50px;
    margin: 10px 0;
    padding: 0 10px;
  }
  .acd-content {
    width: 95%;
  }
  .acd-check:checked + .acd-label + .acd-content {
    padding: 10px 0;
  }
	.button{
		font-size: 15px;
	}
	.imgarea{
	margin: 20px;
}

}