@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  font-size: var(--font-size);
  font-family: var(--font);
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  -webkit-appearance: none; /* Safari/Chromeのデフォルト風を除去 */
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit; /* 親のフォント設定を継承 */
  color: inherit;
  line-height: 1; /* 文字の縦揃え安定化 */
  cursor: pointer;
  text-align: inherit;
  vertical-align: middle;
  box-sizing: border-box;
}

.hidden-sp {
  display: block;
}

.hidden-pc {
  display: none;
}

.no-scroll {
  overflow-y: hidden;
}

:root {
  --color-red: #c30d28;
  --color-black: #000;
  --color-white: #fff;
  --color-blue: #133783;
  --color-text: #121212;
  --color-gray: #eee;
  --color-gray2: #aaa;
  --color-border: #dfdfdf;
  --font: "Noto Sans JP", "sans-serif";
  --font-en: "Poppins", sans-serif;
  --font-size: 62.5%;
  --sentence-fs-max: 16; /* 最大フォントサイズ */
  --sentence-fs-min: 14; /* 最小フォントサイズ */
  --sentence-fs-viewport: 390; /* ビューポート基準 */
  --sentence-line-height: 1.8; /* 行間 */
  --sentence-letter-spacing: 0; /* 文字間 */
  --section-width: 1340;
  --sp-width: 375px;
  --pc-width: 1440px;
}

.c-breadcrumb {
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 2;
  padding: 20px 0;
}
.c-breadcrumb ul {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  overflow-x: scroll;
}
.c-breadcrumb a {
  font-weight: normal;
  text-decoration: underline;
  color: var(--color-blue);
}
.c-breadcrumb a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  background-image: url("/assets/img/common/icon-arrow-breadcrumb.svg");
  background-size: cover;
  margin-left: 12px;
}

.m-btn {
  text-decoration: none;
  display: inline-block;
}
.m-btn .m-btn__inner {
  display: flex;
  align-items: center;
  gap: calc(13px + (13px - 13px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn span {
  display: inline-block;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: calc(16px + (20 - 16) * (100vw - 390px) / (1440 - 390));
}
.m-btn span {
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: var(--color-text);
  background: linear-gradient(var(--color-text), var(--color-text));
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}

.m-btn__icon {
  width: calc(66px + (66px - 66px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn__icon {
  height: calc(44px + (44px - 44px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn__icon {
  background: linear-gradient(90deg, #133783 0%, #0098d2 100%);
  border-radius: calc(22px + (22px - 22px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn__icon {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-btn__icon img {
  width: calc(14px + (20px - 14px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn__icon img {
  height: calc(10px + (15px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn__icon img {
  position: absolute;
}

.m-btn_wrapper {
  margin-top: calc(40px + (56px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn_wrapper {
  text-align: center;
}

.m-btn--round {
  position: relative;
  overflow: hidden;
  border-radius: calc(42px + (42px - 42px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn--round {
  background-color: var(--color-blue);
  display: inline-block;
  padding-top: calc(31px + (36px - 31px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn--round {
  padding-bottom: calc(31px + (36px - 31px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn--round {
  padding-right: calc(48px + (60px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn--round {
  padding-left: calc(48px + (60px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn--round {
  font-size: calc(18px + (20 - 18) * (100vw - 390px) / (1440 - 390));
}
.m-btn--round {
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: var(--color-white);
  transition: background-color 0.3s ease;
}
.m-btn--round::before {
  content: "";
  z-index: 1;
  mix-blend-mode: plus-lighter;
  display: block;
  width: 100%;
  height: 102%;
  background-image: url("/assets/img/common/btn-hover.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100%;
}
@keyframes animation-hover {
  to {
    visibility: visible;
    left: -70%;
  }
  90% {
    left: 110%;
  }
  100% {
    visibility: hidden;
    left: 110%;
  }
}
.m-btn--round .m-btn--round__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10px + (12px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn--round .-external {
  background-image: url("/assets/img/common/icon-external.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: calc(18px + (20px - 18px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-btn--round .-external {
  height: calc(18px + (20px - 18px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}

.m-card {
  display: block;
  color: var(--color-black);
  text-decoration: none;
  background-color: var(--color-white);
  box-shadow: 9px 9px 26px 0px rgba(0, 0, 0, 0.11);
  border-radius: 16px;
  padding: 22px 16px 24px 16px;
}
.m-card .m-card__img {
  border-radius: 10px;
  overflow: hidden;
}
.m-card .m-card__img img {
  transition: transform 0.3s;
}
.m-card .m-card__body {
  margin-top: 16px;
}
.m-card .m-card__title_flex {
  display: flex;
  align-items: center;
  gap: 12px;
}
.m-card .m-card__title {
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.36;
}
.m-card .m-card__title span {
  background: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}
.m-card .m-card__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  margin-top: 8px;
}

.m-newsCard {
  display: block;
  padding: 16px 16px 32px 16px;
  color: var(--color-black);
  text-decoration: none;
  background-color: var(--color-white);
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
.m-newsCard:hover .m-newsCard__category {
  color: var(--color-white);
}
.m-newsCard:hover .m-newsCard__category::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.m-newsCard .m-newsCard__inner {
  display: flex;
  gap: 48px;
}
.m-newsCard .m-newsCard__img {
  border-radius: 10px;
  border: 1px solid #e9e9e9;
  overflow: hidden;
}
.m-newsCard .m-newsCard__img img {
  transition: transform 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-newsCard .m-newsCard__body {
  width: 100%;
}
.m-newsCard .m-newsCard__info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.m-newsCard .m-newsCard__date {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0%;
}
.m-newsCard .m-newsCard__category {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0%;
  border: 1px solid var(--color-black);
  text-align: center;
  box-sizing: border-box;
  min-width: 121px;
  overflow: hidden;
  gap: 10px;
  padding: 2px 16px;
  border-radius: 18px;
  transition: color 0.3s;
}
.m-newsCard .m-newsCard__category span {
  position: relative;
  z-index: 2;
}
.m-newsCard .m-newsCard__category::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #b5b5b5;
  z-index: 1;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.m-newsCard .m-newsCard__text {
  grid-area: text;
  margin-top: 11px;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.m-newsCard .m-newsCard__text span {
  background: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}

.m-category {
  display: inline-block;
  font-weight: bold;
  background-color: var(--color-white);
  border: 1px solid #dfdfdf;
  font-size: calc(11px + (12 - 11) * (100vw - 390px) / (1440 - 390));
}
.m-category {
  line-height: 1;
  letter-spacing: 0.02em;
  padding-top: calc(8.5px + (8.5px - 8.5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-category {
  padding-bottom: calc(8.5px + (8.5px - 8.5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-category {
  padding-left: calc(32px + (34px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-category {
  padding-right: calc(32px + (34px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-category {
  border-radius: calc(4px + (4px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact {
  background-image: url("/assets/img/contact/contact-bg.webp");
  background-size: cover;
  background-position: center;
  padding-top: calc(85px + (150px - 85px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact {
  padding-bottom: calc(90px + (150px - 90px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact {
  padding-right: calc(16px + (120px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact {
  padding-left: calc(16px + (120px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact .l-contact__inner {
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.88);
  padding-top: calc(64px + (90px - 64px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact .l-contact__inner {
  padding-bottom: calc(64px + (90px - 64px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact .l-contact__inner {
  padding-right: calc(16px + (100px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact .l-contact__inner {
  padding-left: calc(16px + (100px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact .l-contact__inner {
  border-radius: 40px;
  text-align: center;
}
.l-contact .l-contact__text {
  line-height: 1.8;
  font-weight: bold;
  margin-top: calc(20px + (20px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact .l-contact__text {
  margin-bottom: calc(40px + (56px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-contact .l-contact__text {
  font-size: calc(14px + (18 - 14) * (100vw - 390px) / (1440 - 390));
}
.l-contact .l-contact__text {
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.l-contact .l-contact__btn {
  box-sizing: border-box;
}

.c-contents {
  padding-top: 120px;
  padding-bottom: 80px;
}
.c-contents a {
  color: inherit;
  word-break: break-all;
}
.c-contents .c-contents_btn {
  margin-top: 40px;
  text-align: center;
}
.c-contents_head {
  margin-top: 0;
  margin-bottom: 16px;
}
.c-contents_head time {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-en);
}
.c-contents_head_category {
  margin-left: 12px;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  width: 109px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-contents_contents > * + * {
  margin-top: 48px;
}
.c-contents_contents h1 {
  margin-bottom: 54px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.c-contents_contents h2 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 20px 20px 20px 25px;
  border-radius: 0 0 30px 0;
  background-color: var(--color-gray);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.c-contents_contents h2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--color-blue) 0%, #0098d2 100%);
}
.c-contents_contents h3 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-left: 28px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.c-contents_contents h3::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 15px;
  height: 17px;
  background: url(/assets/img/top/img-section02-head-icon.svg) center center/100% no-repeat;
}
.c-contents_contents .wp-block-column p {
  margin-top: 0;
}
.c-contents_contents .wp-element-caption {
  font-size: 14px;
  margin-top: 12px;
}
.c-contents_contents .img,
.c-contents_contents .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.c-contents_contents .img img,
.c-contents_contents .wp-block-image img {
  width: auto;
  max-width: 100%;
}
.c-contents_contents .img .caption,
.c-contents_contents .wp-block-image .caption {
  margin-top: 12px !important;
}
.c-contents_contents :has(> .img).wp-block-column > .img,
.c-contents_contents :has(> .img).wp-block-column > .wp-block-image,
.c-contents_contents :has(> .wp-block-image).wp-block-column > .img,
.c-contents_contents :has(> .wp-block-image).wp-block-column > .wp-block-image {
  margin-top: 0;
  margin-bottom: 0;
}
.c-contents_contents p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.c-contents_contents .has-large-font-size {
  font-size: 18px;
}
.c-contents_contents .has-normal-font-size {
  font-size: 16px;
}
.c-contents_contents .has-small-font-size {
  font-size: 14px;
}
.c-contents_contents .caption {
  margin-top: 12px !important;
  font-size: 14px;
}
.c-contents_contents a {
  color: var(--color-blue);
  text-decoration: underline;
}
.c-contents_contents a:hover {
  text-decoration: none;
}
.c-contents_contents a[target=_blank]::after {
  display: inline-block;
  content: "";
  margin: -2px 12px 0;
  width: 15px;
  height: 15px;
  background: url("/assets/img/common/icon-external-news_blue.svg") center center/cover no-repeat;
  vertical-align: middle;
}
.c-contents_contents ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.c-contents_contents ul > li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.c-contents_contents ul > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gray2);
}
.c-contents_contents ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
  counter-reset: item;
}
.c-contents_contents ol > li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.c-contents_contents ol > li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 500;
}
.c-contents_contents .table,
.c-contents_contents .wp-block-flexible-table-block-table {
  margin-top: 24px;
}
.c-contents_contents .table table th,
.c-contents_contents .table table td,
.c-contents_contents .wp-block-flexible-table-block-table table th,
.c-contents_contents .wp-block-flexible-table-block-table table td {
  padding: 20px !important;
  border: 1px solid var(--color-border);
  border-color: var(--color-border) !important;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.c-contents_contents .table table th,
.c-contents_contents .wp-block-flexible-table-block-table table th {
  background-color: var(--color-gray);
}
.c-contents_contents .col2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.c-contents_contents .col2 .img {
  margin-bottom: 24px;
}
.c-contents_contents .col2_item > *:first-child {
  margin-top: 0;
}
.c-contents_contents .col2_item > *:last-child {
  margin-bottom: 0;
}
.c-contents_contents .col3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.c-contents_contents .col3 .img {
  margin-bottom: 24px;
}
.c-contents_contents .col3_item > *:first-child {
  margin-top: 0;
}
.c-contents_contents .col3_item > *:last-child {
  margin-bottom: 0;
}
.c-contents_contents .card {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 0 0 30px 0;
}
.c-contents_contents .card > *:first-child {
  margin-top: 0;
}
.c-contents_contents .card > *:last-child {
  margin-bottom: 0;
}
.l-cta {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
}
.l-cta .l-cta__inner {
  display: flex;
  width: 100%;
}
.l-cta .l-cta__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-weight: bold;
  flex: 1;
}
.l-cta .l-cta__btn span {
  font-size: calc(16px + (16 - 16) * (100vw - 390px) / (1440 - 390));
}
.l-cta .l-cta__btn span {
  line-height: 1;
  letter-spacing: 0em;
}
.l-cta .l-cta__btn .-external {
  display: block;
  background-image: url("/assets/img/common/icon-external.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: calc(15px + (15px - 15px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-cta .l-cta__btn .-external {
  height: calc(15px + (15px - 15px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-cta .l-cta__hamburger {
  position: relative;
  width: 68px;
  height: 68px;
  background-color: #0098d2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.l-cta .l-cta__hamburger span {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.l-cta .l-cta__hamburger span:nth-child(1) {
  top: calc(50% - 6px);
}
.l-cta .l-cta__hamburger span:nth-child(2) {
  top: calc(50% + 4px);
}
.l-cta .l-cta__hamburger.is-active span:nth-child(1) {
  transform: rotate(20deg);
  top: 50%;
}
.l-cta .l-cta__hamburger.is-active span:nth-child(2) {
  transform: rotate(-20deg);
  top: 50%;
}
.l-cta .l-cta__nav {
  position: fixed;
  z-index: -1;
  width: 100dvw;
  height: calc(100dvh - 68px);
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.l-cta .l-cta__nav_list {
  position: absolute;
  right: 0;
  top: 0;
  width: 86%;
  height: 100%;
  background-color: var(--color-white);
  padding: 90px 32px 0 26px;
  box-sizing: border-box;
  transform: translateX(100%);
}
.l-cta .l-cta__nav_list .l-cta__nav_list_item {
  border-top: 1px solid #dfdfdf;
  padding: 24px 17px;
}
.l-cta .l-cta__nav_list li {
  font-weight: bold;
  font-size: calc(16px + (16 - 16) * (100vw - 390px) / (1440 - 390));
}
.l-cta .l-cta__nav_list li {
  line-height: 1;
  letter-spacing: 0em;
}
.l-cta .l-cta__nav_list li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-cta .l-cta__nav_list li .m-icon {
  width: 24px;
  height: 24px;
}
.l-cta .l-cta__nav_list li .m-btn__icon {
  width: 36px;
  height: 24px;
  margin-right: -5px;
}
.l-cta .l-cta__nav_list li.-menu {
  padding: 24px 17px 0;
}
.l-cta .l-cta__nav_list li.-menu > div:first-child {
  padding-bottom: 17px;
}
.l-cta .l-cta__nav_list li:last-child {
  border-bottom: 1px solid #dfdfdf;
}
.l-cta .l-cta__nav_list li span {
  color: var(--color-text);
}
.l-cta .l-cta__nav_list .l-cta__nav_list_head_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: #eee;
  padding: 16px 18px;
  margin-left: -17px;
  margin-right: -17px;
}
.l-cta .l-cta__nav_list .l-cta__nav_list_head_item span:nth-child(1) {
  display: block;
  padding-bottom: 8px;
  font-size: calc(10px + (10 - 10) * (100vw - 390px) / (1440 - 390));
}
.l-cta .l-cta__nav_list .l-cta__nav_list_head_item span:nth-child(1) {
  line-height: 1.05;
  letter-spacing: 0.36em;
  font-weight: 300;
}
.l-cta .l-cta__nav_list .l-cta__nav_list_head_item span:nth-child(2) {
  color: var(--color-blue);
  font-size: calc(15px + (15 - 15) * (100vw - 390px) / (1440 - 390));
}
.l-cta .l-cta__nav_list .l-cta__nav_list_head_item span:nth-child(2) {
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: bold;
}
.l-cta .l-cta__nav_list .l-cta__nav_list_head_item + .l-cta__nav_list_head_item {
  margin-top: 6px;
}

.l-footer .l-footer__logo {
  width: 352px;
}
.l-footer .l-footer__inner {
  padding-top: calc(64px + (88px - 64px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__inner {
  padding-bottom: calc(64px + (88px - 64px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__inner {
  padding-right: calc(16px + (120px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__inner {
  padding-left: calc(16px + (120px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__inner {
  background-color: var(--color-white);
}
.l-footer .l-footer__address {
  margin-top: calc(20px + (20px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__address {
  font-size: calc(14px + (14 - 14) * (100vw - 390px) / (1440 - 390));
}
.l-footer .l-footer__address {
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-gray-dark);
  font-weight: bold;
}
.l-footer .l-footer__text {
  position: relative;
  margin-top: calc(32px + (32px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__text {
  font-size: calc(11px + (11 - 11) * (100vw - 390px) / (1440 - 390));
}
.l-footer .l-footer__text {
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-left: 12px;
}
.l-footer .l-footer__text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.l-footer .l-footer__bottom {
  background-color: #eee;
  padding-top: calc(40px + (28px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__bottom {
  padding-bottom: calc(108px + (28px - 108px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__bottom {
  padding-right: calc(24px + (120px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__bottom {
  padding-left: calc(24px + (120px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__bottom_link {
  display: flex;
  justify-content: center;
  gap: calc(22px + (40px - 22px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__bottom_link a {
  text-decoration: none;
  color: var(--color-text);
  font-size: calc(14px + (14 - 14) * (100vw - 390px) / (1440 - 390));
}
.l-footer .l-footer__bottom_link a {
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.l-footer .l-footer__bottom_link a span {
  background: linear-gradient(#2b2b2b, #2b2b2b);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}
.l-footer .l-footer__banner {
  display: flex;
  flex-wrap: wrap;
  height: 79px;
  margin-top: calc(24px + (40px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__banner {
  gap: calc(6px + (8px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__banner a {
  display: block;
}
.l-footer .l-footer__banner a img {
  width: 100%;
  height: auto;
}
.l-footer .l-footer__copylight {
  margin-top: calc(20px + (24px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-footer .l-footer__copylight {
  color: #121212;
  text-align: center;
  font-family: var(--font-en);
  font-size: calc(10px + (12 - 10) * (100vw - 390px) / (1440 - 390));
}
.l-footer .l-footer__copylight {
  line-height: 1.5;
  letter-spacing: 0em;
}

.l-header a {
  color: var(--color-white);
}
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  height: 72px;
  z-index: 100;
  padding: 8px 0 0 9px;
  transition: all 0.3s ease-in-out;
}
.l-header.-show .l-header__bg {
  opacity: 0.95;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(0);
}
.l-header.-show .l-header__logo {
  width: calc(227px + (307px - 227px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header.-top .l-header__inner.-scroll {
  top: calc(16px + (18px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header.-top.-show .l-header__logo {
  width: calc(227px + (307px - 227px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header.-top.-show img.-top {
  display: block;
}
.l-header.-top.-show img.-under {
  display: none;
}
.l-header .l-header__inner {
  position: fixed;
  transition: top 0.2s ease;
  transform-origin: right top;
}
.l-header .l-header__inner.-scroll {
  top: calc(16px + (18px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header .l-header__btn {
  position: relative;
}
.l-header .l-header__logo {
  position: absolute;
  width: 288px;
  transition: width 0.4s ease-out;
}
.l-header .l-header__logo img {
  width: 100%;
  height: auto;
}
.l-header .l-header__logo img.-under {
  display: none;
}
.l-header .l-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
}
.l-header .l-header__nav {
  top: 0;
  right: 0;
  display: flex;
  background-color: rgba(0, 152, 210, 0.85);
  font-size: calc(16px + (16 - 16) * (100vw - 390px) / (1440 - 390));
}
.l-header .l-header__nav {
  line-height: 1;
  letter-spacing: 0em;
  color: var(--color-white);
  font-weight: bold;
  gap: 32px;
  padding: 0 48px;
  padding-right: calc(12px + (48px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header .l-header__nav {
  padding-left: calc(12px + (48px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header .l-header__nav {
  border-radius: calc(34px + (34px - 34px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header .l-header__nav li {
  cursor: pointer;
  position: relative;
  padding-top: calc(24px + (24px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header .l-header__nav li {
  padding-bottom: calc(24px + (24px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.l-header .l-header__nav li .-hoverText,
.l-header .l-header__nav li > span {
  background: linear-gradient(var(--color-white), var(--color-white));
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}
.l-header .l-header__nav li::before {
  content: "・";
}
.l-header .l-header__nav_pulldown {
  position: absolute;
  padding: 15px 0 0 0;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.0784313725);
}
.l-header .l-header__nav_pulldown.-active {
  opacity: 1;
  visibility: visible;
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_inner {
  background-color: #eee;
  padding: 32px 24px;
  border-radius: 8px;
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item:not(:first-child) {
  padding-top: 16px;
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid #dfdfdf;
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item .-icon {
  width: 24px;
  height: 24px;
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item p {
  font-weight: 300;
  font-size: calc(10px + (10 - 10) * (100vw - 390px) / (1440 - 390));
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item p {
  line-height: 1.05;
  letter-spacing: 0.36em;
  color: var(--color-text);
  margin-bottom: 8px;
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item span {
  color: var(--color-blue);
  font-weight: bold;
  font-size: calc(15px + (15 - 15) * (100vw - 390px) / (1440 - 390));
}
.l-header .l-header__nav_pulldown .l-header__nav_pulldown_item span {
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: linear-gradient(var(--color-blue), var(--color-blue));
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}
.l-header .l-header__flex {
  display: none;
}

.m-icon {
  width: calc(32px + (40px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-icon {
  height: calc(32px + (40px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.m-icon {
  border-radius: 99%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #133783 0%, #0098d2 100%);
  position: relative;
  overflow: hidden;
}
.m-icon img {
  width: 9px !important;
  height: 8px !important;
  position: relative;
  z-index: 2;
}
.m-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  background: url("/assets/img/common/icon-arrow.svg") no-repeat center/contain;
  z-index: 2;
  transition: background 0.3s;
}

.u-section {
  margin-left: auto;
  margin-right: auto;
  padding-right: calc(16px + (32px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.u-section {
  padding-left: calc(16px + (32px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}

.c-text {
  font-size: calc(15px + (16 - 15) * (100vw - 390px) / (1440 - 390));
}
.c-text {
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.c-text--large {
  font-size: calc(16px + (22 - 16) * (100vw - 390px) / (1440 - 390));
}
.c-text--large {
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.c-text--small {
  font-size: calc(14px + (14 - 14) * (100vw - 390px) / (1440 - 390));
}
.c-text--small {
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.c-text--heading {
  font-weight: bold;
  font-size: calc(28px + (42 - 28) * (100vw - 390px) / (1440 - 390));
}
.c-text--heading {
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.c-text--heading--large {
  font-size: calc(20px + (48 - 20) * (100vw - 390px) / (1440 - 390));
}
.c-text--heading--large {
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.c-text--heading--medium {
  font-size: calc(24px + (32 - 24) * (100vw - 390px) / (1440 - 390));
}
.c-text--heading--medium {
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.c-text--heading--small {
  font-size: calc(22px + (32 - 22) * (100vw - 390px) / (1440 - 390));
}
.c-text--heading--small {
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.c-text--caption {
  font-size: calc(12px + (14 - 12) * (100vw - 390px) / (1440 - 390));
}
.c-text--caption {
  line-height: 1.4;
  letter-spacing: 0em;
}

.l-container {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.p-news {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--color-text);
  padding-bottom: 80px;
}
.p-news a {
  color: inherit;
}

.p-news_head {
  padding: 120px 0 64px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  background-color: #fff;
}
.p-news_head::before {
  content: "";
  position: absolute;
  right: -101px;
  top: -95px;
  z-index: 1;
  width: 310px;
  height: 288px;
  background-size: cover;
  background-image: url(/assets/img/news/ring.svg);
  mix-blend-mode: difference;
}
.p-news_head::after {
  content: "";
  background-size: 100% 100%;
  background-image: url(/assets/img/news/head_bg.webp);
  width: 100%;
  height: 204px;
  position: absolute;
  bottom: -70px;
  left: 0;
  z-index: 0;
}
.p-news_head h1 {
  position: relative;
  z-index: 1;
}
.p-news_head_ja {
  font-size: 34px;
  font-weight: bold;
  color: var(--color-blue);
}
.p-news_head_en {
  margin-left: 12px;
  font-size: 20px;
  color: var(--color-text);
}

.p-news_link {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.p-news_link a {
  display: block;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.02em;
  background-color: var(--color-gray);
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.p-news_link a.-active {
  background-color: var(--color-blue);
  color: #fff;
}

.p-news_list {
  margin-top: 40px;
  display: grid;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}
.p-news_list_item {
  position: relative;
  padding-bottom: 16px;
  display: block;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.p-news_list_item time {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  font-family: var(--font-en);
}
.p-news_list_item_category {
  margin-left: 12px;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  width: 109px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-news_list_item_title {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.p-news_list_item .-external {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: -2px;
  margin-left: 10px;
  background-image: url("/assets/img/common/icon-external_black.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
}
.p-news_list_item:not(:hover) a::after {
  transform-origin: right;
}

.p-news_pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.p-news_pagination ul {
  justify-content: center;
  display: flex;
  gap: 12px;
}
.p-news_pagination li a {
  position: relative;
  font-size: 15px;
  border-radius: 50%;
  background-color: var(--color-gray);
  width: 44px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 300;
  transition: all 0.3s ease;
}
.p-news_pagination li a span {
  position: relative;
  z-index: 1;
}
.p-news_pagination li a.-active {
  background: linear-gradient(to right, var(--color-blue) 0%, #0098d2 100%);
  color: #fff;
  font-weight: 500;
}
.p-news_pagination_prev {
  width: 7px;
  height: 12px;
  background-image: url(/assets/img/common/icon-arrow-r.svg);
  background-size: cover;
  transform: rotate(180deg);
}
.p-news_pagination_next {
  width: 7px;
  height: 12px;
  background-image: url(/assets/img/common/icon-arrow-r.svg);
  background-size: cover;
}

.p-news_detail {
  padding-top: 120px;
}
.p-news_detail_head {
  margin-top: 0;
  margin-bottom: 16px;
}
.p-news_detail_head time {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-en);
}
.p-news_detail_head_category {
  margin-left: 12px;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  width: 109px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-news_detail_contents > * + * {
  margin-top: 48px;
}
.p-news_detail_contents h1 {
  margin-bottom: 54px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.p-news_detail_contents h2 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 20px 20px 20px 25px;
  border-radius: 0 0 30px 0;
  background-color: var(--color-gray);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.p-news_detail_contents h2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--color-blue) 0%, #0098d2 100%);
}
.p-news_detail_contents h3 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-left: 28px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.p-news_detail_contents h3::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 15px;
  height: 17px;
  background: url(/assets/img/top/img-section02-head-icon.svg) center center/100% no-repeat;
}
.p-news_detail_contents .img,
.p-news_detail_contents .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.p-news_detail_contents .img img,
.p-news_detail_contents .wp-block-image img {
  width: auto;
  max-width: 100%;
}
.p-news_detail_contents .img .caption,
.p-news_detail_contents .wp-block-image .caption {
  margin-top: 12px !important;
}
.p-news_detail_contents :has(> .img).wp-block-column > .img,
.p-news_detail_contents :has(> .img).wp-block-column > .wp-block-image,
.p-news_detail_contents :has(> .wp-block-image).wp-block-column > .img,
.p-news_detail_contents :has(> .wp-block-image).wp-block-column > .wp-block-image {
  margin-top: 0;
  margin-bottom: 0;
}
.p-news_detail_contents p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.p-news_detail_contents .has-large-font-size {
  font-size: 18px;
}
.p-news_detail_contents .has-normal-font-size {
  font-size: 16px;
}
.p-news_detail_contents .has-small-font-size {
  font-size: 14px;
}
.p-news_detail_contents .caption {
  margin-top: 12px !important;
  font-size: 14px;
}
.p-news_detail_contents a {
  color: var(--color-blue);
  text-decoration: underline;
}
.p-news_detail_contents a:hover {
  text-decoration: none;
}
.p-news_detail_contents a[target=_blank]::after {
  display: inline-block;
  content: "";
  margin: -2px 12px 0;
  width: 15px;
  height: 15px;
  background: url("/assets/img/common/icon-external-news_blue.svg") center center/cover no-repeat;
  vertical-align: middle;
}
.p-news_detail_contents ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.p-news_detail_contents ul > li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.p-news_detail_contents ul > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gray2);
}
.p-news_detail_contents ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
  counter-reset: item;
}
.p-news_detail_contents ol > li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.p-news_detail_contents ol > li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 500;
}
.p-news_detail_contents .wp-element-caption {
  font-size: 14px;
  margin-top: 12px;
}
.p-news_detail_contents .table,
.p-news_detail_contents .wp-block-flexible-table-block-table {
  margin-top: 24px;
}
.p-news_detail_contents .table table th,
.p-news_detail_contents .table table td,
.p-news_detail_contents .wp-block-flexible-table-block-table table th,
.p-news_detail_contents .wp-block-flexible-table-block-table table td {
  padding: 20px !important;
  border: 1px solid var(--color-border);
  border-color: var(--color-border) !important;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.p-news_detail_contents .table table th,
.p-news_detail_contents .wp-block-flexible-table-block-table table th {
  background-color: var(--color-gray);
}
.p-news_detail_contents .col2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.p-news_detail_contents .col2 .img {
  margin-bottom: 24px;
}
.p-news_detail_contents .col2_item > *:first-child {
  margin-top: 0;
}
.p-news_detail_contents .col2_item > *:last-child {
  margin-bottom: 0;
}
.p-news_detail_contents .col3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.p-news_detail_contents .col3 .img {
  margin-bottom: 24px;
}
.p-news_detail_contents .col3_item > *:first-child {
  margin-top: 0;
}
.p-news_detail_contents .col3_item > *:last-child {
  margin-bottom: 0;
}
.p-news_detail_contents .card {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 0 0 30px 0;
}
.p-news_detail_contents .card > *:first-child {
  margin-top: 0;
}
.p-news_detail_contents .card > *:last-child {
  margin-bottom: 0;
}

.p-news_sns {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 80px;
  padding: 28px;
  border-radius: 40px;
  background-color: var(--color-gray);
  text-align: center;
}
.p-news_sns_title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--font-en);
}
.p-news_sns_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}
.p-news_sns_list > li {
  min-width: 75px;
}
.p-news_sns_list > li::before {
  display: none;
}
.p-news_sns_list > li img {
  width: auto;
  max-width: 1005;
}
.p-news_sns_list > li .text {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.js-url-copy-text {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--color-gray2);
  background-color: var(--color-white);
  box-shadow: 0 0 10px #ddd;
  color: var(--color-blue);
  font-size: 16px;
  text-align: center;
  opacity: 0.1;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.js-url-copy-text.is-visible {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.js-url-copy-text.is-error {
  opacity: 1;
  visibility: visible;
  z-index: 10;
  color: var(--color-red);
  border-color: var(--color-red);
}

.p-404 {
  position: relative;
  height: calc(553px + (700px - 553px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 {
  padding-bottom: calc(30px + (70px - 30px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 .p-404__ring {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  top: calc(65px + (65px - 65px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 .p-404__ring {
  background-image: url("/assets/img/404/img-404-ring_sp.svg");
}
.p-404 .p-404__ring {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: -1;
  mix-blend-mode: difference;
  opacity: 0.1;
}
.p-404 .p-404__inner {
  padding-top: calc(149px + (238px - 149px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 .p-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-404 .p-404__content {
  position: relative;
  width: 100%;
}
.p-404 .p-404__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/assets/img/404/img-404-blur_sp.svg");
}
.p-404 .p-404__content::before {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-404 .p-404__title_pc {
  display: none;
}
.p-404 .p-404__title_sp {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  gap: 13px;
}
.p-404 .p-404__title_sp img:first-child {
  width: calc(146px + (156px - 146px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 .p-404__title_sp img:last-child {
  width: calc(183px + (193px - 183px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 .p-404_btn {
  margin-top: calc(40px + (72px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 p {
  margin-top: calc(16px + (32px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-404 p {
  text-align: center;
  color: var(--color-text);
  font-size: calc(15px + (19 - 15) * (100vw - 390px) / (1440 - 390));
}
.p-404 p {
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.p-top a {
  color: var(--color-text);
}
.p-top {
  position: relative;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow: hidden;
  padding-top: calc(110px + (150px - 110px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.6;
  background: linear-gradient(180deg, #d5d5d5 0%, rgba(255, 255, 255, 0) 44.41%, rgba(255, 255, 255, 0) 88.83%);
  backdrop-filter: blur(100px);
  z-index: 0;
  height: calc(150px + (269px - 150px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__kv {
  position: relative;
  padding-bottom: calc(32px + (32px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__kv .p-top__kv_ring {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url("/assets/img/top/img-kv-ring.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
}
.p-top .p-top__kv .p-top__kv_text {
  margin-left: calc(16px + (57px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__kv .p-top__kv_text img:nth-child(1) {
  width: 61.7%;
}
.p-top .p-top__kv .p-top__kv_text img:nth-child(2) {
  width: 70.7%;
  margin-top: calc(10px + (10px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__kv .p-top__kv_text img:nth-child(3) {
  width: 89.7%;
  margin-top: calc(10px + (10px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__kv .p-top__kv_text img:nth-child(4) {
  width: 82%;
  margin-top: calc(10px + (10px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__kv .p-top__kv_text img {
  height: 100%;
}
.p-top .p-top__kv .p-top__kv_img {
  overflow: hidden;
}
.p-top .p-top__kv .p-top__kv_img.-animte::before {
  animation: animation-hover 1.2s forwards;
}
.p-top .p-top__kv .p-top__kv_img::before {
  content: "";
  z-index: 1;
  display: block;
  width: 63.8%;
  height: 100%;
  background-image: url("/assets/img/common/btn-hover.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -70%;
}
@keyframes animation-hover {
  to {
    visibility: visible;
    left: -70%;
  }
  90% {
    left: 110%;
  }
  100% {
    visibility: hidden;
    left: 110%;
  }
}
.p-top .p-top__kv .p-top__kv_img {
  margin-top: calc(28px + (40px - 28px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news {
  position: relative;
}
.p-top .p-top__news::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to top, rgb(238, 238, 238) 0%, rgb(238, 238, 238) 5%, rgba(238, 238, 238, 0) 100%);
  z-index: 111;
  pointer-events: none;
}
.p-top .p-top__news {
  background: #eee;
  backdrop-filter: blur(1px);
  padding-top: calc(48px + (95px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news {
  padding-bottom: calc(56px + (95px - 56px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news time {
  font-weight: bold;
}
.p-top .p-top__news .p-top__news_head h2 {
  color: var(--color-blue);
}
.p-top .p-top__news .p-top__news_head > div:first-child span {
  margin-bottom: calc(3px + (10px - 3px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news .p-top__news_head {
  display: flex;
  align-items: flex-end;
  gap: calc(12px + (32px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news .p-top__news_head {
  font-weight: bold;
}
.p-top .p-top__news .p-top__news_inner {
  padding-right: calc(16px + (56px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news .p-top__news_inner {
  padding-left: calc(16px + (56px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news .p-top__news_item {
  position: relative;
}
.p-top .p-top__news .p-top__news_item a {
  color: var(--color-text);
}
.p-top .p-top__news .p-top__news_item:hover a::after {
  transform: scaleX(1);
}
.p-top .p-top__news .p-top__news_item:not(:hover) a::after {
  transform-origin: right;
}
.p-top .p-top__news .p-top__news_item {
  padding-top: calc(22px + (16px - 22px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news .p-top__news_item {
  padding-bottom: calc(12px + (16px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__news .p-top__news_item {
  border-bottom: 1px solid #dfdfdf;
}
.p-top .p-top__news .p-top__news_item .-external {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: -2px;
  margin-left: 10px;
  background-image: url("/assets/img/common/icon-external_black.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
}
.p-top .p-top__news .p-top__news_info {
  display: flex;
  align-items: center;
  gap: calc(12px + (14px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 {
  background-color: var(--color-white);
  padding-top: calc(56px + (0px - 56px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 h2 {
  position: relative;
  font-size: calc(18px + (24 - 18) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section01 h2 {
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: bold;
  margin-bottom: 16px;
  padding-left: 33px;
}
.p-top .p-top__section01 h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 19px;
  background-image: url("/assets/img/top/icon-section01.svg");
  background-size: 100% 100%;
}
.p-top .p-top__section01 .p-top__section01_lead {
  margin-top: calc(20px + (40px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_lead {
  font-size: calc(15px + (19 - 15) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section01 .p-top__section01_lead {
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.p-top .p-top__section01 .p-top__section01_img {
  margin-top: calc(40px + (50px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_slideContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: calc(55px + (0px - 55px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide .p-top__section01_slide_item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 0 100%);
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide .p-top__section01_slide_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: translateZ(0);
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide .p-top__section01_slide_item.is-active {
  opacity: 1;
  pointer-events: auto;
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: calc(2px + (16px - 2px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
  padding-top: calc(21px + (24px - 21px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
  padding-bottom: calc(21px + (24px - 21px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
  background: linear-gradient(90deg, #133783 2.59%, #0098d2 95.86%);
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
  width: calc(97px + (146px - 97px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
  height: calc(55px + (82px - 55px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
  cursor: pointer;
  border-radius: 0 0 0 20px;
  overflow: hidden;
  transition: transform 0.3s;
  transform: scale(0.85);
  transform-origin: top;
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item.is-active {
  transform: scale(1);
}
.p-top .p-top__section02 {
  background-color: var(--color-white);
  counter-reset: item 0;
}
.p-top .p-top__section02 h3::before {
  counter-increment: item 1;
  content: counter(item, decimal-leading-zero);
  padding-right: calc(5px + (8px - 5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 h3 {
  padding-top: calc(5px + (8px - 5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 h3 {
  padding-bottom: calc(5px + (8px - 5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 h3 {
  padding-left: calc(5px + (8px - 5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 h3 {
  padding-right: calc(5px + (8px - 5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 h3 {
  color: var(--color-white);
  background: linear-gradient(90deg, #133783 2.84%, #0098d2 100%);
}
.p-top .p-top__section02 .p-top__section02_ring {
  position: absolute;
}
.p-top .p-top__section02 .p-top__section02_ring {
  left: 0;
  width: 100%;
  height: 88%;
  background-image: url("/assets/img/top/img-ring.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.p-top .p-top__section02 .p-top__section02_head {
  position: relative;
}
.p-top .p-top__section02 .p-top__section02_head {
  background-image: url("/assets/img/top/img-section02-01.webp");
  background-size: cover;
  background-position: center;
  padding-top: calc(167px + (128px - 167px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head {
  padding-bottom: calc(172px + (49px - 172px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head {
  padding-right: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head {
  padding-left: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head {
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
}
.p-top .p-top__section02 .p-top__section02_head h2 {
  font-size: calc(18px + (24 - 18) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section02 .p-top__section02_head h2 {
  line-height: 1.9;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: calc(33px + (40px - 33px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head h2 {
  display: inline-block;
}
.p-top .p-top__section02 .p-top__section02_head h2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("/assets/img/top/img-section02-head-icon.svg");
  width: calc(22px + (26px - 22px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head h2:before {
  height: calc(19px + (26px - 19px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head p {
  padding-top: calc(20px + (18px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_head p {
  font-size: calc(20px + (28 - 20) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section02 .p-top__section02_head p {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-top .p-top__section02 .p-top__section02_list {
  padding-top: calc(56px + (80px - 56px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_list {
  padding-bottom: calc(40px + (70px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_list p.p-top__section02_list_text {
  font-size: calc(15px + (16 - 15) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section02 .p-top__section02_list p.p-top__section02_list_text {
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.p-top .p-top__section02 .p-top__section02_list h3 {
  padding-left: calc(7px + (6px - 7px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_list p {
  padding-top: calc(12px + (16px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_list p {
  padding-left: calc(32px + (40px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section02 .p-top__section02_list p {
  font-size: calc(11px + (16 - 11) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section02 .p-top__section02_list p {
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.p-top .p-top__section02 .p-top__section02_list > *:not(:first-child) {
  margin-top: calc(32px + (40px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 {
  background-color: var(--color-white);
  padding-bottom: calc(104px + (160px - 104px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 h3 {
  color: var(--color-blue);
}
.p-top .p-top__section03 .p-top__section03__bulrbg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 329px;
  background: linear-gradient(to top, rgb(213, 213, 213) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.4;
}
.p-top .p-top__section03 .p-top__section03__bulrbg.-engineering {
  top: 0;
  bottom: unset;
  rotate: 180deg;
  height: 121px;
}
.p-top .p-top__section03 .p-top__section03_head {
  position: relative;
}
.p-top .p-top__section03 .p-top__section03_head {
  background-image: url("/assets/img/top/img-section03-01.webp");
  background-size: cover;
  background-position: center;
  padding-top: calc(172px + (195px - 172px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head {
  padding-bottom: calc(172px + (195px - 172px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head {
  padding-right: calc(120px + (150px - 120px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head {
  padding-left: calc(30px + (56px - 30px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head {
  color: var(--color-white);
  font-weight: bold;
}
.p-top .p-top__section03 .p-top__section03_head p {
  font-size: calc(20px + (24 - 20) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03_head p {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-top .p-top__section03 .p-top__section03_head_label {
  padding-top: calc(8px + (8px - 8px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_label {
  padding-bottom: calc(8px + (8px - 8px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_label {
  padding-right: calc(24px + (48px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_label {
  padding-left: calc(24px + (48px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_label {
  font-size: calc(18px + (20 - 18) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03_head_label {
  line-height: 1.05;
  letter-spacing: 0.02em;
  display: inline-block;
  background: linear-gradient(90deg, #133783 0%, #0098d2 100%);
}
.p-top .p-top__section03 .p-top__section03_head_label::before {
  display: none;
}
.p-top .p-top__section03 .p-top__section03__head_text {
  font-weight: 300;
  margin-top: calc(32px + (32px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__head_text {
  font-family: var(--font-en);
}
.p-top .p-top__section03 .p-top__section03__head_text span {
  display: block;
  font-weight: 300;
  font-size: calc(40px + (86 - 40) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03__head_text span {
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.p-top .p-top__section03 .p-top__section03__head_text span + span {
  margin-top: calc(20px + (16px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__item_body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
.p-top .p-top__section03 .p-top__section03_head_02 {
  position: relative;
}
.p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
  position: absolute;
  top: 4px;
  left: 2px;
  background-color: var(--color-white);
  padding-top: calc(16px + (20px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
  padding-bottom: calc(16px + (20px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
  padding-right: calc(12px + (16px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
  padding-left: calc(12px + (16px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
  font-size: calc(16px + (16 - 16) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
  line-height: 1.05;
  letter-spacing: 0.36em;
  font-weight: 300;
}
.p-top .p-top__section03 .p-top__section03__text {
  margin-top: calc(24px + (28px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__description_container {
  position: relative;
  padding-left: calc(16px + (56px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__description_container {
  padding-right: calc(16px + (56px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__description_container {
  padding-bottom: calc(16px + (114px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__description {
  padding-top: calc(40px + (60px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__description h3 {
  padding-top: calc(20px + (20px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__description h3 span {
  font-size: calc(22px + (24 - 22) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03__description h3 span {
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.p-top .p-top__section03 .p-top__section03__description_label {
  font-family: var(--font-en);
  font-size: calc(20px + (20 - 20) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03__description_label {
  line-height: 1.05;
  letter-spacing: 0.36em;
  font-weight: 300;
}
.p-top .p-top__section03 .p-top__section03__item {
  position: relative;
  z-index: 1;
  margin-top: calc(64px + (64px - 64px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__item.-engineer {
  flex-basis: 48%;
}
.p-top .p-top__section03 .p-top__section03__item h2 {
  position: relative;
  font-weight: bold;
  color: var(--color-blue);
  flex: 1;
}
.p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head {
  display: flex;
  align-items: center;
  gap: calc(16px + (50px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head {
  margin-bottom: calc(12px + (16px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer {
  gap: calc(16px + (20px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer .p-top__section03__item_headImg {
  width: calc(110px + (242px - 110px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_headImg {
  width: calc(125px + (242px - 125px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__img.-engineer {
  margin-top: calc(24px + (40px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03__description_link {
  cursor: pointer;
}
.p-top .p-top__section03 .p-top__section03__description_link span {
  background: linear-gradient(#2b2b2b, #2b2b2b);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}
.p-top .p-top__section03 .p-top__section03__item_button {
  margin-top: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul {
  position: relative;
  counter-reset: item 0;
  margin-top: calc(32px + (38px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul .m-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-top .p-top__section03 ul .m-icon::after {
  width: calc(10px + (12px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul .m-icon::after {
  height: calc(6px + (8px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul li {
  cursor: pointer;
  position: relative;
  padding: 10px 0;
  font-weight: bold;
  gap: calc(20px + (40px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul li {
  font-size: calc(14px + (14 - 14) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 ul li {
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-left: calc(38px + (38px - 38px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul li {
  padding-right: calc(38px + (89px - 38px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul li span {
  background: linear-gradient(#2b2b2b, #2b2b2b);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0 2px;
  transition: background-size 0.6s;
}
.p-top .p-top__section03 ul li + li {
  margin-top: calc(20px + (24px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 ul li::before {
  position: absolute;
  font-family: var(--font-en);
  font-weight: 300;
  counter-increment: item 1;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  top: 10px;
  left: 0;
  font-size: calc(18px + (18 - 18) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 ul li::before {
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.p-top .p-top__section03 .p-top__section03_engineering {
  position: relative;
  padding-top: calc(96px + (121px - 96px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering h2 {
  margin-top: calc(40px + (56px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering h2 {
  color: var(--color-blue);
}
.p-top .p-top__section03 .p-top__section03_engineering h2 span {
  font-size: calc(22px + (24 - 22) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03_engineering h2 span {
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.p-top .p-top__section03 .p-top__section03_engineering h3 {
  flex: 1;
}
.p-top .p-top__section03 .p-top__section03_engineering_headImg {
  position: relative;
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo {
  position: absolute;
  box-sizing: border-box;
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo {
  width: calc(432px + (432px - 432px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo {
  height: 100%;
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.96);
  padding-top: calc(87px + (87px - 87px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo {
  padding-bottom: calc(41px + (41px - 41px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo {
  padding-left: calc(54px + (54px - 54px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo {
  padding-right: calc(54px + (54px - 54px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo > span {
  font-weight: 300;
  font-family: var(--font-en);
  font-size: calc(18px + (20 - 18) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo > span {
  line-height: 1.05;
  letter-spacing: 0.36em;
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 span {
  font-size: calc(22px + (24 - 22) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 span {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 {
  font-size: calc(32px + (34 - 32) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 {
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: bold;
  color: var(--color-blue);
  margin-top: calc(20px + (20px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 {
  padding-bottom: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo p {
  position: relative;
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(104px + (104px - 104px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo p::before {
  height: 1px;
  background-color: var(--color-text);
  margin-bottom: calc(24px + (30px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_headInfo p {
  padding-top: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section03 .p-top__section03_engineering_text {
  margin-top: calc(24px + (30px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_mission.-body {
  background: none;
  padding-bottom: 0;
  height: calc(0px + (241px - 0px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_mission {
  position: relative;
  z-index: 2;
}
.p-top .p-top__section04 .p-top__section04_mission {
  background-image: url("/assets/img/top/img-mission-bg.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding-bottom: calc(100px + (112px - 100px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_head {
  color: var(--color-white);
  padding-top: calc(60px + (112px - 60px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_head {
  padding-bottom: calc(40px + (60px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_head {
  padding-right: calc(16px + (0px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_head {
  padding-left: calc(16px + (56px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_head h2 {
  margin-top: calc(12px + (18px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_head h2 {
  font-size: calc(24px + (40 - 24) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section04 .p-top__section04_head h2 {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-top .p-top__section04 .p-top__section04_head p {
  font-weight: 300;
  margin-top: calc(24px + (24px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_text {
  color: var(--color-blue);
  font-weight: bold;
  font-size: calc(22px + (28 - 22) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section04 .p-top__section04_text {
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: calc(8px + (8px - 8px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_textEn {
  font-weight: 300;
  color: var(--color-white);
  font-size: calc(16px + (18 - 16) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section04 .p-top__section04_textEn {
  line-height: 1;
  letter-spacing: 0.36em;
  font-family: var(--font-en);
}
.p-top .p-top__section04 .p-top__section04_body {
  position: relative;
  z-index: 1;
  padding-bottom: calc(40px + (140px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_body {
  margin-top: calc(-40px + (-70px - -40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_body {
  color: var(--color-text);
  width: 100%;
  flex-basis: 62.3%;
}
.p-top .p-top__section04 .p-top__section04_body a {
  color: var(--color-text);
}
.p-top .p-top__section04 .p-top__section04_body p {
  margin-bottom: calc(20px + (160px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_img {
  border-radius: 0 0 0 57px;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}
.p-top .p-top__section04 .p-top__section04_img.-active {
  z-index: 2;
}
.p-top .p-top__section04 .p-top__section04_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-top__section04 .p-top__section04_slide {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: calc(296px + (547px - 296px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_slide {
  overflow: hidden;
  padding-bottom: calc(16px + (30px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li {
  font-family: var(--font-en);
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li.-jp {
  font-family: var(--font);
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li button {
  cursor: pointer;
  transition: all 0.3s ease;
  padding-top: calc(4px + (6px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li button {
  padding-bottom: calc(4px + (6px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li button {
  padding-right: calc(4px + (6px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li button {
  padding-left: calc(4px + (6px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li button {
  padding: 4px;
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li button.-active {
  color: var(--color-blue);
  background-color: #f0f0f0;
}
.p-top .p-top__section04 .p-top__section04_slide_button ul li button:hover {
  color: var(--color-blue);
  background-color: #f0f0f0;
}
.p-top .p-top__section04 h2 {
  color: var(--color-white);
}
.p-top .p-top__section04 h3 {
  margin-bottom: calc(8px + (12px - 8px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul {
  counter-reset: item 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(10px + (20px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul {
  background: linear-gradient(90deg, #133783 0%, #0098d2 99.1%);
  white-space: nowrap;
  padding-top: calc(32px + (40px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul {
  padding-bottom: calc(32px + (40px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul {
  padding-right: calc(6px + (40px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul {
  padding-left: calc(6px + (40px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul li {
  position: relative;
  color: var(--color-white);
  font-size: calc(15px + (20 - 15) * (100vw - 390px) / (1440 - 390));
}
.p-top .p-top__section04 ul li {
  line-height: 1.2;
  letter-spacing: 0.02emem;
  padding-top: calc(4px + (6px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul li {
  padding-bottom: calc(4px + (6px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul li {
  padding-left: calc(10px + (13px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul li {
  font-weight: bold;
}
.p-top .p-top__section04 ul li::before {
  font-weight: 300;
  counter-increment: item 1;
  content: counter(item, decimal-leading-zero);
  padding-right: calc(0px + (14px - 0px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
}
.p-top .p-top__section04 ul li::before {
  height: 80%;
  padding-right: 2px;
}
.p-top .p-top__section04 ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 60%;
  display: block;
  background-color: var(--color-white);
  transform: translateY(-50%);
}
.p-top .p-top__section04 ul li:nth-child(3n+1)::after {
  display: none;
}
@media screen and (max-width: 767px){
  .hidden-sp {
    display: none;
  }
  .hidden-pc {
    display: block;
  }
  .m-newsCard .m-newsCard__inner {
    gap: 18px;
    flex-direction: column;
  }
  .l-contact .l-contact__btn {
    width: 100%;
    padding-right: calc(20px + (48px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(20px + (48px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-contact .l-contact__img {
    width: 91.4%;
    margin: 0 auto;
  }
  .c-contents_contents .table,
  .c-contents_contents .wp-block-flexible-table-block-table {
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    max-width: calc(100% + 32px);
    padding-bottom: 10px;
  }
  .c-contents_contents .table table,
  .c-contents_contents .wp-block-flexible-table-block-table table {
    width: auto;
    min-width: 600px;
  }
  .l-footer .l-footer__banner {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
  .p-news_detail_contents .table,
  .p-news_detail_contents .wp-block-flexible-table-block-table {
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    max-width: calc(100% + 32px);
    padding-bottom: 10px;
  }
  .p-news_detail_contents .table table,
  .p-news_detail_contents .wp-block-flexible-table-block-table table {
    width: auto;
    min-width: 600px;
  }
  .p-404 .p-404__ring {
    height: calc(492px + (500px - 492px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-404 p {
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-top .p-top__kv .p-top__kv__inner {
    position: relative;
    z-index: 1;
  }
  .p-top .p-top__kv .p-top__kv_img {
    width: 100%;
  }
  .p-top .p-top__news .p-top__news_head > div:first-child {
    display: flex;
    align-items: flex-end;
    gap: calc(12px + (12px - 12px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__news .p-top__news_item p {
    margin-top: calc(8px + (8px - 8px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    padding-left: calc(16px + (16px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(16px + (16px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item.is-active {
    padding-left: calc(2px + (2px - 2px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(2px + (2px - 2px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section02 .p-top__section02_ring {
    top: calc(36px + (232px - 36px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section02 .p-top__section02_head {
    padding-right: 0;
    padding-left: 0;
  }
  .p-top .p-top__section03 .p-top__section03__bulrbg.-engineering {
    top: 0;
  }
  .p-top .p-top__section03 .p-top__section03__description h3.-first {
    padding-top: 0;
  }
  .p-top .p-top__section03 .p-top__section03__img {
    margin-top: calc(24px + (28px - 24px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03__item_button {
    display: none;
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    display: none;
  }
  .p-top .p-top__section04 .p-top__section04_mission.-body {
    display: none;
  }
  .p-top .p-top__section04 .p-top__section04_body p {
    margin-bottom: calc(20px + (30px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_slide {
    border-bottom-left-radius: calc(90px + (90px - 90px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
}
@media screen and (min-width: 768px){
  .c-breadcrumb {
    padding: 32px 0;
  }
  .m-btn .m-btn__inner {
    gap: calc(6px + (13px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .m-btn span {
    font-size: calc(14px + (20 - 14) * (100vw - 390px) / (1440 - 390));
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .m-btn__icon {
    width: calc(46px + (66px - 46px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(22px + (44px - 22px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .m-btn__icon img {
    width: calc(10px + (14px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(6px + (10px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .m-card {
    padding: 16px 16px 32px 16px;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.0588235294);
  }
  .m-card .m-card__body {
    margin-top: 24px;
  }
  .m-card .m-card__title {
    font-size: 3rem;
  }
  .m-card .m-card__text {
    font-size: 1.8rem;
  }
  .m-newsCard {
    padding: 22px;
  }
  .m-newsCard .m-newsCard__img {
    flex-basis: 22%;
    max-height: 154px;
  }
  .m-newsCard .m-newsCard__body {
    flex-basis: 78%;
    margin-top: 16px;
  }
  .m-newsCard .m-newsCard__date {
    font-weight: 600;
  }
  .m-newsCard .m-newsCard__category {
    font-size: 1.6rem;
  }
  .m-newsCard .m-newsCard__text {
    -webkit-line-clamp: 2;
    margin-top: 24px;
    font-size: 2rem;
  }
  .m-category {
    font-size: calc(9px + (12 - 9) * (100vw - 390px) / (1440 - 390));
    line-height: 1;
    letter-spacing: 0.02em;
    padding-top: calc(5.5px + (8.5px - 5.5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(5.5px + (8.5px - 5.5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(14px + (34px - 14px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(14px + (34px - 14px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-contact {
    background-image: url("/assets/img/contact/contact-bg_pc.webp");
  }
  .l-contact .l-contact__text {
    font-size: calc(12px + (18 - 12) * (100vw - 390px) / (1440 - 390));
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .l-contact .l-contact__btn {
    font-size: calc(15px + (18 - 15) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0em;
    width: calc(200px + (468px - 200px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    border-radius: calc(42px + (56px - 42px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-top: calc(20px + (31px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(20px + (31px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(26px + (48px - 26px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(26px + (48px - 26px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .c-contents {
    padding-top: 220px;
    padding-bottom: 160px;
  }
  .c-contents .c-contents_btn {
    margin-top: 64px;
  }
  .c-contents_head time {
    width: 72px;
    font-size: 15px;
    line-height: 1.78;
  }
  .c-contents_head_category {
    margin-left: 16px;
  }
  .c-contents_contents h1 {
    margin-bottom: 64px;
    font-size: 38px;
  }
  .c-contents_contents h2 {
    margin-top: 112px;
    margin-bottom: 48px;
    padding: 24px 40px 24px 46px;
    border-radius: 0 0 40px 0;
    font-size: 26px;
  }
  .c-contents_contents .img,
  .c-contents_contents .wp-block-image {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .c-contents_contents .table table,
  .c-contents_contents .wp-block-flexible-table-block-table table {
    width: 100%;
  }
  .c-contents_contents .col2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .c-contents_contents .col3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .c-contents_contents .card {
    padding: 40px;
    border-radius: 0 0 40px 0;
  }
  .l-cta {
    display: none;
  }
  .l-footer .l-footer__logo {
    width: calc(280px + (352px - 280px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-footer .l-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: calc(10px + (32px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-footer .l-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-footer .l-footer__banner a {
    width: calc(158px + (168px - 158px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-footer .l-footer__copylight {
    margin-top: 0;
  }
  .l-header {
    padding: 19px 24px;
    height: calc(60px + (104px - 60px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-header.-show {
    padding: 14px 24px;
  }
  .l-header.-show .l-header__logo {
    width: calc(27px + (563px - 27px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-header.-top .l-header__inner {
    top: calc(27px + (47px - 27px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-header.-top.-show .l-header__logo {
    width: calc(127px + (307px - 127px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-header .l-header__inner {
    top: calc(27px + (22px - 27px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    right: calc(13px + (19px - 13px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-header .l-header__btn {
    box-sizing: border-box;
    font-size: calc(16px + (16 - 16) * (100vw - 390px) / (1440 - 390));
    line-height: 1;
    letter-spacing: 0.02em;
    padding-top: calc(25px + (25px - 25px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(25px + (25px - 25px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-header .l-header__btn .-external {
    width: calc(15px + (15px - 15px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(15px + (15px - 15px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .l-header .l-header__logo {
    width: 40%;
    max-width: 563px;
  }
  .l-header .l-header__logo img.-top {
    display: none;
  }
  .l-header .l-header__logo img.-under {
    display: block;
  }
  .l-header .l-header__flex {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  main {
    position: relative;
  }
  main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.6;
    background: linear-gradient(180deg, #d5d5d5 0%, rgba(255, 255, 255, 0) 44.41%, rgba(255, 255, 255, 0) 88.83%);
    backdrop-filter: blur(100px);
    z-index: 0;
    height: calc(150px + (269px - 150px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-news {
    padding-bottom: 160px;
  }
  .p-news_head {
    padding: 200px 0 160px;
  }
  .p-news_head::before {
    right: auto;
    left: calc(50% + 60px);
    top: -264px;
    width: 720px;
    height: 668px;
  }
  .p-news_head::after {
    bottom: -40px;
    background-image: url(/assets/img/news/head_bg_pc.webp);
    height: 240px;
  }
  .p-news_head h1 {
    text-align: center;
  }
  .p-news_head_ja {
    font-size: 4.2rem;
  }
  .p-news_head_en {
    margin-left: 24px;
  }
  .p-news_link {
    gap: 12px;
  }
  .p-news_link a {
    padding: 14px 29px 15px;
    font-size: 13px;
  }
  .p-news_link a:hover {
    background-color: var(--color-blue);
    color: #fff;
  }
  .p-news_list {
    gap: 16px;
    margin-top: 64px;
    padding-top: 16px;
  }
  .p-news_list_item {
    display: flex;
    gap: 24px;
  }
  .p-news_list_item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--color-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }
  .p-news_list_item:hover::after {
    transform: scaleX(1);
  }
  .p-news_list_item time {
    width: 72px;
    line-height: 1.78;
  }
  .p-news_list_item_category {
    margin-left: 0;
  }
  .p-news_list_item_title {
    margin: 0 0 0 8px;
    width: calc(100% - 72px - 24px - 111px - 32px);
    font-size: 16px;
  }
  .p-news_pagination {
    margin-top: 64px;
  }
  .p-news_pagination li a {
    width: 56px;
    font-size: 16px;
  }
  .p-news_pagination li a:hover {
    color: #fff;
    font-weight: 500;
  }
  .p-news_pagination li a:hover::before {
    opacity: 1;
  }
  .p-news_pagination li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, var(--color-blue) 0%, #0098d2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .p-news_pagination_prev {
    width: 8px;
    height: 14px;
  }
  .p-news_pagination_prev:hover {
    background-image: url(/assets/img/common/icon-arrow-r_blue.svg);
  }
  .p-news_pagination_next {
    width: 8px;
    height: 14px;
  }
  .p-news_pagination_next:hover {
    background-image: url(/assets/img/common/icon-arrow-r_blue.svg);
  }
  .p-news_detail {
    padding-top: 220px;
  }
  .p-news_detail_head time {
    width: 72px;
    font-size: 15px;
    line-height: 1.78;
  }
  .p-news_detail_head_category {
    margin-left: 16px;
  }
  .p-news_detail_contents h1 {
    margin-bottom: 64px;
    font-size: 38px;
  }
  .p-news_detail_contents h2 {
    margin-top: 112px;
    margin-bottom: 48px;
    padding: 24px 40px 24px 46px;
    border-radius: 0 0 40px 0;
    font-size: 26px;
  }
  .p-news_detail_contents .img,
  .p-news_detail_contents .wp-block-image {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .p-news_detail_contents .table table,
  .p-news_detail_contents .wp-block-flexible-table-block-table table {
    width: 100%;
  }
  .p-news_detail_contents .col2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .p-news_detail_contents .col3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .p-news_detail_contents .card {
    padding: 40px;
    border-radius: 0 0 40px 0;
  }
  .p-news_sns {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 112px;
    border-radius: 70px;
  }
  .p-news_sns_list {
    margin-left: 15px;
  }
  .p-news_sns_list > li .text {
    background: linear-gradient(#2b2b2b, #2b2b2b);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 0 2px;
    transition: background-size 0.6s;
  }
  .p-404 .p-404__ring {
    width: calc(400px + (720px - 400px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(400px + (667px - 400px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    background-image: url("/assets/img/404/img-404-ring.svg");
  }
  .p-404 .p-404__content::before {
    background-image: url("/assets/img/404/img-404-blur.svg");
  }
  .p-404 .p-404__title_pc {
    display: block;
    margin: 0 auto;
    width: calc(521px + (521px - 521px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-404 .p-404__title_sp {
    display: none;
  }
  .p-top .p-top__kv {
    height: calc(300px + (774px - 300px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    margin-top: calc(32px + (32px - 32px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__kv .p-top__kv_ring {
    opacity: 0.13;
    top: calc(-65px + (-65px - -65px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    width: calc(150px + (619px - 150px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    background-image: url("/assets/img/top/kv-ring_pc.svg");
  }
  .p-top .p-top__kv .p-top__kv_text {
    position: absolute;
    left: 0;
    top: calc(110px + (190px - 110px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    width: calc(300px + (1239px - 300px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__kv .p-top__kv_text img:nth-child(1) {
    width: 100%;
  }
  .p-top .p-top__kv .p-top__kv_img {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
    width: calc(178px + (853px - 178px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__news {
    background: #eee no-repeat;
    background-size: 100% 100%;
    margin-top: calc(-155px + (-155px - -155px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__news::before {
    content: "";
    position: absolute;
    top: -69px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to top, rgb(238, 238, 238) 0%, rgb(238, 238, 238) 5%, rgba(238, 238, 238, 0) 100%);
    z-index: 111;
    pointer-events: none;
  }
  .p-top .p-top__news .p-top__news_head {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-top .p-top__news .p-top__news_head > div:first-child {
    display: flex;
    gap: 8px;
    align-items: flex-end;
  }
  .p-top .p-top__news .p-top__news_head > div:first-child span {
    display: inline-block;
    font-size: calc(16px + (16 - 16) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__news .p-top__news_head > div:last-child {
    margin-top: 0;
  }
  .p-top .p-top__news .p-top__news_inner {
    gap: calc(20px + (146px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    display: flex;
  }
  .p-top .p-top__news .p-top__news_inner ul {
    width: 100%;
    flex: 1;
  }
  .p-top .p-top__news .p-top__news_item a {
    display: flex;
    align-items: flex-start;
    gap: calc(14px + (32px - 14px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__news .p-top__news_item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--color-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }
  .p-top .p-top__news .p-top__news_item p {
    flex: 1;
    font-size: calc(12px + (15 - 12) * (100vw - 390px) / (1440 - 390));
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__news .p-top__news_item:first-child {
    border-top: 1px solid #dfdfdf;
  }
  .p-top .p-top__news .p-top__news_info time {
    font-size: calc(10px + (14 - 10) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section01 {
    padding-top: 0;
  }
  .p-top .p-top__section01 .p-top__section01_lead {
    font-size: calc(15px + (19 - 15) * (100vw - 390px) / (1440 - 390));
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer {
    margin-top: 0;
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer > div:first-child {
    margin-top: calc(31px + (101px - 31px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    margin-left: calc(17px + (57px - 17px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    margin-bottom: calc(20px + (90px - 20px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    width: 39%;
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 47% !important;
    height: 90% !important;
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    justify-content: flex-start;
    padding-left: calc(17px + (57px - 17px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
    width: calc(48px + (146px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(28px + (82px - 28px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section02 .p-top__section02_ring {
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url("/assets/img/top/img-ring_pc.svg");
  }
  .p-top .p-top__section02 .p-top__section02_head {
    background-image: url("/assets/img/top/img-section02-01_pc.webp");
  }
  .p-top .p-top__section02 .p-top__section02_head .p-top__section02_head_description {
    position: absolute;
    top: 185px;
    left: 50%;
    transform: translateX(-50%);
    font-size: calc(14px + (28 - 14) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section02 .p-top__section02_list {
    margin: 0 auto;
    display: flex;
    text-align: left;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-top .p-top__section02 .p-top__section02_list h3 {
    display: inline-block;
    line-height: 1.2;
  }
  .p-top .p-top__section02 .p-top__section02_list > div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 50%;
    width: calc(300px + (664px - 300px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(300px + (664px - 300px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-top: calc(16px + (64px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(16px + (64px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(16px + (64px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(16px + (64px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    box-sizing: border-box;
  }
  .p-top .p-top__section02 .p-top__section02_list > div:nth-child(2) {
    margin-top: 0;
  }
  .p-top .p-top__section02 .p-top__section02_list > div > div > div + div {
    margin-top: calc(56px + (56px - 56px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section02 .p-top__section02_list_btn {
    position: absolute;
    margin-top: 0;
    bottom: calc(64px + (64px - 64px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    left: 50%;
    transform: translateX(-50%);
  }
  .p-top .p-top__section02 .p-top__section02_list_btn span {
    color: var(--color-white);
  }
  .p-top .p-top__section03 .p-top__section03_head {
    background-image: url("/assets/img/top/img-section03-01_pc.webp");
  }
  .p-top .p-top__section03 .p-top__section03__head_text span {
    font-size: calc(40px + (86 - 40) * (100vw - 390px) / (1440 - 390));
    line-height: 1.05;
    letter-spacing: 0.02em;
    background-color: transparent;
  }
  .p-top .p-top__section03 .p-top__section03__item_body {
    justify-content: flex-end;
  }
  .p-top .p-top__section03 .p-top__section03__item_flex {
    display: flex;
    align-items: center;
    align-items: flex-start;
    gap: calc(40px + (188px - 40px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03__item_flex > *:first-child {
    flex-basis: 55%;
  }
  .p-top .p-top__section03 .p-top__section03__item_flex > *:last-child {
    flex-basis: 52%;
  }
  .p-top .p-top__section03 .p-top__section03_head_02 {
    height: calc(700px + (810px - 700px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    background-image: url("/assets/img/top/img-section03-02_pc.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-top .p-top__section03 .p-top__section03_head_02 p {
    position: relative;
    margin-top: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-top: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03_head_02 p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(104px + (104px - 104px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: 1px;
    background-color: var(--color-text);
  }
  .p-top .p-top__section03 .p-top__section03__description {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 43.4%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    padding-top: calc(90px + (90px - 90px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(77px + (77px - 77px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(54px + (54px - 54px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(54px + (54px - 54px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03__item {
    margin-top: calc(64px + (64px - 64px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03__item.-engineer {
    margin-top: 0;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
  }
  .p-top .p-top__section03 .p-top__section03__item.-engineer p {
    font-size: calc(13px + (16 - 13) * (100vw - 390px) / (1440 - 390));
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head h2 {
    font-size: calc(24px + (48 - 24) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer h3 {
    font-size: calc(19px + (32 - 19) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer .p-top__section03__item_headImg {
    width: calc(60px + (242px - 60px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_headImg {
    width: calc(80px + (242px - 80px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03__engineering_btn {
    margin-top: calc(48px + (48px - 48px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    text-align: left;
  }
  .p-top .p-top__section03 ul li {
    padding-left: calc(33px + (33px - 33px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(38px + (89px - 38px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03__item_list {
    display: flex;
    -moz-column-gap: calc(82px + (82px - 82px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
         column-gap: calc(82px + (82px - 82px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    row-gap: calc(52px + (52px - 52px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    margin-top: calc(96px + (96px - 96px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headImg {
    height: calc(810px + (810px - 810px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headImg > div {
    height: 100%;
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headImg img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    width: 48vw;
  }
  .p-top .p-top__section04 .p-top__section04_mission {
    background-image: url("/assets/img/top/img-mission-bg_pc.webp");
  }
  .p-top .p-top__section04 .p-top__section04_mission {
    display: flex;
    gap: calc(60px + (124px - 60px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(25px + (25px - 25px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_head {
    flex-basis: 33.4%;
  }
  .p-top .p-top__section04 .p-top__section04_head h2 {
    font-size: calc(16px + (40 - 16) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section04 .p-top__section04_head p {
    font-size: calc(12px + (15 - 12) * (100vw - 390px) / (1440 - 390));
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section04 .p-top__section04_text {
    font-size: calc(7px + (28 - 7) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section04 .p-top__section04_btn {
    position: absolute;
    top: calc(1px + (18px - 1px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    right: calc(1px + (56px - 1px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__inner {
    gap: calc(6px + (13px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__icon {
    width: calc(27px + (66px - 27px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(14px + (44px - 14px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__icon img {
    width: calc(9px + (14px - 9px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    height: calc(5px + (10px - 5px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_btn span {
    font-size: calc(10px + (16 - 10) * (100vw - 390px) / (1440 - 390));
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section04 .p-top__section04_body p {
    margin-bottom: 0;
    font-size: calc(11px + (15 - 11) * (100vw - 390px) / (1440 - 390));
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .p-top .p-top__section04 .p-top__section04_body {
    margin-top: calc(10px + (10px - 10px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_slide {
    flex-basis: 62.3%;
    margin-top: calc(80px + (85px - 80px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    border-bottom-left-radius: calc(120px + (120px - 120px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_slide_button {
    top: 0;
    right: 0;
    position: absolute;
    z-index: 3;
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul {
    padding-top: calc(63px + (63px - 63px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(63px + (63px - 63px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(4px + (13px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(4px + (13px - 4px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    display: block;
    height: calc(480px + (503px - 480px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    box-sizing: border-box;
    background: url("/assets/img/top/mission-button-bg.webp") no-repeat center/100% 100%;
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li {
    font-size: calc(12px + (16 - 12) * (100vw - 390px) / (1440 - 390));
    line-height: 1;
    letter-spacing: 0.02em;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li::before {
    font-family: var(--font-en);
    padding-right: calc(6px + (6px - 6px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li::after {
    display: none;
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li + li {
    margin-top: calc(16px + (16px - 16px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li button {
    padding: 6px;
  }
}
@media screen and (min-width: 1420px){
  .m-btn .m-btn__inner {
    gap: calc(13px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn span {
    font-size: calc(20px + 20 * 0.1 * (100vw - 1440px) / 1000);
  }
  .m-btn__icon {
    width: calc(66px + (100vw - var(--pc-width)) * 0.009);
  }
  .m-btn__icon {
    height: calc(44px + (100vw - var(--pc-width)) * 0.009);
  }
  .m-btn__icon {
    border-radius: calc(22px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn__icon img {
    width: calc(20px + (100vw - var(--pc-width)) * 0.001);
  }
  .m-btn__icon img {
    height: calc(15px + (100vw - var(--pc-width)) * 0.001);
  }
  .m-btn_wrapper {
    margin-top: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round {
    border-radius: calc(42px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round {
    padding-top: calc(36px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round {
    padding-bottom: calc(36px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round {
    padding-right: calc(60px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round {
    padding-left: calc(60px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round {
    font-size: calc(20px + 20 * 0.1 * (100vw - 1440px) / 1000);
  }
  .m-btn--round .m-btn--round__inner {
    gap: calc(12px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round .-external {
    width: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn--round .-external {
    height: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-category {
    font-size: calc(12px + 12 * 0.1 * (100vw - 1440px) / 1000);
  }
  .m-category {
    padding-top: calc(8.5px + (100vw - var(--pc-width)) * 0.002);
  }
  .m-category {
    padding-bottom: calc(8.5px + (100vw - var(--pc-width)) * 0.002);
  }
  .m-category {
    padding-left: calc(34px + (100vw - var(--pc-width)) * 0.004);
  }
  .m-category {
    padding-right: calc(34px + (100vw - var(--pc-width)) * 0.004);
  }
  .m-category {
    border-radius: calc(4px + (100vw - var(--pc-width)) * 0.003);
  }
  .l-contact {
    padding-top: calc(150px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact {
    padding-bottom: calc(150px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact {
    padding-right: calc(120px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact {
    padding-left: calc(120px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__inner {
    padding-top: calc(90px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__inner {
    padding-bottom: calc(90px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__inner {
    padding-right: calc(100px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__inner {
    padding-left: calc(100px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__text {
    margin-top: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__text {
    margin-bottom: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__text {
    font-size: calc(18px + 18 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-cta .l-cta__btn span {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-cta .l-cta__btn .-external {
    width: calc(15px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-cta .l-cta__btn .-external {
    height: calc(15px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-cta .l-cta__nav_list li {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-cta .l-cta__nav_list .l-cta__nav_list_head_item span:nth-child(1) {
    font-size: calc(10px + 10 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-cta .l-cta__nav_list .l-cta__nav_list_head_item span:nth-child(2) {
    font-size: calc(15px + 15 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-footer .l-footer__inner {
    padding-top: calc(88px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__inner {
    padding-bottom: calc(88px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__inner {
    padding-right: calc(120px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__inner {
    padding-left: calc(120px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__address {
    margin-top: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__address {
    font-size: calc(14px + 14 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-footer .l-footer__text {
    margin-top: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__text {
    font-size: calc(11px + 11 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-footer .l-footer__bottom {
    padding-top: calc(28px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__bottom {
    padding-bottom: calc(28px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__bottom {
    padding-right: calc(120px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__bottom {
    padding-left: calc(120px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__bottom_link {
    gap: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__bottom_link a {
    font-size: calc(14px + 14 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-footer .l-footer__banner {
    margin-top: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__banner {
    gap: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__copylight {
    margin-top: calc(24px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__copylight {
    font-size: calc(12px + 12 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-header.-show .l-header__logo {
    width: calc(307px + (100vw - var(--pc-width)) * 0.1);
  }
  .l-header.-top .l-header__inner.-scroll {
    top: calc(18px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header.-top.-show .l-header__logo {
    width: calc(307px + (100vw - var(--pc-width)) * 0.1);
  }
  .l-header .l-header__inner.-scroll {
    top: calc(18px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__nav {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-header .l-header__nav {
    padding-right: calc(48px + (100vw - var(--pc-width)) * 0.01);
  }
  .l-header .l-header__nav {
    padding-left: calc(48px + (100vw - var(--pc-width)) * 0.01);
  }
  .l-header .l-header__nav {
    border-radius: calc(34px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-header .l-header__nav li {
    padding-top: calc(24px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__nav li {
    padding-bottom: calc(24px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__nav_pulldown .l-header__nav_pulldown_item p {
    font-size: calc(10px + 10 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-header .l-header__nav_pulldown .l-header__nav_pulldown_item span {
    font-size: calc(15px + 15 * 0.1 * (100vw - 1440px) / 1000);
  }
  .m-icon {
    width: calc(40px + (100vw - var(--pc-width)) * 0.001);
  }
  .m-icon {
    height: calc(40px + (100vw - var(--pc-width)) * 0.001);
  }
  .u-section {
    padding-right: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .u-section {
    padding-left: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .c-text {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .c-text--large {
    font-size: calc(22px + 22 * 0.1 * (100vw - 1440px) / 1000);
  }
  .c-text--small {
    font-size: calc(14px + 14 * 0.1 * (100vw - 1440px) / 1000);
  }
  .c-text--heading {
    font-size: calc(42px + 42 * 0.1 * (100vw - 1440px) / 1000);
  }
  .c-text--heading--large {
    font-size: calc(48px + 48 * 0.1 * (100vw - 1440px) / 1000);
  }
  .c-text--heading--medium {
    font-size: calc(32px + 32 * 0.1 * (100vw - 1440px) / 1000);
  }
  .c-text--heading--small {
    font-size: calc(32px + 32 * 0.1 * (100vw - 1440px) / 1000);
  }
  .c-text--caption {
    font-size: calc(14px + 14 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-404 {
    height: calc(700px + (100vw - var(--pc-width)) * 0.01);
  }
  .p-404 {
    padding-bottom: calc(70px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 .p-404__ring {
    top: calc(65px + (100vw - var(--pc-width)) * 0.01);
  }
  .p-404 .p-404__inner {
    padding-top: calc(238px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 .p-404__title_sp img:first-child {
    width: calc(156px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 .p-404__title_sp img:last-child {
    width: calc(193px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 .p-404_btn {
    margin-top: calc(72px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 p {
    margin-top: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 p {
    font-size: calc(19px + 19 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top {
    padding-top: calc(150px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top::before {
    height: calc(269px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv {
    padding-bottom: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_text {
    width: 87% !important;
  }
  .p-top .p-top__kv .p-top__kv_text {
    margin-left: calc(57px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_text img:nth-child(2) {
    margin-top: calc(10px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_text img:nth-child(3) {
    margin-top: calc(10px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_text img:nth-child(4) {
    margin-top: calc(10px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_img {
    margin-top: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_img {
    width: 58% !important;
  }
  .p-top .p-top__news {
    padding-top: calc(95px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news {
    padding-bottom: calc(95px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_head > div:first-child span {
    margin-bottom: calc(10px + (100vw - var(--pc-width)) * 0.002);
  }
  .p-top .p-top__news .p-top__news_head {
    gap: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_inner {
    padding-right: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_inner {
    padding-left: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_inner {
    flex-basis: 100%;
  }
  .p-top .p-top__news .p-top__news_inner ul {
    width: 100%;
    flex: 1;
  }
  .p-top .p-top__news .p-top__news_item {
    padding-top: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_item {
    padding-bottom: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_info {
    gap: calc(14px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 {
    padding-top: calc(0px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 h2 {
    font-size: calc(24px + 24 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section01 .p-top__section01_lead {
    margin-top: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_lead {
    font-size: calc(19px + 19 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section01 .p-top__section01_img {
    margin-top: calc(50px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer {
    margin-top: calc(0px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide {
    width: 47% !important;
    height: 90% !important;
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    gap: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    padding-top: calc(24px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    padding-bottom: calc(24px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
    width: calc(146px + (100vw - var(--pc-width)) * 0.03);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
    height: calc(82px + (100vw - var(--pc-width)) * 0.03);
  }
  .p-top .p-top__section02 h3::before {
    padding-right: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 h3 {
    padding-top: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 h3 {
    padding-bottom: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 h3 {
    padding-left: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 h3 {
    padding-right: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_head {
    padding-top: calc(128px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_head {
    padding-bottom: calc(49px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_head {
    padding-right: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_head {
    padding-left: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_head h2 {
    font-size: calc(24px + 24 * 0.4 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section02 .p-top__section02_head h2 {
    padding-left: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_head h2:before {
    width: calc(26px + (100vw - var(--pc-width)) * 0.006);
  }
  .p-top .p-top__section02 .p-top__section02_head h2:before {
    height: calc(26px + (100vw - var(--pc-width)) * 0.006);
  }
  .p-top .p-top__section02 .p-top__section02_head p {
    padding-top: calc(18px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_head p {
    font-size: calc(28px + 28 * 0.6 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section02 .p-top__section02_head .p-top__section02_head_description {
    top: calc(185px + (185px - 185px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
  }
  .p-top .p-top__section02 .p-top__section02_list {
    padding-top: calc(80px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_list {
    padding-bottom: calc(70px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_list p.p-top__section02_list_text {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section02 .p-top__section02_list h3 {
    padding-left: calc(6px + (100vw - var(--pc-width)) * 0.009);
  }
  .p-top .p-top__section02 .p-top__section02_list p {
    padding-top: calc(16px + (100vw - var(--pc-width)) * 0.009);
  }
  .p-top .p-top__section02 .p-top__section02_list p {
    padding-left: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_list p {
    font-size: calc(16px + 16 * 0.7 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section02 .p-top__section02_list > *:not(:first-child) {
    margin-top: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 {
    padding-bottom: calc(160px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head {
    padding-top: calc(195px + (100vw - var(--pc-width)) * 0.2);
  }
  .p-top .p-top__section03 .p-top__section03_head {
    padding-bottom: calc(195px + (100vw - var(--pc-width)) * 0.2);
  }
  .p-top .p-top__section03 .p-top__section03_head {
    padding-right: calc(150px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head {
    padding-left: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head p {
    font-size: calc(24px + 24 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03_head_label {
    padding-top: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_label {
    padding-bottom: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_label {
    padding-right: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_label {
    padding-left: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_label {
    font-size: calc(20px + 20 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__head_text {
    margin-top: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__head_text span {
    font-size: calc(86px + 86 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__head_text span + span {
    margin-top: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
    padding-top: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
    padding-bottom: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
    padding-right: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
    padding-left: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 .p-top__section03_head_02_label {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__text {
    margin-top: calc(28px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description_container {
    padding-left: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description_container {
    padding-right: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description_container {
    padding-bottom: calc(114px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description {
    padding-top: calc(60px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description h3 {
    padding-top: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description h3 span {
    font-size: calc(24px + 24 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__description {
    width: 30.4% !important;
  }
  .p-top .p-top__section03 .p-top__section03__description_label {
    font-size: calc(20px + 20 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__item {
    margin-top: calc(64px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head {
    gap: calc(50px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head {
    margin-bottom: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer {
    gap: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer .p-top__section03__item_headImg {
    width: calc(242px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_headImg {
    width: calc(242px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__img.-engineer {
    margin-top: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__img {
    width: 100%;
  }
  .p-top .p-top__section03 .p-top__section03__item_button {
    margin-top: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul {
    margin-top: calc(38px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul .m-icon::after {
    width: calc(12px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul .m-icon::after {
    height: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul li {
    gap: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul li {
    font-size: calc(14px + 14 * 0.4 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 ul li {
    padding-left: calc(38px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul li {
    padding-right: calc(89px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul li + li {
    margin-top: calc(24px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul li::before {
    font-size: calc(18px + 18 * 0.4 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03_engineering {
    padding-top: calc(121px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering h2 {
    margin-top: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering h2 span {
    font-size: calc(24px + 24 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    width: calc(432px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    width: 30% !important;
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    padding-top: calc(87px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    padding-bottom: calc(41px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    padding-left: calc(54px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo {
    padding-right: calc(54px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo > span {
    font-size: calc(20px + 20 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 span {
    font-size: calc(24px + 24 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 {
    font-size: calc(34px + 34 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 {
    margin-top: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo h2 {
    padding-bottom: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo p::before {
    width: calc(104px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo p::before {
    margin-bottom: calc(30px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headInfo p {
    padding-top: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_text {
    margin-top: calc(30px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_mission.-body {
    height: calc(241px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_mission {
    padding-bottom: calc(112px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_head {
    padding-top: calc(112px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_head {
    padding-bottom: calc(60px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_head {
    padding-right: calc(0px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_head {
    padding-left: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_head h2 {
    margin-top: calc(18px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_head h2 {
    font-size: calc(40px + 40 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_head p {
    margin-top: calc(24px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_text {
    font-size: calc(28px + 28 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_text {
    margin-bottom: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_textEn {
    font-size: calc(18px + 18 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_body {
    padding-bottom: calc(140px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_body {
    margin-top: calc(-70px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_body p {
    margin-bottom: calc(160px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide {
    height: calc(547px + (100vw - var(--pc-width)) * 0.4);
  }
  .p-top .p-top__section04 .p-top__section04_slide {
    padding-bottom: calc(30px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li button {
    padding-top: calc(6px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li button {
    padding-bottom: calc(6px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li button {
    padding-right: calc(6px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li button {
    padding-left: calc(6px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 h3 {
    margin-bottom: calc(12px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul {
    gap: calc(20px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul {
    padding-top: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul {
    padding-bottom: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul {
    padding-right: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul {
    padding-left: calc(40px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul li {
    font-size: calc(20px + 20 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 ul li {
    padding-top: calc(6px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul li {
    padding-bottom: calc(6px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul li {
    padding-left: calc(13px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 ul li::before {
    padding-right: calc(14px + (100vw - var(--pc-width)) * 0.02);
  }
}
@media screen and (min-width: 768px) and (min-width: 1420px){
  .m-btn .m-btn__inner {
    gap: calc(13px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn span {
    font-size: calc(20px + 20 * 0.1 * (100vw - 1440px) / 1000);
  }
  .m-btn__icon {
    width: calc(66px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn__icon {
    height: calc(44px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn__icon img {
    width: calc(14px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-btn__icon img {
    height: calc(10px + (100vw - var(--pc-width)) * 0.02);
  }
  .m-category {
    font-size: calc(12px + 12 * 0.1 * (100vw - 1440px) / 1000);
  }
  .m-category {
    padding-top: calc(8.5px + (100vw - var(--pc-width)) * 0.002);
  }
  .m-category {
    padding-bottom: calc(8.5px + (100vw - var(--pc-width)) * 0.002);
  }
  .m-category {
    padding-left: calc(34px + (100vw - var(--pc-width)) * 0.004);
  }
  .m-category {
    padding-right: calc(34px + (100vw - var(--pc-width)) * 0.004);
  }
  .l-contact .l-contact__text {
    font-size: calc(18px + 18 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-contact .l-contact__btn {
    font-size: calc(18px + 18 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-contact .l-contact__btn {
    width: calc(468px + (100vw - var(--pc-width)) * 0.1);
  }
  .l-contact .l-contact__btn {
    border-radius: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__btn {
    padding-top: calc(31px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__btn {
    padding-bottom: calc(31px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__btn {
    padding-right: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__btn {
    padding-left: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__logo {
    width: calc(352px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__inner {
    gap: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-footer .l-footer__banner a {
    width: calc(168px + (100vw - var(--pc-width)) * 0.1);
  }
  .l-header {
    height: calc(104px + (100vw - var(--pc-width)) * 0.04);
  }
  .l-header.-show .l-header__logo {
    width: calc(563px + (100vw - var(--pc-width)) * 0.1);
  }
  .l-header.-top .l-header__inner {
    top: calc(47px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header.-top.-show .l-header__logo {
    width: calc(307px + (100vw - var(--pc-width)) * 0.1);
  }
  .l-header .l-header__inner {
    top: calc(22px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__inner {
    right: calc(19px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__btn {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .l-header .l-header__btn {
    padding-top: calc(25px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__btn {
    padding-bottom: calc(25px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__btn {
    padding-right: calc(48px + (100vw - var(--pc-width)) * 0.01);
  }
  .l-header .l-header__btn {
    padding-left: calc(48px + (100vw - var(--pc-width)) * 0.01);
  }
  .l-header .l-header__btn .-external {
    width: calc(15px + (100vw - var(--pc-width)) * 0.005);
  }
  .l-header .l-header__btn .-external {
    height: calc(15px + (100vw - var(--pc-width)) * 0.005);
  }
  main::before {
    height: calc(269px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 .p-404__ring {
    width: calc(720px + (100vw - var(--pc-width)) * 0.01);
  }
  .p-404 .p-404__ring {
    height: calc(667px + (100vw - var(--pc-width)) * 0.01);
  }
  .p-404 .p-404__title_pc {
    width: calc(521px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv {
    height: calc(774px + (100vw - var(--pc-width)) * 0.4);
  }
  .p-top .p-top__kv {
    margin-top: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_ring {
    top: calc(-65px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_ring {
    width: calc(619px + (100vw - var(--pc-width)) * 0.45);
  }
  .p-top .p-top__kv .p-top__kv_text {
    top: calc(190px + (100vw - var(--pc-width)) * 0.15);
  }
  .p-top .p-top__kv .p-top__kv_text {
    width: calc(1239px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__kv .p-top__kv_img {
    width: calc(853px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news {
    margin-top: calc(-155px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_head > div:first-child span {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__news .p-top__news_inner {
    gap: calc(146px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_item a {
    gap: calc(32px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__news .p-top__news_item p {
    font-size: calc(15px + 15 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__news .p-top__news_info time {
    font-size: calc(14px + 14 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section01 .p-top__section01_lead {
    font-size: calc(19px + 19 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer > div:first-child {
    margin-top: calc(101px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer > div:first-child {
    margin-left: calc(57px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer > div:first-child {
    margin-bottom: calc(90px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    padding-left: calc(57px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
    width: calc(146px + (100vw - var(--pc-width)) * 0.03);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item {
    height: calc(82px + (100vw - var(--pc-width)) * 0.03);
  }
  .p-top .p-top__section02 .p-top__section02_head .p-top__section02_head_description {
    font-size: calc(28px + 28 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section02 .p-top__section02_list > div {
    width: calc(664px + (100vw - var(--pc-width)) * 0.6);
  }
  .p-top .p-top__section02 .p-top__section02_list > div {
    height: calc(664px + (100vw - var(--pc-width)) * 0.6);
  }
  .p-top .p-top__section02 .p-top__section02_list > div {
    padding-top: calc(64px + (100vw - var(--pc-width)) * 0.06);
  }
  .p-top .p-top__section02 .p-top__section02_list > div {
    padding-bottom: calc(64px + (100vw - var(--pc-width)) * 0.06);
  }
  .p-top .p-top__section02 .p-top__section02_list > div {
    padding-right: calc(64px + (100vw - var(--pc-width)) * 0.06);
  }
  .p-top .p-top__section02 .p-top__section02_list > div {
    padding-left: calc(64px + (100vw - var(--pc-width)) * 0.06);
  }
  .p-top .p-top__section02 .p-top__section02_list > div > div > div + div {
    margin-top: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_list_btn {
    bottom: calc(64px + (100vw - var(--pc-width)) * 0.13);
  }
  .p-top .p-top__section03 .p-top__section03__head_text span {
    font-size: calc(86px + 86 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__item_flex {
    gap: calc(188px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 {
    height: calc(810px + (100vw - var(--pc-width)) * 0.4);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 p {
    margin-top: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 p {
    padding-top: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_head_02 p::before {
    width: calc(104px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description {
    padding-top: calc(90px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description {
    padding-bottom: calc(77px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description {
    padding-right: calc(54px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__description {
    padding-left: calc(54px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item {
    margin-top: calc(64px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item.-engineer p {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head h2 {
    font-size: calc(48px + 48 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer h3 {
    font-size: calc(32px + 32 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_head.-engineer .p-top__section03__item_headImg {
    width: calc(242px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item .p-top__section03__item_headImg {
    width: calc(242px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__engineering_btn {
    margin-top: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 ul li {
    padding-left: calc(33px + (100vw - var(--pc-width)) * 0.009);
  }
  .p-top .p-top__section03 ul li {
    padding-right: calc(89px + (100vw - var(--pc-width)) * 0.0091);
  }
  .p-top .p-top__section03 .p-top__section03__item_list {
    -moz-column-gap: calc(82px + (100vw - var(--pc-width)) * 0.02);
         column-gap: calc(82px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item_list {
    row-gap: calc(52px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__item_list {
    margin-top: calc(96px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03_engineering_headImg {
    height: calc(810px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_mission {
    gap: calc(124px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_mission {
    padding-bottom: calc(25px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_head h2 {
    font-size: calc(40px + 40 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_head p {
    font-size: calc(15px + 15 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_text {
    font-size: calc(28px + 28 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_btn {
    top: calc(18px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_btn {
    right: calc(56px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__inner {
    gap: calc(13px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__icon {
    width: calc(66px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__icon {
    height: calc(44px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__icon img {
    width: calc(14px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_btn .m-btn__icon img {
    height: calc(10px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_btn span {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_body p {
    font-size: calc(15px + 15 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_body {
    margin-top: calc(10px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide {
    margin-top: calc(85px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide {
    border-bottom-left-radius: calc(120px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul {
    padding-top: calc(63px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul {
    padding-bottom: calc(63px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul {
    padding-right: calc(13px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul {
    padding-left: calc(13px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul {
    height: calc(503px + (100vw - var(--pc-width)) * 0.1);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li {
    font-size: calc(16px + 16 * 0.1 * (100vw - 1440px) / 1000);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li::before {
    padding-right: calc(6px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide_button ul li + li {
    margin-top: calc(16px + (100vw - var(--pc-width)) * 0.006);
  }
}
@media (hover: hover) and (pointer: fine){
  .m-btn--round:hover {
    background-color: rgba(0, 152, 210, 0.85);
  }
  .m-btn--round:hover::before {
    animation: animation-hover 1.3s forwards;
  }
  .m-card:hover .m-card__img img {
    transform: scale(1.05);
  }
  .m-card:hover .m-card__title span {
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .m-newsCard:hover .m-newsCard__img img {
    transform: scale(1.05);
  }
  .m-newsCard:hover .m-newsCard__text span {
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .l-footer .l-footer__bottom_link a:hover > span {
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .l-header .l-header__nav li:hover .-hoverText,
  .l-header .l-header__nav li:hover > span {
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .l-header .l-header__nav_pulldown .l-header__nav_pulldown_item:hover span {
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .p-news_sns_list > li a:hover .text,
  .p-news_sns_list > li button:hover .text {
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .p-top .p-top__section03 .p-top__section03__description_link:hover span {
    background-position: left bottom;
    background-size: 100% 2px;
  }
  .p-top .p-top__section03 ul li:hover span {
    background-position: left bottom;
    background-size: 100% 2px;
  }
}
@media screen and (max-width: 767px) and (min-width: 1420px){
  .l-contact .l-contact__btn {
    padding-right: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .l-contact .l-contact__btn {
    padding-left: calc(48px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-404 .p-404__ring {
    height: calc(500px + (100vw - var(--pc-width)) * 0.01);
  }
  .p-top .p-top__news .p-top__news_head > div:first-child {
    gap: calc(12px + (100vw - var(--pc-width)) * 0.002);
  }
  .p-top .p-top__news .p-top__news_item p {
    margin-top: calc(8px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    padding-left: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb {
    padding-right: calc(16px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item.is-active {
    padding-left: calc(2px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section01 .p-top__section01_slideContainer .p-top__section01_slide_thumb .p-top__section01_slide_thumb_item.is-active {
    padding-right: calc(2px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section02 .p-top__section02_ring {
    top: calc(232px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section03 .p-top__section03__img {
    margin-top: calc(28px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_body p {
    margin-bottom: calc(30px + (100vw - var(--pc-width)) * 0.02);
  }
  .p-top .p-top__section04 .p-top__section04_slide {
    border-bottom-left-radius: calc(90px + (100vw - var(--pc-width)) * 0.02);
  }
}
@media screen and (max-width: 1364px) and (min-width: 1341px){
  .l-footer .l-footer__banner {
    width: 47vw;
  }
}
@media screen and (max-width: 1341px) and (min-width: 1299px){
  .l-footer .l-footer__banner {
    width: 530px;
  }
}
@media screen and (max-width: 1299px) and (min-width: 1220px){
  .l-footer .l-footer__banner {
    width: 534px;
  }
}
@media screen and (max-width: 1220px) and (min-width: 1071px){
  .l-footer .l-footer__banner {
    width: 50vw;
  }
}
@media screen and (max-width: 1071px) and (min-width: 967px){
  .l-footer .l-footer__banner {
    width: 344px;
  }
}
@media screen and (max-width: 967px) and (min-width: 768px){
  .l-footer .l-footer__banner {
    width: 438px;
  }
}
@media screen and (min-width: 1420px) and (min-width: 1420px){
  .p-top .p-top__section02 .p-top__section02_head .p-top__section02_head_description {
    top: calc(185px + (100vw - var(--pc-width)) * 0.02);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px){
  .p-top .p-top__section02 .p-top__section02_list h3 {
    padding-top: calc(2px + (4px - 2px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-bottom: calc(2px + (4px - 2px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-right: calc(2px + (6px - 2px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    padding-left: calc(2px + (6px - 2px) * (100vw - var(--sp-width)) / (var(--pc-width) - var(--sp-width)));
    font-size: calc(13px + (22 - 13) * (100vw - 390px) / (1440 - 390));
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (min-width: 1420px){
  .p-top .p-top__section02 .p-top__section02_list h3 {
    padding-top: calc(4px + (100vw - var(--pc-width)) * 0.009);
  }
  .p-top .p-top__section02 .p-top__section02_list h3 {
    padding-bottom: calc(4px + (100vw - var(--pc-width)) * 0.009);
  }
  .p-top .p-top__section02 .p-top__section02_list h3 {
    padding-right: calc(6px + (100vw - var(--pc-width)) * 0.009);
  }
  .p-top .p-top__section02 .p-top__section02_list h3 {
    padding-left: calc(6px + (100vw - var(--pc-width)) * 0.009);
  }
  .p-top .p-top__section02 .p-top__section02_list h3 {
    font-size: calc(22px + 22 * 0.5 * (100vw - 1440px) / 1000);
  }
}