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

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

html {
  font-size: 62.5%;
}

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

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

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

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

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

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

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

.wp-caption img {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-item2 {
  width: 503.17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.form-item3 {
  width: 336.17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

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

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

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

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

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

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

.mwform-checkbox-field label,
.mwform-radio-field label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-white {
  visibility: hidden;
}

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

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

@media only screen and (max-width: 576px) {
  .wpcf7-checkbox input {
    width: 20.1px;
    height: 20.1px;
  }
}
.form-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 20px;
  width: 100%;
}

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

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

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

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

.form-item:first-child {
  width: 191.36px;
  margin-right: 43px;
}

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

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

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

.form-red {
  margin-right: 15px;
  background: rgb(229, 0, 19);
  border-radius: 5px;
  font-size: 0.8rem;
  line-height: calc(32/8);
  color: #ffffff;
  width: 24.83px;
  height: 20.8px;
  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-left: 15px;
}

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

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

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

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

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

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

.form-input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Noto Sans JP, sans-serif;
  padding: 0 20px;
  height: 51.5px;
  width: 100%;
  border: 1px solid;
  font-size: 1.6rem;
  line-height: 2;
  /* border-radius: 4px; */
  max-width: 323.78px;
  background-color: white;
}

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

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

.form-note {
  font-size: 1.6rem;
  margin: 113px 0 76px;
  line-height: 2.7;
  letter-spacing: 1.5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-meta .wpcf7-list-item {
  margin: 0;
}

.contact-main2__text {
  margin: 60px 0;
  text-align: center;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}

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

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

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

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

.p-contact__btn__back {
  position: relative;
}

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

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

.contact-main2__link {
  position: relative;
}

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

.contact-main2__link input {
  font-weight: bold;
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
  position: relative;
  width: 218px;
  color: white;
  background-color: #e60013;
  background: #231916;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.7rem;
  letter-spacing: 1px;
}

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

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

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

.p-contact__btn__back {
  position: relative;
}

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

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

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

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

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

.form-item4 {
  width: 68%;
  max-width: 518px;
  margin-left: 4px;
}

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

@media only screen and (max-width: 516px) {
  .wpcf7-checkbox.form-choice {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

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

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

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

@media only screen and (max-width: 516px) {
  .wpcf7-list-item-label {
    letter-spacing: 1px;
    margin-left: 5px;
  }
}
.wpcf7-checkbox label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .form-item4 {
    margin-left: 0;
    width: 100%;
  }
  .form-item1 {
    width: 100%;
  }
  .form-meta {
    max-width: 448.24px;
  }
}
@media only screen and (max-width: 516px) {
  .form-item1 {
    max-width: 100%;
  }
}
.mw_wp_form_complete p {
  /* đã xoá rule, nếu cần thì bỏ luôn selector này khỏi file */
}

.mw_wp_form_confirm .p-contact__btn__back {
  /* đã xoá rule, selector giữ lại nếu lỡ còn trong HTML cũng không sao */
}

.mw_wp_form_confirm .contact-main2__link input {
  /* rule cũ đã xoá */
}

.contact-main2__link img {
  position: absolute;
  width: 7.13px;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

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

.wpcf7-form .wpcf7-radio input[type=radio] + span {
  /*   border: 3px solid red;  */
}

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

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

.wpcf7-form .wpcf7-radio input[type=radio]:checked + span:before {
  background: transparent;
  /*     border-color: red; */
}

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

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

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

@media only screen and (max-width: 1024px) {
  .c-header__recruit {
    width: 130.72px;
  }
}
@media only screen and (max-width: 767px) {
  .form-info {
    width: auto;
  }
}
@media only screen and (max-width: 516px) {
  .c-header__recruit {
    width: 115.72px;
    right: 5px;
  }
  .form-input.year {
    width: 90.71px;
  }
  .form-input.date {
    width: 50px;
    padding: 0 10px;
  }
}
.p-news__single__list__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 150px auto 0;
  position: relative;
}

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

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

.p-delivery__pagination .wp-pagenavi a,
.p-delivery__pagination .wp-pagenavi span {
  color: white;
  text-decoration: none;
  border: none;
  width: 37px;
  height: 37px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0px 4px;
  font-weight: 400 !important;
  font-size: 1.6rem;
  line-height: calc(31/16);
  letter-spacing: 1.6px;
  box-sizing: border-box;
  border: 1px solid white;
}

.pages {
  display: none !important;
}

.p-delivery__pagination {
  margin: 135px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.nextpostslink {
  display: none !important;
}

.previouspostslink {
  display: none !important;
}

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

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

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

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

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

.c-detail__pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 150px auto 0;
  max-width: 1050px;
  color: black;
}

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

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

main {
  overflow-x: hidden;
}

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

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

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

/* .c-header */
.c-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 127.8px;
  /* -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35); */
  /* box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35); */
  background: #040616;
}
@media only screen and (max-width: 1024px) {
  .c-header {
    height: 100.8px;
  }
}
@media only screen and (max-width: 516px) {
  .c-header {
    height: 84.8px;
  }
}
.c-header__inner {
  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;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 29px 0 11px;
  gap: 0;
}
@media only screen and (max-width: 1124px) {
  .c-header__inner {
    padding: 0 18px;
  }
}
.c-header__logo {
  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: 18px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-decoration: none;
  width: 40%;
}
@media only screen and (max-width: 1124px) {
  .c-header__logo {
    width: 35%;
    gap: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-header__logo {
    width: 80%;
  }
}
.c-header__logo-img {
  width: 121px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .c-header__logo-img {
    width: 95px;
  }
}
@media only screen and (max-width: 516px) {
  .c-header__logo-img {
    width: 75px;
  }
}
.c-header__logo-text {
  font-weight: bold;
  font-size: 2.1rem;
  letter-spacing: 4.2px;
  color: #ede18c;
  line-height: 1.2;
}
@media only screen and (max-width: 1124px) {
  .c-header__logo-text {
    font-size: 1.8rem;
    letter-spacing: 2.2px;
  }
}
@media only screen and (max-width: 516px) {
  .c-header__logo-text {
    letter-spacing: 0;
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 370px) {
  .c-header__logo-text {
    font-size: 1.4rem;
  }
}
.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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .c-header__nav {
    display: none;
  }
}
.c-header__nav-list {
  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;
  list-style: none;
  gap: 8px;
}
@media only screen and (max-width: 1124px) {
  .c-header__nav-list {
    gap: 25px;
  }
}
.c-header__nav-item {
  position: relative;
}
.c-header__nav-link {
  display: block;
  padding: 8px 18px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
  font-size: 1.5rem;
  color: #ffffff;
  font-family: "kozuka-gothic-pr6n", sans-serif;
}
@media only screen and (max-width: 1124px) {
  .c-header__nav-link {
    padding: 8px 0;
  }
}
.c-header__nav-link::after {
  content: "";
  display: block;
  height: 3.7px;
  background: transparent;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.c-header__nav-link:hover {
  color: #a8c4ff;
}
.c-header__nav-link:hover::after {
  background: #ffffff;
}
.c-header__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .c-header__actions {
    display: none;
  }
}
.c-header__btn-contact {
  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;
  background: #1a3a7c;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  width: 156px;
  height: 36px;
  border-radius: 6px;
  white-space: nowrap;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, -webkit-transform 0.15s;
  transition: background 0.2s, transform 0.15s;
  transition: background 0.2s, transform 0.15s, -webkit-transform 0.15s;
  font-size: 1.6rem;
  color: #ffffff;
  background: rgb(36, 29, 107);
  border-radius: 6px;
}
.c-header__btn-contact:hover {
  background: rgb(36, 29, 107);
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
@media (max-width: 600px) {
  .c-header__btn-contact {
    font-size: 1.2rem;
    padding: 8px 14px;
  }
}
.c-header__btn-line {
  width: 36px;
}
.c-header__hamburger {
  display: none;
  -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: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 200;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 1024px) {
  .c-header__hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-header__hamburger-line {
  display: block;
  width: 30px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.c-header__mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  background: #040616;
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .c-header__mobile-menu {
    display: block;
  }
}
@media only screen and (max-width: 516px) {
  .c-header__mobile-menu {
    top: 84px;
    height: calc(100vh - 84px);
  }
}
.c-header__mobile-menu.is-open {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.c-header__mobile-nav {
  padding: 32px 24px 40px;
  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: 32px;
}
.c-header__mobile-nav-list {
  list-style: 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;
  gap: 0;
}
.c-header__mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.c-header__mobile-nav-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.c-header__mobile-nav-link {
  display: inline-block;
  padding: 18px 4px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.c-header__mobile-nav-link:hover {
  color: #ede18c;
}
.c-header__mobile-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.c {
  /* Trạng thái khi mở — thêm class .is-open vào button */
}
.c-header__nav-item--active .c-header__nav-link::after {
  background: #ede18c;
}
.c-header__mobile-nav-item--active .c-header__mobile-nav-link {
  color: #ede18c;
}
.c-header__mobile-nav-item--active .c-header__mobile-nav-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #ede18c;
  margin-top: 4px;
}
.c-header__hamburger.is-open .c-header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
      -ms-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.c-header__hamburger.is-open .c-header__hamburger-line:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}
.c-header__hamburger.is-open .c-header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
      -ms-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

/* .c-footer */
.c-footer__container {
  padding: 0 20px;
  position: relative;
}
.c-footer__pagetop {
  position: absolute;
  right: 31px;
  bottom: -21px;
  width: 46.65px;
  height: 46.65px;
  background: #1a1a3e;
  border-radius: 50%;
  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;
  color: #ffffff;
  z-index: 10;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  background: #3e3a39;
}
.c-footer__pagetop svg {
  width: 34px;
  height: 34px;
}
.c-footer__pagetop:hover {
  background: #2a2a5e;
}
.c-footer__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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 55px 0 40px;
  gap: 40px;
  max-width: 1167px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-footer__info {
  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: 20px;
}
.c-footer__info .c-header__logo {
  width: 100%;
}
.c-footer__address {
  font-style: normal;
  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;
  font-size: 1.5rem;
  line-height: calc(22/15);
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-left: 56px;
}
@media only screen and (max-width: 1024px) {
  .c-footer__address {
    margin-left: 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__address {
    letter-spacing: 0;
  }
}
.c-footer__contact {
  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: 12px;
  max-width: 320px;
  margin-top: 45px;
  margin-right: 53px;
}
@media only screen and (max-width: 1024px) {
  .c-footer__contact {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__contact {
    margin-top: 0;
  }
}
.c-footer__contact-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 2.4rem;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .c-footer__contact-title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__contact-title {
    font-size: 1.8rem;
  }
}
.c-footer__contact-text {
  color: #aab0cc;
  line-height: 1.3;
  font-size: 1.2rem;
  color: #ffffff;
  margin: -10px 0 6px;
}
.c-footer__contact-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;
  background: #1a3a7c;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  /* padding: 10px 28px; */
  border-radius: 6px;
  text-decoration: none;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  font-size: 1.3rem;
  color: #ffffff;
  background: rgb(36, 29, 107);
  border-radius: 2px;
  width: 103px;
  height: 23.68px;
}
.c-footer__contact-btn:hover {
  background: #244fa8;
}
.c-footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  color: #f7f7f7;
  max-width: 1155px;
  margin: 161px auto 63px;
}
@media (max-width: 1024px) {
  .c-footer__bottom {
    margin: 70px auto 63px;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__bottom {
    margin: 40px auto 63px;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__bottom {
    margin: 10px auto 40px;
  }
}
.c-footer__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 100;
  width: 100%;
  background: #241d6b;
  padding: 5px 0;
  height: 64px;
  border-top: 1px solid white;
}
@media only screen and (max-width: 516px) {
  .c-footer__cta {
    height: 56px;
  }
}
.c-footer__cta-line {
  -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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  border-right: 1px solid;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "wght" 500, "wdth" 90, "slnt" 0;
  font-size: 3rem;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .c-footer__cta-line {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__cta-line {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__cta-line {
    font-size: 2rem;
  }
}
.c-footer__cta-mail {
  -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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  font-size: 1.8rem;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .c-footer__cta-mail {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-footer__cta-mail {
    font-size: 1.4rem;
    letter-spacing: 0;
    gap: 10px;
  }
}
.c-footer__cta-icon {
  width: 26.6px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media only screen and (max-width: 516px) {
  .c-footer__cta-icon {
    width: 20.6px;
  }
}

/* .c-header__logo */
.c-footer__map {
  position: relative;
  width: 100%;
}
.c-footer__map-img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-footer__pagetop {
  position: absolute;
  right: 31px;
  top: -21px;
  width: 46.65px;
  height: 46.65px;
  background: #1a1a3e;
  border-radius: 50%;
  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;
  color: #ffffff;
  z-index: 10;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  background: #3e3a39;
}
@media only screen and (max-width: 516px) {
  .c-footer__pagetop {
    right: 20px;
  }
}
.c-footer__pagetop svg {
  width: 34px;
  height: 34px;
}
.c-footer__pagetop:hover {
  background: #2a2a5e;
}

/* .c-single */
.c-single__content.service {
  max-width: 1100px;
}
.c-single__content.service .c-single__body {
  max-width: 898px;
  margin: 0 auto;
}
.c-single__service {
  background: #eec67a;
  background: rgb(238, 198, 122);
  border-radius: 17px;
  font-size: 2.8rem;
  color: #231916;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1024px) {
  .c-single__service {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-single__service {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-single__service {
    font-size: 1.8rem;
  }
}
/* .c-subpage */
/* .c-single */
/* .c-subpage */
/* .c-single */
.c-single__content {
  max-width: 1022px;
  margin: 0 auto;
  color: white;
}
.c-single__title {
  font-size: 1.8rem;
  letter-spacing: 3.6px;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .c-single__title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .c-single__title {
    letter-spacing: 1.6px;
  }
}
@media only screen and (max-width: 516px) {
  .c-single__title {
    letter-spacing: 0;
  }
}
.c-single__body {
  font-size: 1.5rem;
}
.c-single__body img {
  margin: 30px 0;
}
.c-single__body h1,
.c-single__body h2,
.c-single__body h3 {
  font-size: 1.8rem;
  color: #ede18c;
  height: 57.3px;
  padding: 0 20px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .c-single__body h1,
  .c-single__body h2,
  .c-single__body h3 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 516px) {
  .c-single__body h1,
  .c-single__body h2,
  .c-single__body h3 {
    padding: 0 10px;
    height: 45.3px;
  }
}
.c-single__body h1 {
  background: #ede18c;
  height: 57.3px;
  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;
  color: #231916;
}
.c-single__body h2 {
  border-bottom: 2px solid #ede18c;
  border-left: 5px solid #ede18c;
}
.c-single__body h3 {
  border-bottom: 2px solid #ede18c;
}

/* .c-subpage */
/* .l-main */
/* .c-slide */
/* .c-intro */
.c-intro {
  position: relative;
  width: 100%;
  /* min-height: 640px; */
  /* background-color: #090d1f; */
  /* overflow: hidden; */
  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;
  z-index: 2;
  margin: 0 auto;
  max-width: 1600px;
}
.c-intro__line-top {
  position: absolute;
  top: 35px;
  right: 0;
  max-width: 161px;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .c-intro__line-top {
    width: 15%;
  }
}
.c-intro__line-bot {
  position: absolute;
  bottom: -39px;
  left: 0;
  max-width: 158px;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .c-intro__line-bot {
    width: 15%;
  }
}
.c-intro__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: contain;
  pointer-events: none;
  max-width: 665px;
  left: 49.5%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 6;
  top: 15%;
  width: 100%;
}
.c-intro__char-man {
  position: absolute;
  left: 27px;
  top: -27px;
  width: 328px;
  pointer-events: none;
}
@media only screen and (max-width: 1124px) {
  .c-intro__char-man {
    left: 0;
    width: 29%;
  }
}
@media only screen and (max-width: 1024px) {
  .c-intro__char-man {
    left: -6%;
  }
}
@media only screen and (max-width: 767px) {
  .c-intro__char-man {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 516px) {
  .c-intro__char-man {
    width: 35%;
  }
}
.c-intro__char-women {
  position: absolute;
  right: 16px;
  bottom: 0;
  max-width: 307px;
  pointer-events: none;
}
@media only screen and (max-width: 1124px) {
  .c-intro__char-women {
    right: 0;
    width: 28%;
  }
}
@media only screen and (max-width: 1024px) {
  .c-intro__char-women {
    right: -4%;
  }
}
@media only screen and (max-width: 767px) {
  .c-intro__char-women {
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media only screen and (max-width: 516px) {
  .c-intro__char-women {
    width: 34%;
  }
}
.c-intro__content {
  position: relative;
  z-index: 1;
  /* margin-left: 27%; */
  /* max-width: 480px; */
  padding: 76px 0 224px;
}
@media only screen and (max-width: 1024px) {
  .c-intro__content {
    padding: 76px 0 124px;
  }
}
@media only screen and (max-width: 767px) {
  .c-intro__content {
    padding: 39% 0 41%;
  }
}
@media only screen and (max-width: 516px) {
  .c-intro__content {
    padding: 39% 0 48%;
  }
}
.c-intro__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 42px;
  white-space: nowrap;
  font-size: 2.9rem;
  line-height: calc(64.35/29);
  color: #ffffff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .c-intro__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .c-intro__title {
    font-size: 2rem;
    white-space: normal;
  }
}
@media only screen and (max-width: 516px) {
  .c-intro__title {
    font-size: 1.8rem;
    white-space: normal;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .c-intro__title span {
    width: 100%;
    text-align: center;
  }
}
.c-intro__title-star {
  height: 45px;
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -15px;
}
@media only screen and (max-width: 516px) {
  .c-intro__title-star {
    height: 30px;
    margin-right: auto;
    padding: 0 10px;
  }
}
.c-intro__title-star:last-child {
  margin-top: -9px;
  height: 38px;
  margin-left: -15px;
}
@media only screen and (max-width: 516px) {
  .c-intro__title-star:last-child {
    height: 30px;
    margin-left: auto;
    margin-right: unset;
  }
}
.c-intro__body {
  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;
  max-width: 460.34px;
  margin: 0 auto;
  padding: 0 20px;
}
.c-intro__body p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  line-height: 36px;
  color: #ffffff;
}

/* .c-service */
.c-service {
  position: relative;
  /* background-color: #090d1f; */
  padding: 22px 20px 119px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-service {
    padding: 80px 20px;
  }
}
.c-service__title {
  text-align: center;
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  /* margin-bottom: 60px; */
  font-family: "kozuka-gothic-pro", sans-serif;
  font-size: 3.3rem;
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .c-service__title {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-service__title {
    font-size: 2.5rem;
  }
}
.c-service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 47px 60px;
  max-width: 1023px;
  margin: 71px auto;
}
@media only screen and (max-width: 1024px) {
  .c-service__grid {
    gap: 30px;
    margin: 71px auto 143px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__grid {
    margin: 50px auto 26%;
  }
}
@media (max-width: 516px) {
  .c-service__grid {
    grid-template-columns: 1fr;
  }
}
.c-service__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  /* -webkit-align-items: center; */
  -ms-flex-align: center;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  gap: 23px;
  background-color: #d4a843;
  border-radius: 12px;
  padding: 16px;
  background: rgb(238, 198, 122);
  border-radius: 13px;
  border-radius: 13px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .c-service__card {
    gap: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__card {
    gap: 10px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.c-service__card-img {
  width: 161px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 13px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .c-service__card-img {
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__card-img {
    width: 160px;
    margin: 0 auto;
  }
}
.c-service__card-body {
  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: 8px;
}
@media only screen and (max-width: 516px) {
  .c-service__card-body {
    width: 100%;
  }
}
.c-service__card-name {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 2rem;
  color: #040616;
  margin: 8px 0 -2px;
}
@media only screen and (max-width: 1024px) {
  .c-service__card-name {
    margin: 8px 0 -8px;
    font-size: 1.8rem;
  }
}
.c-service__card-text {
  line-height: 1.7;
  font-size: 1.6rem;
  color: #040616;
  max-width: 242px;
}
@media only screen and (max-width: 767px) {
  .c-service__card-text {
    max-width: 100%;
  }
}
.c-service__char {
  position: absolute;
  right: 153px;
  bottom: 0;
  max-width: 317.5px;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .c-service__char {
    right: 0;
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .c-service__char {
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media only screen and (max-width: 516px) {
  .c-service__char {
    width: 40%;
  }
}

/* .c-information */
.c-information {
  padding: 11px 20px;
  /* max-width: 900px; */
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-information {
    padding: 80px 20px 10px;
  }
}
.c-information__list {
  list-style: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  max-width: 1034px;
  margin: 42px auto 61px;
}
.c-information__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: 29px;
  padding: 20px 3px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .c-information__item {
    gap: 18px;
  }
}
@media only screen and (max-width: 516px) {
  .c-information__item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.c-information__date {
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #ffffff;
}
.c-information__badge {
  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.2rem;
  font-weight: 700;
  padding: 1px 14px;
  min-width: 81.5px;
  border-radius: 4px;
  white-space: nowrap;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 12px;
  color: #040616;
  border-radius: 5px;
}
.c-information__badge--notice {
  color: #040616;
  background: rgb(238, 198, 122);
}
.c-information__badge--blog {
  background: rgb(198, 86, 154);
  color: #ffffff;
}
.c-information__link {
  text-decoration: none;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .c-information__link {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 516px) {
  .c-information__link {
    width: 100%;
    margin-top: -10px;
  }
}
.c-information__link:hover {
  text-decoration: underline;
}
.c-information__footer {
  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-btn */
.c-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;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 71px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
  color: #ffffff;
}
@media only screen and (max-width: 516px) {
  .c-btn {
    padding: 10px 55px;
    font-size: 1.6rem;
  }
}
.c-btn:hover {
  background: #ffffff;
  color: #090d1f;
}

/* .c-voice */
.c-voice {
  padding: 73px 20px 98px;
  /* max-width: 900px; */
  margin: 0 auto;
}
.c-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 76px;
  list-style: none;
  max-width: 967px;
  margin: 73px auto 121px;
}
@media only screen and (max-width: 1024px) {
  .c-voice__list {
    gap: 30px;
    margin: 50px auto 90px;
  }
}
@media only screen and (max-width: 767px) {
  .c-voice__list {
    grid-template-columns: repeat(2, 1fr);
    margin: 50px auto;
  }
}
@media (max-width: 516px) {
  .c-voice__list {
    gap: 20px;
  }
}
.c-voice__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.c-voice__img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.c-voice__caption {
  color: #ffffff;
  line-height: 1.6;
  font-size: 1.8rem;
  letter-spacing: 1.8px;
}
@media only screen and (max-width: 516px) {
  .c-voice__caption {
    letter-spacing: 0;
    font-size: 1.6rem;
  }
}
.c-voice__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
}

/* .c-banner */
.c-banner {
  background-color: white;
  padding: 107px 20px;
  position: relative;
}
@media only screen and (max-width: 516px) {
  .c-banner {
    padding: 85px 20px;
  }
}
.c-banner__track {
  max-width: 1208px;
  margin: 0 auto;
  padding: 0 47px;
}
@media only screen and (max-width: 516px) {
  .c-banner__track {
    padding: 0 3px;
  }
}
.c-banner__track .slick-prev {
  left: 0;
}
@media only screen and (max-width: 516px) {
  .c-banner__track .slick-prev {
    left: -18px;
  }
}
.c-banner__track .slick-next {
  right: -9px;
}
@media only screen and (max-width: 516px) {
  .c-banner__track .slick-next {
    right: -25px;
  }
}
.c-banner__item {
  padding: 0 6px;
}
.c-banner__item a {
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-banner__item a:hover {
  opacity: 0.8;
}
.c-banner__img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

/* .c-footer__map */
.c-banner__track .slick-prev,
.c-banner__track .slick-next {
  width: 40px;
  height: 40px;
  background: transparent;
  z-index: 10;
}
@media only screen and (max-width: 516px) {
  .c-banner__track .slick-prev,
  .c-banner__track .slick-next {
    width: 35px;
    height: 35px;
  }
}

/* Ẩn icon mặc định của slick (font) */
.c-banner__track .slick-prev::before,
.c-banner__track .slick-next::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  background: transparent;
  opacity: 1;
}
@media only screen and (max-width: 516px) {
  .c-banner__track .slick-prev::before,
  .c-banner__track .slick-next::before {
    width: 15px;
    height: 15px;
  }
}

/* Arrow NEXT ( > ) */
.c-banner__track .slick-next::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 4px;
}

/* Arrow PREV ( < ) */
.c-banner__track .slick-prev::before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-left: 8px;
}

/* .c-company */
/* .c-subpage */
/* .c-companys */
.c-companys__intro {
  max-width: 861.61px;
  margin: 0 auto 95px;
}
.c-companys__lead {
  font-size: 1.6rem;
  line-height: 2;
  color: white;
}
@media (max-width: 768px) {
  .c-companys__lead {
    font-size: 1.4rem;
  }
}
.c-companys__table-wrap {
  max-width: 1098px;
  margin: 0 auto 144px;
}
@media only screen and (max-width: 767px) {
  .c-companys__table-wrap {
    margin: 0 auto 100px;
  }
}
.c-companys__table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 480px) {
  .c-companys__table {
    display: block;
  }
}
.c-companys__row {
  border-top: 1px solid #c8c9ca;
}
.c-companys__row:last-child {
  border-bottom: 1px solid #c8c9ca;
}
@media (max-width: 516px) {
  .c-companys__row {
    display: block;
  }
}
.c-companys__label {
  width: 246px;
  padding: 27px 0;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 1.4px;
  color: #ffffff;
  vertical-align: top;
  text-align: left;
  white-space: nowrap;
  font-weight: 400;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-companys__label {
    width: 205px;
  }
}
@media only screen and (max-width: 767px) {
  .c-companys__label {
    width: 85px;
  }
}
@media only screen and (max-width: 516px) {
  .c-companys__label {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0 0;
  }
}
.c-companys__label::after {
  width: 1px;
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-color: rgba(200, 201, 202, 0.537254902);
  height: 82%;
}
@media only screen and (max-width: 516px) {
  .c-companys__label::after {
    display: none;
  }
}
.c-companys__value {
  padding: 16px 43px;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 1.4px;
  color: #ffffff;
  vertical-align: top;
  text-align: left;
  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;
  min-height: 80.8px;
  font-size: 1.5rem;
  line-height: calc(22/15);
  letter-spacing: 1.5px;
  color: #ffffff;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .c-companys__value {
    padding: 16px 0 16px 20px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 516px) {
  .c-companys__value {
    padding: 10px 0 20px;
    font-size: 1.4rem;
    min-height: unset;
  }
}
.c-companys__content {
  margin: 131px auto;
}
@media only screen and (max-width: 1024px) {
  .c-companys__content {
    margin: 100px auto;
  }
}
@media only screen and (max-width: 516px) {
  .c-companys__content {
    margin: 80px auto;
  }
}
.c-companys__info {
  padding: 0 20px;
}
.c-companys__gallery-item {
  margin: 0 15px;
}
@media only screen and (max-width: 767px) {
  .c-companys__gallery-item {
    margin: 0 10px;
  }
}
.c-companys__gallery-item:nth-child(even) {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .c-companys__gallery-item:nth-child(even) {
    margin-top: 20px;
  }
}
/* .c-contact */
.c-contact__content {
  max-width: 835.24px;
  margin: 0 auto;
}
.c-contact__notice {
  font-size: 1.4rem;
  line-height: calc(24/14);
  color: white;
}
.c-contact__form {
  background: #f7f7f7;
  padding: 50px 20px;
  margin-top: 42px;
}

/* .c-subpage */
/* .c-news */
.c-news .c-information__badge {
  min-width: 98.78px;
  border-radius: 0;
}

/* .c-subpage */
/* .c-information__list */
/* .p-delivery__pagination */
/* .c-privacy */
.c-privacy .c-subpage__top {
  background: #f5f5f5;
}
.c-privacy .c-subpage__content {
  background-color: white;
  padding: 154px 20px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .c-privacy .c-subpage__content {
    padding: 124px 20px 154px;
  }
}
@media only screen and (max-width: 767px) {
  .c-privacy .c-subpage__content {
    padding: 100px 20px 120px;
  }
}
.c-privacy__main {
  font-size: 1.4rem;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  max-width: 787.2px;
  margin: 0 auto;
}
.c-privacy__section-title {
  font-size: 1.4rem;
}
.c-privacy__contact-link {
  color: #005297;
  margin: 0 3px;
}

/* .c-subpage */
/* .c-services */
/* .c-subpage */
.c-subpage__top {
  background: #eec67a;
  height: 93.45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 516px) {
  .c-subpage__top {
    height: 80.45px;
  }
}
.c-subpage__title {
  font-size: 2rem;
  font-family: "kozuka-gothic-pr6n", sans-serif;
}
@media only screen and (max-width: 516px) {
  .c-subpage__title {
    font-size: 1.8rem;
  }
}
.c-subpage__content {
  padding: 0 20px;
  margin: 154px 0;
}
@media only screen and (max-width: 1024px) {
  .c-subpage__content {
    margin: 124px 0 154px;
  }
}
@media only screen and (max-width: 767px) {
  .c-subpage__content {
    margin: 100px 0 120px;
  }
}

/* .c-service__grid */
/* .c-voices */
/* .c-subpage */
/* .c-voice__list */
/* .p-delivery__pagination */
/* .c-contact */
/* .c-subpage */
/* .c-single__content */
/* .c-access */
.c-access__info {
  max-width: 1098.8px;
  margin: 0 auto;
}
.c-access__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 65px;
}
@media only screen and (max-width: 1024px) {
  .c-access__inner {
    gap: 35px;
  }
}
.c-access__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media only screen and (max-width: 767px) {
  .c-access__image {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.c-access__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #ffffff;
}
.c-access__address {
  font-size: 2rem;
  line-height: calc(30/20);
  letter-spacing: 2px;
  margin: 42px 0 9px;
}
@media only screen and (max-width: 1024px) {
  .c-access__address {
    font-size: 1.8rem;
    letter-spacing: 0;
    margin: 0 0 9px;
  }
}
@media only screen and (max-width: 516px) {
  .c-access__address {
    font-size: 1.6rem;
  }
}
.c-access__tel {
  font-weight: bold;
  font-size: 2.7rem;
  line-height: calc(31.53/27);
}
@media only screen and (max-width: 516px) {
  .c-access__tel {
    font-size: 2.3rem;
  }
}
.c-access__box-title {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 3.6px;
  color: #ede18c;
  border: 1px solid;
  padding: 2px 15px;
  display: inline-block;
  margin: 40px 0 21px;
}
@media only screen and (max-width: 1024px) {
  .c-access__box-title {
    margin: 30px 0 21px;
  }
}
@media only screen and (max-width: 516px) {
  .c-access__box-title {
    letter-spacing: 1.6px;
  }
}
.c-access__list {
  font-size: 1.8rem;
  line-height: calc(28/18);
  letter-spacing: 3.6px;
  color: #ede18c;
}
@media only screen and (max-width: 516px) {
  .c-access__list {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}
.c-access__map {
  max-width: 767px;
  margin: 69px auto 143px;
}
@media only screen and (max-width: 1024px) {
  .c-access__map {
    margin: 69px auto 100px;
  }
}
@media only screen and (max-width: 516px) {
  .c-access__map {
    margin: 69px auto 80px;
  }
}
/* .c-subpage */
/* .c-footer__map-img */
/*# sourceMappingURL=styles.css.map */
