* {
  box-sizing: border-box;
  color: #2856A6;
  line-height: 1.5em;
  font-family: sans-serif;
}

main {
  max-width: 1024px;
  margin: 0 auto;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

h3 {
  font-size: 24px;
  font-weight: bold;
}

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
}

section {
  width: 100%;
}

section.hero {
  position: relative;
  width: 100%;
}
section.hero img {
  width: 100%;
}
section.hero .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  padding: 16px;
}
section.hero .text h2 {
  font-size: 32px;
  padding-bottom: 32px;
}
section.hero .text p.pc {
  width: 300px;
}
section.hero p.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  section.hero {
    position: relative;
    width: 100%;
  }
  section.hero img {
    width: 100%;
  }
  section.hero .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    padding: 16px;
  }
  section.hero .text h2 {
    font-size: 32px;
    padding-bottom: 32px;
  }
  section.hero .text p.pc {
    display: none;
  }
  section.hero p.sp {
    display: block;
    padding: 16px;
    margin: 0 auto;
    width: 100%;
  }
}
section.slide .slide-items__wrap {
  width: 75%;
  height: 50%;
  margin: auto;
}
section.slide .slide-items__wrap ul.slide-items {
  width: 100%;
}
section.slide .slide-items__wrap ul.slide-items li img {
  width: 100%;
}

section.about {
  background-color: #F7FCF7;
  margin-top: 40px;
}
section.about .inner {
  display: flex;
  padding: 16px 8px 0;
}
section.about .inner .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
  padding: 24px;
}
section.about .inner .text h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
section.about .inner .text img {
  width: 75%;
  margin-top: 40px;
}
section.about .inner .image {
  width: 50%;
}
section.about .inner .image img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  section.about .inner {
    display: flex;
    flex-direction: column;
  }
  section.about .inner .text {
    width: 100%;
  }
  section.about .inner .text img {
    width: 75%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  section.about .inner .image {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  section.about .inner .image img {
    width: 100%;
  }
}
section.onayami {
  padding-top: 120px;
}
section.onayami h2 {
  text-align: center;
}
section.onayami .contents {
  padding: 40px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
section.onayami .contents .content {
  width: 400px;
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  box-shadow: #888 2px 2px 8px;
}
section.onayami .contents .content h3 {
  margin: 16px 0;
}

@media screen and (max-width: 480px) {
  section.onayami .contents {
    padding: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
}
section.kouka {
  padding: 40px 16px 0;
  background-color: #F7FCF7;
}
section.kouka h2 {
  text-align: center;
  margin-bottom: 32px;
}
section.kouka > img {
  width: 50%;
  display: block;
  margin: 40px auto;
  text-align: center;
}
section.kouka .contents {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
section.kouka .contents .content {
  text-align: center;
  padding: 8px;
  margin-bottom: 24px;
  width: 280px;
  border-radius: 16px;
  box-shadow: #888 2px 2px 8px;
  background-color: #fff;
}
section.kouka .contents .content img {
  height: 100px;
}
section.kouka .contents .content p {
  text-align: left;
}
section.kouka p {
  text-align: center;
  margin: 40px 0;
  width: 100%;
}
section.kouka h3 {
  text-align: center;
}
section.kouka .score {
  display: flex;
  align-items: end;
}
section.kouka .score .image {
  display: flex;
  align-items: end;
}
section.kouka .score > div {
  width: 50%;
}
section.kouka .score > div img {
  width: 100%;
}
section.kouka .score > div p {
  text-align: left;
  margin: 0;
}
section.kouka .score .score-list {
  padding: 60px 24px 0;
}
section.kouka .score .score-list .score {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: #888 2px 2px 4px;
  background-color: #fff;
}
section.kouka .score .score-list .score h4 {
  font-weight: bold;
  margin: 0;
}

@media screen and (max-width: 480px) {
  section.kouka {
    margin-top: 120px;
    padding: 40px 16px;
    background-color: #F7FCF7;
  }
  section.kouka h2 {
    text-align: center;
    margin-bottom: 32px;
  }
  section.kouka > img {
    width: 90%;
    display: block;
    margin: 40px auto;
    text-align: center;
  }
  section.kouka .contents {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  section.kouka .contents .content {
    text-align: center;
    padding: 8px;
    margin-bottom: 24px;
    width: 280px;
    border-radius: 16px;
    box-shadow: #888 2px 2px 8px;
    background-color: #fff;
  }
  section.kouka .contents .content img {
    height: 100px;
  }
  section.kouka .contents .content h3 {
    margin: 16px 0;
  }
  section.kouka p {
    text-align: center;
    margin: 40px 0;
  }
  section.kouka h3 {
    text-align: center;
  }
  section.kouka .score {
    display: flex;
    flex-direction: column-reverse;
  }
  section.kouka .score > div {
    width: 100%;
  }
  section.kouka .score > div img {
    width: 100%;
  }
  section.kouka .score .score-list {
    padding: 60px 24px;
  }
}
section.miradry {
  background-color: #2856A6;
  padding: 24px;
  width: 90%;
  margin: 0px auto 80px;
  border-radius: 24px;
}
section.miradry h2 {
  color: #fff;
  text-align: center;
}
section.miradry p {
  color: #fff;
  line-height: 1.5em;
  margin-top: 24px;
}

section.tokutyou .contents {
  padding: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
section.tokutyou .contents .content {
  margin: 16px 8px;
  width: 400px;
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  box-shadow: #888 2px 2px 8px;
}
section.tokutyou .contents .content h3 {
  margin: 16px 0;
}
section.tokutyou .contents .content p {
  text-align: left;
}

section.flow {
  background-color: #F7FCF7;
  padding: 48px 16px;
}
section.flow h2 {
  margin-bottom: 32px;
  color: #2856A6;
  font-weight: bold;
  font-family: sans-serif;
}
section.flow p {
  padding: 0 24px;
}
section.flow table {
  margin-top: 32px;
  background-color: #fff;
  padding: 16px;
}
section.flow table td.number {
  width: 72px;
  text-align: center;
}
section.flow table td.number img {
  margin: 0;
}
section.flow table h4 {
  margin: 0;
  padding: 0 8px;
}
section.flow table p {
  padding: 0 8px;
  margin: 0;
}
section.flow img {
  display: block;
  margin: 40px auto;
  width: 100%;
}

section.question {
  padding: 8px;
}
section.question .details {
  height: 71px;
  max-width: 630px;
  margin: 40px auto;
  transition: all ease-in-out 0.3;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: #888 2px 2px 8px;
}
section.question .details:last-of-type {
  border-bottom: 2px solid #999;
}
section.question .details[open] {
  height: auto;
  background-color: #F7FCF7;
}
section.question .details-summary {
  display: block;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
}
section.question .details-summary:hover {
  cursor: pointer;
  background-color: #F7FCF7;
}
section.question .details-summary::-webkit-details-marker {
  display: none;
}
section.question .details-content {
  margin: 0;
  padding: 20px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  background-color: #F7FCF7;
  border-radius: 8px;
}
section.question .details[open] .details-content {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

section.price {
  background-color: #F7FCF7;
  padding: 80px 8px;
}
section.price > p {
  width: 630px;
  display: block;
  width: 75%;
  margin: 40px auto;
}
section.price table {
  width: 90%;
  margin: 40px auto;
  border: 1px solid #2856A6;
  line-height: 4em;
  text-align: center;
}
section.price table th {
  line-height: 4em;
  text-align: center;
  color: #fff;
  background-color: #2856A6;
}
section.price table td {
  line-height: 4em;
  border: 1px solid #2856A6;
  background-color: #fff;
  font-size: 16px;
}
section.price .plans {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
section.price .plans .plan {
  margin: 16px 8px;
  width: 280px;
  text-align: center;
  padding: 16px 40px 40px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: #888 2px 2px 8px;
}
section.price .plans .plan h3 {
  margin: 16px 0;
}
section.price .plans .plan p {
  text-align: left;
}
section.price .cancel {
  padding: 24px;
  background-color: #fff;
}
section.price .cancel h3 {
  margin-bottom: 16px;
}
section.price .cancel p {
  margin: 0;
}

@media screen and (max-width: 480px) {
  section.price table {
    width: 90%;
    margin: 40px auto;
    border: 1px solid #2856A6;
    line-height: 4em;
    text-align: center;
  }
  section.price table th {
    line-height: 2em;
    text-align: center;
    color: #fff;
    background-color: #2856A6;
  }
  section.price table td {
    line-height: 2em;
    border: 1px solid #2856A6;
    background-color: #fff;
  }
}
section.kaisyou {
  padding: 80px 0px 120px;
}
section.kaisyou img {
  width: 100%;
}
section.kaisyou p {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2em;
  text-align: center;
  background-color: #32B564;
  color: #fff;
  padding: 40px;
}

.wakigasite {
  display: block;
  max-width: 560px;
  margin: 24px auto 120px;
  text-align: center;
}
.wakigasite img {
  width: 100%;
}

footer p {
  font-size: 12px;
}/*# sourceMappingURL=style.css.map */