@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.main {
  background-color: #F6F7F7;
}

.section {
  position: relative;
  padding-top: 40px;
}
@media screen and (min-width: 960px) {
  .section {
    padding-top: 80px;
  }
}
.section:nth-child(5) {
  padding-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .section:nth-child(5) {
    padding-bottom: 80px;
  }
}
.section__inner {
  max-width: 1100px;
  width: 96%;
  margin: 0 auto;
}
.section__img {
  position: absolute;
  right: 0;
  top: 80px;
}
.section__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  color: #fff;
  border-bottom: solid 1px;
  padding-bottom: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media screen and (min-width: 960px) {
  .section__title {
    font-size: 4.2rem;
  }
}
.section__btn {
  text-align: center;
  padding: 50px 0 70px 0;
}
.section__btn a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-flex;
  justify-content: space-between;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #FF000F;
  border: solid 2px #FF000F;
  border-radius: 50px;
  padding: 10px 50px;
  font-size: 2rem;
}
@media screen and (min-width: 960px) {
  .section__btn a {
    font-size: 2.4rem;
  }
}
.section__btn img {
  margin-left: 20px;
}
.section--keyvisual {
  background-image: url(../img/module/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 70px;
}
@media screen and (max-width: 1360px) {
  .section--keyvisual {
    padding-top: 110px;
  }
}
.section--bottom {
  height: 100px;
  background-image: url(../img/top/about_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.section--adoption {
  background-image: url(../img/area/recruit_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.keyvisual__title {
  color: #fff;
  font-size: 3.4rem;
  padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .keyvisual__title {
    font-size: 5rem;
  }
}
.keyvisual__text {
  color: #fff;
  line-height: 2;
}
.keyvisual__wrap {
  display: block;
}
@media screen and (min-width: 960px) {
  .keyvisual__wrap {
    display: flex;
    justify-content: space-between;
  }
}
.keyvisual__group {
  width: 100%;
  color: #fff;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .keyvisual__group {
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .keyvisual__group--lg {
    width: 80%;
  }
}
.keyvisual__img {
  width: 100%;
  z-index: 2;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .keyvisual__img {
    width: 45%;
  }
}
.keyvisual__img img {
  vertical-align: bottom;
}
.keyvisual__img--sm {
  width: 100%;
  padding-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .keyvisual__img--sm {
    width: 20%;
  }
}

.link {
  display: block;
}
@media screen and (min-width: 960px) {
  .link {
    display: flex;
    justify-content: space-between;
  }
}
.link a {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(#FF8500, #F55B5B);
  padding: 20px 30px;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  .link a {
    width: 32%;
    font-size: 2.6rem;
  }
}
.link a:hover {
  opacity: 0.6;
}

.toggle {
  padding-top: 80px;
  margin-top: -80px;
}
.toggle__title {
  font-weight: bold;
  border-bottom: solid 1px #CCCCCC;
  padding-bottom: 30px;
  font-size: 2rem;
}
@media screen and (min-width: 960px) {
  .toggle__title {
    font-size: 2.6rem;
  }
}
.toggle__subtitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: solid 1px #CCCCCC;
  cursor: pointer;
  font-size: 1.8rem;
}
@media screen and (min-width: 960px) {
  .toggle__subtitle {
    padding: 30px;
    font-size: 2rem;
  }
}
.toggle__subtitle.selected {
  background-color: #fff;
  border-bottom: none;
}
.toggle__subtitle.selected .toggle__icon::before {
  display: none;
}
.toggle__subtitle.selected .toggle__icon::after {
  display: block;
}
.toggle__text {
  display: none;
  font-size: 1.6rem;
  line-height: 2;
  background-color: #fff;
  padding: 20px;
}
@media screen and (min-width: 960px) {
  .toggle__text {
    padding: 20px 30px;
  }
}
.toggle__icon {
  display: block;
  position: relative;
  margin-left: 10px;
}
.toggle__icon:before {
  content: url(../img/faq/toggle_open.svg);
  width: 26px;
  height: 26px;
}
.toggle__icon:after {
  display: none;
  content: url(../img/faq/toggle_close.svg);
  width: 26px;
  height: 26px;
  position: relative;
  top: -4px;
}