@charset "UTF-8";
/*
Theme Name:KabuK Style
Theme URI:
Description:WordPress Original Theme for KabuK Style
Text Domain: kabukstyle_theme
Version:1.0.0
*/
/* -----------------------------------------------------------------
 base
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure, blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInUp.is-scrolled {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInLeft.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInRight.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInZoomOut {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomOut.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fadeInZoomIn {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomIn.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-webkit-keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@-webkit-keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/*======================
  base
======================*/
body {
  color: #3B3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.11em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.11em;
  }
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/*=======================
  footer
=======================*/
.l-footer {
  z-index: 10;
  position: relative;
  background-color: #F3F3F4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #141617;
}

.l-footer__inner {
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: calc(120vw / 14.4) calc(150vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.l-footer__logo {
  display: block;
  width: 210px;
  margin: 0 auto;
}

.l-footer__title {
  font-size: calc(24vw / 14.4);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 2.3px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .l-footer__title {
    font-size: calc(13vw / 3.75);
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(1121vw / 14.4);
  margin: 56px auto 0;
  padding: 16px 0;
  border-top: 1px solid #9FA0A0;
  border-bottom: 1px solid #9FA0A0;
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 16px calc(30vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav > li:not(:first-child) {
    margin-top: 16px;
  }
}

.l-footer__nav > li > a {
  display: inline-block;
  font-weight: bold;
  font-size: clamp(9px, calc(14vw / 14.4), 24px);
  letter-spacing: 0;
  line-height: 2.5;
  margin-right: calc(32vw / 14.4);
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__nav > li > a:hover {
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .l-footer__nav > li > a {
    font-size: calc(14vw / 3.75);
    margin-right: 0;
  }
}

.l-footer__entry-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .l-footer__entry-list {
    margin-top: 16px;
  }
}

.l-footer__entry-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(10px, calc(15vw / 14.4), 24px);
  color: #fff;
  height: 55px;
  min-width: 110px;
  font-weight: bold;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .l-footer__entry-item > a {
    font-size: 15px;
  }
}

.l-footer__entry-item > a:hover {
  opacity: .6;
}

.l-footer__entry-item:first-child > a {
  background-color: #014099;
  width: calc(113vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__entry-item:first-child > a {
    width: 113px;
  }
}

.l-footer__entry-item:last-child > a {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFA145), to(#FF7700));
  background-image: linear-gradient(180deg, #FFA145, #FF7700);
  width: calc(162vw / 14.4);
  gap: 8px;
}

@media screen and (max-width: 767px) {
  .l-footer__entry-item:last-child > a {
    width: 162px;
  }
}

.l-footer__entry-item:last-child > a > img {
  width: 24px;
}

.l-footer__cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 80px auto 0;
  width: calc(1121vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-footer__cv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
    margin-top: 32px;
    width: 100%;
  }
}

.l-footer__cv-item {
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: clamp(10px, calc(13vw / 14.4), 23px);
}

@media screen and (max-width: 767px) {
  .l-footer__cv-item {
    font-size: calc(13vw / 3.75);
  }
}

.l-footer__cv-item > a {
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__cv-item > a:hover {
  opacity: .6;
}

.l-footer__cv-item:last-child > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__cv-item:last-child > a > img {
  margin-left: 8px;
  width: 16px;
}

.l-footer__cv-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(32vw / 14.4);
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, calc(11vw / 14.4), 21px);
  letter-spacing: 1.5px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: calc(11vw / 3.75);
  }
}

.l-footer .c-language-swich {
  margin: 38px 0 38px;
}

@media screen and (max-width: 767px) {
  .l-footer .c-language-swich {
    margin: 0;
    font-weight: normal;
  }
}

/*=======================
  header
=======================*/
.l-header {
  width: 100%;
  height: 98px;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  padding: 0 calc(20vw / 14.4);
  top: 15px;
  left: 0;
  z-index: 994;
}

@media screen and (max-width: 767px) {
  .l-header {
    height: 80px;
    padding: 0 calc(10vw / 3.75);
    top: 10px;
  }
}

.l-header.is-hidden {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.l-header__inner {
  position: relative;
  border-radius: 31px;
  height: 100%;
  background-color: #fff;
  padding: 0 calc(80vw / 14.4);
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  width: calc(133vw / 14.4);
}

@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 133px;
  }
}

.l-header__logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.l-header__logo a:hover > img {
  opacity: .6;
}

.l-header__logo a img {
  width: 100%;
  display: block;
  height: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-header__logo a.m-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 56px;
}

@media screen and (min-width: 768px) {
  .l-header__logo a.m-logo {
    width: 80px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-logo {
    width: 91px;
  }
}

.l-header__logo a.m-text {
  display: block;
  width: 120px;
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  .l-header__logo a.m-text {
    width: 160px;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-text {
    width: 171px;
    margin-left: 72px;
  }
}

.l-navbtn {
  display: inline-block;
  width: 60px;
  height: 64px;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 18px;
  right: 25px;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .l-navbtn {
    display: none;
  }
}

.l-navbtn__menu {
  position: absolute;
  z-index: 999;
  right: 0;
  left: 4px;
  bottom: 10px;
  margin: auto;
  color: #014099;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.8px;
}

.l-navbtn__close {
  display: none;
  position: absolute;
  z-index: 999;
  right: 0;
  left: 4px;
  bottom: 10px;
  margin: auto;
  color: #014099;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.8px;
}

.l-navbtn__bar {
  display: block;
  width: 21px;
  height: 1px;
  background-color: #014099;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 25px;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 2px;
}

.l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.l-gnav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .l-gnav {
    width: calc(355vw / 3.75);
    height: calc(100vh - 30px);
    padding: 90px 20px 20px;
    border-radius: 20px;
    background-color: #FCFCFA9f;
    position: fixed;
    top: 10px;
    right: calc(10vw / 3.75);
    bottom: 20px;
    z-index: 998;
    overflow-y: scroll;
    opacity: 0;
    -webkit-transition: 1s;
    transition: 1s;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: opacity 1s ease, -webkit-transform .3s ease;
    transition: opacity 1s ease, -webkit-transform .3s ease;
    transition: opacity 1s ease, transform .3s ease;
    transition: opacity 1s ease, transform .3s ease, -webkit-transform .3s ease;
  }
  .l-gnav.is-open {
    visibility: unset;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .l-gnav {
    display: block !important;
  }
}

.l-gnav__list {
  color: #141617;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .l-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.l-gnav__item {
  margin-right: calc(24vw / 14.4);
  height: 27px;
  position: relative;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .l-gnav__item {
    text-align: center;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    margin: 0;
    padding: calc(20vw / 3.75);
    background-color: #E6EEFF;
    color: #014099;
  }
}

.l-gnav__item > a {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-weight: 500;
  padding-right: calc(16vw / 14.4);
  font-size: clamp(8px, calc(14vw / 14.4), 24px);
  letter-spacing: 0.05rem;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .l-gnav__item > a {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: calc(15vw / 3.75);
    text-align: left;
  }
}

.l-gnav__item > a svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .l-gnav__item > a svg {
    display: none;
  }
}

.l-gnav__item > a:hover {
  color: #014099;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item > a:hover > svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #014099;
}

.l-gnav__item:nth-last-child(2) {
  background-color: #014099;
  color: #fff;
  border-radius: 10px 0 0 10px;
  height: 64px;
  width: calc(154vw / 14.4);
  margin-right: 0;
  min-width: 100px;
}

@media screen and (max-width: 767px) {
  .l-gnav__item:nth-last-child(2) {
    width: 50%;
    min-width: unset;
  }
}

.l-gnav__item:nth-last-child(2) > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item:nth-last-child(2) > a:hover {
  opacity: .6;
  color: #fff;
}

.l-gnav__item:last-child {
  background-image: -webkit-gradient(linear, left top, right top, from(#FFA145), to(#FF7700));
  background-image: linear-gradient(90deg, #FFA145, #FF7700);
  color: #fff;
  border-radius: 0 10px 10px 0;
  height: 64px;
  width: calc(162vw / 14.4);
  margin-right: 0;
  min-width: 100px;
}

@media screen and (max-width: 767px) {
  .l-gnav__item:last-child {
    width: 50%;
    min-width: unset;
  }
}

.l-gnav__item:last-child > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 5px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item:last-child > a:hover {
  opacity: .6;
  color: #fff;
}

.l-gnav__item:last-child > a:hover > img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.l-gnav__item:last-child > a img {
  position: relative;
  margin: unset;
  width: calc(24vw / 14.4);
  min-width: 20px;
}

.l-gnav__item:hover .l-gnav__submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.l-gnav__submenu {
  position: absolute;
  top: 62px;
  left: -100%;
  background-color: #014099;
  border-radius: 10px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  color: #fff;
  width: calc(320vw / 14.4);
  font-size: clamp(10px, calc(14vw / 14.4), 24px);
}

@media screen and (max-width: 767px) {
  .l-gnav__submenu {
    position: initial;
    display: block;
    visibility: unset;
    pointer-events: auto;
    opacity: 1;
    width: 100%;
    background-color: unset;
    padding: 0;
    color: #4D525E;
    font-size: calc(13vw / 3.75);
  }
}

.l-gnav__submenu::after {
  content: '';
  position: absolute;
  top: -32px;
  left: 0;
  height: 32px;
  /* hoverが切れないように橋をかける */
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-gnav__submenu::after {
    display: none;
  }
}

.l-gnav__submenu > li {
  -webkit-transition: .3s;
  transition: .3s;
  padding-left: 14px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: clamp(10px, calc(14vw / 14.4), 24px);
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .l-gnav__submenu > li {
    padding-left: 22px;
    margin-top: 12px;
    font-size: calc(13vw / 3.75);
    line-height: 1.3;
  }
}

.l-gnav__submenu > li::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background-color: #79A7D9;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-gnav__submenu > li::after {
    left: 10px;
  }
}

.l-gnav__submenu > li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.l-gnav__submenu > li:hover::before {
  width: 100%;
}

.l-gnav__item-hover > a::before {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item-hover > a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-gnav__link-contact {
  line-height: 80px;
  width: 150px;
  text-align: center;
  background-color: blue;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__link-contact:hover {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .7;
}

.l-gnav__box-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .l-gnav__box-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(2) {
  display: none;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.l-navbtn.is-open .l-navbtn__menu {
  display: none;
}

.l-navbtn.is-open .l-navbtn__close {
  display: block;
}

body.backlayer .l-header__inner {
  background-color: transparent;
}

/*=======================
  main
=======================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }
}

.l-main {
  display: block;
  padding-top: 0;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05rem;
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 100px 0;
}

.c-404__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}

.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}

.c-404__link {
  display: block;
  margin-top: 1em;
  color: #004EA2;
  text-align: center;
  text-decoration: underline;
}

.c-btn > a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  width: 320px;
  height: 70px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-btn > a {
    font-size: 16px;
    width: 240px;
    height: 56px;
  }
}

.c-btn > a::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: -1;
}

.c-btn > a > .arrow::before, .c-btn > a > .arrow::after {
  display: block;
  content: '';
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn > a > .arrow::before {
  width: 60px;
  background-color: #3B3C3E;
  right: -22px;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::before {
    width: 40px;
    right: -15px;
  }
}

.c-btn > a > .arrow::after {
  width: 30px;
  background-color: #fff;
  right: 8px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::after {
    width: 20px;
    right: 4px;
  }
}

.c-btn > a:hover {
  color: #3B3C3E;
}

.c-btn > a:hover::before {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.c-btn > a:hover > .arrow::before {
  background-color: transparent;
}

.c-btn > a:hover > .arrow::after {
  background-color: #3B3C3E;
  -webkit-animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-small > a {
  width: 225px;
  height: 55px;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a {
    width: 190px;
    height: 50px;
  }
}

.c-btn.m-small > a > .arrow::before {
  width: 40px;
  right: -20px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a > .arrow::before {
    width: 30px;
    right: -15px;
  }
}

.c-btn.m-white > a {
  color: #3B3C3E;
  font-weight: 300;
  background-color: #fff;
}

.c-btn.m-white > a::before {
  background-color: #F0F0F0;
}

.c-btn.m-white > a > .arrow::before {
  background-color: #3B3C3E;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn.m-white > a > .arrow::after {
  content: none;
}

.c-btn.m-white > a:hover > .arrow::before {
  background-color: #3B3C3E;
  -webkit-animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-align-center {
  text-align: center;
}

.c-btn.m-align-right {
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-align-right {
    margin-right: 20px;
  }
}

.c-btn.m-fw-normal > a {
  font-weight: 400;
}

.c-fv__container {
  position: relative;
}

.c-fv__img {
  width: 100%;
}

.c-fv__title {
  position: absolute;
  bottom: calc(80vw / 14.4);
  left: calc(160vw / 14.4);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 3px;
  color: #1260A1;
  font-size: calc(48vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-fv__title {
    font-size: calc(32vw / 3.75);
    bottom: calc(56vw / 3.75);
    left: calc(20vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.c-title__jp {
  font-size: calc(41vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.7;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffa145), to(#ff7700));
  background: linear-gradient(to bottom, #ffa145 0%, #ff7700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .c-title__jp {
    font-size: calc(24vw / 3.75);
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.c-title__en {
  color: #ffb22d1f;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-link__box > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(242vw / 14.4);
  min-width: 180px;
  height: 55px;
  font-weight: bold;
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  color: #fff;
  text-align: center;
  background-color: #014099;
  border-radius: 20px;
  letter-spacing: 1.6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .c-link__box > a {
    width: 242px;
    font-size: 15px;
  }
}

.c-link__box > a:hover {
  opacity: 0.6;
}

.c-link__box > a > img {
  position: absolute;
  width: 27px;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-position {
  background-image: url(../img/component/position-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-position__container {
  padding: calc(160vw / 14.4) calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-position__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.c-position__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-position__title-jp {
    text-align: center;
    display: block;
  }
}

.c-position__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .c-position__title-en {
    text-align: center;
    font-size: calc(54vw / 3.75);
  }
}

.c-position__boxes {
  width: calc(840vw / 14.4);
  margin: 56px auto 0;
}

@media screen and (max-width: 767px) {
  .c-position__boxes {
    width: 100%;
  }
}

.c-position__box {
  position: relative;
  height: 113px;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  -webkit-box-shadow: 6px 6px 20px 0px #e7d0bd;
          box-shadow: 6px 6px 20px 0px #e7d0bd;
}

@media screen and (max-width: 767px) {
  .c-position__box {
    height: 93px;
  }
}

.c-position__box > a {
  display: block;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-left: 11px solid #f5600b;
  color: #F15400;
  border-radius: 0 20px 20px 0;
}

.c-position__box > a:hover {
  -webkit-box-shadow: 6px 6px 20px 10px #e7d0bd;
          box-shadow: 6px 6px 20px 10px #e7d0bd;
}

.c-position__box:nth-child(2) {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .c-position__box:nth-child(2) {
    margin-top: 32px;
  }
}

.c-position__box:nth-child(2) > a {
  border-left: 11px solid #3681EA;
  color: #014099;
}

.c-position__box-title {
  font-size: calc(24vw / 14.4);
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: bold;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 79px;
}

@media screen and (max-width: 767px) {
  .c-position__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.c-position__img {
  position: absolute;
  width: 16px;
  top: 0;
  bottom: 0;
  right: calc(56vw / 14.4);
  margin: auto;
}

@media screen and (max-width: 767px) {
  .c-position__img {
    right: calc(56vw / 3.75);
  }
}

.c-entry {
  background-image: url(../img/component/entry-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .c-entry {
    background-image: url(../img/component/entry-bg-sp.png);
  }
}

.c-entry__container {
  padding: calc(125vw / 14.4) calc(150vw / 14.4);
}

@media screen and (max-width: 767px) {
  .c-entry__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.c-entry__title-box {
  position: relative;
  text-align: center;
}

.c-entry__title-jp {
  color: #fff;
  -webkit-text-fill-color: unset;
}

@media screen and (max-width: 767px) {
  .c-entry__title-jp {
    text-align: center;
    display: block;
    font-size: calc(28vw / 3.75);
  }
}

.c-entry__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  color: rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 767px) {
  .c-entry__title-en {
    text-align: center;
    font-size: calc(39vw / 3.75);
  }
}

.c-entry__boxes {
  width: calc(767vw / 14.4);
  padding: calc(60vw / 14.4) calc(170vw / 14.4);
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 161, 69, 0.92)), to(rgba(255, 119, 0, 0.92)));
  background: linear-gradient(to right, rgba(255, 161, 69, 0.92), rgba(255, 119, 0, 0.92));
  margin: 0 auto;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .c-entry__boxes {
    width: 100%;
    padding: calc(32vw / 3.75) calc(20vw / 3.75);
  }
}

.c-entry__contact {
  margin-top: 56px;
}

@media screen and (max-width: 767px) {
  .c-entry__contact {
    margin-top: 32px;
  }
}

.c-entry__contact > a {
  background-color: #fff;
  border: 1px solid #f15400;
  color: #f15400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 64px;
  gap: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: calc(15vw / 14.4);
  font-weight: bold;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 767px) {
  .c-entry__contact > a {
    font-size: calc(15vw / 3.75);
  }
}

.c-entry__contact > a:hover {
  opacity: 0.6;
}

.c-entry__contact > a > img:first-child {
  width: 24px;
}

.c-entry__contact > a > img:last-child {
  width: 27px;
}

.c-entry__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}

.c-entry__mynavi > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: calc(205vw / 14.4);
  height: 64px;
  border: 1px solid #fff;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: calc(15vw / 14.4);
  font-weight: bold;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 767px) {
  .c-entry__mynavi > a {
    width: calc(140vw / 3.75);
    font-size: calc(15vw / 3.75);
  }
}

.c-entry__mynavi > a:hover {
  opacity: 0.6;
}

.c-entry__mynavi > a > img {
  width: 27px;
}

.c-entry__rikunavi > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: calc(205vw / 14.4);
  height: 64px;
  border: 1px solid #fff;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: calc(15vw / 14.4);
  font-weight: bold;
  letter-spacing: 1.6px;
}

@media screen and (max-width: 767px) {
  .c-entry__rikunavi > a {
    width: calc(140vw / 3.75);
    font-size: calc(15vw / 3.75);
  }
}

.c-entry__rikunavi > a:hover {
  opacity: 0.6;
}

.c-entry__rikunavi > a > img {
  width: 27px;
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-only-tl {
    display: none !important;
  }
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
/*=======================
  contact
=======================*/
.ctt-main {
  background-image: url(../img/component/component-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.ctt-main__container {
  padding: calc(80vw / 14.4) calc(231vw / 14.4);
}

@media screen and (max-width: 767px) {
  .ctt-main__container {
    padding: calc(80vw / 3.75) calc(15vw / 3.75);
  }
}

.ctt-main__text {
  text-align: center;
  font-weight: bold;
  font-size: calc(20vw / 14.4);
  line-height: 1.4;
  letter-spacing: 1.8px;
}

@media screen and (max-width: 767px) {
  .ctt-main__text {
    font-size: calc(14vw / 3.75);
  }
}

.ctt-main__boxes {
  margin-top: 56px;
  padding: calc(40vw / 14.4);
  background-color: #fff;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .ctt-main__boxes {
    padding: calc(40vw / 3.75) calc(20vw / 3.75);
    border-radius: 15px;
  }
}

.ctt-main__box {
  width: calc(600vw / 14.4);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .ctt-main__box {
    width: 100%;
  }
}

.ctt-main__label {
  display: block;
}

.ctt-main__label:nth-child(2) {
  width: calc(300vw / 14.4);
}

@media screen and (max-width: 767px) {
  .ctt-main__label:nth-child(2) {
    width: calc(200vw / 3.75);
  }
}

.ctt-main__label:nth-child(n+3) {
  margin-top: 24px;
}

.ctt-main__label:nth-child(3) {
  width: calc(327vw / 14.4);
}

@media screen and (max-width: 767px) {
  .ctt-main__label:nth-child(3) {
    width: 100%;
  }
}

.ctt-main__label:nth-child(4), .ctt-main__label:nth-child(5) {
  width: calc(340vw / 14.4);
}

@media screen and (max-width: 767px) {
  .ctt-main__label:nth-child(4), .ctt-main__label:nth-child(5) {
    width: 100%;
  }
}

.ctt-main__label:nth-child(6), .ctt-main__label:nth-child(7), .ctt-main__label:nth-child(8) {
  width: 100%;
}

.ctt-main__title {
  font-size: calc(15vw / 14.4);
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #080808;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .ctt-main__title {
    font-size: calc(16vw / 3.75);
  }
}

.ctt-main__title > span {
  font-size: calc(14vw / 14.4);
  line-height: 2;
  letter-spacing: 0;
  color: #A01E3C;
  font-family: "Shippori Mincho", serif;
}

@media screen and (max-width: 767px) {
  .ctt-main__title > span {
    font-size: calc(15vw / 3.75);
  }
}

.ctt-main__privacy {
  text-align: center;
  font-weight: 500;
  font-size: calc(15vw / 14.4);
  line-height: 2.2;
  letter-spacing: 1.5px;
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .ctt-main__privacy {
    font-size: calc(14vw / 3.75);
  }
}

.ctt-main__privacy > a {
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.ctt-main__privacy > a:hover {
  opacity: .6;
}

.ctt-main__recaptcha {
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 2.2;
  font-size: calc(15vw / 14.4);
  text-align: center;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .ctt-main__recaptcha {
    font-size: calc(10vw / 3.75);
    text-align: left;
  }
}

.ctt-main__recaptcha > a {
  color: #0075FF;
  -webkit-transition: .3s;
  transition: .3s;
}

.ctt-main__recaptcha > a:hover {
  opacity: .6;
}

select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: calc(6.5vw / 14.4) calc(16vw / 14.4);
  border-radius: 6px;
  border: 1px solid #98979E;
  font-size: calc(16vw / 14.4);
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #333;
  margin-top: 8px;
  text-align: left;
  cursor: pointer !important;
}

@media screen and (max-width: 767px) {
  select {
    padding: 10px;
    font-size: calc(13vw / 3.75);
    width: 100%;
  }
}

input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  background-color: #F9F9F9;
  padding: calc(7vw / 14.4) calc(13vw / 14.4);
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 8px;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 767px) {
  input {
    padding: 10px;
    font-size: calc(13vw / 3.75);
  }
}

input::-webkit-input-placeholder {
  color: #CACACA;
}

input:-ms-input-placeholder {
  color: #CACACA;
}

input::-ms-input-placeholder {
  color: #CACACA;
}

input::placeholder {
  color: #CACACA;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  background-color: #F9F9F9;
  padding: calc(7vw / 14.4) calc(13vw / 14.4);
  font-weight: 500;
  font-size: calc(16vw / 14.4);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 8px;
  text-align: left;
  width: 100%;
  height: 300px;
}

@media screen and (max-width: 767px) {
  textarea {
    padding: 10px;
    font-size: calc(13vw / 3.75);
    height: 200px;
  }
}

textarea::-webkit-input-placeholder {
  color: #CACACA;
}

textarea:-ms-input-placeholder {
  color: #CACACA;
}

textarea::-ms-input-placeholder {
  color: #CACACA;
}

textarea::placeholder {
  color: #CACACA;
}

/* input自体を非表示 */
input[type="checkbox"] {
  opacity: 0;
  left: -8px;
  height: 23px;
  width: 23px;
  position: absolute;
}

.ctt-main__privacy .wpcf7-list-item {
  position: relative;
  display: inline-block;
  /* 横並びにしたい場合 */
}

/* カスタムチェックボックス：span::before */
.wpcf7-list-item::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  border: 2px solid #CCCCCC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 6px;
  margin-right: 8px;
}

/* チェック時：チェックマーク表示 */
.ctt-main__privacy .wpcf7-list-item.checked::before {
  content: "✔";
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 19px;
  background-color: #0075FF;
}

.ctt-main__submit-container {
  text-align: center;
}

.ctt-main__submit-box {
  position: relative;
  margin-top: 56px;
  display: inline-block;
}

.ctt-main__submit-box::before {
  content: "";
  position: absolute;
  background-image: url(../img/component/icon-more.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  width: clamp(20px, calc(27vw / 14.4), 60px);
  height: clamp(20px, calc(27vw / 14.4), 60px);
}

@media screen and (max-width: 767px) {
  .ctt-main__submit-box::before {
    width: 27px;
    height: 27px;
  }
}

input[type="submit"] {
  width: clamp(225px, calc(225vw / 14.4), 400px);
  border-radius: 20px;
  background-color: #014099;
  color: #fff;
  padding: clamp(19px, calc(19vw / 14.4), 60px);
  font-weight: bold;
  font-size: clamp(12px, calc(15vw / 14.4), 30px);
  letter-spacing: 1.6px;
  line-height: 1;
  display: block;
  margin: auto;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  input[type="submit"] {
    width: 225px;
    padding: 16px;
    font-size: 20px;
  }
}

input[type="submit"]:hover {
  opacity: .6;
}

.wpcf7-spinner {
  position: absolute !important;
}

/*=======================
  home
=======================*/
.hm-fv__container {
  position: relative;
}

.hm-fv__img {
  display: block;
  height: 100%;
}

.hm-fv__title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: calc(411vw / 14.4);
  left: calc(150vw / 14.4);
  font-size: calc(43vw / 14.4);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .hm-fv__title {
    font-size: calc(24vw / 3.75);
    top: calc(338vw / 3.75);
    left: calc(19vw / 3.75);
  }
}

.hm-about {
  position: relative;
}

.hm-about__bg-circle {
  position: absolute;
  width: calc(356vw / 14.4);
  left: 0;
  top: calc(-71vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__bg-circle {
    width: calc(163vw / 3.75);
    top: calc(-111vw / 3.75);
  }
}

.hm-about__bg-cloud {
  position: absolute;
  width: calc(136vw / 14.4);
  top: calc(70vw / 14.4);
  right: calc(156vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__bg-cloud {
    width: calc(111vw / 3.75);
    top: calc(24vw / 3.75);
    right: calc(7vw / 3.75);
  }
}

.hm-about__bg-car {
  position: absolute;
  width: calc(741vw / 14.4);
  right: 0;
  bottom: calc(46vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__bg-car {
    width: calc(290vw / 3.75);
    bottom: calc(-67vw / 3.75);
  }
}

.hm-about__container {
  padding: calc(160vw / 14.4) 0 calc(130vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__container {
    padding: calc(80vw / 3.75) 0 calc(32vw / 3.75);
  }
}

.hm-about__title-box {
  position: relative;
  padding-left: calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__title-box {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .hm-about__title-jp {
    text-align: center;
    display: block;
  }
}

.hm-about__title-en {
  font-size: calc(89vw / 14.4);
  position: absolute;
  left: calc(36vw / 14.4);
  bottom: calc(24vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__title-en {
    text-align: center;
    font-size: calc(35vw / 3.75);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.hm-about__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: calc(160vw / 14.4);
  margin-top: 56px;
}

@media screen and (max-width: 767px) {
  .hm-about__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 32px;
    padding: 0 calc(20vw / 3.75);
  }
}

.hm-about__box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-about__box {
    width: 100%;
    margin-top: 20px;
  }
}

.hm-about__box-text {
  text-align: left;
  font-size: clamp(12px, calc(17vw / 14.4), 27px);
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .hm-about__box-text {
    font-size: calc(13vw / 3.75);
    font-weight: 500;
  }
}

.hm-about__box-text:nth-child(n + 2) {
  margin-top: 20px;
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
}

@media screen and (max-width: 767px) {
  .hm-about__box-text:nth-child(n + 2) {
    font-size: calc(13vw / 3.75);
    font-weight: 500;
  }
}

.hm-about__img {
  width: calc(704vw / 14.4);
  border-radius: 20px 0 0 20px;
  aspect-ratio: 704 / 396;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .hm-about__img {
    width: 100%;
  }
}

.hm-about__link-box {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .hm-about__link-box > a {
    margin: 0 auto;
  }
}

.hm-more__container {
  padding: 0 0 calc(80vw / 14.4) calc(150vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-more__container {
    padding: 16px calc(23vw / 3.75) calc(80vw / 3.75);
  }
}

.hm-more__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hm-more__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  font-size: calc(32vw / 14.4);
  line-height: 1.2;
  letter-spacing: 3.04px;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .hm-more__title {
    font-size: calc(23vw / 3.75);
  }
}

.hm-more__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: calc(48vw / 14.4);
  gap: calc(33vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-more__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 110px;
    width: calc(275vw / 3.75);
  }
}

.hm-more__box > a {
  display: block;
  height: 100%;
  width: calc(378vw / 14.4);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .hm-more__box > a {
    width: 100%;
  }
}

.hm-more__box > a:hover {
  opacity: 0.6;
}

.hm-more__box-title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: calc(23vw / 14.4);
  font-weight: bold;
  gap: 16px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .hm-more__box-title {
    font-size: calc(15vw / 3.75);
    gap: 11px;
  }
}

.hm-more__box-title > img {
  width: 28px;
}

@media screen and (max-width: 767px) {
  .hm-more__box-title > img {
    width: 19px;
  }
}

.hm-more__img {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .hm-more__img {
    border-radius: 14px;
  }
}

.hm-idea {
  position: relative;
  background-image: url(../img/home/idea-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.hm-idea__container {
  padding: calc(80vw / 14.4) 0 calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-idea__container {
    padding: calc(40vw / 3.75) 0 calc(80vw / 3.75);
  }
}

.hm-idea__bg {
  position: absolute;
  top: calc(62vw / 14.4);
  left: calc(144vw / 14.4);
  width: calc(132vw / 14.4);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .hm-idea__bg {
    width: calc(71vw / 3.75);
    top: calc(11vw / 3.75);
    left: calc(13vw / 3.75);
  }
}

.hm-idea__logo {
  width: calc(469vw / 14.4);
  margin-left: calc(156vw / 14.4);
  opacity: 0.1;
}

@media screen and (max-width: 767px) {
  .hm-idea__logo {
    width: calc(266vw / 3.75);
    margin: 0 auto;
  }
}

.hm-idea__logo > img {
  display: block;
  width: 100%;
}

.hm-idea__title-box {
  text-align: center;
}

.hm-idea__title {
  font-size: clamp(25px, calc(35vw / 14.4), 45px);
  letter-spacing: 0.1em;
  line-height: 1.42;
  background: -webkit-gradient(linear, left top, right top, from(#3681ea), to(#1f4984));
  background: linear-gradient(to right, #3681ea 0%, #1f4984 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: center;
  margin-top: 14px;
}

@media screen and (max-width: 767px) {
  .hm-idea__title {
    font-size: calc(17vw / 3.75);
  }
}

.hm-idea__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: calc(160vw / 14.4);
  margin-top: calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-idea__boxes {
    padding: 0 calc(20vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.hm-idea__img {
  width: calc(704vw / 14.4);
  border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 767px) {
  .hm-idea__img {
    width: 100%;
    border-radius: 20px;
    margin-top: 32px;
  }
}

.hm-idea__box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-idea__box {
    width: 100%;
  }
}

.hm-idea__box-title {
  padding-top: 24px;
  border-top: 1px solid #014099;
  font-weight: bold;
  font-size: clamp(20px, calc(25vw / 14.4), 35px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .hm-idea__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.hm-idea__box-text {
  margin-top: 3px;
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-idea__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.hm-career {
  position: relative;
}

.hm-career__circle {
  position: absolute;
  width: calc(346vw / 14.4);
  top: calc(-152vw / 14.4);
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .hm-career__circle {
    right: unset;
    left: 0;
    top: calc(-99vw / 3.75);
  }
}

.hm-career__container {
  padding: calc(160vw / 14.4) 0 calc(56vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-career__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-career__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-career__title-jp {
    text-align: center;
    display: block;
  }
}

.hm-career__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .hm-career__title-en {
    text-align: center;
    font-size: calc(54vw / 3.75);
  }
}

.hm-career__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: calc(160vw / 14.4);
  margin-top: calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-career__boxes {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.hm-career__img {
  width: calc(704vw / 14.4);
  border-radius: 20px 0 0 20px;
  aspect-ratio: 704 / 396;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .hm-career__img {
    width: 100%;
    border-radius: 20px;
  }
}

.hm-career__box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-career__box {
    width: 100%;
    margin-top: 32px;
  }
}

.hm-career__box-title {
  padding-top: 24px;
  border-top: 1px solid #014099;
  font-weight: bold;
  font-size: clamp(20px, calc(25vw / 14.4), 35px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .hm-career__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.hm-career__box-text {
  margin-top: 3px;
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-career__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.hm-career__link-box {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .hm-career__link-box > a {
    margin: auto;
  }
}

.hm-sns__container {
  padding: 0 calc(100vw / 14.4) calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-sns__container {
    padding: 0 calc(20vw / 3.75) calc(80vw / 3.75);
  }
}

.hm-sns__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-sns__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.hm-sns__box {
  position: relative;
  width: calc(451vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  color: #fff;
  min-width: 300px;
}

@media screen and (max-width: 767px) {
  .hm-sns__box {
    min-width: unset;
    width: 100%;
  }
}

.hm-sns__box > img {
  border-radius: 20px;
}

.hm-sns__box:last-child .hm-sns__link-box {
  margin-top: calc(23vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-sns__box:last-child .hm-sns__link-box {
    margin-top: calc(5vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .hm-sns__box:last-child .hm-sns__box-text {
    font-size: calc(15vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .hm-sns__box:last-child .hm-sns__box-title {
    font-size: calc(23vw / 3.75);
    margin-top: calc(18vw / 3.75);
  }
}

.hm-sns__box-content {
  position: absolute;
  right: 0;
  left: 0;
  bottom: calc(32vw / 14.4);
  margin: auto;
}

@media screen and (max-width: 767px) {
  .hm-sns__box-content {
    bottom: calc(11vw / 3.75);
  }
}

.hm-sns__box-content > img {
  width: calc(41vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-sns__box-content > img {
    width: calc(24vw / 3.75);
  }
}

.hm-sns__box-text {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: clamp(10px, calc(20vw / 14.4), 30px);
  letter-spacing: 1.8px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .hm-sns__box-text {
    font-size: calc(17vw / 3.75);
  }
}

.hm-sns__box-text::after {
  content: "";
  position: absolute;
  bottom: calc(15vw / 14.4);
  right: calc(-32vw / 14.4);
  width: calc(31vw / 14.4);
  height: calc(1vw / 14.4);
  background-color: #fff;
  -webkit-transform: rotate(125deg);
          transform: rotate(125deg);
}

@media screen and (max-width: 767px) {
  .hm-sns__box-text::after {
    width: calc(28vw / 3.75);
    bottom: calc(14vw / 3.75);
    right: calc(-29vw / 3.75);
  }
}

.hm-sns__box-text::before {
  content: "";
  position: absolute;
  bottom: calc(15vw / 14.4);
  left: calc(-32vw / 14.4);
  width: calc(31vw / 14.4);
  height: calc(1vw / 14.4);
  background-color: #fff;
  -webkit-transform: rotate(-125deg);
          transform: rotate(-125deg);
}

@media screen and (max-width: 767px) {
  .hm-sns__box-text::before {
    width: calc(28vw / 3.75);
    bottom: calc(14vw / 3.75);
    left: calc(-29vw / 3.75);
  }
}

.hm-sns__box-title {
  font-weight: bold;
  font-size: clamp(15px, calc(30vw / 14.4), 40px);
  letter-spacing: 5.8px;
  line-height: 1.4;
  margin-top: calc(23vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-sns__box-title {
    font-size: calc(27vw / 3.75);
    margin-top: calc(11vw / 3.75);
  }
}

.hm-sns__link-box {
  margin-top: calc(8vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-sns__link-box {
    margin-top: calc(8vw / 3.75);
  }
}

.hm-sns__link-box > a {
  margin: auto;
  height: calc(55vw / 14.4);
  min-height: 40px;
}

@media screen and (max-width: 767px) {
  .hm-sns__link-box > a {
    height: 55px;
  }
}

.hm-staff {
  position: relative;
}

.hm-staff__circle {
  position: absolute;
  width: calc(1104vw / 14.4);
  left: 0;
  top: calc(-400vw / 14.4);
  z-index: -1;
}

.hm-staff__container {
  padding: calc(160vw / 14.4) 0 calc(80vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-staff__container {
    padding: calc(80vw / 3.75) 0;
  }
}

.hm-staff__title-box {
  position: relative;
  text-align: center;
  padding: 0 calc(171vw / 14.4);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .hm-staff__title-jp {
    text-align: center;
    display: block;
  }
}

.hm-staff__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff7f;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .hm-staff__title-en {
    text-align: center;
    font-size: calc(54vw / 3.75);
  }
}

.hm-staff__contents-box {
  padding: calc(80vw / 14.4) 0;
  background-image: url(../img/home/staff-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 44px;
}

@media screen and (max-width: 767px) {
  .hm-staff__contents-box {
    padding: calc(60vw / 3.75) 0;
  }
}

.hm-staff__box {
  background-color: #fff;
  padding: calc(24vw / 14.4);
  border-radius: calc(30vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-staff__box {
    padding: calc(20vw / 3.75);
    border-radius: 20px;
  }
}

.hm-staff__box-job-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0077cc;
  color: #fff;
  border-radius: 10px;
  padding: 0 26px;
  font-weight: bold;
  font-size: clamp(13px, calc(20vw / 14.4), 40px);
  margin-top: 24px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .hm-staff__box-job-title {
    font-size: calc(20vw / 3.75);
  }
}

.hm-staff__box-job-text {
  margin-top: 8px;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: clamp(10px, calc(15vw / 14.4), 30px);
  font-weight: 500;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-staff__box-job-text {
    font-size: calc(15vw / 3.75);
  }
}

.hm-staff__box-word-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffa145;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  font-size: clamp(13px, calc(20vw / 14.4), 40px);
  margin-top: 24px;
  line-height: 1.4;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .hm-staff__box-word-title {
    font-size: calc(20vw / 3.75);
  }
}

.hm-staff__box-word-text {
  margin-top: 8px;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: clamp(10px, calc(15vw / 14.4), 30px);
  font-weight: 500;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-staff__box-word-text {
    font-size: calc(15vw / 3.75);
  }
}

.swiper-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.swiper-slide {
  width: calc(352vw / 14.4);
}

@media screen and (max-width: 767px) {
  .swiper-slide {
    width: calc(250vw / 3.75);
  }
}

.swiper-slide:last-child {
  margin-right: 0 !important;
}

.swiper-pagination {
  position: relative;
  bottom: 0 !important;
  margin-top: 60px;
  height: calc(67vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .swiper-pagination {
    height: calc(40vw / 3.75);
  }
}

.swiper-button-prev {
  bottom: 0;
  top: unset;
  width: calc(67vw / 14.4);
  left: calc(567vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 11;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    width: calc(40vw / 3.75);
    left: calc(70vw / 3.75);
  }
}

.swiper-button-prev:hover {
  opacity: 0.6;
}

.swiper-button-next {
  bottom: 0;
  top: unset;
  width: calc(67vw / 14.4);
  right: calc(567vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 11;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .swiper-button-next {
    width: calc(40vw / 3.75);
    right: calc(70vw / 3.75);
  }
}

.swiper-button-next:hover {
  opacity: 0.6;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-pagination-bullet {
  width: calc(13vw / 14.4);
  height: calc(13vw / 14.4);
  margin: 0 5px;
  background-color: #ffd3a8;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}

.swiper-pagination-bullet-active {
  background-color: #ffa145;
}

.hm-workplace {
  background-image: url(../img/home/workplace-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.hm-workplace__container {
  padding: calc(160vw / 14.4) 0;
}

.hm-workplace__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-workplace__title-jp {
    text-align: center;
    display: block;
  }
}

.hm-workplace__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .hm-workplace__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.hm-workplace__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: calc(160vw / 14.4);
  margin-top: calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-workplace__boxes {
    padding: 0 calc(20vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
  }
}

.hm-workplace__boxes:last-child {
  padding-right: 0;
  padding-left: calc(160vw / 14.4);
  margin-top: calc(56vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-workplace__boxes:last-child {
    padding: 0 calc(20vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 32px;
  }
}

.hm-workplace__boxes:last-child > .hm-workplace__img {
  border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 767px) {
  .hm-workplace__boxes:last-child > .hm-workplace__img {
    border-radius: 20px;
  }
}

.hm-workplace__img {
  width: calc(704vw / 14.4);
  border-radius: 0 20px 20px 0;
  aspect-ratio: 704 / 396;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .hm-workplace__img {
    width: 100%;
    border-radius: 20px;
  }
}

.hm-workplace__box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-workplace__box {
    width: 100%;
    margin-top: 32px;
  }
}

.hm-workplace__box-title {
  padding-top: 24px;
  border-top: 1px solid #014099;
  font-weight: bold;
  font-size: clamp(20px, calc(25vw / 14.4), 35px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .hm-workplace__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.hm-workplace__box-text {
  margin-top: 3px;
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .hm-workplace__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.hm-benefit {
  background-color: #fffdf9;
  position: relative;
}

.hm-benefit__circle {
  position: absolute;
  width: calc(376vw / 14.4);
  top: calc(-168vw / 14.4);
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .hm-benefit__circle {
    width: calc(330vw / 3.75);
    top: calc(-66vw / 3.75);
  }
}

.hm-benefit__container {
  padding: calc(160vw / 14.4) calc(110vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-benefit__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.hm-benefit__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hm-benefit__title-jp {
    text-align: center;
    display: block;
  }
}

.hm-benefit__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .hm-benefit__title-en {
    text-align: center;
    font-size: calc(43vw / 3.75);
  }
}

.hm-benefit__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(1200vw / 14.4);
  margin: 56px auto 0;
}

@media screen and (max-width: 767px) {
  .hm-benefit__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hm-benefit__border-box {
  width: calc(274vw / 14.4);
  height: calc(264vw / 14.4);
  padding: calc(16vw / 14.4);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffd3a8), to(#ffc542));
  background: linear-gradient(to bottom, #ffd3a8, #ffc542);
  border-radius: calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .hm-benefit__border-box {
    width: 100%;
    height: calc(264vw / 3.75);
    padding: calc(16vw / 3.75);
    border-radius: calc(40vw / 3.75);
  }
}

@media screen and (max-width: 767px) {
  .hm-benefit__border-box:nth-child(n + 2) {
    margin-top: 40px;
  }
}

.hm-benefit__box {
  position: relative;
  background-color: #fff;
  border-radius: calc(20vw / 14.4);
  z-index: 2;
  padding: calc(10vw / 14.4);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .hm-benefit__box {
    padding: calc(27vw / 3.75);
    border-radius: calc(20vw / 3.75);
  }
}

.hm-benefit__number {
  position: absolute;
  font-family: "Roboto", sans-serif;
  color: #f15400;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.6;
  border-bottom: 2.5px solid #f15400;
  top: 8px;
  left: 8px;
}

@media screen and (max-width: 767px) {
  .hm-benefit__number {
    font-size: calc(25vw / 3.75);
  }
}

.hm-benefit__img-box {
  text-align: center;
}

.hm-benefit__img {
  width: calc(87vw / 14.4);
  margin: auto;
}

@media screen and (max-width: 767px) {
  .hm-benefit__img {
    width: calc(87vw / 3.75);
  }
}

.hm-benefit__box-title {
  font-weight: 500;
  font-size: calc(18vw / 14.4);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 24px;
  color: #f15400;
}

@media screen and (max-width: 767px) {
  .hm-benefit__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.hm-benefit__link-box {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .hm-benefit__link-box {
    margin-top: 24px;
  }
}

.hm-benefit__link-box > a {
  margin: 0 auto;
}

.job-main {
  background-image: url(../img/component/component-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.job-main__container {
  padding: calc(80vw / 14.4) calc(210vw / 14.4);
}

@media screen and (max-width: 767px) {
  .job-main__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.job-main__title-box {
  text-align: center;
}

.job-main__title {
  text-align: center;
}

.job-main__list {
  margin-top: 56px;
  background-color: #fff;
  border-radius: 40px;
  padding: calc(70vw / 14.4) calc(56vw / 14.4);
}

@media screen and (max-width: 767px) {
  .job-main__list {
    margin-top: 32px;
    padding: calc(20vw / 3.75);
    border-radius: 20px;
  }
}

.job-main__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: calc(40vw / 14.4);
  border-bottom: 1px solid;
  /* 任意の太さ */
  -o-border-image: linear-gradient(to right, #676C70 0%, #676C70 18%, #C1CBD3 18%, #C4CED6 64%, #C4CED6 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#676C70), color-stop(18%, #676C70), color-stop(18%, #C1CBD3), color-stop(64%, #C4CED6), to(#C4CED6)) 1;
     border-image: linear-gradient(to right, #676C70 0%, #676C70 18%, #C1CBD3 18%, #C4CED6 64%, #C4CED6 100%) 1;
}

@media screen and (max-width: 767px) {
  .job-main__item {
    padding-bottom: calc(24vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.job-main__item:nth-child(n+2) {
  padding-top: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .job-main__item:nth-child(n+2) {
    padding-top: calc(24vw / 3.75);
  }
}

.job-main__box-title {
  font-size: calc(16vw / 14.4);
  width: calc(270vw / 14.4);
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .job-main__box-title {
    font-size: calc(16vw / 3.75);
    width: 100%;
  }
}

.job-main__text-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .job-main__text-box {
    width: calc(275vw / 3.75);
    margin: 0 0 0 auto;
  }
}

.job-main__text {
  font-size: calc(16vw / 14.4);
  color: #02001A;
  line-height: 1.7;
  letter-spacing: 0.1em;
  list-style: disc outside;
}

@media screen and (max-width: 767px) {
  .job-main__text {
    font-size: calc(14vw / 3.75);
    margin-top: 16px;
  }
}

.job-entry__container {
  margin-top: 56px;
}

@media screen and (max-width: 767px) {
  .job-entry__container {
    margin-top: 32px;
  }
}

.job-entry__box {
  text-align: center;
}

.job-entry__box:nth-child(1) > a {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffa145), to(#ff7700));
  background: linear-gradient(to bottom, #ffa145 0%, #ff7700 100%);
}

.job-entry__box:nth-child(2) {
  margin-top: 24px;
}

.job-entry__box > a {
  margin: 0 auto;
}

.stm-main {
  background-color: #fffdf9;
  position: relative;
}

.stm-main__circle {
  position: absolute;
  width: calc(376vw / 14.4);
  top: calc(-168vw / 14.4);
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .stm-main__circle {
    width: calc(162vw / 3.75);
    top: calc(-44vw / 3.75);
  }
}

.stm-main__container {
  padding: calc(80vw / 14.4) calc(110vw / 14.4);
}

@media screen and (max-width: 767px) {
  .stm-main__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.stm-main__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .stm-main__title-jp {
    text-align: center;
    display: block;
  }
}

.stm-main__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .stm-main__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.stm-main__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(40vw / 14.4);
  width: calc(1200vw / 14.4);
  margin: 56px auto 0;
}

@media screen and (max-width: 767px) {
  .stm-main__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    width: 100%;
  }
}

.stm-main__border-box {
  width: calc(270vw / 14.4);
  height: calc(264vw / 14.4);
  padding: calc(16vw / 14.4);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffd3a8), to(#ffc542));
  background: linear-gradient(to bottom, #ffd3a8, #ffc542);
  border-radius: calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .stm-main__border-box {
    width: 100%;
    height: calc(300vw / 3.75);
    padding: calc(16vw / 3.75);
    border-radius: calc(40vw / 3.75);
  }
}

.stm-main__box {
  position: relative;
  background-color: #fff;
  border-radius: calc(20vw / 14.4);
  z-index: 2;
  padding: calc(10vw / 14.4);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .stm-main__box {
    padding: calc(27vw / 3.75);
    border-radius: calc(20vw / 3.75);
  }
}

.stm-main__number {
  position: absolute;
  font-family: "Roboto", sans-serif;
  color: #f15400;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.6;
  border-bottom: 2.5px solid #f15400;
  top: 8px;
  left: 8px;
}

@media screen and (max-width: 767px) {
  .stm-main__number {
    font-size: calc(25vw / 3.75);
  }
}

.stm-main__img-box {
  text-align: center;
}

.stm-main__img {
  width: calc(87vw / 14.4);
  margin: auto;
}

@media screen and (max-width: 767px) {
  .stm-main__img {
    width: calc(87vw / 3.75);
  }
}

.stm-main__box-title {
  font-weight: 500;
  font-size: calc(18vw / 14.4);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 24px;
  color: #f15400;
}

@media screen and (max-width: 767px) {
  .stm-main__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.stm-main__link-box {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .stm-main__link-box {
    margin-top: 24px;
  }
}

.stm-main__link-box > a {
  margin: 0 auto;
}

.stf-main {
  background-color: #fff;
  position: relative;
}

.stf-main__circle {
  position: absolute;
  width: calc(376vw / 14.4);
  top: calc(-231vw / 14.4);
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .stf-main__circle {
    width: calc(162vw / 3.75);
    top: calc(-44vw / 3.75);
  }
}

.stf-main__container {
  padding: calc(80vw / 14.4) calc(110vw / 14.4);
}

@media screen and (max-width: 767px) {
  .stf-main__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.stf-main__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .stf-main__title-jp {
    text-align: center;
    display: block;
  }
}

.stf-main__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .stf-main__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.stf-main__boxes {
  width: calc(1120vw / 14.4);
  margin: 56px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
  gap: calc(32vw / 14.4);
}

@media screen and (max-width: 767px) {
  .stf-main__boxes {
    width: 100%;
    gap: calc(32vw / 3.75);
  }
}

.stf-main__box {
  width: calc(352vw / 14.4);
  background-color: #fff;
  padding: calc(24vw / 14.4);
  border-radius: calc(30vw / 14.4);
  -webkit-box-shadow: 4px 4px 14px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 4px 4px 14px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
  .stf-main__box {
    padding: calc(20vw / 3.75);
    border-radius: 20px;
    width: 100%;
  }
}

.stf-main__img {
  aspect-ratio: 1 / 1;
}

.stf-main__box-job-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0077cc;
  color: #fff;
  border-radius: 10px;
  padding: 0 26px;
  font-weight: bold;
  font-size: clamp(13px, calc(20vw / 14.4), 40px);
  margin-top: 24px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .stf-main__box-job-title {
    font-size: calc(20vw / 3.75);
  }
}

.stf-main__box-job-text {
  margin-top: 8px;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: clamp(10px, calc(15vw / 14.4), 30px);
  font-weight: 500;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .stf-main__box-job-text {
    font-size: calc(15vw / 3.75);
  }
}

.stf-main__box-word-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffa145;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  font-size: clamp(13px, calc(20vw / 14.4), 40px);
  margin-top: 24px;
  line-height: 1.4;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .stf-main__box-word-title {
    font-size: calc(20vw / 3.75);
  }
}

.stf-main__box-word-text {
  margin-top: 8px;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: clamp(10px, calc(15vw / 14.4), 30px);
  font-weight: 500;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .stf-main__box-word-text {
    font-size: calc(15vw / 3.75);
  }
}

.wpc-main {
  background-image: url(../img/component/component-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.wpc-main__circle {
  position: absolute;
  width: calc(376vw / 14.4);
  top: calc(-200vw / 14.4);
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .wpc-main__circle {
    width: calc(162vw / 3.75);
    top: calc(-44vw / 3.75);
  }
}

.wpc-main__container {
  padding: calc(80vw / 14.4) 0;
}

@media screen and (max-width: 767px) {
  .wpc-main__container {
    padding: calc(80vw / 3.75) 0;
  }
}

.wpc-main__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .wpc-main__title-jp {
    text-align: center;
    display: block;
  }
}

.wpc-main__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .wpc-main__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.wpc-main__boxes {
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .wpc-main__boxes {
    margin-top: 32px;
    padding: 0 calc(20vw / 3.75);
  }
}

.wpc-main__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: calc(100vw / 14.4);
}

.wpc-main__box:nth-child(2n-1) {
  padding-right: calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wpc-main__box:nth-child(2n-1) {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.wpc-main__box:nth-child(2n-1) > .wpc-main__img > img {
  border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 767px) {
  .wpc-main__box:nth-child(2n-1) > .wpc-main__img > img {
    border-radius: 20px;
  }
}

.wpc-main__box:nth-child(2n) {
  padding-left: calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wpc-main__box:nth-child(2n) {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.wpc-main__box:nth-child(2n) > .wpc-main__img > img {
  border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 767px) {
  .wpc-main__box:nth-child(2n) > .wpc-main__img > img {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .wpc-main__box:nth-child(n+2) {
    margin-top: 32px;
  }
}

.wpc-main__img {
  width: calc(704vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wpc-main__img {
    width: 100%;
  }
}

.wpc-main__img > img {
  aspect-ratio: 704 / 396;
  -o-object-fit: cover;
     object-fit: cover;
}

.wpc-main__text-box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wpc-main__text-box {
    width: 100%;
    margin-top: 32px;
  }
}

.wpc-main__box-title {
  padding-top: 24px;
  border-top: 1px solid #014099;
  font-weight: bold;
  font-size: clamp(20px, calc(25vw / 14.4), 35px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .wpc-main__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.wpc-main__box-text {
  margin-top: 3px;
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .wpc-main__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.wrk-main {
  background-image: url(../img/component/component-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.wrk-main__circle {
  position: absolute;
  width: calc(376vw / 14.4);
  top: calc(-200vw / 14.4);
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .wrk-main__circle {
    width: calc(162vw / 3.75);
    top: calc(-44vw / 3.75);
  }
}

.wrk-main__container {
  padding: calc(80vw / 14.4) calc(140vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wrk-main__container {
    padding: calc(80vw / 3.75) calc(20vw / 3.75);
  }
}

.wrk-main__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .wrk-main__title-jp {
    text-align: center;
    display: block;
  }
}

.wrk-main__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .wrk-main__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.wrk-main__anker-box {
  width: calc(967vw / 14.4);
  margin: 76px auto 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .wrk-main__anker-box {
    width: calc(323vw / 3.75);
  }
}

.wrk-main__anker-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(7vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wrk-main__anker-list {
    gap: 10px 9px;
  }
}

.wrk-main__anker-item {
  width: calc(236vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wrk-main__anker-item {
    width: calc(157vw / 3.75);
  }
}

.wrk-main__anker-link {
  padding: calc(14.5vw / 14.4);
  border: 2px solid #F15400;
  background-color: #fff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .wrk-main__anker-link {
    padding: calc(11vw / 3.75);
    border-radius: 11px;
  }
}

.wrk-main__anker-link:hover {
  opacity: .6;
}

.wrk-main__anker-link > img {
  margin-top: 3px;
  width: 12px;
}

.wrk-main__anker-title {
  font-weight: 500;
  font-size: calc(17vw / 14.4);
  line-height: 2;
  letter-spacing: 0.1em;
  color: #F15400;
}

@media screen and (max-width: 767px) {
  .wrk-main__anker-title {
    font-size: calc(14vw / 3.75);
  }
}

.wrk-main__boxes {
  margin: 80px auto 0;
  width: calc(948vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wrk-main__boxes {
    width: 100%;
    margin-top: 32px;
  }
}

.wrk-main__box {
  padding: calc(40vw / 14.4);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .wrk-main__box {
    padding: 40px calc(20vw / 3.75);
  }
}

.wrk-main__box:nth-child(2n-1) {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .wrk-main__box:nth-child(2n-1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .wrk-main__box:nth-child(2n) {
    border-radius: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.wrk-main__box:not(:first-child) {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .wrk-main__box:not(:first-child) {
    margin-top: 32px;
  }
}

.wrk-main__text-box {
  width: calc(372vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wrk-main__text-box {
    width: 100%;
  }
}

.wrk-main__box-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: calc(28vw / 14.4);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333333;
}

.wrk-main__box-title > span {
  padding: 6px calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wrk-main__box-title > span {
    font-size: calc(28vw / 3.75);
    padding: 6px calc(40vw / 3.75);
  }
}

.wrk-main__box-title > img {
  width: calc(15vw / 14.4);
}

@media screen and (max-width: 767px) {
  .wrk-main__box-title > img {
    width: calc(15vw / 3.75);
  }
}

.wrk-main__box-text {
  font-weight: 500;
  font-size: calc(15vw / 14.4);
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .wrk-main__box-text {
    font-size: calc(15vw / 3.75);
  }
}

.wrk-main__box-img {
  width: calc(432vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  aspect-ratio: 432/ 288;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .wrk-main__box-img {
    width: 100%;
    margin-top: 16px;
    border-radius: 13px;
    aspect-ratio: 295/ 288;
  }
}

.bsc-philosophy {
  background-color: #fff;
  position: relative;
}

.bsc-philosophy__circle-right {
  position: absolute;
  width: calc(255vw / 14.4);
  bottom: calc(-12vw / 14.4);
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__circle-right {
    width: calc(162vw / 3.75);
    top: calc(-104vw / 3.75);
    right: unset;
    left: 0;
    bottom: unset;
  }
}

.bsc-philosophy__container {
  padding: calc(80vw / 14.4) 0 0;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__container {
    padding: calc(80vw / 3.75) 0 calc(40vw / 3.75);
  }
}

.bsc-philosophy__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__title-jp {
    text-align: center;
    display: block;
  }
}

.bsc-philosophy__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__title-en {
    text-align: center;
    font-size: calc(54vw / 3.75);
  }
}

.bsc-philosophy__img-box {
  margin-top: 110px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__img-box {
    margin-top: 40px;
  }
}

.bsc-philosophy__img {
  display: block;
}

.bsc-philosophy__img-title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: calc(43vw / 14.4);
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: bold;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__img-title {
    top: calc(80vw / 3.75);
    left: calc(20vw / 3.75);
    bottom: unset;
    right: unset;
    font-size: calc(24vw / 3.75);
    line-height: 1.7;
  }
}

.bsc-philosophy__img-title > span {
  display: block;
  font-size: calc(24vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__img-title > span {
    font-size: calc(16vw / 3.75);
  }
}

.bsc-philosophy__box {
  width: calc(973vw / 14.4);
  background-color: #fff;
  border-top: 1px solid #014099;
  padding: calc(32vw / 14.4) calc(50vw / 14.4);
  margin: calc(-134vw / 14.4) auto 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__box {
    width: calc(345vw / 3.75);
    margin-top: calc(-169vw / 3.75);
    border-radius: calc(20vw / 3.75);
    border-top: none;
    padding: calc(32vw / 3.75) calc(50vw / 3.75);
  }
}

.bsc-philosophy__text-box {
  padding-top: 24px;
  border-top: 1px solid #014099;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__text-box {
    padding-top: 16px;
  }
}

.bsc-philosophy__text-box:nth-child(n+2) {
  margin-top: calc(63vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__text-box:nth-child(n+2) {
    margin-top: calc(44vw / 3.75);
  }
}

.bsc-philosophy__box-title {
  color: #1260A1;
  font-size: calc(25vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.bsc-philosophy__box-text {
  font-weight: 500;
  font-size: calc(15vw / 14.4);
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: calc(63vw / 14.4);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .bsc-philosophy__box-text {
    font-size: calc(13vw / 3.75);
    margin-top: 24px;
  }
}

.bsc-philosophy__box-text:nth-child(n+3) {
  margin-top: 24px;
}

.bsc-message {
  background-color: #fff;
  position: relative;
}

.bsc-message__circle-left {
  position: absolute;
  width: calc(317vw / 14.4);
  top: calc(-193vw / 14.4);
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bsc-message__circle-left {
    width: calc(170vw / 3.75);
    top: calc(-99vw / 3.75);
  }
}

.bsc-message__container {
  padding: calc(148vw / 14.4) 0 calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-message__container {
    padding: calc(40vw / 3.75) 0 calc(80vw / 3.75);
  }
}

.bsc-message__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bsc-message__title-jp {
    text-align: center;
    display: block;
  }
}

.bsc-message__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bsc-message__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.bsc-message__boxes {
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .bsc-message__boxes {
    margin-top: 32px;
    padding: 0 calc(20vw / 3.75);
  }
}

.bsc-message__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: calc(100vw / 14.4);
}

.bsc-message__box:nth-child(2n-1) {
  padding-left: calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-message__box:nth-child(2n-1) {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.bsc-message__box:nth-child(2n-1) > .bsc-message__img > img {
  border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 767px) {
  .bsc-message__box:nth-child(2n-1) > .bsc-message__img > img {
    border-radius: 20px;
  }
}

.bsc-message__img {
  width: calc(704vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-message__img {
    width: 100%;
  }
}

.bsc-message__text-box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-message__text-box {
    width: 100%;
    margin-top: 32px;
  }
}

.bsc-message__box-title {
  padding-top: 24px;
  border-top: 1px solid #014099;
  font-weight: bold;
  font-size: clamp(20px, calc(25vw / 14.4), 35px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .bsc-message__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.bsc-message__box-text {
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .bsc-message__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.bsc-message__box-name {
  font-size: clamp(10px, calc(16vw / 14.4), 26px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 20px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .bsc-message__box-name {
    font-size: calc(13vw / 3.75);
  }
}

.bsc-number {
  background-image: url(../img/component/component-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bsc-number__bg {
  position: absolute;
  top: calc(93vw / 14.4);
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  width: calc(1250vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__bg {
    width: calc(363vw / 3.75);
    top: calc(43vw / 3.75);
  }
}

.bsc-number__container {
  padding: calc(160vw / 14.4) calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__container {
    padding: calc(80vw / 3.75) 0;
  }
}

.bsc-number__boxes {
  margin: calc(138vw / 14.4) auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(1120vw / 14.4);
  gap: calc(115vw / 14.4) calc(34vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__boxes {
    margin-top: calc(44vw / 3.75);
    width: calc(335vw / 3.75);
    gap: calc(28vw / 3.75);
  }
}

.bsc-number__border-box {
  width: calc(350vw / 14.4);
  height: calc(411vw / 14.4);
  padding: calc(16vw / 14.4);
  background: -webkit-gradient(linear, left top, left bottom, from(#BFD9FE), to(#BFF8FE));
  background: linear-gradient(to bottom, #BFD9FE, #BFF8FE);
  border-radius: calc(40vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__border-box {
    width: 100%;
    height: calc(335vw / 3.75);
    padding: calc(16vw / 3.75);
    border-radius: calc(40vw / 3.75);
  }
}

.bsc-number__border-box:first-child .bsc-number__box-text-min {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .bsc-number__border-box:first-child .bsc-number__box-text-min {
    text-align: center;
  }
}

.bsc-number__box {
  position: relative;
  background-color: #fff;
  border-radius: calc(20vw / 14.4);
  z-index: 2;
  padding: calc(10vw / 14.4);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .bsc-number__box {
    padding: calc(10vw / 3.75);
    border-radius: calc(20vw / 3.75);
  }
}

.bsc-number__box-model {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(17vw / 14.4) calc(13vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__box-model {
    gap: calc(10vw / 3.75);
  }
}

.bsc-number__box-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: absolute;
  font-size: calc(24vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: calc(10vw / 14.4) calc(20vw / 14.4);
  width: 100%;
  top: calc(-38vw / 14.4);
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  border: 1px solid #014099;
  border-radius: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__box-title {
    padding: calc(8vw / 3.75) calc(10vw / 3.75);
    border-radius: calc(17vw / 3.75);
    font-size: calc(18vw / 3.75);
    line-height: 1.4;
    letter-spacing: 0.08em;
    top: calc(-28vw / 3.75);
  }
}

.bsc-number__img {
  width: calc(297vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__img {
    width: calc(283vw / 3.75);
  }
}

.bsc-number__box-text {
  font-size: calc(24vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #014099;
  margin-top: calc(24vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__box-text {
    font-size: calc(17vw / 3.75);
  }
}

.bsc-number__box-text > span {
  font-size: calc(63vw / 14.4);
  color: #FFA145;
  margin: 0 calc(11vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__box-text > span {
    font-size: calc(48vw / 3.75);
  }
}

.bsc-number__box-text-min {
  font-size: calc(13vw / 14.4);
  margin-top: calc(16vw / 14.4);
  font-weight: bold;
  letter-spacing: 1.8px;
  line-height: 1.7;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 767px) {
  .bsc-number__box-text-min {
    font-size: calc(11vw / 3.75);
  }
}

.bsc-number__boxes-min {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bsc-number__box-min {
  width: calc(141vw / 14.4);
  height: calc(141vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .bsc-number__box-min {
    width: calc(130vw / 3.75);
    height: calc(130vw / 3.75);
  }
}

.bsc-number__box-min > .bsc-number__box-text {
  color: #FFA145;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: calc(16vw / 14.4);
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .bsc-number__box-min > .bsc-number__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.bsc-number__box-min > .bsc-number__box-text > span {
  font-size: calc(28vw / 14.4);
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .bsc-number__box-min > .bsc-number__box-text > span {
    font-size: calc(16vw / 3.75);
  }
}

.bsc-number__box-min > .bsc-number__box-text-min {
  margin-top: 0;
  font-size: calc(11vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__box-min > .bsc-number__box-text-min {
    font-size: calc(11vw / 3.75);
  }
}

.bsc-number__img-min {
  width: calc(67vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bsc-number__img-min {
    width: calc(70vw / 3.75);
  }
}

.bsc-number__box-text-blue {
  background: -webkit-gradient(linear, left top, right top, from(#3681EA), to(#1F4984));
  background: linear-gradient(to right, #3681EA, #1F4984);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bns-strategy {
  background-color: #fff;
  position: relative;
}

.bns-strategy__container {
  padding: calc(148vw / 14.4) 0 calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-strategy__container {
    padding: calc(40vw / 3.75) 0 calc(80vw / 3.75);
  }
}

.bns-strategy__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bns-strategy__title-jp {
    text-align: center;
    display: block;
  }
}

.bns-strategy__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bns-strategy__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.bns-strategy__boxes {
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .bns-strategy__boxes {
    margin-top: 32px;
    padding: 0 calc(20vw / 3.75);
  }
}

.bns-strategy__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: calc(100vw / 14.4);
}

.bns-strategy__box:nth-child(2n-1) {
  padding-right: calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-strategy__box:nth-child(2n-1) {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bns-strategy__box:nth-child(2n-1) > .bns-strategy__img > img {
  border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 767px) {
  .bns-strategy__box:nth-child(2n-1) > .bns-strategy__img > img {
    border-radius: 20px;
  }
}

.bns-strategy__img {
  width: calc(704vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-strategy__img {
    width: 100%;
  }
}

.bns-strategy__img > img {
  aspect-ratio: 704 / 396;
  -o-object-fit: cover;
     object-fit: cover;
}

.bns-strategy__text-box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-strategy__text-box {
    width: 100%;
    margin-top: 32px;
  }
}

.bns-strategy__box-title {
  padding-top: 24px;
  border-top: 1px solid #014099;
  font-weight: bold;
  font-size: clamp(20px, calc(25vw / 14.4), 35px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .bns-strategy__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.bns-strategy__box-text {
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .bns-strategy__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.bns-marketing {
  background-image: url(../img/component/component-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bns-marketing__circle-right {
  position: absolute;
  width: calc(292vw / 14.4);
  top: calc(-60vw / 14.4);
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bns-marketing__circle-right {
    width: calc(162vw / 3.75);
    top: calc(-116vw / 3.75);
  }
}

.bns-marketing__container {
  padding: calc(148vw / 14.4) 0 calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-marketing__container {
    padding: calc(40vw / 3.75) 0 calc(80vw / 3.75);
  }
}

.bns-marketing__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bns-marketing__title-jp {
    text-align: center;
    display: block;
  }
}

.bns-marketing__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bns-marketing__title-en {
    text-align: center;
    font-size: calc(63vw / 3.75);
  }
}

.bns-marketing__boxes {
  position: relative;
  z-index: 2;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .bns-marketing__boxes {
    margin-top: 32px;
    padding: 0 calc(20vw / 3.75);
  }
}

.bns-marketing__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: calc(100vw / 14.4);
}

.bns-marketing__box:nth-child(2n-1) {
  padding-right: calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-marketing__box:nth-child(2n-1) {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bns-marketing__box:nth-child(2n-1) > .bns-marketing__img > img {
  border-radius: 0 20px 20px 0;
}

@media screen and (max-width: 767px) {
  .bns-marketing__box:nth-child(2n-1) > .bns-marketing__img > img {
    border-radius: 20px;
  }
}

.bns-marketing__box:nth-child(2n) {
  padding-left: calc(160vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-marketing__box:nth-child(2n) {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.bns-marketing__box:nth-child(2n) > .bns-marketing__img > img {
  border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 767px) {
  .bns-marketing__box:nth-child(2n) > .bns-marketing__img > img {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .bns-marketing__box:nth-child(n+2) {
    margin-top: 32px;
  }
}

.bns-marketing__img {
  width: calc(704vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-marketing__img {
    width: 100%;
  }
}

.bns-marketing__img > img {
  aspect-ratio: 704 / 396;
  -o-object-fit: cover;
     object-fit: cover;
}

.bns-marketing__text-box {
  width: calc(448vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-marketing__text-box {
    width: 100%;
    margin-top: 32px;
  }
}

.bns-marketing__box-title {
  padding-top: 24px;
  border-top: 1px solid #014099;
  font-weight: bold;
  font-size: clamp(20px, calc(25vw / 14.4), 35px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260a1;
}

@media screen and (max-width: 767px) {
  .bns-marketing__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.bns-marketing__box-text {
  font-size: clamp(10px, calc(15vw / 14.4), 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 32px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .bns-marketing__box-text {
    font-size: calc(13vw / 3.75);
  }
}

.bns-future {
  background-color: #fff;
  position: relative;
}

.bns-future__circle-left {
  position: absolute;
  width: calc(302vw / 14.4);
  bottom: calc(-98vw / 14.4);
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bns-future__circle-left {
    width: calc(163vw / 3.75);
    right: 0;
    left: unset;
    bottom: calc(-282vw / 3.75);
  }
}

.bns-future__container {
  padding: calc(80vw / 14.4) 0 0;
}

@media screen and (max-width: 767px) {
  .bns-future__container {
    padding: calc(80vw / 3.75) 0;
  }
}

.bns-future__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bns-future__title-jp {
    text-align: center;
    display: block;
  }
}

.bns-future__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bns-future__title-en {
    text-align: center;
    font-size: calc(54vw / 3.75);
  }
}

.bns-future__img-box {
  margin-top: 110px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bns-future__img-box {
    margin-top: 40px;
  }
}

.bns-future__img {
  display: block;
}

.bns-future__img-title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: calc(43vw / 14.4);
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: bold;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bns-future__img-title {
    top: calc(80vw / 3.75);
    left: calc(20vw / 3.75);
    bottom: unset;
    right: unset;
    font-size: calc(21vw / 3.75);
    line-height: 1.7;
  }
}

.bns-future__box {
  width: calc(770vw / 14.4);
  background-color: #fff;
  padding: calc(32vw / 14.4) calc(50vw / 14.4);
  margin: calc(-134vw / 14.4) auto 0;
  position: relative;
  z-index: 1;
  border-radius: calc(20vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-future__box {
    width: calc(345vw / 3.75);
    margin-top: calc(-169vw / 3.75);
    border-radius: calc(20vw / 3.75);
    border-top: none;
    padding: calc(32vw / 3.75) calc(50vw / 3.75);
  }
}

.bns-future__text-box {
  padding-top: 24px;
  border-top: 1px solid #014099;
}

@media screen and (max-width: 767px) {
  .bns-future__text-box {
    padding-top: 16px;
  }
}

.bns-future__text-box:nth-child(n+2) {
  margin-top: calc(63vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-future__text-box:nth-child(n+2) {
    margin-top: calc(44vw / 3.75);
  }
}

.bns-future__box-title {
  color: #1260A1;
  font-size: calc(25vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .bns-future__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.bns-future__box-text {
  font-weight: 500;
  font-size: calc(15vw / 14.4);
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: calc(63vw / 14.4);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .bns-future__box-text {
    font-size: calc(13vw / 3.75);
    margin-top: 24px;
  }
}

.bns-future__under {
  margin-top: calc(80vw / 14.4);
}

.bns-environment {
  background-color: #fff;
  position: relative;
}

.bns-environment__circle-right {
  position: absolute;
  width: calc(302vw / 14.4);
  top: calc(-100vw / 14.4);
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .bns-environment__circle-right {
    width: calc(163vw / 3.75);
    right: 0;
    left: unset;
    bottom: calc(-282vw / 3.75);
  }
}

.bns-environment__container {
  padding: calc(120vw / 14.4) 0 calc(100vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-environment__container {
    padding: calc(80vw / 3.75) 0;
  }
}

.bns-environment__title-box {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bns-environment__title-jp {
    text-align: center;
    display: block;
  }
}

.bns-environment__title-en {
  font-size: calc(140vw / 14.4);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .bns-environment__title-en {
    text-align: center;
    font-size: calc(54vw / 3.75);
  }
}

.bns-environment__boxes {
  margin: 56px auto 0;
  width: calc(1120vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-environment__boxes {
    width: 100%;
    padding: 0 calc(20vw / 3.75);
  }
}

.bns-environment__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .bns-environment__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(16vw / 3.75);
  }
}

.bns-environment__box:nth-child(n+2) {
  margin-top: 56px;
}

.bns-environment__img {
  width: calc(532vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-environment__img {
    width: 100%;
  }
}

.bns-environment__text-box {
  width: calc(532vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-environment__text-box {
    width: 100%;
  }
}

.bns-environment__box-title {
  font-size: calc(25vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #fff;
  padding: 10px;
  text-align: center;
  background-color: #0077CC;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .bns-environment__box-title {
    font-size: calc(18vw / 3.75);
  }
}

.bns-environment__box-title-min {
  font-size: calc(25vw / 14.4);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #1260A1;
  margin-top: calc(29vw / 14.4);
}

@media screen and (max-width: 767px) {
  .bns-environment__box-title-min {
    font-size: calc(16vw / 3.75);
    margin-top: calc(32vw / 3.75);
  }
}

.bns-environment__box-list {
  margin-top: 8px;
}

.bns-environment__box-item {
  list-style: disc inside;
}

.bns-environment__box-text {
  font-weight: 500;
  font-size: calc(15vw / 14.4);
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .bns-environment__box-text {
    font-size: calc(13vw / 3.75);
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
/*# sourceMappingURL=style.css.map */