.fo-Sa {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
html body {
  background: #820038;
}
html body > * {
  max-width: 500px;
  margin: 0 auto;
}

/*------------------------------------------*/
/*header
/*------------------------------------------*/
header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2%;
  transition: 0.2s;
  z-index: 99;
}
header .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo a img {
  width: 35px;
}
header .logo a p {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s;
}
header nav .hamburger {
  width: 60px;
  background: #820038;
  cursor: pointer;
}
header nav .hamburger .bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
header nav .hamburger .bar div {
  width: 29px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transform-origin: center center;
  transition: 0.5s;
}
header nav .hamburger.open .bar div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header nav .hamburger.open .bar div:nth-child(2) {
  opacity: 0;
}
header nav .hamburger.open .bar div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header nav ul.link-list {
  position: fixed;
  top: 60px;
  right: -100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #820038;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
header nav ul.link-list li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
header nav ul.link-list.show {
  right: 0%;
  opacity: 1;
  pointer-events: auto;
}
header.is-scroll {
  background: #fff;
}
header.is-scroll .logo p {
  color: #141414;
}

/*------------------------------------------*/
/*main
/*------------------------------------------*/
main {
  background: #fff;
}
main section {
  padding: 40px 0;
  position: relative;
}
main section .box {
  width: 90%;
  margin: 0 auto;
}
main section .box h2.ttl {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 10px;
  margin-bottom: 25px;
  position: relative;
}
main section .box h2.ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 3px;
  background: #820038;
}
main section .box ul.check-list {
  margin-top: 15px;
}
main section .box ul.check-list li {
  font-size: 18px;
  padding-left: 28px;
  position: relative;
}
main section .box ul.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0%;
  content: "";
  width: 15px;
  height: 16px;
  background: url(img/check.png) no-repeat center/100% auto;
}
main section .box .closing {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  background: #820038;
  padding: 10px 20px;
  margin: 25px auto 0;
}
main #index #mv {
  padding: 0;
}
main #index #mv .box {
  width: 100%;
  aspect-ratio: 65/94;
  position: relative;
}
main #index #mv .box ul.slide li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
main #index #mv .box ul.slide li.active {
  opacity: 1;
}
main #index #mv .box .text * {
  color: #fff;
}
main #index #mv .box .text > * {
  position: absolute;
}
main #index #mv .box .text > *.catch {
  top: 14%;
  left: 5%;
  width: 90%;
}
main #index #mv .box .text > *.catch p {
  font-weight: 700;
}
main #index #mv .box .text > *.catch p:nth-of-type(1) {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  line-height: 1.2;
}
main #index #mv .box .text > *.catch p:nth-of-type(1) span:nth-of-type(1) {
  font-size: 63px;
}
main #index #mv .box .text > *.catch p:nth-of-type(1) span:nth-of-type(2) {
  font-size: 36px;
}
main #index #mv .box .text > *.catch p:nth-of-type(1) span:nth-of-type(3) {
  font-size: 41px;
  font-feature-settings: "palt";
}
main #index #mv .box .text > *.catch p:nth-of-type(2) {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  background: #820038;
  padding-left: 8px;
  margin-top: 10px;
}
main #index #mv .box .text > *.sub {
  bottom: 6%;
  right: 3%;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
main #index #income {
  background: #f2f2f2;
}
main #index #income .box .salary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
main #index #income .box .salary > p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  background: #820038;
  padding: 0 5px;
}
main #index #income .box .salary span {
  display: flex;
  align-items: last baseline;
  color: #820038;
  font-size: 70px;
}
main #index #income .box .salary span p {
  font-size: 17px;
  font-weight: 700;
  padding-top: 20px;
}
main #index #income .box .salary i {
  color: #820038;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
}
main #index #income .box .de {
  font-size: 18px;
  text-align: center;
}
main #index #numbers .box ul.num-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 5px;
  padding: 5px;
}
main #index #numbers .box ul.num-list li:not(:last-of-type) {
  border-bottom: 1px solid #999999;
}
main #index #numbers .box ul.num-list li .ttl {
  display: flex;
  align-items: center;
  gap: 15px;
}
main #index #numbers .box ul.num-list li .ttl img {
  max-width: 58px;
}
main #index #numbers .box ul.num-list li .ttl p {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}
main #index #numbers .box ul.num-list li .num {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
main #index #numbers .box ul.num-list li .num span {
  color: #820038;
  font-size: 80px;
  letter-spacing: 4px;
}
main #index #numbers .box ul.num-list li .num p {
  font-size: 27px;
  font-weight: 700;
}
main #index #numbers .box ul.num-list li .num p.p-r {
  padding-right: 1em;
}
main #index #numbers .box ul.num-list li .note {
  width: 100%;
  font-size: 11px;
  text-align: right;
}
main #index #truth .box ul.truth-list li:not(:last-of-type) {
  margin-bottom: 45px;
}
main #index #truth .box ul.truth-list li .person {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 2;
}
main #index #truth .box ul.truth-list li .person::after {
  position: absolute;
  top: 35%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 223px;
  height: 228px;
  background: url(img/truth_illust_1.png) no-repeat center/100% auto;
  z-index: -1;
}
main #index #truth .box ul.truth-list li .person img {
  width: 45%;
}
main #index #truth .box ul.truth-list li .person p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 500;
}
main #index #truth .box ul.truth-list li .person p span {
  font-size: 18px;
  padding-left: 10px;
  position: relative;
}
main #index #truth .box ul.truth-list li .person p span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 18px;
  background: #141414;
}
main #index #truth .box ul.truth-list li .de {
  font-size: 18px;
  line-height: 1.4;
  background: #f2f2f2;
  border: 2px solid #999999;
  border-radius: 10px;
  padding: 15px 18px;
  margin-top: 25px;
  position: relative;
  z-index: 3;
}
main #index #truth .box ul.truth-list li .de::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent #999999;
  translate: -50% -100%;
}
main #index #truth .box ul.truth-list li .de::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  border-style: solid;
  border-width: 0 7px 15px 7px;
  border-color: transparent transparent #f2f2f2;
  translate: -50% -100%;
}
main #index #truth .box ul.truth-list li:nth-of-type(even) .person {
  flex-direction: row-reverse;
}
main #index #truth .box ul.truth-list li:nth-of-type(even) .person::after {
  top: 45%;
  left: 0;
  width: 242px;
  height: 190px;
  background: url(img/truth_illust_2.png) no-repeat center/100% auto;
}
main #index #truth .box ul.truth-list li:nth-of-type(even) .de::before {
  left: 78%;
}
main #index #truth .box ul.truth-list li:nth-of-type(even) .de::after {
  left: 78%;
}
main #index #reason .box {
  margin-bottom: 35px;
}
main #index #reason .box .salary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
main #index #reason .box .salary > p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  background: #820038;
  padding: 0 5px;
}
main #index #reason .box .salary span {
  display: flex;
  align-items: last baseline;
  color: #820038;
  font-size: 70px;
}
main #index #reason .box .salary span p {
  font-size: 17px;
  font-weight: 700;
  padding-top: 20px;
}
main #index #reason .box .salary i {
  color: #820038;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
}
main #index #reason .box ul.reason-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
main #index #reason .box ul.reason-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 49%;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  background: #999999;
  padding: 10px 5px;
}
main #index #reason .box ul.reason-list li:nth-of-type(5n+1), main #index #reason .box ul.reason-list li:nth-of-type(5n+4), main #index #reason .box ul.reason-list li:nth-of-type(5n+5) {
  background: #666666;
}
main #index #reason .box ul.reason-list li span {
  color: #fff;
  font-size: 14px;
}
main #index #here .box .message {
  color: #820038;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
main #index #visit {
  background: url(img/visit_bg.jpg) no-repeat bottom/contain;
  padding-top: 60px;
}
main #index #visit .box .message {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
main #index #visit .box .message span {
  display: block;
  color: #fff;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.3;
  background: #820038;
  padding: 0 10px;
}
main #index #visit .box .message span:not(:last-of-type) {
  margin-bottom: 8px;
}
main #index #visit .box .de {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
}
main #index #visit .box .benefit {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  padding-left: 20px;
  position: relative;
}
main #index #visit .box .benefit span {
  color: #820038;
  font-size: 50px;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke;
  padding-right: 5px;
}
main #index #visit .box .benefit::before {
  position: absolute;
  top: -20px;
  left: 0;
  content: "";
  width: 61px;
  height: 61px;
  background: url(img/visit_balloon.png) no-repeat center/100% auto;
}
main #index #visit .box a.contact-btn {
  display: block;
  width: 85%;
  background: #820038;
  padding: 25px 50px 25px 25px;
  margin: 220px auto 0;
  position: relative;
}
main #index #visit .box a.contact-btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "";
  width: 22px;
  height: 16px;
  background: url(img/arrow_w.png) no-repeat center/100% auto;
}
main #index #visit .box a.contact-btn p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
main #index #faq {
  padding-top: 60px;
}
main #index #faq .box .faq-list details {
  border-bottom: 1px solid #999999;
  padding: 20px 5px;
}
main #index #faq .box .faq-list details summary {
  list-style: none;
  position: relative;
}
main #index #faq .box .faq-list details summary::before {
  position: absolute;
  top: 14px;
  right: 5px;
  content: "";
  width: 20px;
  height: 3px;
  background: #666666;
}
main #index #faq .box .faq-list details summary::after {
  position: absolute;
  top: 6px;
  right: 13px;
  content: "";
  width: 3px;
  height: 20px;
  background: #666666;
}
main #index #faq .box .faq-list details summary p {
  font-size: 17px;
  font-weight: 500;
  padding: 0 30px 0 35px;
  position: relative;
}
main #index #faq .box .faq-list details summary p::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  color: #fff;
  font-size: 17px;
  background: #820038;
  padding-bottom: 4px;
}
main #index #faq .box .faq-list details summary::-webkit-details-marker {
  display: none;
}
main #index #faq .box .faq-list details > p {
  font-size: 16px;
  padding-left: 35px;
  margin-top: 20px;
  position: relative;
}
main #index #faq .box .faq-list details > p::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  background: #666666;
  padding-bottom: 4px;
}
main #index #faq .box .faq-list details[open] summary::after {
  opacity: 0;
}
main #index #contact {
  padding-bottom: 0;
}
main #index #contact .box {
  margin-bottom: 60px;
}
main #index #contact .box .message {
  color: #820038;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 50px;
}
main #index #contact .box ul.contact-list li:not(:last-of-type) {
  margin-bottom: 25px;
}
main #index #contact .box ul.contact-list li .balloon {
  width: 80%;
  font-size: 19px;
  text-align: center;
  border: 2px solid #820038;
  padding: 10px 5px;
  margin: 0 auto 25px;
  position: relative;
}
main #index #contact .box ul.contact-list li .balloon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #820038 transparent transparent;
  translate: -50% 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
main #index #contact .box ul.contact-list li .balloon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #fff transparent transparent;
  translate: -50% 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
main #index #contact .box ul.contact-list li a {
  display: block;
  background: #820038;
  padding: 28px 48px 28px 28px;
  position: relative;
}
main #index #contact .box ul.contact-list li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "";
  width: 23px;
  height: 17px;
  background: url(img/arrow_w.png) no-repeat center/100% auto;
}
main #index #contact .box ul.contact-list li a * {
  color: #fff;
}
main #index #contact .box ul.contact-list li a p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 56px;
  position: relative;
}
main #index #contact .box ul.contact-list li a p::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 43px;
  height: 36px;
}
main #index #contact .box ul.contact-list li a p span {
  font-size: 32px;
  font-weight: 700;
}
main #index #contact .box ul.contact-list li a p small {
  display: block;
  font-size: 13px;
  padding-top: 2px;
}
main #index #contact .box ul.contact-list li:nth-of-type(even) .balloon {
  border: 2px solid #666666;
}
main #index #contact .box ul.contact-list li:nth-of-type(even) .balloon::before {
  border-color: #666666 transparent transparent;
}
main #index #contact .box ul.contact-list li:nth-of-type(even) a {
  background: #666666;
}
main #index #contact .box ul.contact-list li:nth-of-type(1) a p::before {
  background: url(img/contact_web.png) no-repeat center/100% auto;
}
main #index #contact .box ul.contact-list li:nth-of-type(2) a p::before {
  background: url(img/contact_tel.png) no-repeat center/100% auto;
}
main #index #contact .box ul.contact-list li:nth-of-type(3) a p {
  text-align: center;
  padding-right: 30px;
}
main #index #contact .box ul.contact-list li:nth-of-type(3) a p::before {
  background: url(img/contact_visit.png) no-repeat center/100% auto;
}
main #page-ttl {
  background: #820038;
  padding: 80px 0 40px;
}
main #page-ttl .box h1 {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  padding-top: 10px;
  position: relative;
}
main #page-ttl .box h1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
}
main #page-contact .sc-embed {
  box-shadow: 1px 1px 4px #999999;
  padding: 0 10px;
}

/*------------------------------------------*/
/*footer
/*------------------------------------------*/
footer {
  background: #333333;
  padding: 45px 0 20px;
  position: relative;
}
footer * {
  color: #fff;
}
footer .box {
  width: 85%;
  margin: 0 auto;
}
footer .box .logo {
  margin-bottom: 25px;
}
footer .box .logo a {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .box .logo a img {
  width: 55px;
}
footer .box .logo a p {
  font-size: 24px;
  font-weight: 700;
}
footer .box .address {
  font-size: 17px;
}
footer .box .tel {
  font-size: 17px;
  margin-top: 5px;
}
footer .box .ex-link {
  display: block;
  font-size: 13px;
  margin-top: 35px;
}
footer .box small {
  display: block;
  font-size: 8px;
  margin-top: 60px;
}
footer .page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #820038;
  border: 1px solid #fff;
  cursor: pointer;
  z-index: 90;
}
footer .page-top::before {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}/*# sourceMappingURL=style.css.map */