@charset "UTF-8";
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1; }

@media (max-width: 1280px) {
  .header__logo {
    display: none; }
  .header__container {
    justify-content: flex-end;
    padding: 27px 24px; } }

.main__mv {
  position: relative; }

.main__mv_logo {
  width: 53.33333vw;
  margin: 30vh auto 20vh; }

.main__mv_lead {
  font-size: 20px;
  text-align: right;
  margin-right: 92px; }

.main__mv_scroll {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(90deg);
  position: absolute;
  bottom: 0; }

.main__mv_scroll_text {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 67px;
  grid-template-rows: 1fr;
  gap: 10px;
  align-items: center;
  grid-column: 1 / 1;
  grid-row: 1 / 1; }

.main__mv_scroll_text::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  grid-column: 2 / 2;
  grid-row: 1 / 1;
  align-items: center; }

.main__mv_scroll_text::after {
  content: '';
  display: block;
  height: 1.5px;
  background-color: #fff;
  grid-column: 2 / 2;
  grid-row: 1 / 1;
  align-items: center;
  animation: scroll 2s 0s ease-out infinite; }

@keyframes scroll {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@media (max-width: 1280px) {
  .main__mv_logo {
    width: 80vw;
    margin: 30vh auto 9.48718vw; }
  .main__mv_lead {
    width: 57.4359vw;
    margin: 0 auto;
    text-align: center;
    font-size: 14px; }
  .main__mv_scroll {
    font-size: 10px;
    bottom: -25vh;
    left: calc(50% - 55px);
    transform-origin: 50% 50%; }
  .main__mv_scroll_text {
    grid-template-columns: 1fr 48px; } }

.footer {
  padding: 93px 0 95px;
  line-height: 1;
  text-align: center;
  font-size: 25px;
  font-weight: normal;
  background-color: #0B4340; }
  @media (max-width: 1280px) {
    .footer {
      font-size: 16px;
      padding: 34px 0 33px; } }

.footer__nav_list {
  display: flex;
  justify-content: center;
  gap: 1em;
  font-size: 16px; }

.footer__copy {
  margin-top: 1em; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

ul, ol {
  list-style: none; }

img {
  width: 100%;
  height: auto; }

a {
  color: #fff; }

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  background: linear-gradient(to right, #197975, #3FB0AB);
  color: #fff;
  font-size: 24px;
  font-weight: bold; }
  @media (max-width: 1280px) {
    body {
      font-size: 18px; } }

.menu {
  transform: translateY(-100vh);
  transition: transform .8s; }

.menu[aria-hidden="false"] {
  transform: translateY(0); }

.hambarger_menu_btn {
  background-color: transparent;
  border: none; }
  .hambarger_menu_btn:hover {
    cursor: pointer; }
  .hambarger_menu_btn .one,
  .hambarger_menu_btn .two,
  .hambarger_menu_btn .three {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #fff; }
    @media (max-width: 1280px) {
      .hambarger_menu_btn .one,
      .hambarger_menu_btn .two,
      .hambarger_menu_btn .three {
        width: 36px;
        height: 2px; } }
  .hambarger_menu_btn .two,
  .hambarger_menu_btn .three {
    margin-top: 9px; }
    @media (max-width: 1280px) {
      .hambarger_menu_btn .two,
      .hambarger_menu_btn .three {
        margin-top: 6.6px; } }

.hambarger_menu_btn.hambarger_menu_btn__gn .one,
.hambarger_menu_btn.hambarger_menu_btn__gn .two,
.hambarger_menu_btn.hambarger_menu_btn__gn .three {
  background-color: #39A39F; }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #39A39F;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/bg-menu.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom; }

.menu__close_btn_wrapper {
  position: fixed;
  top: 40px;
  right: 40px; }
  @media (max-width: 1280px) {
    .menu__close_btn_wrapper {
      top: 24px;
      right: 27px; } }

.menu__close_btn {
  background-color: transparent;
  border: none; }
  .menu__close_btn:hover {
    cursor: pointer; }
  .menu__close_btn .one {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #fff;
    transform: rotate(45deg); }
    @media (max-width: 1280px) {
      .menu__close_btn .one {
        width: 36px;
        height: 2px; } }
  .menu__close_btn .two {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #fff;
    transform: rotate(-45deg); }
    @media (max-width: 1280px) {
      .menu__close_btn .two {
        width: 36px;
        height: 2px; } }
  .menu__close_btn .two {
    margin-top: -4px; }
    @media (max-width: 1280px) {
      .menu__close_btn .two {
        margin-top: -2px; } }

.menu__nav_link {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .menu__nav_link img {
    width: auto;
    height: 7.6vh;
    min-height: 32px; }
    @media (max-width: 1280px) {
      .menu__nav_link img {
        height: 4.6vh; } }
  .menu__nav_link p {
    margin-top: 8px;
    font-size: 20px; }
    @media (max-width: 1280px) {
      .menu__nav_link p {
        font-size: 16px; } }

.menu__nav_list + .menu__nav_list {
  margin-top: 40px; }

.heading2 {
  text-align: center;
  font-size: 0; }
  .heading2 img {
    height: 56px;
    width: auto; }

.heading2::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: #FFC117;
  margin: 18.5px auto 10px; }

.sub_heading {
  text-align: center;
  font-size: 20px; }

@media (max-width: 1280px) {
  .heading2 img {
    height: 28.8px;
    width: auto; }
  .heading2::after {
    margin: 14px auto 14px; }
  .sub_heading {
    font-size: 14px; } }

.outline {
  line-height: 2.167;
  margin-top: 364px; }

.outline__data_wrapper,
.outline__history_wrapper,
.outline__access_data {
  width: 56.30208vw;
  min-width: 1081px;
  margin: auto; }

.outline__data_wrapper {
  margin-top: 113px; }

.outline__data_wrapper {
  display: flex; }

.outline__data_row,
.outline__officer_data_row,
.outline__access_data {
  display: flex; }

.outline__data_title,
.outline__officer_title,
.outline__access_title {
  width: 5em;
  flex-shrink: 0; }

.outline__data_description,
.outline__officer_description {
  margin-left: 1em; }

.outline__certification_row {
  display: inline-flex;
  flex-wrap: wrap; }

.outline__certification_title::after {
  content: '：'; }

.outline__servide {
  display: flex;
  flex-wrap: wrap; }

.outline__servide_item + .outline__servide_item::before {
  content: '、'; }

.outline__history_row {
  display: flex;
  align-items: center; }

.outline__history_row + .outline__history_row {
  margin-top: 40px; }

.outline__history_wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-top: 177px;
  font-size: 17px;
  line-height: 1; }

.outline__history_img {
  height: 426px; }
  .outline__history_img img {
    height: 100%; }

.outline__history {
  height: 100%;
  position: relative;
  margin-left: 35px; }

.outline__history::before {
  content: '';
  display: block;
  height: 96%;
  width: 2px;
  background-color: #FFC117;
  position: absolute;
  left: 5px;
  top: 0.5em; }

.outline__history_row::before {
  content: '';
  display: block;
  height: 12px;
  width: 12px;
  border-radius: 6px;
  background-color: #FFC117;
  margin-right: 14px; }

.outline__history_data {
  margin-left: 1em; }

.outline__access {
  margin-top: 180px; }

.outline__access_map {
  width: 100%;
  height: 670px; }

.outline__access_data {
  margin-top: 81px; }

@media (max-width: 1280px) {
  .outline {
    font-size: 18px;
    line-height: 1.78;
    margin-top: 364px; }
  .outline__data_row__sp {
    flex-direction: column; }
  .outline__data_description {
    margin-left: 0; }
  .outline__history_wrapper {
    font-size: 16px;
    flex-direction: column-reverse;
    gap: 67px;
    margin-top: 75px; }
  .outline__data_wrapper,
  .outline__history_wrapper,
  .outline__access_data {
    width: 80.5%;
    min-width: auto; }
  .outline__data_wrapper {
    margin-top: 67px; }
  .outline__data_row + .outline__data_row {
    margin-top: 34px; }
  .outline__history {
    margin-left: 0; }
  .outline__history_img {
    height: auto; }
    .outline__history_img img {
      height: auto; }
  .outline__access {
    margin-top: 93px; }
  .outline__access_data {
    margin-top: 39px; }
  .outline__access_map {
    width: 100%;
    height: 378px; } }

.business {
  margin-top: 255px; }

.business__contetnts {
  width: 62.70833vw;
  margin: 178px auto 0;
  display: grid;
  grid-template-columns: 22.8125vw 22.8125vw;
  grid-template-rows: 186px 186px 186px;
  justify-content: space-between;
  row-gap: 50px; }
  @media (max-width: 1280px) {
    .business__contetnts {
      width: 80.5%;
      display: flex;
      flex-direction: column;
      margin-top: 80px;
      row-gap: 93px; } }

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }

.service__title {
  font-family: "ヒラギノ角ゴ Pro W7", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 28px;
  width: 100%;
  position: relative; }

.service__title::before {
  content: '';
  background-image: url("../images/font-01.svg");
  background-position-x: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 112px;
  height: 74px;
  position: absolute;
  top: -100px;
  left: calc(50% - 56px); }

.service__title::after {
  content: '';
  display: block;
  width: 132px;
  height: 132px;
  background-color: #2B9D99;
  transform: rotate(45deg);
  z-index: -1;
  box-shadow: #00000016 0 3px 6px;
  position: absolute;
  top: -88px;
  left: calc(50% - 66px); }

.service__description {
  font-size: 20px;
  font-weight: bold; }

.service:nth-of-type(1) {
  grid-column: 1 / 1;
  grid-row: 1 / 1; }
  .service:nth-of-type(1) .service__title::before {
    background-image: url("../images/font-01.svg"); }

.service:nth-of-type(2) {
  grid-column: 1 / 3;
  grid-row: 2 / 2;
  display: flex;
  justify-content: center; }
  .service:nth-of-type(2) .service__title::before {
    background-image: url("../images/font-02.svg"); }

.service:nth-of-type(3) {
  grid-column: 2 / 2;
  grid-row: 1 / 1; }
  .service:nth-of-type(3) .service__title::before {
    background-image: url("../images/font-03.svg"); }

.service:nth-of-type(4) {
  grid-column: 2 / 2;
  grid-row: 3 / 3;
  margin-top: 88px; }
  .service:nth-of-type(4) .service__title::before {
    background-image: url("../images/font-04.svg"); }

.service:nth-of-type(5) {
  grid-column: 1 / 1;
  grid-row: 3 / 3;
  margin-top: 88px; }
  .service:nth-of-type(5) .service__title::before {
    background-image: url("../images/font-05.svg"); }

.business__notes {
  text-align: center;
  position: relative;
  top: -150px; }

.business__illust {
  position: relative;
  top: -200px; }

@media (max-width: 1280px) {
  .business {
    margin-top: 236px; }
  .service {
    margin-top: 83px; }
  .service:nth-of-type(n+2) {
    margin-top: 90px; }
  .business__notes {
    position: initial;
    margin-top: 78px; }
  .business__illust {
    position: relative;
    top: 0; }
  .service__title {
    font-size: 20px; }
  .service__title::after {
    width: 100px;
    height: 100px;
    top: -64px;
    left: calc(50% - 50px); }
  .service__title::before {
    width: 87px;
    height: 56px;
    top: -76px;
    left: calc(50% - 43.5px); }
  .service__description {
    font-size: 14px;
    margin-top: 11px; } }

.features {
  font-family: "Toppan Bunkyu Midashi Gothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  position: relative;
  margin-top: 59px;
  padding-bottom: 372px;
  width: 100%;
  overflow: hidden; }

.features::before {
  content: '';
  position: absolute;
  top: 32px;
  left: -56px;
  background-image: url("../images/bg-font-raftworks.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 335px;
  height: 2220px; }

.features::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -56px;
  background-image: url("../images/bg-font-raftworks.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 335px;
  height: 2220px; }

.features__list_wrapper {
  text-align: center;
  margin-top: 170px; }

.features__question {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 67px; }

.features__question::before {
  content: '';
  display: block;
  background-image: url("../images/font-qa.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 244px;
  height: 79px;
  margin-bottom: 36px; }

.features__answer {
  font-size: 35px;
  line-height: 1.4857;
  margin-top: 36px; }

.features__item_row + .features__item_row {
  margin-top: 225px; }

@media (max-width: 1280px) {
  .features {
    margin-top: 195px;
    padding-bottom: 132px; }
  .features::before {
    width: 100px;
    height: 663px;
    top: 240px;
    left: -12px; }
  .features::after {
    content: none; }
  .features__list_wrapper {
    width: 80.5%;
    margin: 73px auto 0; }
  .features__question {
    font-size: 33px; }
  .features__question::before {
    width: 122px;
    height: 39px;
    margin-bottom: 11px; }
  .features__answer {
    font-size: 16px;
    line-height: 1.625;
    margin-top: 20px; }
  .features__item_row + .features__item_row {
    margin-top: 94px; } }

.recruit {
  background-color: #fff;
  color: #39A39F;
  padding-top: 140px;
  padding-bottom: 140px; }

.recruit__lead_wrapper {
  margin-top: 68.6px; }

.recruit__lead {
  text-align: center; }

.recruit__btn_wrapper {
  margin-top: 73px;
  display: flex;
  justify-content: center; }

.recruit__btn {
  font-size: 25px;
  color: #fff;
  background-color: #39A39F;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 464px;
  height: 78px;
  border-radius: 39px;
  text-decoration: none;
  padding-right: 48px;
  position: relative; }

.recruit__btn::after {
  content: '';
  display: block;
  background-image: url("../images/link-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 22px;
  right: 24px; }

.recruit__btn + .recruit__btn {
  margin-left: 31px; }

@media (max-width: 1280px) {
  .recruit {
    padding-top: 56px;
    padding-bottom: 57px; }
  .recruit__lead_wrapper {
    width: 80.5%;
    margin: 36px auto 0; }
  .recruit__btn_wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 44px; }
  .recruit__btn + .recruit__btn {
    margin-left: 0;
    margin-top: 31px; }
  .recruit__btn {
    font-size: 16px;
    width: 80%;
    max-width: 318px;
    height: 54px;
    border-radius: 27px;
    padding-right: 40px;
    position: relative; }
  .recruit__btn::after {
    content: '';
    display: block;
    background-image: url("../images/link-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 14px;
    right: 16px; } }

.policy .main__container {
  width: 80%;
  max-width: 1080px;
  margin: 150px auto;
  font-size: 16px; }

.policy section {
  margin-top: 5em; }

.policy h1,
.policy h2,
.policy h3 {
  text-align: center; }

.policy P {
  margin-top: 1em; }

.policy h1 + p,
.policy h2 + p,
.policy h3 + p {
  margin-top: 3em; }

.img-pmark {
  width: 120px; }

.img-isms {
  width: 120px; }

.m-only-pc {
  display: block; }

.m-only-sp {
  display: none; }

@media (max-width: 1280px) {
  .m-only-pc {
    display: none; }
  .m-only-sp {
    display: block; } }

.m-flex {
  display: flex;
  gap: 1em; }
  @media (max-width: 768px) {
    .m-flex {
      flex-direction: column; } }

.m-flex-align-items-center {
  align-items: center; }

.m-flex-center {
  justify-content: center; }

/*# sourceMappingURL=style.css.map */