@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.section {
  position: relative;
  background-color: #F6F7F7;
  padding-top: 40px;
}
@media screen and (min-width: 960px) {
  .section {
    padding-top: 80px;
  }
}
.section__inner {
  max-width: 1100px;
  width: 96%;
  margin: 0 auto;
}
.section__inner h3 {
  font-size: 3.4rem;
  padding-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .section__inner h3 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 960px) {
  .section__inner h3 {
    display: flex;
    align-items: center;
    padding-bottom: 50px;
  }
}
.section__inner h3 span {
  display: block;
  font-size: 1.8rem;
  color: #F55B5B;
}
@media screen and (min-width: 960px) {
  .section__inner h3 span {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 960px) {
  .section__inner h3 span {
    margin-left: 20px;
  }
}
.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 {
  position: relative;
  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;
  padding: 10px 70px 10px 50px;
}
@media screen and (min-width: 960px) {
  .section__btn a {
    font-size: 2.4rem;
  }
}
.section__btn a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/module/arrow_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 10px;
}
.section__btn a:hover {
  background: #fff;
  color: #FF000F;
}
.section__btn a:hover::after {
  background-image: url(../img/module/arrow_icon-red.svg);
}
.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;
  margin-bottom: 50px;
  font-size: 3.2rem;
}
@media screen and (min-width: 960px) {
  .keyvisual__title {
    font-size: 4.8rem;
  }
}
.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;
    align-items: flex-end;
  }
}
@media screen and (min-width: 960px) {
  .keyvisual__wrap--position {
    align-items: center;
  }
}
.keyvisual__group {
  width: 100%;
  color: #fff;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .keyvisual__group {
    width: 50%;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 960px) {
  .keyvisual__group--lg {
    width: 80%;
  }
}
.keyvisual__group--position {
  padding-bottom: 0;
}
.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%;
  }
}

.box {
  padding-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .box {
    padding-bottom: 60px;
  }
}
.box__head {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(#FF8500, #F55B5B);
  padding: 20px;
}
@media screen and (min-width: 960px) {
  .box__head {
    font-size: 2.4rem;
  }
}
.box__body {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  flex-direction: column-reverse;
}
@media screen and (min-width: 960px) {
  .box__body {
    flex-direction: unset;
    padding: 40px 60px;
  }
}
.box__item {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .box__item {
    width: 48%;
  }
}
.box__item:last-child {
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .box__item:last-child {
    margin-bottom: 0;
  }
}
.box__item figure {
  margin-bottom: 20px;
}
.box__item figure img {
  width: 100%;
}
.box__item iframe {
  width: 100%;
  height: 250px;
}
.box__text {
  line-height: 2;
  margin-bottom: 30px;
}
.box__bg {
  line-height: 2;
  background-color: #F6F7F7;
  padding: 10px;
  margin-bottom: 30px;
}
.box__table {
  width: 100%;
  display: flex;
}
.box__table tbody {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.box__table tr {
  border-bottom: solid 1px #707070;
  display: block;
}
.box__table th {
  width: 100px;
  color: #F55B5B;
  text-align: left;
  padding: 20px 0;
}
.box__table th, .box__table td {
  font-size: 1.4rem;
}
@media screen and (min-width: 960px) {
  .box__table th, .box__table td {
    font-size: 1.6rem;
  }
}
.box__tr--full {
  width: 100%;
}
.box__tr--half {
  width: 100%;
}
@media screen and (min-width: 520px) {
  .box__tr--half {
    width: 48%;
    margin-right: 2%;
  }
}
.box__tr--half:nth-of-type(3) {
  margin-right: 0;
}
.box__btn {
  text-align: end;
}
.box__btn a {
  position: relative;
  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;
  padding: 10px 50px 10px 20px;
}
.box__btn a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/module/arrow_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 10px;
}
.box__btn a:hover {
  background: #fff;
  color: #FF000F;
}
.box__btn a:hover::after {
  background-image: url(../img/module/arrow_icon-red.svg);
}
.box__other {
  font-size: 1.2rem;
  text-align: right;
  margin-bottom: 30px;
}

.contents {
  background-color: #fff;
  padding: 20px;
}
@media screen and (min-width: 960px) {
  .contents {
    padding: 50px;
  }
}
.contents--table {
  padding: 20px;
}
@media screen and (min-width: 960px) {
  .contents--table {
    padding: 20px 50px;
  }
}
.contents__box {
  margin-top: 30px;
}
.contents__box:first-child {
  margin-top: 0;
}
.contents__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .contents__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 960px) {
  .contents__title {
    margin-bottom: 30px;
  }
}
.contents__group {
  display: block;
}
@media screen and (min-width: 960px) {
  .contents__group {
    display: flex;
    justify-content: space-between;
  }
}
.contents__group figure {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .contents__group figure {
    width: 49%;
  }
}
.contents__group figure img {
  width: 100%;
}
.contents__text {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .contents__text {
    width: 48%;
    line-height: 2.5;
    margin-bottom: 0;
  }
}
.contents__unit {
  display: block;
  margin-bottom: -20px;
}
@media screen and (min-width: 960px) {
  .contents__unit {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.contents__item {
  width: 100%;
  display: flex;
  align-items: center;
  border: solid 1px #707070;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .contents__item {
    width: 49%;
  }
}
@media screen and (min-width: 960px) {
  .contents__item:nth-of-type(2n) {
    margin-left: 2%;
  }
}
.contents__item figure {
  width: 80px;
  height: 80px;
}
@media screen and (min-width: 960px) {
  .contents__item figure {
    width: 150px;
    height: 110px;
  }
}
.contents__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contents__item p {
  font-size: 1.4rem;
  padding: 20px;
  flex: 1;
}
@media screen and (min-width: 960px) {
  .contents__item p {
    font-size: 1.6rem;
  }
}
.contents__table {
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (min-width: 960px) {
  .contents__table {
    font-size: 1.6rem;
  }
}
.contents__table tr, .contents__table th {
  display: block;
}
@media screen and (min-width: 960px) {
  .contents__table tr, .contents__table th {
    display: flex;
    align-items: center;
  }
}
.contents__table tr {
  border-bottom: solid 1px #CCCCCC;
  padding-left: 0;
}
@media screen and (min-width: 960px) {
  .contents__table tr {
    padding-left: 30px;
  }
}
.contents__table tr:last-child {
  border-bottom: none;
}
.contents__table th {
  width: 100%;
  font-size: 1.2rem;
  padding: 20px 0 0 0;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .contents__table th {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .contents__table th {
    width: 20%;
    padding: 20px 0;
  }
}
.contents__table td {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  padding: 30px 0;
}
@media screen and (min-width: 960px) {
  .contents__table td {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 960px) {
  .contents__table td {
    width: 80%;
  }
}
.contents__table td p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .contents__table td p {
    font-size: 1.4rem;
  }
}
.contents__table td p:last-child {
  margin-bottom: 0;
}
.contents__table td p span {
  font-weight: bold;
}

.adoption {
  padding-bottom: 10px;
}
@media screen and (min-width: 960px) {
  .adoption {
    padding-bottom: 130px;
  }
}
.adoption__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.adoption__group a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  color: #FF000F;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .adoption__group a {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 960px) {
  .adoption__group a {
    width: 48%;
  }
}
.adoption__group a:hover {
  color: #fff;
  background-color: #FF000F;
}
.adoption__group a:hover::after {
  background-image: url(../img/module/arrow_icon.svg);
}
.adoption__group a::after {
  position: relative;
  content: "";
  background-image: url(../img/module/arrow_icon-red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 12px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.preparation {
  width: 100%;
  background: #fff;
  padding: 30px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .preparation {
    padding: 50px;
  }
}
.preparation__message {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(to right, #fa7d4f 0%, #f55b5b 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 30px 20px;
}
@media screen and (min-width: 760px) {
  .preparation__message {
    font-size: 3rem;
    padding: 30px;
  }
}
.preparation__message span {
  display: inline-block;
  position: relative;
  padding-left: 60px;
}
.preparation__message span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/area/preparation_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 33px;
  height: 47px;
}