/*------------------------------------------
  Base Setting
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: rgba(255, 235, 39, 0.2);
  color: #000;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: clamp(8.5px, 1.328125vw, 17px);
  letter-spacing: 0.03em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 4vw;
    letter-spacing: 0.12em;
  }
  a:hover {
    opacity: 1;
  }
}
.is--tab {
  display: none;
}

.is--sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .is--tab {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .is--pc {
    display: none;
  }
  .is--sp {
    display: block;
  }
}
/*------------------------------------------
  layout
------------------------------------------*/
.l-wrapper {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .l-wrapper {
    padding-top: 21.3333333333vw;
  }
}
.l-flex {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.l-inner {
  position: relative;
  margin: auto;
  max-width: clamp(520px, 81.25vw, 1040px);
}

@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 0 5.3333333333vw;
  }
}
/*------------------------------------------
  header
------------------------------------------*/
.l-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: clamp(17px, 2.65625vw, 34px);
  padding: 0 clamp(20px, 3.125vw, 40px) 0 clamp(25px, 3.90625vw, 50px);
  z-index: 100;
}
.l-header__inner {
  justify-content: space-between;
}
.l-header__logo .logo-img {
  width: clamp(69.5px, 10.859375vw, 139px);
}
.l-header__logo .logo-txt {
  font-weight: 700;
  font-size: clamp(12px, 1.875vw, 24px);
  letter-spacing: 0.12em;
  color: #00508e;
  margin-top: 0.3em;
}

@media only screen and (max-width: 767px) {
  .l-header {
    top: 0;
    padding: 0 5.3333333333vw;
    background: #0071bc;
  }
  .l-header__inner {
    height: 21.3333333333vw;
    align-items: center;
  }
  .l-header__logo .logo-img {
    width: 25.6vw;
  }
  .l-header__logo .logo-txt {
    color: #fff;
    font-size: 4.5333333333vw;
    margin-top: 0.1em;
  }
  .l-header__trigger {
    cursor: pointer;
    width: 21.3333333333vw;
    height: 21.3333333333vw;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-header__trigger .trigger-icon {
    width: 10.6666666667vw;
    height: 6.9333333333vw;
    position: relative;
  }
  .l-header__trigger .trigger-icon span {
    position: absolute;
    left: 0;
    background: #fff;
    height: 1px;
    width: 100%;
    transition: 0.3s;
  }
  .l-header__trigger .trigger-icon span:nth-child(1) {
    top: 0;
  }
  .l-header__trigger .trigger-icon span:nth-child(2) {
    top: 50%;
    margin-top: -0.5px;
  }
  .l-header__trigger .trigger-icon span:nth-child(3) {
    bottom: 0;
  }
  .l-header__trigger.is--active .trigger-icon span:nth-child(1) {
    top: 50%;
    margin-top: -0.5px;
    transform: rotate(-45deg);
  }
  .l-header__trigger.is--active .trigger-icon span:nth-child(2) {
    opacity: 0;
  }
  .l-header__trigger.is--active .trigger-icon span:nth-child(3) {
    bottom: 50%;
    margin-bottom: -0.5px;
    transform: rotate(45deg);
  }
}
.l-nav__list {
  gap: 0 2em;
}
.l-nav__list a {
  font-weight: 500;
  display: block;
  color: #fff;
  position: relative;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 24px rgba(0, 0, 0, 0.5);
  padding-bottom: 0.5em;
}
.l-nav__list a:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.l-nav__list a:hover {
  opacity: 1;
}
.l-nav__list a:hover:after {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .l-nav {
    display: block !important;
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 767px) {
  .l-nav {
    display: none;
    position: fixed;
    left: 0;
    top: 21.3333333333vw;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 10.6666666667vw;
  }
  .l-nav__list {
    gap: 1.5em 0;
  }
  .l-nav__list li {
    width: 100%;
  }
  .l-nav__list a {
    font-size: 4.8vw;
    color: #0071bc;
    text-shadow: none;
    padding-bottom: 0;
  }
  .l-nav__list a:before {
    content: "-";
    padding-right: 0.5em;
  }
  .l-nav__list a:after {
    content: none;
  }
  .l-nav__btn {
    margin-top: 10.6666666667vw;
  }
  .l-nav__btn a {
    display: block;
    color: #fff;
    background: #0071bc;
    border-radius: 6.6666666667vw;
    font-size: 4.8vw;
    font-weight: 500;
    letter-spacing: 0.09em;
    padding-left: 17.3333333333vw;
    background-image: url(../images/arrow-r01.svg);
    background-repeat: no-repeat;
    background-position: left 1.4em center;
    background-size: 6.4vw;
  }
  .l-nav__btn a span {
    display: flex;
    height: 13.3333333333vw;
    align-items: center;
  }
}
/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
  background: #0071bc;
  color: #fff;
  padding: clamp(22.5px, 3.515625vw, 45px) 0 0;
  overflow: hidden;
}
.l-footer__contents {
  padding: 0 0 clamp(45px, 7.03125vw, 90px);
}
.l-footer__copy {
  background: #fff;
  color: #0071bc;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: 500;
  font-size: clamp(7.5px, 1.171875vw, 15px);
  padding: 1em 0;
}
.l-footer .footer-block {
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: clamp(22.5px, 3.515625vw, 45px);
  margin-bottom: clamp(35px, 5.46875vw, 70px);
}
.l-footer .footer-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.l-footer .footer-block__btn a {
  display: flex;
  align-items: center;
  width: clamp(179px, 27.96875vw, 358px);
  height: clamp(36px, 5.625vw, 72px);
  font-weight: 500;
  border-radius: clamp(50px, 7.8125vw, 100px);
  position: relative;
}
.l-footer .footer-block__btn a span {
  display: inline-block;
  background-repeat: no-repeat;
}
.l-footer .footer-block__btn .recruit-btn {
  border: 1px solid #fff;
  color: #fff;
}
.l-footer .footer-block__btn .recruit-btn span {
  padding-left: clamp(40px, 6.25vw, 80px);
  background-image: url(../images/arrow-r01.svg);
  background-position: left 1.8em center;
  background-size: clamp(15px, 2.34375vw, 30px);
}
.l-footer .footer-block__btn .recruit-btn:before {
  content: "";
  width: clamp(59px, 9.21875vw, 118px);
  height: clamp(44px, 6.875vw, 88px);
  background: url(../images/footer-illust.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  bottom: 0.3em;
  left: clamp(120px, 18.75vw, 240px);
  pointer-events: none;
}
.l-footer .footer-block__btn .company-btn {
  background: #ffeb27;
  color: #004f8d;
  font-size: clamp(11px, 1.71875vw, 22px);
  letter-spacing: 0.13em;
  justify-content: center;
}
.l-footer .footer-block__btn .company-btn span {
  padding-left: clamp(22.5px, 3.515625vw, 45px);
  background-image: url(../images/ico-company.svg);
  background-position: left center;
  background-size: clamp(16px, 2.5vw, 32px);
}
.l-footer .footer-block--recruit.js-scr-active .recruit-btn:before {
  animation: pikopiko 1s steps(2, start) infinite, slideOut 10s linear forwards;
}
.l-footer .footer-block--company .company-name {
  font-weight: 700;
  font-size: clamp(11px, 1.71875vw, 22px);
  margin-bottom: 1em;
}
.l-footer .footer-block--company .company-address {
  line-height: 1.88;
}

@keyframes pikopiko {
  0% {
    transform: rotate(20deg);
  }
  to {
    transform: rotate(-10deg);
  }
}
@keyframes slideOut {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: 30vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 8vw 0 0;
  }
  .l-footer__contents {
    padding: 0 5.3333333333vw 8vw;
  }
  .l-footer__copy {
    font-size: 2.6666666667vw;
    padding: 1.5em 0;
    letter-spacing: 0.03em;
  }
  .l-footer .footer-block {
    padding-bottom: 10.6666666667vw;
    margin-bottom: 10.6666666667vw;
  }
  .l-footer .footer-block__btn {
    width: 100%;
    margin-top: 6.6666666667vw;
  }
  .l-footer .footer-block__btn a {
    width: 100%;
    height: 17.6vw;
    border-radius: 8.8vw;
  }
  .l-footer .footer-block__btn .recruit-btn {
    font-size: 4.2666666667vw;
  }
  .l-footer .footer-block__btn .recruit-btn span {
    padding-left: 21.3333333333vw;
    background-position: left 1.8em center;
    background-size: 8vw;
  }
  .l-footer .footer-block__btn .recruit-btn:before {
    width: 24.5333333333vw;
    height: 18.1333333333vw;
    bottom: 1em;
    left: 60.8vw;
  }
  .l-footer .footer-block__btn .company-btn {
    font-size: 5.6vw;
  }
  .l-footer .footer-block__btn .company-btn span {
    padding-left: 10.6666666667vw;
    background-size: 8vw;
  }
  .l-footer .footer-block--company {
    letter-spacing: 0.03em;
  }
  .l-footer .footer-block--company .company-name {
    font-size: 4.8vw;
    margin-bottom: 0.5em;
  }
  .l-footer .footer-block--company .company-address {
    font-size: 3.7333333333vw;
  }
  @keyframes slideOut {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: 50vw;
    }
  }
}
.fix-btn {
  position: fixed;
  right: 0.8em;
  bottom: 0;
  width: clamp(43px, 6.71875vw, 86px);
  z-index: 99;
}
.fix-btn a {
  display: block;
  padding-bottom: 0.8em;
}
.fix-btn a:hover {
  opacity: 1;
}
.fix-btn a:hover .fix-btn__illust {
  animation: poyon-bounce 2s ease-out infinite;
}
.fix-btn__txt {
  display: block;
  text-align: center;
  margin-bottom: 0.8em;
}
.fix-btn__txt img {
  width: clamp(26px, 4.0625vw, 52px);
}
.fix-btn__illust {
  display: block;
}

@keyframes poyon-bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
  70% {
    transform: translateY(-10px) scale(0.95);
  }
  85% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@media only screen and (max-width: 767px) {
  .fix-btn {
    width: 70.4vw;
  }
  .fix-btn a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .fix-btn a:hover .fix-btn__illust {
    animation: none;
  }
  .fix-btn__txt {
    margin-bottom: 0;
  }
  .fix-btn__txt img {
    width: 47.4666666667vw;
  }
  .fix-btn__illust {
    width: 22.9333333333vw;
  }
}
/*------------------------------------------
  component
------------------------------------------*/
.c-head {
  color: #0071bc;
}
.c-head__ttl .en {
  display: block;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(50px, 7.8125vw, 100px);
  letter-spacing: 0;
}
.c-head__ttl .ja {
  display: block;
  letter-spacing: 0.28em;
  font-size: clamp(13px, 2.03125vw, 26px);
  font-weight: 500;
  margin-top: 0.5em;
}
.c-head__lead {
  letter-spacing: 0.15em;
  margin-top: 1em;
}
.c-head.white {
  color: #fff;
}
.c-head.white .en {
  opacity: 0.4;
}
.c-head.center {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-head__ttl .en {
    font-size: 14.4vw;
  }
  .c-head__ttl .ja {
    font-size: 4.8vw;
  }
  .c-head__lead {
    font-size: 3.7333333333vw;
    letter-spacing: 0.28em;
    font-weight: 500;
  }
}
/*------------------------------------------
  MV
------------------------------------------*/
.p-mv .mv-catch {
  position: absolute;
  left: clamp(60px, 9.375vw, 120px);
  top: 45%;
  z-index: 10;
}
.p-mv .mv-catch__txt {
  margin-top: clamp(7.5px, 1.171875vw, 15px);
}
.p-mv .mv-catch p {
  display: inline-block;
  background: #fff;
  font-weight: 500;
  font-size: clamp(21px, 3.28125vw, 42px);
  letter-spacing: 0.3em;
  padding-left: 0.2em;
}
.p-mv .mv-catch span {
  color: #0071bc;
}
.p-mv .mv-slider {
  width: calc(100% - clamp(127.5px, 19.921875vw, 255px));
  margin-left: auto;
}
.p-mv .mv-slider img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .p-mv .mv-catch {
    display: none;
  }
  .p-mv .mv-slider {
    width: 100%;
  }
}
/*------------------------------------------
  ABOUT US
------------------------------------------*/
.p-aboutus {
  padding: clamp(40px, 6.25vw, 80px) 0 0;
  background: url(../images/about-img.svg) no-repeat left top 3.5em;
  background-size: 44.765625vw;
  min-height: 64.53125vw;
}
.p-aboutus__head {
  width: clamp(260px, 40.625vw, 520px);
  margin-left: auto;
  margin-bottom: clamp(37.5px, 5.859375vw, 75px);
}
.p-aboutus__contents {
  width: clamp(260px, 40.625vw, 520px);
  margin-left: auto;
}
.p-aboutus .about-txt {
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 2.35;
}
.p-aboutus .about-txt .sub {
  font-size: 82%;
  margin-top: 1.5em;
}

@media only screen and (max-width: 767px) {
  .p-aboutus {
    padding: 10.6666666667vw 0 76.8vw;
    background: url(../images/about-img-sp.svg) no-repeat center bottom;
    background-size: 100%;
    min-height: auto;
  }
  .p-aboutus__head {
    width: 100%;
    margin-bottom: 14.6666666667vw;
  }
  .p-aboutus__contents {
    width: 100%;
  }
  .p-aboutus .about-catch {
    margin-bottom: 8vw;
  }
  .p-aboutus .about-catch__txt {
    font-weight: 500;
    font-size: 6.4vw;
    letter-spacing: 0.3em;
    margin-bottom: 0.5em;
  }
  .p-aboutus .about-catch__txt:last-child {
    margin-bottom: 0;
  }
  .p-aboutus .about-catch__txt span {
    color: #0071bc;
  }
  .p-aboutus .about-txt {
    letter-spacing: 0.12em;
    line-height: 1.866;
  }
  .p-aboutus .about-txt .sub {
    font-size: 80%;
  }
}
/*------------------------------------------
  FOR SAFETY
------------------------------------------*/
.p-forsafety {
  padding: clamp(40px, 6.25vw, 80px) 0 0;
  overflow: hidden;
}
.p-forsafety__head {
  margin-bottom: clamp(25px, 3.90625vw, 50px);
  position: relative;
}
.p-forsafety__head:before {
  content: "";
  width: clamp(86px, 13.4375vw, 172px);
  height: clamp(101px, 15.78125vw, 202px);
  position: absolute;
  right: clamp(52px, 8.125vw, 104px);
  bottom: clamp(-30px, -2.34375vw, -15px);
  background: url(../images/forsafety-illust.svg) no-repeat center;
  background-size: 100%;
}
.p-forsafety__contents {
  background: #fff;
  position: relative;
  width: clamp(450px, 70.3125vw, 900px);
  border-radius: clamp(40px, 6.25vw, 80px) 0 0 clamp(40px, 6.25vw, 80px)/clamp(40px, 6.25vw, 80px) 0 0 clamp(40px, 6.25vw, 80px);
  padding: clamp(45px, 7.03125vw, 90px) 0 clamp(45px, 7.03125vw, 90px) clamp(50px, 7.8125vw, 100px);
  margin-left: auto;
}
.p-forsafety__contents:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 100%;
}
.p-forsafety .forsafety-block {
  position: relative;
  padding: clamp(15px, 2.34375vw, 30px) 0 0;
  margin-bottom: clamp(30px, 4.6875vw, 60px);
}
.p-forsafety .forsafety-block:before {
  content: "";
  width: clamp(11px, 1.71875vw, 22px);
  height: clamp(2px, 0.3125vw, 4px);
  background: #0071bc;
  position: absolute;
  top: 0;
  left: 0;
}
.p-forsafety .forsafety-block:last-child {
  margin-bottom: 0;
}
.p-forsafety .forsafety-block__ttl {
  font-weight: 500;
  font-size: clamp(11px, 1.71875vw, 22px);
  margin-bottom: 1.5em;
}
.p-forsafety .forsafety-block__txt {
  line-height: 2.1;
}
.p-forsafety .forsafety-block__txt p {
  margin-bottom: 1em;
}
.p-forsafety .forsafety-block__txt p:last-child {
  margin-bottom: 0;
}
.p-forsafety .forsafety-block__txt p span {
  background: #ffeb27;
}

@media only screen and (max-width: 767px) {
  .p-forsafety {
    padding: 16vw 0 0;
  }
  .p-forsafety__head {
    margin-bottom: 10.6666666667vw;
  }
  .p-forsafety__head:before {
    content: none;
  }
  .p-forsafety__contents {
    width: 100%;
    border-radius: 0;
    padding: 8vw 0;
  }
  .p-forsafety__contents:before {
    width: 100vw;
    left: -5.3333333333vw;
  }
  .p-forsafety .forsafety-block {
    padding: 6.6666666667vw 0 0;
    margin-bottom: 8vw;
  }
  .p-forsafety .forsafety-block:before {
    width: 5.8666666667vw;
    height: 1.0666666667vw;
  }
  .p-forsafety .forsafety-block__ttl {
    font-size: 4.8vw;
    margin-bottom: 1em;
  }
  .p-forsafety .forsafety-block__txt {
    line-height: 1.866;
  }
}
/*------------------------------------------
  COMPANY
------------------------------------------*/
.p-company {
  padding: clamp(45px, 7.03125vw, 90px) 0 0;
}
.p-company__head {
  position: relative;
  z-index: 1;
}
.p-company__contents {
  margin-top: -1em;
  background: #fff;
  border-radius: clamp(40px, 6.25vw, 80px) clamp(40px, 6.25vw, 80px) 0 0/clamp(40px, 6.25vw, 80px) clamp(40px, 6.25vw, 80px) 0 0;
  padding: clamp(40px, 6.25vw, 80px);
}
.p-company .company-block {
  position: relative;
  margin-bottom: clamp(30px, 4.6875vw, 60px);
}
.p-company .company-block:last-child {
  margin-bottom: 0;
}
.p-company .company-block__ttl {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: clamp(11px, 1.71875vw, 22px);
  font-weight: 500;
  color: #0071bc;
  text-align: center;
}
.p-company .company-block__ttl:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #0071bc;
  position: absolute;
  left: 0;
  top: 50%;
}
.p-company .company-block__ttl span {
  display: inline-block;
  background: #fff;
  padding: 0 1em;
  position: relative;
}
.p-company .overview {
  margin-top: clamp(25px, 3.90625vw, 50px);
}
.p-company .overview__txt {
  width: 45%;
}
.p-company .overview__txt table {
  width: 100%;
}
.p-company .overview__txt th, .p-company .overview__txt td {
  vertical-align: top;
}
.p-company .overview__txt th {
  font-weight: 500;
  width: 5.5em;
  line-height: 2.4;
}
.p-company .overview__txt th span {
  display: block;
  position: relative;
}
.p-company .overview__txt th span:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #0071bc;
  position: absolute;
  left: 0;
  bottom: 0.3em;
}
.p-company .overview__txt td {
  padding-left: 4em;
  font-size: clamp(7.5px, 1.171875vw, 15px);
  line-height: 2.8;
}
.p-company .overview__map {
  width: 49%;
  margin-left: auto;
}
.p-company .overview__map iframe {
  width: 100%;
  height: 100%;
}
.p-company .philosophy {
  text-align: center;
  margin-top: clamp(15px, 2.34375vw, 30px);
}
.p-company .philosophy__label {
  font-weight: 500;
  font-size: clamp(7.5px, 1.171875vw, 15px);
  margin-bottom: 1em;
}
.p-company .philosophy__label span {
  display: inline-block;
  background: #ffeb27;
  padding: 0 0.3em;
}
.p-company .philosophy__txt {
  font-size: clamp(10px, 1.5625vw, 20px);
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .p-company {
    padding: 16vw 0 21.3333333333vw;
  }
  .p-company__inner {
    padding: 0;
  }
  .p-company__head {
    text-align: left !important;
    padding-left: 5.3333333333vw;
    margin-bottom: 9.3333333333vw;
  }
  .p-company__contents {
    margin-top: 0;
    background: none;
    border-radius: 0;
    padding: 0;
  }
  .p-company .company-block {
    margin-bottom: 10.6666666667vw;
  }
  .p-company .company-block__ttl {
    margin-left: 5.3333333333vw;
    font-size: 5.0666666667vw;
    text-align: left;
  }
  .p-company .company-block__ttl span {
    padding: 0 1em 0 0;
    background: #FFFBD4;
  }
  .p-company .overview {
    margin-top: 5.3333333333vw;
  }
  .p-company .overview__txt {
    width: 100%;
    padding-left: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
  .p-company .overview__txt th, .p-company .overview__txt td {
    letter-spacing: 0.03em;
  }
  .p-company .overview__txt th {
    font-size: 4.2666666667vw;
  }
  .p-company .overview__txt td {
    font-size: 4vw;
    padding-left: 1em;
    line-height: 2.533;
  }
  .p-company .overview__map {
    width: 100%;
  }
  .p-company .overview__map iframe {
    height: 58.6666666667vw;
  }
  .p-company .philosophy {
    margin-top: 6.6666666667vw;
    text-align: left;
    padding: 0 5.3333333333vw;
  }
  .p-company .philosophy__label {
    font-size: 3.7333333333vw;
    letter-spacing: 0.03em;
  }
  .p-company .philosophy__txt {
    font-size: 4.8vw;
  }
}