@charset "UTF-8";
/* CSS Document */
/*トップ*/
.top {
  background-color: #3BB4FF;
  padding: 0 20px;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 60px;
  height: 310px;
}
.top__wrapper {
  margin: 0 auto;
}
.top__wrapper__headline-pc {
  display: block;
  margin: 0 auto 25px auto;
  max-width: 240px;
  width: 100%;
}
.top__wrapper__headline-sp {
  display: none;
}
.top__wrapper p {
  color: #fff;
  font-weight: 600;
}
@media(max-width: 899px) {
  .top {
    padding-top: 40px;
    padding-bottom: 40px;
    height: 260px;
  }
}
@media(max-width: 576px) {
	.top__wrapper__headline-pc {
  display: none;
}
.top__wrapper__headline-sp {
  display: block;
  margin: 0 auto 25px auto;
  max-width: 216px;
  width: 100%;
}
}
/*アンカーリンク*/
#page-link {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 70px auto 0px auto;
  max-width: 490px;
}
#page-link a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
@media(max-width: 576px) {
	#page-link {
  display: block;
  margin-top: 45px;
}
	#page-link a {
  display: block;
  padding-bottom: 10px;
}
}
/*システム*/
#section__system {
  background-color: #ECF7FF;
  padding: 0 20px 100px 20px;
  text-align: left;
}
.section__system-headline {
  max-width: 203px;
  width: 100%;
  display: block;
  margin: 0 auto 4px auto;
  padding-top: 70px;
}
#section__system ul {
  list-style: none;
}
@media(max-width: 768px) {
  #section__system {
    padding-bottom: 80px;
  }
}
@media(max-width: 576px) {
	.section__system-headline {
  padding-top: 45px;
}
}
/*集計*/
#section__data {
  background-color: #FFF;
  padding: 0 20px 100px 20px;
  text-align: left;
}
.section__data-headline {
  max-width: 370px;
  width: 100%;
  display: block;
  padding-top: 60px;
  margin: 0 auto 4px auto;
}
.section__data-headline-sp {
  display: none;
}
#section__data ul {
  list-style: none;
}
@media(max-width: 768px) {
  #section__data {
    padding-bottom: 80px;
  }
}
@media(max-width: 576px) {
  .section__data-headline {
    display: none;
  }
  .section__data-headline-sp {
    max-width: 307px;
    width: 100%;
    display: block;
    margin: 0 auto 4px auto;
    padding-top: 45px;
  }
}
/*料金ほか*/
#section__other {
  background-color: #ECF7FF;
  padding: 0 20px 100px 20px;
  text-align: left;
}
.section__other-headline {
  max-width: 118px;
  width: 100%;
  display: block;
  padding-top: 60px;
  margin: 0 auto 4px auto;
}
#section__other ul {
  list-style: none;
}
@media(max-width: 768px) {
  #section__other {
    padding-bottom: 80px;
  }
}
@media(max-width: 576px) {
  .section__other-headline {
    padding-top: 45px;
  }
}
/*試し*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: 600;
  padding: 20px 50px 17px 40px;
  transition: all .5s ease;
  border-bottom: 1px solid #3BB4FF;
}
/*矢印*/
.title::after {
  content: "";
  background-image: url("../image/top/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 12px;
  height: 20px;
  top: 48%;
  right: 40px;
}
/*　closeというクラスがついたら下向きに*/
/*.title.close {
	border-bottom: none;
}*/
.title.close::after {
  transform: rotate(90deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  padding: 17px 50px 40px 40px;
  border-bottom: 1px solid #3BB4FF;
}
@media(max-width: 768px) {
  .title {
  padding-left: 20px;
  padding-right: 30px;
}
	.box {
  padding-left: 20px;
  padding-right: 30px;
}
	.title::after {
  right: 20px;
}
}
@media(max-width: 576px) {
  .title {
  padding-left: 0px;
  padding-right: 20px;
}
	.box {
  padding-left: 0px;
  padding-right: 20px;
}
	.title::after {
  right: 0px;
}
}