@charset "UTF-8";
/**
 * Mixin
 */
:root {
  --ww: 100vw;
  --pw: 1920;
}
@media (min-width: 1921px) {
  :root {
    --ww: 1920px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --pw: 375;
  }
}

/* home */
.loading_on {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.loading {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: #fff;
  z-index: 999;
  -webkit-transition: 1s ease-in;
  transition: 1s ease-in;
}
.loading img {
  width: 80px;
  height: 73.52px;
}

.loading__inner {
  position: relative;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.loading__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: loading_1 1s 1s forwards;
  animation: loading_1 1s 1s forwards;
}

@-webkit-keyframes loading_1 {
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@keyframes loading_1 {
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
.loading__img_last {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: fadeIn 0.3s 2s forwards;
  animation: fadeIn 0.3s 2s forwards;
}

.content {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .content {
    padding-top: 70px;
  }
}

.mv {
  width: 100%;
  height: 100svh;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mv {
    height: calc(100svh - 70px);
  }
}
.mv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mv_txt_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  perspective: 1000px;
}

.mv_txt {
  background-color: rgba(38, 38, 38, 0.8);
  padding: 35px 35px;
  font-size: 2.9rem;
  text-align: center;
  line-height: 1.7;
  color: #fff;
  font-weight: bold;

  font-feature-settings: “palt” 1;
  letter-spacing: 0.1em;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.mv_txt {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}

.mv_txt .small {
  font-size: 2.9rem;
}
.mv_txt .orange {
  color: #fc9000;
}

.mv_txt + .mv_txt {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .mv_txt_wrap {
    width: 80%;
  }
  .mv_txt {
    font-size: 2.4rem;
    padding: 15px 20px;
  }
  .mv_txt .small {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 500px) {
  .mv_txt {
    font-size: 1.6rem;
  }
  .mv_txt .small {
    font-size: 1.4rem;
  }
}

.mv_txt:nth-of-type(1) {
  --dur: 1000ms;
  --delay: 5000ms;
  animation: face-in var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay) forwards;
}

.mv_txt:nth-of-type(2) {
  --dur: 1000ms;
  --delay: 5900ms;
  animation: face-in var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay) forwards;
}

.loading_none .mv_txt:nth-of-type(1) {
  --dur: 1000ms;
  --delay: 1000ms;
  animation: face-in var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay) forwards;
}
.loading_none .mv_txt:nth-of-type(2) {
  --dur: 1000ms;
  --delay: 1900ms;
  animation: face-in var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay) forwards;
}
.loading_none .loading {
  display: none;
}

@keyframes face-in {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* stagger-text.css */
.sf-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  animation: sf-up 600ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes sf-up {
  from {
    opacity: 0;
    transform: translateY(1em);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec_home__inner {
  max-width: 1200px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .sec_home__inner {
    width: 84vw;
  }
}

.sec_home h2 {
  font-size: 6rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .sec_home h2 {
    font-size: 3.2rem;
    text-align: center;
  }
}
.sec_home h2 span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .sec_home h2 span {
    font-size: 1.4rem;
  }
}

.home_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  width: 250px;
  height: 60px;
  background-color: #4e4e4e;
  color: #fff;
  border-radius: 28px;
  font-size: 1.6rem;
  padding: 0 27px;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .home_btn {
    margin-right: auto;
    height: 50px;
    font-size: 1.4rem;
  }
}
.home_btn .arrow,
.menber_btn .arrow {
  position: absolute;
  top: 0;
  right: 24px;
  margin: 29px 0;
}
@media only screen and (max-width: 767px) {
  .home_btn .arrow,
  .menber_btn .arrow {
    margin: 24px 0;
  }
}
.home_btn:hover .arrow,
.menber_btn:hover .arrow,
.home_info_title:hover + .home_info_arrow .arrow {
  animation: arrow-bounce 0.8s infinite;
}

.sec_home_service {
  position: relative;
  background-image: url(../img/home/service_bg.png);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: -88px;
  padding: 230px 0 0;
  color: #fff;
}
@media only screen and (max-width: 480px) {
  .sec_home_service {
    background-image: url(../img/home/sp_service_bg.png);
    margin-top: -70px;
    padding: 115px 0 0;
  }
}
.sec_home_service h2 {
  color: #65c0fa;
}
.sec_home_service h2 span {
  color: #fff;
}

.sec_home_service::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background-color: #000000;
}

.service_content {
  max-width: 900px;
  padding-bottom: 290px;
  position: relative;
  margin: 70px auto 0;
}
.arrow_down {
  position: absolute;
  bottom: 20px;
  left: 50%;
}
@media only screen and (max-width: 767px) {
  .service_content {
    padding-bottom: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .service_content::after {
    background-size: auto 53.96px;
  }
}
.service_content .lead {
  font-size: 4rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .service_content .lead {
    font-size: 3rem;
  }
}
.service_content .txt {
  font-size: 2.2rem;
  margin-top: 70px;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
  .service_content .txt {
    font-size: 1.8rem;
    margin-top: 50px;
  }
}
.service_content .highlight {
  background-color: #56a4d5;
  color: #fff;
  font-weight: bold;
  padding: 5px;
}
.service_content .border_txt {
  color: #65c0fa;
  border-bottom: 2px solid;
}

.service_content_mv {
  margin-top: 130px;
}
@media only screen and (max-width: 767px) {
  .service_content_mv {
    margin: 60px calc(50% - 50vw) 0;
    width: 100vw;
  }
}
.service_content_mv video {
  width: 100%;
}

.service_content_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 76px;
}
@media only screen and (max-width: 767px) {
  .service_content_bnr {
    display: block;
    text-align: center;
    margin-top: 50px;
  }
  .service_content_bnr a {
    display: block;
  }
  .service_content_bnr .service_content_bnr_1 img {
    width: 217.5px;
  }
  .service_content_bnr .service_content_bnr_2 img {
    width: 335px;
  }
}
.service_content_bnr a + a {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .service_content_bnr a + a {
    margin-top: 36px;
    margin-left: 0;
  }
}

.sec_home_film {
  position: relative;
  background-image: url(../img/home/film_bg.png);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #393939;
  padding: 260px 0 340px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .sec_home_film {
    background-image: url(../img/home/sp_film_bg.png);
    padding: 100px 0 175px;
  }
}
.sec_home_film h2 {
  color: #65c0fa;
}
.sec_home_film h2 span {
  color: #fff;
}

.film_content {
  max-width: 900px;
  margin: 0 auto;
}
.film_content .lead {
  font-size: 4rem;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .film_content .lead {
    font-size: 3rem;
  }
}
.film_content .txt {
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .film_content .txt {
    font-size: 1.8rem;
  }
}
.film_content video {
  width: 100%;
}

.film_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .film_point {
    margin-top: 50px;
  }
}
.film_point li {
  width: calc((100% - 30px) / 3);
}
@media only screen and (max-width: 767px) {
  .film_point li {
    width: calc((100% - 15px) / 2);
  }
}
.film_point li:nth-child(n + 4) {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .film_point li:nth-child(n + 4) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .film_point li:nth-child(n + 3) {
    margin-top: 20px;
  }
}

.film_bnr {
  margin-top: 112px;
}
@media only screen and (max-width: 767px) {
  .film_bnr {
    margin-top: 80px;
  }
}
.film_bnr p {
  font-size: 1.4rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .film_bnr p {
    font-size: 1.2rem;
  }
}

.film_txt {
  margin-top: 100px;
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .film_txt {
    font-size: 1.8rem;
  }
}

.film_kadai {
  margin-top: 50px;
  font-size: 2.2rem;
  list-style: none;
}
.film_kadai li {
  display: inline-block;
  position: relative;
  text-indent: -1.5em;
  padding-left: 1em;
}
.film_kadai li span {
  margin-left: auto;
  padding-bottom: 5px;
  border-bottom: 2px solid #65c0fa;
}
.film_kadai li::before {
  content: "⚫";
  padding-right: 0.5em;
}
.film_kadai li + li {
  margin-top: 10px;
}

.sec_home_works::before {
  content: "";
  display: block;
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media only screen and (max-width: 767px) {
  .sec_home_works::before {
    height: 45px;
    top: -44px;
  }
}

.sec_home_works::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media only screen and (max-width: 767px) {
  .sec_home_works::after {
    height: 45px;
    bottom: -44px;
  }
}

.sec_home_works {
  padding: 150px 0 250px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sec_home_works {
    padding: 100px 0 90px;
  }
}
.sec_home_works h2 {
  color: #000000;
}
.sec_home_works h2 span {
  color: #7b7b7b;
}

.home_works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 10px;
  margin-top: 60px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.home_works_item {
  width: calc((100% - 40px) / 5);
  max-width: 360px;
}
@media only screen and (max-width: 1332px) {
  .home_works_item {
    width: calc((100% - 30px) / 4);
  }
  .home_works_item:nth-of-type(5) {
    display: none;
  }
}
@media only screen and (max-width: 1063px) {
  .home_works_item {
    width: calc((100% - 20px) / 3);
  }
  .home_works_item:nth-of-type(4) {
    display: none;
  }
}
@media only screen and (max-width: 794px) {
  .home_works_item {
    width: calc((100% - 16px) / 2);
  }
  .home_works_item:nth-of-type(4) {
    display: block;
  }
}
@media only screen and (max-width: 530px) {
  .home_works_item {
    width: calc(100% - 16px);
  }
}

.home_works_item__shadow {
  -webkit-box-shadow: 0 0 5px 0 rgba(17, 51, 72, 0.2);
  box-shadow: 0 0 5px 0 rgba(17, 51, 72, 0.2);
}

.home_works_item__inner {
  width: 100%;
  height: 0;
  padding-top: 83.1896551724%;
  position: relative;
}

.home_works_item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  height: 33px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.home_works_item__header img {
  margin-bottom: 5px;
}

.home_works_item_date {
  margin-left: auto;
}

.home_works_item__tmn {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.home_works_item__ni {
  width: 100%;
  height: 100%;
  background-color: #eee;
  top: 0;
  left: 0;
  position: absolute;
}

.home_works_item__pass_box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.home_works_item__pass_box p {
  font-size: 1.3rem;
}
.home_works_item__pass_box p + p {
  margin-top: 5px;
}
.home_works_item__pass_box button {
  background-color: #c40900;
  color: #fff;
  border: 0;
  margin-top: 5px;
  font-size: 1.2rem;
  width: 115px;
  height: 34px;
  line-height: 34px;
  border-radius: 8px;
}

.home_works_item__ttl {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.home_works_item__bottom {
  font-size: 1.2rem;
  padding: 0 10px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home_works_item__label {
  border: 1px solid;
  padding: 0 7px;
}

.home_works_item__label + .home_works_item__label {
  margin-left: 5px;
}

.home_works_item__label--member {
  color: #c40900;
}

.modal_pass_on,
body.modal_on {
  height: 100vh;
  overflow: hidden;
}

.home_works_modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}

.modal_pass_on .home_works_modal_bg,
body.modal_on .home_works_modal_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home_works_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 999;
  padding: 85px 0 110px;
  width: 800px;
  max-width: 90%;
}
@media only screen and (max-width: 767px) {
  .home_works_modal {
    padding: 80px 0 40px;
  }
}

.is-show.home_works_modal {
  display: block;
  max-height: 90vh;
  overflow-y: auto;
}

.home_works_modal__close {
  position: absolute;
  left: 15px;
  top: 15px;
}

.home_works_modal__inner {
  width: 470px;
  max-width: 90%;
  margin: 0 auto;
}

.home_works_modal__tmn {
  margin-top: 15px;
}

.home_works_modal__tmn img {
  width: 100%;
}

.home_works_modal__dl {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.home_works_modal__dl dt,
.home_works_modal__dl dd {
  padding: 10px;
  border-bottom: #bcbcbc 1px solid;
  font-size: 1.4rem;
}
.home_works_modal__dl dt {
  width: 100px;
  font-weight: bold;
}
.home_works_modal__dl dd {
  width: calc(100% - 100px);
}

.navigation {
  max-width: 960px;
  margin: 88px auto 0;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .navigation {
    margin: 60px 0 0;
  }
}
.home_works_modal_pass {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 999;
  padding: 85px 0 110px;
  width: 800px;
  max-width: 90%;
}
.modal_pass_on .home_works_modal_pass {
  display: block;
}

.home_works_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .home_works_link {
    margin-top: 50px;
    display: block;
    text-align: center;
  }
}
.home_works_link .home_btn {
  background-color: #000000;
  color: #fff;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .home_works_link .home_btn {
    margin-left: auto;
    margin-bottom: 10px;
  }
}
.home_works_link .menber_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 340px;
  height: 60px;
  background-color: #c40900;
  border-radius: 28px;
  padding: 0 27px;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.menber_btn picture {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .home_works_link .menber_btn {
    height: 50px;
    width: 250px;
    margin: 0 auto;
  }
}
.home_works_link p {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .home_works_link p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

.home_works_link + p {
  margin-top: 10px;
  font-size: 1.4rem;
}

.sec_home_faq {
  padding: 260px 0 220px;
  background-color: #f3f3f3;
  background-image: url(../img/home/faq_bg.png);
  background-size: auto 967px;
}
@media only screen and (max-width: 767px) {
  .sec_home_faq {
    padding: 135px 0 150px;
    background-image: url(../img/home/sp_faq_bg.png);
    background-size: 635px auto;
  }
}
.sec_home_faq h2 {
  color: #af4c0c;
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .sec_home_faq h2 {
    margin-bottom: 50px;
  }
}
.sec_home_faq h2 span {
  color: #7b7b7b;
}
.sec_home_faq .home_btn {
  margin-top: 165px;
}
@media only screen and (max-width: 767px) {
  .sec_home_faq .home_btn {
    margin-top: 65px;
  }
}

.faq_box dt {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 20px 30px;
  padding-right: 60px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .faq_box dt {
    padding: 18px 15px;
    padding-right: 30px;
    font-size: 1.4rem;
  }
}
.faq_box dt::before {
  content: "Q";
  width: 62px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  background-color: #af4c0c;
  font-weight: 700;
  font-size: 3.6rem;
  border-radius: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .faq_box dt::before {
    width: 35px;
    height: 35px;
    font-size: 1.9rem;
    margin-right: 10px;
  }
}
.faq_box dt span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.faq_box dt span::after,
.faq_box dt span::before {
  content: "";
  background-color: #333333;
  display: block;
}
.faq_box dt span::before {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
}
@media only screen and (max-width: 767px) {
  .faq_box dt span::before {
    right: 15px;
    width: 15px;
  }
}
.faq_box dt span::after {
  position: absolute;
  top: 50%;
  right: 45px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .faq_box dt span::after {
    right: 22px;
    height: 15px;
  }
}
.faq_box dd {
  font-size: 1.8rem;
  background-color: #f5f5f5;
  padding: 20px 50px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .faq_box dd {
    padding: 20px;
    font-size: 1.4rem;
  }
}
.faq_box dt.on span::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.faq_box + .faq_box {
  margin-top: 65px;
}
@media only screen and (max-width: 767px) {
  .faq_box + .faq_box {
    margin-top: 20px;
  }
}

.sec_home_info::before {
  content: "";
  display: block;
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #5a5a5a;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media only screen and (max-width: 767px) {
  .sec_home_info::before {
    height: 45px;
    top: -44px;
  }
}

.sec_home_info {
  background-color: #5a5a5a;
  padding: 170px 0 150px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sec_home_info {
    padding: 90px 0 130px;
  }
}
.sec_home_info h2 {
  color: #bfef30;
}
.sec_home_info h2 span {
  color: #fff;
}
.sec_home_info .home_btn {
  margin-top: 100px;
  background-color: #ffffff;
  color: #5a5a5a;
}
@media only screen and (max-width: 767px) {
  .sec_home_info .home_btn {
    margin-top: 80px;
  }
}

.home_info_list {
  max-width: 900px;
  margin-left: auto;
  margin-top: 100px;
  border-top: 1px solid #aaa;
}
@media only screen and (max-width: 767px) {
  .home_info_list {
    margin-top: 50px;
  }
}

.home_info_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  padding: 0;
  border-bottom: 1px solid #aaa;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 0px;
}
.home_info_arrow {
  position: absolute;
  right: 10px;
  top: calc(50% - 1px);
}

@media only screen and (max-width: 767px) {
  .home_info_left {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.home_info_date {
  color: #ccc;
  font-size: 1.4rem;
  width: 80px;
}
@media only screen and (max-width: 767px) {
  .home_info_date {
    font-size: 1.2rem;
  }
}

.home_info_badge {
  font-size: 1.2rem;
  border-radius: 14px;
  min-width: 90px;
  text-align: center;
}

.home_info_badge.home_info_badge--works {
  background-color: #fff;
  color: #333;
}

.home_info_badge.home_info_badge--infomation {
  background-color: #bfef34;
  color: #333;
}

.home_info_title {
  color: #fff;
  font-size: 1.6rem;
  padding: 15px 20px 15px 0;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .home_info_date {
    margin-top: 20px;
  }
  .home_info_badge {
    margin-top: 20px;
  }
  .home_info_title {
    min-width: 100%;
    padding: 10px 35px 20px 0;
  }
}

.home_info_arrow {
  width: 20px;
  display: flex;
}

.home_info_page {
  text-align: right;
}
.home_info_page a {
  margin-top: 60px;
}
.home_info_page a,
.home_info_page span {
  color: #fff;
  display: inline-block;
}
.home_info_page a + a::before {
  content: ".";
  margin: 0 3px;
}
.home_info_page span {
  vertical-align: text-top;
}
