@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  color: #333333;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header.scrolled {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.c-header.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-header .inner-block {
  max-width: 1920px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-header .logo {
  max-width: 194px;
}
.c-header .logo img {
  display: block;
  width: 100%;
}
.c-header .menu-wrap {
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  z-index: 10;
}
.c-header .menu-wrap.active {
  right: 0;
}
.c-header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header .menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.c-header .menu-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-header .menu-wrap.is-open {
  opacity: 1;
  pointer-events: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .menu-wrap .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .menu-wrap .menu a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}
.c-header .c-btn01 {
  min-width: inherit !important;
}
.c-header .btn-menu {
  width: 30px;
  height: 30px;
  z-index: 6;
  position: relative;
  cursor: pointer;
  display: none;
}
.c-header .btn-menu .line {
  background: #333333;
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .btn-menu.active .line {
  background: #fff;
}
.c-header .btn-menu .line:nth-of-type(1) {
  top: 15%;
}
.c-header .btn-menu .line:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-header .btn-menu .line:nth-of-type(3) {
  bottom: 15%;
}
.c-header .btn-menu.active .line:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-header .btn-menu.active .line:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-10px);
          transform: translateY(-50%) translateX(-10px);
}
.c-header .btn-menu.active .line:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.c-footer {
  background: #fff;
  padding-block: 41px 22px;
}
.c-footer .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer .nav-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 93px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-footer .nav-wrap a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .address {
  margin-top: 5px;
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
}
.c-footer .copy {
  margin-top: 24px;
  font-size: 12px;
}

.c-ttl01 {
  margin-bottom: 43px;
}
.c-ttl01 .en {
  font-weight: 800;
  font-size: 26px;
  color: #4586de;
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-ttl01 .jp {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.04em;
  display: block;
}
.c-ttl01.white .en, .c-ttl01.white .jp {
  color: #fff;
}
.c-ttl01.tac {
  text-align: center;
}

.c-ttl02 {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}
.c-ttl02.fz22 {
  font-size: 22px;
}
.c-ttl02.fz30 {
  font-size: 30px;
}
.c-ttl02.c-bl {
  color: #4586de;
}

.c-ttl03 {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 1em;
}
.c-ttl03::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(180deg, #6FE5E6, #4184E0);
}

.c-ttl04 {
  padding-right: 70px;
  border-right: 1px solid #4586de;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-ttl04 .jp {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.4em;
}
.c-ttl04 .en {
  font-size: 26px;
  font-weight: bold;
  color: #4586de;
  line-height: 1em;
}

.c-ttl05 {
  font-weight: bold;
}
.c-ttl05 .en {
  color: #4586de;
  font-size: 90px;
  display: block;
  line-height: 1.2em;
}

.c-ttl06 {
  position: relative;
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 34px;
}
.c-ttl06::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 3px;
  display: block;
  background-color: #4586de;
}
.c-ttl06 .jp {
  display: block;
  font-size: 26px;
}

.c-btn01 {
  padding: 8px 20px;
  background-color: #4586de;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size: 18px;
  border-radius: 25px;
  border: 1px solid #4586de;
  min-width: 260px;
}
.c-btn01 .txt {
  width: 100%;
  position: relative;
  z-index: 4;
}
.c-btn01.w-ico {
  position: relative;
  padding-left: 66px;
}
.c-btn01.w-ico span:not(.txt) {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 20px;
  z-index: 4;
}
.c-btn01.w-ico span:not(.txt)::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01.w-ico-r {
  position: relative;
  padding-right: 54px;
}
.c-btn01.w-ico-r span:not(.txt) {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  z-index: 4;
}
.c-btn01.w-ico-r span:not(.txt)::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01 .contact::before {
  content: "";
  -webkit-mask: url(../img/common/ico-contact.svg) no-repeat center/contain;
          mask: url(../img/common/ico-contact.svg) no-repeat center/contain;
  background-color: #fff;
  display: block;
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
}
.c-btn01 .redirect::before {
  content: "";
  -webkit-mask: url(../img/common/ico-redirect.svg) no-repeat center/contain;
          mask: url(../img/common/ico-redirect.svg) no-repeat center/contain;
  background-color: #fff;
  display: block;
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
}
.c-btn01.bg-gra {
  position: relative;
  background-color: inherit;
  z-index: 2;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(90deg, #6FE5E6, #4184E0);
}
.c-btn01.bg-gra::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(180deg, #6FE5E6, #4184E0);
  z-index: 3;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.c-btn01.bg-bl {
  background-color: #333333;
  color: #fff;
  border: 1px solid #333333;
}
.c-btn01.bg-wh {
  background-color: #fff;
  color: #4586de;
  border: 1px solid #4586de;
}
.c-btn01.bg-wh02 {
  background-color: #fff;
  color: #333333;
  border: 1px solid #333333;
}
.c-btn01.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn01.fz-26 {
  font-size: 26px;
  max-width: 360px;
  width: 100%;
  padding: 14px;
  padding-left: 130px;
}
.c-btn01.fz-26.w-ico span:not(.txt) {
  left: 80px;
  width: 36px;
  height: 36px;
}
.c-btn01.fz-26.w-ico span:not(.txt)::before {
  width: 36px;
  height: 36px;
}
.c-btn01.fz-26.bg-gra::before, .c-btn01.fz-26.bg-gra::after {
  border-radius: 50px;
}
.c-btn01.fz-26.bg-gra {
  border-radius: 50px;
}

.c-btn02 {
  font-size: 22px;
  font-weight: bold;
  color: #4586de;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}
.c-btn02 .icon {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #4586de;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  aspect-ratio: 1/1;
}
.c-btn02 .icon::after {
  content: "";
  -webkit-mask: url(../img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(../img/common/ico-arrow.svg) no-repeat center/contain;
  background-color: #fff;
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 10px;
}

.c-btn03 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 20px;
  font-size: 15px;
  border: 1px solid #333333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.en {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: bold;
}

.inner-block.narrow01 {
  max-width: 864px;
}

.c-sec {
  padding-block: 77px;
}

.bc-g01 {
  background-color: #f9f9f9;
}

.bc-g03 {
  background-color: #f1f3f9;
}

.bc-w01 {
  background-color: #fff;
}

.bc-gra-pale {
  background: -webkit-gradient(linear, left top, right top, from(#E2FAFA), to(#d6e2f2));
  background: linear-gradient(90deg, #E2FAFA, #d6e2f2);
}

.c-logo-slider {
  padding-block: 20px 40px;
}
.c-logo-slider .logo-slider {
  overflow: hidden;
}
.c-logo-slider .logo-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: logo-slide 60s linear infinite;
          animation: logo-slide 60s linear infinite;
  will-change: transform;
}
.c-logo-slider .logo-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 60px;
}
.c-logo-slider .logo-group img {
  display: block;
  height: 35px;
  width: auto;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  margin: auto;
}
.c-logo-slider .logo-group img.h67 {
  height: 67px;
}
.c-logo-slider .logo-group img.h57 {
  height: 57px;
}
.c-logo-slider .logo-group img.h50 {
  height: 50px;
}
.c-logo-slider .logo-group img.h42 {
  height: 42px;
}
.c-logo-slider .logo-group img.h38 {
  height: 38px;
}
.c-logo-slider .logo-group img.h34 {
  height: 34px;
}
.c-logo-slider .logo-group img.h32 {
  height: 32px;
}
.c-logo-slider .logo-group img.h26 {
  height: 26px;
}
.c-logo-slider .logo-group img.h24 {
  height: 24px;
}
.c-logo-slider .logo-group img.h17 {
  height: 17px;
}
.c-logo-slider .bottom .logo-track {
  animation-direction: reverse;
}
@-webkit-keyframes logo-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes logo-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.c-num-list {
  list-style: none;
  padding: 0;
  counter-reset: num-item;
}
.c-num-list li .num {
  counter-increment: num-item;
  position: relative;
  padding-left: 1.5em;
}
.c-num-list li .num::before {
  content: counter(num-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #4586de;
}

.c-dots-list > li {
  position: relative;
  padding-left: 1.4em;
}
.c-dots-list > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.5em;
  width: 6px;
  height: 6px;
  background: #4586de;
  border-radius: 50%;
}
.c-dots-list > li + li {
  margin-top: 0 !important;
}

.c-table01 {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}
.c-table01 th, .c-table01 td {
  padding: 8px 16px;
  text-align: left;
}
.c-table01 th {
  background-color: #4586de;
  color: #fff;
}
.c-table01 th:nth-child(1) {
  width: 300px;
}
.c-table01 td {
  background-color: #fff;
}
.c-table01 tr:nth-child(n+2) td:nth-child(1) {
  background-color: #f1f3f9;
  font-weight: bold;
}
.c-table01 tr + tr {
  border-top: 1px solid #ececec;
}

.c-table02 {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}
.c-table02 th {
  width: 120px;
}
.c-table02 th, .c-table02 td {
  padding: 10px 16px;
  text-align: left;
  vertical-align: top;
}
.c-table02 td p + p {
  margin-top: 8px;
}
.c-table02 tr + tr {
  border-top: 1px dashed #ececec;
}

.tel {
  font-weight: bold;
  color: #4586de;
}

.c-kv {
  padding-block: 105px 60px;
}

.c-cta-sec {
  background: -webkit-gradient(linear, left top, right top, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(90deg, #6FE5E6, #4184E0);
  text-align: center;
}
.c-cta-sec .c-ttl01 {
  margin-bottom: 10px;
}
.c-cta-sec .c-btn01 {
  margin: 45px auto 0;
}

.c-cta-sec.c-cta-support .inner-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}

.c-link-txt {
  color: #4586de;
  text-decoration: underline;
  display: inline-block;
}
.c-link-txt:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.c-link-txt[target=_blank] {
  position: relative;
  padding-right: 1.25em;
}
.c-link-txt[target=_blank]::after {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-redirect.svg") no-repeat center/contain;
          mask: url("../img/common/ico-redirect.svg") no-repeat center/contain;
  background: currentColor;
  width: 1em;
  height: 1.8em;
  top: 0;
  right: 0;
}

.mv {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mv .c-kv {
  position: relative;
  z-index: 2;
}

.c-message-sec {
  position: absolute;
  inset: 0;
  padding-block: 100px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-message-sec .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-message-sec .message-txt {
  font-size: 52px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(90deg, #6FE5E6, #4184E0);
  background: -webkit-linear-gradient(0deg, #6FE5E6, #4184E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: auto;
  line-height: 1.6em;
}

.c-news-wrap {
  padding: 40px;
  background-color: #f9f9f9;
}
.c-news-wrap .cont + .cont {
  border-top: 1px solid #ececec;
}
.c-news-wrap .cont > a {
  padding: 24px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}
.c-news-wrap .cont > a .img-wrap {
  width: 300px;
  overflow: hidden;
  position: relative;
  background-color: #ececec;
}
.c-news-wrap .cont > a .img-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-news-wrap .cont > a .txt-wrap .date {
  font-size: 14px;
  font-weight: bold;
  color: #4586de;
}
.c-news-wrap .cont > a .txt-wrap .ttl {
  font-size: 18px;
  font-weight: bold;
}
.c-news-wrap .cont > a .txt-wrap .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ececec;
  padding: 16px;
}
.c-pagination .prev, .c-pagination .next {
  position: relative;
  background-color: #4586de;
}
.c-pagination .prev::before, .c-pagination .next::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  -webkit-mask: url(../img/common/ico-arrow.svg) no-repeat center/contain;
          mask: url(../img/common/ico-arrow.svg) no-repeat center/contain;
  background-color: #fff;
}
.c-pagination .prev::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.c-pagination .current {
  color: #4586de;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-sec {
  padding-block: 238px 175px;
  background: url("../img/home/mv_bg.jpg.webp?20260313") no-repeat right/cover;
}
.home .mv-sec .mv-ttl {
  font-size: 80px;
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 60px;
}
.home .mv-sec .mv-ttl .blue {
  color: #4586de;
}
.home .service-sec .cont-wrap {
  display: grid;
  grid-template-columns: 525px 1fr;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .service-sec .cont-wrap .c-btn01 {
  margin-top: 35px;
}
.home .service-sec .gray-cont {
  margin-top: 10px;
  padding: 28px 30px;
  background-color: #ececec;
  display: grid;
  grid-template-columns: 1fr 181px;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.home .service-sec .gray-cont .desc {
  font-size: 15px;
  margin-top: 5px;
}
.home .service-sec .gray-cont .img-wrap {
  margin: 2px auto 0;
}
.home .service-sec .gray-cont + .img-wrap {
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  max-height: 200px;
}
.home .service-sec .gray-cont + .img-wrap::before {
  content: "";
  position: absolute;
  inset: auto;
  font-size: 20px;
  color: #fff;
  background-color: #fff;
  opacity: 0.4;
  width: 100%;
  height: 100%;
}
.home .service-sec .gray-cont + .img-wrap::after {
  content: "coming soon";
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 24px;
  color: #fff;
}
.home .about-sec {
  position: relative;
  z-index: 2;
}
.home .about-sec .cont-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 50px;
}
.home .about-sec .cont-wrap .c-btn01 {
  margin-top: 40px;
}
.home .news-sec {
  position: relative;
  z-index: 1;
}
.home .news-sec::before {
  content: "";
  background: url("../img/home/news-bg.png.webp") no-repeat center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1147/621;
  width: 59.7395833333vw;
}
.home .news-sec .news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 1fr));
  gap: 43px;
}
.home .news-sec .news-list li a .img-wrap {
  position: relative;
  padding-top: 67%;
  overflow: hidden;
}
.home .news-sec .news-list li a .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .news-sec .news-list li a .txt-wrap {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 32px 40px;
  background-color: #fff;
}
.home .news-sec .news-list li a .txt-wrap .date {
  font-size: 15px;
  color: #4586de;
  margin-bottom: 16px;
}
.home .news-sec .news-list li a .txt-wrap .ttl {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: bold;
  margin-bottom: 25px;
}
.home .news-sec .news-slider-wrap {
  position: relative;
}
.home .news-sec .news-slider-wrap .swiper {
  width: 100%;
  overflow: hidden;
}
.home .news-sec .news-slider-wrap .swiper-slide {
  width: 100% !important;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home .news-sec .news-slider-wrap .swiper-button-prev,
.home .news-sec .news-slider-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  background-color: #35bde9;
  width: 30px;
  height: 30px;
  padding: 8px;
  border-radius: 50%;
}
.home .news-sec .news-slider-wrap .swiper-button-prev {
  left: -15px;
}
.home .news-sec .news-slider-wrap .swiper-button-next {
  right: -15px;
}
.home .news-sec .c-btn01 {
  margin: 48px auto 0;
}
.home .recruit-sec {
  background: -webkit-gradient(linear, left top, right top, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(90deg, #6FE5E6, #4184E0);
}
.home .recruit-sec .c-ttl01 .en, .home .recruit-sec .c-ttl01 .jp {
  color: #fff;
}
.home .recruit-sec .cont-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 40px;
}
.home .recruit-sec .cont-wrap .img-area {
  position: relative;
}
.home .recruit-sec .cont-wrap .img-area .img01 {
  margin-left: 0;
  max-width: 465px;
  width: 100%;
  display: block;
}
.home .recruit-sec .cont-wrap .img-area .img02 {
  margin-left: auto;
  margin-right: 0;
  max-width: 187px;
  width: 100%;
  display: block;
  margin-top: -110px;
}
.home .recruit-sec .cont-wrap .c-btn01 {
  margin-top: 40px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.service .about-sec {
  background: -webkit-gradient(linear, left top, right top, from(#E2FAFA), to(#d6e2f2));
  background: linear-gradient(90deg, #E2FAFA, #d6e2f2);
  position: relative;
  overflow: hidden;
}
.service .about-sec::before {
  content: "";
  background: url("../img/service/about-bg.png.webp") no-repeat right/cover;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  aspect-ratio: 992/500;
  height: 100%;
  width: fit-content;
}
.service .about-sec .inner-block {
  position: relative;
  z-index: 2;
}
.service .about-sec .txt {
  max-width: 650px;
}
.service .service-sec .inner-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.service .service-sec .gray-cont {
  margin-top: 10px;
  padding: 34px 35px 40px 60px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 242px;
  gap: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.service .service-sec .gray-cont .desc {
  font-size: 15px;
  margin-top: 5px;
}
.service .service-sec .gray-cont .img-wrap img {
  display: block;
  width: 100%;
}
.service .service-sec .gray-cont .c-btn01 {
  margin-top: 20px;
}

/* -----------------------------------------------
* support Module
* supportページ用
-------------------------------------------------- */
.support .consulting-sec .cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.support .consulting-sec .cont .img-area {
  text-align: center;
}
.support .consulting-sec .cont .txt-area .desc {
  font-size: 16px;
  line-height: 1.875;
}
.support .consulting-sec .cont .txt-area .desc + .desc {
  margin-top: 0.8em;
}
.support .advantage-sec .cont + .cont {
  margin-top: 70px;
}
.support .advantage-sec .cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "ttl img" "txt img";
  gap: 0 28px;
}
.support .advantage-sec .cont .img-area {
  grid-area: img;
  text-align: center;
}
.support .advantage-sec .cont .img-area img {
  width: 100%;
}
.support .advantage-sec .cont .cont-ttl {
  grid-area: ttl;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  margin-bottom: 42px;
}
.support .advantage-sec .cont .cont-ttl .num {
  font-size: 90px;
  line-height: 1;
  color: #4586de;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.support .advantage-sec .cont .cont-ttl .grd {
  margin-bottom: 0;
  padding-bottom: 14px;
}
.support .advantage-sec .cont .cont-ttl .grd::before {
  bottom: 9px;
}
.support .advantage-sec .cont .cont-ttl .grd .jp {
  background: -webkit-gradient(linear, left top, right top, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(90deg, #6FE5E6, #4184E0);
  background: -webkit-linear-gradient(0deg, #6FE5E6, #4184E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.02em;
}
.support .advantage-sec .cont .desc {
  grid-area: txt;
  font-size: 16px;
  line-height: 1.875;
}
.support .advantage-sec .cont:nth-child(1) .img-area img {
  max-width: 474px;
}
.support .advantage-sec .cont:nth-child(2) .img-area img {
  max-width: 418px;
}
.support .advantage-sec .cont:nth-child(3) .img-area img {
  max-width: 459px;
}
.support .standard-sec .cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.support .standard-sec .cont .tag-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.support .standard-sec .cont .tag-list > li {
  border: 1px solid #35bde9;
  background: #fff;
  padding: 0 2px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
.support .standard-sec .cont .txt-area .desc {
  font-size: 16px;
  line-height: 1.875;
}
.support .bg-area {
  background: url(../img/about/bg01.png.webp) no-repeat -590px calc(100% - 676px - 80px - 80px)/auto 676px, url(../img/about/bg01.png.webp) no-repeat calc(100% + 612px) calc(100% - 80px)/auto 676px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.recruit .c-sec .inner-block * + * {
  margin-top: 24px;
}
.recruit .c-sec .inner-block .job-wrap {
  margin-top: 40px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.policy .c-sec .inner-block * + * {
  margin-top: 24px;
}
.policy .sign {
  text-align: right;
}
.policy .fz18 {
  font-size: 18px;
  font-weight: bold;
}

/* -----------------------------------------------
* contact Module
* contactページ用
-------------------------------------------------- */
.contact .c-kv .c-ttl04 {
  margin-bottom: 40px;
}
.contact .kv-desc + .kv-desc {
  margin-top: 1em;
}
.contact .form-area {
  margin-top: 60px;
  padding: 60px 40px;
}
.contact .form-area .q-wrap + .q-wrap,
.contact .form-area .q-wrap + .confirm-wrap,
.contact .form-area .confirm-wrap + .q-wrap,
.contact .form-area .confirm-wrap + .confirm-wrap {
  margin-top: 16px;
}
.contact .form-area .q-wrap,
.contact .form-area .confirm-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .form-area .q-wrap.has-required .contact-label::after,
.contact .form-area .q-wrap.has-required .confirm-ttl::after,
.contact .form-area .confirm-wrap.has-required .contact-label::after,
.contact .form-area .confirm-wrap.has-required .confirm-ttl::after {
  content: "*";
  color: red;
  margin-left: 2px;
}
.contact .form-area .contact-label,
.contact .form-area .confirm-ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.contact .form-area .q-wrap.is-error .error-txt {
  display: block;
  margin-top: 4px;
}
.contact .form-area .q-wrap.is-error input,
.contact .form-area .q-wrap.is-error textarea,
.contact .form-area .q-wrap.is-error select {
  border-color: red;
}
.contact .form-area .q-wrap.privacy-wrap .checkbox-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact .form-area .q-wrap.privacy-wrap .error-txt {
  text-align: center;
}
.contact .form-area .q-wrap .label-area + .input-area {
  margin-top: 8px;
}
.contact .form-area .q-wrap input,
.contact .form-area .q-wrap textarea,
.contact .form-area .q-wrap select {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background-color, border-color;
  transition-property: background-color, border-color;
  background-color: #fff;
}
.contact .form-area .q-wrap input,
.contact .form-area .q-wrap textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  font-weight: 400;
}
.contact .form-area .q-wrap input:focus,
.contact .form-area .q-wrap textarea:focus {
  outline: none;
  border-color: #007bff;
}
.contact .form-area .q-wrap textarea {
  resize: vertical;
}
.contact .form-area .q-wrap select {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}
.contact .form-area .q-wrap select:focus {
  outline: none;
  border-color: #007bff;
}
.contact .form-area .q-wrap .checkbox-wrap .input-area {
  width: 20px;
  height: 1.8em;
  position: relative;
}
.contact .form-area .q-wrap .checkbox-wrap .input-area:has(input[type=checkbox])::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid #4586de;
  border-bottom: 2px solid #4586de;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.contact .form-area .q-wrap .checkbox-wrap .input-area:has(input[type=checkbox]):has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.contact .form-area .q-wrap input[type=checkbox],
.contact .form-area .q-wrap input[type=radio] {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  padding: 0;
  position: absolute;
  inset: 0;
  margin: auto;
}
.contact .form-area .q-wrap input[type=checkbox]:hover,
.contact .form-area .q-wrap input[type=radio]:hover {
  background: #f9f9f9;
}
.contact .form-area .q-wrap input[type=tel] {
  color: #333333;
  text-decoration: none !important;
}
.contact .form-area .q-wrap .error-txt {
  color: red;
  font-size: 12px;
}
.contact .form-area .q-wrap:has(select) .input-area {
  position: relative;
}
.contact .form-area .q-wrap:has(select) .input-area::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #4586de;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.contact .form-area .confirm-wrap + .confirm-wrap {
  padding-top: 16px;
}
.contact .form-area .confirm-wrap {
  padding-bottom: 16px;
  border-bottom: 1px solid #ececec;
}
.contact .form-area .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.contact .form-area .input-block,
.contact .form-area .confirm-block {
  max-width: 900px;
  margin-inline: auto;
}

.contact.complete .kv-desc {
  text-align: center;
}
.contact.complete .c-btn01 {
  margin-top: 40px;
  margin-inline: auto;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.about .detail-sec {
  position: relative;
}
.about .detail-sec::before {
  content: "";
  background: url("../img/about/bg01.png.webp") no-repeat right/cover;
  display: block;
  position: absolute;
  inset: 0;
  aspect-ratio: 1737/1083;
  margin: auto;
  width: calc(100% - 184px);
  height: auto;
}
.about .detail-sec .cont-block + .cont-block {
  margin-top: 55px;
}
.about .detail-sec .cont-block p + * {
  margin-top: 36px;
}
.about .message-sec {
  position: relative;
}
.about .message-sec::before, .about .message-sec::after {
  content: "";
  display: block;
  position: absolute;
  height: auto;
  z-index: 1;
}
.about .message-sec::before {
  background: url("../img/about/bg02.png.webp") no-repeat right/contain;
  top: 0;
  right: 0;
  aspect-ratio: 523/676;
  width: 27.2395833333vw;
}
.about .message-sec::after {
  background: url("../img/about/bg03.png.webp") no-repeat left/contain;
  bottom: 0;
  left: 0;
  aspect-ratio: 456/676;
  width: 23.75vw;
}
.about .message-sec .cont-wrap {
  position: relative;
  z-index: 2;
}
.about .message-sec .cont-wrap:has(.img-wrap) {
  display: grid;
  grid-template-columns: 20.8333333333vw 1fr;
  gap: 5.78125vw;
}
.about .message-sec .cont-wrap .txt-wrap p + p {
  margin-top: 35px;
}
.about .message-sec .cont-wrap .txt-wrap .sign {
  text-align: right;
}
.about .message-sec .cont-wrap .txt-wrap .name {
  font-size: 20px;
  font-weight: bold;
}
.about .access-sec .map {
  width: 100%;
  height: 392px;
}
.about .access-sec .c-table02 {
  margin-top: 50px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.news .news-detail-sec .blog-wrap {
  padding: 40px 40px;
}
.news .news-detail-sec .blog-wrap * + * {
  margin-top: 24px !important;
}
.news .news-detail-sec .blog-wrap .ttl-wrap {
  border-bottom: 1px solid #4586de;
  padding-bottom: 16px;
}
.news .news-detail-sec .blog-wrap .ttl-wrap .date {
  margin-top: 4px !important;
  font-size: 14px;
  font-weight: bold;
  color: #4586de;
}
.news .news-detail-sec .blog-wrap h1 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.8em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news .news-detail-sec .blog-wrap h2 {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 1em;
}
.news .news-detail-sec .blog-wrap h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#6FE5E6), to(#4184E0));
  background: linear-gradient(180deg, #6FE5E6, #4184E0);
}
.news .news-detail-sec .blog-wrap h3 {
  position: relative;
  font-weight: bold;
  color: #4586de;
  font-size: 20px;
  padding-left: 1em;
}
.news .news-detail-sec .blog-wrap h3::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #4586de;
}
.news .news-detail-sec .blog-wrap img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
}
.news .news-detail-sec .blog-wrap a {
  text-decoration: underline;
  color: #4586de;
  font-weight: bold;
}
.news .news-detail-sec .blog-wrap a[target=_blank] {
  position: relative;
  padding-right: 1.25em;
}
.news .news-detail-sec .blog-wrap a[target=_blank]::after {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-redirect.svg") no-repeat center/contain;
          mask: url("../img/common/ico-redirect.svg") no-repeat center/contain;
  background: currentColor;
  width: 1em;
  height: 1.8em;
  top: 0;
  right: 0;
}
.news .news-detail-sec .blog-wrap ul > li {
  position: relative;
  padding-left: 1.4em;
}
.news .news-detail-sec .blog-wrap ul > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.5em;
  width: 6px;
  height: 6px;
  background: #4586de;
  border-radius: 50%;
}
.news .news-detail-sec .blog-wrap ul > li + li {
  margin-top: 0 !important;
}
.news .news-detail-sec .blog-wrap ol {
  counter-reset: number 0;
}
.news .news-detail-sec .blog-wrap ol > li {
  position: relative;
  padding-left: 1.4em;
}
.news .news-detail-sec .blog-wrap ol > li::before {
  counter-increment: number 1;
  content: counter(number) "";
  position: absolute;
  left: 0.4em;
  color: #4586de;
  font-weight: 700;
}
.news .news-detail-sec .blog-wrap ol > li + li {
  margin-top: 0 !important;
}
.news .news-detail-sec .c-btn01 {
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pc {
    display: none !important;
  }
  .c-header {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .c-header .logo {
    max-width: 125px;
  }
  .c-header .menu-wrap {
    background-color: #4586de;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
  }
  .c-header .menu-wrap {
    padding: 120px 20px 80px 30px;
    max-height: calc(var(--vh) * 100 + 0px);
    overflow: auto;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 200px;
  }
  .c-header .menu-wrap .menu {
    display: block;
  }
  .c-header .menu-wrap .menu a {
    border-bottom: 1px solid #fff;
    display: block;
    width: 100%;
    padding-block: 10px;
    color: #fff;
    font-size: 16px;
  }
  .c-header .c-btn01 {
    margin-top: 55px;
    border: 1px solid #fff;
    padding-block: 10px;
  }
  .c-header .btn-menu {
    display: block;
    z-index: 11;
  }
  .c-footer {
    padding-block: 20px 10px;
  }
  .c-footer .inner-block {
    text-align: center;
    display: block;
  }
  .c-footer .nav-wrap {
    margin-top: 28px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 13px;
  }
  .c-footer .address {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .c-footer .copy {
    margin-top: 15px;
    font-size: 10px;
  }
  .c-ttl01 {
    margin-bottom: 24px;
  }
  .c-ttl01 .en {
    font-size: 14px;
  }
  .c-ttl01 .jp {
    font-size: 28px;
  }
  .c-ttl02 {
    margin-bottom: 6px;
    font-size: 16px;
  }
  .c-ttl02.fz22 {
    font-size: 16px;
  }
  .c-ttl02.fz30 {
    font-size: 24px;
    line-height: 1.4em;
  }
  .c-ttl03 {
    margin-bottom: 6px;
    font-size: 14px;
  }
  .c-ttl04 {
    display: block;
    padding-right: 16px;
  }
  .c-ttl04 .jp {
    font-size: 23px;
  }
  .c-ttl04 .en {
    display: block;
    margin-top: 8px;
    font-size: 15px;
  }
  .c-ttl05 .en {
    font-size: 45px;
  }
  .c-ttl06 {
    padding-bottom: 12px;
    margin-bottom: 28px;
  }
  .c-ttl06::before {
    width: 30px;
    height: 3px;
  }
  .c-ttl06 .jp {
    line-height: 1.5em;
    font-size: 16px;
  }
  .c-btn01 {
    font-size: 14px;
    padding: 7px 16px 6px;
    min-width: 170px;
    margin: auto;
  }
  .c-btn01.w-ico {
    padding-left: 50px;
  }
  .c-btn01.w-ico span:not(.txt) {
    right: 8px;
  }
  .c-btn01.w-ico-r {
    padding-right: 40px;
  }
  .c-btn01.w-ico-r span:not(.txt) {
    right: 12px;
  }
  .c-btn01.fz-26 {
    font-size: 18px;
    padding-left: 70px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-block: 8px;
    min-width: 210px;
  }
  .c-btn01.fz-26.w-ico span:not(.txt) {
    width: 25px;
    height: 25px;
    left: 36px;
  }
  .c-btn01.fz-26.w-ico span:not(.txt)::before {
    width: 25px;
    height: 25px;
  }
  .c-btn02 {
    font-size: 18px;
  }
  .c-btn02 .icon {
    width: 20px;
    height: 20px;
  }
  .c-btn02 .icon::after {
    width: 3px;
    height: 5px;
  }
  .c-btn03 {
    font-size: 13px;
    padding: 8px 15px;
    margin: auto;
  }
  .c-sec {
    padding-block: 40px;
  }
  .c-logo-slider {
    padding-block: 15px;
  }
  .c-logo-slider .logo-track {
    -webkit-animation: logo-slide 40s linear infinite;
            animation: logo-slide 40s linear infinite;
  }
  .c-logo-slider .logo-group {
    gap: 30px;
    margin-right: 30px;
  }
  .c-logo-slider .logo-group img.h67 {
    height: 34px;
  }
  .c-logo-slider .logo-group img.h57 {
    height: 28px;
  }
  .c-logo-slider .logo-group img.h50 {
    height: 25px;
  }
  .c-logo-slider .logo-group img.h42 {
    height: 21px;
  }
  .c-logo-slider .logo-group img.h38 {
    height: 19px;
  }
  .c-logo-slider .logo-group img.h34 {
    height: 17px;
  }
  .c-logo-slider .logo-group img.h32 {
    height: 16px;
  }
  .c-logo-slider .logo-group img.h26 {
    height: 13px;
  }
  .c-logo-slider .logo-group img.h24 {
    height: 12px;
  }
  .c-logo-slider .logo-group img.h17 {
    height: 9px;
  }
  .c-logo-slider .bottom {
    margin-top: 10px;
  }
  .c-table01 {
    font-size: 12px;
  }
  .c-table01 th, .c-table01 td {
    padding: 4px 8px;
  }
  .c-table01 th:nth-child(1) {
    width: 30%;
  }
  .c-table02 {
    font-size: 14px;
  }
  .c-table02 th {
    width: 25%;
  }
  .c-table02 th, .c-table02 td {
    padding: 10px 2px;
  }
  .c-table02 td p {
    line-height: 1.4em;
  }
  .c-table02 td p + p {
    margin-top: 12px;
  }
  .tel {
    text-decoration: underline;
  }
  .c-kv {
    padding-block: 100px 40px;
  }
  .c-cta-sec {
    padding-block: 60px 80px;
  }
  .c-cta-sec .c-btn01 {
    margin-top: 16px;
  }
  .c-cta-sec.c-cta-support .inner-block {
    gap: 30px;
  }
  .c-message-sec {
    padding-block: 50px 100px;
  }
  .c-message-sec .message-txt {
    font-size: 27px;
    margin: 0;
    line-height: 1.4em;
  }
  .c-news-wrap {
    padding: 24px 8px;
  }
  .c-news-wrap .cont > a .txt-wrap .date {
    font-size: 12px;
  }
  .c-news-wrap .cont > a .txt-wrap .ttl {
    font-size: 16px;
    line-height: 1.4em;
    margin-bottom: 4px;
  }
  .c-news-wrap .cont > a .txt-wrap .desc {
    line-height: 1.4em;
  }
  .c-pagination {
    gap: 8px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 14px;
  }
  .c-pagination .page-numbers {
    width: 24px;
    height: 24px;
    padding: 8px;
  }
  .home .mv-sec {
    padding-block: 205px 165px;
    background: url("../img/home/mv_bg_sp.jpg.webp?20260313") no-repeat right/cover;
  }
  .home .mv-sec .mv-ttl {
    font-size: 35px;
    margin-bottom: 45px;
  }
  .home .mv-sec .inner-block {
    padding-left: 35px;
    padding-right: 35px;
  }
  .home .mv-sec .c-btn01 {
    margin-left: 0;
  }
  .home .service-sec .cont-wrap .c-btn01 {
    margin-top: 24px;
  }
  .home .service-sec .desc {
    line-height: 1.55;
  }
  .home .service-sec .gray-cont {
    margin-top: 0;
    padding: 14px 12px 19px;
    grid-template-columns: 1fr;
  }
  .home .service-sec .gray-cont .desc {
    font-size: 13px;
  }
  .home .about-sec .cont-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home .about-sec .cont-wrap > *:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .home .about-sec .cont-wrap > *:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .home .about-sec .cont-wrap .img-area img {
    display: block;
    width: 100%;
  }
  .home .about-sec .cont-wrap .c-btn01 {
    margin-top: 24px;
  }
  .home .news-sec::before {
    background: url("../img/home/news-bg_sp.png.webp") no-repeat left/cover;
    aspect-ratio: 750/1224;
    width: 100%;
  }
  .home .news-sec .news-list li a .txt-wrap {
    padding: 20px 25px;
  }
  .home .news-sec .news-list li a .txt-wrap .date {
    margin-bottom: 2px;
  }
  .home .news-sec .news-list li a .txt-wrap .ttl {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .home .news-sec .news-list li a .txt-wrap .txt {
    font-size: 13px;
    line-height: 1.4em;
  }
  .home .news-sec .news-slider-wrap .swiper-slide {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .home .news-sec .c-btn01 {
    margin-top: 24px;
  }
  .home .recruit-sec .cont-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home .recruit-sec .cont-wrap .img-area .img01 {
    margin-top: 30px;
    max-width: inherit;
    width: 81.6vw;
  }
  .home .recruit-sec .cont-wrap .img-area .img02 {
    max-width: 250px;
    width: 37.8666666667vw;
    margin-right: -20px;
    position: absolute;
    top: -20px;
    margin-top: 0;
    right: 0;
  }
  .home .recruit-sec .cont-wrap .c-btn01 {
    margin-top: 24px;
  }
  .service .about-sec .c-ttl02 {
    margin-bottom: 24px;
  }
  .service .service-sec .inner-block {
    grid-template-columns: 1fr;
  }
  .service .service-sec .gray-cont {
    margin-top: 0;
    padding: 14px 12px 19px;
    grid-template-columns: 1fr;
  }
  .service .service-sec .gray-cont .desc {
    font-size: 13px;
  }
  .service .service-sec .gray-cont .img-wrap {
    max-width: 300px;
    margin: auto;
  }
  .support .consulting-sec .c-ttl01 .jp,
  .support .advantage-sec .c-ttl01 .jp,
  .support .standard-sec .c-ttl01 .jp {
    line-height: 1.5;
  }
  .support .consulting-sec .cont {
    grid-template-columns: 100%;
  }
  .support .consulting-sec .cont .img-area img {
    max-width: 500px;
    width: 100%;
  }
  .support .consulting-sec .cont .txt-area .desc {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  .support .advantage-sec .cont + .cont {
    margin-top: 40px;
  }
  .support .advantage-sec .cont {
    grid-template-columns: 100%;
    grid-template-areas: "img" "ttl" "txt";
    gap: 15px;
  }
  .support .advantage-sec .cont .img-area {
    padding-inline: 12px;
  }
  .support .advantage-sec .cont .img-area img {
    max-width: 500px;
  }
  .support .advantage-sec .cont .cont-ttl {
    margin-bottom: 0;
    gap: 12px;
  }
  .support .advantage-sec .cont .cont-ttl .num {
    font-size: 50px;
  }
  .support .advantage-sec .cont .cont-ttl .grd {
    padding-bottom: 10px;
  }
  .support .advantage-sec .cont .cont-ttl .grd::before {
    bottom: 5px;
  }
  .support .advantage-sec .cont .cont-ttl .grd .jp {
    font-size: 20px;
  }
  .support .advantage-sec .cont .desc {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  .support .advantage-sec .cont:nth-child(2) .img-area img {
    max-width: min(75.4666666667vw, 500px);
  }
  .support .advantage-sec .cont:nth-child(3) .img-area img {
    max-width: min(82.6666666667vw, 500px);
  }
  .support .standard-sec .cont {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .support .standard-sec .cont .tag-list {
    gap: 8px;
  }
  .support .standard-sec .cont .tag-list > li {
    font-size: 14px;
  }
  .support .standard-sec .cont .txt-area .desc {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  .support .bg-area {
    background: url(../img/about/bg01.png.webp) no-repeat -350px calc(100% - 420px - 80px - 40px)/auto 400px, url(../img/about/bg01.png.webp) no-repeat calc(100% + 420px) calc(100% - 40px)/auto 400px;
  }
  .recruit .c-sec .inner-block * + * {
    margin-top: 16px;
  }
  .policy .c-sec .inner-block * + * {
    margin-top: 16px;
  }
  .policy .fz18 {
    font-size: 14px;
  }
  .contact .kv-desc {
    line-height: 1.5;
  }
  .contact .form-area {
    margin-top: 40px;
    padding: 40px 20px;
  }
  .contact .form-area .contact-label,
  .contact .form-area .confirm-ttl {
    line-height: 1.5;
  }
  .contact .form-area .btn-wrap .c-btn01 {
    margin-inline: 0;
  }
  .contact.complete .c-btn01 {
    margin-top: 30px;
  }
  .about .detail-sec {
    overflow: hidden;
  }
  .about .detail-sec::before {
    width: 1096px;
    margin: auto;
  }
  .about .detail-sec .cont-block + .cont-block {
    margin-top: 44px;
  }
  .about .detail-sec .cont-block p {
    line-height: 1.6em;
    font-size: 14px;
  }
  .about .detail-sec .cont-block p + * {
    margin-top: 30px;
  }
  .about .message-sec::before {
    background: url("../img/about/bg02_sp.png.webp") no-repeat right/contain;
    width: 47.1428571429vw;
    top: 40px;
    aspect-ratio: 355/676;
  }
  .about .message-sec::after {
    background: url("../img/about/bg03_sp.png.webp") no-repeat left/contain;
    width: 48.2857142857vw;
    bottom: -30px;
    aspect-ratio: 319/676;
  }
  .about .message-sec .cont-wrap:has(.img-wrap) {
    gap: 50px;
    grid-template-columns: 1fr;
  }
  .about .message-sec .cont-wrap:has(.img-wrap) > *:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .about .message-sec .cont-wrap:has(.img-wrap) > *:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .about .message-sec .cont-wrap:has(.img-wrap) .img-wrap {
    max-width: 380px;
    margin: auto;
    display: block;
    width: 100%;
    padding-inline: 30px;
  }
  .about .message-sec .cont-wrap .txt-wrap p {
    line-height: 1.6em;
  }
  .about .message-sec .cont-wrap .txt-wrap p + p {
    margin-top: 20px;
  }
  .about .message-sec .cont-wrap .txt-wrap .name {
    font-size: 16px;
  }
  .about .access-sec .map {
    height: 200px;
  }
  .about .access-sec .c-table02 {
    margin-top: 25px;
  }
  .news .news-detail-sec .blog-wrap {
    padding: 40px 16px;
  }
  .news .news-detail-sec .blog-wrap * + * {
    margin-top: 16px !important;
  }
  .news .news-detail-sec .blog-wrap .ttl-wrap {
    padding-bottom: 8px;
  }
  .news .news-detail-sec .blog-wrap .ttl-wrap .date {
    margin-top: 0 !important;
    font-size: 12px;
  }
  .news .news-detail-sec .blog-wrap h1 {
    display: block;
    padding-right: 16px;
    font-size: 23px;
  }
  .news .news-detail-sec .blog-wrap h2 {
    margin-bottom: 6px;
    font-size: 18px;
  }
  .news .news-detail-sec .blog-wrap h3 {
    line-height: 1.5em;
    font-size: 16px;
  }
  .news .news-detail-sec .c-btn01 {
    margin-top: 24px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1160px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .home .news-sec .news-slider-wrap .swiper {
    overflow: inherit;
  }
  .home .news-sec .news-slider-wrap .swiper-button-prev,
  .home .news-sec .news-slider-wrap .swiper-button-next {
    display: none;
  }
  .support .advantage-sec .cont:nth-child(2n) {
    grid-template-areas: "img ttl" "img txt";
  }
  .support .advantage-sec .cont .cont-ttl {
    padding-left: 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .c-header .menu-wrap .menu {
    gap: 24px;
  }
  .c-header .c-btn01 {
    padding: 8px 10px 8px 50px;
    font-size: 16px;
  }
  .c-header .c-btn01 .contact {
    left: 18px !important;
  }
  .home .news-sec .news-list {
    gap: 24px;
  }
  .home .news-sec .news-list li a .txt-wrap {
    padding: 20px;
  }
}
@media (any-hover: hover) {
  .c-header .menu-wrap .menu a:hover {
    color: #4586de;
  }
  .c-footer .nav-wrap a:hover {
    color: #4586de;
  }
  .c-btn01:hover {
    background-color: #fff;
    color: #4586de;
    border: 1px solid #4586de;
  }
  .c-btn01:hover.w-ico span::before {
    background-color: #4586de;
  }
  .c-btn01.bg-gra:hover {
    border: none;
    color: #fff;
  }
  .c-btn01.bg-gra:hover::after {
    opacity: 1;
  }
  .c-btn01.bg-gra:hover span:not(.txt)::before {
    background-color: #fff;
  }
  .c-btn01.bg-bl:hover {
    background-color: #fff;
    color: #4586de;
  }
  .c-btn01.bg-wh:hover {
    background-color: #4586de;
    color: #fff;
  }
  .c-btn01.bg-wh02:hover {
    background-color: #333333;
    color: #fff;
  }
  .c-btn02:hover .icon {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .c-btn03:hover {
    background-color: #4586de;
    color: #fff;
  }
  .c-news-wrap .cont > a:hover {
    background-color: #f1f3f9;
  }
  .c-news-wrap .cont > a:hover .img-wrap img {
    scale: 1.1;
  }
  .c-pagination .page-numbers:hover {
    color: #4586de;
    background-color: #f1f3f9;
  }
  .c-pagination .prev:hover, .c-pagination .next:hover {
    background-color: #4586de;
  }
  .c-pagination .prev:hover.next:hover::before, .c-pagination .next:hover.next:hover::before {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  .c-pagination .prev:hover.prev:hover::before, .c-pagination .next:hover.prev:hover::before {
    -webkit-transform: scaleX(-1) translateX(3px);
            transform: scaleX(-1) translateX(3px);
  }
  .home .service-sec .gray-cont:hover {
    background-color: #DFEAF9;
  }
  .home .service-sec .gray-cont:hover .c-btn02 .icon {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .home .news-sec .news-list li a:hover .img-wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .home .news-sec .news-list li a:hover .txt-wrap {
    background-color: #f9f9f9;
  }
  .service .service-sec .gray-cont:hover {
    background-color: #DFEAF9;
  }
  .service .service-sec .gray-cont:hover .c-btn01 {
    background-color: #fff;
    border: 1px solid #4586de;
    color: #4586de;
  }
  .news .news-detail-sec .blog-wrap a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
@media only screen and (max-width: 920px) {
  .c-cta-sec.c-cta-support .inner-block {
    grid-template-columns: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .c-news-wrap .cont > a {
    padding: 16px;
    grid-template-columns: 200px 1fr;
  }
  .c-news-wrap .cont > a .img-wrap {
    width: 200px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .c-news-wrap .cont > a {
    grid-template-columns: 28.5714285714vw 1fr;
    gap: 16px;
    padding: 16px 8px;
  }
  .c-news-wrap .cont > a .img-wrap {
    width: 28.5714285714vw;
  }
}
@media only screen and (max-width: 767px) and (max-width: 350px) {
  .home .mv-sec .inner-block {
    padding-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 1050px) {
  .home .service-sec .cont-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) and (max-width: 800px) {
  .home .news-sec .news-list {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media only screen and (max-width: 1200px) {
  .service .service-sec .inner-block {
    gap: 0;
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=style.css.map */