@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 {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

.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;
  border-radius: 60px;
  position: relative;
}
.hero .marquee {
  white-space: nowrap; /* インラインブロック要素間の余白をなくす */
  font-size: 0;
}
.hero .marquee .marquee_inner {
  display: flex;
  width: 6000px;
  animation: marquee 60s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 2セット並べているので、50%分（1セット分）を左へ動かす */
    transform: translateX(-50%);
  }
}
.hero .img_outer {
  position: relative;
  flex: 0 0 auto; /* 要素が縮まないように固定 */
  width: 540px; /* 画像の実サイズや比率に応じて調整 */
  margin: 16px 30px;
}
.hero .img_outer:before {
  background-color: #0D6296;
  border-radius: 20px;
  margin: 2px 0 0 8px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .img_outer img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hero .img_outer {
    width: 360px;
    margin: 12px 24px;
  }
}

.herotxt_outer {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 600px;
  height: -moz-fit-content;
  height: fit-content;
  top: 600px;
  left: 20%;
  z-index: 5;
}
.herotxt_outer .herotxt {
  position: relative;
}
.herotxt_outer .herotxt: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) {
  .herotxt_outer .herotxt:before {
    margin: 0.2px 0 0 6px;
  }
}
.herotxt_outer .herotxt img {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .herotxt_outer {
    width: 80vw;
    top: 440px;
    left: 50%;
    transform: translateX(-50%);
  }
}

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: 270px;
  }
}

.btn_outer {
  position: relative;
  margin: 60px auto 0;
}
.btn_outer .btn.box {
  flex-direction: column;
}
.btn_outer .btn {
  justify-content: center;
  padding: 24px 40px 18px;
  background-color: #F8712D;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 24px;
  max-width: 400px;
  width: 90%;
  margin: 120px auto 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.btn_outer .btn .box {
  max-width: 260px;
  width: 100%;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}
.btn_outer .btn .box.txt img {
  width: 28px;
  margin-right: 8px;
}
.btn_outer .btn .btn_linetr {
  max-width: 100px;
}
@media (max-width: 768px) {
  .btn_outer .btn {
    padding: 24px 40px 18px;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .btn_outer .btn .btn_tr img {
    max-width: 100%;
    margin-right: 12px;
  }
}
.btn_outer .btn_tr {
  position: absolute;
  z-index: -1;
  width: 160px;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .btn_outer .btn_tr {
    width: 140px;
  }
}

.ttl {
  flex-direction: column;
  justify-content: center;
  min-width: 360px;
  height: 210px;
  text-align: center;
  border-radius: 20px;
  background-color: #1E9EEB;
  position: relative;
}
.ttl .ttltr {
  max-width: 180px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin: 4px auto 0;
}
@media (max-width: 768px) {
  .ttl {
    min-width: 340px;
    height: auto;
    padding: 16px 0;
    max-height: 210px;
  }
  .ttl .ttltr {
    max-width: 130px;
    margin: 0px auto 0;
  }
}
.ttl:before {
  background-color: #0D6296;
  border-radius: 20px;
  margin: 2px 0 0 8px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  margin: 16px 0 0 16px;
}
.ttl h2 {
  margin-top: 16px;
  font-family: "jost";
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 1.6px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .ttl h2 {
    font-size: 2rem;
    line-height: 1;
  }
}
.ttl p {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .ttl p {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.message {
  position: relative;
}
.message .ttl {
  width: auto;
  max-width: 840px;
  height: auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .message .ttl {
    max-height: unset;
  }
}
.message .ttl h2 {
  margin-top: 40px;
  font-family: "jost";
  color: #1E9EEB;
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 1.6px;
  line-height: 1;
  width: auto;
}
.message .ttl p {
  color: #0D6296;
  font-weight: 800;
  font-size: 1.2rem;
}
.message .ttl .txt {
  color: #393939;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: left;
  max-width: 700px;
  line-height: 2;
  padding: 0px 20px 40px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .message .ttl .txt {
    font-size: 1.1rem;
    font-size: 0.9rem;
    line-height: 1.8;
    padding: 0px 20px 20px;
  }
}
.message .tr {
  position: absolute;
  max-width: 350px;
  bottom: -46%;
  right: 0%;
}
@media (max-width: 768px) {
  .message .tr {
    max-width: 280px;
    bottom: -57%;
    right: 13%;
  }
}

.workplace {
  position: relative;
}
.workplace .ttlouter {
  display: flex;
  justify-content: flex-start;
}
.workplace .ttl {
  min-width: 340px;
  max-width: 360px;
}
.workplace .tr {
  position: absolute;
  max-width: 450px;
  top: 5%;
  right: 0%;
}
@media (max-width: 768px) {
  .workplace .tr {
    max-width: 250px;
    top: 7%;
    right: 0%;
  }
}
.workplace .box01 {
  margin-top: 160px;
}
.workplace .box01 .cts {
  margin: 0 20px;
  max-width: 300px;
}
@media (max-width: 768px) {
  .workplace .box01 {
    flex-direction: column;
    margin-left: 16px;
  }
  .workplace .box01 .cts:not(:first-child) {
    margin-top: 40px;
  }
}
.workplace .box02 {
  max-width: 600px;
  margin: 60px auto 0;
  width: 92%;
}
@media (max-width: 768px) {
  .workplace .box02 {
    max-width: 400px;
  }
}

.work {
  position: relative;
}
.work .ttlouter {
  display: flex;
  justify-content: space-between;
}
.work .ttlouter .tr {
  max-width: 450px;
}
.work .tr {
  position: absolute;
  max-width: 350px;
  top: -3%;
  right: 5%;
}
@media (max-width: 768px) {
  .work .tr {
    max-width: 250px;
    top: -10%;
    right: 0;
    z-index: -3;
  }
}
.work .box01 {
  margin: 40px 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;
}
.work .box01 .cts img {
  border-radius: 20px;
}
.work .box02 {
  margin: 60px auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.work .box02 .cts {
  max-width: 480px;
}

.company {
  position: relative;
}
@media (max-width: 768px) {
  .company {
    margin-top: 220px !important;
  }
}
.company .ttlouter {
  display: flex;
  justify-content: center;
}
.company .tr {
  position: absolute;
  width: 150px;
  top: 0;
  left: 5%;
}
@media (max-width: 768px) {
  .company .tr {
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
  }
}
.company .box01 {
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .company .box01 {
    gap: 32px;
  }
}
.company .box01 .cts {
  width: 380px;
}
.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;
}
@media (max-width: 768px) {
  .company .box01 .cts {
    width: 300px;
  }
  .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: 300px;
    height: 322px;
  }
}

.survey {
  position: relative;
}
.survey .ttlouter {
  display: flex;
  justify-content: center;
}
.survey .tr {
  position: absolute;
  width: 150px;
  top: 0;
  right: 8%;
}
@media (max-width: 768px) {
  .survey .tr {
    top: -150px;
    right: 50%;
    transform: translateX(50%);
    z-index: -2;
  }
}
.survey .box01 {
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.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;
}
.survey .box01 .cts img {
  border-radius: 20px;
}
.survey .box02 {
  margin: 60px auto 0;
  max-width: 800px;
}
@media (max-width: 768px) {
  .survey .box02 {
    max-width: 400px;
  }
}

.swiper_outer {
  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;
}
.swiper_outer .swiper01 .swiper-button-prev, .swiper_outer .swiper01 .swiper-button-next, .swiper_outer .swiper02 .swiper-button-prev, .swiper_outer .swiper02 .swiper-button-next, .swiper_outer .swiper03 .swiper-button-prev, .swiper_outer .swiper03 .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@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 {
  position: relative;
}
.interview .ttlouter {
  display: flex;
  justify-content: center;
}
.interview .tr {
  position: absolute;
  width: 200px;
  top: 0;
  left: 8%;
}
@media (max-width: 768px) {
  .interview .tr {
    top: -150px;
    left: 55%;
    transform: translateX(-50%);
    z-index: -2;
  }
}
.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;
}
.interview .box01 .cts img {
  border-radius: 20px;
}
.interview .swiper02 {
  max-width: 800px;
  padding-bottom: 10px;
  margin: 60px auto 0;
  overflow: hidden;
  position: relative;
}
.interview .swiper02 .swiper-wrapper {
  width: 100%;
}
.interview .swiper02 .swiper-slide {
  width: 450px;
}
.interview .swiper02 .swiper-pagination {
  position: absolute;
  bottom: -6px;
}

.schedule {
  position: relative;
  margin-top: 170px !important;
}
.schedule .ttlouter {
  display: flex;
  justify-content: center;
}
.schedule .tr {
  position: absolute;
  width: 150px;
  top: 0;
  right: 8%;
}
@media (max-width: 768px) {
  .schedule .tr {
    top: -150px;
    right: 48%;
    transform: translateX(50%);
    z-index: -2;
  }
}
.schedule .box01 {
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.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;
}
.schedule .box01 .cts img {
  border-radius: 20px;
}

.swiper03 {
  max-width: 800px;
  margin: 60px auto 0;
  overflow: hidden;
  position: relative;
}
.swiper03 .swiper-wrapper {
  width: 100%;
  padding-bottom: 4px;
}
.swiper03 .swiper-slide {
  width: 450px;
}
@media (max-width: 768px) {
  .swiper03 {
    width: 90%;
  }
  .swiper03 .cts {
    width: 90%;
  }
}

.recruit {
  position: relative;
}
.recruit .ttlouter {
  display: flex;
  justify-content: center;
}
.recruit .tr {
  position: absolute;
  width: 170px;
  top: 0;
  left: 8%;
}
@media (max-width: 768px) {
  .recruit .tr {
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
  }
}
.recruit .cts_outer {
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: unset;
}
.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;
  }
}

.flow .box01outer {
  margin: 60px auto 0;
  max-width: 800px;
  padding-right: 4px;
}
@media (max-width: 768px) {
  .flow .box01outer {
    width: 350px;
  }
}

.accordion {
  max-width: 900px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 60px auto 0;
}
.accordion .accordion-item {
  border-radius: 20px;
  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;
  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 {
  justify-content: center;
  padding: 24px 60px;
  border: 1px solid #F8712D;
  background-color: #fff;
  color: #F8712D;
  border-radius: 24px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  width: 100%;
  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;
}

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