﻿@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;
}

.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(2, 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 10px;
  font-size: 2.2rem;
  line-height: calc(96.27 / 22);
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  border: 1px solid;
}

.pages {
  display: none !important;
}

.p-delivery__pagination {
  margin: 135px 0 0;
  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;
    font-size: 2.5rem;
    width: 40.5px;
    height: 40.5px;
  }
  .p-delivery__pagination {
    margin: 0;
  }
}
@media only screen and (max-width: 516px) {
  .p-delivery__pagination {
    margin: 50px 0 0;
  }
  .p-delivery__pagination .wp-pagenavi a,
  .p-delivery__pagination .wp-pagenavi span {
    font-size: 2.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;
}
.contact-main2__white a {
  border-bottom: 1px solid;
  padding-bottom: 2px;
}

body {
  font-family: "Noto Sans 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: #fff;
  color: #000;
}
.l-header__inner {
  -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;
  height: 83.6px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 44px;
}
.l-header__brand {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1;
  -webkit-transition:
    opacity 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    opacity 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    -webkit-transform 0.28s ease;
}
.l-header__brand:hover,
.l-header__brand:focus-visible {
  opacity: 0.72;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.l-header__brand-main {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "wght" 700,
    "wdth" 90,
    "slnt" 0;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-size: 34px;
  color : #231916;
  margin: 25px 0 4px;
}
.l-header__brand-sub {
  font-size: 1.2rem;
  /* margin-top: 6px; */
  text-align: center;
  font-size: 13px;
  line-height : 18.81px;
  color : #231916;
  /* letter-spacing: 2px; */
}
.l-header__actions {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-header__phone {
  -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;
  gap: 12px;
  padding: 12px 24px 8px 0;
  position: relative;
  -webkit-transition:
    color 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    color 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    color 0.28s ease,
    transform 0.28s ease;
  transition:
    color 0.28s ease,
    transform 0.28s ease,
    -webkit-transform 0.28s ease;
}
.l-header__phone:hover,
.l-header__phone:focus-visible {
  color: #e40012;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.l-header__phone img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  width: 30px;
}
.l-header__phone:hover img,
.l-header__phone:focus-visible img {
  -webkit-transform: rotate(-8deg) scale(1.08);
  -ms-transform: rotate(-8deg) scale(1.08);
  transform: rotate(-8deg) scale(1.08);
}
.l-header__phone-copy {
  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;
  line-height: 1;
}
.l-header__phone-label {
  font-size: 1.4rem;
  font-size: 13px;
  line-height : 18.81px;
  color : #231916;
}
.l-header__phone-number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  letter-spacing: 0;
  margin-top: -3px;
  font-size: 34.5px;
  /* line-height : 50.03px; */
  color : #231916;
  font-family: "acumin-variable", sans-serif;
  margin-bottom: -3px;
}
.l-header__phone-hours {
  font-size: 1.2rem;
  margin-top: 4px;
  font-size: 13px;
  line-height : 18.81px;
  color : #231916;
}
.l-header__contact {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #d40010;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.18em;
  min-width: 232px;
  overflow: hidden;
  padding: 0 28px;
  position: relative;
  -webkit-transition:
    background-color 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    background-color 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    background-color 0.28s ease,
    transform 0.28s ease;
  transition:
    background-color 0.28s ease,
    transform 0.28s ease,
    -webkit-transform 0.28s ease;
  white-space: nowrap;
  z-index: 0;
  background: #BA0008;
  max-width: 231.66px;
  box-sizing: border-box;
}
.l-header__contact::before {
  background: #000;
  content: "";
  inset: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    transform 0.36s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.l-header__contact:hover,
.l-header__contact:focus-visible {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.l-header__contact:hover::before,
.l-header__contact:focus-visible::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media only screen and (max-width: 768px) {
  .l-header__inner {
    height: auto;
    min-height: 72px;
    padding: 10px 0 10px 12px;
  }
  .l-header__brand-main {
    font-size: 2.3rem;
  }
  .l-header__brand-sub {
    font-size: 1rem;
    margin-top: 4px;
  }
  .l-header__phone {
    display: none;
  }
  .l-header__contact {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    min-width: 118px;
    padding: 0 14px;
  }
}
@media only screen and (max-width: 360px) {
  .l-header__inner {
    padding-left: 10px;
  }
  .l-header__brand-main {
    font-size: 2rem;
  }
  .l-header__brand-sub {
    font-size: 0.9rem;
  }
  .l-header__contact {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    min-width: 112px;
    padding: 0 8px;
  }
}
.l-footer {
  background: #fff;
  color: #000;
}
.l-footer__banners {
  display: grid;
  -webkit-column-gap: 1.33%;
  -moz-column-gap: 1.33%;
  column-gap: 1.33%;
  grid-template-columns: 589fr 598fr 604fr;
  align-items: start;
  margin: 0 auto;
  max-width: 921px;
  padding: 92px 0 0;
  width: 100%;
}
.l-footer__banner-group {
  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-footer__banner {
  display: block;
  -webkit-transition: opacity 0.28s ease;
  transition: opacity 0.28s ease;
}
.l-footer__banner + .l-footer__banner {
  margin-top: 2.72%;
}
.l-footer__banner-group:nth-child(2) .l-footer__banner + .l-footer__banner {
  margin-top: 4.85%;
}
.l-footer__banner-group:nth-child(3) .l-footer__banner + .l-footer__banner {
  margin-top: 0.66%;
}
a.l-footer__banner:hover,
a.l-footer__banner:focus-visible {
  opacity: 0.8;
}
.l-footer__banners img {
  display: block;
  height: auto;
  width: 100%;
}
.l-footer__brand {
  -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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1;
  margin-top: 141px;
}
.l-footer__brand-main {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 34.7px;
  color : #231916;
}
.l-footer__brand-sub {
  font-size: 1.2rem;
  margin-top: 0px;
  font-size: 13px;
  line-height : 18.81px;
  color : #231916;
}
.l-footer__copyright {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  height: 95px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  margin-top: 74px;
  background: #231916;
  font-size: 12px;
  line-height : 18.81px;
  color : #FFFFFF;
  small{
      font-size: 13px;
  }
}

@media only screen and (max-width: 768px) {
  .l-footer__banners {
    padding-top: 64px;
  }
  .l-footer__brand {
    margin-top: 72px;
  }
  .l-footer__copyright {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 600px) {
  .l-footer__banners {
    grid-template-columns: 1fr;
    max-width: 400px;
    padding-left: 16px;
    padding-right: 16px;
    row-gap: 12px;
  }
}
@media only screen and (max-width: 517px) {
  .l-footer__brand-main {
    font-size: 2.6rem;
  }
  .l-footer__copyright {
    height: 64px;
  }
}
.p-top {
  padding-top: 32px;
}
.p-top__hero {
  max-width: none;
  width: 100%;
  max-width: 1094px;
  margin: 0 auto;
}
.p-top__hero img {
  display: block;
  height: auto;
  width: 100%;
}
.p-top-hero-slider {
  overflow: hidden;
  position: relative;
}
.p-top-hero-slider__track {
  position: relative;
}
.p-top-hero-slider__slide {
  display: block;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.p-top-hero-slider__slide + .p-top-hero-slider__slide {
  inset: 0;
  opacity: 0;
  position: absolute;
}
.p-top-hero-slider__slide.is-active {
  opacity: 1;
  z-index: 2;
}
.p-top-hero-slider__slide img {
  display: block;
  height: auto;
  width: 100%;
}

.p-top-intro {
  background: #fff;
  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;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
  z-index: 9999;
}

.p-top-intro.is-visible {
  opacity: 1;
}

.p-top-intro.is-finished {
  opacity: 0;
  -webkit-transform: scale(8);
  -ms-transform: scale(8);
  transform: scale(8);
  -webkit-transition:
    opacity 1.2s ease 1.3s,
    -webkit-transform 1.8s ease 0.65s;
  transition:
    opacity 1.2s ease 1.3s,
    -webkit-transform 1.8s ease 0.65s;
  transition:
    opacity 1.2s ease 1.3s,
    transform 1.8s ease 0.65s;
  transition:
    opacity 1.2s ease 1.3s,
    transform 1.8s ease 0.65s,
    -webkit-transform 1.8s ease 0.65s;
}

.p-top-intro__logo {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 5vw, 7.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.p-top-intro__bar {
  background: #e40012;
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  width: 100%;
}

.p-top-intro__mask {
  background: #e40012;
  inset: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

@media (prefers-reduced-motion: no-preference) {
  .is-animation-ready .js-scroll-animate {
    opacity: 0;
    -webkit-transition-delay: var(--anim-delay, 0ms);
    transition-delay: var(--anim-delay, 0ms);
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property:
      opacity,
      border-color,
      background-color,
      color,
      -webkit-transform,
      -webkit-filter,
      -webkit-clip-path,
      -webkit-box-shadow;
    transition-property:
      opacity,
      border-color,
      background-color,
      color,
      -webkit-transform,
      -webkit-filter,
      -webkit-clip-path,
      -webkit-box-shadow;
    transition-property:
      opacity, transform, filter, clip-path, border-color, box-shadow,
      background-color, color;
    transition-property:
      opacity,
      transform,
      filter,
      clip-path,
      border-color,
      box-shadow,
      background-color,
      color,
      -webkit-transform,
      -webkit-filter,
      -webkit-clip-path,
      -webkit-box-shadow;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    will-change: opacity, transform, filter;
  }
  .is-animation-ready .js-scroll-animate[data-anim="fade"] {
    opacity: 0;
  }
  .is-animation-ready .js-scroll-animate[data-anim="fade-up"] {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  .is-animation-ready .js-scroll-animate[data-anim="text-blur"] {
    opacity: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .is-animation-ready .js-scroll-animate[data-anim="text-blur"] .character {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition:
      opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1),
      -webkit-transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
    transition:
      opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1),
      -webkit-transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
    transition:
      opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1),
      transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
    transition:
      opacity 1.5s cubic-bezier(0.08, 0.82, 0.17, 1),
      transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1),
      -webkit-transform 1.5s cubic-bezier(0.08, 0.82, 0.17, 1);
    will-change: opacity, transform;
  }
  .is-animation-ready .js-scroll-animate[data-anim="text-blur"] .space {
    display: inline-block;
  }
  .is-animation-ready .js-scroll-animate[data-anim="fade-list"] {
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
  .is-animation-ready .js-animated-list > .fade-up,
  .is-animation-ready .js-animated-list > .fade {
    opacity: 0;
    -webkit-transition:
      opacity 1s ease-in-out,
      -webkit-transform 1s ease-in-out;
    transition:
      opacity 1s ease-in-out,
      -webkit-transform 1s ease-in-out;
    transition:
      opacity 1s ease-in-out,
      transform 1s ease-in-out;
    transition:
      opacity 1s ease-in-out,
      transform 1s ease-in-out,
      -webkit-transform 1s ease-in-out;
    will-change: opacity, transform;
  }
  .is-animation-ready .js-animated-list > .fade-up {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  .is-animation-ready .js-scroll-animate.is-visible,
  .is-animation-ready.is-page-entered .l-header.is-visible,
  .is-animation-ready.is-page-entered .p-top__hero.is-visible {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .is-animation-ready
    .js-scroll-animate[data-anim="text-blur"].is-visible
    .character,
  .is-animation-ready .js-animated-list > .fade-up.show,
  .is-animation-ready .js-animated-list > .fade.show {
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    will-change: unset;
  }
  .is-animation-ready .p-top-intro__bar {
    -webkit-animation: komiya-intro-bar 1s ease-in-out both;
    animation: komiya-intro-bar 1s ease-in-out both;
    z-index: 2;
  }
  .is-animation-ready .p-top-intro__mask {
    -webkit-animation: komiya-intro-red 0.7s ease-in-out 0.12s both;
    animation: komiya-intro-red 0.7s ease-in-out 0.12s both;
  }
}
@-webkit-keyframes komiya-intro-bar {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes komiya-intro-bar {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@-webkit-keyframes komiya-intro-red {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes komiya-intro-red {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.p-top-jobs {
  margin: 0 auto;
  max-width: 1089.65px;
  padding: 43px 0 0;
  width: 100%;
}
.p-top-jobs__title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-size : 30px;
  color : #231916;
}
.p-top-jobs__search {
  margin: 46px auto 0;
  max-width: 429.66px;
  width: 100%;
}
.p-top-jobs__search-label {
  display: block;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 8px;
  font-size: 18px;
  color : #231916;
  color : rgb(35, 25, 22);
}
.p-top-jobs__search-field {
  border: 1px solid #000;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  overflow: hidden;
  padding: 4px;
  border-style: Solid;
  border-color : #231916;
  border-color : rgba(35, 25, 22, 1);
  border-width : 1px;
  border-radius : 9px;
}
.p-top-jobs__search-input {
  border: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 1.6rem;
  min-width: 0;
  padding: 0 14px;
}
.p-top-jobs__search-button {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  border: 0;
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 76px;
  -ms-flex: 0 0 76px;
  flex: 0 0 76px;
  font-size: 1.8rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
    background-color 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    background-color 0.28s ease,
    -webkit-transform 0.28s ease;
  transition:
    background-color 0.28s ease,
    transform 0.28s ease;
  transition:
    background-color 0.28s ease,
    transform 0.28s ease,
    -webkit-transform 0.28s ease;
  background: rgba(35, 25, 22, 1);
  border-radius : 7px;
  font-weight: bold;
  font-size : 20px;
  line-height : 29px;
  color : #FFFFFF;
}
.p-top-jobs__search-button:hover,
.p-top-jobs__search-button:focus-visible {
  background: #e40012;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.p-top-jobs__cards {
  display: grid;
  gap: 47px 31px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 76px;
}
.p-top-jobs__empty {
  font-size: 1.8rem;
  grid-column: 1/-1;
  line-height: 1.6;
  padding: 40px 0;
  text-align: center;
}
.p-top-jobs__card {
  border: 1px solid #e40012;
  border-radius: 6px;
  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;
  height: 276px;
  overflow: hidden;
  -webkit-transition:
    border-color 0.32s ease,
    -webkit-box-shadow 0.32s ease,
    -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    border-color 0.32s ease,
    -webkit-box-shadow 0.32s ease,
    -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-box-shadow 0.32s ease,
    -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  border-style: Solid;
  border-color : #D40010;
  border-color : rgba(212, 0, 16, 1);
  border-width : 1px;
  border-radius : 6px;
}
.p-top-jobs__card:hover,
.p-top-jobs__card:focus-visible {
  border-color: #c90010;
  -webkit-box-shadow: 0 18px 34px rgba(228, 0, 18, 0.16);
  box-shadow: 0 18px 34px rgba(228, 0, 18, 0.16);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}
.p-top-jobs__card-media {
  background: #fff;
  display: block;
  min-height: 0;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-transition: background-color 0.32s ease;
  transition: background-color 0.32s ease;
}
.p-top-jobs__card-media img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.p-top-jobs__card:hover .p-top-jobs__card-media,
.p-top-jobs__card:focus-visible .p-top-jobs__card-media {
  background-color: #fff6f6;
}
.p-top-jobs__card-footer {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #e40012;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 92px;
  -ms-flex: 0 0 92px;
  flex: 0 0 92px;
  font-size: 2.4rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.2;
  padding: 0 24px;
  -webkit-transition: background-color 0.32s ease;
  transition: background-color 0.32s ease;
  background: rgba(212, 0, 16, 1);
  border-radius : 6px;
  margin-top: -6px;
  position: relative;
  z-index: 1;
}
.p-top-jobs__card:hover .p-top-jobs__card-footer,
.p-top-jobs__card:focus-visible .p-top-jobs__card-footer {
  background: #c90010;
}
.p-top-jobs__card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  font-size: 23px;
  color : #FFFFFF;
}
.p-top-jobs__card-footer img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 24px;
  margin-left: 24px;
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.32s cubic-bezier(0.19, 1, 0.22, 1);
  width: 24px;
}
.p-top-jobs__card:hover .p-top-jobs__card-footer img,
.p-top-jobs__card:focus-visible .p-top-jobs__card-footer img {
  -webkit-transform: translateX(7px);
  -ms-transform: translateX(7px);
  transform: translateX(7px);
}
.p-top-jobs__more {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  border-radius: 37px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  height: 73px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 104px auto 0;
  max-width: 268px;
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition:
    transform 0.28s ease,
    -webkit-transform 0.28s ease;
  width: 100%;
  z-index: 0;
  background: rgba(35, 25, 22, 1);
  border-radius : 36px;
  font-weight: bold;
  font-size : 20px;
  line-height : 18.81px;
  color : #FFFFFF;
}
.p-top-jobs__more::before {
  background: #e40012;
  content: "";
  inset: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    transform 0.36s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.36s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.p-top-jobs__more:hover,
.p-top-jobs__more:focus-visible {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.p-top-jobs__more:hover::before,
.p-top-jobs__more:focus-visible::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.p-top-map {
  padding: 133px 0 0;
  text-align: center;
}
.p-top-map__area,
.p-top-map__brand,
.p-top-map__title {
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  font-weight: bold;
  font-size : 30px;
  color : #231916;
}
.p-top-map__area {
  font-size: 2.8rem;
  font-weight: bold;
  font-size : 30px;
  color : #231916;
}
.p-top-map__brand {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-size: 2.8rem;
  margin-top: 12px;
}
.p-top-map__title {
  font-size: 3rem;
  margin-top: 10px;
  font-weight: bold;
  font-size : 30px;
  color : #231916;
}
.p-top-map__image {
  height: auto;
  margin: 69px auto 0;
  max-width: 846px;
  width: 100%;
}

.p-top-benefits {
  margin: 0 auto;
  max-width: 1087.65px;
  padding: 138px 0 0;
  width: 100%;
}
.p-top-benefits__title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  font-size : 30px;
  color : #231916;
}
.p-top-benefits__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 31px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
}
.p-top-benefits__card {
  /* border: 1px solid #e40012; */
  border-radius: 4px;
  min-height: 438.57px;
  padding: 0 14px 30px;
  text-align: center;
  width: 31%;
  border-color: #D40010;10; */
  /* border-color : rgba(212, 0, 16, 1); */
  border-width : 1px;
  border-radius : 6px;
  border-style: Solid;
  border-width: 1px;
}
.p-top-benefits__card:nth-child(1) {
  --benefit-icon-width: 105.85px;
}
.p-top-benefits__card:nth-child(2) {
  --benefit-icon-width: 76.38px;
}
.p-top-benefits__card:nth-child(3) {
  --benefit-icon-width: 64.25px;
}
.p-top-benefits__card:nth-child(4) {
  --benefit-icon-width: 74.9px;
}
.p-top-benefits__card:nth-child(5) {
  --benefit-icon-width: 97.56px;
}
.p-top-benefits__card:nth-child(6) {
  --benefit-icon-width: 90.1px;
}
.p-top-benefits__card:nth-child(7) {
  --benefit-icon-width: 86.82px;
}
.p-top-benefits__card:nth-child(8) {
  --benefit-icon-width: 64.9px;
}
.p-top-benefits__icon {
  height: 132px;
  margin: 0 auto 0;
  -o-object-fit: contain;
  object-fit: contain;
  width: var(--benefit-icon-width, 105.85px);
}
.p-top-benefits__card-title {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  /* margin-top: 28px; */
  font-size: 18px;
  color : #231916;
}
.p-top-benefits__text {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.74;
  margin-top: 24px;
  text-align: left;
  font-size: 16px;
  color : #231916;
  padding: 0 11px;
}

.p-top-voice {
  margin: 0 auto;
  max-width: 928.53px;
  padding: 100px 0 0;
  width: 100%;
}
.p-top-voice__title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  font-size : 30px;
  color : #231916;
}
.p-top-voice__items {
  margin-top: 64px;
}
.p-top-voice__item {
  padding-bottom: 52px;
}
.p-top-voice__item + .p-top-voice__item {
  border-top: 1px dashed #777;
  padding-top: 52px;
  border-style: Dashed;
  border-color : #231916;
  border-color : rgba(35, 25, 22, 1);
  /* border-width : 1px; */
}
.p-top-voice__main-image {
  background: #d9d9d9;
  height: 345px;
  width: 100%;
}
.p-top-voice__catch {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 21px;
  text-align: center;
  font-weight: bold;
  font-size : 25px;
  line-height : 24.46px;
  color : #231916;
  margin-bottom: 10px;
}
.p-top-voice__profile {
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  font-size: 16px;
  line-height : 29px;
  color : #231916;
}
.p-top-voice__body {
  display: grid;
  gap: 43px;
  grid-template-columns: 47% minmax(0, 1fr);
  margin-top: 40px;
}
.p-top-voice__photo {

}
.p-top-voice__body-title {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 11px;
  font-weight: bold;
  font-size : 22px;
  line-height : 24.46px;
  color : #231916;
}
.p-top-voice__content {
  font-size: 1.55rem;
  letter-spacing: 0;
  line-height: 1.74;
  padding-top: 4px;
  font-size: 16px;
  line-height : 29px;
  color : #231916;
}

.p-top-faq {
  margin: 0 auto;
  max-width: 886px;
  padding: 53px 0 92px;
  width: 100%;
}
.p-top-faq__title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  font-size : 30px;
  color : #231916;
}
.p-top-faq__items {
  margin-top: 54px;
}
.p-top-faq__item {
  border-bottom: 1px dashed #333;
  padding-bottom: 40px;
  border-style: Dashed;
  border-color : #231916;
  border-color : rgba(35, 25, 22, 1);
  /* border-width : 1px; */
}
.p-top-faq__item + .p-top-faq__item {
  padding-top: 41px;
}
.p-top-faq__question {
  -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;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 16px;
  font-weight: bold;
  font-size : 20px;
  line-height : 29px;
  color : #231916;
}
.p-top-faq__mark {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 51px;
  -ms-flex: 0 0 51px;
  flex: 0 0 56px;
  /* font-family: Georgia, "Times New Roman", serif; */
  font-size: 3rem;
  height: 56px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  margin-right: 20px;
  font-size: 31px;
  line-height : 25.8px;
  color : #FFFFFF;
}
.p-top-faq__mark--question {
  background: #6fbd4b;
  background: #6DBB4D;
}
.p-top-faq__mark--answer {
  background: #e40012;
}
.p-top-faq__answer {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f1f1f1;
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 34px;
  /* min-height: 117px; */
  padding: 34px 24px 40px 16px;
  background: rgba(242, 242, 243, 1);
  border-radius : 8px;
  font-weight: bold;
  font-size : 20px;
  line-height : 29px;
  color : #231916;
}

.p-top-contact {
  background: #e40012;
  color: #fff;
  padding: 42px 16px 85px;
  text-align: center;
  background: #D40010;
}
.p-top-contact__lead {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1.45;
  position: relative;
  font-weight: bold;
  font-size : 31px;
  line-height : 29.53px;
  color : #FFFFFF;
}
.p-top-contact__lead::before,
.p-top-contact__lead::after {
  content: "";
  background: #fff;
  height: 1px;
  position: absolute;
  top: 50%;
  width: 35px;
}
.p-top-contact__lead::before {
  right: calc(100% + 12px);
  -webkit-transform: rotate(52deg);
  -ms-transform: rotate(52deg);
  transform: rotate(52deg);
}
.p-top-contact__lead::after {
  left: calc(100% + 12px);
  -webkit-transform: rotate(-52deg);
  -ms-transform: rotate(-52deg);
  transform: rotate(-52deg);
}
.p-top-contact__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 69px auto 0;
  max-width: 1090.5px;
}
.p-top-contact__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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 128px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 30px;
  -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;




























































































































  &:last-child{
    img{
      width:73.85px;
    }
  }
}
.p-top-contact__item[href]:hover,
.p-top-contact__item[href]:focus-visible {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.p-top-contact__item + .p-top-contact__item {
  border-left: 1px solid rgba(255, 255, 255, 0.85);
}
.p-top-contact__label {
  font-size: 1.8rem;
  line-height: 1.4;
  font-size: 20px;
  line-height : 25.48px;
  color : #FFFFFF;
}
.p-top-contact__phone {
  -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;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 2.7vw, 3.6rem);
  /* font-weight: 700; */
  letter-spacing: 0;
  line-height: 1;
  margin-top: 31px;
  -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;
  white-space: nowrap;
  font-size: 43px;
  /* line-height : 63.5px; */
  color : #FFFFFF;
  font-family: "acumin-variable", sans-serif;
}
.p-top-contact__phone img {
  height: 28px;
  margin-right: 9px;
  -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;
  width: 21px;
}
.p-top-contact__item[href]:hover .p-top-contact__phone,
.p-top-contact__item[href]:focus-visible .p-top-contact__phone {
  -webkit-transform: scale(1.035);
  -ms-transform: scale(1.035);
  transform: scale(1.035);
}
.p-top-contact__item[href]:hover .p-top-contact__phone img,
.p-top-contact__item[href]:focus-visible .p-top-contact__phone img {
  -webkit-transform: rotate(-8deg) scale(1.08);
  -ms-transform: rotate(-8deg) scale(1.08);
  transform: rotate(-8deg) scale(1.08);
}
.p-top-contact__hours {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 0px;
  white-space: nowrap;
  font-size: 16px;
  line-height : 23.87px;
  color : #FFFFFF;
}
.p-top-contact__icon {
  height: 71px;
  margin-top: 29px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.34s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.34s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.34s cubic-bezier(0.19, 1, 0.22, 1);
  transition:
    transform 0.34s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.34s cubic-bezier(0.19, 1, 0.22, 1);
  width: 70.8px;
}
.p-top-contact__item[href]:hover .p-top-contact__icon,
.p-top-contact__item[href]:focus-visible .p-top-contact__icon {
  -webkit-transform: translateY(-7px) scale(1.08);
  -ms-transform: translateY(-7px) scale(1.08);
  transform: translateY(-7px) scale(1.08);
}

@media only screen and (max-width: 768px) {
  .p-top {
    padding-top: 16px;
  }
  .p-top-jobs {
    padding: 72px 16px 0;
  }
  .p-top-jobs__search {
    margin-top: 32px;
  }
  .p-top-jobs__cards {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }
  .p-top-jobs__card {
    height: 230px;
  }
  .p-top-jobs__card-footer {
    -webkit-flex-basis: 74px;
    -ms-flex-preferred-size: 74px;
    flex-basis: 74px;
    font-size: 1.8rem;
    padding: 0 14px;
  }
  .p-top-jobs__card-footer img {
    height: 22px;
    margin-left: 12px;
    width: 22px;
  }
  .p-top-jobs__more {
    margin-top: 64px;
  }
  .p-top-map {
    padding: 96px 16px 0;
  }
  .p-top-map__image {
    margin-top: 42px;
  }
  .p-top-benefits {
    padding: 82px 16px 0;
  }
  .p-top-benefits__cards {
    gap: 24px;
  }
  .p-top-benefits__card {
    min-height: 360px;
    padding: 30px 22px 24px;
    width: calc((100% - 24px) / 2);
  }
  .p-top-benefits__title {
    font-size: 2.6rem;
  }
  .p-top-benefits__icon {
    height: 58px;
    width: var(--benefit-icon-width, 82px);
  }
  .p-top-benefits__card-title {
    font-size: 1.6rem;
    margin-top: 22px;
  }
  .p-top-benefits__text {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 20px;
  }
  .p-top-voice {
    padding: 82px 16px 0;
  }
  .p-top-voice__items {
    margin-top: 44px;
  }
  .p-top-voice__main-image {
    height: auto;
    aspect-ratio: 918/345;
  }
  .p-top-voice__body {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .p-top-voice__photo {
    min-height: 0;
    aspect-ratio: 435/345;
  }
  .p-top-faq {
    padding: 82px 16px 72px;
  }
  .p-top-faq__items {
    margin-top: 42px;
  }
  .p-top-faq__question,
  .p-top-faq__answer {
    font-size: 1.6rem;
  }
  .p-top-faq__answer {
    min-height: 96px;
  }
  .p-top-contact__items {
    gap: 32px;
    grid-template-columns: 1fr;
    margin-top: 42px;
    max-width: 420px;
  }
  .p-top-contact__item {
    min-height: 0;
    padding: 0;
  }
  .p-top-contact__item + .p-top-contact__item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    padding-top: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .p-top-benefits__card {
    width: 100%;
  }
}
@media only screen and (max-width: 517px) {
  .p-top-jobs__title {
    font-size: 2.6rem;
  }
  .p-top-jobs__search-field {
    height: 58px;
  }
  .p-top-jobs__search-button {
    -webkit-flex-basis: 68px;
    -ms-flex-preferred-size: 68px;
    flex-basis: 68px;
    font-size: 1.6rem;
  }
  .p-top-jobs__cards {
    grid-template-columns: 1fr;
  }
  .p-top-jobs__card-footer {
    font-size: 2rem;
  }
  .p-top-jobs__more {
    height: 62px;
    max-width: 240px;
  }
  .p-top-map__area,
  .p-top-map__brand {
    font-size: 2.4rem;
  }
  .p-top-map__title {
    font-size: 2.6rem;
  }
  .p-top-benefits__cards {
    gap: 16px;
  }
  .p-top-benefits__card {
    min-height: 0;
    padding: 28px 22px 24px;
    width: 100%;
  }
  .p-top-voice__main-image {
    aspect-ratio: 1.9/1;
  }
  .p-top-voice__body {
    display: block;
  }
  .p-top-voice__photo {
    aspect-ratio: 1.25/1;
    margin-bottom: 24px;
  }
  .p-top-faq__title {
    font-size: 2.6rem;
  }
  .p-top-faq__question {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 0;
  }
  .p-top-faq__mark {
    -webkit-flex-basis: 44px;
    -ms-flex-preferred-size: 44px;
    flex-basis: 44px;
    font-size: 2.6rem;
    height: 44px;
    margin-right: 14px;
  }
  .p-top-faq__answer {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 18px 16px;
  }
  .p-top-contact {
    padding-bottom: 54px;
  }
  .p-top-contact__lead {
    font-size: 2.3rem;
  }
  .p-top-contact__lead::before,
  .p-top-contact__lead::after {
    width: 24px;
  }
  .p-top-contact__phone {
    font-size: 3rem;
  }
}
@media (max-width: 360px) {
  .p-top-contact__lead {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .p-top-contact__lead::before,
  .p-top-contact__lead::after {
    width: 18px;
  }
  .p-top-contact__lead::before {
    right: calc(100% + 6px);
  }
  .p-top-contact__lead::after {
    left: calc(100% + 6px);
  }
}
.p-page {
  color: #231916;
  background: #fff;
}
.p-page__title {
  color: #231916;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.p-recruit-list {
  padding: 91px 16px 0;
}
.p-recruit-list .p-top-jobs__search {
  margin-top: 46px;
}
.p-recruit-list__cards {
  margin-top: 76px;
}
.p-recruit-pagination {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 122px;
}
.p-recruit-pagination .wp-pagenavi {
  align-items: center;
  border: 0;
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.p-recruit-pagination .wp-pagenavi .pages,
.p-recruit-pagination .wp-pagenavi .extend,
.p-recruit-pagination .wp-pagenavi .first,
.p-recruit-pagination .wp-pagenavi .last,
.p-recruit-pagination .wp-pagenavi .previouspostslink,
.p-recruit-pagination .wp-pagenavi .nextpostslink {
  display: none;
}
.p-recruit-pagination .wp-pagenavi a,
.p-recruit-pagination .wp-pagenavi span.current,
.p-recruit-pagination .wp-pagenavi span.page {
  align-items: center;
  background: #fff;
  border: 1px solid #231916;
  border-radius: 50%;
  color: #000;
  display: flex;
  font-size: 28px;
  font-weight: 700;
  height: 56px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 56px;
}
.p-recruit-pagination .wp-pagenavi span.current,
.p-recruit-pagination .wp-pagenavi a:hover,
.p-recruit-pagination .wp-pagenavi a:focus-visible {
  background: #000;
  color: #fff;
}
.p-recruit-pagination .wp-pagenavi a:hover,
.p-recruit-pagination .wp-pagenavi a:focus-visible {
  transform: translateY(-3px);
}
.p-recruit-pagination__item {
  align-items: center;
  background: #fff;
  border: 1px solid #231916;
  border-radius: 50%;
  color: #231916;
  display: inline-flex;
  font-size: 24px;
  font-weight: 700;
  height: 62px;
  justify-content: center;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 62px;
}
.p-recruit-pagination__item[href]:hover,
.p-recruit-pagination__item[href]:focus-visible,
.p-recruit-pagination__item.is-current {
  background: #231916;
  color: #fff;
}
.p-recruit-pagination__item[href]:hover,
.p-recruit-pagination__item[href]:focus-visible {
  transform: translateY(-3px);
}
.p-recruit .p-top-contact {
  margin-top: 236px;
}
.p-recruit-detail__hero {
  padding: 91px 16px 0;
}
.p-recruit-detail__panel {
  border: 1px solid #b7b7b7;
  border-radius: 12px;
  margin: 103px auto 0;
  max-width: 1097px;
  padding: 39px 37px 44px;
  width: calc(100% - 102px);
}
.p-recruit-detail__job-title {
  background: #d40010;
  border-radius: 5px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  padding: 14px 25px;
}
.p-recruit-detail__section {
  margin: 76px auto 0;
  max-width: 999px;
}
.p-recruit-detail__section-title {
  border-bottom: 1px solid #231916;
  color: #231916;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 7px;
}
.p-recruit-detail__intro {
  display: grid;
  gap: 36px;
  grid-template-columns: 387px minmax(0, 1fr);
  margin-top: 19px;
}
.p-recruit-detail__photo {
  align-items: center;
  background: #dedede;
  color: #c6c6c6;
  display: flex;
  font-size: 22px;
  height: 252px;
  justify-content: center;
  overflow: hidden;
}
.p-recruit-detail__photo img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.p-recruit-detail__intro p,
.p-recruit-detail__table {
  color: #231916;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}
.p-recruit-detail__table {
  border: 1px solid #c7c7c7;
  border-collapse: collapse;
  margin-top: 52px;
  width: 100%;
}
.p-recruit-detail__table th,
.p-recruit-detail__table td {
  border: 1px solid #c7c7c7;
  padding: 22px 30px;
  text-align: left;
  vertical-align: top;
}
.p-recruit-detail__table th {
  background: #f5f5f5;
  text-align: center;
  width: 151px;
}
.p-recruit-detail__apply {
  align-items: center;
  background: #42b72a;
  border-radius: 6px;
  color: #fff;
  display: flex;
  font-size: 22px;
  font-weight: 700;
  height: 88px;
  justify-content: center;
  letter-spacing: 0.26em;
  margin: 132px auto 0;
  max-width: 340px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  width: 100%;
}
.p-recruit-detail__apply:hover,
.p-recruit-detail__apply:focus-visible {
  background: #2f9c1f;
  transform: translateY(-3px);
}
.p-recruit-detail__related {
  margin-top: 210px;
  overflow: hidden;
}
.p-recruit-detail__related-scroll {
  display: grid;
  gap: 31px;
  grid-template-columns: repeat(4, 344px);
  justify-content: center;
  min-width: max-content;
  transform: translateX(-172px);
}
.p-recruit-detail__related-card {
  width: 344px;
}
.p-recruit-detail .p-top-contact {
  margin-top: 159px;
}
.p-contact__main {
  padding: 122px 16px 0;
}
.p-contact__lead {
  color: #231916;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  margin: 85px auto 0;
  max-width: 583px;
}
.p-contact__lead p + p {
  margin-top: 0;
}
.p-contact-form {
  border: 1px solid #d40010;
  border-radius: 42px;
  margin: 67px auto 0;
  max-width: 837px;
  min-height: 987px;
  padding: 48px 52px 60px;
}
.p-contact-form *,
.p-contact-form *::before,
.p-contact-form *::after {
  box-sizing: border-box;
}
.p-contact-form .wpcf7-form-control-wrap {
  display: block;
}
.p-contact-form__rows {
  margin: 0 auto;
  max-width: 586px;
}
.p-contact-form__row {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 150px minmax(0, 1fr);
}
.p-contact-form__row + .p-contact-form__row {
  margin-top: 20px;
}
.p-contact-form__row--textarea {
  align-items: start;
  margin-top: 40px;
}
.p-contact-form__label {
  color: #231916;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 16px;
  line-height: 1.5;
}
.p-contact-form__required {
  align-items: center;
  background: #d40010;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 10px;
  height: 18px;
  justify-content: center;
  line-height: 1;
  margin-top: 1px;
  width: 26px;
}
.p-contact-form input[type="text"],
.p-contact-form input[type="tel"],
.p-contact-form input[type="email"],
.p-contact-form textarea {
  background: #fff;
  border: 1px solid #231916;
  border-radius: 4px;
  color: #231916;
  font-size: 16px;
  min-height: 53px;
  padding: 10px 14px;
  width: 100%;
}
.p-contact-form textarea {
  height: 281px;
  resize: vertical;
}
.p-contact-form__acceptance {
  color: #231916;
  font-size: 12px;
  font-weight: 700;
  margin: 34px 0 0 174px;
}
.p-contact-form__acceptance label {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}
.p-contact-form__acceptance input {
  height: 18px;
  width: 18px;
}
.p-contact-form__submit {
  margin-top: 71px;
  text-align: center;
}
.p-contact-form input[type="submit"] {
  background: #0096a8;
  border: 0;
  border-radius: 32px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  height: 64px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  width: 237px;
}
.p-contact-form input[type="submit"]:hover,
.p-contact-form input[type="submit"]:focus-visible {
  background: #007f8f;
  transform: translateY(-3px);
}
.p-contact .p-top-contact {
  margin-top: 228px;
}
.p-privacy__main {
  padding: 91px 16px 0;
}
.p-privacy__content {
  color: #231916;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.78;
  margin: 139px auto 0;
  max-width: 839px;
}
.p-privacy__content p + p,
.p-privacy__content p + ul,
.p-privacy__content ul + h2 {
  margin-top: 22px;
}
.p-privacy__content h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.78;
  margin-top: 29px;
}
.p-privacy__content ul {
  list-style: none;
}
.p-privacy .p-top-contact {
  margin-top: 430px;
}
@media only screen and (max-width: 1024px) {
  .p-recruit-detail__panel {
    width: calc(100% - 48px);
  }
  .p-recruit-detail__intro {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}
@media only screen and (max-width: 1100px) {
  .p-recruit-detail__related {
    overflow: visible;
    padding: 0 24px;
  }
  .p-recruit-detail__related-scroll {
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    transform: none;
    width: 100%;
  }
  .p-recruit-detail__related-card {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .p-page__title {
    font-size: 26px;
  }
  .p-recruit-list,
  .p-recruit-detail__hero,
  .p-contact__main,
  .p-privacy__main {
    padding-top: 72px;
  }
  .p-recruit-list__cards {
    margin-top: 48px;
  }
  .p-recruit-pagination {
    gap: 18px;
    margin-top: 72px;
  }
  .p-recruit-pagination .wp-pagenavi {
    gap: 18px;
  }
  .p-recruit-pagination__item {
    font-size: 18px;
    height: 46px;
    width: 46px;
  }
  .p-recruit-pagination .wp-pagenavi a,
  .p-recruit-pagination .wp-pagenavi span.current {
    font-size: 18px;
    height: 46px;
    width: 46px;
  }
  .p-recruit .p-top-contact,
  .p-recruit-detail .p-top-contact,
  .p-contact .p-top-contact,
  .p-privacy .p-top-contact {
    margin-top: 96px;
  }
  .p-recruit-detail__panel {
    margin-top: 64px;
    padding: 24px 20px 72px;
    width: calc(100% - 32px);
  }
  .p-recruit-detail__job-title {
    font-size: 19px;
    letter-spacing: 0.16em;
  }
  .p-recruit-detail__section {
    margin-top: 48px;
  }
  .p-recruit-detail__intro {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .p-recruit-detail__photo {
    height: 220px;
  }
  .p-recruit-detail__table,
  .p-recruit-detail__table tbody,
  .p-recruit-detail__table tr,
  .p-recruit-detail__table th,
  .p-recruit-detail__table td {
    display: block;
    width: 100%;
  }
  .p-recruit-detail__table tr + tr {
    border-top: 1px solid #c7c7c7;
  }
  .p-recruit-detail__table th,
  .p-recruit-detail__table td {
    border: 0;
    padding: 16px 18px;
  }
  .p-recruit-detail__table th {
    text-align: left;
  }
  .p-recruit-detail__apply {
    height: 68px;
    margin-top: 72px;
  }
  .p-recruit-detail__related {
    margin-top: 96px;
    overflow: visible;
    padding: 0 16px;
  }
  .p-recruit-detail__related-scroll {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    min-width: 0;
    transform: none;
    width: 100%;
  }
  .p-recruit-detail__related-card {
    width: 100%;
  }
  .p-contact__lead {
    margin-top: 48px;
    max-width: 100%;
  }
  .p-contact-form {
    border-radius: 24px;
    margin-top: 48px;
    min-height: 0;
    padding: 32px 20px 44px;
  }
  .p-contact-form__row {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .p-contact-form__acceptance {
    margin-left: 0;
  }
  .p-contact-form__submit {
    margin-top: 48px;
  }
  .p-privacy__content {
    margin-top: 72px;
  }
}
@media only screen and (max-width: 600px) {
  .p-recruit-list .p-top-jobs__cards {
    grid-template-columns: 1fr;
  }
  .p-recruit-detail__related {
    overflow: visible;
    padding: 0 16px;
  }
  .p-recruit-detail__related-scroll {
    gap: 24px;
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
  }
  .p-recruit-detail__related-card {
    width: 100%;
  }
  .p-recruit-detail__intro p,
  .p-recruit-detail__table {
    font-size: 14px;
  }
}
.p-recruit-detail__related {
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}
.p-recruit-detail__related-viewport {
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  width: 100vw;
}
.p-recruit-detail__related-scroll {
  align-items: stretch;
  display: flex;
  gap: 31px;
  grid-template-columns: none;
  justify-content: flex-start;
  min-width: 0;
  transform: none;
  transition: transform 0.55s ease;
  width: max-content;
  will-change: transform;
}
.p-recruit-detail__related-card {
  flex: 0 0 344px;
  width: 344px;
}
@media only screen and (max-width: 1100px) {
  .p-recruit-detail__related {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
  .p-recruit-detail__related-scroll {
    display: flex;
    gap: 24px;
    grid-template-columns: none;
    min-width: 0;
    width: max-content;
  }
  .p-recruit-detail__related-card {
    flex-basis: clamp(252px, 72vw, 344px);
    width: clamp(252px, 72vw, 344px);
  }
}
@media only screen and (max-width: 768px) {
  .p-recruit-detail__related {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
  .p-recruit-detail__related-scroll {
    gap: 20px;
  }
  .p-recruit-detail__related-card {
    flex-basis: clamp(240px, 78vw, 320px);
    width: clamp(240px, 78vw, 320px);
  }
}
.p-recruit-detail__related-scroll.p-recruit-detail__related-scroll--centered {
  justify-content: center;
  min-width: 0;
  width: 100%;
}
/*# sourceMappingURL=styles.css.map */


.p-top-voice__main-image,.p-top-voice__photo{overflow:hidden}.p-top-voice__main-image img{display:block;height:100%;object-fit:cover;width:100%}.p-top-voice__photo img{display:block;height:345px;object-fit:cover;width:100%}@media only screen and (max-width:1199px){.p-top-voice__photo img{height:100%}}
