@charset "UTF-8";
/*------------------------------------------------------------
    Reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

html {
  font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

table,
input,
textarea,
select,
option {
  line-height: 1.1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

/* ================================
   Global image reset
   ================================ */
img,
.entry-content img,
.post-content img,
.wp-block-image img,
.wp-post-image,
.attachment-post-thumbnail {
  max-width: 100%;
  height: auto; /* giữ đúng tỉ lệ */
  display: block; /* tránh khoảng trắng inline */
  vertical-align: middle;
}

/* Ảnh có sẵn width/height trong HTML attribute vẫn scale đúng */
/* SVG nhúng qua <img> cũng scale hợp lý */
img[src$=".svg"] {
  height: auto;
}

/* Figure/Caption */
figure,
.wp-caption {
  max-width: 100%;
}

.wp-caption img {
  display: block;
}

.wp-caption .wp-caption-text,
figcaption {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.6rem;
  text-align: center;
}

/* Align helpers từ WP editor */
.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   Gallery (WP classic + Gutenberg)
   ========================================== */
.gallery,
.wp-block-gallery {
  margin: 0;
}

/* Item trong gallery (flex/grid) – fix iOS Safari */
.gallery .gallery-item,
.wp-block-gallery .blocks-gallery-item,
.wp-block-gallery figure {
  min-width: 0;
}

/* Ảnh trong gallery fill ô (giữ tỉ lệ) */
.gallery img,
.wp-block-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; /* thumbnail dạng lưới */
  display: block;
}

/* ==========================================
   Thumbnails / cards / lists
   ========================================== */
.post-thumbnail,
.card__thumb,
.list__thumb {
  overflow: hidden;
}

.post-thumbnail img,
.card__thumb img,
.list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* ==========================================
   Flex/Grid containers chứa img (fix iOS)
   ========================================== */
.is-flex > *:where(img, figure),
.is-grid > *:where(img, figure),
.wp-block-gallery,
.wp-block-columns {
  min-width: 0;
}

/* ==========================================
   Utilities
   ========================================== */
.u-aspect-1x1 {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.u-aspect-4x3 {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.u-aspect-16x9 {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.u-aspect-1x1 > img,
.u-aspect-4x3 > img,
.u-aspect-16x9 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; /* đổi thành contain nếu cần */
}

/* Lazy-load hint (tùy chọn) */
img[loading="lazy"] {
  contain: paint;
}

/* Background image helpers */
.u-bg-cover {
  background-size: cover;
  background-position: 50% 50%;
}

.u-bg-contain {
  background-size: contain;
  background-position: 50% 50%;
}

/* ==========================================
   WordPress content
   ========================================== */
.entry-content,
.post-content {
  line-height: 1.6;
  color: inherit;
}

/* Headings */
.entry-content h1,
.post-content h1,
.entry-content h2,
.post-content h2,
.entry-content h3,
.post-content h3,
.entry-content h4,
.post-content h4,
.entry-content h5,
.post-content h5,
.entry-content h6,
.post-content h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 1rem;
}

/* Paragraph & links */
.entry-content p,
.post-content p {
  margin: 1rem 0;
}

.entry-content a,
.post-content a {
  text-decoration: underline;
}

.entry-content a:hover,
.post-content a:hover {
  text-decoration: none;
}

/* Lists */
.entry-content ul,
.post-content ul,
.entry-content ol,
.post-content ol {
  margin: 1rem 0 1rem 2rem;
  padding: 0;
}

.entry-content li,
.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Tables */
.entry-content table,
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.entry-content th,
.post-content th,
.entry-content td,
.post-content td {
  border: 1px solid #ddd;
  padding: 0.8rem 1.2rem;
  text-align: left;
}

.entry-content th,
.post-content th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Blockquote */
.entry-content blockquote,
.post-content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #ccc;
  background: #fafafa;
  font-style: italic;
}

/* Captions */
.entry-content figcaption,
.post-content figcaption {
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
}

/* Code blocks */
.entry-content pre,
.post-content pre {
  background: #f7f7f7;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 4px;
}

.entry-content code,
.post-content code {
  background: #f0f0f0;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

:root {
  --spacing-xl: 7rem;
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  :root {
    --spacing-xl: 2rem;
  }
}
.form-meta {
  max-width: 752.24px;
  margin: 66px auto 45px;
}

.form-item2 {
  width: 388.17px;
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-item3 {
  width: 336.17px;
  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;
  font-size: 1.4rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 1024px) {
  .form-item2 {
    width: 67%;
  }
}
.form-item1 {
  max-width: 503.17px;
  width: 74%;
}

::-webkit-input-placeholder {
  color: #bbbcbc;
  opacity: 0.8;
  font-size: 1.6rem;
  line-height: 2;
  font-family:
    Noto Sans JP,
    sans-serif;
}

::-moz-placeholder {
  color: #bbbcbc;
  opacity: 0.8;
  font-size: 1.6rem;
  line-height: 2;
  font-family:
    Noto Sans JP,
    sans-serif;
}

:-ms-input-placeholder {
  color: #bbbcbc;
  opacity: 0.8;
  font-size: 1.6rem;
  line-height: 2;
  font-family:
    Noto Sans JP,
    sans-serif;
}

::-ms-input-placeholder {
  color: #bbbcbc;
  opacity: 0.8;
  font-size: 1.6rem;
  line-height: 2;
  font-family:
    Noto Sans JP,
    sans-serif;
}

::placeholder {
  color: #bbbcbc;
  opacity: 0.8;
  font-size: 1.6rem;
  line-height: 2;
  font-family:
    Noto Sans JP,
    sans-serif;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  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;
}

.form-white {
  visibility: hidden;
}

.mwform-checkbox-field-text {
  margin-left: 4px;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.wpcf7-checkbox input {
  width: 24.1px;
  height: 24.1px;
  margin: 0;
}

@media only screen and (max-width: 576px) {
  .wpcf7-checkbox input {
    width: 20.1px;
    height: 20.1px;
  }
}
.form-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 26px;
  width: 100%;
}
.form-list:nth-child(3) {
  margin: 39px 0;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form-list.form-message1 {
  margin: 25px auto;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  .form-list.form-message1 {
    margin: 0;
  }
}
.form-list.form-message1 .form-item:first-child {
  margin-top: 13px;
}

.form-input.year {
  width: 102.71px;
}

.form-input.date {
  width: 55.64px;
}

.form-item:first-child {
  width: 191.36px;
  margin-right: 38px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1024px) {
  .form-item:first-child {
    margin-right: 0;
  }
}

.form-box {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 26px auto 29px;
}

.form-info {
  width: 145px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}

@media only screen and (max-width: 1024px) {
  .form-info {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .form-info {
    font-size: 1.5rem;
  }
}
.form-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.form-red {
  font-size: 1.1rem;
  color: #e60013;
  border-radius: 5px;
  margin-right: 15px;
}

.form-info {
  letter-spacing: 1px;
}

.form-list .form-item:nth-child(2) {
  display: block;
  width: 71%;
}

#form-mess .form-input {
  padding: 10px 20px;
  width: 560.75px;
  height: 233.35px;
}

#form-mess {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#form-mess .form-item:first-child {
  margin-top: 13px;
}

.form-blue {
  background-color: #005aab !important;
}

.form-input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family:
    Noto Sans JP,
    sans-serif;
  padding: 0 20px;
  height: 48.69px;
  width: 100%;
  border: 1px solid #9b9b9c;
  line-height: 2;
  max-width: 234.35px;
  background-color: white;
}

.form-list.choice {
  margin: 55px auto 31px;
}

@media only screen and (max-width: 767px) {
  .form-list.choice {
    margin: 20px auto;
  }
}
.form-message2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family:
    Noto Sans JP,
    sans-serif;
  padding: 10px 20px;
  height: 198.45px;
  width: 100%;
  border: 1px solid #9b9b9c;
  font-size: 1.5rem;
  line-height: 2;
}

.form-note {
  font-size: 1.6rem;
  margin: 113px 0 76px;
  line-height: 2.7;
  letter-spacing: 1.5px;
  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;
}

.form-meta .wpcf7-list-item {
  margin: 0;
  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;
}

.contact-main2__text {
  margin: 80px 0 43px;
  text-align: center;
  font-size: 1.6rem;
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 767px) {
  .contact-main2__text {
    margin: 30px 0 50px;
  }
}
@media only screen and (max-width: 516px) {
  .contact-main2__text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.contact-main2__text a {
  color: #e60013;
}

.contact-main2__text.sp {
  display: none;
}

.contact-main2__text .error {
  bottom: -17px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.contact-main2__meta {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}

.p-contact .p-contact__btn__back {
  display: none;
}

.p-contact__btn__back {
  position: relative;
}

.p-contact__btn__back span {
  top: 11px;
}

.p-contact__btn__back span {
  cursor: pointer;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 87px;
  font-size: 2rem;
  position: absolute;
  left: 26px;
  color: white;
}

.contact-main2__link {
  position: relative;
}

.form-item2 .wpcf7-form-control-wrap {
  width: 100%;
}

.contact-main2__link input {
  font-weight: bold;
  cursor: pointer;
  border: none;
  position: relative;
  width: 171.69px;
  color: white;
  background-color: #e60013;
  height: 49.29px;
  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;
  font-size: 1.7rem;
  border-radius: 36px;
  letter-spacing: 1px;
  padding-right: 30px;
}

@media only screen and (max-width: 1024px) {
  .contact-main2__link input {
    letter-spacing: 3px;
  }
}
.contact-main2__text .mwform-checkbox-field-text {
  display: none;
}

.contact-main2__link span {
  top: 9px;
  right: 35px;
  font-size: 2rem;
  position: absolute;
  color: white;
}

.contact-main2__link:hover span {
  cursor: pointer;
  right: 25px;
  -webkit-transition: linear 0.5s;
  transition: linear 0.5s;
}

.p-contact__btn__back {
  position: relative;
}

.p-contact__btn__back input {
  cursor: pointer;
  color: white;
  background-color: #595857;
  border: 0;
  height: 49px;
  width: 150px;
}

.p-contact__btn__back span {
  top: 9px;
}

.form-meta .wpcf7-spinner {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .form-item2 {
    width: 100%;
  }
  .form-list .form-item:nth-child(2) {
    width: 100%;
  }
  .form-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .form-item:first-child {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .form-info {
    margin-right: 12px;
  }
  .contact-main2__link input {
    font-size: 1.7rem;
    letter-spacing: 1px;
    width: 182.81px;
  }
  .contact-main2__meta {
    max-width: 465px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 516px) {
  .contact-main2__link img {
    right: 20px;
  }
  .contact-main2__meta {
    max-width: 288px;
  }
  .contact-main2__link span {
    display: none;
  }
  .p-contact__btn__back span {
    display: none;
  }
  .p-contact__btn__back input {
    width: 50px;
    font-size: 1.4rem;
  }
  .contact-main2__button {
    width: 100%;
  }
  .contact-main2__text.sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .form-input {
    width: 100%;
  }
  .contact-main2__link input {
    margin: 0 auto;
    height: 50.17px;
  }
}
.form-item4 {
  width: 68%;
  max-width: 518px;
  margin-left: 4px;
}

.wpcf7-checkbox.form-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 0;
}

@media only screen and (max-width: 516px) {
  .wpcf7-checkbox.form-choice {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wpcf7-checkbox {
  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;
}

.contact-main2__text .wpcf7-list-item-label {
  display: none;
}

.contact-main2__text .wpcf7-not-valid-tip {
  bottom: -30px;
  position: absolute;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.wpcf7-form-control-wrap {
  position: unset !important;
}

.contact-main2__text .wpcf7-checkbox input {
  width: 23.1px;
  height: 23.1px;
  margin-right: 10px;
}

.form-item4 .wpcf7-list-item {
  margin: 0 0 16px;
  text-wrap-mode: nowrap;
}

@media only screen and (max-width: 516px) {
  .form-item4 .wpcf7-list-item {
    width: 100%;
  }
}
.wpcf7-list-item-label {
  font-size: 1.4rem;
  margin-left: 15px;
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 516px) {
  .wpcf7-list-item-label {
    letter-spacing: 1px;
    margin-left: 5px;
  }
}
.wpcf7-checkbox label {
  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;
}

@media only screen and (max-width: 767px) {
  .form-item4 {
    margin-left: 0;
    width: 100%;
  }
  .form-item1 {
    width: 100%;
  }
  .form-meta {
    margin: 40px auto 45px;
    max-width: 448.24px;
  }
}
@media only screen and (max-width: 516px) {
  .form-meta {
    margin: 35px auto 45px;
  }
  .form-item1 {
    max-width: 100%;
  }
}
.contact-main2__link img {
  position: absolute;
  width: 26.13px;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .contact-main2__button {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 516px) {
  .contact-main2__button {
    margin-top: 40px;
  }
  .contact-main2__text {
    margin-bottom: 30px;
  }
}
.wpcf7-form .wpcf7-radio label {
  position: relative;
  cursor: pointer;
}

.wpcf7-form .wpcf7-radio input[type="radio"] {
  position: relative;
  visibility: hidden;
}

.wpcf7-form .wpcf7-radio input[type="radio"] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 14px;
  width: 14px;
  top: 1px;
  border: 2px solid #222;
}

.wpcf7-form .wpcf7-radio input[type="radio"] + span:after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 8px;
  width: 8px;
  top: 5.5px;
  left: 4.5px;
  visibility: hidden;
}

.wpcf7-form .wpcf7-radio input[type="radio"]:checked + span:before {
  background: transparent;
}

.wpcf7-form .wpcf7-radio input[type="radio"]:checked + span:after {
  background: #222;
  visibility: visible;
}

.form-red.white {
  visibility: hidden;
}

.form-item3 .wpcf7-not-valid-tip {
  position: absolute;
  left: 20px;
}

@media only screen and (max-width: 1024px) {
  .c-header__recruit {
    width: 130.72px;
  }
}
@media only screen and (max-width: 767px) {
  .form-info {
    width: auto;
  }
}
@media only screen and (max-width: 516px) {
  .c-header__recruit {
    width: 115.72px;
    right: 5px;
  }
  .form-input.year {
    width: 90.71px;
  }
  .form-input.date {
    width: 50px;
    padding: 0 10px;
  }
}
.p-news__single__list__btn {
  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;
  margin: 150px auto 0;
  position: relative;
}

.c-span__prev {
  position: absolute;
  left: 0;
}

.c-span__next {
  position: absolute;
  right: 0;
}

.p-delivery__pagination .wp-pagenavi a,
.p-delivery__pagination .wp-pagenavi span {
  color: #00489d;
  text-decoration: none;
  border: none;
  width: 41.5px;
  height: 41.5px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 7px;
  font-size: 2.2rem;
  line-height: 4.3759090909;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  border: 1px solid;
  font-weight: 500;
}

.pages {
  display: none !important;
}

.p-delivery__pagination {
  margin: 97px 0 180px;
  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;
}

.p-delivery__pagination .wp-pagenavi a:hover,
.p-delivery__pagination .wp-pagenavi span.current {
  background-color: #00489d;
  color: white;
}

.nextpostslink {
  display: none !important;
}

.previouspostslink {
  display: none !important;
}

@media only screen and (max-width: 1024px) {
  .p-delivery__pagination .wp-pagenavi a,
  .p-delivery__pagination .wp-pagenavi span {
    margin: 5px;
    width: 40.5px;
    height: 40.5px;
  }
  .p-delivery__pagination {
    margin: 50px 0 80px;
  }
}
@media only screen and (max-width: 516px) {
  .p-delivery__pagination {
    margin: 30px 0 54px;
  }
  .p-delivery__pagination .wp-pagenavi a,
  .p-delivery__pagination .wp-pagenavi span {
    font-size: 2rem;
  }
}
.c-detail__main {
  color: rgb(0, 132, 207);
  max-width: 1080px;
  margin: 88px auto;
  z-index: 2;
  position: relative;
  background: white;
}

.c-detail__top {
  font-size: 1.5rem;
}

.c-detail__title {
  font-size: 3.5rem;
  line-height: 1.9;
  border-bottom: 1px solid;
  margin: -13px 0 38px;
}

@media only screen and (max-width: 1024px) {
  .c-detail__title {
    font-size: 3rem;
    line-height: 1.75;
    margin: -5px 0 38px;
  }
}
@media only screen and (max-width: 767px) {
  .c-detail__title {
    font-size: 2.5rem;
    margin: 0 0 30px;
  }
}
@media only screen and (max-width: 516px) {
  .c-detail__title {
    font-size: 2rem;
  }
}
.c-detail__content {
  font-size: 1.6rem;
  line-height: 1.4;
}

.c-detail__content img {
  height: auto;
  margin: 30px auto;
}

.c-detail__pagenavi {
  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;
  margin: 150px auto 0;
  max-width: 1050px;
  color: black;
}

@media only screen and (max-width: 1024px) {
  .c-detail__pagenavi {
    margin: 80px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-detail__pagenavi {
    margin: 60px auto 0;
  }
}
.contact-main2__white {
  font-size: 1.6rem;
}
.contact-main2__white p {
  text-align: center;
  font-size: 1.4rem;
}
@media only screen and (max-width: 516px) {
  .contact-main2__white p {
    font-size: 1.2rem;
  }
}
.contact-main2__white a {
  border-bottom: 1px solid;
  padding-bottom: 2px;
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-style: normal;
  line-height: 1.75;
  font-size: 1.5rem;
  color: #231916;
}

main {
  overflow-x: hidden;
}

table,
tr,
th,
td {
  border-collapse: separate;
  border-spacing: 0 7px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.is-menu-open {
  overflow: hidden;
}

html,
body {
  overscroll-behavior-x: none;
}

.l-header {
  background: #fffffff3;
  -webkit-box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
  padding: 7px 20px;
  z-index: 1000;
  position: relative;
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .l-header {
    padding: 17px 10px;
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1354.72px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .l-header__inner {
    margin: 0 auto;
  }
}
.l-header__logo-link {
  width: 207.33px;
  display: block;
}
.l-header__actions {
  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: 40px;
  justify-content: flex-end;
  margin-bottom: -7px;
}
@media only screen and (max-width: 1024px) {
  .l-header__actions {
    display: none;
  }
}
.l-header__language {
  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;
}
.l-header__language-icon {
  width: 18.7px;
  margin-right: 1px;
}
.l-header__language-text {
  font-size: 1.2rem;
  line-height: calc(40.19 / 12);
}
.l-header__language-text span {
  margin: 0 8px;
}
.l-header__contact {
  background: rgb(0, 73, 158);
  border-radius: 24px;
  width: 185.5px;
  height: 48px;
  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-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header__contact:hover {
  background: rgb(0, 100, 180);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.l-header__contact-icon {
  width: 29.16px;
  margin-left: 15px;
  margin-right: 18px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-header__contact:hover .l-header__contact-icon {
  -webkit-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
}
.l-header__contact-text {
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.l-header__contact:hover .l-header__contact-text {
  color: #ffcc00;
}
.l-header__nav {
  max-width: 1318px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  letter-spacing: 1.5px;
}
.l-header__menu {
  max-width: 871.5px;
  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;
  width: 100%;
}
.l-header__menu-row {
  list-style: none;
}
.l-header__link {
  text-decoration: none;
  color: #000;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  -webkit-animation: fadeIn 0.6s ease-in-out forwards;
  animation: fadeIn 0.6s ease-in-out forwards;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1024px) {
  .l-header__menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
    padding: 20px 0;
    border-radius: 10px;
    max-width: 100%;
  }
  .l-header__menu.open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .l-header__menu-row {
    margin: 12px 0;
    width: 100%;
    text-align: center;
  }
  .l-header__menu-toggle {
    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;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
  }
  .l-header__menu-bar {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__menu-toggle.open .l-header__menu-bar:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: 12px;
  }
  .l-header__menu-toggle.open .l-header__menu-bar:nth-child(2) {
    opacity: 0;
  }
  .l-header__menu-toggle.open .l-header__menu-bar:nth-child(3) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: -10px;
  }
  .l-header__link {
    padding: 15px;
    font-size: 1.8rem;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
}
@media only screen and (max-width: 767px) and (max-width: 516px) {
  .l-header__link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__link--home,
  .l-header__link--company,
  .l-header__link--business,
  .l-header__link--products,
  .l-header__link--news,
  .l-header__link--recruit {
    color: #000;
  }
  .l-header__link:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  .l-header__link:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  .l-header__link:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .l-header__link:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  .l-header__link:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .l-header__link:nth-child(6) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
}

.l-header__link {
  padding: 10px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header__link:hover {
  background-color: #d1edd9;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  padding: 10px;
}

.l-footer {
  border-top: 12px solid #00499e;
  margin-top: 23px;
}
.l-footer__contact-main {
  padding: 0 20px;
}
.l-footer__contact-title {
  font-weight: bold;
  font-size: 3.5rem;
  line-height: calc(60.85 / 35);
  color: #00499e;
  text-align: center;
  margin: 74px 0 48px;
}
@media only screen and (max-width: 1024px) {
  .l-footer__contact-title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-title {
    font-size: 2.6rem;
    margin: 60px 0 18px;
  }
}
.l-footer__contact-description {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  max-width: 578.25px;
  margin: 0 auto;
}
.l-footer__contact-actions {
  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;
  gap: 40px;
  max-width: 903.43px;
  margin: 83px auto 44px;
}
@media only screen and (max-width: 1024px) {
  .l-footer__contact-actions {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__contact-actions {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 400px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-actions {
    max-width: 300px;
  }
}
.l-footer__contact-action {
  background: #00499e;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 3px 14px 3px 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media only screen and (max-width: 1024px) {
  .l-footer__contact-action {
    padding: 3px 14px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__contact-action {
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 3px 14px 3px 40px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-action {
    padding: 3px 14px 3px 20px;
  }
}
.l-footer__contact-action:hover {
  background-color: #003a7d;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.l-footer__contact-action-main {
  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;
}
.l-footer__contact-label {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: calc(18 / 22);
  letter-spacing: 2.2px;
  margin-left: 11px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .l-footer__contact-label {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-label {
    font-size: 1.8rem;
  }
}
.l-footer__contact-action:hover .l-footer__contact-label {
  color: #ffcc00;
}
.l-footer__contact-mail1 {
  width: 34.33px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-footer__contact-action:hover .l-footer__contact-mail1 {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.l-footer__contact-arrow-img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-footer__contact-action:hover .l-footer__contact-arrow-img {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.l-footer__contact-action-mail2 {
  width: 112.81px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .l-footer__contact-action-mail2 {
    width: 80.81px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-action-mail2 {
    width: 50.81px;
  }
}
.l-footer__contact-action:hover .l-footer__contact-action-mail2 {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.l-footer__consultation-icon1 {
  width: 41.18px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-footer__contact-action:hover .l-footer__consultation-icon1 {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.l-footer__consultation-icon2 {
  width: 117.5px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .l-footer__consultation-icon2 {
    width: 84px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__consultation-icon2 {
    width: 55px;
  }
}
.l-footer__contact-action:hover .l-footer__consultation-icon2 {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
@media only screen and (max-width: 1024px) {
  .l-footer__contact-action {
    padding: 3px 14px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__contact-action {
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 3px 14px 3px 40px;
  }
  .l-footer__contact-action-mail2 {
    width: 80.81px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-action {
    padding: 3px 14px 3px 20px;
  }
  .l-footer__contact-action-mail2 {
    width: 50.81px;
  }
}
.l-footer__contact-tel-block {
  padding: 12px 20px 18px;
  border-top: 1px solid #00499e;
  border-bottom: 1px solid #00499e;
  max-width: 471.43px;
  margin: 0 auto 139px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .l-footer__contact-tel-block {
    margin: 0 auto 100px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-tel-block {
    padding: 12px 0 18px;
  }
}
.l-footer__contact-tel-main {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: -16px;
}
@media only screen and (max-width: 1024px) {
  .l-footer__contact-tel-main {
    scale: 0.9;
    margin-bottom: -8px;
  }
}
.l-footer__contact-tel-label {
  font-weight: bold;
  font-size: 3rem;
  line-height: calc(54.29 / 30);
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-tel-label {
    font-size: 2.2rem;
  }
}
.l-footer__contact-tel-number {
  font-weight: bold;
  font-size: 4.2rem;
  line-height: 1.5;
  font-family: "acumin-variable", sans-serif;
  letter-spacing: 1.5px;
  margin-left: 20px;
  border-bottom: none;
}
@media only screen and (max-width: 516px) {
  .l-footer__contact-tel-number {
    font-size: 3.2rem;
  }
}
.l-footer__contact-time {
  font-size: 1.6rem;
  line-height: calc(36.58 / 16);
}
.l-footer__group-blue {
  background: #00499e;
  padding: 66px 20px;
}
.l-footer__group-banners {
  grid-gap: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1016.82px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .l-footer__group-banners {
    grid-gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__group-banners {
    grid-template-columns: repeat(2, 1fr);
    max-width: 450px;
  }
}
.l-footer__group-banner-item {
  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;
}
.l-footer__info-section {
  padding: 0 20px;
}
.l-footer__info-inner {
  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;
  max-width: 972.6px;
  margin: 110px auto 0;
}
@media only screen and (max-width: 767px) {
  .l-footer__info-inner {
    margin: 70px auto 0;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__info-inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.l-footer__company {
  width: 28%;
}
@media only screen and (max-width: 1024px) {
  .l-footer__company {
    width: 37%;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__company {
    width: 100%;
  }
}
.l-footer__logo {
  width: 280px;
}
.l-footer__company-text {
  line-height: 23px;
  margin-top: 54px;
  margin-left: 7px;
}
.l-footer__nav {
  width: 56%;
  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;
  margin-top: 26px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .l-footer__nav {
    width: 46%;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__nav {
    width: 40%;
    margin-top: 110px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__nav {
    width: 100%;
    margin-top: 50px;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-footer__nav-column:last-child {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__nav-column {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__nav-list ul {
    padding-left: 20px;
  }
}
.l-footer__nav-link {
  position: relative;
  margin-bottom: 10px;
  display: block;
}
.l-footer__nav-link::after {
  width: 10.4px;
  position: absolute;
  content: "";
  top: 7px;
  left: -25px;
  background: #00499e;
  height: 11.4px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.l-footer__nav-link.recruit {
  margin-left: -20px;
}
@media only screen and (max-width: 767px) {
  .l-footer__nav-link.recruit {
    margin-left: 0;
  }
}
.l-footer__copyright {
  font-size: 1.3rem;
  line-height: 1.7692307692;
  color: #52504f;
  text-align: center;
  margin: 138px 0 25px;
}
@media only screen and (max-width: 1024px) {
  .l-footer__copyright {
    margin: 80px 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer__copyright {
    margin: 50px 0 25px;
  }
}
@media only screen and (max-width: 516px) {
  .l-footer__copyright {
    margin: 25px 0;
  }
}

.c-subpage__bg.recruit {
  background-image: url("../images/recruit/recruit_bg.jpg");
}
.c-subpage__bg.requirements {
  background-image: url("../images/recruit/requirements_bg.jpg");
}
.c-subpage__bg.voice {
  background-image: url("../images/recruit/voice_bg.jpg");
}
.c-recruit__nav {
  max-width: 1035.8px;
  margin: 0 auto;
  padding: 0 20px;
}
.c-recruit__nav-list {
  grid-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -37px;
}
@media only screen and (max-width: 767px) {
  .c-recruit__nav-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: -37px auto 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__nav-list {
    grid-gap: 1rem;
  }
}
.c-recruit__nav-item {
  background: rgb(255, 255, 255);
  border-radius: 8px;
  font-size: 1.7rem;
  letter-spacing: 1.7px;
  color: #00499e;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 20px 0;
}
.c-recruit__nav-item:hover {
  background: rgb(235, 97, 25);
  color: white;
  border: 1px solid rgb(235, 97, 25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__nav-item {
    letter-spacing: 0.7px;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__nav-item {
    border: 1px solid;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__nav-item {
    letter-spacing: 0;
  }
}
.c-recruit__nav-item.is-active {
  background: rgb(235, 97, 25);
  color: white;
  border: 1px solid rgb(235, 97, 25);
}

.c-subpage__bg.business {
  background-image: url("../images/business/business_bg.jpg");
}
.c-business__intro {
  padding: 0 20px;
}
.c-business__intro-inner {
  max-width: 993.8px;
  margin: 196px auto 129px;
}
@media only screen and (max-width: 1024px) {
  .c-business__intro-inner {
    margin: 126px auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-business__intro-inner {
    margin: 100px auto;
  }
}
.c-business__intro-lead {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(44.02 / 28);
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1024px) {
  .c-business__intro-lead {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-business__intro-lead {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-business__intro-lead {
    font-size: 2.2rem;
  }
}
.c-business__intro-lead.left {
  text-align: left;
  margin-bottom: 30px;
}
.c-business__intro-text {
  font-size: 1.5rem;
  line-height: calc(27 / 15);
}
.c-business__section {
  background: #f5f5f5;
  padding: 70px 20px 0;
  position: relative;
  margin-bottom: 125px;
}
@media only screen and (max-width: 767px) {
  .c-business__section {
    padding: 35px 20px 0;
    margin-bottom: 100px;
  }
}
.c-business__section:nth-child(even) .c-business__section-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.c-business__section:nth-child(even) .c-business__section-label {
  text-align: left;
  direction: ltr;
}
.c-business__section-inner {
  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;
  max-width: 982px;
  margin: 0 auto;
  gap: 85px;
  z-index: 2;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 93px;
}
@media only screen and (max-width: 1024px) {
  .c-business__section-inner {
    gap: 50px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .c-business__section-inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 516px) {
  .c-business__section-inner {
    gap: 30px;
    padding-bottom: 50px;
  }
}
.c-business__section-main {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .c-business__section-main {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 1024px) {
  .c-business__section-header {
    scale: 0.8;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
  }
}
@media only screen and (max-width: 516px) {
  .c-business__section-header {
    scale: 0.65;
  }
}
.c-business__section-meta {
  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;
  color: #a9aaaa;
  font-weight: bold;
  margin-top: 6px;
  margin-bottom: 14px;
}
.c-business__section-category {
  font-size: 2.8rem;
}
.c-business__section-number {
  font-size: 7.6rem;
  font-family: "acumin-variable", sans-serif;
  line-height: 1;
  margin-left: 8px;
  font-variation-settings:
    "wght" 500,
    "wdth" 90,
    "slnt" 0;
}
.c-business__section-title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(60.19 / 28);
  letter-spacing: 2.8px;
  color: #00489d;
}
.c-business__section-top {
  width: 153.4px;
  margin-right: 15px;
}
@media only screen and (max-width: 516px) {
  .c-business__section-top {
    width: 123.4px;
    margin-right: 0;
    margin-left: -36px;
    margin-top: 18px;
  }
}
.c-business__section-top.two {
  width: 130.3px;
  margin-right: 29px;
  margin-top: 5px;
}
@media only screen and (max-width: 516px) {
  .c-business__section-top.two {
    width: 114.3px;
    margin-right: 0;
    margin-top: 5px;
    margin-left: -46px;
  }
}
.c-business__section-top.three {
  width: 96.1px;
  margin-right: 42px;
  margin-top: 23px;
}
@media only screen and (max-width: 516px) {
  .c-business__section-top.three {
    margin-right: 0;
  }
}
.c-business__section-description {
  width: 100%;
  font-size: 1.5rem;
  line-height: calc(28 / 15);
  margin-top: -6px;
  letter-spacing: 2px;
}
.c-business__section-gallery {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 43.5%;
  -ms-flex: 0 0 43.5%;
  flex: 0 0 43.5%;
  border-radius: 14px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-business__section-gallery {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.c-business__section-label {
  font-weight: bold;
  font-size: 20.1rem;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  text-align: right;
  line-height: 0.85;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings:
    "wght" 600,
    "wdth" 90,
    "slnt" 0;
  white-space: nowrap;
  direction: rtl;
}
@media only screen and (max-width: 1024px) {
  .c-business__section-label {
    font-size: 13rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-business__section-label {
    font-size: 8.5rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-business__section-label {
    font-size: 5.3rem;
  }
}
.c-business__section-label span {
  margin: 0 -8%;
}
.c-license {
  padding: 0 20px;
  margin-top: 164px;
  margin-bottom: 110px;
}
@media only screen and (max-width: 1024px) {
  .c-license {
    margin-top: 120px;
    margin-bottom: 85px;
  }
}
@media only screen and (max-width: 767px) {
  .c-license {
    margin-top: 100px;
    margin-bottom: 60px;
  }
}
.c-license--qualification {
  max-width: 997px;
  margin: 0 auto 69px;
}
@media only screen and (max-width: 767px) {
  .c-license--qualification:first-child table,
  .c-license--qualification:first-child tr,
  .c-license--qualification:first-child th,
  .c-license--qualification:first-child td {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 1px solid;
  }
  .c-license--qualification:first-child .c-license__table td {
    width: 100%;
    border-top: none;
  }
  .c-license--qualification:first-child .c-license__name {
    width: 100%;
    padding: 12px 20px !important;
  }
}
.c-license__tab-label {
  background: #00489d;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  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;
  padding: 8px 0;
}
.c-license__table-wrap {
  margin-top: 37px;
  font-size: 1.6rem;
}
.c-license__table-wrap--two {
  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;
}
@media only screen and (max-width: 1024px) {
  .c-license__table-wrap--two {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-license__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-license__table--qualification {
  width: 48%;
}
@media only screen and (max-width: 1024px) {
  .c-license__table--qualification {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }
}
.c-license__table td {
  border: 1px solid #4a3a2f;
  padding: 12px 19px;
  vertical-align: middle;
  line-height: 1.6;
}
.c-license__org {
  width: 33%;
  font-weight: 500;
}
.c-license__name {
  width: 67%;
  padding: 12px 29px !important;
}
.c-license__table--qualification td {
  padding: 12.5px 33px;
}
@media only screen and (max-width: 516px) {
  .c-license__table--qualification td {
    padding: 12.5px 20px;
  }
}
.c-license__item {
  width: 40%;
}
.c-license__count {
  width: 10%;
  text-align: right;
  white-space: nowrap;
  padding: 12.5px 16px !important;
}

.c-license__item,
.c-license__count {
  vertical-align: middle;
}
.c-license__item:empty::before,
.c-license__count:empty::before {
  content: " ";
}

.c-recruit .l-main__about-link-item {
  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;
}
.c-recruit__intro {
  max-width: 1240px;
  margin: 180px auto 0;
  position: relative;
  padding: 0 20px 124px;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__intro {
    margin: 120px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__intro {
    margin: 100px auto 0;
  }
}
.c-recruit__intro::after {
  width: 100%;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  background-image: url("../images/recruit/recruit_big.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 439px;
  background-position: right;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__intro::after {
    height: 339px;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__intro::after {
    background-position: bottom right;
    height: 239px;
  }
}
.c-recruit__intro-content {
  max-width: 882.66px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  background-image: url(../images/recruit/recruit_content.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 61px 20px;
  border-radius: 10px;
  z-index: 2;
  position: relative;
}
.c-recruit__intro-title {
  font-weight: bold;
  font-size: 2.3rem;
  letter-spacing: 2.3px;
  color: #00499e;
}
@media only screen and (max-width: 516px) {
  .c-recruit__intro-title {
    font-size: 2.1rem;
    letter-spacing: 1.3px;
  }
}
.c-recruit__intro-lead {
  font-weight: bold;
  font-size: 2.7rem;
  line-height: calc(44.02 / 27);
  margin: 15px 0 16px;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__intro-lead {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__intro-lead {
    font-size: 2.2rem;
  }
}
.c-recruit__intro-sub {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
}
.c-recruit__intro-icon {
  max-width: 570.3px;
  margin: 23px auto 18px;
}
.c-recruit__intro-text {
  text-align: left;
  max-width: 740.54px;
  margin: 0 auto;
  line-height: 1.8;
}
.c-recruit__slider-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-recruit__slider-item {
  width: 20%;
}
.c-recruit__features {
  background: #f3f5fa;
  padding: 101px 20px 71px;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__features {
    padding: 80px 20px 71px;
  }
}
.c-recruit__features-title {
  font-weight: bold;
  font-size: 2.3rem;
  letter-spacing: 2.3px;
  color: #00499e;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 516px) {
  .c-recruit__features-title {
    font-size: 2.1rem;
    letter-spacing: 1.3px;
  }
}
.c-recruit__features-lead {
  font-weight: bold;
  font-size: 2.6rem;
  letter-spacing: 2.6px;
  text-align: center;
  margin: 58px 0 60px;
}
@media only screen and (max-width: 767px) {
  .c-recruit__features-lead {
    font-size: 2.1rem;
    letter-spacing: 0.6px;
    margin: 25px 0 40px;
  }
}
.c-recruit__features-list {
  grid-gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1051.17px;
  margin: 0 auto 77px;
}
@media only screen and (max-width: 767px) {
  .c-recruit__features-list {
    grid-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__features-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-recruit__feature {
  background: white;
  padding: 13px;
  border-radius: 11px;
}
.c-recruit__feature-title {
  font-weight: bold;
  font-size: 1.9rem;
  letter-spacing: 1.9px;
  text-align: center;
  margin: 8px 0 28px;
}
@media only screen and (max-width: 767px) {
  .c-recruit__feature-title {
    margin: 8px 0 10px;
  }
}
.c-recruit__feature-text {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}
.c-recruit__members {
  background-image: url(../images/recruit/intro_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 175px 20px 115px;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__members {
    padding: 120px 20px 100px;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__members {
    padding: 90px 20px;
  }
}
.c-recruit__members-header {
  background: rgb(0, 73, 158);
  border-radius: 47px;
  color: white;
  padding: 24px 20px;
  max-width: 538.65px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-recruit__members-header {
    scale: 0.9;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__members-header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-recruit__members-header:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #00499e;
  bottom: -17px;
}
.c-recruit__members-header p {
  font-weight: bold;
  font-size: 1.9rem;
  letter-spacing: 1.9px;
  margin-right: 10px;
  line-height: 2;
}
.c-recruit__members-header h2 {
  font-weight: bold;
  font-size: 2.5rem;
  letter-spacing: 2.5px;
}
@media only screen and (max-width: 516px) {
  .c-recruit__members-header h2 {
    letter-spacing: 1.5px;
  }
}
.c-recruit__members-list {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1000px;
  margin: 54px auto 77px;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__members-list {
    grid-gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 54px auto 40px;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__members-list {
    grid-gap: 2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__members-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-recruit__members-header {
  background: rgb(0, 73, 158);
  border-radius: 47px;
  color: white;
  padding: 24px 20px;
  max-width: 538.65px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-recruit__members-header {
    scale: 0.9;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__members-header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-recruit__members-header:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #00499e;
  bottom: -17px;
}
.c-recruit__members-header p {
  font-weight: bold;
  font-size: 1.9rem;
  letter-spacing: 1.9px;
  margin-right: 10px;
  line-height: 2;
}
.c-recruit__members-header h2 {
  font-weight: bold;
  font-size: 2.5rem;
  letter-spacing: 2.5px;
}
@media only screen and (max-width: 516px) {
  .c-recruit__members-header h2 {
    letter-spacing: 1.5px;
  }
}
.c-recruit__member-year {
  font-size: 1.3rem;
  letter-spacing: 1.3px;
  margin: 9px 0 3px;
}
.c-recruit__member-dept {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}
.c-recruit__engineer {
  background: #f3f5fa;
  padding: 160px 20px 93px;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__engineer {
    padding: 120px 20px 93px;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__engineer {
    padding: 100px 20px 93px;
  }
}
.c-recruit__engineer-tabs {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-width: 767px) {
  .c-recruit__engineer-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-recruit__engineer-tab {
  --tab-color: #000;
  background: #fff;
  border: 2px solid var(--tab-color);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  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;
  padding: 16px 0;
  font-size: 1.6rem;
  border-bottom: none;
  cursor: pointer;
  color: var(--tab-color);
  -webkit-transition:
    background 0.3s ease,
    color 0.3s ease;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.c-recruit__engineer-tab:hover {
  background: var(--tab-color);
  color: #fff;
}
.c-recruit__engineer-tab.is-active {
  background: var(--tab-color);
  color: #fff;
}
.c-recruit__engineer-tab:nth-child(1) {
  --tab-color: #4ec1e8;
}
.c-recruit__engineer-tab:nth-child(2) {
  --tab-color: #6bb82d;
}
.c-recruit__engineer-tab:nth-child(3) {
  --tab-color: #ec749c;
}
.c-recruit__engineer-tab:nth-child(4) {
  --tab-color: #f18e56;
}
.c-recruit__engineer-tab:nth-child(5) {
  --tab-color: #5197d2;
}
.c-recruit__engineer-tab:nth-child(6) {
  --tab-color: #c2d735;
}
.c-recruit__engineer-contents {
  max-width: 1000px;
  margin: 0 auto;
}
.c-recruit__engineer-list {
  background-image: url("../images/recruit/engineer_01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 125px 35px 153px;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__engineer-list {
    padding: 100px 35px;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__engineer-list {
    padding: 80px 20px;
  }
}
.c-recruit__engineer-item {
  background: rgb(255, 255, 255);
  border-radius: 19px;
  max-width: 296.35px;
  padding: 28px 25px 34px;
}
.c-recruit__engineer-title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 12px;
}
.c-recruit__engineer-text {
  font-size: 1.5rem;
}
.c-recruit__padding {
  padding: 0 20px;
}
.c-recruit__contact {
  font-family: "Noto Sans JP", sans-serif;
  background-image: url(../images/index/network.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 182px 20px 149px;
  max-width: 999px;
  margin: 102px auto 86px;
  border-radius: 60px;
  text-align: center;
  color: white;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__contact {
    padding: 100px 20px;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__contact {
    padding: 80px 20px;
    border-radius: 28px;
  }
}
.c-recruit__contact-title {
  font-weight: bold;
  font-size: 2.5rem;
  letter-spacing: 2.5px;
}
@media only screen and (max-width: 767px) {
  .c-recruit__contact-title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__contact-title {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.c-recruit__contact-text {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin: 42px 0 102px;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__contact-text {
    margin: 42px 0 65px;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__contact-text {
    margin: 42px 0 45px;
  }
}

.c-recruit__engineer-list {
  display: none;
}
.c-recruit__engineer-list.is-active {
  display: block;
}

.c-recruit.voice .c-requirements-filter__lead::before {
  height: 77%;
}
.c-recruit.voice .c-requirements-filter__lead::after {
  height: 77%;
}
.c-voice__members {
  padding: 0 20px;
}
.c-voice__members .c-requirements-filter__heading {
  margin-bottom: 69px;
}
@media only screen and (max-width: 1024px) {
  .c-voice__members .c-requirements-filter__heading {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 516px) {
  .c-voice__members .c-requirements-filter__heading {
    width: 90%;
    margin: 80px auto 25px;
  }
}
.c-member {
  background: rgb(248, 249, 251);
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 124px auto 177px;
  max-width: 1000px;
  padding: 71px 20px 29px;
}
@media only screen and (max-width: 1024px) {
  .c-member {
    margin: 100px auto 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-member {
    margin: 80px auto 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-member {
    margin: 60px auto 80px;
    padding: 50px 20px 29px;
  }
}
.c-member__profile-left {
  max-width: 681px;
  margin: 0 auto;
  position: relative;
}
.c-member__profile-meta {
  background: rgba(255, 255, 255, 0.36);
  position: absolute;
  left: 0;
  top: 0;
  width: 28%;
  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;
  height: 100%;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}
@media only screen and (max-width: 516px) {
  .c-member__profile-meta {
    letter-spacing: 0;
    min-width: 86px;
  }
}
.c-member__profile-meta p span {
  font-size: 1.3rem;
}
.c-member__catch-sign {
  width: 176.4px;
  position: absolute;
  right: -58px;
  bottom: -25px;
}
@media only screen and (max-width: 1024px) {
  .c-member__catch-sign {
    right: -33px;
  }
}
@media only screen and (max-width: 516px) {
  .c-member__catch-sign {
    width: 156.4px;
  }
}
.c-member__content {
  max-width: 880.13px;
  margin: 0 auto;
}
.c-member__image {
  float: right;
  width: 43.5%;
  padding: 14px 1% 1%;
  margin-left: 22px;
}
@media only screen and (max-width: 767px) {
  .c-member__image {
    float: unset;
    width: 100%;
    padding: 0;
    max-width: 300px;
    margin: 0 auto 30px;
  }
}
.c-member__qa {
  display: contents;
}
.c-member__qa-item {
  margin-bottom: 41px;
}
@media only screen and (max-width: 767px) {
  .c-member__qa-item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 516px) {
  .c-member__qa-item {
    margin-bottom: 22px;
  }
}
.c-member__qa-title {
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  color: #e94b0a;
}
@media only screen and (max-width: 516px) {
  .c-member__qa-title {
    letter-spacing: 0;
  }
}
.c-member__qa-text {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  margin: 0;
}
.c-member__message-box {
  max-width: 880.13px;
  margin: -9px auto 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: rgb(233, 75, 10);
  border-radius: 7px;
  overflow: hidden;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .c-member__message-box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px auto 24px;
  }
}
.c-member__message-left {
  padding: 46px 32px;
}
@media only screen and (max-width: 1024px) {
  .c-member__message-left {
    padding: 46px 20px;
  }
}
.c-member__message-heading {
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  color: #e94b0a;
  background: rgb(255, 255, 255);
  border-radius: 7px;
  padding: 6px 18px;
  display: inline-block;
}
.c-member__message-catch {
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 2.2px;
  color: #ffffff;
  font-family: "noto-sans-cjk-jp", sans-serif;
  margin: 8px 0 2px;
}
@media only screen and (max-width: 1024px) {
  .c-member__message-catch {
    letter-spacing: 0.2px;
  }
}
@media only screen and (max-width: 767px) {
  .c-member__message-catch {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-member__message-catch {
    font-size: 1.98rem;
  }
}
.c-member__message-text {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: #ffffff;
}
.c-member__message-photo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 28.5%;
  -ms-flex: 0 0 28.5%;
  flex: 0 0 28.5%;
}
@media only screen and (max-width: 767px) {
  .c-member__message-photo {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.c-member__message-photo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .c-member__message-photo img {
    height: auto;
  }
}
.c-requirements-filter__heading.small {
  font-size: 2.2rem;
  margin: 59px 0 101px;
  letter-spacing: 2.2px;
}
@media only screen and (max-width: 1024px) {
  .c-requirements-filter__heading.small {
    margin: 59px auto 70px;
  }
}
@media only screen and (max-width: 767px) {
  .c-requirements-filter__heading.small {
    margin: 59px auto 45px;
    font-size: 2rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements-filter__heading.small {
    font-size: 1.8rem;
    margin: 45px auto 30px;
  }
}

.c-requirements-filter {
  padding: 0 20px;
}
.c-requirements-filter__heading {
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  margin-top: 161px;
}
@media only screen and (max-width: 1024px) {
  .c-requirements-filter__heading {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-requirements-filter__heading {
    font-size: 2.2rem;
    margin-top: 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements-filter__heading {
    font-size: 2rem;
    width: 90%;
    margin: 80px auto 0;
  }
}
.c-requirements-filter__lead {
  position: relative;
  display: inline-block;
}
.c-requirements-filter__lead::after {
  width: 1px;
  position: absolute;
  content: "";
  top: 50%;
  left: -35px;
  background-color: #231916;
  height: 64.32px;
  height: 110%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .c-requirements-filter__lead::after {
    left: -15px;
    -webkit-transform: translateY(-50%) rotate(-27deg);
    -ms-transform: translateY(-50%) rotate(-27deg);
    transform: translateY(-50%) rotate(-27deg);
  }
}
.c-requirements-filter__lead::before {
  width: 1px;
  position: absolute;
  content: "";
  top: 50%;
  right: -28px;
  background-color: #231916;
  height: 110%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .c-requirements-filter__lead::before {
    right: -15px;
    -webkit-transform: translateY(-50%) rotate(27deg);
    -ms-transform: translateY(-50%) rotate(27deg);
    transform: translateY(-50%) rotate(27deg);
  }
}
.c-requirements-filter__buttons {
  max-width: 709.76px;
  margin: 97px auto 119px;
  grid-gap: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1024px) {
  .c-requirements-filter__buttons {
    margin: 70px auto 90px;
  }
}
@media only screen and (max-width: 767px) {
  .c-requirements-filter__buttons {
    grid-gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 70px auto;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements-filter__buttons {
    max-width: 250px;
    margin: 50px auto 70px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-requirements-filter__btn {
  background: white;
  color: #3f3b3a;
  border-style: Solid;
  border-color: #3f3b3a;
  border-color: rgb(63, 59, 58);
  border-width: 1px;
  border-radius: 8px;
  font-size: 1.7rem;
  letter-spacing: 1.7px;
  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;
  padding: 11px 0;
  position: relative;
}
.c-requirements-filter__btn.is-active {
  background: rgb(63, 59, 58);
  color: white;
}
.c-requirements-filter__icon {
  color: white;
  background-color: #3f3b3a;
  position: absolute;
  width: 22.4px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  right: 17px;
}
.c-requirements-filter__icon::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-requirements {
  padding: 0 20px;
}
.c-requirements__title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(44.02 / 28);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-requirements__title {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements__title {
    font-size: 2.4rem;
  }
}
.c-requirements__list {
  max-width: 1068.33px;
  margin: 60px auto 181px;
  grid-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1024px) {
  .c-requirements__list {
    margin: 45px auto 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-requirements__list {
    margin: 45px auto 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements__list {
    grid-template-columns: repeat(1, 1fr);
    margin: 35px auto 80px;
  }
}
.c-requirements__item {
  background: rgb(246, 246, 246);
  border-radius: 16px;
  padding: 46px 24px 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  .c-requirements__item {
    padding: 35px 20px 16px;
  }
}
.c-requirements__head {
  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-requirements__number {
  background: #00499e;
  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;
  width: 39.9px;
  aspect-ratio: 1/1;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ffffff;
  margin-right: 18px;
}
@media only screen and (max-width: 767px) {
  .c-requirements__number {
    width: 35.9px;
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-right: 15px;
  }
}
.c-requirements__name {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #00499e;
}
@media only screen and (max-width: 767px) {
  .c-requirements__name {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
.c-requirements__image {
  margin: 42px 0 23px;
}
@media only screen and (max-width: 516px) {
  .c-requirements__image {
    margin: 30px 0 23px;
  }
}
.c-requirements__description {
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .c-requirements__description {
    letter-spacing: 0;
  }
}
.c-requirements__detail {
  background: #ffffff;
  padding: 11px 15px;
  margin: 18px 0 10px;
}
.c-requirements__detail-title {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}
.c-requirements__detail-text {
  font-size: 1.4rem;
  letter-spacing: 1.4px;
  margin: 2px 0 10px;
}
.c-requirements-detail {
  max-width: 972.25px;
  margin: 0 auto 112px;
  padding: 0 20px;
}
@media only screen and (max-width: 516px) {
  .c-requirements-detail {
    margin: 0 auto 90px;
  }
}
.c-requirements-detail__button {
  grid-gap: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 72px 0 39px;
}
@media only screen and (max-width: 1024px) {
  .c-requirements-detail__button {
    margin: 52px auto 39px;
  }
}
@media only screen and (max-width: 767px) {
  .c-requirements-detail__button {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
    margin: 35px auto 39px;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements-detail__button {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-requirements-detail__tab {
  background: rgb(255, 255, 255);
  border-style: Solid;
  border-color: #0079c0;
  border-color: rgb(0, 121, 192);
  border-width: 1px;
  border-radius: 7px;
  font-size: 1.6rem;
  color: #0079c0;
  font-family: "Noto Sans JP", sans-serif;
  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;
  padding: 10px;
  min-height: 77.33px;
}
.c-requirements-detail__item {
  background: rgb(255, 255, 255);
  border-style: Solid;
  border-color: #e6e6e7;
  border-color: rgb(230, 230, 231);
  border-width: 5px;
  border-radius: 17px;
  padding: 59px 20px;
}
.c-requirements-detail__title {
  max-width: 775px;
  margin: 0 auto 50px;
  background: rgb(0, 121, 192);
  border-radius: 9px;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 2.2px;
  color: #ffffff;
  text-align: center;
  padding: 19px 0;
}
@media only screen and (max-width: 767px) {
  .c-requirements-detail__title {
    font-size: 2rem;
    letter-spacing: 1.2px;
    padding: 15px 0;
  }
}
.c-requirements-detail__table {
  max-width: 776.43px;
  margin: 0 auto;
}
.c-requirements-detail__row {
  border-top: 1px solid #cacacb;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  padding: 18px 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 516px) {
  .c-requirements-detail__row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-requirements-detail__row:last-child {
  border-bottom: 1px solid #cacacb;
}
.c-requirements-detail__label {
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 767px) {
  .c-requirements-detail__label {
    min-width: 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements-detail__label {
    margin-bottom: 5px;
  }
}
.c-requirements-detail__content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 84%;
  -ms-flex: 0 0 84%;
  flex: 0 0 84%;
}
@media only screen and (max-width: 767px) {
  .c-requirements-detail__content {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.c-requirements-flow {
  background: #f3f3f3;
  padding: 68px 20px;
}
.c-requirements-flow__list {
  max-width: 934.8px;
  margin: 72px auto;
  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;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-requirements-flow__list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto 20px;
    max-width: 735px;
  }
}
@media only screen and (max-width: 767px) {
  .c-requirements-flow__list {
    gap: 40px 30px;
    max-width: 420px;
  }
}
.c-requirements-flow__list::after {
  width: 100%;
  max-width: 660.54px;
  position: absolute;
  content: "";
  top: 73px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: white;
  height: 48.39px;
}
@media only screen and (max-width: 767px) {
  .c-requirements-flow__list::after {
    display: none;
  }
}
.c-requirements-flow__item {
  width: 193.59px;
}
@media only screen and (max-width: 516px) {
  .c-requirements-flow__item {
    margin: 0 auto;
  }
}
.c-requirements-flow__item:nth-child(1) .c-requirements-flow__icon {
  width: 123.56px;
  margin: 27px auto;
}
.c-requirements-flow__item:nth-child(2) .c-requirements-flow__icon {
  width: 66.68px;
  margin: 32px auto;
}
.c-requirements-flow__item:nth-child(3) .c-requirements-flow__icon {
  width: 101.97px;
  margin: 40px auto;
}
.c-requirements-flow__item:nth-child(4) .c-requirements-flow__icon {
  width: 91.45px;
  margin: 42px auto;
}
.c-requirements-flow__box {
  width: 193.59px;
  aspect-ratio: 1/1;
  background: rgb(0, 121, 192);
  border-radius: 12px;
  z-index: 2;
  position: relative;
  padding: 3px 11px;
}
.c-requirements-flow__step {
  color: white;
  font-size: 3rem;
  line-height: 1;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings:
    "wght" 600,
    "wdth" 90,
    "slnt" 0;
}
.c-requirements-flow__step span {
  font-size: 18px;
  font-size: 1.8rem;
  font-variation-settings:
    "wght" 700,
    "wdth" 90,
    "slnt" 0;
  letter-spacing: 1px;
  margin-right: -5px;
}
.c-requirements-flow__name {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.4117647059;
  margin: 13px 0 14px;
}
.c-requirements-flow__text {
  font-size: 1.5rem;
  line-height: calc(20 / 15);
}
.c-requirements__link {
  background: rgb(0, 73, 158);
  border-radius: 12px;
  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;
  max-width: 440px;
  padding: 52px 20px;
  margin: 86px auto 132px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition:
    background 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    background 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .c-requirements__link {
    margin: 40px auto 65px;
    scale: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .c-requirements__link {
    scale: 0.7;
  }
}
@media only screen and (max-width: 516px) {
  .c-requirements__link {
    padding: 35px 20px;
  }
}
.c-requirements__link span {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(50.37 / 28);
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 516px) {
  .c-requirements__link span {
    font-size: 2.6rem;
  }
}
.c-requirements__link img {
  width: 43px;
  margin-left: 55px;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-filter 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-filter 0.3s ease;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-filter 0.3s ease;
}
.c-requirements__link:hover {
  background: rgb(0, 100, 200);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.c-requirements__link:hover img {
  -webkit-transform: translateX(10px) scale(1.2);
  -ms-transform: translateX(10px) scale(1.2);
  transform: translateX(10px) scale(1.2);
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}

.c-requirements-detail__item {
  display: none;
}

.c-requirements-detail__item.is-active {
  display: block;
}

.c-requirements-detail__tab {
  cursor: pointer;
}

.c-requirements-detail__tab.is-active {
  color: white;
  background: #0079c0;
}

.c-subpage__bg.privacy {
  background-image: url("../images/privacy.jpg");
}
.c-privacy__main {
  margin: 145px 0;
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  .c-privacy__main {
    margin: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-privacy__main {
    margin: 100px 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-privacy__main {
    margin: 80px 0;
  }
}
.c-privacy__block {
  max-width: 809px;
  margin: 0 auto 75px;
}
@media only screen and (max-width: 1024px) {
  .c-privacy__block {
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .c-privacy__block {
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 516px) {
  .c-privacy__block {
    margin: 0 auto 30px;
  }
}
.c-privacy__title {
  border-bottom: 1px solid #00499e;
  font-size: 1.9rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 516px) {
  .c-privacy__title {
    margin-bottom: 15px;
  }
}
.c-privacy__text {
  font-size: 1.5rem;
}

.c-subpage__bg {
  background-image: url("../images/contact.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 328px 20px 227px;
  color: white;
}
@media only screen and (max-width: 1024px) {
  .c-subpage__bg {
    padding: 271px 20px 160px;
  }
}
@media only screen and (max-width: 767px) {
  .c-subpage__bg {
    padding: 180px 20px 125px;
  }
}
@media only screen and (max-width: 516px) {
  .c-subpage__bg {
    padding: 160px 20px 100px;
  }
}
.c-subpage__bg.contact .c-subpage__title {
  color: #3e3a39;
}
.c-subpage__title {
  max-width: 1009px;
  margin: 0 auto;
  font-weight: bold;
}
.c-subpage__title-ja {
  font-size: 2rem;
  letter-spacing: 5px;
}
@media only screen and (max-width: 767px) {
  .c-subpage__title-ja {
    letter-spacing: 2px;
  }
}
.c-subpage__title-en {
  font-size: 5rem;
  line-height: calc(44.02 / 50);
  letter-spacing: 5px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 6px;
}
@media only screen and (max-width: 1024px) {
  .c-subpage__title-en {
    font-size: 4rem;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .c-subpage__title-en {
    font-size: 3rem;
    letter-spacing: 2px;
  }
}
.c-contact {
  margin-top: 121px;
  padding: 0 20px;
  margin-bottom: 229px;
}
@media only screen and (max-width: 1024px) {
  .c-contact {
    margin-bottom: 129px;
  }
}
@media only screen and (max-width: 767px) {
  .c-contact {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact {
    margin-top: 100px;
    margin-bottom: 80px;
  }
}
.c-contact__box {
  background: rgb(247, 248, 250);
  border-radius: 20px;
  max-width: 1001px;
  margin: 0 auto 94px;
  padding: 49px 20px 57px;
}
@media only screen and (max-width: 516px) {
  .c-contact__box {
    margin: 0 auto 80px;
  }
}
.c-contact__title {
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 3px;
  color: #231916;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .c-contact__title {
    font-size: 2.6rem;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__title {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}
.c-contact__tel {
  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;
  font-weight: bold;
  font-size: 4.8rem;
  letter-spacing: 4.8px;
  margin: 12px 0 15px;
  color: #00489d;
}
@media only screen and (max-width: 1024px) {
  .c-contact__tel {
    scale: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .c-contact__tel {
    margin: 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__tel {
    scale: 0.6;
    text-wrap-mode: nowrap;
    letter-spacing: 2px;
  }
}
.c-contact__tel img {
  width: 41.5px;
  margin-right: 15px;
  margin-top: 7px;
}
.c-contact__note {
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 2.2px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .c-contact__note {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__note {
    font-size: 1.8rem;
  }
}
.c-contact__form-notes {
  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;
  font-size: 1.6rem;
  line-height: calc(44.02 / 16);
  letter-spacing: 1.6px;
  margin-top: 57px;
}
@media only screen and (max-width: 767px) {
  .c-contact__form-notes {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__form-notes {
    letter-spacing: 0;
  }
}
.c-subpage__bg.company {
  background-image: url("../images/company/company_bg.jpg");
}
.c-company__greeting {
  padding: 0 20px;
}
.c-company__greeting-inner {
  max-width: 1000px;
  margin: 183px auto 159px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 37px;
}
@media only screen and (max-width: 1024px) {
  .c-company__greeting-inner {
    margin: 120px auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__greeting-inner {
    margin: 90px auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__greeting-inner {
    margin: 80px auto;
  }
}
.c-company__section-label {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: calc(44.02 / 18);
  color: #00489d;
  font-family: "Noto Sans JP", sans-serif;
}
.c-company__greeting-lead {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(44.02 / 28);
  font-family: "Noto Sans JP", sans-serif;
  margin: 14px 0 22px;
}
@media only screen and (max-width: 767px) {
  .c-company__greeting-lead {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__greeting-lead {
    font-size: 2.2rem;
    margin: 5px 0 22px;
  }
}
.c-company__greeting-body {
  font-size: 1.5rem;
  line-height: calc(27 / 15);
}
.c-company__greeting-profile {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.5%;
  -ms-flex: 0 0 41.5%;
  flex: 0 0 41.5%;
}
@media only screen and (max-width: 767px) {
  .c-company__greeting-profile {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.c-company__greeting-photo {
  margin: 14px 0 32px;
}
.c-company__greeting-representative {
  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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.c-company__greeting-position {
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 18px;
  margin-bottom: 3px;
}
.c-company__greeting-name {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 5.6px;
  font-family: "shippori-mincho", sans-serif;
}
@media only screen and (max-width: 767px) {
  .c-company__greeting-name {
    font-size: 2.6rem;
    letter-spacing: 3.6px;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__greeting-name {
    font-size: 2.4rem;
    letter-spacing: 2.6px;
  }
}
.c-company__philosophy {
  background-image: url("../images/company/company_philosophy.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 72px 20px 42px;
  color: white;
  text-align: center;
  margin-bottom: 80px;
}
.c-company__section-title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(44.02 / 28);
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .c-company__section-title {
    font-size: 2.6rem;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__section-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.c-company__philosophy-inner {
  max-width: 710px;
  margin: 0 auto;
}
.c-company__philosophy-heading {
  font-weight: bold;
  font-size: 5rem;
  line-height: calc(44.02 / 50);
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .c-company__philosophy-heading {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__philosophy-heading {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__philosophy-heading {
    font-size: 2.5rem;
    line-height: 1.55;
  }
}
.c-company__philosophy-text {
  font-size: 1.5rem;
  line-height: calc(27 / 15);
  margin: 38px 0 90px;
}
@media only screen and (max-width: 516px) {
  .c-company__philosophy-text {
    margin: 38px 0 70px;
  }
}
.c-company__layout {
  padding: 0 20px;
}
.c-company__layout.gray {
  background: #f2f2f2;
  margin: 134px 0;
  padding: 99px 20px 161px;
}
@media only screen and (max-width: 1024px) {
  .c-company__layout.gray {
    margin: 120px 0;
    padding: 99px 20px 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__layout.gray {
    margin: 102px 0 75px;
    padding: 80px 20px 100px;
  }
}
.c-company__layout.gray .c-company__label {
  width: 19.5%;
}
@media only screen and (max-width: 516px) {
  .c-company__layout.gray .c-company__label {
    width: 100%;
  }
}
.c-company__layout.gray .c-company__value {
  letter-spacing: 0;
}
.c-company__layout-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .c-company__layout-box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__layout-box {
    gap: 35px;
  }
}
.c-company__layout-title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(44.02 / 28);
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .c-company__layout-title {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__layout-title {
    font-size: 2.4rem;
  }
}
.c-company__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83%;
  -ms-flex: 0 0 83%;
  flex: 0 0 83%;
  margin-top: -14px;
}
@media only screen and (max-width: 1024px) {
  .c-company__info {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.c-company__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #9e9e9f;
}
@media only screen and (max-width: 516px) {
  .c-company__row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
.c-company__label {
  font-size: 1.5rem;
  color: #00489d;
  width: 23.5%;
}
@media only screen and (max-width: 1024px) {
  .c-company__label {
    width: 19.5%;
    min-width: 130px;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__label {
    width: 100%;
    margin-bottom: 5px;
  }
}
.c-company__value {
  font-size: 1.4rem;
  letter-spacing: 2.7px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-company__value.last {
  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: 26px;
}
@media only screen and (max-width: 767px) {
  .c-company__value.last {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__value.last p {
    width: 100%;
  }
}
.c-company__map {
  width: 100%;
  height: 425px;
  background: #9e9e9f;
  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;
  font-size: 4.6rem;
  margin: 25px 0 15px;
}
.c-company__certifications {
  max-width: 1040px;
  margin: 0 auto 165px;
  padding: 0 20px;
}
@media only screen and (max-width: 1024px) {
  .c-company__certifications {
    margin: 0 auto 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__certifications {
    margin: 0 auto 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__certifications {
    margin: 0 auto 80px;
  }
}
.c-company__cert-list {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 74px;
  gap: 118px;
}
@media only screen and (max-width: 1024px) {
  .c-company__cert-list {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__cert-list {
    gap: 80px;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__cert-list {
    gap: 65px;
    margin-top: 30px;
  }
}
.c-company__cert-block {
  max-width: 833.13px;
  width: 100%;
}
.c-company__cert-heading {
  font-weight: bold;
  font-size: 2rem;
  color: #00499e;
  margin-bottom: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid #231916;
}
@media only screen and (max-width: 516px) {
  .c-company__cert-heading {
    font-size: 1.9rem;
  }
}
.c-company__cert-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 92px;
}
@media only screen and (max-width: 1024px) {
  .c-company__cert-inner {
    gap: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__cert-inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-company__cert-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24%;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  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;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .c-company__cert-image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
  }
}
.c-company__cert-info {
  margin-top: -12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .c-company__cert-info {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.c-company__cert-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  border-bottom: 1px solid #9fa0a0;
  padding: 14px 0;
}
.c-company__cert-row dt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 23%;
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  font-size: 1.4rem;
  color: #00499e;
}
@media only screen and (max-width: 516px) {
  .c-company__cert-row dt {
    min-width: 87px;
  }
}
.c-company__cert-row dd {
  max-width: 365.8px;
}

#history {
  margin-top: -1px;
  padding-top: 1px;
}
.c-company__btn {
  border: 1px solid;
  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;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  width: 191.63px;
  height: 43px;
  color: #00489d;
}
.c-company__btn:hover {
  background-color: #00489d;
  color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-main {
  padding-top: 78px;
}
.l-main__hero-visual img {
  transform: scaleX(1.06);
  transform-origin: center;
}
.l-main__hero {
  background: #f7f9fa;
  padding: 46px 20px 52px;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 516px) {
  .l-main__hero {
    z-index: 4;
  }
}
.l-main__hero-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 1450px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 1124px) {
  .l-main__hero-inner {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .l-main__hero-inner {
  }
}
@media only screen and (max-width: 1024px) {
  .l-main__hero-inner {
    -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;
  }
}
.l-main__hero-title {
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.35;
  margin-bottom: 15px;
  margin-top: -22px;
}
@media only screen and (max-width: 1324px) {
  .l-main__hero-title {
    font-size: 2.9vw;
  }
}
@media only screen and (max-width: 1100px) {
  .l-main__hero-title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1024px) {
  .l-main__hero-title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__hero-title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__hero-title {
    font-size: 2.6rem;
  }
}
.l-main__hero-text {
  line-height: 27px;
  color: #454140;
}
.l-main__hero-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 64%;
  -ms-flex: 0 0 64%;
  flex: 0 0 73%;
}
@media only screen and (max-width: 1024px) {
  .l-main__hero-image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__hero-image {
    scale: 1.25;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.l-main__hero-visual {
  position: relative;
}
.l-main__hero-icon {
  width: 8.5%;
  position: absolute;
}
.l-main__hero-icon--01 {
  top: 9%;
  left: 22%;
}
.l-main__hero-icon--02 {
  top: 17%;
  right: 7%;
}
.l-main__hero-icon--03 {
  top: 30.5%;
  right: 0%;
}
.l-main__hero-icon--04 {
  bottom: 42%;
  left: 21%;
}
.l-main__hero-icon--05 {
  bottom: 29.5%;
  right: 6.5%;
}
.l-main__recruit {
  max-width: 1240px;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}
.l-main__recruit::after {
  width: 100%;
  position: absolute;
  content: "";
  top: -88px;
  left: 4px;
  background-image: url("../images/index/about_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 462.2px;
}
@media only screen and (max-width: 1024px) {
  .l-main__recruit::after {
    width: 70%;
  }
}
.l-main__recruit-inner {
  max-width: 1090px;
  margin: 0 auto;
}
.l-main__recruit-head {
  border-style: Solid;
  border-color: rgb(20, 113, 186);
  border-width: 3px;
  border-radius: 9px;
  max-width: 408px;
  background-image: url(../images/index/recruit_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 7px 0;
  margin-left: auto;
  margin-top: -31px;
  z-index: 3;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1024px) {
  .l-main__recruit-head {
    margin-top: 0;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__recruit-head {
    margin-top: 30px;
  }
}
.l-main__recruit-head:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.l-main__recruit-people {
  width: 18%;
  margin-top: 23px;
  margin-left: 4px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.l-main__recruit-head:hover .l-main__recruit-people {
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.l-main__recruit-text {
  width: 79%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}
.l-main__recruit-head:hover .l-main__recruit-text {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
@media only screen and (max-width: 1024px) {
  .l-main__recruit-head {
    max-width: 358px;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__recruit-head {
    max-width: 320px;
  }
}
.l-main__about {
  z-index: 2;
  position: relative;
  margin-top: -54px;
}
@media only screen and (max-width: 767px) {
  .l-main__about {
    margin-top: 0;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__about {
    margin-top: 25px;
  }
}
.l-main__about-head {
  max-width: 920px;
  margin: 0 auto 0;
}
.l-main__about-label {
  font-size: 1.8rem;
  line-height: calc(41 / 18);
  color: #00499e;
}
.l-main__about-title {
  font-size: 3.6rem;
  line-height: 1;
  margin-top: -6px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1024px) {
  .l-main__about-title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__about-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.l-main__about-white {
  max-width: 1000px;
  margin: 0 auto 65px;
  background: #ffffff;
  border-radius: 10px;
  padding: 35px 20px 23px;
}
@media only screen and (max-width: 767px) {
  .l-main__about-white {
    margin: 0 auto 30px;
    padding: 35px 0 23px;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__about-white {
    margin: 0 auto 15px;
  }
}
.l-main__about-body {
  max-width: 866px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-main__about-body {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.l-main__about-body.strengths {
  max-width: 880px;
  padding-left: 32px;
}
@media only screen and (max-width: 1024px) {
  .l-main__about-body.strengths {
    padding-left: 0;
    gap: 40px;
  }
}
.l-main__about-body.strengths .l-main__about-image-wrap {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 38%;
  -ms-flex: 0 0 38%;
  flex: 0 0 38%;
  margin-top: 25px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .l-main__about-body.strengths .l-main__about-image-wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .l-main__about-body.strengths .l-main__about-image-wrap .l-main__about-image {
    max-width: 400px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 516px) {
  .l-main__about-body.strengths .l-main__about-image-wrap .l-main__about-image {
    max-width: 280px;
  }
}
.l-main__about-image-wrap {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  margin-left: 8%;
  margin-top: 10px;
}
@media only screen and (max-width: 1024px) {
  .l-main__about-image-wrap {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__about-image-wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__about-image {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__about-image {
    max-width: 250px;
  }
}
.l-main__about-lead {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: calc(37 / 25);
  color: #3f3b3a;
}
@media only screen and (max-width: 516px) {
  .l-main__about-lead {
    font-size: 2rem;
  }
}
.l-main__about-description {
  font-size: 1.5rem;
  line-height: calc(27 / 15);
  color: #454140;
  margin: 17px 0 21px;
}
.l-main__about-link-wrap {
  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;
}
@media only screen and (max-width: 1024px) {
  .l-main__about-link-wrap {
    margin-right: -85px;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__about-link-wrap {
    margin-right: 0;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__about-link-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.l-main__about-link-item {
  --link-icon-color: #00499e;
}
.l-main__about-link-item:nth-child(2) {
  --link-icon-color: #009944;
}
.l-main__about-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-main__about-link .l-main__about-link-text {
  margin-left: 25px;
}
.l-main__about-link-icon {
  background: var(--link-icon-color);
  width: 43px;
  aspect-ratio: 1/1;
  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;
  border-radius: 50%;
}
.l-main__about-link-img {
  width: 9.5px;
  margin-left: 4px;
  z-index: 3;
}
.l-main__about-link-text {
  font-size: 1.5rem;
  color: var(--link-icon-color);
  margin-left: 10px;
}
.l-main__program {
  max-width: 1240px;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 52px;
}
.l-main__program::after {
  width: 53%;
  position: absolute;
  content: "";
  top: -120px;
  right: 0;
  background-image: url(../images/index/program_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 462.2px;
}
.l-main__program-inner {
  z-index: 2;
  position: relative;
}
.l-main__program-title {
  font-size: 2.2rem;
  line-height: 1;
  color: #ffffff;
  background-image: url(../images/index/title_green.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
  padding: 15px 20px 26px;
  text-align: center;
  width: 301.56px;
  margin: 0 auto;
}
@media only screen and (max-width: 516px) {
  .l-main__program-title {
    scale: 0.9;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
  }
}
.l-main__program-subtitle {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.64;
  color: #3f3b3a;
  text-align: center;
  margin: 6px 0 61px;
}
@media only screen and (max-width: 516px) {
  .l-main__program-subtitle {
    font-size: 2rem;
    margin: 6px 0 40px;
  }
}
.l-main__program-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
  max-width: 655px;
  margin: 0 auto 146px;
}
@media only screen and (max-width: 1024px) {
  .l-main__program-list {
    gap: 20px;
    margin: 0 auto 110px;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__program-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 516px) {
  .l-main__program-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 290px;
    margin: 0px auto 90px;
  }
}
.l-main__program-item {
  background: rgb(246, 246, 246);
  border-radius: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 9px 16px;
}
@media only screen and (max-width: 1024px) {
  .l-main__program-item {
    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;
  }
}
.l-main__program-item .l-main__about-link-icon {
  width: 29.8px;
}
.l-main__program-image-wrap {
  height: 146px;
  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;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .l-main__program-image-wrap {
    margin-bottom: 48px;
  }
}
.l-main__program-text {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: calc(27 / 17);
  letter-spacing: 0.85px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1124px) {
  .l-main__program-text {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .l-main__program-text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.l-main__program-image2 {
  width: 61%;
  margin: -15px auto;
}
.l-main__program-image3 {
  width: 84%;
  margin: 0 auto -18px;
}
.l-main__business-product {
  position: relative;
  padding: 0 20px;
}
.l-main__business-product::after {
  width: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgb(247, 249, 250);
  border-radius: 20px;
  height: 100%;
  max-width: 1001px;
}
.l-main__business {
  z-index: 2;
  position: relative;
  padding-top: 56px;
}
.l-main__business-list {
  grid-gap: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1093.4px;
  margin: 76px auto 149px;
}
@media only screen and (max-width: 1024px) {
  .l-main__business-list {
    grid-gap: 2rem;
    margin: 76px auto 100px;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__business-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 55px auto 90px;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__business-list {
    grid-template-columns: repeat(1, 1fr);
    margin: 45px auto 80px;
    max-width: 330px;
  }
}
.l-main__business-item {
  background: rgb(255, 255, 255);
  border-radius: 11px;
  -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
  padding: 24px;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .l-main__business-item {
    padding: 15px;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__business-item {
    padding: 20px;
  }
}
.l-main__business-item:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}
.l-main__business-image-wrap {
  border-radius: 11px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-main__business-image-wrap img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-main__business-item:hover .l-main__business-image-wrap img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.l-main__business-name {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 2.05;
  letter-spacing: 2px;
  margin: 8px 6px 4px;
}
@media only screen and (max-width: 1124px) {
  .l-main__business-name {
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-main__business-name {
    margin: 25px 6px 4px;
  }
}
.l-main__business-text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 1.4px;
  margin-left: 9px;
  margin-bottom: 6px;
}
.l-main__business-image1 {
  position: relative;
}
.l-main__business-image1::after {
  width: 43%;
  position: absolute;
  content: "";
  bottom: -21%;
  right: 0;
  background-image: url(../images/index/business_icon01.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 44%;
}
.l-main__business-image2 {
  position: relative;
}
.l-main__business-image2::after {
  width: 41%;
  position: absolute;
  content: "";
  bottom: -23%;
  right: 0;
  background-image: url(../images/index/business_icon02.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 48%;
}
.l-main__business-image3 {
  position: relative;
}
.l-main__business-image3::after {
  width: 35.5%;
  position: absolute;
  content: "";
  bottom: -24.5%;
  right: 0;
  background-image: url(../images/index/business_icon03.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 31.5%;
}
.l-main__business-image4 {
  position: relative;
}
.l-main__business-image4::after {
  width: 63%;
  position: absolute;
  content: "";
  bottom: -20%;
  right: 0;
  background-image: url(../images/index/business_icon04.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 36%;
}
.l-main__business-image5 {
  position: relative;
}
.l-main__business-image5::after {
  width: 39%;
  position: absolute;
  content: "";
  bottom: -33%;
  right: -6%;
  background-image: url(../images/index/business_icon05.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 44%;
}
.l-main__business-image6 {
  position: relative;
}
.l-main__business-image6::after {
  width: 32%;
  position: absolute;
  content: "";
  bottom: -18%;
  right: 0;
  background-image: url(../images/index/business_icon06.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 38%;
}
.l-main__product {
  z-index: 2;
  position: relative;
  padding-bottom: 30px;
}
.l-main__product-list {
  grid-gap: 5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 953.43px;
  margin: 62px auto;
}
@media only screen and (max-width: 1024px) {
  .l-main__product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .l-main__product-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__product-list {
    grid-gap: 2rem;
    margin: 42px auto;
  }
}
.l-main__product-image-wrap {
  margin-bottom: -15px;
}
.l-main__product-image {
  border-radius: 11px;
  overflow: hidden;
}
.l-main__product-category {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1;
  color: #ffffff;
  background: rgb(0, 73, 158);
  border-radius: 8px;
  margin: 0 0 5px;
  padding: 10px 10px;
  display: inline-block;
}
.l-main__product-name {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 37.11px;
}
.l-main__news-network {
  position: relative;
  margin-top: 59px;
  padding: 106px 20px 0;
}
@media only screen and (max-width: 1024px) {
  .l-main__news-network {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__news-network {
    padding: 80px 20px 0;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__news-network {
    padding: 55px 20px 0;
  }
}
.l-main__news-network::after {
  width: 55%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background-image: url(../images/index/news.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 416.8px;
}
.l-main__news-inner {
  max-width: 998.3px;
  margin: 0 auto;
}
.l-main__news-inner .l-main__about-link-item {
  margin-left: 11px;
}
.l-main__news-inner .l-main__about-link-text {
  margin-left: 25px;
}
.l-main__news-list {
  margin: 62px auto 37px;
}
@media only screen and (max-width: 516px) {
  .l-main__news-list {
    margin: 42px auto 20px;
  }
}
.l-main__news-item {
  background: rgb(246, 246, 246);
  border-radius: 7px;
  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;
  font-weight: 500;
  padding: 35px 24px;
  align-items: center;
  margin-bottom: 29px;
}
@media only screen and (max-width: 767px) {
  .l-main__news-item {
    padding: 35px 15px;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__news-item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 15px;
  }
}
.l-main__news-date {
  font-size: 1.2rem;
  line-height: calc(24 / 12);
}
.l-main__news-category {
  font-size: 1.2rem;
  line-height: 1;
  color: #00499e;
  background: rgb(255, 255, 255);
  border-radius: 14px;
  padding: 7.5px 15.5px;
  margin: 0 32px;
}
@media only screen and (max-width: 767px) {
  .l-main__news-category {
    margin: 0 25px;
  }
}
.l-main__news-text {
  font-size: 1.7rem;
  line-height: 1.75;
}
@media only screen and (max-width: 516px) {
  .l-main__news-text {
    width: 100%;
    margin-top: 10px;
  }
}
.l-main__network {
  background-image: url(../images/index/network.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 63px 20px;
  max-width: 999px;
  margin: 160px auto 127px;
  border-radius: 60px;
}
@media only screen and (max-width: 1024px) {
  .l-main__network {
    margin: 120px auto;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__network {
    margin: 100px auto;
    border-radius: 45px;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__network {
    margin: 80px auto;
    border-radius: 30px;
  }
}
.l-main__network-title {
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.7385714286;
  color: #ffffff;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .l-main__network-title {
    scale: 0.9;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__network-title {
    scale: 1;
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__network-title {
    font-size: 2.2rem;
  }
}
.l-main__network-stats {
  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;
  gap: 9px;
  max-width: 703.18px;
  margin: 61px auto 66px;
}
@media only screen and (max-width: 1024px) {
  .l-main__network-stats {
    scale: 0.9;
  }
}
@media only screen and (max-width: 767px) {
  .l-main__network-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 35px auto;
  }
}
@media only screen and (max-width: 516px) {
  .l-main__network-stats {
    grid-template-columns: repeat(1, 1fr);
    margin: 15px auto 10px;
    max-width: 240px;
  }
}
.l-main__network-stat {
  background: rgb(255, 255, 255);
  border-style: Solid;
  border-color: #00499e;
  border-color: rgb(0, 73, 158);
  border-width: 1px;
  border-radius: 11px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 33px 31px;
  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;
}
@media only screen and (max-width: 767px) {
  .l-main__network-stat {
    min-height: 225px;
  }
}
.l-main__network-stat-label {
  font-size: 2.1rem;
  line-height: 1.4733333333;
  color: #00499e;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}
@media only screen and (max-width: 767px) {
  .l-main__network-stat-label {
    margin-top: -35px;
  }
}
.l-main__network-stat-value {
  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;
  position: relative;
  margin: 33px 0 -1px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .l-main__network-stat-value {
    margin: 0;
  }
}
.l-main__network-stat-value::after {
  width: 100%;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: #d9e8f1;
  height: 19.24px;
}
.l-main__network-number {
  font-size: 7.425rem;
  line-height: 1;
  letter-spacing: 7.4px;
  color: #00499e;
  font-family: "bahnschrift", sans-serif;
  font-weight: 600;
  width: 65%;
  text-align: center;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .l-main__network-number {
    font-size: 5.425rem;
  }
}
.l-main__network-unit {
  font-size: 2.1rem;
  line-height: 1.7;
  letter-spacing: 2.1px;
  color: #00499e;
  z-index: 2;
}
.l-main__network-link-wrap {
  --link-icon-color: white;
  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;
}
.l-main__what {
  background: #f7f9fa;
  padding: 92px 20px 108px;
}
@media only screen and (max-width: 767px) {
  .l-main__what {
    padding: 62px 20px 90px;
  }
}
.l-main__what .l-main__about-head {
  text-align: center;
}
.l-main__what-list {
  grid-gap: 4rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1076.21px;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .l-main__what-list {
    grid-gap: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 516px) {
  .l-main__what-list {
    grid-template-columns: repeat(1, 1fr);
    margin: 45px auto 0;
    max-width: 400px;
  }
}
.l-main__what-item {
  background: rgb(255, 255, 255);
  border-radius: 13px;
  overflow: hidden;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.l-main__what-item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.l-main__what-card {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  overflow: hidden;
}
.l-main__what-card:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.l-main__what-image {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-main__what-item:hover .l-main__what-image {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.l-main__what-text1 {
  position: absolute;
  width: 89.5%;
  top: 13%;
  left: 5%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-main__what-item:hover .l-main__what-text1 {
  opacity: 1;
}
.l-main__what-people {
  position: absolute;
  width: 20%;
  bottom: 13%;
  left: 9%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-main__what-item:hover {
  opacity: 1;
}
.l-main__what-item:hover .l-main__what-link-row {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.l-main__what-link-row {
  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;
  padding: 11px 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-main__what-link-row:hover {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.l-main__what-link-text {
  letter-spacing: 2.5px;
  font-weight: bold;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .l-main__what-link-text {
    letter-spacing: 0px;
  }
}
.l-main__what-item:hover .l-main__what-link-text {
  color: #007bff;
}
.l-main__what-link-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.l-main__what-item:hover .l-main__what-link-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.l-main__what-link-icon {
  width: 30.6px;
  aspect-ratio: 1/1;
  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;
  background: #00499e;
  border-radius: 50%;
}
.l-main__what-link-img {
  width: 7.62px;
  margin-left: 2px;
}
.l-main__what-text2 {
  position: absolute;
  width: 67.5%;
  top: 36%;
  left: 18%;
}
.l-main__hero-icon {
  cursor: pointer;
  -webkit-animation: fuwafuwa 2s infinite;
  animation: fuwafuwa 2s infinite;
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.l-main__about-link {
  position: relative;
}

.l-main__about-link:before {
  content: "";
  display: block;
  width: 43px;
  height: 43px;
  background-color: #00499e;
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 9px -4px black;
  box-shadow: 0px 0px 9px -4px black;
  position: absolute;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  left: 0;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.3s ease-out;
  z-index: 2;
}

.l-main__about-link:hover:before {
  width: 100%;
  border-radius: 25px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.l-main__about-link:hover .l-main__about-link-text {
  z-index: 2;
  position: relative;
  color: white;
  padding-right: 15px;
}

.l-main__about-link:hover {
  opacity: 1;
}

.l-main__about-link-icon {
  position: relative;
}

.l-main__about-link-icon:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #ffe500;
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}

.l-main__about-link:hover .l-main__about-link-icon:after {
  width: 43px;
  height: 43px;
  border-radius: 25px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 2;
}

.l-main__program-item .l-main__about-link:hover .l-main__about-link-icon:after {
  width: 29.8px;
  height: 29.8px;
}

.l-main__program-item .l-main__about-link:before {
  width: 29.8px;
  height: 29.8px;
}

.l-main__program-item .l-main__about-link:hover:before {
  width: 100%;
}

.l-main__about-link-item.green:hover {
  margin-right: -15px;
}

.l-main__about-link-item.green .l-main__about-link-icon {
  background: #009944;
}

.l-main__about-link-item.green .l-main__about-link:before {
  background-color: #009944;
}

.l-main__network-link-wrap .l-main__about-link-icon {
  background: white;
}

.l-main__network-link-wrap .l-main__about-link:before {
  background: white;
}

.l-main__network-link-wrap .l-main__about-link:hover .l-main__about-link-text {
  color: rgb(0, 73, 158);
}

.l-main__about-link-wrap.popup .l-main__about-link-icon {
  background: white;
  width: 29.8px;
}

.l-main__about-link-wrap.popup .l-main__about-link:before {
  background: white;
}

.l-main__about-link-wrap.popup
  .l-main__about-link:hover
  .l-main__about-link-icon:after {
  width: 29.8px;
  height: 29.8px;
}

.l-main__about-link-wrap.popup .l-main__about-link:before {
  width: 29.8px;
  height: 29.8px;
}

.l-main__about-link-wrap.popup .l-main__about-link:hover::before {
  width: 100%;
}

.l-main__about-link-wrap.popup
  .l-main__about-link:hover
  .l-main__about-link-text {
  color: rgb(0, 73, 158);
}

html {
  scroll-behavior: smooth;
}

#business_01,
#business_02,
#business_03,
#business_04,
#business_05,
#business_06 {
  padding-top: 140px;
  margin-top: -140px;
}
@media only screen and (max-width: 767px) {
  #business_01,
  #business_02,
  #business_03,
  #business_04,
  #business_05,
  #business_06 {
    padding-top: 70px;
    margin-top: -70px;
  }
}

.l-popup {
  background: #fffeee;
  border: 2px solid #ea5616;
  border-radius: 10px;
  width: 306.3px;
  padding: 20px;
  position: absolute;
  top: -63%;
  left: 120%;
  z-index: 999;
  -webkit-filter: drop-shadow(0px 3px 6px #989898);
  filter: drop-shadow(0px 3px 6px #989898);
  display: none;
}
.l-popup .l-main__about-link-text {
  color: #ea5616;
}
.l-popup .l-main__about-link-wrap.popup .l-main__about-link-icon {
  background: #ea5616;
}
.l-popup .l-main__about-link-wrap.popup .l-main__about-link:before {
  background: #ea5616;
}
.l-popup
  .l-main__about-link-wrap.popup
  .l-main__about-link:hover
  .l-main__about-link-text {
  color: white;
}
@media only screen and (max-width: 1024px) {
  .l-popup {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    scale: 0.78;
  }
}
@media only screen and (max-width: 516px) {
  .l-popup {
    scale: 0.6;
  }
}

.l-popup__close {
  width: 24px;
  position: absolute;
  top: 10px;
  right: 13px;
  cursor: pointer;
}

.l-popup__title {
  font-weight: bold;
  font-size: 1.9rem;
  color: #ea5616;
}

.l-popup__text {
  font-size: 1.2rem;
  color: #231916;
  margin: 8px 0 11px;
}

.l-popup__image {
  margin-bottom: 17px;
}

.l-main__hero-icon:hover .l-popup,
.l-main__hero-icon:active .l-popup {
  display: block;
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-main__hero-icon--02 .l-popup,
.l-main__hero-icon--03 .l-popup,
.l-main__hero-icon--05 .l-popup {
  right: 120%;
  left: unset;
}
@media only screen and (max-width: 1024px) {
  .l-main__hero-icon--02 .l-popup,
  .l-main__hero-icon--03 .l-popup,
  .l-main__hero-icon--05 .l-popup {
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
  }
}

.c-product__main {
  padding: 0 20px;
}
.c-product__main .l-main__product-list {
  max-width: 958.61px;
  margin: 97px auto 150px;
  grid-gap: 6rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1024px) {
  .c-product__main .l-main__product-list {
    margin: 97px auto 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-product__main .l-main__product-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem 3rem;
    margin: 97px auto 90px;
  }
}
@media only screen and (max-width: 516px) {
  .c-product__main .l-main__product-list {
    grid-gap: 3rem 2rem;
    margin: 60px auto;
  }
}
.c-product__main .l-main__product-image-wrap {
  margin-bottom: -22px;
}
@media only screen and (max-width: 516px) {
  .c-product__main .l-main__product-image-wrap {
    margin-bottom: -18px;
  }
}
.c-product__main .l-main__product-category {
  font-size: 1.8rem;
  padding: 13px;
}
@media only screen and (max-width: 767px) {
  .c-product__main .l-main__product-category {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-product__main .l-main__product-category {
    font-size: 1.3rem;
    padding: 10px;
  }
}
.c-product__main .l-main__product-name {
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  .c-product__main .l-main__product-name {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-product__main .l-main__product-name {
    font-size: 1.6rem;
  }
}
.c-product__title {
  font-size: 2.8rem;
  line-height: calc(44.02 / 28);
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 193px 0 24px;
}
@media only screen and (max-width: 1024px) {
  .c-product__title {
    font-size: 2.5rem;
    margin: 120px 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .c-product__title {
    font-size: 2.3rem;
    margin: 100px 0 24px;
  }
}
@media only screen and (max-width: 516px) {
  .c-product__title {
    font-size: 2.1rem;
  }
}
.c-product__desc {
  font-size: 1.5rem;
  line-height: calc(27 / 15);
  max-width: 993.81px;
  margin: 0 auto;
}

.c-subpage__bg.product {
  background-image: url("../images/product_bg.jpg");
}

.c-subpage__bg.area {
  background-image: url("../images/area/area_bg.jpg");
}

.c-news__main {
  padding: 0 20px;
  max-width: 1038.3px;
  margin: 0 auto;
}
.c-news__main .l-main__news-list {
  margin: 119px auto 37px;
}
@media only screen and (max-width: 767px) {
  .c-news__main .l-main__news-list {
    margin: 100px auto 37px;
  }
}

.c-subpage__bg.news {
  background-image: url("../images/news_bg.jpg");
  color: #3e3a39;
}

.c-area__main {
  padding: 0 20px;
}
.c-area__title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(44.02 / 28);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin: 185px 0 83px;
}
@media only screen and (max-width: 1024px) {
  .c-area__title {
    font-size: 2.6rem;
    margin: 125px 0 83px;
  }
}
@media only screen and (max-width: 767px) {
  .c-area__title {
    font-size: 2.1rem;
    margin: 100px 0 55px;
  }
}
@media only screen and (max-width: 516px) {
  .c-area__title {
    text-align: left;
    margin: 90px 0 45px;
  }
}
.c-area__map1 {
  max-width: 972.64px;
  margin: 0 auto;
  position: relative;
}
.c-area__map2 {
  max-width: 1155px;
  margin: 55px auto 159px;
  border-top: 1px solid #d9ecf1;
  padding-top: 73px;
}
@media only screen and (max-width: 1024px) {
  .c-area__map2 {
    max-width: 754.87px;
    margin: 55px auto 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-area__map2 {
    margin: 55px auto 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-area__map2 {
    margin: 40px auto 80px;
    padding-top: 36px;
  }
}
.c-area__map2 img {
  max-width: 754.87px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .c-area__map2 img {
    max-width: unset;
    width: 100%;
  }
}
.c-area__content {
  background: rgb(251, 251, 251);
  border-radius: 16px;
  max-width: 1073.12px;
  margin: 0 auto 218px;
  padding: 52px 35px;
}
@media only screen and (max-width: 1024px) {
  .c-area__content {
    padding: 52px 20px;
    margin: 0 auto 118px;
  }
}
@media only screen and (max-width: 767px) {
  .c-area__content {
    padding: 52px 20px 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-area__content {
    margin: 0 auto 80px;
  }
}
.c-area__region {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 55px;
  margin-bottom: 55px;
  border-bottom: 1px solid #d9ecf1;
}
@media only screen and (max-width: 767px) {
  .c-area__region {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 516px) {
  .c-area__region {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
}
.c-area__region-title {
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 4.4px;
  color: #00499e;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 24%;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-area__region-title {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-area__region-title {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.c-area__region-title::after {
  width: 1px;
  position: absolute;
  content: "";
  top: 0;
  right: 56px;
  background-color: #00499e;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .c-area__region-title::after {
    right: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .c-area__region-title::after {
    display: none;
  }
}
.c-area__company-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-bottom: 43px;
}
@media only screen and (max-width: 1024px) {
  .c-area__company-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-area__company-wrapper:nth-child(n + 2) {
  border-top: 1px solid #d9ecf1;
  padding-top: 43px;
}
@media only screen and (max-width: 516px) {
  .c-area__company-wrapper:nth-child(n + 2) {
    padding-top: 25px;
  }
}
.c-area__company {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 1024px) {
  .c-area__company {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.c-area__company-title {
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: 4.4px;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1024px) {
  .c-area__company-title {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-area__company-title {
    font-size: 1.8rem;
  }
}
.c-area__services {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 516px) {
  .c-area__services {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-area__services:not(:last-child) {
  margin-bottom: 35px;
}
@media only screen and (max-width: 516px) {
  .c-area__services:not(:last-child) {
    margin-bottom: 25px;
  }
}
.c-area__services-title {
  font-size: 1.4rem;
  color: #00499e;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 19%;
  -ms-flex: 0 0 19%;
  flex: 0 0 19%;
}
@media only screen and (max-width: 516px) {
  .c-area__services-title {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.c-area__services-text {
  font-size: 1.4rem;
  letter-spacing: 2.8px;
}
.c-area__location-map-link {
  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;
  border-radius: 14px;
  border: 1px solid #00499e;
  max-width: 114.4px;
  font-weight: bold;
  font-size: 1.5rem;
  color: #00499e;
  margin-top: 7px;
  letter-spacing: 0;
  gap: 10px;
}
.c-area__location-map-link img {
  width: 11.83px;
}
.c-area__company-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 29%;
  -ms-flex: 0 0 29%;
  flex: 0 0 29%;
  margin-top: 9px;
}
@media only screen and (max-width: 1024px) {
  .c-area__company-image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-area__company-image {
    margin: 5px auto 0;
  }
}
/*# sourceMappingURL=styles.css.map */

.c-single__main {
  padding: 0 20px;
}
.c-single__content {
  max-width: 926.62px;
  margin: 78px auto;
}
.c-single__content .l-main__about-link-wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 121px 0 177px;
}
@media only screen and (max-width: 1024px) {
  .c-single__content .l-main__about-link-wrap {
    margin: 60px 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  .c-single__content .l-main__about-link-wrap {
    margin: 45px 0 80px;
  }
}
@media only screen and (max-width: 516px) {
  .c-single__content .l-main__about-link-wrap {
    margin: 45px 0 -25px;
  }
}
.c-single__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-single__top .l-main__news-category {
  background: rgb(246, 246, 246);
  color: black;
}
.c-single__title {
  font-size: 2.9rem;
  font-family: "Noto Sans JP", sans-serif;
  margin: 3px 0 33px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  line-height: 1.75;
}
@media only screen and (max-width: 1024px) {
  .c-single__title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-single__title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-single__title {
    font-size: 2rem;
  }
}
.c-single__text {
  font-size: 1.6rem;
  line-height: calc(30 / 16);
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 516px) {
  .c-single__text {
    font-size: 1.5rem;
  }
}
.c-single__text img {
  margin: 30px 0;
}
.c-area__links-region-title {
  display: none;
}

.c-area__links-link {
  color: transparent;
  white-space: nowrap;
  height: 3%;
}

/* OITA */
.c-area__links-link.is-oita-01 {
  position: absolute;
  top: 6.5%;
  right: 9.5%;
  width: 16%;
  z-index: 2;
}

.c-area__links-link.is-oita-02 {
  position: absolute;
  top: 10.5%;
  right: 9.5%;
  width: 16%;
}

.c-area__links-link.is-oita-03 {
  position: absolute;
  top: 14%;
  right: 2.5%;
  width: 24%;
}

.c-area__links-link.is-oita-04 {
  position: absolute;
  top: 17.5%;
  right: 2.5%;
  width: 24%;
}

.c-area__links-link.is-oita-05 {
  position: absolute;
  top: 21%;
  right: 5.5%;
  width: 21%;
}

.c-area__links-link.is-oita-06 {
  position: absolute;
  top: 25%;
  right: 12.5%;
  width: 13%;
}

.c-area__links-link.is-oita-07 {
  position: absolute;
  top: 28.5%;
  right: 9.5%;
  width: 16%;
}

.c-area__links-link.is-oita-08 {
  position: absolute;
  top: 32%;
  right: 15.5%;
  width: 10%;
}

.c-area__links-link.is-oita-09 {
  position: absolute;
  top: 36%;
  right: 8.5%;
  width: 17%;
}

.c-area__links-link.is-oita-10 {
  position: absolute;
  top: 40%;
  right: 12%;
  width: 14%;
}

/* NAGASAKI / KUMAMOTO / KANTO */
.c-area__links-link.is-nagasaki {
  position: absolute;
  top: 35.5%;
  left: 1.5%;
  width: 19%;
}

.c-area__links-link.is-kumamoto {
  position: absolute;
  top: 53.5%;
  left: 9.5%;
  width: 14%;
}

.c-area__links-link.is-kanto {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 11%;
}
#recruit_01,
#recruit_02,
#recruit_03 {
  padding-top: 150px;
  margin-top: -150px;
}
.l-header__nav-contact-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 75%;
  justify-content: flex-end;
}
.l-header__nav-wrapper {
  width: 75%;
}
.l-main__hero-content {
  max-width: 357.31px;
}
.l-header__contact.sp {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .l-header__contact.pc {
    display: none;
  }
  .l-header__contact.sp {
    display: flex;
  }
  .l-header__actions {
    margin-bottom: 0;
  }
  .l-header {
    padding: 17px 20px 2px;
  }
  .l-header__nav-contact-wrapper {
    width: 72%;
  }
  .l-header__nav-wrapper {
    width: 100%;
  }
  .l-main__hero-image {
    flex: 0 0 70%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-header {
    padding: 17px 20px;
  }
  .l-main {
    padding-top: 76px;
  }
  .l-main__hero-image {
    flex: 0 0 100%;
  }
}
.c-licen {
  max-width: 1000px;
  margin: 40px auto;
}

.c-licen__block {
  margin-bottom: 49px;
  overflow-x: auto;
}

.c-licen__heading {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 8px;
}

.c-licen__table {
  border-collapse: collapse;
  border: 1px solid #9aa3ad;
  width: 100%;
  min-width: 417px;
}

.c-licen__table th,
.c-licen__table td {
  border: 1px solid #9aa3ad;
  padding: 10.5px 14px;
  font-size: 14px;
  line-height: 1.35;
  vertical-align: middle;
}

.c-licen__table thead th {
  background: #00499f;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  font-weight: bold;
  font-size: 12px;
}

/* ô xanh nhưng “trống” giống hình */
.c-licen__th-blank {
  background: #0b4ea2;
}

/* canh độ rộng cột giống hình */
.c-licen__th-right {
  width: 140px;
}
.c-licen__count {
  width: 140px;
  text-align: center;
  white-space: nowrap;
}

.c-licen__group {
  width: 180px;
  text-align: center;
  font-weight: 700;
  background: #fff;
}

.c-licen__name {
  text-align: left;
  word-break: break-word;
}

/* ====== riêng cho 建設業法 (có thêm cột 1級/2級) ====== */
.c-licen__table--kensetsu .c-licen__group {
  width: 170px;
}
.c-licen__grade {
  width: 70px;
  text-align: center;
  white-space: nowrap;
}
.c-licen__grade--empty {
  background: #fff;
}

/* ====== responsive nhẹ ====== */
@media (max-width: 720px) {
  .c-licen__heading {
    font-size: 18px;
  }
  .c-license--qualification {
    margin: 0 auto 0;
  }
  .c-licen__table th,
  .c-licen__table td {
    padding: 10px;
    font-size: 13px;
  }
}

/* set width theo % cho dễ co giãn */
.c-licen__group {
  width: 12% !important;
  min-width: 96px;
} /* 国家資格 / 民間資格 */
.c-licen__grade {
  width: 6%;
  min-width: 65px;
} /* 1級/2級 (hoặc cột phụ) */
.c-licen__name {
  width: 48.5%;
} /* tên chứng chỉ */
.c-licen__count {
  width: 14.5%;
  text-align: right;
} /* 人数 */
.c-licen__block:nth-child(2) .c-licen__name {
  width: 55%;
}
