@charset "UTF-8";
/*
Theme Name: royl
*/
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* CSS Document */
* {
  backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

:root {
  --scroll-offset-pc: 180px;
  --scroll-offset-sp: 40px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset-pc);
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: var(--scroll-offset-sp);
  }
}
body {
  font-family: "Zen Kaku Gothic New", "Jost", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #F7FCFF;
  line-height: 1.8;
  color: #393939;
}

input[type=checkbox] {
  border: 1px solid #393939;
  width: 16px;
  height: 16px;
  padding: 0;
}

ul, ol, dl, li, strong, dt, dd, p, div, span, a, article, label, input, select, textarea {
  font-size: calc(15px + (16 - 15) * (100vw - 414px) / (1280 - 414));
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

.bold {
  font-weight: bold !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

body {
  margin: 0 auto;
  padding: 32px 0 0;
}

main {
  margin: 0 auto;
}

.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav ul {
  background-color: #fff;
  padding: 24px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.3);
  border-radius: 40px;
}
.nav ul li:not(:last-child) {
  margin-right: 20px;
}
.nav ul a {
  font-weight: 700;
}
.nav ul .btn {
  padding: 10px 16px;
  background-color: #F8712D;
  border-radius: 40px;
  color: #fff;
}

.header_inner {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 16px;
  width: 90%;
  z-index: 100;
}
.header_inner .logo img {
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  border-radius: 40px;
  max-width: 380px;
}
@media (max-width: 768px) {
  .header_inner .logo img {
    max-width: 240px;
  }
}

#scholarship {
  scroll-margin-top: 800px;
}

.scholarship.pc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  top: 128px;
  right: 5vw;
  margin: 0 16px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
}
.scholarship.pc img {
  border-radius: 40px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1280px) {
  .scholarship.pc {
    right: inherit;
    left: 4.66vw;
  }
}
@media (max-width: 768px) {
  .scholarship.pc {
    display: none;
  }
}

.scholarship.sp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 88px;
  left: 5vw;
  margin: 0 16px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
}
.scholarship.sp img {
  max-width: 168px;
  border-radius: 40px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .scholarship.sp {
    display: none;
  }
}

.hero {
  width: 100%;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    padding: 8px 0;
  }
}
.hero .img_outer {
  position: relative;
  width: min(95%, 1440px);
  margin: 8px auto;
}
.hero .img_outer img {
  border-radius: 20px;
  border: #393939 3px solid;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hero .img_outer {
    width: 95%;
  }
}

.herotxt_outer {
  position: absolute;
  content: "";
  width: 14vw;
  max-width: 200px;
  height: -moz-fit-content;
  height: fit-content;
  top: 250px;
  transform: translateY(-50%);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.herotxt_outer .herotxt {
  position: relative;
}
@media (max-width: 768px) {
  .herotxt_outer {
    top: 120px;
    transform: translateX(-50%);
    width: 16vw;
  }
}

section {
  margin-top: 150px;
}
section:not(:first-of-type) {
  margin-top: 200px;
}
@media (max-width: 768px) {
  section {
    margin-top: 100px;
  }
  section:not(:first-of-type) {
    margin-top: 200px;
  }
}

.cta {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.ttl {
  position: relative;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ttl {
    min-width: 340px;
  }
}
.ttl h2 {
  margin-top: 240px;
  font-family: "jost", "Zen Kaku Gothic New";
  color: #0D6296;
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: 0.3px;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .ttl h2 {
    font-size: 2rem;
  }
}
.ttl img {
  width: 200px;
}
.ttl .tr {
  position: absolute;
  width: 450px;
  height: 250px;
  left: 50%;
  transform: translateX(-50%);
}
.ttl .tr img {
  width: 450px;
}
@media (max-width: 768px) {
  .ttl .tr {
    top: -30px;
    max-width: 400px;
    width: 370px;
  }
}

.message {
  max-width: 1024px;
  padding: 0 16px;
  margin: 150px auto 0;
  position: relative;
}
.message .mess_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.message .ttl {
  width: auto;
  max-width: 840px;
  height: auto;
  background-color: initial;
}
.message .ttl h2 {
  margin: 40px auto 0;
  width: auto;
}
.message .ttl h2 img {
  width: 411px;
}
@media (max-width: 768px) {
  .message .ttl h2 img {
    width: 280px;
  }
}
.message .ttl p {
  color: #393939;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 1;
}
.message .ttl .mess_txt p {
  font-weight: 800;
  color: #0D6296;
}
.message .ttl .mess_txt:first-of-type {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .message .ttl .mess_txt:first-of-type {
    margin-bottom: 16px;
  }
}
.message .ttl .mess_txt:last-of-type {
  width: 100%;
  align-items: end;
  justify-content: end;
}
@media (max-width: 768px) {
  .message .ttl .mess_txt:last-of-type p {
    font-size: 0.9rem;
  }
}
.message .ttl .txt {
  width: -moz-fit-content;
  width: fit-content;
  flex-flow: wrap;
  color: #393939;
  font-weight: medium;
  font-size: 1.2rem;
  text-align: left;
  max-width: 700px;
  line-height: 2;
  padding: 0px 20px 40px;
}
@media (max-width: 768px) {
  .message .ttl .txt {
    font-size: 0.9rem;
    line-height: 1.8;
    padding: 0 0 4px;
  }
}
.message .tr01 {
  position: absolute;
  max-width: 200px;
  top: 0%;
  left: 0;
}
@media (max-width: 768px) {
  .message .tr01 {
    width: 110px;
    max-width: 50%;
    z-index: -5;
    top: -36%;
    left: 40%;
    transform: translateX(-50%);
  }
}
.message .tr02 {
  position: absolute;
  max-width: 180px;
  top: 0%;
  right: 0;
}
@media (max-width: 768px) {
  .message .tr02 {
    width: 70px;
    max-width: 50%;
    z-index: -5;
    top: -12%;
    right: 40%;
    transform: translateX(50%);
  }
}
.message .tr03 {
  position: absolute;
  max-width: 170px;
  bottom: 0%;
  left: 0;
}
@media (max-width: 768px) {
  .message .tr03 {
    width: 90px;
    max-width: 50%;
    z-index: -5;
    bottom: -20%;
    left: 13%;
    transform: translateX(-30%);
  }
}
.message .tr04 {
  position: absolute;
  max-width: 190px;
  bottom: 0%;
  right: 0;
}
@media (max-width: 768px) {
  .message .tr04 {
    width: 100px;
    max-width: 50%;
    z-index: -5;
    bottom: -22%;
    transform: translateY(25%);
    right: 10%;
  }
}

.workplace {
  max-width: 1024px;
  padding: 0 16px;
  margin: 180px auto 0 !important;
  position: relative;
}
.workplace .ttlouter {
  display: flex;
  justify-content: center;
}
.workplace .ttl {
  min-width: unset;
}
.workplace .tr {
  position: absolute;
  max-width: 400px;
  top: -20px;
  right: 0%;
}
@media (max-width: 768px) {
  .workplace .tr {
    max-width: 400px;
    width: 370px;
    top: 0px;
  }
}
.workplace .box01 {
  margin-top: 40px;
}
.workplace .box01 .cts {
  margin: 0 20px;
  max-width: 300px;
}
@media (max-width: 768px) {
  .workplace .box01 {
    flex-direction: column;
    margin-top: 28px;
  }
  .workplace .box01 .cts:not(:first-child) {
    margin-top: 40px;
  }
}
.workplace .box02 {
  max-width: 600px;
  margin: 60px auto 0;
  width: 92%;
}

.work {
  max-width: 1024px;
  padding: 0 16px;
  margin: 150px auto 0;
  position: relative;
}
@media (max-width: 768px) {
  .work {
    margin: 80px auto 0 !important;
  }
}
.work .ttlouter {
  display: flex;
  justify-content: space-between;
}
.work .ttlouter .tr {
  max-width: 400px;
  top: -20px;
}
@media (max-width: 768px) {
  .work .ttlouter .tr {
    max-width: 400px;
    width: 370px;
    top: 0px;
  }
}
.work .box01 {
  margin: 28px auto 0;
  max-width: 800px;
  flex-direction: column;
}
.work .box01 p {
  margin-bottom: 16px;
}
.work .box01 .cts {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
.work .box01 .cts:before {
  background-color: #0D6296;
  border-radius: 20px;
  margin: 2px 0 0 8px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  margin: 0px 0 0 8px;
}
@media (max-width: 768px) {
  .work .box01 .cts:before {
    background-color: #0D6296;
    border-radius: 20px;
    margin: 2px 0 0 8px;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: 0px 0 0 6px;
  }
}
.work .box01 .cts img {
  border-radius: 20px;
  border: #393939 3px solid;
}
.work .box02 {
  margin: 60px auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.work .box02 .cts {
  max-width: 480px;
}

.company {
  padding: 150px 0 100px;
  background-color: #FFF6D7;
  position: relative;
  margin-top: 100px !important;
}
@media (max-width: 768px) {
  .company {
    padding: 60px 0 80px;
  }
}
.company .ttlouter {
  position: relative;
  display: flex;
  justify-content: center;
}
.company .tr {
  position: absolute;
  width: 450px;
  top: -50px;
}
@media (max-width: 768px) {
  .company .tr {
    max-width: 400px;
    width: 370px;
    top: 0px;
  }
}
.company .box01 {
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .company .box01 {
    margin-top: 40px;
    gap: 32px;
  }
}
.company .box01 .cts {
  width: 380px;
  height: 406px;
  z-index: 1;
}
.company .box01 .cts::before {
  background-color: #0D6296;
  border-radius: 20px;
  margin: 2px 0 0 8px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  width: 380px;
  height: 406px;
}
.company .box01 .cts img {
  border-radius: 20px;
  border: #393939 3px solid;
}
@media (max-width: 768px) {
  .company .box01 .cts {
    width: 300px;
    height: 322px;
  }
  .company .box01 .cts::before {
    background-color: #0D6296;
    border-radius: 20px;
    margin: 2px 0 0 8px;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: 0px 0 0 4px;
    width: 300px;
    height: 322px;
  }
}

.survey {
  margin-top: 0 !important;
  padding: 0 0 100px;
  position: relative;
  background-color: #FFF6D7;
}
@media (max-width: 768px) {
  .survey {
    padding: 0 0 40px !important;
  }
}
.survey .ttlouter {
  display: flex;
  justify-content: center;
}
.survey h2 {
  margin-top: 0;
  font-size: 3rem;
  line-height: 1.1;
}
.survey h2 span {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .survey h2 {
    font-size: 1.8rem;
  }
}
.survey .trs {
  position: absolute;
  width: 530px;
  left: 51%;
  transform: translate(-50%);
}
@media (max-width: 768px) {
  .survey .trs {
    max-width: 367px;
  }
}
.survey .trs .tr01 {
  width: 60px;
  top: 0;
  left: 0;
}
.survey .trs .tr02 {
  width: 80px;
  top: 0;
  right: 0;
}
.survey .box01 {
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .survey .box01 {
    margin-top: 28px;
  }
}
.survey .box01 .cts {
  min-width: 300px;
  max-width: 380px;
}
.survey .box01 .cts::before {
  background-color: #0D6296;
  border-radius: 20px;
  margin: 2px 0 0 8px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .survey .box01 .cts::before {
    background-color: #0D6296;
    border-radius: 20px;
    margin: 2px 0 0 8px;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: 0px 0 0 4px;
  }
}
.survey .box01 .cts img {
  border-radius: 20px;
  border: #393939 3px solid;
}
.survey .box02 {
  margin: 60px auto 0;
  max-width: 1024px;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .survey .box02 {
    max-width: 400px;
    width: 90%;
    margin: 32px auto 0;
  }
}
.survey .swiper_outer {
  max-width: 992px;
  padding: 0 16px;
}
.survey .swiper_outer .swiper-button_outer {
  max-width: 992px;
  padding: 0 16px;
  width: 70%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper_outer {
  max-width: 1024px;
  padding: 0 16px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.swiper_outer .swiper01 .swiper-pagination, .swiper_outer .swiper02 .swiper-pagination, .swiper_outer .swiper03 .swiper-pagination {
  position: absolute;
  bottom: 0px !important;
  left: 50%;
  z-index: 99;
}
@media (max-width: 768px) {
  .swiper_outer {
    --swiper-navigation-size: 24px !important;
  }
}

.swiper01 {
  max-width: 800px;
  min-height: 340px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
}
.swiper01 .swiper-wrapper {
  width: 100%;
}
.swiper01 .swiper-slide {
  width: 450px;
}
.swiper01 .swiper-pagination {
  position: absolute;
  bottom: -6px;
}

.interview {
  max-width: 1024px;
  padding: 0 16px;
  margin: 120px auto 0 !important;
  position: relative;
}
@media (max-width: 768px) {
  .interview {
    margin-top: 40px !important;
  }
}
.interview .ttlouter {
  display: flex;
  justify-content: center;
}
.interview .tr {
  position: absolute;
  width: 450px;
  top: -4%;
}
@media (max-width: 768px) {
  .interview .tr {
    width: 370px;
    top: 0px;
  }
}
.interview .box01 {
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.interview .box01 .cts {
  width: 380px;
}
.interview .box01 .cts::before {
  background-color: #0D6296;
  border-radius: 20px;
  margin: 2px 0 0 8px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .interview .box01 .cts::before {
    margin: 0px 0 0 4px;
  }
}
.interview .box01 .cts img {
  border-radius: 20px;
  border: #393939 3px solid;
}
.interview .swiper02 {
  max-width: 800px;
  padding-bottom: 10px;
  margin: 40px auto 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .interview .swiper02 {
    margin: 28px auto 0;
  }
}
.interview .swiper02 .swiper-wrapper {
  width: 100%;
}
.interview .swiper02 .swiper-slide {
  width: 450px;
}
.interview .swiper02 .swiper-pagination {
  position: absolute;
  bottom: -6px;
}

.schedule {
  max-width: 1024px;
  padding: 0 16px;
  margin: 120px auto 0 !important;
  position: relative;
}
@media (max-width: 768px) {
  .schedule {
    margin-top: 40px !important;
  }
}
.schedule .ttlouter {
  display: flex;
  justify-content: center;
}
.schedule .tr {
  position: absolute;
  width: 450px;
  top: -5%;
}
@media (max-width: 768px) {
  .schedule .tr {
    max-width: 400px;
    width: 370px;
    top: 0px;
  }
}
.schedule .box01 {
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding-bottom: 4px;
}
@media (max-width: 768px) {
  .schedule .box01 {
    margin: 28px auto 0;
  }
}
.schedule .box01 .cts {
  width: 380px;
}
.schedule .box01 .cts::before {
  background-color: #0D6296;
  border-radius: 20px;
  margin: 2px 0 0 8px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .schedule .box01 .cts::before {
    margin: 0px 0 0 4px;
  }
}
.schedule .box01 .cts img {
  border-radius: 20px;
  border: #393939 3px solid;
}

.swiper03 {
  max-width: 800px;
  margin: 40px auto 0;
  overflow: hidden;
  position: relative;
}
.swiper03 .swiper-wrapper {
  width: 100%;
}
.swiper03 .swiper-slide {
  width: 450px;
}
@media (max-width: 768px) {
  .swiper03 {
    margin: 28px auto 0;
  }
}
.swiper03 .swiper-wrapper {
  width: 100%;
}
.swiper03 .swiper-slide {
  width: 450px;
}
.swiper03 .swiper-pagination {
  position: absolute;
  bottom: -6px;
}

.recruit {
  position: relative;
}
@media (max-width: 768px) {
  .recruit {
    margin-top: 60px !important;
  }
}
.recruit .ttlouter {
  display: flex;
  justify-content: center;
}
.recruit .tr {
  position: absolute;
  width: 450px;
  top: -4%;
}
@media (max-width: 768px) {
  .recruit .tr {
    width: 370px;
    top: 0px;
  }
}
.recruit .cts_outer {
  max-width: 1024px;
  padding: 0 16px;
  margin: 32px auto 60px;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: unset;
}
@media (max-width: 768px) {
  .recruit .cts_outer {
    margin-top: 24px;
  }
}
.recruit .cts_outer .desc {
  justify-content: flex-start;
  width: 100%;
}
.recruit .cts_outer .desc:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: #CCDCE6 1px solid;
}
.recruit .cts_outer .desc:not(:first-child) {
  padding-top: 24px;
}
@media (max-width: 768px) {
  .recruit .cts_outer .desc {
    flex-direction: column;
    align-items: flex-start;
  }
  .recruit .cts_outer .desc:not(:last-child) {
    padding-bottom: 16px;
  }
  .recruit .cts_outer .desc:not(:first-child) {
    padding-top: 16px;
  }
}
.recruit .cts_outer .desc .rec_ttl {
  padding-left: 20px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  padding: 8px 16px;
  background-color: #1E9EEB;
  color: #fff;
  min-width: 175px;
  letter-spacing: 0.3px;
  border-radius: 20px;
}
.recruit .cts_outer .desc .txt {
  padding-right: 20px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .recruit .cts_outer .desc .rec_ttl {
    margin-right: 0;
    display: flex;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 8px;
  }
  .recruit .cts_outer .desc .txt {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .flow {
    margin-top: 100px !important;
  }
}
.flow h2 {
  margin-top: 0;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .flow h2 {
    font-size: 2rem;
  }
}
.flow .box01outer {
  margin: 24px auto 0;
  max-width: 800px;
  padding-right: 4px;
}
@media (max-width: 768px) {
  .flow .box01outer {
    width: 350px;
    margin: 20px auto 0;
  }
}

.faq h2 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .faq {
    margin-top: 100px !important;
  }
}

.accordion {
  max-width: 1024px;
  padding: 0 16px;
  max-width: 900px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 24px auto 60px;
}
@media (max-width: 768px) {
  .accordion {
    margin: 24px auto 0;
  }
}
.accordion .accordion-item {
  border-radius: 20px;
  border: #393939 3px solid;
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
}
.accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  padding: 0 16px;
  background-color: #fff;
}
.accordion .accordion-item .accordion-header {
  background-color: #fff;
}
.accordion .accordion-item .accordion-header .accordion-toggle {
  width: 100%;
  padding: 16px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  outline: none;
}
.accordion .accordion-item .accordion-header .accordion-toggle span {
  line-height: 1;
  vertical-align: middle;
}
.accordion .accordion-item .accordion-header .accordion-toggle .faq_icon {
  width: 28px;
  display: flex;
  justify-content: center;
  margin-right: 16px;
}
.accordion .accordion-item .accordion-header .accordion-toggle .plus-icon {
  background-color: #F8712D;
  border-radius: 20px;
  border: #393939 3px solid;
  border: 0px solid #393939;
  padding: 2px;
  transition: transform 0.6s ease;
  margin-left: 16px;
}
.accordion .accordion-item .accordion-header .accordion-toggle .question {
  flex: 1;
  line-height: 1.6;
  font-weight: 800;
}
.accordion .accordion-item.open .accordion-header .accordion-toggle .plus-icon {
  transform: rotate(45deg);
}
.accordion .accordion-item.open .accordion-content {
  max-height: 500px;
  padding-bottom: 16px;
}
.accordion .faq_link {
  color: #1E9EEB;
}

.corp_btn {
  position: relative;
  justify-content: center;
  padding: 24px 60px;
  border: 3px solid #F8712D;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  background-color: #fff;
  color: #F8712D;
  max-width: 80%;
  margin: 60px auto 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
@media (max-width: 768px) {
  .corp_btn {
    padding: 24px 0;
  }
}

footer {
  margin-top: 60px;
}
footer p {
  text-align: center;
  background-color: #1E9EEB;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 0;
}

.footer_wrapper .footer_inner {
  flex-direction: column;
}
.footer_wrapper .footer_inner .logo img {
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  border-radius: 40px;
}
.footer_wrapper .footer_inner .nav ul {
  background-color: #fff;
  padding: 24px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
}
.footer_wrapper .footer_inner .nav ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer_wrapper .footer_inner .nav ul a {
  font-weight: 700;
}
.footer_wrapper .footer_inner .nav ul .btn {
  padding: 10px 16px;
  background-color: #F8712D;
  border-radius: 40px;
  color: #fff;
}
.footer_wrapper .footer_inner .box {
  flex-direction: column;
}

.mob-show {
  display: none;
}
@media (max-width: 768px) {
  .mob-show {
    display: block !important;
  }
}

.mob-clear {
  display: block;
}
@media (max-width: 768px) {
  .mob-clear {
    display: none !important;
  }
}

.mob-hidden {
  visibility: visible;
}
@media (max-width: 768px) {
  .mob-hidden {
    visibility: hidden !important;
  }
}

.pad-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-show {
    display: block !important;
  }
}

.pad-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-clear {
    display: none !important;
  }
}

.pad-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pad-hidden {
    visibility: hidden !important;
  }
}

.web-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-show {
    display: block !important;
  }
}

.web-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-clear {
    display: none !important;
  }
}

.web-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .web-hidden {
    visibility: hidden !important;
  }
}

.max-show {
  display: none;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-show {
    display: block !important;
  }
}

.max-clear {
  display: block;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-clear {
    display: none !important;
  }
}

.max-hidden {
  visibility: visible;
}
@media (min-width: 1281px) and (max-width: 1600px) {
  .max-hidden {
    visibility: hidden !important;
  }
}

.mob-pad-show {
  display: none;
}
@media (max-width: 1024px) {
  .mob-pad-show {
    display: block !important;
  }
}

.mob-pad-clear {
  display: block;
}
@media (max-width: 1024px) {
  .mob-pad-clear {
    display: none !important;
  }
}

.mob-pad-hidden {
  visibility: visible;
}
@media (max-width: 1024px) {
  .mob-pad-hidden {
    visibility: hidden !important;
  }
}

.pad-web-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-show {
    display: block !important;
  }
}

.pad-web-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-clear {
    display: none !important;
  }
}

.pad-web-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .pad-web-hidden {
    visibility: hidden !important;
  }
}

.web-max-show {
  display: none;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-show {
    display: block !important;
  }
}

.web-max-clear {
  display: block;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-clear {
    display: none !important;
  }
}

.web-max-hidden {
  visibility: visible;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .web-max-hidden {
    visibility: hidden !important;
  }
}

.mob-web-show {
  display: none;
}
@media (max-width: 1280px) {
  .mob-web-show {
    display: block !important;
  }
}

.mob-web-clear {
  display: block;
}
@media (max-width: 1280px) {
  .mob-web-clear {
    display: none !important;
  }
}

.mob-web-hidden {
  visibility: visible;
}
@media (max-width: 1280px) {
  .mob-web-hidden {
    visibility: hidden !important;
  }
}

.mob-max-show {
  display: none;
}
@media (max-width: 1600px) {
  .mob-max-show {
    display: block !important;
  }
}

.mob-max-clear {
  display: block;
}
@media (max-width: 1600px) {
  .mob-max-clear {
    display: none !important;
  }
}

.mob-max-hidden {
  visibility: visible;
}
@media (max-width: 1600px) {
  .mob-max-hidden {
    visibility: hidden !important;
  }
}

.pad-max-show {
  display: none;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-show {
    display: block !important;
  }
}

.pad-max-clear {
  display: block;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-clear {
    display: none !important;
  }
}

.pad-max-hidden {
  visibility: visible;
}
@media (min-width: 769px) and (max-width: 1600px) {
  .pad-max-hidden {
    visibility: hidden !important;
  }
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 32px;
  right: 32px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #fff;
  box-sizing: content-box;
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  left: 8px;
  height: 3px;
  border-radius: 2px;
  background-color: #0D6296;
  width: 32px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
}
.openbtn:hover span:nth-of-type(1) {
  top: 14px;
}
.openbtn:hover span:nth-of-type(3) {
  top: 34px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 32px;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 32px;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.header_nav_hum {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #F7FCFF;
  background-color: rgba(224, 240, 251, 0.85);
  transition: all 0.6s;
}
.header_nav_hum.panelactive {
  right: 0;
}
.header_nav_hum.panelactive .header_nav_hum_wrapper {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header_nav_hum .header_nav_hum_block {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px);
  text-align: center;
}

.header_nav_hum_block .header_logo_mob {
  margin-bottom: 40px;
  width: 80%;
}
.header_nav_hum_block li:not(:last-of-type) {
  padding-bottom: 20px;
}
.header_nav_hum_block a {
  font-weight: 700;
  font-size: 1rem;
}
.header_nav_hum_block .btn {
  padding: 12px 32px;
  background-color: #F8712D;
  color: #fff;
  border-radius: 20px;
  border: #393939 3px solid;
}

body {
  background: repeat url("../img/body_bg.png");
}/*# sourceMappingURL=style.css.map */