@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;
  }
}
body {
  font-family: "yu-mincho-pr6n", sans-serif;
  font-style: normal;
  line-height: 1.75;
  font-size: 1.5rem;
  color: #231916;
  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;
}

/* .c-header */
.c-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  &.page {
    background: rgba(0, 0, 0, 0.9);
    .c-header__inner {
      align-items: center;
    }
  }
}
.c-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media only screen and (max-width: 516px) {
  .c-header__inner {
  }
}
.c-header__logo-wrap {
  width: 171px;
  background: #ffffff;
  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-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  &.left {
    background: unset;
    box-shadow: none;
    height: fit-content;
    width: auto;
    padding: 9px 18px;

    img {
      max-width: 385px;
      @media only screen and (max-width: 767px) {
        max-width: 285px;
      }
      @media only screen and (max-width: 516px) {
        max-width: 250px;
      }
    }
  }
}
@media only screen and (max-width: 767px) {
  .c-header__logo-wrap {
    width: 130px;
  }
}
@media only screen and (max-width: 516px) {
  .c-header__logo-wrap {
    width: 115px;
  }
}
.c-header__logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
.c-header__logo {
  max-width: 126.53px;
  height: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .c-header__logo {
    max-width: 115.53px;
  }
}
@media only screen and (max-width: 516px) {
  .c-header__logo {
    max-width: 96.53px;
  }
}
.c-header__nav-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 96.27px;
}
@media only screen and (max-width: 767px) {
  .c-header__nav-wrap {
    height: 56.27px;
    @media only screen and (max-width: 516px) {
      display: none;
    }
  }
}
.c-header__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-header__top-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-header__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 9px 15px 8px 10px;
  width: 100%;
}
@media only screen and (max-width: 516px) {
  .c-header__top {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.c-header__company {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  letter-spacing: 0.64px;
  color: #ffffff;
}
@media only screen and (max-width: 516px) {
  .c-header__company {
    display: none;
  }
}
.c-header__lang {
  font-size: 1.4rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 1.56px;
  margin-top: 7px;
}
.c-header__nav {
  -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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 16px;
  margin-top: 9px;
}
.c-header__menu {
  list-style: none;
  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: 70px;
}
@media only screen and (max-width: 1174px) {
  .c-header__menu {
    gap: 33px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-header__menu {
    display: none;
  }
}
.c-header__link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  font-size: 1.5rem;
  letter-spacing: 0.6px;
  color: #ffffff;
  position: relative;
}
.c-header__link:hover {
  &::after {
    width: 100%;
    position: absolute;
    content: "";
    bottom: -14px;
    left: 0;
    background: #e1b628;
    height: 5.9px;
  }
}
.c-header__item--active a {
  &::after {
    width: 100%;
    position: absolute;
    content: "";
    bottom: -14px;
    left: 0;
    background: #e1b628;
    height: 5.9px;
  }
}
.c-header__black {
  background: rgba(0, 0, 0, 0.9);
  height: 96.96px;
}
.c-header__contact {
  width: 274px;
  background: #d7aa1b;
  color: #111111;
  background: #e1b628;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 19% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 9% 100%);
  /* padding: 18px 22px 16px 42px; */
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  height: 96.27px;
  padding: 0px 15px 44px 30px;
  position: relative;

  &.right {
    position: absolute;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-header__contact {
    display: none;
  }
}
.c-header__contact-phone-row {
  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: 9px;
}
.c-header__phone-icon {
  width: 23.1px;
}
.c-header__phone-number {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 3.7rem;
  letter-spacing: 0.93px;
  color: #231f20;
  font-family: "bahnschrift-condensed", sans-serif;
  font-weight: 400;
}
.c-header__contact-time {
  margin-left: 29px;
  margin-top: -9px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: #231f20;
}
.c-header__contact-time span {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings:
    "wght" 600,
    "wdth" 90,
    "slnt" 0;
  font-size: 1.616rem;
  margin-left: 7px;
  letter-spacing: 2px;
}

/* .c-main__side */
.page-hero {
  background-image: url("../images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 186px 20px 123px;
}
@media only screen and (max-width: 767px) {
  .page-hero {
    padding: 170px 20px 85px;
  }
}
@media only screen and (max-width: 516px) {
  .page-hero {
    padding: 150px 20px 75px;
  }
}
.page-hero__inner {
  max-width: 1004px;
  margin: 0 auto;
}
.page-hero__title {
  font-family: "arial", sans-serif;
  font-weight: bold;
  font-size: 6rem;
  letter-spacing: 7.2px;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .page-hero__title {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .page-hero__title {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 516px) {
  .page-hero__title {
    font-size: 3rem;
    letter-spacing: 2px;
  }
}
.page-hero__subtitle {
  font-weight: bold;
  font-size: 2.3rem;
  letter-spacing: 1.84px;
  color: #ffffff;
  margin-top: -18px;
  display: block;
  margin-left: 5px;
}
@media only screen and (max-width: 1024px) {
  .page-hero__subtitle {
    font-size: 1.8rem;
    margin-top: -15px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 516px) {
  .page-hero__subtitle {
    font-size: 1.7rem;
    margin-top: -10px;
  }
}

/* .c-footer */
.c-footer {
  width: 100%;
}
.c-footer__contact {
  background-image: url(../images/index/contact.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 20px 96px;
  position: relative;
  margin-top: 139px;
}
@media only screen and (max-width: 767px) {
  .c-footer__contact {
    padding: 0 20px 0;
    margin-top: 110px;
  }
}
.c-footer__contact.recruit {
  margin-top: 0;
}
.c-footer__contact::after {
  width: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.54);
  height: 100%;
}
.c-footer__contact-inner {
  position: relative;
  z-index: 2;
  /* max-width: 1365px; */
  margin: 0 auto;
  padding: 102px 24px 120px;
}
@media only screen and (max-width: 1024px) {
  .c-footer__contact-inner {
    padding: 102px 0 120px;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__contact-inner {
    padding: 90px 0;
  }
}
.c-footer__contact-list {
  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;
  gap: 15px;
  margin-top: -25px;
  max-width: 1000px;
  margin: -25px auto 0;
}
@media only screen and (max-width: 1024px) {
  .c-footer__contact-list {
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__contact-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 360px;
    margin: -50px auto 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__contact-list {
    margin: -65px auto 0;
  }
}
.c-footer__contact-card {
  width: 100%;
  background: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .c-footer__contact-card {
    scale: 0.85;
    min-width: 273px;
    margin: 0 -10px;
  }
}
.c-footer__contact-card-head {
  height: 57px;
  background: #e06756;
  color: #ffffff;
  background: #000000;
  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;
  text-align: center;
  padding: 0 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: 0.76px;
  color: #ffffff;
}
.c-footer__contact-card-body {
  height: 170px;
  background: #ffffff;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 516px) {
  .c-footer__contact-card-body {
    scale: 0.9;
    height: 150px;
  }
}
.c-footer__contact-card-body--tel .c-header__contact-phone-row {
  gap: 10px;
  margin-top: -15px;
}
.c-footer__contact-card-body--tel .c-header__phone-icon {
  width: 26.1px;
  margin-top: 9px;
}
.c-footer__contact-card-body--tel .c-header__phone-number {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 3.7rem;
  letter-spacing: 0.93px;
  color: #231f20;
  font-family: "bahnschrift-condensed", sans-serif;
  font-weight: 400;
  font-size: 4.5rem;
  letter-spacing: 1.13px;
}
.c-footer__contact-card-body--tel .c-header__contact-time {
  margin-left: 32px;
  margin-top: -12px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #231f20;
  font-size: 1.8rem;
  letter-spacing: 2.66px;
  color: #231f20;
}
.c-footer__contact-card-body--tel .c-header__contact-time span {
  font-size: 1.926rem;
}
.c-footer__contact-mail-link {
  width: 100%;
  max-width: 240px;
  height: 54px;
  border: 2px solid #5d5d5d;
  color: #231f20;
  text-decoration: none;
  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-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  font-weight: bold;
  font-size: 18px;
  color: #231f20;
  gap: 8px;
}
.c-footer__contact-mail-link img {
  width: 26px;
}
.c-footer__contact-card-body--line {
  gap: 18px;
}
.c-footer__contact-line-icon {
  width: 79px;
  margin: 0px 0 -14px;
}
.c-footer__contact-line-id {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  color: #231f20;
  font-weight: bold;
  font-size: 2.1rem;
  color: #231f20;
}
.c-footer__map {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .c-footer__map {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__map {
    height: 400px;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__map {
    height: 350px;
  }
}
.c-footer__main {
  padding: 59px 24px 45px;
}
.c-footer__inner {
  margin: 0 auto;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.c-footer__logo-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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 33px;
  width: 219px;
}
@media only screen and (max-width: 767px) {
  .c-footer__logo-link {
    width: 180px;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__logo-link {
    width: 155px;
  }
}
.c-footer__company {
  margin: 0 0 14px;
  font-size: 6.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: #231f20;
  letter-spacing: 0.02em;
  font-weight: bold;
  font-size: 3.2rem;
  letter-spacing: 0.64px;
  color: #231f20;
}
@media only screen and (max-width: 767px) {
  .c-footer__company {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__company {
    font-size: 2.6rem;
  }
}
.c-footer__info {
  margin-bottom: 42px;
  font-size: 1.3rem;
  letter-spacing: 0.78px;
  color: #231f20;
}
.c-footer__social {
  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: 38px;
}
@media only screen and (max-width: 516px) {
  .c-footer__social {
    gap: 30px;
    scale: 0.8;
    margin-top: -20px;
  }
}
.c-footer__social-link {
  width: 100%;
}
.c-footer__social-icon {
  width: 66px;
  display: block;
}
.c-footer__social-icon--instagram {
  font-size: 3.4rem;
  font-weight: 400;
}
.c-footer__bottom {
  padding: 43px 24px 43px 44px;
  background: #231f20;
}
@media only screen and (max-width: 767px) {
  .c-footer__bottom {
    padding: 43px 20px;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__bottom {
    padding: 25px 20px;
  }
}
.c-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 516px) {
  .c-footer__bottom-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;
    gap: 15px;
  }
}
.c-footer__policy {
  text-decoration: none;
  font-size: 1.3rem;
  line-height: calc(23.53 / 13);
  letter-spacing: 0.78px;
  color: white;
}
.c-footer__copyright {
  font-weight: 500;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: calc(16 / 12);
  letter-spacing: 0.72px;
}

/* .c-main__work-title */
/* .c-header__contact-phone-row */
/* .c-single */
.c-single {
  width: 100%;
}
.c-single .c-main__pagenavi {
  margin: 72px auto 0;
}
.c-single * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-single a {
  text-decoration: none;
}
.c-single__inner {
  max-width: 794.45px;
  margin: 90px auto 0;
  padding: 0 20px;
}
.c-single__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 21px;
}
.c-single__cat {
  padding: 0 10px;
  border-radius: 999px;
  background: #b7af2a;
  color: #fff;
  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;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  line-height: calc(25.21 / 11);
  letter-spacing: 1.1px;
  color: #ffffff;
  height: 21.6px;
}
.c-single__date {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  line-height: calc(32.16 / 16);
  letter-spacing: 1.6px;
  color: #231f20;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings:
    "wght" 600,
    "wdth" 90,
    "slnt" 0;
}
.c-single__title {
  margin: 0;
  padding-bottom: 13px;
  border-bottom: 1px solid #231f20;
  color: #2a2527;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: bold;
  font-size: 1.8rem;
  color: #231f20;
}
.c-single__content {
  padding-top: 12px;
  color: #2a2527;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  color: #231f20;
}
.c-single__pager-btn {
  width: 170px;
  height: 72px;
  background: #ead057;
  color: #fff;
  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;
  gap: 10px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-single__pager-btn:hover {
  opacity: 0.85;
}
.c-single__pager-btn.is-prev {
  background: #ead057;
}
.c-single__pager-btn.is-next {
  background: #ead057;
}
.c-single__pager-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.c-single__pager-text {
  line-height: 1;
}

/* .c-main__pagenavi */
.c-service__inner {
  margin: 0 auto;
  max-width: 1200px;
}
.c-service__intro {
  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: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: center;
  padding: 41px 0 12px 101px;
}
@media only screen and (max-width: 1124px) {
  .c-service__intro {
    padding: 41px 0 12px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__intro {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-service__intro-content {
  padding-top: 7px;
  width: 39%;
}
@media only screen and (max-width: 1024px) {
  .c-service__intro-content {
    width: 41%;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__intro-content {
    width: 100%;
  }
}
.c-service__intro-title {
  margin: 0 0 43px;
  color: #222;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 2.1rem;
  line-height: 1.75;
  letter-spacing: 2.4px;
  color: #000000;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .c-service__intro-title {
    white-space: unset;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__intro-title {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__intro-title {
    padding-right: 20px;
    font-size: 2rem;
    letter-spacing: 1px;
  }
}
.c-service__intro-desc {
  margin: 0;
  color: #2d2d2d;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: #231f20;
}
@media only screen and (max-width: 516px) {
  .c-service__intro-desc {
    padding-right: 20px;
  }
}
.c-service__intro-visual {
  width: 55%;
  position: relative;
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .c-service__intro-visual {
    width: 100%;
    margin-top: 30px;
  }
}
.c-service__feature {
  margin-top: 24px;
  background: url("../images/bg_contact.png") center center/cover no-repeat;
  padding: 82px 20px 78px;
}
.c-service__feature-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -29px auto 0;
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  .c-service__feature-list {
    margin: -55px auto 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__feature-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 300px;
  }
}
.c-service__feature-item {
  position: relative;
  width: 33.3333%;
  background: white;
  border-right: 1px solid #a4a5a8;
  padding: 14px 17px 23px;
}
@media only screen and (max-width: 1024px) {
  .c-service__feature-item {
    padding: 14px 8px 23px;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__feature-item {
    width: 100%;
  }
}
.c-service__feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  width: 72px;
  height: 9px;
  background: #eb4134;
  background: #ef382b;
}
@media only screen and (max-width: 767px) {
  .c-service__feature-item::before {
    width: 55px;
    height: 6px;
  }
}
.c-service__feature-item:nth-child(2) .c-service__feature-no,
.c-service__feature-item:nth-child(2) .c-service__feature-heading {
  color: #f36e2b;
}
.c-service__feature-item:nth-child(2)::before {
  background: #f36e2b;
}
.c-service__feature-item:nth-child(3) .c-service__feature-no,
.c-service__feature-item:nth-child(3) .c-service__feature-heading {
  color: #faa22a;
}
.c-service__feature-item:nth-child(3)::before {
  background: #faa22a;
}
.c-service__feature-no {
  color: #ef382b;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 5.8rem;
  line-height: 1;
  letter-spacing: -3.48px;
  font-family: futura-pt, sans-serif;
}
@media only screen and (max-width: 1024px) {
  .c-service__feature-no {
    font-size: 4.8rem;
    margin-left: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__feature-no {
    font-size: 3.8rem;
  }
}
.c-service__feature-icon {
  width: 145px;
  border-radius: 50%;
  margin: -23px auto 10px;
  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;
}
@media only screen and (max-width: 1024px) {
  .c-service__feature-icon {
    width: 130px;
    margin: 0 auto 10px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__feature-icon {
    width: 120px;
  }
}
.c-service__feature-icon.is-red {
  background: #ff3a2d;
}
.c-service__feature-icon.is-red img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-service__feature-icon.is-orange {
  background: #f47b2a;
}
.c-service__feature-icon.is-orange img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-service__feature-icon.is-yellow {
  background: #f4ab2d;
}
.c-service__feature-icon.is-yellow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-service__feature-heading {
  margin: 0 0 -6px;
  text-align: center;
  color: #ef6d21;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: bold;
  font-size: 1.9rem;
  line-height: 2.2636842105;
  letter-spacing: 1.9px;
}
@media only screen and (max-width: 1024px) {
  .c-service__feature-heading {
    font-size: 1.7rem;
    line-height: 1.56;
    letter-spacing: 0;
    margin-bottom: 5px;
  }
}
.c-service__feature-text {
  margin: 0;
  text-align: center;
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-size: 1.7rem;
  line-height: 2.0588235294;
  letter-spacing: 1.7px;
  color: #231f20;
  color: rgb(35, 31, 32);
}
@media only screen and (max-width: 1024px) {
  .c-service__feature-text {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__feature-text {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.55;
  }
}
.c-service__business {
  width: 100%;
  background: #eceae4;
  padding: 83px 20px 128px;
  background: #f5f2ed;
}
@media only screen and (max-width: 767px) {
  .c-service__business {
    padding: 83px 20px 110px;
  }
}
.c-service__business * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-service__business img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-service__business-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.c-service__business-list {
  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: 55px;
  max-width: 1000px;
  margin: -26px auto 0;
}
@media only screen and (max-width: 767px) {
  .c-service__business-list {
    margin: -50px auto 0;
  }
}
.c-service__business-item {
  width: 100%;
}
.c-service__business-item.is-reverse .c-service__business-body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .c-service__business-item.is-reverse .c-service__business-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.c-service__business-item.is-reverse .c-service__business-en {
  text-align: left;
  padding-left: 24px;
}
@media only screen and (max-width: 767px) {
  .c-service__business-item.is-reverse .c-service__business-en {
    padding-left: 0;
  }
}
.c-service__business-head {
  height: 52px;
  background: #d8b222;
  color: #111;
  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-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  background: #e1b628;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: calc(36.96 / 25);
  letter-spacing: 2.5px;
  color: #231f20;
  color: rgb(35, 31, 32);
}
@media only screen and (max-width: 767px) {
  .c-service__business-head {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__business-head {
    font-size: 2rem;
  }
}
.c-service__business-body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #e7e3d7;
  background: #eae8da;
}
@media only screen and (max-width: 767px) {
  .c-service__business-body {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-service__business-content {
  width: 50%;
  padding: 38px 40px;
  position: relative;
  z-index: 2;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .c-service__business-content {
    padding: 38px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__business-content {
    width: 100%;
  }
}
.c-service__business-copy {
  margin: 0 0 22px;
  color: #222;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.65;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.45;
}
.c-service__business-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.c-service__business-block + .c-service__business-block {
  margin-top: 25px;
}
.c-service__business-label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  color: #111;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  margin-right: -6px;
  font-size: 1.2rem;
  line-height: calc(40.9 / 12);
  letter-spacing: 2.64px;
  margin-left: -15px;
}
.c-service__business-desc {
  margin: 0;
  color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  font-size: 1.4rem;
  line-height: calc(26.81 / 14);
  padding-left: 10px;
  margin-top: -7px;
  position: relative;
}
.c-service__business-desc::after {
  width: 3px;
  position: absolute;
  content: "";
  top: 6px;
  left: 0px;
  background-color: #231f20;
  height: 90%;
}
@media only screen and (max-width: 516px) {
  .c-service__business-desc::after {
    height: 95%;
  }
}
.c-service__business-worklist {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  line-height: calc(26.81 / 14);
  margin-top: -6px;
  position: relative;
}
.c-service__business-worklist::after {
  width: 3px;
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  background-color: #231f20;
  height: 93%;
}
.c-service__business-worklist li {
  position: relative;
  padding-left: 1em;
}
.c-service__business-worklist li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 3px;
}
.c-service__business-image {
  width: 50%;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .c-service__business-image {
    width: 100%;
  }
}
.c-service__business-en {
  position: absolute;
  left: 0;
  right: 7%;
  bottom: -12px;
  z-index: 3;
  text-align: right;
  color: #d0cdb9;
  font-size: 8.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
  font-size: 7.1rem;
  opacity: 1;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-shadow:
    0 0 40px rgba(0, 0, 0, 0.45),
    0 2px 12px rgba(0, 0, 0, 0.35),
    0 1px 4px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1024px) {
  .c-service__business-en {
    bottom: -8px;
    font-size: 5.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__business-en {
    letter-spacing: 0;
    width: 100%;
    text-align: center !important;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__business-en {
    font-size: 4rem;
  }
}
.c-service__support {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 67px 0 65px;
}
@media only screen and (max-width: 516px) {
  .c-service__support {
    padding: 67px 0 100px;
  }
}
.c-service__support * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-service__support-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url(../images/service/support.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 20px;
}
.c-service__support-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: blur(6px);
  filter: blur(6px);
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.c-service__support-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 243, 59, 0.57)),
    color-stop(4.01%, rgba(254, 231, 46, 0.57)),
    color-stop(11.71%, rgba(254, 213, 27, 0.57)),
    color-stop(19.64%, rgba(253, 202, 16, 0.57)),
    color-stop(28.09%, rgba(253, 199, 12, 0.57)),
    color-stop(66.85%, rgba(243, 144, 63, 0.57)),
    color-stop(88.76%, rgba(237, 104, 60, 0.57)),
    to(rgba(233, 62, 58, 0.57))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 243, 59, 0.57) 0%,
    rgba(254, 231, 46, 0.57) 4.01%,
    rgba(254, 213, 27, 0.57) 11.71%,
    rgba(253, 202, 16, 0.57) 19.64%,
    rgba(253, 199, 12, 0.57) 28.09%,
    rgba(243, 144, 63, 0.57) 66.85%,
    rgba(237, 104, 60, 0.57) 88.76%,
    rgba(233, 62, 58, 0.57) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 243, 59, 0.57) 0%,
    rgba(254, 231, 46, 0.57) 4.01%,
    rgba(254, 213, 27, 0.57) 11.71%,
    rgba(253, 202, 16, 0.57) 19.64%,
    rgba(253, 199, 12, 0.57) 28.09%,
    rgba(243, 144, 63, 0.57) 66.85%,
    rgba(237, 104, 60, 0.57) 88.76%,
    rgba(233, 62, 58, 0.57) 100%
  );
}
.c-service__support-inner {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  max-width: 1200px;
  margin: 0 auto;
}
.c-service__support-panel {
  position: relative;
  margin-top: -28px;
  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;
}
.c-service__support-panel-inner {
  position: relative;
  padding: 53px 0 40px 99px;
  width: 96.5%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-service__support-panel-inner {
    padding: 53px 0 40px 85px;
    margin-top: -35px;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__support-panel-inner {
    padding: 53px 0 0 20px;
  }
}
.c-service__support-panel-inner::after {
  width: 101%;
  position: absolute;
  content: "";
  top: 0;
  left: -1%;
  background-image: url(../images/service/support_content.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 105%;
}
@media only screen and (max-width: 516px) {
  .c-service__support-panel-inner::after {
    width: 125%;
    top: 15px;
    left: -20%;
    height: 105%;
  }
}
.c-service__support-heading {
  margin: 0 0 40px;
  color: #211d1f;
  font-size: 6.6rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  font-size: 3.2rem;
  line-height: 0.5627272727;
  color: #231f20;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-service__support-heading {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__support-heading {
    font-size: 2rem;
    line-height: 1.55;
    margin: 0 0 25px;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__support-heading {
    font-size: 1.8rem;
  }
}
.c-service__support-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-service__support-list {
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__support-list {
    gap: 20px;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__support-list {
    gap: 18px;
  }
}
.c-service__support-item {
  padding: 10px 12px;
  border: 2px solid #707070;
  background: rgba(255, 250, 244, 0.28);
  color: #2a2527;
  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;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 2rem;
  line-height: 0.8823529412;
  color: #231f20;
}
@media only screen and (max-width: 1024px) {
  .c-service__support-item {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__support-item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__support-item {
    font-size: 1.5rem;
    padding: 8px 9px;
  }
}
.c-service__support-note {
  margin: 0;
  color: #2a2527;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.8px;
  color: #231f20;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-service__support-note {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__support-note {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__support-note {
    font-size: 1.4rem;
  }
}

.c-recruit {
  width: 100%;
  background: #ddd389;
  padding: 164px 20px 122px;
  background: #ebdc89;
}
@media only screen and (max-width: 767px) {
  .c-recruit {
    padding: 100px 20px;
  }
}
.c-recruit * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-recruit a {
  text-decoration: none;
}
.c-recruit__inner {
  max-width: 1000px;
  margin: 0 auto;
  gap: 80px;
  display: grid;
}
.c-recruit__card {
  background: white;
  border: 1px solid #231f20;
  border-radius: 21px;
  overflow: hidden;
}
.c-recruit__head {
  padding: 28px 40px 37px;
  background: rgb(225, 182, 40);
  border-bottom: 1px solid #231f20;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__head {
    padding: 20px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__head {
    padding: 20px 20px;
  }
}
.c-recruit__title {
  margin: 0;
  color: #1e1a17;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 2.9rem;
  letter-spacing: 2.9px;
  color: #231f20;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}
.c-recruit__body {
  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: 28px;
  padding: 25px 35px 0;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__body {
    gap: 20px;
    padding: 25px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-recruit__body {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-recruit__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48%;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-recruit__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.c-recruit__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__image img {
    height: auto;
  }
}
.c-recruit__info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-recruit__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-recruit__table tbody tr th {
  width: 107px;
  text-align: center;
  padding: 11px 12px;
  border: 1px solid;
  color: #2a2523;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.03em;
  vertical-align: middle;
  background: #efefef;
  font-size: 1.4rem;
  color: #231f20;
  background: #eeeded;
}
.c-recruit__table tbody tr td {
  padding: 5px 28px;
  border: 1px solid;
  color: #2a2523;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.03em;
  vertical-align: middle;
  background: white;
  font-size: 1.4rem;
  color: #231f20;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__table tbody tr td {
    padding: 5px 20px;
  }
}
.c-recruit__btn-wrap {
  text-align: center;
  padding: 42px 0 39px;
}
@media only screen and (max-width: 767px) {
  .c-recruit__btn-wrap {
    padding: 30px 0 50px;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__btn-wrap {
    padding: 20px 0 50px;
  }
}
.c-recruit__btn {
  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;
  max-width: 342px;
  height: 69px;
  padding: 0 32px;
  background: #000;
  border-radius: 8px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 2rem;
  letter-spacing: 0.8px;
  color: #ffffff;
  background: rgb(0, 0, 0);
  border-radius: 7px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .c-recruit__btn {
    scale: 0.9;
  }
}
@media only screen and (max-width: 516px) {
  .c-recruit__btn {
    scale: 0.8;
  }
}
.c-recruit__btn:hover {
  opacity: 0.85;
}

@media only screen and (max-width: 516px) {
  .c-recruit__table,
  .c-recruit__table tbody,
  .c-recruit__table tr,
  .c-recruit__table th,
  .c-recruit__table td {
    display: block;
    width: 100%;
  }
  .c-recruit__table tbody tr {
    margin-bottom: 12px;
  }
  .c-recruit__table tbody tr th {
    width: 100%;
    border-bottom: none;
  }
  .c-recruit__table tbody tr td {
    width: 100%;
    padding: 10px 16px;
  }
}
/* .c-privacy */
.c-privacy {
  width: 100%;
  padding: 0 20px;
}
.c-privacy * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-privacy__inner {
  max-width: 908.2px;
  margin: 73px auto 0;
}
.c-privacy__content {
  color: #1f1b1d;
}
.c-privacy__block + .c-privacy__block {
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .c-privacy__block + .c-privacy__block {
    margin-top: 25px;
  }
}
.c-privacy__heading {
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: 1.8rem;
  line-height: calc(36 / 18);
  color: #231f20;
}
.c-privacy__text {
  margin: 0;
  color: #1f1b1d;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  line-height: calc(36 / 18);
  color: #231f20;
}
@media only screen and (max-width: 1024px) {
  .c-privacy__text {
    font-size: 1.6rem;
  }
}

.c-news {
  padding: 0 20px;
}
.c-news .c-main__news-list {
  max-width: 1000px;
  margin: 78px auto 0;
}

.c-main__pagenavi-col--next .c-main__pagenavi-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.c-main__pagenavi {
  max-width: 379px;
  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: 53px auto 0;
}
.c-main__pagenavi-col--prev {
  justify-self: start;
}
.c-main__pagenavi-col--next {
  justify-self: end;
}
.c-main__pagenavi-btn {
  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;
  gap: 13px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: rgba(241, 203, 41, 0.5);
  border-radius: 5px;
  width: 113.2px;
  height: 50.4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #cba52e;
}
.c-main__pagenavi-btn:hover {
  opacity: 0.85;
}
.c-main__pagenavi-btn.is-disabled {
  background: rgba(241, 203, 41, 0.26);
}
.c-main__pagenavi-label {
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 1.6rem;
  display: block;
}
.c-main__pagenavi-arrow {
  width: 7px;
}
.c-main__pagenavi-info {
  text-align: center;
  color: #000;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
}
.c-main__pagenavi-total {
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 1.2rem;
  color: #231f20;
}
.c-main__pagenavi-range {
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 1.2rem;
  color: #231f20;
}

/* .c-contact */
.c-contact {
  width: 100%;
  padding-bottom: 0;
}
.c-contact * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-contact a {
  text-decoration: none;
}
.c-contact__top {
  background: url("../images/bg_contact.png") center center/cover no-repeat;
  padding: 58px 20px 78px;
}
@media only screen and (max-width: 767px) {
  .c-contact__top {
    padding: 58px 20px;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__top {
    padding: 58px 20px 0;
  }
}
.c-contact__lead {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-size: 1.8rem;
  color: #ffffff;
}
@media only screen and (max-width: 516px) {
  .c-contact__lead {
    text-align: left;
    letter-spacing: 0;
    font-size: 1.6rem;
  }
}
.c-contact__cards {
  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;
  gap: 40px;
  margin-top: 48px;
  max-width: 998.8px;
  margin: 48px auto 0;
}
@media only screen and (max-width: 1024px) {
  .c-contact__cards {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .c-contact__cards {
    max-width: 350px;
    scale: 0.9;
    margin: 0 auto 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__cards {
    max-width: unset;
    scale: 0.8;
    margin: -40px -20px 0;
    width: 320px;
  }
}
.c-contact__card {
  width: 100%;
  background: #fff;
}
.c-contact__card:last-child .c-contact__card-main {
  font-weight: bold;
  font-size: 3.2rem;
  color: #231f20;
  margin: 0;
}
.c-contact__card-head {
  height: 54px;
  background: #eacc28;
  color: #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;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.8px;
  color: #ffffff;
}
.c-contact__card-body {
  padding: 18px 20px 24px;
  text-align: center;
}
.c-contact__card-main {
  margin: -1px 0 -4px;
  color: #2f2a2d;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: bold;
  font-size: 3.5rem;
  letter-spacing: 0.7px;
  position: relative;
}
.c-contact__card-main.is-mail {
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.9rem;
  color: #231f20;
  margin-bottom: 14px;
  margin-top: 13px;
}
.c-contact__card-sub {
  margin: 11px 0 0;
  color: #4a4548;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  /* letter-spacing: 1.08px; */
  color: #231f20;
}
.c-contact__card-btn {
  width: 176px;
  height: 34px;
  margin: 26px auto 0;
  border: 1px solid #d6bc4c;
  color: #c9ab2a;
  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;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  background: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  gap: 5px;
}
@media only screen and (max-width: 767px) {
  .c-contact__card-btn {
    scale: 1.3;
    margin: 20px auto 10px;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__card-btn {
    scale: 1.4;
  }
}
.c-contact__card-btn:hover {
  opacity: 0.85;
}
.c-contact__card-btn.is-tel img {
  width: 13px;
}
.c-contact__card-btn.is-mail img {
  width: 16px;
}
.c-contact__card-btn.is-line img {
  width: 22px;
}
.c-contact__bottom {
  padding: 76px 20px 84px;
  background: #f8ebdf;
}
.c-contact__title {
  margin: 0;
  text-align: center;
  color: #d7af2d;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: bold;
  font-size: 4.8rem;
  letter-spacing: 5.76px;
  color: #e1b628;
}
@media only screen and (max-width: 1024px) {
  .c-contact__title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-contact__title {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-contact__title {
    font-size: 3rem;
  }
}
.c-contact__desc {
  margin: 37px 0 0;
  text-align: center;
  color: #3b3739;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.03em;
  font-size: 17px;
  line-height: calc(28 / 17);
  letter-spacing: 0.68px;
  color: #231f20;
}
@media only screen and (max-width: 516px) {
  .c-contact__desc {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.c-contact__step {
  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;
  margin-top: 34px;
}
.c-contact__step-item {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px solid #d2ac2b;
  background: #fff;
  color: #d2ac2b;
  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;
  -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;
  line-height: 1;
}
@media only screen and (max-width: 516px) {
  .c-contact__step-item {
    aspect-ratio: 1/1;
    width: 80px;
    /* margin: 0 -20px; */
    height: 80px;
  }
}
.c-contact__step-item.is-active {
  color: #fff;
  background: #d2ac2b;
}
.c-contact__step-no {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: -2px;
}
.c-contact__step-text {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 516px) {
  .c-contact__step-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
  }
}
.c-contact__step-line {
  width: 50px;
  height: 2px;
  background: #d1ad28;
}
@media only screen and (max-width: 516px) {
  .c-contact__step-line {
    width: 20px;
  }
}
.c-contact__form-area {
  max-width: 812.76px;
  margin: 53px auto 0;
}
.c-contact__form-wrap {
  position: relative;
}
.c-contact__form-input,
.c-contact__form-confirm,
.c-contact__form-thanks {
  display: none;
}
.c-contact__form-input.is-active,
.c-contact__form-confirm.is-active,
.c-contact__form-thanks.is-active {
  display: block;
}
.c-contact__form {
  width: 100%;
}
.c-contact__field + .c-contact__field {
  margin-top: 18px;
}
.c-contact__label {
  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;
  gap: 8px;
  margin-bottom: 16px;
  color: #3b3739;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.c-contact__required {
  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;
  min-width: 24px;
  height: 16px;
  padding: 0 4px;
  background: #e53935;
  border-radius: 3px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}
.c-contact__control .wpcf7-form-control-wrap {
  display: block;
}
.c-contact__control input,
.c-contact__control select,
.c-contact__control textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #fff;
  color: #3b3739;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.c-contact__control input,
.c-contact__control select {
  height: 50px;
  padding: 0 20px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.c-contact__control textarea {
  height: 140px;
  padding: 18px 24px;
  resize: vertical;
  font-family: noto-sans-cjk-jp, sans-serif;
}
@media only screen and (max-width: 516px) {
  .c-contact__control textarea {
    padding: 18px 20px;
  }
}
.c-contact__control select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    -webkit-linear-gradient(45deg, transparent 50%, #3b3739 50%),
    -webkit-linear-gradient(315deg, #3b3739 50%, transparent 50%);
  background-image:
    linear-gradient(45deg, transparent 50%, #3b3739 50%),
    linear-gradient(135deg, #3b3739 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 0px),
    calc(100% - 16px) calc(50% - 0px);
  background-size:
    8px 8px,
    8px 8px;
  background-repeat: no-repeat;
}
.c-contact__control .is-error {
  border: 1px solid #e53935;
}
.c-contact__agree {
  margin-top: 22px;
  text-align: center;
}
.c-contact__agree-text {
  margin: 0;
  color: #3b3739;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
  font-size: 16px;
  line-height: calc(28 / 16);
  letter-spacing: 0.32px;
  color: #231f20;
}
.c-contact__agree-check {
  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;
  gap: 8px;
  margin-top: 13px;
  color: #3b3739;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.6rem;
  line-height: calc(28 / 16);
  letter-spacing: 0.32px;
  color: #231f20;
}
.c-contact__agree-check 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;
  gap: 5px;
}
.c-contact__agree-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}
.c-contact__form-btns {
  text-align: center;
  margin-top: 31px;
}
.c-contact__next-btn,
.c-contact__submit-btn,
.c-contact__back-btn {
  min-width: 218px;
  height: 67px;
  padding: 0 27px;
  border: 0;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 516px) {
  .c-contact__next-btn,
  .c-contact__submit-btn,
  .c-contact__back-btn {
    min-width: auto;
    height: 58px;
  }
}
.c-contact__next-btn,
.c-contact__submit-btn {
  background: #d2ac2b;
  color: #fff;
}
.c-contact__back-btn {
  background: #8d8a84;
  color: #fff;
}
.c-contact__next-btn:hover,
.c-contact__submit-btn:hover,
.c-contact__back-btn:hover {
  opacity: 0.85;
}
.c-contact__real-submit {
  display: none !important;
}
.c-contact__confirm-list {
  border-top: 1px solid #cbbfb4;
}
.c-contact__confirm-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cbbfb4;
}
@media only screen and (max-width: 516px) {
  .c-contact__confirm-row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-contact__confirm-label {
  width: 220px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 220px;
  -ms-flex: 0 0 220px;
  flex: 0 0 220px;
  padding: 20px 18px;
  color: #3b3739;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 516px) {
  .c-contact__confirm-label {
    padding: 20px 0 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.c-contact__confirm-value {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 18px;
  color: #3b3739;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  white-space: pre-line;
}
@media only screen and (max-width: 516px) {
  .c-contact__confirm-value {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 0 0 20px;
  }
}
.c-contact__confirm-btns {
  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;
  gap: 24px;
  margin-top: 42px;
}
.c-contact__thanks-title {
  margin: 0;
  text-align: center;
  color: #d1ad28;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.c-contact__thanks-text {
  margin: 24px 0 0;
  text-align: center;
  color: #3b3739;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output,
.wpcf7-spinner {
  display: none !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #9c989b;
  font-size: 1.6rem;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #9c989b;
  font-size: 1.6rem;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #9c989b;
  font-size: 1.6rem;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #9c989b;
  font-size: 1.6rem;
}

input::placeholder,
textarea::placeholder {
  color: #9c989b;
  font-size: 1.6rem;
}
@media only screen and (max-width: 516px) {
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-size: 1.3rem;
  }
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    font-size: 1.3rem;
  }
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    font-size: 1.3rem;
  }
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font-size: 1.3rem;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 1.3rem;
  }
}

/* .c-company */
.c-company {
  width: 100%;
  padding: 95px 0 0;
}
.c-company * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-company__profile {
  padding: 0 20px 0 30px;
  overflow: hidden;
}
@media only screen and (max-width: 516px) {
  .c-company__profile {
    padding: 0 20px 0 0;
  }
}
.c-company__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 19px;
  max-width: 816px;
  margin: -18px auto;
}
@media only screen and (max-width: 1024px) {
  .c-company__content {
    margin: -35px auto;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__content {
    gap: 10px;
    margin: -55px auto;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__content {
    margin: -40px auto;
    gap: 0;
  }
}
.c-company__side {
  width: 36px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 36px;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  position: relative;
}
.c-company__side-line {
  display: block;
  width: 1px;
  height: 931px;
  margin: 0 auto;
  background: black;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-company__side-line {
    height: 880px;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__side-line {
    height: 930px;
  }
}
.c-company__side-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 4px;
  height: 62px;
  background: #e1b628;
}
.c-company__side-text {
  position: absolute;
  top: 0;
  left: -17px;
  /* -webkit-transform: translateX(-50%); */
  -ms-transform: translateX(-50%);
  /* transform: translateX(-50%); */
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  color: #2b2729;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  font-size: 1.2rem;
  line-height: calc(25 / 12);
  color: #231f20;
}
@media only screen and (max-width: 516px) {
  .c-company__side-text {
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    top: -30px;
    width: 100vw;
    left: 15px;
  }
}
.c-company__main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 12px;
}
.c-company__heading {
  margin: 0px 0 26px;
  color: #2b2729;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: calc(27 / 28);
}
@media only screen and (max-width: 1024px) {
  .c-company__heading {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__heading {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__heading {
    font-size: 2rem;
  }
}
.c-company__table {
  width: 100%;
  max-width: 710px;
}
.c-company__row {
  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;
  border-bottom: 1px solid #231f20;
  /* min-height: 132px; */
  padding: 20px 0;
}
.c-company__th {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 191px;
  -ms-flex: 0 0 191px;
  flex: 0 0 191px;
  padding: 0 5px 0 6px;
  color: #3b3739;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  line-height: calc(27 / 16);
  color: #231f20;
}
@media only screen and (max-width: 767px) {
  .c-company__th {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 130px;
    -ms-flex: 0 0 130px;
    flex: 0 0 130px;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__th {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 95px;
    -ms-flex: 0 0 95px;
    flex: 0 0 95px;
    letter-spacing: 0;
  }
}
.c-company__td {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0 0 24px;
  color: #4a4548;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  line-height: calc(27 / 16);
  letter-spacing: 0.32px;
  color: #231f20;
}
.c-company__message {
  padding: 222px 20px 0;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .c-company__message {
    padding: 122px 20px 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__message {
    padding: 100px 20px 0;
  }
}
.c-company__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.c-company__message-body {
  display: grid;
  grid-template-columns: 52.5% 1fr;
  gap: 50px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: 1009px;
  margin: -7px auto;
  padding-left: 5.5%;
}
@media only screen and (max-width: 1124px) {
  .c-company__message-body {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .c-company__message-body {
    margin: -37px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-company__message-body {
    margin: -55px auto 0;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__message-body {
    margin: -70px auto 0;
  }
}
.c-company__message-catch {
  margin: 0 7px 27px;
  font-size: clamp(2.8rem, 3vw, 4.8rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
  /* color: #fff; */
  font-weight: bold;
  font-size: 2.9rem;
  line-height: calc(47.57 / 29);
  letter-spacing: 0.58px;
  color: #231f20;
}
@media only screen and (max-width: 1024px) {
  .c-company__message-catch {
    margin: 0 0 27px;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-company__message-catch {
    font-size: 2rem;
  }
}
.c-company__message-catch span {
  width: 89px;
  display: inline-block;
  content: ".";
}
@media only screen and (max-width: 1024px) {
  .c-company__message-catch span {
    display: none;
  }
}
.c-company__message-text {
  font-size: 1.6rem;
  line-height: calc(28 / 16);
  letter-spacing: 0.32px;
  color: #231f20;
}
.c-company__message-profile {
  font-size: 1.6rem;
  letter-spacing: 0.32px;
  color: #231f20;
  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;
  margin-top: 13px;
}
.c-company__message-image {
  width: 100%;
  margin-top: 103px;
}
@media only screen and (max-width: 767px) {
  .c-company__message-image {
    margin-top: 0;
  }
}

/* .c-main__work-title */
.c-main__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  position: relative;
  .c-header__top-wrap {
    display: flex;
    justify-content: center;
  }
  .c-header__nav-wrap {
    position: relative;
    height: 107px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    @media only screen and (max-width: 1024px) {
      display: none;
    }

    .c-header__link:hover {
      &::after {
        bottom: -41px;
      }
    }
  }
  .c-header__nav {
    justify-content: center;
    /* margin-top: 33px; */
    position: relative;
    max-width: 505px;
    margin: 0;
    padding-right: 0;
    width: 100%;
  }
  .c-header__top {
    position: absolute;
    right: -250px;
    width: auto;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
    height: auto;

    .c-header__lang {
      margin-top: 0;
    }
  }
  .c-header__menu {
    gap: 48px;
  }
}
.c-main__hero::after {
  width: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-image: url("../images/slide/blur.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.c-main__content {
  position: absolute;
  top: 51.5%;
  width: 50.2%;
  z-index: 2;
  left: 14.5%;
  transform: translateY(-50%);
  max-width: 600px;
}
@media only screen and (max-width: 767px) {
  .c-main__content {
    /* top: 42%; */
  }
}
@media only screen and (max-width: 516px) {
  .c-main__content {
    /* top: 48%; */
    scale: 1.5;
    transform-origin: left;
  }
}
.c-main__copy {
  position: relative;
}
.c-main__intro {
  position: relative;
  padding: 79px 0 331px;
  /* background: linear-gradient(
    90deg,
    rgba(255, 253, 227, 1) 0.56%,
    rgba(255, 251, 200, 1) 44.94%,
    rgba(255, 247, 143, 1) 100%
  ); */
}
@media only screen and (max-width: 767px) {
  .c-main__intro {
    padding: 90px 0 25px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__intro {
    overflow: hidden;
  }
}
.c-main__intro-bg-logo {
  position: absolute;
  top: -30px;
  right: 40px;
  width: 640px;
  opacity: 0.08;
  pointer-events: none;
}
.c-main__intro-bg-logo-img {
  width: 100%;
  display: block;
}
.c-main__intro-inner {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
}
.c-main__concept {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 72px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-main__concept {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 42px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__concept {
    gap: 30px;
  }
}
.c-main__visual::after {
  width: 100%;
  position: absolute;
  content: "";
  top: -23%;
  right: 9.5%;
  background-image: url(../images/index/logo_content.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 658.7px;
  background-position: right;
}
@media only screen and (max-width: 1024px) {
  .c-main__visual::after {
    height: 542.7px;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__visual::after {
    height: 442.7px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__visual::after {
    right: -60px;
  }
}
.c-main__concept-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 631px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-main__concept-content {
    max-width: 600px;
    padding-left: 8%;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__concept-content {
    max-width: unset;
    padding-left: 0;
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    padding: 0 20px;
  }
}
.c-main__concept-label {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 1.6px;
  position: relative;
  color: #dfa22a;
  z-index: 2;
}
.c-main__concept-title {
  line-height: 1.55;
  font-weight: 800;
  color: #d9a321;
  margin: -9px 0 40px;
  letter-spacing: 0.01em;
  font-weight: bold;
  font-size: 5.2rem;
  position: relative;
  color: #dfa22a;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .c-main__concept-title {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__concept-title {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__concept-title {
    font-size: 2.6rem;
    margin: -9px 0 25px;
  }
}
.c-main__concept-text {
  max-width: 625px;
  font-size: 2.2rem;
  line-height: 1.75;
  color: #231f20;
  font-weight: 500;
  font-weight: 500;
  font-size: 1.7rem;
  position: relative;
  color: white;
  z-index: 2;
  font-size: 21px;
  line-height: 42px;
  margin-top: 49px;
  @media only screen and (max-width: 1024px) {
    font-size: 1.7rem;
  }
  @media only screen and (max-width: 767px) {
    margin-top: 30px;
  }
}
.c-main__concept-copy {
  position: absolute;
  width: 64.5%;
  left: 0;
  top: 19%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .c-main__concept-copy {
    position: unset;
    width: 100%;
    max-width: 420px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__concept-copy {
    /* max-width: 350px; */
  }
}
.c-main__visual {
  position: relative;
  margin-top: -142px;
  /* background-image: url("../images/index/tech.jpg"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* overflow: hidden; */
}
.c-main__visual-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;

  padding: 450px 0 171px;
  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;
}
@media only screen and (max-width: 1024px) {
  .c-main__visual-inner {
    padding: 239px 0 171px;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__visual-inner {
    padding: 350px 0 130px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__visual-inner {
    padding: 320px 0 90px;
  }
}
.c-main__visual-actions {
  margin-right: 130px;
  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: 35px;
}
@media only screen and (max-width: 767px) {
  .c-main__visual-actions {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__visual-actions {
    gap: 20px;
  }
}
.c-main__visual-button {
  width: 375.5px;
  height: 67px;
  background: #231f20;
  color: #ffffff;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  background: #f26a57;
  background: #d8b02f;
  /* border-radius: 2px; */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(216, 176, 47, 1) 0%,
    rgba(35, 31, 32, 1) 100%
  );
  &::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -5px;
    width: 100%;
    height: 100%;
    border: 1px solid white;
  }
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    width: 79.5px;
    height: 1px;
    background-color: white;
    margin-top: -5px;
  }
  @media only screen and (max-width: 1024px) {
    scale: 0.9;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__visual-button {
    scale: 0.8;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__visual-button {
    width: 320.5px;
  }
}
.c-main__visual-button-text {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 2.3rem;
  letter-spacing: 4.6px;
  position: relative;
  color: #ffffff;
}
@media only screen and (max-width: 516px) {
  .c-main__visual-button-text {
    font-size: 2rem;
  }
}
.c-main__visual-button-arrow {
  font-size: 4.4rem;
  line-height: 1;
  color: #f2e500;
  width: 14.14px;
  position: absolute;
  right: 21px;
}
.c-main__visual-word {
  position: absolute;
  right: 0;
  bottom: -13px;
  font-size: 10.2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  font-family: "arial", sans-serif;
  font-weight: bold;
  font-size: 13.2rem;
  letter-spacing: 10.68px;
  color: rgb(255, 255, 255, 0.62);
  letter-spacing: 2.64px;
  @media only screen and (max-width: 1124px) {
    font-size: 10.9rem;
  }
}
@media only screen and (max-width: 1024px) {
  .c-main__visual-word {
    font-size: 7.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__visual-word {
    font-size: 5.5rem;
    bottom: -8px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__visual-word {
    font-size: 11vw;
    /* bottom: -1%; */
    letter-spacing: 3px;
    right: -3px;
  }
}
.c-main__work {
  width: 100%;
  padding: 74px 20px 155px;
}
@media only screen and (max-width: 767px) {
  .c-main__work {
    padding: 90px 20px 110px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__work {
    padding: 90px 20px;
  }
}
.c-main__work a {
  text-decoration: none;
}
.c-main__work img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-main__work-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.c-main__work-title {
  margin: 0 0 101px;
  text-align: center;
  color: #e1b628;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 5px;
  font-family: "arial", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .c-main__work-title {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__work-title {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__work-title {
    font-size: 3rem;
  }
}
.c-main__work-title.white {
  color: white;
}
.c-main__work-title.left {
  text-align: left;
}
.c-main__work-title.recruit {
  margin: 0 0 60px;
}
@media only screen and (max-width: 1024px) {
  .c-main__work-title.recruit {
    margin: 0 0 40px;
  }
}
.c-main__work-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 70px;
  max-width: 1000px;
  margin: 0 auto 162px;
}
@media only screen and (max-width: 1024px) {
  .c-main__work-list {
    margin: -40px auto 101px;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__work-list {
    grid-template-columns: repeat(2, 1fr);
    margin: -50px auto 55px;
    gap: 50px 30px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__work-list {
    gap: 30px 20px;
    margin: -60px auto 35px;
  }
}
.c-main__work-item {
  display: block;
}
.c-main__work-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  background: #b3b3b3;
  overflow: hidden;
}
.c-main__work-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-main__work-text {
  margin: 9px 0 0;
  color: #2f2a2d;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: left;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: white;
}
@media only screen and (max-width: 1024px) {
  .c-main__work-text {
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__work-text {
    margin: 10px 0 0;
    letter-spacing: 0;
  }
}
.c-main__work-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-main__recruit {
  width: 100%;
  /* overflow-x: hidden; */
}
.c-main__recruit a {
  text-decoration: none;
}
.c-main__recruit img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-main__recruit-inner {
  background-image: url(../images/index/recruit.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0 88px;
  /* overflow: hidden; */

  @media only screen and (max-width: 1024px) {
    background-position: top right;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__recruit-inner {
    /* padding: 20px 20px 220px; */
  }
}
.c-main__recruit-hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.c-main__recruit-content {
  position: relative;
  z-index: 3;
  max-width: 1030px;
  padding: 116px 20px 0 98px;
  color: #fff;

  @media only screen and (max-width: 1124px) {
    padding: 116px 20px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .c-main__recruit-content {
    padding: 100px 20px 0;

    @media only screen and (max-width: 767px) {
      padding: 0 20px;
    }
  }
}
.c-main__recruit-heading {
  margin: 17px 0 21px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.06em;
  font-weight: bold;
  font-size: 3.7rem;
  line-height: calc(52.5 / 33);
  letter-spacing: 1.98px;
  position: relative;
  /* color: #D86829; */
  @media only screen and (max-width: 1024px) {
    width: 81%;
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__recruit-heading {
    font-size: 2.6rem;
    letter-spacing: 0;
    width: 76%;
    text-shadow: 0 0 3.1479px rgba(0, 0, 0, 0.6);
    /* white-space: nowrap; */
    /* margin: 35px 0 21px; */
  }
}
@media only screen and (max-width: 516px) {
  .c-main__recruit-heading {
    font-size: 2rem;
    white-space: unset;
    width: 100%;
  }
}
.c-main__recruit-desc {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-size: 16px;
  letter-spacing: 0.32px;
  max-width: 748px;
  @media only screen and (max-width: 1024px) {
    text-shadow: 0 0 3.1479px rgba(0, 0, 0, 0.6);
  }
}
.c-main__recruit-copy {
  position: absolute;
  top: -21%;
  right: 0;
  z-index: 4;
  width: 39.5%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .c-main__recruit-copy {
    position: unset;
    top: 13px;
    right: 0;
    z-index: 4;
    /* max-width: 300px; */
    /* float: right; */
    width: 100%;
    /* margin-right: -40px; */
    margin-top: -80px;
    display: flex;
    justify-content: flex-end;

    img {
      @media only screen and (max-width: 767px) {
        max-width: 300px;
        margin-right: -20px;
      }
    }
  }
}
@media only screen and (max-width: 767px) {
  .c-main__recruit-copy {
    margin-bottom: -158px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__recruit-copy {
    /* max-width: 250px; */
    margin-bottom: -55px;
    overflow-x: hidden;
    /* margin: 0 -20px; */
  }
}
.c-main__recruit-bottom {
  position: relative;
  max-width: 1013px;
  margin: 0 auto;
}
.c-main__recruit-gallery {
  position: relative;
  z-index: 5;
  margin-top: -192px;
  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;
}
.c-main__recruit-message {
  /* position: absolute; */
  /* right: 0; */
  /* bottom: 175px; */
  z-index: 6;
  /* background: #d7af2d; */
  padding: 659px 0px 93px;
  /* max-width: 754px; */
  /* background: #e06756; */
}
@media only screen and (max-width: 1024px) {
  .c-main__recruit-message {
    padding: 459px 0px 53px;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__recruit-message {
    /* position: relative; */
    /* margin: -62px 0 0; */
    /* z-index: 13; */
    /* width: 95%; */
    /* float: right; */
    /* top: 0; */
    padding: 259px 0px 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__recruit-message {
    padding: 100px 0px 0;
    margin: 0 0 -30px;
  }
}
.c-main__recruit-message p {
  margin: 0;
  color: #1d1719;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.55;
  font-size: 5.3rem;
  line-height: 1.55;
  color: white;
  letter-spacing: 0px;

  span {
    position: relative;
    display: inline-block;
    color: #fff;
    /* text-shadow: 4px 6px 8px rgba(0, 0, 0, 0.65); */
    white-space: nowrap;
    z-index: 1;
    padding: 0 51px 4px;
    margin-bottom: 0;
    text-shadow: 0 0 3.1479px rgba(0, 0, 0, 0.6);

    &:last-child {
      margin-left: 32px;
      &:before {
        /* background: linear-gradient(96.58deg, rgba(255, 243, 59, 1) 0%, rgba(251, 239, 58, 1) 12.38%, rgba(238, 226, 57, 1) 25.81%, rgba(216, 205, 54, 1) 39.75%, rgba(185, 176, 50, 1) 54.04%, rgba(146, 138, 46, 1) 68.59%, rgba(98, 92, 40, 1) 83.37%, rgba(43, 38, 33, 1) 98.06%, rgba(35, 31, 32, 1) 99.94%); */
        clip-path: polygon(2% 0, 100% 0, 96% 100%, 0 100%);
      }
    }
    &::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 48px;
      /* background : linear-gradient(96.58deg, rgba(255, 243, 59, 1) 0%, rgba(251, 239, 58, 1) 12.38%, rgba(238, 226, 57, 1) 25.81%, rgba(216, 205, 54, 1) 39.75%, rgba(185, 176, 50, 1) 54.04%, rgba(146, 138, 46, 1) 68.59%, rgba(98, 92, 40, 1) 83.37%, rgba(43, 38, 33, 1) 98.06%, rgba(35, 31, 32, 1) 99.94%); */
      background: linear-gradient(
        96.58deg,
        rgba(255, 243, 59, 1) 0%,
        rgba(251, 239, 58, 1) 12.38%,
        rgba(238, 226, 57, 1) 25.81%,
        rgba(216, 205, 54, 1) 39.75%,
        rgba(185, 176, 50, 1) 54.04%,
        rgba(146, 138, 46, 1) 68.59%,
        rgba(98, 92, 40, 1) 83.37%,
        rgba(43, 38, 33, 1) 98.06%,
        rgba(35, 31, 32, 1) 99.94%
      );
      clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
      z-index: -1;
    }
  }
}
@media only screen and (max-width: 1024px) {
  .c-main__recruit-message p {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__recruit-message p {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__recruit-message p {
    font-size: 1.8rem;
  }
}
.c-main__recruit-btn-wrap {
  -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-top: 52px;
}
@media only screen and (max-width: 767px) {
  .c-main__recruit-btn-wrap {
    margin-top: 90px;
    width: 100%;
  }
}
.c-main__news {
  padding: 73px 0 94px;
  background: linear-gradient(
    90deg,
    rgba(229, 226, 223, 1) 0%,
    rgba(214, 211, 208, 1) 4.38%,
    rgba(176, 172, 169, 1) 12.76%,
    rgba(167, 163, 160, 1) 14.61%,
    rgba(224, 225, 226, 1) 52.25%,
    rgba(211, 211, 211, 1) 62.46%,
    rgba(178, 175, 172, 1) 81.98%,
    rgba(167, 163, 160, 1) 87.64%,
    rgba(209, 211, 212, 1) 100%,
    rgba(167, 169, 172, 1) 100%
  );
  overflow: hidden;

  .c-main__work-title {
    color: black;
  }
  .c-main__visual-button {
    &::before {
      background-color: black;
    }
    &::after {
      border: 1px solid black;
    }
  }
  .c-main__visual-button {
    background: rgba(181, 182, 184, 0.69);
    .c-main__visual-button-text {
      color: black;
    }
  }
}
@media only screen and (max-width: 767px) {
  .c-main__news {
    /* margin-top: 90px; */
  }
}
.c-main__news-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.c-main__news-list {
  border-top: 1px solid #919396;
  margin-top: -33px;
  margin-bottom: 113px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-main__news-list {
    margin-bottom: -40px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__news-list {
    margin-top: -55px;
  }
}
.c-main__news-item {
  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: 28px;
  padding: 14px 0;
  border-bottom: 1px solid #919396;
  text-decoration: none;
}
@media only screen and (max-width: 516px) {
  .c-main__news-item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-main__news-thumb {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 175px;
  -ms-flex: 0 0 175px;
  flex: 0 0 175px;
  display: block;
}
.c-main__news-content {
  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;
  color: #231f20;
}
@media only screen and (max-width: 516px) {
  .c-main__news-content {
    width: 100%;
  }
}
.c-main__news-meta {
  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: 24px;
}
.c-main__news-date {
  font-weight: 500;
  color: #231f20;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  line-height: calc(32.16 / 14);
  letter-spacing: 1.4px;
  color: #231f20;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings:
    "wght" 700,
    "wdth" 90,
    "slnt" 0;
}
.c-main__news-category {
  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;
  height: 19.3px;
  padding: 0 10px;
  background: #231f20;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: calc(44 / 11);
  color: #ffffff;
}
.c-main__news-text {
  font-weight: 700;
  color: #231f20;
  font-size: 1.6rem;
  line-height: calc(44 / 16);
  letter-spacing: 0.96px;
  color: #231f20;
  margin-top: -10px;
}

.c-main__side {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 30;
  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;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 80px;
  background: #131311;
}
@media only screen and (max-width: 1024px) {
  .c-main__side {
    width: 60px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__side {
    right: 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__side {
    scale: 0.9;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    top: 20%;
  }
  .c-main__side.is-open {
    top: 50%;
  }
}
.c-main__menu-box {
  border: none;
  cursor: pointer;
  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;
  -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;
  gap: 5px;
  background: #e1b628;
  padding: 15px 20px 10px;
}
.c-main__menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 6px;
}
.c-main__menu-grid span {
  display: block;
  width: 6px;
  height: 6px;
  background: #111111;
}
.c-main__menu-text {
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.2px;
  color: #231f20;
}
.c-main__contact-box {
  color: #ffffff;
  text-decoration: none;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 32px;
  gap: 14px;
}
.c-main__contact-icon {
  width: 25.3px;
}
.c-main__contact-icon img {
  width: 100%;
  display: block;
}
.c-main__contact-text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 1.64px;
}
.c-main__social {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 37px 0 39px;
  gap: 25px;
  position: relative;
}
.c-main__social::before {
  content: "";
  width: 39px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 3px;
}
.c-main__social-link {
  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;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
}
.c-main__social-link--line img {
  width: 28px;
  display: block;
}
.c-main__social-link--instagram img {
  width: 24px;
  display: block;
}
.c-main__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 19;
}
.c-main__drawer-close {
  position: absolute;
  top: 20px;
  right: 110px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
}
.c-main__drawer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .c-main__overlay {
  opacity: 1;
  visibility: visible;
}

body.is-menu-open .c-main__drawer {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.c-main__drawer {
  position: fixed;
  top: 50%;
  right: 80px;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  z-index: 20;
  width: 292px;
  background: #e1b628;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: -28px;
}
@media only screen and (max-width: 1024px) {
  .c-main__drawer {
    right: 0;
    margin-top: -4px;
  }
}
@media only screen and (max-width: 767px) {
  .c-main__drawer {
    margin-top: -44px;
    width: 240px;
  }
}
@media only screen and (max-width: 516px) {
  .c-main__drawer {
    scale: 0.8;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
  }
}

.c-main__drawer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-main__drawer-item {
  border-top: 1px solid #000;
}

.c-main__drawer-item:last-child {
  border-bottom: 1px solid #000;
}

.c-main__drawer-item a {
  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;
  padding: 18px 43px;
  text-decoration: none;
  background: #e1b628;
  font-size: 2.7rem;
  letter-spacing: 1.08px;
  color: #000000;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .c-main__drawer-item a {
    padding: 15px 35px;
    font-size: 2rem;
  }
}

body.is-menu-open .c-main__drawer {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width: 1024px) {
  body.is-menu-open .c-main__drawer {
    right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  body.is-menu-open .c-main__drawer {
    right: 73px;
  }
}

.c-main__menu-box {
  position: relative;
}

.c-main__menu-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 6px;
  width: 30px;
  height: 30px;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.c-main__menu-grid span {
  display: block;
  width: 6px;
  height: 6px;
  background: #111111;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.c-main__menu-box::before,
.c-main__menu-box::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #111111;
  -webkit-transform: translateX(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.c-main__menu-box::after {
  -webkit-transform: translateX(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
}

.c-main__menu-box.is-open .c-main__menu-grid {
  opacity: 0;
}

.c-main__menu-box.is-open::before {
  opacity: 1;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.c-main__menu-box.is-open::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.c-main__menu-text--close {
  display: none;
}

.c-main__menu-box.is-open .c-main__menu-text--menu {
  display: none;
}

.c-main__menu-box.is-open .c-main__menu-text--close {
  display: inline;
}

@media (max-width: 1024px) {
  .c-main__contact-box,
  .c-main__social {
    display: none;
  }
  .c-main__side.is-open .c-main__contact-box,
  .c-main__side.is-open .c-main__social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #131311;
  }
  .c-main__side.is-open .c-main__contact-box {
    padding-top: 24px;
    gap: 12px;
  }
  .c-main__side.is-open .c-main__social {
    padding: 24px 0;
    gap: 20px;
  }
}
/* .c-cases */
/* .c-main__work-list */
.c-cases {
  padding: 0 20px;
}
.c-cases .c-main__work-list {
  margin: 104px auto 79px;
  gap: 76px 30px;
}
@media only screen and (max-width: 1024px) {
  .c-cases .c-main__work-list {
    gap: 50px 30px;
    margin: 104px auto 60px;
  }
}
@media only screen and (max-width: 516px) {
  .c-cases .c-main__work-list {
    gap: 30px 20px;
    margin: 104px auto 0;
  }
}
.c-cases .c-main__work-text {
  margin: 10px 0 0;
}

.c-cases .l-container {
  width: 86.5%;
  margin: 51px auto;
  max-width: 1200px;
}

.c-cases__article {
  width: 100%;
}

.c-cases__category {
  margin-bottom: 47px;
}

.c-cases__category-label {
  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;
  padding: 11px 18px;
  background: #e1b628;
  font-size: 2.7rem;
  letter-spacing: 1.08px;
  color: #000000;
  line-height: 1.2;
  background: #e1b628;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.8px;
  color: #231f20;
}

.c-cases__main {
  position: relative;
  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;
}

.c-cases__main-image {
  width: 100%;
  aspect-ratio: 1185/546;
  overflow: hidden;
  background: #111;
}

.c-cases__main-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-cases__arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.c-cases__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border-top: 4px solid #2c262d;
  border-right: 4px solid #2c262d;
}

.c-cases__arrow--prev {
  left: -50px;
}

.c-cases__arrow--prev::before {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.c-cases__arrow--next {
  right: -62px;
}

.c-cases__arrow--next::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-cases__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.c-cases__thumb {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.72;
  -webkit-transition:
    opacity 0.25s ease,
    -webkit-transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    -webkit-transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    -webkit-transform 0.25s ease;
}

.c-cases__thumb.is-active,
.c-cases__thumb:hover {
  opacity: 1;
}

.c-cases__thumb img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-cases__info {
  margin-top: 84px;
  border-bottom: 1px solid;
  max-width: 494.65px;
}

.c-cases__period-row {
  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: 60px;
  padding-bottom: 13px;
}

.c-cases__period-label,
.c-cases__period-value {
  color: #1f1b20;
  line-height: 1.5;
  font-weight: 500;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 1.2px;
}

.c-cases__period-value {
  font-weight: 400;
}

.c-cases__content {
  margin-top: 34px;
}

.c-cases__content p {
  margin: 0;
  font-size: 2.7rem;
  letter-spacing: 1.08px;
  line-height: 1.8;
  color: #1f1b20;
  font-size: 2rem;
  color: #231f20;
}

.c-main__header.cases {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .c-main__header.cases {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
@media only screen and (max-width: 767px) {
  /* ===== trạng thái đóng menu ===== */
  .c-main__side {
    position: fixed;
    top: 70px;
    right: 0;
    width: 74px;
    height: auto; /* không kéo full màn hình nữa */
    z-index: 120;
    display: flex;
    flex-direction: column;
    transform: none !important;
    -webkit-transform: none !important;
    scale: 1 !important;
    background: transparent; /* bỏ nền đen dài */
    overflow: hidden;
    transition:
      top 0.35s ease,
      height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      background-color 0.3s ease,
      box-shadow 0.3s ease;
  }

  /* chỉ giữ box menu khi chưa mở */
  .c-main__side .c-main__contact-box,
  .c-main__side .c-main__social {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
  }

  .c-main__menu-box {
    width: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
      background-color 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease;
  }

  .c-main__menu-grid {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .c-main__menu-text {
    transition:
      opacity 0.25s ease,
      transform 0.3s ease;
  }

  .c-main__menu-text--menu {
    opacity: 1;
    transform: translateY(0);
  }

  .c-main__menu-text--close {
    opacity: 0;
    transform: translateY(6px);
  }

  /* ===== trạng thái mở menu ===== */
  .c-main__side.is-open {
    top: 0;
    right: 0;
    width: 74px;
    height: 100vh; /* mở menu mới full màn hình */
    background: #131311;
    display: flex;
    flex-direction: column;
    transform: none !important;
    -webkit-transform: none !important;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18);
  }

  .c-main__side.is-open .c-main__menu-grid {
    transform: rotate(90deg) scale(0.92);
  }

  .c-main__side.is-open .c-main__menu-text--menu {
    opacity: 0;
    transform: translateY(-6px);
  }

  .c-main__side.is-open .c-main__menu-text--close {
    opacity: 1;
    transform: translateY(0);
  }

  .c-main__side.is-open .c-main__contact-box,
  .c-main__side.is-open .c-main__social {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    animation: sideFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.18s;
  }

  .c-main__side.is-open .c-main__contact-box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .c-main__side.is-open .c-main__social {
    width: 100%;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  /* ===== drawer ===== */
  .c-main__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100vw - 74px);
    height: 100vh;
    margin-top: 0 !important;
    z-index: 110;
    overflow-y: auto;
    scale: 1 !important;

    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    -webkit-transform: translateX(40px);
    transition:
      transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      -webkit-transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      visibility 0s linear 0.48s;
  }

  body.is-menu-open .c-main__drawer {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    transition:
      transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      -webkit-transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease,
      visibility 0s;
  }

  .c-main__drawer-list {
    display: flex;
    flex-direction: column;
  }

  .c-main__drawer-item {
    opacity: 0;
    transform: translateX(22px);
    transition:
      opacity 0.4s ease,
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.is-menu-open .c-main__drawer-item {
    opacity: 1;
    transform: translateX(0);
  }

  body.is-menu-open .c-main__drawer-item:nth-child(1) {
    transition-delay: 0.08s;
  }

  body.is-menu-open .c-main__drawer-item:nth-child(2) {
    transition-delay: 0.14s;
  }

  body.is-menu-open .c-main__drawer-item:nth-child(3) {
    transition-delay: 0.2s;
  }

  body.is-menu-open .c-main__drawer-item:nth-child(4) {
    transition-delay: 0.26s;
  }

  body.is-menu-open .c-main__drawer-item:nth-child(5) {
    transition-delay: 0.32s;
  }

  .c-main__drawer-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition:
      background-color 0.25s ease,
      letter-spacing 0.25s ease,
      transform 0.25s ease;
  }

  .c-main__drawer-item a:hover {
    transform: translateX(-4px);
    letter-spacing: 0.04em;
  }

  .c-main__overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s ease,
      background 0.35s ease,
      visibility 0s linear 0.35s;
  }

  body.is-menu-open .c-main__overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.28);
    transition:
      opacity 0.35s ease,
      background 0.35s ease,
      visibility 0s;
  }
}

@media only screen and (max-width: 516px) {
  .c-main__side,
  .c-main__side.is-open,
  .c-main__drawer,
  body.is-menu-open .c-main__drawer {
    scale: 1 !important;
    margin-top: 0 !important;
    border-right: 1px solid;
  }

  .c-main__side {
    top: 70px !important;
    height: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
  }

  .c-main__side.is-open {
    top: 0 !important;
    height: 100vh !important;
  }

  .c-main__drawer {
    width: calc(100vw - 74px) !important;
    transform: translateX(40px) !important;
    -webkit-transform: translateX(40px) !important;
  }

  body.is-menu-open .c-main__drawer {
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
  }
}

@keyframes sideFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-main__overlays.is-pc {
  display: block;
}

.c-main__overlays.is-sp {
  display: none;
}

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

  .c-main__overlays.is-sp {
    display: block;
  }
}
/* ===== SCROLL ANIMATIONS ===== */

/* Base state - ẩn trước khi xuất hiện */
.js-fade-up,
.js-fade-left,
.js-fade-right,
.js-fade-in,
.js-zoom-in {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js-fade-up {
  transform: translateY(60px);
}
.js-fade-left {
  transform: translateX(-60px);
}
.js-fade-right {
  transform: translateX(60px);
}
.js-fade-in {
  transform: none;
}
.js-zoom-in {
  transform: scale(0.85);
}

/* Trạng thái sau khi xuất hiện */
.js-fade-up.is-visible,
.js-fade-left.is-visible,
.js-fade-right.is-visible,
.js-fade-in.is-visible,
.js-zoom-in.is-visible {
  opacity: 1;
  transform: none;
}

/* Delay stagger cho các phần tử con */
.js-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.js-stagger > *:nth-child(2) {
  transition-delay: 0.15s;
}
.js-stagger > *:nth-child(3) {
  transition-delay: 0.3s;
}
.js-stagger > *:nth-child(4) {
  transition-delay: 0.45s;
}

/* Hero text overlay */
.c-main__copy {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease 0.5s,
    transform 1s ease 0.5s;
}
.c-main__copy.is-visible {
  opacity: 1;
  transform: none;
}

/* Intro section - bg logo xoay nhẹ */
.c-main__intro-bg-logo {
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}
.c-main__intro-bg-logo.is-visible {
  opacity: 0.15; /* giữ opacity mờ theo design */
  transform: scale(1) rotate(0deg);
}

/* Visual section overlay */
.c-main__visual-word {
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 1s ease 0.3s,
    transform 1s ease 0.3s;
  /* letter-spacing: 0.1em; */
}
.c-main__visual-word.is-visible {
  opacity: 1;
  transform: none;
}
#js-loader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

#js-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader__inner img {
  width: 160px;
}
.loader__spinner {
  width: 45px;
  height: 45px;
  position: relative;
  display: inline-block;
}

.loader__spinner .bar {
  position: absolute;
  width: 4px;
  height: 11px;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  margin-left: -2px;
  margin-top: -6px;
  opacity: 0.15;
  animation: bar-fade 1.3s linear infinite;
}

.loader__spinner .bar:nth-child(1) {
  transform: rotate(0deg) translateY(-19px);
  background: rgb(255, 107, 0);
  animation-delay: -1.2s;
}
.loader__spinner .bar:nth-child(2) {
  transform: rotate(27.69deg) translateY(-19px);
  background: rgb(255, 116, 0);
  animation-delay: -1.1s;
}
.loader__spinner .bar:nth-child(3) {
  transform: rotate(55.38deg) translateY(-19px);
  background: rgb(255, 124, 0);
  animation-delay: -1s;
}
.loader__spinner .bar:nth-child(4) {
  transform: rotate(83.08deg) translateY(-19px);
  background: rgb(255, 133, 0);
  animation-delay: -0.9s;
}
.loader__spinner .bar:nth-child(5) {
  transform: rotate(110.77deg) translateY(-19px);
  background: rgb(255, 141, 0);
  animation-delay: -0.8s;
}
.loader__spinner .bar:nth-child(6) {
  transform: rotate(138.46deg) translateY(-19px);
  background: rgb(255, 150, 0);
  animation-delay: -0.7s;
}
.loader__spinner .bar:nth-child(7) {
  transform: rotate(166.15deg) translateY(-19px);
  background: rgb(255, 158, 0);
  animation-delay: -0.6s;
}
.loader__spinner .bar:nth-child(8) {
  transform: rotate(193.85deg) translateY(-19px);
  background: rgb(255, 167, 0);
  animation-delay: -0.5s;
}
.loader__spinner .bar:nth-child(9) {
  transform: rotate(221.54deg) translateY(-19px);
  background: rgb(255, 175, 0);
  animation-delay: -0.4s;
}
.loader__spinner .bar:nth-child(10) {
  transform: rotate(249.23deg) translateY(-19px);
  background: rgb(255, 184, 0);
  animation-delay: -0.3s;
}
.loader__spinner .bar:nth-child(11) {
  transform: rotate(276.92deg) translateY(-19px);
  background: rgb(255, 192, 0);
  animation-delay: -0.2s;
}
.loader__spinner .bar:nth-child(12) {
  transform: rotate(304.62deg) translateY(-19px);
  background: rgb(255, 201, 0);
  animation-delay: -0.1s;
}
.loader__spinner .bar:nth-child(13) {
  transform: rotate(332.31deg) translateY(-19px);
  background: rgb(255, 208, 0);
  animation-delay: 0s;
}

@keyframes bar-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.15;
  }
}
.loader__text {
  color: rgb(255, 107, 0);
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  margin-top: -15px;
  display: flex;
}
.loader__text span {
  display: flex;

  margin-top: 3px;
}
/* ── Tất cả slide: có animation nhưng tạm dừng ── */
.js-hero-slick .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;

  /* Paused sẵn, chạy liên tục khi được kích hoạt */
  animation: kenburns 10s ease-in-out infinite;
  animation-play-state: paused;
}

/* ── Slide đang hiển thị: cho animation chạy ── */
.js-hero-slick .slick-slide.slick-current img {
  animation-play-state: running;
}

/* ── Ken Burns loop: zoom ra rồi zoom vào liên tục ── */
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-1%, -1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  } /* về điểm đầu → loop mượt */
}

@media only screen and (max-width: 1024px) {
  .c-cases__arrow--prev {
    left: -50px;
  }
  .c-cases__arrow--next {
    right: -50px;
  }
  .c-cases__content p {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-cases__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  .c-single__inner {
    margin: 90px auto 0;
  }
  .c-single__meta {
    margin-bottom: 10px;
  }
  .c-single .c-main__pagenavi {
    margin: 45px auto 0;
    max-width: 310px;
  }
  .c-cases .l-container:nth-child(2) {
    width: 100%;
  }
  .c-cases__content p {
    font-size: 1.6rem;
  }
  .c-cases__arrow::before {
    width: 21px;
    height: 21px;
  }
  .c-cases__arrow--prev {
    left: -38px;
  }
  .c-cases__arrow--next {
    right: -43px;
  }
  .c-cases__category-label,
  .c-cases__period-label,
  .c-cases__period-value {
    font-size: 1.8rem;
  }
  .c-cases__period-row {
    gap: 40px;
  }
  .c-cases__content {
    margin-top: 25px;
  }
  .c-cases__info {
    margin-top: 65px;
  }
}

@media only screen and (max-width: 516px) {
  .c-cases__arrow::before {
    width: 18px;
    height: 18px;
    border-top: 3px solid #2c262d;
    border-right: 3px solid #2c262d;
  }
  .c-cases__arrow--prev {
    left: -38px;
  }
  .c-cases__arrow--next {
    right: -38px;
  }
  .c-cases__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 15px;
  }
  .c-cases__period-label,
  .c-cases__period-value {
    font-size: 1.6rem;
  }
  .c-cases__period-row {
    gap: 20px;
  }
  .c-cases__content {
    margin-top: 20px;
  }
  .c-cases__info {
    margin-top: 0;
  }
}
.c-main__concept-arial {
  font-family: "arial", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: #e1b628;
  text-align: center;
  letter-spacing: 4.5px;
  @media only screen and (max-width: 767px) {
    font-size: 3rem;
  }
  @media only screen and (max-width: 516px) {
    letter-spacing: 1.5px;
  }
  &.left {
    text-align: left;
  }
}
.scroll-container {
  position: absolute;
  left: -57px;
  top: 39%;
  /* transform: translateY(-50%); */
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  color: #dfbb29; /* màu vàng như hình */
}

.scroll-text {
  writing-mode: vertical-rl;
  /* text-orientation: upright; */
  font-weight: bold;
  margin-bottom: 7px;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: bold;
  font-size: 11px;
  font-family: "arial", sans-serif;
}

.scroll-line {
  position: relative;
  width: 1px;
  height: 200px;
  background-color: #d4af37;
  border-radius: 1px;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #d4af37;
  border-radius: 50%;
  animation: moveDot 2s linear infinite alternate;
}

@keyframes moveDot {
  0% {
    top: 0;
  }
  100% {
    top: calc(100% - 12px);
  }
}
.c-main__overlays {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.c-main__overlays video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; /* đảm bảo cover chiều rộng */
  height: 100%; /* đảm bảo cover chiều cao */
  object-fit: cover; /* giữ tỉ lệ, không méo */
  transform: translate(-50%, -50%);
}
.c-main__wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.drop-container {
  position: absolute;
  max-width: 1200px; /* chỉnh theo màn hình */
  /* height: 950px; */
  z-index: 2;
  /* height: auto; */
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 94.96px);
  overflow: hidden;
  @media only screen and (max-width: 1024px) {
    top: 50%;
    height: 50vh;
    /* scale: 1.5; */
    transform-origin: left top;
    transform: translateY(-50%);
  }
  @media only screen and (max-width: 767px) {
    height: 43vh;
  }
  @media only screen and (max-width: 516px) {
    height: 27vh;
    scale: 1.5;
    max-width: 369px;
  }
}
.drop-item {
  position: absolute;
  opacity: 0;
}

.drop-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Vị trí từng blur - chỉnh lại theo layout thực tế của bạn */
.drop-item--1 {
  top: 43.5%;
  left: -12%;
  width: 33%;
}

.drop-item--2 {
  top: 5.5%;
  left: 6.5%;
  width: 37%;
}

.drop-item--3 {
  top: -3.5%;
  left: -14.5%;
  width: 42%;
}

/* Chỉ khi video chạy mới bắt đầu animation */
.drop-container.is-animate .drop-item--1 {
  animation: dropIn 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0s;
}

.drop-container.is-animate .drop-item--2 {
  animation: dropIn 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.3s;
}

.drop-container.is-animate .drop-item--3 {
  animation: dropIn 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.6s;
}

@keyframes dropIn {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  70% {
    transform: translateY(15px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.c-main__copy.is-hide-now {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(30px) !important;
  transition: none !important;
  pointer-events: none !important;
}
.c-main__phil {
  background-image: url("../images/index/construction.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1px 0;
  overflow: hidden;
}
.l-main {
  overflow: hidden;
}
.c-header__lang.sp {
  display: none;
  @media only screen and (max-width: 516px) {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}

.c-recruits {
  /* padding: 6px 0 60px; */
  kground-color: #000;
  /* color: #111; */
  /* font-family:
    "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif; */
}

.c-recruits__inner {
  /* width: min(100% - 16px, 1260px); */
  margin: 0 auto;
}

.c-recruits__box {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #231F20;
  /* border-radius: 1px; */
  box-shadow: 2px 2px 3px rgba(57, 59, 31, 0.27);
}

.c-recruits__title {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 150px; */
  margin: 0;
  padding: 35px 20px;
  background-color: #e8b91d;
  border-bottom: 1px solid #111;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: #E1B628;
  font-weight: bold;
  font-size : 29px;
  letter-spacing : 4.64px;
  color : #231F20;
  
@media only screen and (max-width: 1024px) {
      font-size: 25px;
}

}

.c-recruits__list {
  margin: 0;
}

.c-recruits__row {
  display: grid;
  grid-template-columns: 243px 1fr;
  min-height: 105px;
  border-bottom: 1px solid #111;
  
@media only screen and (max-width: 1024px) {
      grid-template-columns: 222px 1fr;
}

}

.c-recruits__row:last-child {
  border-bottom: 0;
}

.c-recruits__label,
.c-recruits__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 24px 49px;
  line-height: 1.7;
  
@media only screen and (max-width: 1024px) {
    padding: 24px 30px;
}

}

.c-recruits__label {
  align-items: center;
  border-right: 1px solid #111;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  font-weight: bold;
  font-size : 18px;
  color : #231F20;
  
@media only screen and (max-width: 767px) {
 text-align:center;   
}

}

.c-recruits__content {
  font-size: 17px;
  font-weight: 500;
  font-size: 14px;
  color : #231F20;
}

.c-recruits__actions {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 74px;
  max-width: 718px;
  margin: 74px auto 0;
}

.c-recruits__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  min-height: 69px;
  background-color: #080303;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  font-size: 20px;
  letter-spacing : 0.8px;
  color : #FFFFFF;
  background: #000000;
}

.c-recruits__button:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .c-recruits {
    /* padding-bottom: 32px; */
  }

  .c-recruits__inner {
    /* width: min(100% - 20px, 600px); */
  }

  .c-recruits__title {
    /* min-height: 68px; */
    font-size: 23px;
    padding: 20px 20px;

@media only screen and (max-width: 516px) {
      font-size: 20px;
}

  }

  .c-recruits__row {
    display: block;
    min-height: auto;
  }

  .c-recruits__label,
  .c-recruits__content {
    padding: 16px 18px;
  }

  .c-recruits__label {
    /* align-items: flex-start; */
    border-right: 0;
    border-bottom: 1px solid #111;
    background-color: #f6f6f6;
    font-size: 16px;
    text-align: center;
  }

  .c-recruits__content {
    font-size: 14px;
  }

  .c-recruits__actions {
    gap: 20px;
    margin-top: 32px;
    
@media only screen and (max-width: 516px) {
 flex-direction: column;max-width: 280px;   
}

  }

  .c-recruits__button {
    width: 100%;
    min-height: 60px;
    font-size: 17px;
  }
}
