@charset "UTF-8";

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 120rem;
  --content-both_space: 2rem;
  --header_height: 90px;
  --waves_height: 60px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* -------------------------------------------*/
/* -------------------------------------------*/
html {
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  font-size: 62.5%;
  overflow: auto;
}

body {
  color: #353d47;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', '游ゴシック', YuGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  height: 100%;
  height: 100%;
  letter-spacing: 0em;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}

body.single {
  overflow: clip !important;
}

body.is-open::before {
  opacity: 0.95;
  visibility: visible;
}

body::before {
  background-color: #353c46;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  margin: 0 calc(50% - 50vw);
  opacity: 0;
  position: absolute;
  top: 0;
  transition-duration: 0.5s;
  transition-property: opacity, visibility;
  visibility: hidden;
  width: 100vw;
  z-index: -1;
  z-index: 50;
}

[tabindex='-1']:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
  line-height: 1.2;
}

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

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  background-color: transparent;
  border: none;
  border: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  position: relative;
  vertical-align: middle;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}

input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

.pc-only-inline {
  display: inline;
}

.sp-only-inline {
  display: none;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
input[type='text'],
input[type='date'],
input[type='password'],
input[type='email'],
input[type='time'],
input[type='tel'],
input[type='number'] {
  border: none;
  border: none;
  border: none;
  border-radius: 5px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 17px 18px;
  position: relative;
  width: 100%;
}

input[type='number'] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  border: none;
  border: none;
  border-radius: 5px;
  height: 300px;
  letter-spacing: 0.1em;
  padding: 10px;
  position: relative;
  width: 100%;
}

input[type='text']:disabled {
  background: transparent;
  cursor: not-allowed;
}

input[type='text']:disabled::-moz-placeholder {
  color: #039ddc;
  opacity: 1;
}

input[type='text']:disabled::placeholder {
  color: #039ddc;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type='radio'] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type='radio'] + .mwform-radio-field-text {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  position: relative;
  transition: 0.5;
  transition-property: color;
  vertical-align: middle;
}

input[type='radio'] + .mwform-radio-field-text::before {
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  content: '';
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease;
  width: 20px;
  z-index: 2;
}

input[type='radio'] + .mwform-radio-field-text::after {
  background-color: #0058ea;
  border-radius: 50%;
  box-sizing: border-box;
  content: '';
  display: block;
  height: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  z-index: 5;
}

input[type='radio']:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type='checkbox'] {
  opacity: 0;
  vertical-align: middle;
}

input[type='checkbox'] + label {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 0 0 0 35px;
  position: relative;
  transition: 0.5;
  transition-property: color;
}

input[type='checkbox'] + label::before {
  background: #fff;
  background: #fff;
  border: 2px #818181 solid;
  border: 2px solid #c2c2c2;
  border-radius: 4px;
  box-sizing: border-box;
  content: '';
  height: 24px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  z-index: 2;
}

input[type='checkbox'] + label::after {
  border-bottom: 3px solid #039ddc;
  border-left: 3px solid #039ddc;
  content: '';
  display: block;
  height: 5px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  width: 10px;
  z-index: 3;
}

input[type='checkbox']:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  border: 1px #039ddc solid;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.select-parts::after {
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  content: '';
  height: 10px;
  margin-top: 2px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  z-index: 5;
}

.select-parts select {
  background: #fbefe3;
  border: none;
  border: none;
  box-shadow: none;
  color: #7f7f7f;
  cursor: pointer;
  font-size: 2rem;
  height: 45px;
  letter-spacing: 0.1em;
  padding: 0 20px 0 15px;
  position: relative;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
}

/**
 * file
 *
 */
input[type='file'] + label {
  margin: 0 10px 0 0;
  padding: 15px 0;
  width: 160px;
}

input[type='file'] + label:after {
  left: 170px;
}

p.p-top-contactprivacy-poricy-label {
  margin-left: -1.5rem;
}

select {
  background: #fff;
  border: 0.2rem solid #d9d9d9 !important;
  border-radius: 0.4rem;
  padding: 0.4rem 1.8rem !important;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/header_arrow_b.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 0.5em 0.5em;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-cta {
  padding-block: 12.7rem 18.8rem;
  position: relative;
  z-index: 1;
}

.l-cta::before {
  background-image: url(../images/common/recruit_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.l-cta__inner.u-con--md {
  position: relative;
}

.l-cta__box {
  position: relative;
}

.l-cta__box::before {
  aspect-ratio: 50/33;
  background-image: url(../images/common/cta_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  left: -2rem;
  position: absolute;
  top: 3.8rem;
  transform: translateX(-100%);
  width: 12.5rem;
}

.l-cta .c-primary-title {
  color: #fff;
  width: 20rem;
}

.l-cta__text {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 5.5rem;
}

.l-cta__text + .l-cta__text {
  margin-top: 3.5rem;
}

.l-cta__btn {
  opacity: 1 !important;
  position: absolute;
  right: 0;
  top: 45%;
  transform: none !important;
}

.l-cta .c-btn {
  border-radius: 5rem;
  padding-block: 7.2rem;
  width: 50rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-footer {
  background-color: #222222;
  color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 9rem 12rem 1.2rem;
}

.l-footer__contents {
  display: grid;
  grid-template-columns: 24.7rem 1fr;
  margin-bottom: 5rem;
  margin-top: 2.4rem;
}

.l-footer__contents-address {
  border-right: 1px solid #9b9b9b;
  padding-right: 6rem;
}

.l-footer__contents-address-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}

.l-footer__contents-address-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1rem;
}

.l-footer__contents__nav {
  display: grid;
  gap: 6.6rem;
  grid-template-columns: repeat(5, 1fr);
  padding-left: 5.4rem;
}

.l-footer__contents__nav li {
  display: flex;
  flex-flow: column;
  gap: 1.8rem;
}

.l-footer__contents__nav-link {
  transition: 0.3s;
  width: 125%;
}

.l-footer__contents__nav-link .l-footer__contents__nav-link-head {
  border-bottom: 3px solid #fff;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 0.3rem;
  transition: 0.3s;
}

.l-footer__contents__nav-link .l-footer__contents__nav-link-learge {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.copyright {
  font-size: 1.2rem;
  text-align: right;
}

.l-footer__contents-address-list {
  margin-top: 2rem;
}

.l-footer__contents-head-sp figure {
  height: 100%;
  width: 20rem;
}

.footer_logo {
  background: #fff;
}

.l-footer__logo-link {
  display: inline-block;
  padding: 0.5rem 1rem 0.2rem 1rem;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-header {
  width: 100%;
  z-index: 999;
}

.l-header::after {
  background-color: #fff;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 1s;
  z-index: -1;
}

.l-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.l-header__logo {
  display: block;
  height: 100%;
  z-index: 55;
}

.l-header__trigger {
  padding-right: 2rem;
  position: relative;
  position: fixed;
  right: 0rem;
  top: 1rem;
  z-index: 200;
}

.l-header__trigger-inner {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 4rem;
  justify-content: center;
  position: relative;
  top: 0.5rem;
  width: 3.8rem;
  z-index: 203;
}

.l-header__trigger-wrap {
  display: inline-block;
  height: 33.5px;
  position: relative;
  transition: all 0.4s;
  width: 40px;
}

.l-header__trigger-line {
  background-color: #ffffff;
  display: inline-block;
  height: 2px;
  left: 0;
  mix-blend-mode: difference;
  position: absolute;
  transition: 0.5s;
  transition-property: transform;
  width: 42px;
  z-index: 204;
}

.l-header__trigger-line.icon-is-active {
  background-color: #fff;
}

.l-header__trigger-line:nth-of-type(1) {
  top: 0.1rem;
}

.l-header__trigger-line:nth-of-type(1).icon-is-active {
  transform: translateY(1rem) rotate(22deg);
}

.l-header__trigger-line:nth-of-type(2) {
  top: 15px;
}

.l-header__trigger-line:nth-of-type(2).icon-is-active {
  transform: translateY(-0.5rem) rotate(-22deg);
}

.l-header__trigger-line:nth-of-type(3) {
  bottom: 8px;
}

.l-header__trigger-line:nth-of-type(3).icon-is-active {
  opacity: 0;
}

.l-header__trigger-comm {
  bottom: 0;
  color: #575e67;
  height: 100%;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
}

.l-header__trigger-comm .close {
  font-size: 0.9rem;
  left: 50%;
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
}

.l-header__trigger-comm.is-active .close {
  color: #fff;
  opacity: 1;
}

.l-header__trigger-comm.is-active .open {
  opacity: 0;
}

.l-header__logo-link {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 8rem;
  justify-content: center;
  max-width: 25rem;
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  padding-top: 1rem;
  top: 0;
  width: 90%;
}

.l-header__logo-link img {
  height: auto;
  width: 100%;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-wrapper {
  position: relative;
  text-align: left;
  width: 100%;
}

.l-main {
  position: relative;
  width: 100%;
}

.l-main__inner {
  padding: 0 var(--content-both_space);
  position: relative;
  width: 100%;
  z-index: 1;
}

.l-main--404,
.l-main--error {
  padding-block: 22rem 22.5rem;
}

.l-main--404 h1,
.l-main--error h1 {
  margin-inline: auto;
  width: 47rem;
}

.l-main--404 .error-text,
.l-main--error .error-text {
  font-size: 1.7rem;
  margin-top: 7.5rem;
  text-align: center;
}

.l-main--404 .error-link,
.l-main--error .error-link {
  display: block;
  font-feature-settings: 'palt';
  font-size: 1.7rem;
  margin: 7.5rem auto 0;
  padding-bottom: 0.3rem;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.l-main--404 .error-link::after,
.l-main--error .error-link::after {
  background: linear-gradient(to right, #039ddc, #0058ea);
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.l-main--404 .l-main__inner,
.l-main--error .l-main__inner {
  padding: 120px 0;
}

.l-main--404 .c-button,
.l-main--error .c-button {
  margin: 40px auto 0;
}

.no-link {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.no-link--ba {
  pointer-events: none !important;
}

.no-link--ba::before,
.no-link--ba::after {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

html.android .p-topsec01__box .c-primary-title span,
html.android .c-primary-title.--02 .grad,
html.android .p-3minsec01__h3 span,
html.android .c-btn--recruit.white span,
html.android .c-primary-title02__ja,
html.android .c-grad {
  -webkit-text-fill-color: inherit !important;
  background: transparent !important;
  color: #0058ea !important;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
body.is-open .l-navi {
  opacity: 1;
  visibility: visible;
}

.l-navi__left {
  padding: 0 2rem;
}

.l-navi {
  background-color: #151515;
  display: flex;
  height: 8rem;
  z-index: 70;
}

.l-navi__menu {
  display: flex;
  gap: 3.5rem;
}

.l-navi__menu-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.l-navi__menu-link {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  text-align: center;
  z-index: 10;
}

.l-navi__menu-link--img {
  width: 99px;
  padding: 0 14px !important;
}

.l-navi__menu-link--img img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.l-navi__left {
  display: flex;
  position: relative;
}

.l-navi__menu {
  color: #fff;
}

.l-navi__menu:hover {
  color: #151515;
}
.l-navi__menu:hover .l-navi__menu-link--img img {
  filter: none;
}

.l-header__inner {
  height: 8rem;
}

.l_navi__menu-drop {
  background-color: #f8f8f8;
  box-sizing: border-box;
  color: #151515;
  padding: 3rem 1rem 3.8rem 1rem;
}

.l_navi__menu-drop .l-navi__menu-drop-item {
  display: flex;
}

.l_navi__menu-drop .l-navi__menu-drop-item li {
  padding: 0 3.2rem;
}

.l_navi__menu-drop .l-navi__menu-drop-item li a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}

.l-navi__menu:nth-of-type(3) .l-navi__menu-item .l_navi__menu-drop .l-navi__menu-drop-item li {
  padding: 0 2rem;
}

.l_navi__menu-drop .l-navi__menu-drop-item {
  margin-top: 1.5rem;
}

.l_navi__menu-drop .l-navi__menu-drop-item li:not(:first-child) {
  margin-top: 0.2rem;
}

.l-navi__btn a {
  align-items: center;
  border: 2px solid;
  color: #fff;
  display: flex;
  height: 8rem;
  justify-content: center;
  position: relative;
  width: 17.2rem;
  z-index: 0;
  -o-border-image: linear-gradient(to right, #ec8b26, #e35025);
  background-color: #fff;
  border-image: linear-gradient(to right, #ec8b26, #e35025);
  border-image-slice: 1;
  letter-spacing: 0.2rem;
  transition: 0.3s;
}

.l-navi__btn a:before {
  background: linear-gradient(278deg, #e35025 0%, #ec8b26 100%);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  transition: 0.3s;
  width: 100%;
  z-index: -1;
}

.l-navi__menu:nth-of-type(1) .l-navi__menu-link::after {
  content: '';
  display: inline-block;
  height: 0.6rem;
  width: 0.7rem;
  -webkit-mask-image: url(../images/header_arrow.svg);
  mask-image: url(../images/header_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #d9d9d9;
  mask-size: contain;
  position: absolute;
  right: 1.9rem;
  top: 3.9rem;
  vertical-align: middle;
}

.l-navi__menu:nth-of-type(3) .l-navi__menu-link::after {
  content: '';
  display: inline-block;
  height: 0.6rem;
  width: 0.8rem;
  -webkit-mask-image: url(../images/header_arrow.svg);
  mask-image: url(../images/header_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #d9d9d9;
  mask-size: contain;
  position: absolute;
  right: 0.9rem;
  top: 3.9rem;
  vertical-align: middle;
}

.l-navi__menu:nth-of-type(4) .l-navi__menu-link::after {
  content: '';
  display: inline-block;
  height: 0.6rem;
  width: 0.8rem;
  -webkit-mask-image: url(../images/header_arrow.svg);
  mask-image: url(../images/header_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #d9d9d9;
  mask-size: contain;
  position: absolute;
  right: 0.9rem;
  top: 3.9rem;
  vertical-align: middle;
}

.l-navi__menu:nth-of-type(1) .l-navi__menu-link {
  padding-left: 3rem;
  padding-right: 3rem;
}

.l-navi__menu:nth-of-type(2) .l-navi__menu-link {
  padding-left: 2.5rem;
}

.l-navi__menu:nth-of-type(6) .l-navi__menu-link::before {
  left: calc(50% - 0.8rem);
}

.l-navi__menu-item {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

.l-navi__menu-link {
  position: relative;
}

.l-navi__menu-link span::after {
  background-color: #df2627;
  bottom: 0;
  content: '';
  display: block;
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.l-navi__menu-link::before {
  background-image: url(../images/ico_header.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 1rem;
  left: calc(50% - 0.5rem);
  opacity: 0;
  position: absolute;
  top: 1.2rem;
  transform: translate(-50%, -50%);
  vertical-align: middle;
  width: 1.2rem;
}

.l-navi__menu:nth-of-type(1) .l-navi__menu-link::before {
  left: calc(50% - 0.5rem);
}

.l-navi__menu:nth-of-type(6) .l-navi__menu-link::before {
  left: calc(50% - 0.5rem);
}

nav.l-navi li {
  position: relative;
  vertical-align: middle;
}

nav.l-navi li a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
}

.l-navi__menu-drop-item-link {
  position: relative;
}

.l_navi__menu-drop {
  transition: 0.3s;
  visibility: hidden;
}

.js-toggle-dropdown.is-active .l_navi__menu-link {
  color: #df2627;
}

.js-toggle-dropdown.is-active .l_navi__menu-drop {
  opacity: 1;
  visibility: visible;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.c-primary-title {
  border: 3px solid #151515;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: bold;
  font-weight: 700;
  gap: 2rem 1.5rem;
  letter-spacing: 0.128rem;
  line-height: 1;
  padding: 1rem 2.2rem;
  position: relative;
  z-index: 1;
}

.c-primary-title-white {
  border: 3px solid #fff;
  color: #fff;
}

.c-primary-title02 {
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to right, #e35025 0%, #ec8b26 100%);
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  background-clip: text;
  border-image: linear-gradient(to right, #e35025 0%, #ec8b26 100%);
  border-image-slice: 1;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  position: relative;
}

.c-primary-title03 {
  border-bottom: 4px solid;
  border-color: linear-gradient(260deg, #e35025 -53.07%, #ec8b26 76.54%);
  padding-bottom: 3px;
  -o-border-image: linear-gradient(to right, #e35025 0%, #ec8b26 100%);
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  background-clip: text;
  border-image: linear-gradient(to right, #e35025 0%, #ec8b26 100%);
  border-image-slice: 1;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  position: relative;
}

.c-primary-head__title-img {
  height: 8.7rem;
}

/* -------------------------------------------*/
/* ------------- for javascript -------------*/
.p-top__js-hide-cover {
  background-color: #ec8c31;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.p-top__js-hide-cover-reverse {
  background-color: #ec8c31;
  bottom: 0;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 100;
}

.p-top__js-hide-cover-img-right {
  background-color: #ffffff;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.p-top__js-hide-cover-img-left {
  background-color: #ffffff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.p-top__js-hide-cover-security-head {
  background-color: #ec8c31;
  content: '';
  display: block;
  height: 300%;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotate(70deg);
  width: 300%;
  z-index: 100;
}

/* -------------------------------------------*/
.p-top-fv {
  background-image: url(../images/fv_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 600px;
  position: relative;
  width: calc(100% - 7rem);
}

.p-top-fv::before {
  background-image: url(../images/fv_bg_cover.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 100%;
  mix-blend-mode: soft-light;
  width: 100%;
}

.p-top-fv__text-box {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  left: calc(50% + 1rem);
  position: absolute;
  top: calc(50% + 4.7rem);
  transform: translate(-50%, -50%);
}

.p-top-fv__text-box h1 {
  font-size: 3.2rem;
  letter-spacing: 0.0128em;
  text-align: center;
}

.p-top-fv__text-box p {
  border: 0.5rem solid #fff;
  font-size: 18rem;
  letter-spacing: 0.072em;
  line-height: 1;
  padding: 3.6rem;
  text-align: center;
  width: 47rem;
}

.p-top-fv__text-box span {
  display: block;
  font-size: 6.4rem;
  font-weight: 700;
  letter-spacing: 0.0256em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.p-top-fv__scroll {
  bottom: 2.4rem;
  position: absolute;
  right: -5rem;
  width: 2.7rem;
}

/* about section -------------------------------------------*/
.p-top-about {
  padding: 20rem 0 28.7rem;
  position: relative;
}

.p-top-aboout__bg-left-line {
  bottom: -10rem;
  content: '';
  display: inline-block;
  height: 41.8vw;
  left: 4.3rem;
  position: absolute;
  transform: rotate(152.319deg);
  width: 4.6rem;
}

.p-top-aboout__bg-left-line-color {
  background-color: #e35025;
  height: 100%;
  width: 100%;
}

.p-top-aboout__bg-right-line {
  bottom: -10rem;
  content: '';
  display: inline-block;
  height: 57.7vw;
  left: 7.2rem;
  position: absolute;
  transform: rotate(152.319deg);
  width: 4.6rem;
  z-index: -1;
}

.p-top-aboout__bg-right-line-color {
  background-color: #e35025;
  height: 100%;
  width: 100%;
}

.p-top-about__title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-about__title-bg {
  display: block;
  height: 12.4rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 16.9rem;
  width: 79.3rem;
  z-index: -1;
}

.p-top-about__title-bg .p-top-about__title-bg-img {
  height: 12.4rem;
  width: 79.3rem;
}

.p-top-about__title-bg .p-top-about__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-about__title-bg .p-top-about__title-bg-hide {
  background-color: #ffffff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-top-about__content-box-text {
  width: 42rem;
}

.p-top-about__content-box-text strong {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  background-clip: text;
  font-family: 'Roboto', sans-serif;
  font-size: 5.6rem;
  font-weight: 800;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.p-top-about__content-box-text strong span {
  display: block;
  position: absolute;
  top: -8rem;
}

.p-top-about__content-box-text strong::after {
  background: linear-gradient(260deg, #e35025 -53.07%, #ec8b26 76.54%);
  bottom: 0;
  content: '';
  display: inline-block;
  height: 0.6rem;
  left: 0;
  position: absolute;
  width: 23.1rem;
}

.p-top-about__content-box-text h3 {
  color: #151515;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.0112em;
  line-height: 150%;
  margin-top: 4.3rem;
}

.p-top-about__content-box-text p {
  line-height: 1.6;
  margin-top: 3rem;
}

.p-top-about__content-box-img {
  height: 39rem;
  margin: unset;
  margin-top: 5.8rem;
  position: relative;
  width: 100%;
}

.p-top-about__content-box-img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-top-about__content-box-text.type2 {
  margin-bottom: 2rem;
}

.p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20.45rem 100%);
}

.p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img::before {
  background-color: #ff8718;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20rem 100%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.24;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-img img {
  clip-path: polygon(0 0, 100% 0, calc(100% - 20rem) 100%, 0 100%);
}

.p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-img::before {
  background-color: #ff8718;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20rem) 100%, 0 100%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.24;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.p-top-about__content-box.type2 {
  margin-top: 10rem;
  position: relative;
  z-index: 1;
}

.p-top-about__contents-wrap:nth-of-type(3) .p-top-about__content-box {
  margin-top: 12.3rem;
}

.p-top-about__vision-contents {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  margin-top: -10.5rem;
  position: relative;
  z-index: 2;
}

.p-top-about__vision-box {
  display: grid;
  gap: 6.5rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 9.5rem 3.6rem 5.6rem;
  position: relative;
}

.p-top-about__vision-box li {
  color: #fff;
  position: relative;
}

.p-top-about__vision-box li .p-top-about__vision-box-num {
  align-items: center;
  background-color: #ffffff;
  border-bottom: 6px solid var(--button, #e35025);
  box-sizing: border-box;
  display: flex;
  height: 7.6rem;
  left: 0;
  position: absolute;
  top: -4.4rem;
  width: 7.6rem;
}

.p-top-about__vision-box li .p-top-about__vision-box-num p {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  color: transparent;
  font-family: Roboto;
  font-size: 4rem;
  font-weight: 800;
  left: 1.4rem;
  position: relative;
  text-align: left;
  -webkit-background-clip: text;
  background-clip: text;
}

.p-top-about__vision-box li .p-top-about__vision-box-content-img {
  aspect-ratio: 320/300;
  filter: drop-shadow(0px 2px 2px rgba(33, 33, 33, 0.25));
}

.p-top-about__vision-box li .p-top-about__vision-box-content-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-about__vision-box li .p-top-about__vision-box-text {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.p-top-about__vision-box li .p-top-about__vision-box-text h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 3rem;
  text-align: center;
}

.p-top-about__vision-box li .p-top-about__vision-box-text p {
  line-height: 1.6;
  margin-top: 1.9rem;
  width: 100%;
}

.p-top-about__value-box {
  margin-top: -17.8rem;
}

.p-top-about__value-box ul {
  color: #151515;
  counter-reset: list-counter;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 30;
}

.p-top-about__value-box ul li {
  position: relative;
}

.p-top-about__value-box ul li > div {
  height: 100%;
}

.p-top-about__value-box ul li .p-top-about__value-content {
  background: #eee;
  height: 100%;
  padding: 23.6rem 4rem 5rem;
  position: relative;
}

.p-top-about__value-box ul li .p-top-about__value-content::before {
  content: counter(list-counter, decimal-leading-zero);
  counter-increment: list-counter;
  font-family: 'Roboto', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  top: 6.6rem;
  transform: translate(-50%, -50%);
}

.p-top-about__value-box ul li h3 {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  text-align: center;
}

.p-top-about__value-box ul li h3::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 7rem;
  left: 50%;
  position: absolute;
  top: -8.5rem;
  transform: translate(-50%, -50%);
  width: 8rem;
}

.p-top-about__value-box ul li h3::after {
  background-color: #151515;
  content: '';
  display: inline-block;
  height: 0.5rem;
  left: 50%;
  position: absolute;
  position: absolute;
  top: -3.6rem;
  transform: translate(-50%, -50%);
  width: 8rem;
}

.p-top-about__value-box ul li p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

.p-top-about__value-box ul li:nth-of-type(1) h3:before {
  background-image: url(../images/value_img01.svg);
}

.p-top-about__value-box ul li:nth-of-type(2) h3:before {
  background-image: url(../images/value_img02.svg);
}

.p-top-about__value-box ul li:nth-of-type(3) h3:before {
  background-image: url(../images/value_img03.svg);
}

.p-top-about__value-box ul li:nth-of-type(4) h3:before {
  background-image: url(../images/value_img04.svg);
}

.p-top-about__value-box ul li:nth-of-type(5) h3:before {
  background-image: url(../images/value_img05.svg);
}

/* p-top-assist section -------------------------------------------*/
.p-top-assist {
  background: linear-gradient(180deg, #222 0%, #545454 50.99%);
  color: #fff;
  padding: 13rem 22rem 18.6rem;
  position: relative;
  text-align: center;
  z-index: 10;
}

.p-top-assist::after {
  background-image: url(../images/assist_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0rem;
  content: '';
  display: inline-block;
  height: 87rem;
  left: -4.2rem;
  position: absolute;
  vertical-align: middle;
  width: 113rem;
  z-index: -1;
}

.p-top-assist__side-bg {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  vertical-align: middle;
  z-index: -1;
}

.p-top-assist__side-bg .p-top-assist__side-bg-img {
  height: 100%;
  width: 100%;
  width: 8.7rem;
}

.p-top-assist__side-bg .p-top-assist__side-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right;
  object-position: right;
}

.p-top-assist-wrap {
  margin-top: 7.4rem;
}

.p-top-assist__content-name .p-top-assist__content-text-top {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.6;
  margin-top: 5.2rem;
}

.p-top-assist__content-name .p-top-assist__content-text-bottom {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 2.4rem;
  text-align: center;
}

.p-top-assist__content-title {
  border-bottom: 0.4rem solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.0144em;
  position: relative;
  text-align: center;
}

.p-top-assist__content-title span {
  display: block;
  position: absolute;
  top: -8rem;
}

.p-top-assist__content-title.type2 {
  letter-spacing: 0.0128em;
}

.p-top-assist__management-box {
  margin-top: 12rem;
}

.p-top-assistr {
  margin: 7.2rem auto 0;
  max-width: 100rem;
}

.p-top-assist__box {
  background: #525252;
  border: 0.4rem solid #fff;
  color: #fff;
  max-width: 60%;
  padding: 7rem 33rem 8rem 7rem;
  position: relative;
  text-align: left;
}

.p-top-assist__box h4 {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
}

.p-top-assist__box p {
  margin-top: 2rem;
  text-align: left;
}

.p-top-assist__box.type2 {
  left: 0;
  margin: 0 4.5rem 0 auto;
  padding: 7rem 7rem 8rem 30rem;
  position: relative;
  top: -23rem;
}

.p-top-assist__pro {
  align-items: center;
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  border: 0.4rem solid #fff;
  font-size: 3.2rem;
  font-weight: 800;
  height: 23rem;
  left: -0.4rem;
  outline: 0.6rem solid #fff;
  outline-offset: -2rem;
  position: absolute;
  text-align: center;
  top: -0.4rem;
  width: 24.3rem;
}

.p-top-assist__pro h3 {
  height: 100%;
  position: relative;
}

.p-top-assist__pro span {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-top-assist__content-ling-wrap {
  margin-top: 6.6rem;
  position: relative;
}

.ling {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.ling {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.ling li {
  aspect-ratio: 1/1;
  border: solid 3px #fff;
  border-radius: 50%;
  padding-top: 6.2rem;
  position: relative;
  width: 36.6666666667%;
}

.p-top-assist__content-ling-text-num {
  font-family: 'Shippori Mincho', serif;
}

.ling .txt {
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.ling .txt2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  padding: 0 7rem;
  text-align: left;
}

/* p-top-advantage section -----------------------------------------------*/
.p-top-advantage {
  background: #e1e1e1;
  position: relative;
}

.p-top-advantage::before {
  background-image: url(../images/advantage_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 73rem;
  height: 88rem;
  left: 0px;
  position: absolute;
  position: absolute;
  top: -15rem;
  width: 31.5rem;
}

.p-top-advantage::after {
  background-image: url(../images/advantage_bg_bottom.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: '';
  display: inline-block;
  height: 123rem;
  position: absolute;
  right: 0;
  width: 59rem;
  z-index: 10;
}

.p-top-advantage__inner {
  margin: 0 auto;
  max-width: 100rem;
  padding: 21.5rem 0 15.5rem;
}

.p-top-advantage__title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 20;
}

.p-top-advantage__title h2 span {
  display: block;
  position: absolute;
  top: -8rem;
}

.p-top-advantage__title p {
  color: #151515;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 5rem;
}

.p-top-advantage__title-bg {
  display: block;
  height: 12.4rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 17.9rem;
  width: 79.3rem;
  z-index: 1;
}

.p-top-advantage__title-bg .p-top-advantage__title-bg-img {
  aspect-ratio: 691/87;
}

.p-top-advantage__title-bg .p-top-advantage__title-bg-img img {
  height: 100%;
  position: relative;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-advantage__contents {
  margin-top: 13.5rem;
}

.p-top-advantage__contents ul {
  list-style: none;
}

.p-top-advantage__contents li {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 2.4rem;
  position: relative;
  width: 34rem;
}

.p-top-advantage__contents li::before {
  content: '・';
  left: 0.5rem;
  position: absolute;
}

.p-top-advantage__contents li:nth-of-type(1) {
  margin-top: 2rem;
}

.p-top-advantage__contents_box {
  position: relative;
  z-index: 30;
}

.p-top-advantage__contents-box-wrap {
  display: flex;
  justify-content: space-around;
}

.p-top-advantage__contents-box-wrap.type2 {
  gap: 9rem;
  margin-left: 10rem;
  margin-top: 9.7rem;
}

.p-top-advantage_img_box {
  position: relative;
  z-index: 10;
}

.p-top-advantage_img_box span {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  background-clip: text;
  font-family: 'Roboto', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 3.2rem;
  line-height: 1;
  position: absolute;
  top: -3.9rem;
  z-index: 15;
}

.p-top-advantage_img {
  height: 100%;
  position: relative;
  z-index: 10;
}

.p-top-advantage_img-box {
  overflow: hidden;
  position: relative;
}

.p-top-advantage_img img {
  max-width: 50rem;
  position: relative;
  width: 50vw;
  z-index: 10;
}

.p-top-advantage_img:nth-of-type(3) img {
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0% 100%);
  height: 23.5rem;
}

.p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
  -o-object-fit: cover;
  aspect-ratio: 534/296;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0% 100%);
  height: 28rem;
  object-fit: cover;
}

.p-top-advantage_img::after {
  background-image: url(../images/advantage_img_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 29rem;
  left: 0.4rem;
  max-width: 51.2rem;
  position: absolute;
  top: 1.3rem;
  vertical-align: middle;
  width: 50vw;
  z-index: 5;
}

.p-top-advantage_text_box {
  margin-top: 2.8rem;
  padding-left: 8.1rem;
  position: relative;
  z-index: 20;
}

.p-top-advantage_text_box:nth-of-type(3),
.p-top-advantage_text_box:nth-of-type(4) {
  margin-top: 1rem;
}

/* features section -----------------------------------------------*/
.p-top-features {
  padding: 22.5rem 0 21.8rem;
}

.p-top-features__title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-features__title-bg {
  display: block;
  height: 12.4rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 18.9rem;
  width: 58rem;
  z-index: -1;
}

.p-top-features__title-bg .p-top-features__title-bg-img {
  aspect-ratio: 570/87;
  width: 58rem;
}

.p-top-features__title-bg .p-top-features__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-features__contents-box {
  display: grid;
  gap: 12.4rem;
  grid-template-columns: repeat(2, 1fr);
  margin-right: 10.5rem;
  margin-top: 10.2rem;
}

.p-top-features__img-box {
  margin-bottom: auto;
  margin-top: 7rem;
  margin-top: auto;
  position: relative;
}

.p-top-features__img-wrap {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-top-features__img {
  aspect-ratio: 307/365;
  position: relative;
  width: 100%;
}

.p-top-features__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-top-features__img::before {
  background-color: #ff8718;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.24;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-top-features__img-box::after {
  aspect-ratio: 437/519;
  background: #222222;
  content: '';
  display: inline-block;
  left: -12rem;
  position: absolute;
  top: 11.5rem;
  width: 100%;
  z-index: -1;
}

.p-top-features__text-box {
  display: flex;
  flex-flow: column;
  gap: 6.4rem;
  margin-left: 0.5rem;
}

.p-top-features__text-box p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 2.4rem;
}

.p-top-features__text-box ul {
  font-size: 1.6rem;
  line-height: 1.6;
  list-style: none;
  margin-bottom: 0.2rem;
  margin-top: 2.4rem;
}

.p-top-features__text-box li {
  padding-left: 2.4rem;
  position: relative;
}

.p-top-features__text-box li:before {
  content: '・';
  font-size: 1.6rem;
  left: 0.5rem;
  position: absolute;
}

/* cta section -----------------------------------------------*/
.p-top-cta {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  padding: 5.1rem 0 12.5rem;
  position: relative;
  z-index: 1;
}

.p-top-cta__inner {
  margin: 0 auto;
  max-width: 89rem;
}

.p-top-cta__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.0128em;
  letter-spacing: 0.0128em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}

.p-top-cta__title-fukidashi {
  content: '';
  display: inline-block;
  height: 6.2rem;
  vertical-align: middle;
  width: 13.2rem;
}

.p-top-cta__title-bg {
  display: block;
  height: 9rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 4.1rem;
  width: 54.5rem;
  z-index: 1;
}

.p-top-cta__title-bg .p-top-cta__title-bg-img {
  aspect-ratio: 545/87;
}

.p-top-cta__title-bg .p-top-cta__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-cta::after {
  background-color: #e35025;
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: '';
  display: inline-block;
  height: 30rem;
  left: 0;
  position: absolute;
  width: 100vw;
  z-index: -1;
}

.p-top-cta__contents {
  display: grid;
  gap: 4.4rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.7rem;
}

.p-top-cta__contents01 {
  margin-top: 7.2rem;
}

.p-top-cta__tel-button {
  align-items: center;
  background: #fff;
  border: 6px solid #ff9f47;
  box-shadow: 0px 4px 6px 0px rgba(33, 33, 33, 0.12);
  display: flex;
  position: relative;
}

.p-top-cta__tel-button::before {
  background: #ffe1cc;
  border-radius: 100% 0 0 100%/50%;
  content: '';
  display: inline-block;
  display: none;
  height: 10.7rem;
  position: absolute;
  right: 0;
  top: 0.1rem;
  width: 6.1rem;
}

.p-top-cta__tel-button::after {
  background-image: url(../images/poone_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  display: none;
  height: 1.7rem;
  position: absolute;
  position: absolute;
  right: 1.5rem;
  top: 4.5rem;
  vertical-align: middle;
  width: 1.1rem;
}

.p-top-cta__tel-button-left {
  background: #ffe1cc;
  background: linear-gradient(23deg, #ffd3b5 41%, #ffe1cc 0);
  color: #222;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  padding: 3.2rem 10rem;
  text-align: center;
}

.p-top-cta__tel-button-right {
  line-height: 1.6;
  position: relative;
}

.p-top-cta__tel-button-right::before {
  background-image: url(../images/ico_phone.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 3rem;
  left: -3.4rem;
  position: absolute;
  top: 2.1rem;
  vertical-align: middle;
  width: 3rem;
}

.p-top-cta__tel-button-number {
  color: #222;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-top-cta__tel-button-time {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-top-cta__tel-button-time02 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  padding-left: 0.5rem;
}

.p-top-cta__tel-button-right {
  color: #717171;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 auto;
  padding-left: 0.5rem;
}

.p-top-cta__mail-button-wrap {
  align-items: center;
  background: linear-gradient(180deg, #222222 0%, #222222 50%, #0a0a0a 50%, #0a0a0a 100%);
  border: 3px solid #0a0a0a;
  box-shadow: 0rem 0.4rem 0.6rem 0rem rgba(33, 33, 33, 0.12);
  display: flex;
  justify-content: center;
  position: relative;
  -o-border-image: linear-gradient(to bottom, #222222, #0a0a0a) 1;
  border-image: linear-gradient(to bottom, #222222, #0a0a0a) 1;
  transition: 0.3s;
  z-index: 1;
}

.p-top-cta__mail-button-wrap::after {
  background-color: #f2f2f2;
  content: '';
  display: block;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 5;
}

.p-top-cta__mail-button {
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  padding: 2.9rem 10.7rem;
  position: relative;
  transition: 0.3s;
  z-index: 20;
}

.p-top-cta__mail-button::before {
  background-color: #ffffff;
  content: '';
  display: inline-block;
  height: 1.6rem;
  width: 2rem;
  -webkit-mask-image: url(../images/ico_mail_w.svg);
  mask-image: url(../images/ico_mail_w.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  left: 8rem;
  mask-size: contain;
  position: absolute;
  top: 3.7rem;
  transition: 0.3s;
  vertical-align: middle;
}

.p-top-cta__mail-button::after {
  background-image: url(../images/mail_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 0.8rem;
  position: absolute;
  right: 3.5rem;
  top: 4rem;
  transition: 0.3s;
  vertical-align: middle;
  width: 1.2rem;
}

.p-top-cta__line-button-wrap {
  align-items: center;
  background: linear-gradient(180deg, #63c51a 0%, #63c51a 50%, #56a01e 50%, #56a01e 100%);
  border: 3px solid #56a01e;
  box-shadow: 0rem 0.4rem 0.6rem 0rem rgba(33, 33, 33, 0.12);
  display: flex;
  justify-content: center;
  position: relative;
  -o-border-image: linear-gradient(to bottom, #63c51a, #56a01e) 1;
  border-image: linear-gradient(to bottom, #63c51a, #56a01e) 1;
  transition: 0.3s;
  z-index: 1;
}

.p-top-cta__line-button-wrap::after {
  background-color: #f2f2f2;
  content: '';
  display: block;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 5;
}

.p-top-cta__line-button {
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 3rem 12.5rem;
  position: relative;
  z-index: 10;
}

.p-top-cta__line-button::before {
  background-image: url(../images/ico_line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 3rem;
  left: 8rem;
  position: absolute;
  top: 2.8rem;
  vertical-align: middle;
  width: 3rem;
}

.p-top-cta__line-button::after {
  background-image: url(../images/line_arros_w.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 1.2rem;
  position: absolute;
  right: 3.8rem;
  top: 3.9rem;
  transition: 0.3s;
  vertical-align: middle;
  width: 0.8rem;
}

/*security section -----------------------------------------------*/
.p-top-security {
  --p-top-security__tab-top-head-h3-position: calc(50vw - 60rem - 6rem);
  --p-top-security__tab-top-head-h3-font-size: 12rem;
  --p-top-security__tab-top-head-h3-content-01: '01 施設警備';
  --p-top-security__tab-top-head-h3-content-02: '02 交通警備';
  --p-top-security__tab-top-head-h3-content-03: '03 雑踏警備';
  --p-top-security__tab-top-head-h3-content-04: '04 私服保安警備';
  --p-top-security__tab-top-head-h3-content-04-2: '04 私服\a      保安警備';
  --p-top-security__tab-top-head-h3-content-05: '05 警備計画書の作成';
  --p-top-security__tab-top-head-h3-content-05-2: '05 警備計画書\a      の作成';
  --p-top-security__tab-top-head-h3-content-06: '06 資機材レンタル';
  --p-top-security__tab-top-head-h3-content-06-2: '06 資機材\a      レンタル';
}

.p-top-security {
  padding: 20.3rem 0 0;
  position: relative;
  z-index: 30;
}

.p-top-security__bg-left-line {
  bottom: -39.9rem;
  content: '';
  display: inline-block;
  height: 41.8vw;
  left: 6.8rem;
  position: absolute;
  transform: rotate(152.319deg);
  width: 4.6rem;
}

.p-top-security__bg-left-line-color {
  background-color: #eb8326;
  height: 100%;
  width: 100%;
}

.p-top-security__bg-right-line {
  bottom: -40rem;
  content: '';
  display: inline-block;
  height: 57.7vw;
  left: 10.1rem;
  position: absolute;
  transform: rotate(152.319deg);
  width: 4.6rem;
  z-index: -1;
}

.p-top-security__bg-right-line-color {
  background-color: #eb8326;
  height: 100%;
  width: 100%;
}

.p-top-security__title {
  margin-bottom: 9.6rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 11;
}

.p-top-security__title-box {
  height: 100%;
  width: 100%;
}

.p-top-security__title-bg {
  display: block;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 18.4rem;
  z-index: 1;
}

.p-top-security__title-bg .p-top-security__title-bg-img {
  aspect-ratio: 1146/87;
}

.p-top-security__title-bg .p-top-security__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-security__inner {
  width: clamp(110.4rem, 40vw + 62.4rem, 120rem);
}

.p-top-security__tab-list {
  margin-bottom: 17rem;
}

.p-top-security__tab-list ul {
  cursor: pointer;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
  place-items: center;
}

.p-top-security__tab-list ul li {
  background-color: #e8e8e8;
  box-shadow: 0px 2px 4px 0px rgba(63, 63, 63, 0.2);
  color: #cfcfcf;
  display: flex;
  flex-flow: column;
  height: 18rem;
  width: 100%;
}

.p-top-security__tab-list ul li:hover {
  background-color: #fadbbf;
  color: #6f6f6f;
  transition: 0.3s;
}

.p-top-security__tab-content {
  display: grid;
  height: 100%;
  place-items: center;
  position: relative;
}

.p-top-security__tab-content::after {
  border: 8px solid #222;
  content: '';
  display: block;
  height: calc(100% + 5px);
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 5px);
}

.p-top-security__tab-content p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.p-top-security__tab-content p:nth-of-type(1) {
  font-size: 4.8rem;
  padding-top: 2.4rem;
}

.p-top-security__tab-content p:nth-of-type(2) {
  line-height: 1;
  margin-bottom: auto;
  margin-top: -0.8rem;
  padding-bottom: 4.5rem;
}

.p-top-security__tab-content p span {
  font-family: 'Roboto', sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  margin-bottom: -3rem;
}

.p-top-security__tab-list-item {
  position: relative;
}

.p-top-security__tab-list-item-arrow {
  bottom: 2.2rem;
  display: block;
  display: none;
  height: 1.4rem;
  margin-left: 0.8rem;
  position: absolute;
  width: 1.9rem;
}

.p-top-security__tab-content-selected {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  box-sizing: border-box;
  position: relative;
}

.p-top-security__tab-content-selected::after {
  opacity: 1;
}

.p-top-security__tab-content-selected p {
  color: #ffffff;
}

.p-top-security__tab-content-selected .p-top-security__tab-list-item-arrow {
  display: block;
}

.p-top-security__tab-detail-js {
  display: none;
}

.p-top-security__tab-detail-js:nth-of-type(1) {
  display: block;
}

#p-top-security__tabs-link {
  position: absolute;
  transform: translateY(-8rem);
}

.p-top-security__tab-top {
  position: relative;
}

.p-top-security__tab-top-content {
  margin-left: calc(50% - 50vw);
  position: relative;
  width: 100vw;
  z-index: 10;
}

.p-top-security__tab-top-explain {
  box-sizing: content-box;
  padding-left: 31.6rem;
  position: relative;
  width: 31.6rem;
  z-index: 50;
}

.p-top-security__tab-top-head {
  font-family: Roboto;
  margin-bottom: 4.1rem;
  position: relative;
  z-index: 30;
}

.p-top-security__tab-top-head h3 {
  margin-left: var(--p-top-security__tab-top-head-h3-position);
  position: relative;
}

.p-top-security__tab-top-head h3 span {
  color: #d0d0d0;
}

.p-top-security__tab-top-head h3 .p-top-security__tab-top-head-br {
  display: none;
}

.p-top-security__tab-top-head h3 .p-top-security__tab-top-head-br2 {
  display: none;
}

.p-top-security__tab-top-head h3 .p-top-security__tab-top-head-space {
  display: none;
}

.p-top-security__tab-top-head h3 .p-top-security__tab-top-head-space2 {
  display: none;
}

.p-top-security__tab-top-head h3,
.p-top-security__tab-top-head ::after {
  font-size: var(--p-top-security__tab-top-head-h3-font-size);
  font-weight: 600;
  line-height: 1.6;
}

.p-top-security__tab-top-head-black {
  clip-path: polygon(100% 0, 100% 76%, 0 100%, 0 24%);
  content: '';
  display: block;
  height: 593px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 5.1rem;
  width: 53.1944444444vw;
  z-index: 40;
}

.p-top-security__tab-top-head-black-box {
  height: 100%;
  width: 100%;
}

.p-top-security__tab-top-head-black-box::after {
  color: #d0d0d0;
  content: var(--p-top-security__tab-top-head-h3-content-01);
  display: block;
  left: var(--p-top-security__tab-top-head-h3-position);
  position: absolute;
  top: -5.1rem;
  white-space: nowrap;
  z-index: 20;
}

.p-top-security__tab-top-head-black-color {
  background-color: #2f2f2f;
  height: 100%;
  width: 100%;
}

.p-top-security__tab-top-head-image-wrap {
  clip-path: polygon(100% 0, 100% 76%, 0 100%, 0 24%);
  overflow: hidden;
  position: absolute;
  right: -5.2rem;
  top: -2.3rem;
  z-index: 45;
}

.p-top-security__tab-top-head-image {
  background-color: rgba(253, 156, 46, 0.2941176471);
  clip-path: polygon(100% 0, 100% 76%, 0 100%, 0 24%);
  content: '';
  height: 593px;
  overflow: hidden;
  width: 53.1944444444vw;
}

.p-top-security__tab-top-head-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  mix-blend-mode: multiply;
  object-fit: cover;
}

.p-top-security__tab-top-head-image::after {
  color: #d0d0d0;
  content: var(--p-top-security__tab-top-head-h3-content-01);
  display: block;
  left: calc(100% - 100vw - 5.2rem);
  mix-blend-mode: difference;
  position: absolute;
  top: 2.3rem;
  transform: translateX(var(--p-top-security__tab-top-head-h3-position));
  white-space: nowrap;
  width: 100%;
  z-index: 50;
}

.p-top-security__tab-top-text-catch {
  background-color: #ffffff;
  margin-bottom: 0.8rem;
  padding: 0.4rem 1.3rem 0.2rem 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-security__tab-top-text-catch p {
  color: #e35025;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-security__tab-top-text-detail h4 {
  background-color: #ffffff;
  border-bottom: 0.4rem solid var(--button, #e35025);
  color: #e35025;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 3.2rem;
  padding: 0.3rem 2.4rem 0.3rem 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-security__tab-top-text-detail p {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  width: 28rem;
}

.p-top-security__detail-wrap {
  background-color: #e1e1e1;
  margin-top: -27rem;
  padding: 38rem 18rem 18.3rem 19.6rem;
}

.p-top-security__detail-top {
  margin-bottom: 8rem;
}

.p-top-security__detail-head {
  border-bottom: 0.4rem solid #151515;
  margin: 0 auto 6rem auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-security__detail-head h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-top-security__detail-top-list ul li {
  align-items: center;
  background-color: #ffffff;
  border-bottom: 0.4rem solid #e35025;
  display: grid;
  gap: 6rem;
  grid-template-columns: 20rem 1fr;
  margin-bottom: 1.4rem;
  min-height: 10rem;
  padding: 2.4rem 4.8rem 2.4rem 6.5rem;
  position: relative;
  z-index: 10;
}

.p-top-security__detail-top-list ul li h5 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  width: 22rem;
}

.p-top-security__detail-top-list ul li p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-top-security__detail-top-list ul li::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 2.2rem;
  left: 3.4rem;
  position: absolute;
  width: 1.9rem;
  z-index: 12;
}

.p-top-security__detail-top-list ul li:nth-of-type(1)::before {
  background-image: url(../images/ico_flag.svg);
}

.p-top-security__detail-top-list ul li:nth-of-type(2)::before {
  background-image: url(../images/ico_foot.svg);
}

.p-top-security__detail-top-list ul li:nth-of-type(3)::before {
  background-image: url(../images/ico_search.svg);
}

.p-top-security__detail-top-list ul li:nth-of-type(4)::before {
  background-image: url(../images/ico_emargency.svg);
}

.p-top-security__detail-top-list ul li:nth-of-type(5)::before {
  background-image: url(../images/ico_safe.svg);
}

.p-top-security__detail-middle {
  margin-bottom: 15.1rem;
}

.p-top-security__detail-middle-container {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2.4rem;
}

.p-top-security__detail-middle-content {
  background-position: center;
  background-position: center;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: cover;
  height: 22rem;
  padding: 4.5rem 5rem;
  position: relative;
  z-index: 10;
}

.p-top-security__detail-middle-content h5 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
  z-index: 12;
}

.p-top-security__detail-middle-content p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  z-index: 12;
}

.p-top-security__detail-middle-content ul {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  list-style: disc;
  padding-left: 2.5rem;
  position: relative;
  z-index: 12;
}

.p-top-security__detail-middle-content::before {
  background: #e57c01;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 11;
}

.p-top-security__tab1 .p-top-security__detail-middle-content:nth-of-type(1) {
  background-image: url(../images/sec01_img01.webp);
}

.p-top-security__tab1 .p-top-security__detail-middle-content:nth-of-type(2) {
  background-image: url(../images/sec01_img02.webp);
}

.p-top-security__tab1 .p-top-security__detail-middle-content:nth-of-type(3) {
  background-image: url(../images/sec01_img03.webp);
}

.p-top-security__tab1 .p-top-security__detail-middle-content:nth-of-type(4) {
  background-image: url(../images/sec01_img04.webp);
}

.p-top-security__detail-middle-note p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.p-top-security__detail-bottom {
  background-color: #222222;
  padding: 8.7rem 4.3rem 8.7rem 6.3rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.p-top-security__detail-bottom-text {
  width: 34rem;
}

.p-top-security__detail-bottom-text p {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-top-security__detail-bottom-text p span {
  display: block;
  font-size: 1.6rem;
  padding-top: 3.5rem;
}

.p-top-security__detail-bottom-img-front {
  filter: drop-shadow(6px 6px 0px #e57c01);
  height: 14rem;
  left: 44.1rem;
  position: absolute;
  top: 5.8rem;
  width: 21rem;
  z-index: 5;
}

.p-top-security__detail-bottom-img-front img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-security__detail-bottom-img-back {
  height: 23rem;
  position: absolute;
  right: -5.1rem;
  top: -7.1rem;
  width: 35rem;
  z-index: 4;
}

.p-top-security__detail-bottom-img-back img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-security__tab2 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black {
  height: 63.6rem;
}

.p-top-security__tab2 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black .p-top-security__tab-top-head-black-box::after {
  content: var(--p-top-security__tab-top-head-h3-content-02);
}

.p-top-security__tab2 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-image::after {
  content: var(--p-top-security__tab-top-head-h3-content-02);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(1)::before {
  background-image: url(../images/ico_car.svg);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(2)::before {
  background-image: url(../images/ico_foot.svg);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(3)::before {
  background-image: url(../images/ico-reglation.svg);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(4)::before {
  background-image: url(../images/ico_info.svg);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(5)::before {
  background-image: url(../images/ico_safe.svg);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(1) {
  background-image: url(../images/sec02_img01.webp);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(2) {
  background-image: url(../images/sec02_img02.webp);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(3) {
  background-image: url(../images/sec02_img03.webp);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(4) {
  background-image: url(../images/sec02_img04.webp);
}

.p-top-security__tab2 .p-top-security__detail-wrap .p-top-security__detail-bottom {
  padding: 6.8rem 7.1rem 6.8rem 7.1rem;
}

.p-top-security__tab3 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black-box::after {
  content: var(--p-top-security__tab-top-head-h3-content-03);
}

.p-top-security__tab3 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-image::after {
  content: var(--p-top-security__tab-top-head-h3-content-03);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(1)::before {
  background-image: url(../images/ico_flag.svg);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(2)::before {
  background-image: url(../images/ico_secure.svg);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(3)::before {
  background-image: url(../images/ico_safe.svg);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(4)::before {
  background-image: url(../images/ico_emargency.svg);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(1) {
  background-image: url(../images/sec03_img01.webp);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(2) {
  background-image: url(../images/sec03_img02.webp);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(3) {
  background-image: url(../images/sec03_img03.webp);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(4) {
  background-image: url(../images/sec03_img04.webp);
}

.p-top-security__tab3 .p-top-security__detail-wrap .p-top-security__detail-bottom {
  padding: 7.1rem 7.1rem 8rem 7.1rem;
}

.p-top-security__tab4 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black-box::after {
  content: var(--p-top-security__tab-top-head-h3-content-04);
}

.p-top-security__tab4 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-image::after {
  content: var(--p-top-security__tab-top-head-h3-content-04);
}

.p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(1)::before {
  background-image: url(../images/ico_surve.svg);
}

.p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(2)::before {
  background-image: url(../images/ico_note.svg);
}

.p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(3)::before {
  background-image: url(../images/ico_report.svg);
}

.p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-middle .p-top-security__detail-middle-container .p-top-security__detail-middle-content:nth-of-type(1) {
  background-image: url(../images/sec04_img01.webp);
}

.p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-middle .p-top-security__detail-middle-container .p-top-security__detail-middle-content:nth-of-type(2) {
  background-image: url(../images/sec04_img02.webp);
}

.p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-middle .p-top-security__detail-middle-container .p-top-security__detail-middle-content:nth-of-type(3) {
  background-image: url(../images/sec04_img03_01.webp);
  grid-column: 1/3;
  grid-row: 2/3;
}

.p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-bottom {
  padding: 6.8rem 7.1rem 7.4rem 7.1rem;
}

.p-top-security__tab5 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black {
  height: 60.1rem;
}

.p-top-security__tab5 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black-box::after {
  content: var(--p-top-security__tab-top-head-h3-content-05);
  width: 80vw;
}

.p-top-security__tab5 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-image::after {
  content: var(--p-top-security__tab-top-head-h3-content-05);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(1)::before {
  background-image: url(../images/ico_safety.svg);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(2)::before {
  background-image: url(../images/ico_security.svg);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(3)::before {
  background-image: url(../images/ico_safe.svg);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-top .p-top-security__detail-top-list ul li:nth-of-type(4)::before {
  background-image: url(../images/ico_res.svg);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(1) {
  background-image: url(../images/sec05_img01.webp);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(2) {
  background-image: url(../images/sec05_img02.webp);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(3) {
  background-image: url(../images/sec05_img03.webp);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(4) {
  background-image: url(../images/sec05_img04.webp);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(5) {
  background-image: url(../images/sec05_img05.webp);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(6) {
  background-image: url(../images/sec05_img06.webp);
}

.p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-bottom {
  padding: 6.9rem 7.1rem 6.8rem 7.1rem;
}

.p-top-security__tab6 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black-box::after {
  content: var(--p-top-security__tab-top-head-h3-content-06);
  width: 80vw;
}

.p-top-security__tab6 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-image::after {
  content: var(--p-top-security__tab-top-head-h3-content-06);
}

.p-top-security__tab6 .p-top-security__detail-wrap .p-top-security__detail-middle-content {
  height: 26rem;
}

.p-top-security__tab6 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(1) {
  background-image: url(../images/sec06_img01.webp);
}

.p-top-security__tab6 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(2) {
  background-image: url(../images/sec06_img02.webp);
}

.p-top-security__tab6 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(3) {
  background-image: url(../images/sec06_img03.webp);
}

.p-top-security__tab6 .p-top-security__detail-wrap .p-top-security__detail-middle-content:nth-of-type(4) {
  background-image: url(../images/sec06_img04.webp);
}

/*achivement section -----------------------------------------------*/
.p-top-achivement {
  padding: 4rem 0 25.6rem;
  position: relative;
  z-index: 30;
}

.p-top-achivement__bg {
  margin: 0;
  padding: 16.5rem 0 18.5rem;
  position: relative;
  top: 20rem;
  width: 100%;
}

.p-top-achivement__bg::before {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: skewY(-6deg);
  z-index: -1;
}

.p-top-achivement__title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-achivement__title span {
  display: block;
  position: absolute;
  top: -10rem;
}

.p-top-achivement__title-bg {
  display: block;
  height: 12.4rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 13.2rem;
  width: 79.3rem;
  z-index: -1;
}

.p-top-achivement__title-bg .p-top-achivement__title-bg-img {
  aspect-ratio: 824/87;
}

.p-top-achivement__title-bg .p-top-achivement__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-achivement__contents {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8.8rem;
}

.p-top-achivement__content-box-wrap {
  position: relative;
}

.p-top-achivement__content-box {
  background: #fafafa;
  border-bottom: 0.8rem solid #ffab57;
  padding: 8rem 1rem;
}

.p-top-achivement__text-title {
  color: #151515;
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1rem;
}

.p-top-achivement__text-title h3::after {
  background-color: #151515;
  bottom: 0;
  content: '';
  display: block;
  height: 0.4rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-top-achivement__text {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  list-style-type: disc;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.8rem;
  padding-left: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-achivement__content-box {
  height: 56.4rem;
  position: relative;
  z-index: 10;
}

.p-top-achivement__content-box-wrap:nth-of-type(1) .p-top-achivement__content-box::before {
  background-image: url(../images/event_img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 10rem;
  left: 0;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 10rem;
  z-index: -1;
}

.p-top-achivement__content-box-wrap:nth-of-type(2) .p-top-achivement__content-box::before {
  background-image: url(../images/traffic_img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 13rem;
  left: 0;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 13rem;
}

.p-top-achivement__content-box-wrap:nth-of-type(3) .p-top-achivement__content-box::before {
  background-image: url(../images/facility_img.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 13rem;
  left: 0;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 10rem;
}

.p-top-achivement__content-box-wrap:nth-of-type(1) .p-top-achivement__content-box::after {
  background-image: url(../images/event_text.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0.2rem;
  content: '';
  display: inline-block;
  height: 31rem;
  position: absolute;
  right: 0;
  vertical-align: middle;
  width: 7rem;
  z-index: -1;
}

.p-top-achivement__content-box-wrap:nth-of-type(2) .p-top-achivement__content-box::after {
  background-image: url(../images/traffic_text.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0.2rem;
  content: '';
  display: inline-block;
  height: 37rem;
  position: absolute;
  right: 0;
  vertical-align: middle;
  width: 7rem;
  z-index: -1;
}

.p-top-achivement__content-box-wrap:nth-of-type(3) .p-top-achivement__content-box::after {
  background-image: url(../images/facility_text.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0.2rem;
  content: '';
  display: inline-block;
  height: 39rem;
  position: absolute;
  right: 0;
  vertical-align: middle;
  width: 7rem;
  z-index: -1;
}

/*customer section -----------------------------------------------*/
.p-top-customer {
  background-blend-mode: screen;
  background-color: rgba(255, 255, 255, 0.7725490196);
  background-image: url(../images/customer_img.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -15rem;
  padding: 25rem 0 26rem;
  position: relative;
  z-index: 10;
}

.p-top-customer::before {
  background-image: url(../images/customer_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  display: inline-block;
  height: 100dvh;
  left: 0;
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%;
}

.p-top-customer__title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-customer__title span {
  display: block;
  position: absolute;
  top: -10rem;
}

.p-top-customer__title-bg {
  display: block;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 21.4rem;
  z-index: -1;
}

.p-top-customer__title-bg .p-top-customer__title-bg-img {
  aspect-ratio: 1153/87;
}

.p-top-customer__title-bg .p-top-customer__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-customer__contents {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 9rem;
  width: 100%;
}

.p-top-customer__content-box-wrap {
  position: relative;
}

.p-top-customer__content-box {
  background: #fafafa;
  border-bottom: 0.8rem solid #151515;
  padding: 6.6rem 4rem 3.5rem;
  position: relative;
}

.p-top-customer__content-box::before {
  background-image: url(../images/ico_customer_top.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 4.4rem;
  left: 2.6rem;
  position: absolute;
  top: 2.1rem;
  vertical-align: middle;
  width: 4.6rem;
}

.p-top-customer__content-box::after {
  background-image: url(../images/ico_customer_bottom.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 2.1rem;
  content: '';
  display: inline-block;
  height: 4.4rem;
  position: absolute;
  right: 2.6rem;
  vertical-align: middle;
  width: 4.6rem;
}

.p-top-customer__content-box-title {
  color: #151515;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  text-align: center;
}

.p-top-customer__content-box-title::before {
  aspect-ratio: 110/107;
  background-image: url(../images/ico_customer.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  left: 50%;
  position: absolute;
  top: calc(50% + 10.7rem);
  transform: translate(-50%, -50%);
  vertical-align: middle;
  width: 11rem;
}

.p-top-customer__text-box p {
  background: #ebebeb;
  padding: 2.6rem 3.4rem;
}

.p-top-customer__text-box p span {
  color: #f47d4a;
}

.p-top-customer__content-box-text {
  color: #151515;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 19.3rem;
}

/*data section -----------------------------------------------*/
.p-top-data__bg {
  margin: 0;
  margin-top: -30rem;
  padding: 16rem 0 26rem;
  position: relative;
  top: 20rem;
  width: 100%;
  z-index: 40;
}

.p-top-data__title {
  margin-bottom: 8.9rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-data__title span {
  display: block;
  position: absolute;
  top: -10rem;
}

.p-top-data__title-bg {
  display: block;
  height: 12.4rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 12.6rem;
  width: 79.3rem;
  z-index: -1;
}

.p-top-data__title-bg .p-top-data__title-bg-img {
  aspect-ratio: 874/87;
  height: 8.7rem;
}

.p-top-data__title-bg .p-top-data__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-data__bg::before {
  background: var(--button, linear-gradient(142deg, #4d4d4d 4.92%, #181818 96.94%));
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: skewY(-6deg);
  z-index: -1;
}

.p-top-data__contents-top {
  border-radius: 0 0 0.5rem 0.5rem;
  display: grid;
  gap: 2.9rem;
  grid-template-columns: 33.6666666667% 63.9166666667%;
  margin-bottom: 3.5rem;
  position: relative;
}

.p-top-data__content-box {
  background-color: #ffffff;
  border-bottom: 0.8rem solid #8c8c8c;
  border-radius: 0.4rem;
  padding: 0 2rem;
  position: relative;
}

.p-top-data__content-box .p-top-data__content-box-note {
  bottom: 3.4rem;
  position: absolute;
  right: 4.6rem;
}

.p-top-data__content-box-wrap {
  padding-top: 3.2rem;
  position: relative;
}

.p-top-data__content-title {
  background-color: #ffffff;
  border-bottom: 0.6rem solid #151515;
  display: block;
  height: 6.2rem;
  margin: 0 auto;
  padding: 1.5rem 3.2rem;
  position: relative;
  text-align: center;
  top: -3.2rem;
  width: 20.8rem;
}

.p-top-data__content-title h4 {
  font-size: 2rem;
  line-height: 1.6;
}

.p-top-data__content-title-type2 {
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-data__content-num {
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.p-top-data__content-num p {
  font-size: 2rem;
  font-weight: 600;
}

.p-top-data__content-num p span {
  color: #f24822;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.6;
}

.p-top-data__content-img1 {
  height: 20.4rem;
  margin: 0.8rem auto 6rem auto;
  width: 21.2rem;
}

.p-top-data__content-img1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-top-data__content-img2-wrap {
  height: 26.9rem;
  margin: 1.8rem auto 4.1rem auto;
  position: relative;
  width: 59.2rem;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2 {
  height: 100%;
  width: 100%;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2 img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-text p {
  font-size: 16px;
  font-style: sans-serif;
  font-weight: 600;
  line-height: 1;
  position: absolute;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(1) {
  left: 0%;
  top: 2%;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(2) {
  left: 1%;
  top: 52%;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(3) {
  right: 0%;
  top: -1%;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num {
  position: absolute;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(1) {
  left: 3%;
  top: 13%;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(2) {
  left: 6%;
  top: 65%;
}

.p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(3) {
  right: 0%;
  top: 10%;
}

.p-top-data__contents_middle {
  display: grid;
  gap: 2.9rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3.547rem;
}

.p-top-data__contents_middle div:nth-of-type(1) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 {
  padding: 1.5rem 3.8rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-data__contents_middle div:nth-of-type(1) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 h4 {
  height: 3.2rem;
  width: 23.1rem;
}

.p-top-data__contents_middle div:nth-of-type(2) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 {
  padding: 1.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-data__contents_middle div:nth-of-type(2) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 h4 {
  height: 3.2rem;
  width: 23.1rem;
}

.p-top-data__contents_middle div:nth-of-type(3) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 {
  padding: 1.5rem 3.3rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-data__contents_middle div:nth-of-type(3) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 h4 {
  height: 3.25rem;
  width: 10.8rem;
}

.p-top-data__contents_middle .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-num {
  display: block;
  margin: 0 auto 5.4rem auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-data__contents_middle > .p-top-data__content-box:nth-of-type(3) > .p-top-data__content-num {
  position: relative;
}

.p-top-data__content-year {
  position: absolute;
  top: 4.5rem;
}

.p-top-data__contents_bottom > .p-top-data__content-box > .p-top-data__content-title-type3 {
  padding: 1.5rem 3.8rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-data__contents_bottom > .p-top-data__content-box > .p-top-data__content-title-type3 h4 {
  height: 3.2rem;
  width: 13.2rem;
}

.p-top-data__content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}

.p-top-data__content-list {
  margin-bottom: 6.8rem;
  width: 30.4rem;
}

.p-top-data__content-list p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-top-data__content-list p span {
  color: #e35025;
  font-weight: 700;
}

.p-top-data__content-list ul li {
  display: flex;
  justify-content: space-between;
}

.p-top-data__content-list-left {
  border-right: 0.2rem solid #cacaca;
  box-sizing: content-box;
  margin-left: auto;
  padding-right: 8rem;
}

.p-top-data__content-list-right {
  box-sizing: content-box;
  margin-right: auto;
  padding-left: 8rem;
}

/*company section -----------------------------------------------*/
.p-top-company {
  padding: 47.5rem 0 9rem;
}

.p-top-company__inner {
  margin: 0 auto;
  max-width: 100rem;
}

.p-top-company__title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-company__title span {
  display: block;
  position: absolute;
  top: -8rem;
}

.p-top-company__title-bg {
  display: block;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 46.1rem;
  width: 121rem;
  z-index: -1;
}

.p-top-company__title-bg .p-top-company__title-bg-img {
  aspect-ratio: 1187/87;
  height: 8.7rem;
}

.p-top-company__title-bg .p-top-company__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-company__contents {
  margin: 10rem 2rem;
}

.p-top-company__contents tr {
  border-top: 0.1rem solid #e3e3e3;
}

.p-top-company__contents tr:nth-of-type(1) {
  border-top: unset;
}

.p-top-company__contents th {
  background: #f2f2f2;
  height: 100%;
  max-width: 22rem;
  vertical-align: middle;
  width: 22%;
}

.p-top-company__contents td {
  padding: 2.7rem 2rem 2.7rem 10rem;
}

/*contact section -----------------------------------------------*/
.p-top-contact {
  background: var(--button, linear-gradient(98deg, #e35025 0%, #ec8b26 100%));
  padding: 12rem 0 22rem;
}

.p-top-contact__inner {
  margin: 0 auto;
  max-width: 100rem;
}

.p-top-contact__title {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}

.p-top-contact__title span {
  display: block;
  position: absolute;
  top: -8rem;
}

.p-top-contact__title-bg {
  aspect-ratio: 537/87;
  display: block;
  height: 8.7rem;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 10.4rem;
  z-index: 1;
}

.p-top-contact__title-bg .p-top-contact__title-bg-img {
  aspect-ratio: 537/87;
  height: 8.7rem;
}

.p-top-contact__title-bg .p-top-contact__title-bg-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.p-top-contact__contents {
  background: #f8f8f8;
  border-radius: 0.4rem;
  box-shadow: 0rem 0.2rem 0.8rem 0.4rem rgba(152, 83, 20, 0.2);
  margin: 0 auto;
  margin-top: 10rem;
  padding: 9.6rem 13rem;
}

.p-top-contact__contents p {
  color: #151515;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

form {
  margin-top: 3.5rem;
}

.p-top-contact__text {
  text-align: center;
}

.p-top-contact__form-table {
  display: flex;
  flex-flow: column;
  gap: 2.7rem;
  justify-content: center;
  width: 100%;
}

.p-top-contact__text-head {
  display: block;
  font-weight: bold;
  text-align: left;
}

.p-top-contact__text-head span {
  background: #f24822;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-left: 0.2rem;
  padding: 0 0.2rem 0.08rem 0.2rem;
  position: relative;
  top: -0.2rem;
}

.p-top-contact__text-date {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.p-top-contact__text-date input {
  background: #fff;
  border: 0.2rem solid #d9d9d9 !important;
  border-radius: 0.4rem;
  padding: 0.4rem 1.8rem !important;
  width: 100%;
}

.p-top-contact__text-date textarea {
  background: #fff;
  border: 0.2rem solid #d9d9d9;
  border-radius: 0.4rem;
  height: 15rem;
  resize: none;
  width: 100%;
}

.p-top-contact__tbody {
  display: flex;
  flex-flow: column;
  gap: 2.4rem;
}

.p-top-contactprivacy-poricy {
  margin-bottom: 2rem;
  margin-top: 6rem;
}

.p-top-contact__privacy-box {
  margin-bottom: 2rem;
  margin-top: 2.6rem;
}

.p-top-contact__scroll-lists {
  border: 1px #c7c7c7 solid;
  height: 100%;
  height: 20rem;
  overflow: scroll;
  overflow-x: hidden;
  padding: 1rem;
  width: 100%;
}

.p-top-contact__privacy-poricy {
  margin-top: 5.6rem;
}

.p-top-contact__privacy-poricy input {
  height: 2rem;
  position: relative;
  top: -0.2rem;
  width: 2rem;
}

.submit-button {
  background: #e55b32;
  border: 3px solid #e55b32;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.6;
  margin: 0 auto;
  padding: 1.5rem;
  transition: 0.3s;
  width: 100%;
}

.submit-button:hover {
  background: #fff;
  border: 3px solid #e55b32;
  color: #e55b32;
}

.p-top-contact__text-privacy {
  color: #212121;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 2rem;
  padding-left: 1.4rem;
  position: relative;
}

.p-top-contact__text-privacy::before {
  content: '※';
  display: inline-block;
  font-size: 1.4rem;
  left: 0;
  position: absolute;
  top: 0;
}

input#douichk {
  left: 23px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.u-db {
  display: block;
}

.u-dn {
  display: none;
}

.u-disp__less1023 {
  display: none;
}

.u-mask--c-black {
  filter: brightness(0);
}

.u-mask--c-white {
  filter: brightness(0) invert(1);
}

.u-con--md {
  margin: 0 auto;
  max-width: var(--content_width);
}

.u-con--lg {
  margin: 0 auto;
  max-width: 90%;
}

.u-c-white {
  color: #fff;
}

.u-c--b-white {
  color: #fff;
}

.u-pc-center {
  text-align: center;
}

.u-z-1 {
  z-index: -1;
}

.u-z1 {
  z-index: 1;
}

.u-z2 {
  z-index: 2;
}

.u-z3 {
  z-index: 3;
}

.u-z10 {
  z-index: 10;
}

.u-z50 {
  z-index: 50;
}

.u-z100 {
  z-index: 100;
}

.u-z999 {
  z-index: 999;
}

@media not all and (max-width: 1320px) {
  .p-top-security__tab-top-explain {
    left: calc(50% - 25rem);
    padding-left: 0;
    /* top: calc(50% - 14rem); */
    transform: translate(-50%, 2%);
  }
}

@media screen and (max-width: 1320px) {
  .l-footer {
    padding: 9rem 2rem 1.2rem;
  }

  .l-footer__contents {
    grid-template-columns: 20.7rem 1fr;
  }

  .l-footer__contents-address {
    padding-right: 0rem;
  }

  .l-footer__contents__nav {
    gap: 2rem;
    padding-left: 2rem;
  }

  .l-header__logo {
    width: 18.7rem;
  }

  .l-navi__menu-link {
    font-size: 1.4rem;
    padding-left: clamp(1rem, -1.2738rem + 2.52vw, 2rem);
    padding-right: clamp(1rem, -1.2738rem + 2.52vw, 2rem);
  }

  .l_navi__menu-drop .l-navi__menu-drop-item li {
    padding: 0 2.3rem;
  }

  .l-navi__menu:nth-of-type(3) .l-navi__menu-item .l_navi__menu-drop .l-navi__menu-drop-item {
    justify-content: space-around;
  }

  .l-navi__menu:nth-of-type(3) .l-navi__menu-item .l_navi__menu-drop .l-navi__menu-drop-item li {
    padding: 0 1rem;
  }

  .l-navi__btn a {
    font-size: 1.6rem;
    width: 14rem;
  }

  .l-navi__menu:nth-of-type(1) .l-navi__menu-link::after {
    right: clamp(0.1rem, -3.92769rem + 4.53vw, 1.9rem);
  }

  .l-navi__menu:nth-of-type(3) .l-navi__menu-link::after {
    right: clamp(0.1rem, -1.692rem + 2.02vw, 0.9rem);
  }

  .l-navi__menu:nth-of-type(4) .l-navi__menu-link::after {
    right: clamp(0.1rem, -1.692rem + 2.02vw, 0.9rem);
  }

  .l-navi__menu:nth-of-type(1) .l-navi__menu-link {
    padding-left: clamp(1rem, -3.509rem + 5.04vw, 3rem);
    padding-right: clamp(1rem, -3.509rem + 5.04vw, 3rem);
  }

  .l-navi__menu:nth-of-type(2) .l-navi__menu-link {
    padding-left: clamp(1rem, -2.392rem + 3.78vw, 2.5rem);
  }

  .l-navi__menu:nth-of-type(6) .l-navi__menu-link::before {
    left: calc(50% - 0.6rem);
  }

  .p-top-about__content-box {
    gap: 5rem;
  }

  .p-top-about__contents-wrap:nth-of-type(odd) > .p-top-about__content-box {
    margin-right: -4vw;
  }

  .p-top-about__contents-wrap:nth-of-type(even) > .p-top-about__content-box {
    margin-left: -4vw;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-text h3 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }

  .p-top-about__vision-box {
    gap: 2.5rem;
    padding: 9.5rem 2.6rem 5.4rem;
  }

  .p-top-assist {
    padding: 14.8rem 10rem 16.4rem;
  }

  .p-top-assist__box {
    max-width: unset;
    padding: 10rem 5rem 13rem;
  }

  .p-top-assist__box-wrap {
    height: 50rem;
    position: relative;
    width: 100%;
  }

  .p-top-assist__box.type2 {
    left: unset;
    margin: unset;
    max-width: unset;
    padding: 12rem 5rem 10rem;
    position: absolute;
    right: 0;
    top: 5rem;
    width: 100%;
  }

  .p-top-assist__pro {
    left: 20%;
    padding: 5rem;
    top: -15rem;
    width: 60%;
  }

  .ling li {
    padding-top: 3.2rem;
  }

  .ling .txt2 {
    font-size: 1.7rem;
    padding: 2.4rem 5rem 0 6rem;
  }

  .p-top-advantage__contents-box-wrap.type2 {
    gap: unset;
    margin-left: 0;
  }

  .p-top-advantage_img img {
    max-width: 42rem;
    width: 50vw;
  }

  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 23.5rem;
  }

  .p-top-advantage_img::after {
    height: 29rem;
    left: 1.4rem;
    max-width: 42rem;
    top: 1.3rem;
    width: 50vw;
  }

  .p-top-advantage_text_box {
    padding-left: clamp(0rem, -18.107rem + 20.4vw, 8rem);
  }

  .p-top-security {
    --p-top-security__tab-top-head-h3-position: 0;
    --p-top-security__tab-top-head-h3-font-size: clamp(3rem, 10vw, 12rem);
  }

  .p-top-security__bg-left-line {
    bottom: -39.9rem;
    left: 4.5rem;
  }

  .p-top-security__bg-right-line {
    bottom: -38rem;
    left: 8rem;
  }

  .p-top-security__inner {
    max-width: calc(100vw - 5rem);
  }

  .p-top-security__tab-top-explain {
    padding-left: 6rem;
  }

  .p-top-security__tab-top-head-image-wrap {
    right: 0;
  }

  .p-top-security__tab-top-head-image::after {
    left: calc(100% - 100vw);
  }

  .p-top-security__tab-top-text-detail p {
    width: 35rem;
  }

  .p-top-security__detail-wrap {
    padding: 42rem 5rem 18rem;
  }

  .p-top-security__detail-top-list ul li {
    grid-template-columns: 15rem 1fr;
  }

  .p-top-security__detail-bottom-text {
    margin-left: clamp(0rem, -27.8992rem + 30.23vw, 12rem);
  }

  .p-top-security__detail-bottom-img-front {
    left: unset;
    right: calc(50% - 26rem);
  }

  .p-top-security__detail-bottom-img-back {
    bottom: 10rem;
    display: block;
    height: 20rem;
    right: calc(50% - 40rem);
    width: 30rem;
  }

  .p-top-achivement__contents {
    gap: 4rem;
  }

  .p-top-customer__contents {
    gap: 3rem;
  }

  .p-top-customer__content-box {
    padding: 6.6rem 2rem 4.8rem;
  }

  .p-top-data__content-img2-wrap {
    aspect-ratio: 592/269;
    height: unset;
    margin-bottom: 8.5rem;
    width: 50rem;
  }

  .p-top-data__contents_middle div:nth-of-type(1) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 {
    padding: 1.5rem 0.8rem;
  }

  .u-con--md {
    width: 92%;
  }
}

@media screen and (max-width: 1000px) {
  .l-navi__menu-link {
    font-size: 1.4rem;
  }

  .l_navi__menu-drop .l-navi__menu-drop-item li a {
    font-size: 1.4rem;
  }
}

@media not all and (max-width: 923px) {
  .l-header {
    left: 0;
    position: fixed;
    top: 0;
  }

  .l-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    text-align: left;
    width: 100%;
  }

  .l_navi__menu-drop-wrap {
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 8rem;
    visibility: hidden;
    width: 100%;
  }

  .l_navi__menu-drop {
    transform: translateY(-100%);
  }

  .l-navi__menu-drop-item-link a::after {
    background-image: url(../images/drop_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: inline-block;
    height: 0.6rem;
    left: -1.1rem;
    position: absolute;
    top: 1.4rem;
    vertical-align: middle;
    width: 0.7rem;
  }

  .l-navi__menu-drop-item-link a {
    position: relative;
  }

  .l-navi__menu-drop-item-link a::before {
    background-color: #e35025;
    bottom: -1px;
    content: '';
    display: inline-block;
    height: 2px;
    left: 0;
    position: absolute;
    visibility: hidden;
    width: 100%;
  }

  .l-navi__menu-drop-item-link:hover a {
    color: #e35025;
    position: relative;
    transition: 0.3s;
  }

  .l-navi__menu-drop-item-link:hover a:before {
    visibility: visible;
  }

  .l-navi__menu:nth-of-type(1):hover .l_navi__menu-drop,
  .l-navi__menu:nth-of-type(3):hover .l_navi__menu-drop,
  .l-navi__menu:nth-of-type(4):hover .l_navi__menu-drop {
    transform: translateY(0);
    visibility: visible;
  }

  .l-navi__menu-item:hover .l-navi__menu-link {
    background: #fff;
    background: #fff;
    box-shadow: 0px 4px 6px 0px rgba(33, 33, 33, 0.12);
    box-sizing: border-box;
    transition: all 0.2s ease;
  }

  .l-navi__menu-item:hover .l-navi__menu-link::before {
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-name: fadeIn;
    animation-timing-function: ease;
    opacity: 0;
  }

  .l-navi__menu-item:hover .l-navi__menu-link::after {
    background-color: #9b9b9b;
    transition: 0.3s;
  }

  .l-navi__menu-item:hover .l-navi__menu-link span::after {
    opacity: 1;
    transition: 0.3s;
  }

  .ling li:not(:nth-of-type(3n + 1)) {
    margin-left: -5%;
  }

  .ling li:nth-of-type(n + 4) {
    margin-top: -8%;
  }

  .p-top-cta__tel-button {
    pointer-events: none;
  }

  .p-top-cta__tel-button-right {
    margin-left: 8.7rem;
  }

  .u-st {
    display: none !important;
  }
}

@media screen and (max-width: 923px) {
  input[type='text'],
  input[type='date'],
  input[type='password'],
  input[type='email'],
  input[type='time'],
  input[type='tel'],
  input[type='number'] {
    padding: 10px;
  }

  textarea {
    height: 170px;
  }

  input[type='radio'] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }

  input[type='radio'] + .mwform-radio-field-text::before {
    height: 15px;
    width: 15px;
  }

  input[type='radio'] + .mwform-radio-field-text::after {
    content: '';
    height: 9px;
    left: 3px;
    width: 9px;
  }

  input[type='checkbox'] + label {
    padding-left: 30px;
  }

  .l-cta {
    padding-block: 10rem;
  }

  .l-cta__inner.u-con--md {
    max-width: 800px;
  }

  .l-cta__text {
    font-size: 1.8rem;
  }

  .l-cta__btn {
    right: 2rem;
  }

  .l-cta .c-btn {
    font-size: 2rem;
    padding-block: 6rem;
    width: 38rem;
  }

  .l-footer {
    padding: 5rem 2rem 1.2rem;
  }

  .l-footer__contents {
    display: flex;
    flex-flow: column-reverse;
    margin-top: 0;
  }

  .l-footer__contents-address {
    border-right: unset;
  }

  .l-footer__contents nav {
    display: none;
  }

  .l-footer__contents__nav li {
    margin-bottom: 5rem;
  }

  .l-footer__contents__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .l-footer__contents-head-sp {
    border-right: unset;
    display: flex;
    gap: 4rem;
  }

  .l-header__inner {
    height: 6rem;
  }

  .l-header__logo-link {
    padding-top: 0;
  }

  .l-main--404 .l-main__inner,
  .l-main--error .l-main__inner {
    padding: 80px 15px;
  }

  .l-main--404 .c-button,
  .l-main--error .c-button {
    margin-top: 30px;
  }

  .l-navi {
    border: none;
    color: #fff;
    flex-flow: column;
    height: 100%;
    opacity: 0;
    overflow-y: scroll;
    position: fixed;
    right: 0;
    top: 0;
    transform: 100%;
    transition-duration: 0.5s;
    transition-property: opacity, visibility;
    visibility: hidden;
    width: 50%;
    z-index: 100;
  }

  .l-navi__inner {
    height: -moz-max-content;
    height: max-content;
    padding-bottom: 5rem;
    padding-inline: 2rem;
    width: 100%;
  }

  .l-navi__menu {
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 12rem;
    padding-inline: 2rem;
  }

  .l-navi__menu-item {
    max-width: 400px;
  }

  .l-navi__menu-link {
    color: #fff;
    font-size: 2rem;
    padding-block: 0.5rem;
    text-align: left;
    width: 100%;
  }

  .l-navi__menu-link--img {
    width: 110px !important;
    margin: 0 auto 0 0;
    padding: 0 !important;
  }

  .l-navi__menu-link.js-acc::before,
  .l-navi__menu-link.js-acc::after {
    background-color: #039ddc;
    border-radius: 0;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s;
  }

  .l-navi__left {
    flex-flow: column;
    gap: 3rem;
    margin-left: 4vw;
    margin-top: 5rem;
  }

  .l-navi__menu {
    margin-top: 0;
  }

  .l_navi__menu-drop {
    background-color: transparent;
    color: #ffffff;
    flex-flow: column;
    height: 0;
    height: -moz-fit-content;
    height: fit-content;
    left: -6rem;
    padding: 0 1rem 0 1rem;
    position: absolute;
    position: relative;
    top: 8rem;
    top: 0;
    width: 100%;
  }

  .l_navi__menu-drop .l-navi__menu-drop-item {
    flex-flow: column;
    gap: 1rem;
    padding: 2rem;
  }

  .l_navi__menu-drop .l-navi__menu-drop-item li a {
    padding-left: 3rem;
    text-align: left;
  }

  .l_navi__menu-drop .l-navi__menu-drop-item {
    margin-top: 0;
  }

  .l-navi__btn a {
    height: 6rem;
    width: 100%;
  }

  .l-navi__btn {
    font-size: 2rem;
    margin-top: 3rem;
    padding-inline: 4rem;
  }

  .l-navi__menu:nth-of-type(1) .l-navi__menu-link::after {
    left: -1rem;
    right: unset;
    top: 1.8rem;
  }

  .l-navi__menu:nth-of-type(3) .l-navi__menu-link::after {
    left: -1rem;
    right: unset;
    top: 1.8rem;
  }

  .l-navi__menu:nth-of-type(4) .l-navi__menu-link::after {
    left: -1rem;
    right: unset;
    top: 1.8rem;
  }

  .l-navi__menu-drop-item-link a {
    position: relative;
  }

  .l-navi__menu-drop-item-link a::before {
    background-color: #e35025;
    content: '';
    display: inline-block;
    height: 2px;
    left: 0;
    position: absolute;
    top: 1.5rem;
    width: 15px;
  }

  .c-primary-head__title-img {
    height: 7rem;
  }

  .container {
    height: 200px;
    width: 200px;
  }

  .circle {
    border: 5px solid #333;
    border-radius: 50%;
    position: absolute;
    width: 80px;
  }

  .top-left {
    left: 69px;
    top: 21px;
  }

  .top-right {
    right: 76px;
    top: 19px;
  }

  .center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .bottom-left {
    bottom: 4px;
    left: 85px;
  }

  .bottom-right {
    bottom: 6px;
  }

  .p-top-fv {
    margin-top: -8rem;
    width: 100%;
  }

  .p-top-about {
    padding: 12rem 0 10rem;
  }

  .p-top-aboout__bg-left-line {
    left: 1.1rem;
  }

  .p-top-aboout__bg-right-line {
    left: 5.1rem;
  }

  .p-top-about__title-bg {
    top: 10.9rem;
  }

  .p-top-about__title-bg .p-top-about__title-bg-img {
    height: 8.4rem;
    width: 55.3rem;
  }

  .p-top-about__content-box {
    gap: 0;
    position: relative;
  }

  .p-top-about__content-box-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .p-top-about__content-box-img {
    height: 30rem;
    margin-top: 0;
    width: 50vw;
  }

  .p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8rem 100%);
  }

  .p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img {
    margin: 0 calc(50% - 50vw) 0 0;
    right: 0;
  }

  .p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8rem 100%);
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box {
    margin-bottom: 9rem;
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-text {
    text-align: right;
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-img img {
    clip-path: polygon(0 0, 100% 0, calc(100% - 8rem) 100%, 0 100%);
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-img {
    left: 0;
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-img::before {
    clip-path: polygon(0 0, 100% 0, calc(100% - 8rem) 100%, 0 100%);
  }

  .p-top-about__vision-box {
    gap: 6rem;
    grid-template-columns: 1fr;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-num {
    top: -3rem;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-text h3 {
    text-align: left;
  }

  .p-top-about__vision-box li {
    display: grid;
    gap: 4rem;
    grid-template-columns: 22rem 1fr;
  }

  .p-top-about__value-box {
    margin-top: -10rem;
  }

  .p-top-about__value-box ul {
    grid-template-columns: 1fr 1fr;
  }

  .p-top-assist {
    padding: 11rem 5rem 12rem;
  }

  .p-top-assist__side-bg .p-top-assist__side-bg-img {
    width: 7rem;
  }

  .p-top-assist__content-name .p-top-assist__content-text-bottom {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .ling {
    background: none;
    left: 0;
    margin: 0;
    max-width: unset;
    width: 100%;
  }

  .ling li {
    position: absolute;
  }

  .ling .txt2 {
    padding: 0.4rem 5rem 0 3rem;
  }

  .p-top-advantage__inner {
    padding: 14rem 0 12rem;
  }

  .p-top-advantage__title-bg {
    top: 13.7rem;
  }

  .p-top-advantage__contents-box-wrap {
    gap: 3rem;
  }

  .p-top-advantage__contents-box-wrap.type2 {
    gap: 3rem;
  }

  .p-top-advantage__contents-box-wrap > .p-top-advantage__contents_box {
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
  }

  .p-top-advantage_img img {
    max-width: 35rem;
    width: 50vw;
  }

  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 19.6rem;
  }

  .p-top-advantage_img::after {
    height: 20rem;
    left: 0.8rem;
    max-width: 35rem;
    top: 1.3rem;
    width: 50vw;
  }

  .p-top-advantage_text_box {
    padding-left: 0;
    padding-right: 0;
  }

  .p-top-features {
    padding: 15rem 0 12rem;
  }

  .p-top-features__title-bg {
    top: 13.7rem;
  }

  .p-top-features__contents-box {
    gap: 5rem;
    grid-template-columns: 22rem 1fr;
    margin-right: 0;
  }

  .p-top-features__img-box::after {
    left: -4vw;
    top: 4vw;
  }

  .p-top-features__img-box::after {
    width: 80%;
  }

  .p-top-features__text-box {
    gap: 4.5rem;
  }

  .p-top-cta {
    padding: 7.1rem 0 8.5rem;
  }

  .p-top-cta__inner {
    margin: 0 2rem;
  }

  .p-top-cta__title-bg {
    top: 4.9rem;
  }

  .p-top-cta__contents01 {
    margin-top: 2.2rem;
  }

  .p-top-cta__tel-button {
    flex-flow: column;
  }

  .p-top-cta__tel-button::before {
    display: block;
    height: 9.5rem;
    top: 9.1rem;
    width: 5.1rem;
  }

  .p-top-cta__tel-button::after {
    display: block;
    right: 1rem;
    top: 13.1rem;
  }

  .p-top-cta__tel-button-left {
    background: linear-gradient(11deg, #ffd3b5 41%, #ffe1cc 0);
    padding: 2.2rem 6.2rem;
    width: 100%;
  }

  .p-top-cta__tel-button-right {
    padding: 1rem;
  }

  .p-top-cta__tel-button-right::before {
    top: 3.4rem;
  }

  .p-top-cta__mail-button {
    align-items: center;
    display: flex;
    height: 9rem;
    justify-content: center;
    padding: 0;
    width: 100%;
  }

  .p-top-cta__mail-button::before {
    left: 3rem;
  }

  .p-top-cta__mail-button::after {
    right: 3rem;
  }

  .p-top-cta__line-button {
    align-items: center;
    display: flex;
    height: 9rem;
    justify-content: center;
    padding: 0;
    width: 100%;
  }

  .p-top-cta__line-button::before {
    left: 2.6rem;
  }

  .p-top-cta__line-button::after {
    right: 3rem;
  }

  .p-top-security {
    padding: 12rem 0 0rem;
  }

  .p-top-security__bg-left-line {
    bottom: -39.9rem;
    left: 2rem;
  }

  .p-top-security__bg-right-line {
    bottom: -32rem;
    left: 4rem;
  }

  .p-top-security__title-bg {
    top: 9.9rem;
  }

  .p-top-security__tab-list {
    margin-bottom: 11rem;
  }

  .p-top-security__tab-list ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-top-security__tab-top-head-black {
    clip-path: polygon(100% 0, 100% calc(100% - 13vw), 0 100%, 0 13vw);
    height: 52rem;
    top: 4rem;
  }

  .p-top-security__tab-top-head-black-box::after {
    top: -4rem;
  }

  .p-top-security__tab-top-head-image-wrap {
    clip-path: polygon(100% 0, 100% calc(100% - 13vw), 0 100%, 0 13vw);
    top: 0;
  }

  .p-top-security__tab-top-head-image {
    clip-path: polygon(100% 0, 100% calc(100% - 13vw), 0 100%, 0 13vw);
    height: 52rem;
  }

  .p-top-security__tab-top-head-image::after {
    top: 0;
  }

  .p-top-security__detail-wrap {
    padding: 41.2rem 5rem 10rem;
  }

  .p-top-security__detail-top-list ul {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .p-top-security__detail-top-list ul li {
    display: block;
    padding: 6rem 2rem 2rem 2rem;
  }

  .p-top-security__detail-top-list ul li h5 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-left: 0;
    text-align: center;
    width: unset;
  }

  .p-top-security__detail-top-list ul li p {
    font-size: 1.6rem;
    padding-left: unset;
  }

  .p-top-security__detail-top-list ul li::before {
    left: calc(50% - 1rem);
    top: 2rem;
  }

  .p-top-security__detail-middle {
    margin-bottom: 10rem;
  }

  .p-top-security__detail-middle-content {
    padding: 2.5rem 1rem;
  }

  .p-top-security__detail-bottom-text {
    padding-bottom: 20rem;
    width: 100%;
  }

  .p-top-security__detail-bottom-img-front {
    bottom: 5rem;
    left: calc(50% - 18rem);
    right: unset;
    top: unset;
  }

  .p-top-security__detail-bottom-img-back {
    height: 13rem;
    right: calc(50% - 18rem);
    top: unset;
    width: 20rem;
  }

  .p-top-security__tab2 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black {
    height: 52rem;
  }

  .p-top-security__tab4 .p-top-security__detail-wrap .p-top-security__detail-middle .p-top-security__detail-middle-container .p-top-security__detail-middle-content:nth-of-type(3) {
    grid-column: unset;
    grid-row: unset;
  }

  .p-top-security__tab5 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black {
    height: 52rem;
  }

  .p-top-security__tab5 .p-top-security__detail-wrap .p-top-security__detail-bottom-img-back {
    top: unset;
  }

  .p-top-security__tab6 .p-top-security__detail-wrap .p-top-security__detail-bottom-img-back {
    top: unset;
  }

  .p-top-achivement {
    padding: 0 0 25.6rem;
  }

  .p-top-achivement__bg {
    padding: 16.5rem 0 15rem;
  }

  .p-top-achivement__title-bg {
    top: 15.1rem;
  }

  .p-top-achivement__contents {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-top-customer {
    padding: 17rem 0 22rem;
  }

  .p-top-customer {
    padding: 21rem 0 22rem;
  }

  .p-top-customer__title-bg {
    top: 19.7rem;
  }

  .p-top-customer__contents {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-top-data__bg {
    padding: 16rem 0 20rem;
  }

  .p-top-data__title-bg {
    top: 14.7rem;
  }

  .p-top-data__title-bg .p-top-data__title-bg-img {
    height: 7rem;
  }

  .p-top-data__contents-top {
    gap: 7rem;
    grid-template-columns: 1fr;
    margin-bottom: 7rem;
  }

  .p-top-data__contents_middle {
    gap: 7rem;
    grid-template-columns: 1fr;
  }

  .p-top-data__contents_middle .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-num {
    margin: 0 auto 2.5rem auto;
  }

  .p-top-data__content-wrap {
    grid-template-columns: 1fr;
  }

  .p-top-data__content-list {
    padding: 0;
  }

  .p-top-data__content-list-left {
    border-right: unset;
    margin-bottom: 0;
    margin-right: auto;
  }

  .p-top-data__content-list-right {
    margin-left: auto;
  }

  .p-top-company {
    padding: 38rem 0 4rem;
  }

  .p-top-company__title-bg {
    top: 36.4rem;
  }

  .p-top-contact {
    padding: 12rem 0 12rem;
  }

  .p-top-contact__inner {
    max-width: 88rem;
  }

  .p-top-contact__title-bg {
    top: 9.9rem;
  }

  .p-top-contact__title-bg .p-top-contact__title-bg-img {
    height: 7rem;
  }

  .p-top-contact__contents p {
    font-size: 1.6rem;
  }

  .p-top-contact__contents {
    margin: 10rem 2rem 0;
    padding: 9.6rem 2rem;
  }

  .u-pc {
    display: none;
  }

  .u-disp__less1023 {
    display: block !important;
  }

  .u-pc-center {
    text-align: unset;
  }
}

@media screen and (max-width: 923px) and (max-width: 768px) {
  .bottom-left {
    bottom: -24rem;
    left: 85px;
  }

  .bottom-right {
    bottom: -24rem;
    right: 69px;
  }
}

@media screen and (max-width: 923px) and (max-width: 923px) {
  .bottom-right {
    bottom: 1rem;
    left: 35rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-assist__img {
    margin-inline: auto;
    max-width: 400px;
    width: 100%;
  }

  .ling .txt2 {
    font-size: 1.5rem;
  }

  .p-top-advantage__contents-box-wrap {
    gap: 0;
  }

  .p-top-advantage_img img {
    max-width: 33rem;
    width: 50vw;
  }

  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 18.48rem;
  }

  .p-top-advantage_img::after {
    left: 1.8rem;
    max-width: 32rem;
    top: 2.3rem;
    width: 50vw;
  }
}

@media screen and (max-width: 767px) {
  .pc-only-inline {
    display: none;
  }

  .sp-only-inline {
    display: inline;
  }
}

@media not all and (max-width: 666px) {
  .p-top-about__content-box {
    display: flex;
    margin-top: 12.8rem;
  }

  @media screen and (max-width: 1320px) {
    .p-top-about__content-box {
      gap: 5rem;
    }
  }

  @media screen and (max-width: 923px) {
    .p-top-about__content-box {
      gap: 0;
      position: relative;
    }
  }

  @media screen and (max-width: 666px) {
    .p-top-about__content-box {
      display: block;
    }
  }

  .p-top-about__contents-wrap:nth-of-type(odd) > .p-top-about__content-box {
    margin-right: calc(60rem - 50vw);
  }

  @media screen and (max-width: 1320px) {
    .p-top-about__contents-wrap:nth-of-type(odd) > .p-top-about__content-box {
      margin-right: -4vw;
    }
  }

  @media screen and (max-width: 666px) {
    .p-top-about__contents-wrap:nth-of-type(odd) > .p-top-about__content-box {
      margin-right: 0;
    }
  }

  .p-top-about__contents-wrap:nth-of-type(odd) > .p-top-about__content-box .p-top-about__content-box-text {
    padding-right: 2rem;
  }

  .p-top-about__contents-wrap:nth-of-type(even) > .p-top-about__content-box {
    flex-flow: row-reverse;
    margin-left: calc(60rem - 50vw);
  }

  @media screen and (max-width: 1320px) {
    .p-top-about__contents-wrap:nth-of-type(even) > .p-top-about__content-box {
      margin-left: -4vw;
    }
  }

  @media screen and (max-width: 666px) {
    .p-top-about__contents-wrap:nth-of-type(even) > .p-top-about__content-box {
      margin-left: 0;
    }
  }

  .p-top-about__contents-wrap:nth-of-type(even) > .p-top-about__content-box .p-top-about__content-box-text {
    padding-left: 2.3rem;
  }

  .u-pt {
    display: none !important;
  }
}

@media screen and (max-width: 666px) {
  html {
    font-size: 62.5%;
  }

  .l-cta {
    padding-block: 5rem 8.2rem;
  }

  .l-cta::before {
    background-image: url(../images/common/recruit_bg-sp.jpg);
  }

  .l-cta__inner.u-con--md {
    padding-inline: 2.5rem;
  }

  .l-cta__box {
    margin-inline: auto;
    max-width: 290px;
  }

  .l-cta__box::before {
    aspect-ratio: 103/57;
    background-image: url(../images/common/cta_line-sp.svg);
    left: -0.5rem;
    top: 1.5rem;
    width: 5rem;
  }

  .l-cta .c-primary-title {
    width: 10.2rem;
  }

  .l-cta__text {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.8333333333;
    margin-top: 3.2rem;
  }

  .l-cta__text + .l-cta__text {
    margin-top: 2.2rem;
  }

  .l-cta__btn {
    position: static;
  }

  .l-cta .c-btn {
    border-radius: 3rem;
    margin-inline: auto;
    margin-top: 4.5rem;
    padding-block: 4.5rem;
    width: 34rem;
  }

  .l-footer {
    padding: 5rem 1rem 1.2rem;
  }

  .l-footer__contents-head-sp {
    display: block;
  }

  .l-header__logo {
    width: 16.7rem;
  }

  .l-header__logo-link {
    width: unset;
  }

  .l-main--404 h1,
  .l-main--error h1 {
    width: 80%;
  }

  .l-main--404 .error-text,
  .l-main--error .error-text {
    font-size: 1.5rem;
  }

  .l-main--404 .error-link,
  .l-main--error .error-link {
    font-size: 1.5rem;
  }

  .l-navi {
    width: 80%;
  }

  .l-navi__inner {
    padding-inline: 1.2rem;
  }

  .l-navi__menu-link {
    font-size: 1.8rem;
  }
  .l-navi__left {
    flex-flow: column;
    gap: 2.5rem;
    margin-left: 4vw;
    margin-top: 8rem;
  }

  .l_navi__menu-drop {
    background-color: transparent;
    color: #ffffff;
    flex-flow: column;
    height: 0;
    height: -moz-fit-content;
    height: fit-content;
    left: -10rem;
    padding: 0 0rem 0 1rem;
    position: absolute;
    position: relative;
    top: 8rem;
    top: 0;
    width: 100%;
  }

  .c-primary-title {
    font-size: 2.2rem;
    padding: 1rem 2.2rem;
  }

  .c-primary-title03 {
    font-size: 2.2rem;
  }

  .c-primary-head__title-img {
    height: 5rem;
  }

  .c-primary-head__title-img.c-primary-head__title-img-2line {
    height: 10rem;
  }

  .p-top-fv__text-box {
    font-size: 2rem;
    left: 50%;
    top: 50%;
  }

  .p-top-fv__text-box h1 {
    font-size: 2.3rem;
  }

  .p-top-fv__text-box p {
    font-size: 12rem;
    width: 34rem;
  }

  .p-top-fv__text-box span {
    font-size: 3rem;
  }

  .p-top-about {
    padding: 11rem 0 10rem;
  }

  .p-top-aboout__bg-left-line {
    left: -0.9rem;
  }

  .p-top-aboout__bg-right-line {
    bottom: -3rem;
    left: 1rem;
  }

  .p-top-about__title-bg .p-top-about__title-bg-img {
    height: 6.4rem;
  }

  .p-top-about__contents {
    margin-top: 6.5rem;
  }

  .p-top-about__content-box {
    display: block;
  }

  .p-top-about__contents-wrap:nth-of-type(odd) > .p-top-about__content-box {
    margin-right: 0;
  }

  .p-top-about__contents-wrap:nth-of-type(even) > .p-top-about__content-box {
    margin-left: 0;
  }

  .p-top-about__content-box-text {
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  .p-top-about__content-box-text strong {
    font-size: 3.3rem;
  }

  .p-top-about__content-box-text strong::after {
    width: 13.7rem;
  }

  .p-top-about__content-box-text h3 {
    font-size: 2.3rem;
    margin-top: 3rem;
  }

  .p-top-about__content-box-text p {
    margin-top: 2.5rem;
  }

  .p-top-about__content-box-img {
    height: 18rem;
    width: 105%;
  }

  .p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6rem 100%);
  }

  .p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img {
    margin: 0 calc(50% - 50vw) 0 auto;
  }

  .p-top-about__contents-wrap:nth-of-type(odd) .p-top-about__content-box .p-top-about__content-box-img::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6rem 100%);
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box {
    margin-bottom: 0rem;
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-text {
    text-align: center;
  }

  .p-top-about__contents-wrap:nth-of-type(even) .p-top-about__content-box .p-top-about__content-box-img {
    left: unset;
    margin: 0 calc(50vw - 50%) 0 calc(50% - 50vw);
  }

  .p-top-about__content-box.type2 {
    margin-top: 7rem;
  }

  .p-top-about__contents-wrap:nth-of-type(3) .p-top-about__content-box {
    margin-top: 8rem;
  }

  .p-top-about__vision-contents {
    margin: 3rem auto 0;
  }

  .p-top-about__vision-box {
    gap: 6.5rem;
    padding: 7rem 2.6rem 4.4rem;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-num {
    height: 6.6rem;
    width: 6.6rem;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-num p {
    left: 1rem;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-content-img {
    aspect-ratio: unset;
    height: 180px;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-text h3 {
    font-size: 1.8rem;
    margin-top: 1.2rem;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-text p {
    font-size: 1.5rem;
    margin-top: 0;
  }

  .p-top-about__vision-box li {
    gap: 0;
    grid-template-columns: unset;
  }

  .p-top-about__value-box {
    margin: 3rem auto 0;
  }

  .p-top-about__value-box ul {
    gap: 1rem;
    width: 100%;
  }

  .p-top-about__value-box ul li .p-top-about__value-content::before {
    font-size: 3rem;
    top: 3.6rem;
  }

  .p-top-about__value-box ul li h3::before {
    height: 6rem;
    top: -7.5rem;
    width: 6rem;
  }

  .p-top-about__value-box ul li h3::after {
    top: -3.6rem;
  }

  .p-top-assist::after {
    height: 56rem;
    left: -10.2rem;
    width: 73rem;
  }

  .p-top-assist__side-bg .p-top-assist__side-bg-img {
    width: 5rem;
  }

  .p-top-assist-wrap {
    margin-top: 4rem;
  }

  .p-top-assist__content-name .p-top-assist__content-text-top {
    font-size: 1.8rem;
    margin-top: 2rem;
  }

  .p-top-assist__content-name .p-top-assist__content-text-bottom {
    margin-top: 3rem;
    padding-left: 0rem;
    padding-right: 0rem;
    text-align: left;
  }

  .p-top-assist__content-title {
    font-size: 2.8rem;
  }

  .p-top-assist__management-box {
    margin-top: 7rem;
  }

  .p-top-advantage::before {
    left: -15rem;
  }

  .p-top-advantage__inner {
    padding: 11rem 0 8rem;
  }

  .p-top-advantage__title p {
    margin-top: 4rem;
  }

  .p-top-advantage__title-bg {
    top: 10.7rem;
  }

  .p-top-advantage__contents {
    padding: 0;
  }

  .p-top-advantage__contents ul {
    text-align: left;
  }

  .p-top-advantage__contents li {
    font-size: 1.5rem;
  }

  .p-top-advantage__contents-box-wrap {
    gap: 9rem;
  }

  .p-top-advantage__contents-box-wrap {
    flex-flow: column;
  }

  .p-top-advantage__contents-box-wrap.type2 {
    gap: 8rem;
  }

  .p-top-advantage__contents-box-wrap > .p-top-advantage__contents_box {
    margin-left: 0;
  }

  .p-top-advantage_img img {
    max-width: unset;
    width: 90vw;
  }

  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 33.5rem;
  }

  .p-top-advantage_img::after {
    height: 100%;
    left: 4vw;
    max-width: unset;
    top: 4vw;
    width: 90vw;
  }

  .p-top-advantage_text_box {
    text-align: center;
  }

  .p-top-features {
    padding: 9.5rem 0 9.8rem;
  }

  .p-top-features__title-bg {
    top: 9rem;
  }

  .p-top-features__contents-box {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 7rem;
  }

  .p-top-features__img {
    margin: 0 auto;
    width: 80%;
  }

  .p-top-features__text-box p {
    font-size: 1.5rem;
  }

  .p-top-cta__inner {
    margin: 0 2rem;
  }

  .p-top-cta__title-bg {
    top: 7.3rem;
  }

  .p-top-cta__contents {
    gap: 1.8rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .p-top-cta__tel-button::before {
    height: 11.5rem;
  }

  .p-top-cta__tel-button::after {
    top: 14.1rem;
  }

  .p-top-cta__tel-button-right {
    padding: 2rem;
  }

  .p-top-cta__tel-button-right::before {
    top: 4.4rem;
  }

  .p-top-cta__mail-button-wrap {
    padding: 0;
  }

  .p-top-cta__mail-button::after {
    right: 3.5rem;
    top: 4.1rem;
  }

  .p-top-cta__line-button::after {
    right: 3.8rem;
  }

  .p-top-security {
    padding: 13rem 0 0rem;
  }

  .p-top-security__bg-left-line {
    bottom: -18rem;
    left: -2.1rem;
  }

  .p-top-security__bg-right-line {
    bottom: -15rem;
    left: 2rem;
  }

  .p-top-security__title {
    margin-bottom: 7.5rem;
  }

  .p-top-security__title-bg {
    top: 8rem;
  }

  .p-top-security__title-bg .p-top-security__title-bg-img {
    aspect-ratio: 218/70;
  }

  .p-top-security__inner {
    max-width: calc(100vw - 0rem);
  }

  .p-top-security__tab-list {
    margin-bottom: 10rem;
  }

  .p-top-security__tab-list ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-top-security__tab-list ul li {
    height: clamp(6rem, 0.806rem + 10.75vw, 8rem);
  }

  .p-top-security__tab-content::after {
    border-width: 5px;
  }

  .p-top-security__tab-content {
    display: grid;
  }

  .p-top-security__tab-content p:nth-of-type(1) {
    font-size: 1.4rem;
    margin-top: auto;
    padding: 0;
  }

  .p-top-security__tab-content p:nth-of-type(2) {
    font-size: 2rem;
    margin-bottom: auto;
    margin-top: 0;
    padding: 0;
  }

  .p-top-security__tab-content p span {
    font-size: 2rem;
    line-height: 1;
  }

  .p-top-security__tab-content p span {
    font-size: 1.6rem;
    line-height: 1;
  }

  .p-top-security__tab-list-item-arrow {
    bottom: 50%;
    right: 2rem;
    width: 1rem;
  }

  .p-top-security__tab-top-explain {
    margin-top: 1.5rem;
    padding-left: 10vw;
    width: 80%;
  }

  .p-top-security__tab-top-head {
    margin-bottom: 0;
  }

  .p-top-security__tab-top-head h3,
  .p-top-security__tab-top-head ::after {
    padding-left: 3rem;
  }

  .p-top-security__tab-top-head-black {
    clip-path: polygon(100% 0, 100% calc(100% - 16.7vw), 0 100%, 0 16.7vw);
    height: 80%;
    left: 4vw;
    top: 0;
    width: 92vw;
  }

  .p-top-security__tab-top-head-black-box::after {
    left: -4vw;
    top: 0;
  }

  .p-top-security__tab-top-head-image-wrap {
    clip-path: polygon(100% 0, 100% calc(100% - 16.7vw), 0 100%, 0 16.7vw);
    margin-left: 10vw;
    position: relative;
  }

  .p-top-security__tab-top-head-image {
    clip-path: polygon(100% 0, 100% calc(100% - 16.7vw), 0 100%, 0 16.7vw);
    height: 33rem;
    width: 90vw;
  }

  .p-top-security__tab-top-head-image::after {
    transform: translateY(-40rem);
    width: 90vw;
  }

  .p-top-security__tab-top-text-catch p {
    font-size: 1.6rem;
  }

  .p-top-security__tab-top-text-detail h4 {
    font-size: 2rem;
  }

  .p-top-security__tab-top-text-detail p {
    text-shadow: 0 0 2px #673c20;
    width: 100%;
  }

  .p-top-security__detail-wrap {
    padding: 30rem 1.5rem 7rem;
  }

  .p-top-security__detail-wrap {
    margin-top: -26rem;
  }

  .p-top-security__detail-top {
    margin-bottom: 5rem;
  }

  .p-top-security__detail-head {
    margin: 0 auto 3rem auto;
  }

  .p-top-security__detail-top-list ul li {
    display: block;
    padding: 6rem 1.5rem 2rem 1.5rem;
  }

  .p-top-security__detail-top-list ul li h5 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding-left: 0;
    text-align: center;
    width: unset;
  }

  .p-top-security__detail-top-list ul li p {
    font-size: 1.3rem;
    padding-left: unset;
  }

  .p-top-security__detail-middle {
    margin-bottom: 3rem;
  }

  .p-top-security__detail-middle-container {
    grid-template-columns: 1fr;
  }

  .p-top-security__detail-middle-container {
    margin-bottom: 1rem;
  }

  .p-top-security__detail-bottom-text {
    padding-bottom: 22rem;
  }

  .p-top-security__detail-bottom-text p {
    font-size: 1.6rem;
  }

  .p-top-security__detail-bottom-img-front {
    bottom: 5rem;
  }

  .p-top-security__detail-bottom-img-back {
    bottom: 15rem;
  }

  .p-top-security__tab2 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black {
    height: 80%;
  }

  .p-top-security__tab5 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black {
    height: 80%;
  }

  .p-top-achivement {
    margin-top: -10rem;
  }

  .p-top-achivement__bg {
    padding: 12rem 0 10rem;
  }

  .p-top-achivement__title-bg {
    top: 10.6rem;
  }

  .p-top-achivement__contents {
    gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 6.5rem;
  }

  .p-top-achivement__content-box {
    padding: 3rem 0 4rem;
  }

  .p-top-achivement__text {
    width: 80%;
    margin-top: 1.8rem;
  }

  .p-top-achivement__content-box {
    height: unset;
    min-height: 28rem;
  }

  .p-top-achivement__content-box-wrap:nth-of-type(1) .p-top-achivement__content-box::before {
    height: 8rem;
    width: 8rem;
  }

  .p-top-achivement__content-box-wrap:nth-of-type(2) .p-top-achivement__content-box::before {
    height: 8rem;
    width: 8rem;
  }

  .p-top-achivement__content-box-wrap:nth-of-type(3) .p-top-achivement__content-box::before {
    height: 10rem;
    width: 8rem;
  }

  .p-top-achivement__content-box-wrap:nth-of-type(1) .p-top-achivement__content-box::after {
    bottom: 1.2rem;
    height: 22rem;
    width: 4rem;
  }

  .p-top-achivement__content-box-wrap:nth-of-type(2) .p-top-achivement__content-box::after {
    bottom: 1.2rem;
    height: 22rem;
    width: 4rem;
  }

  .p-top-achivement__content-box-wrap:nth-of-type(3) .p-top-achivement__content-box::after {
    bottom: 1.2rem;
    height: 22rem;
    width: 4rem;
  }

  .p-top-customer__title-bg {
    top: 17.8rem;
  }

  .p-top-customer__title-bg .p-top-customer__title-bg-img {
    aspect-ratio: 670/189;
  }

  .p-top-customer__content-box {
    padding: 2.6rem 2rem 2.8rem;
  }

  .p-top-customer__content-box-title {
    font-size: 2rem;
  }

  .p-top-customer__content-box-title::before {
    aspect-ratio: 110/107;
    background-size: contain;
    top: calc(50% + 6.5rem);
    width: 7rem;
  }

  .p-top-customer__content-box-text {
    font-size: 1.4rem;
    margin-top: 10.3rem;
  }

  .p-top-data__bg {
    padding: 12rem 0 11rem;
  }

  .p-top-data__title-bg {
    top: 11.6rem;
  }

  .p-top-data__title-bg .p-top-data__title-bg-img {
    height: 5rem;
  }

  .p-top-data__content-img2-wrap {
    margin: 1.8rem auto 10rem auto;
    width: 40rem;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2 {
    height: unset;
    width: unset;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(1) {
    right: 0%;
    top: -6%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(2) {
    left: 4%;
    top: 102%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(3) {
    right: -2%;
    top: 1%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(1) {
    left: 0%;
    top: 1%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(2) {
    bottom: 0rem;
    left: 6%;
    top: unset;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(3) {
    right: 0%;
    top: 9%;
  }

  .p-top-data__contents_middle .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-num {
    margin: 0 auto 2rem auto;
  }

  .p-top-company {
    padding: 30rem 0 12rem;
  }

  .p-top-company {
    padding: 28rem 0 0;
  }

  .p-top-company__title-bg {
    top: 27.6rem;
  }

  .p-top-company__title-bg .p-top-company__title-bg-img {
    aspect-ratio: 327/100;
  }

  .p-top-company__contents td {
    padding: 2.7rem 0 2.7rem 1rem;
  }

  .p-top-contact {
    padding: 7.5rem 0 8rem;
  }

  .p-top-contact__title-bg {
    top: 8rem;
  }

  .p-top-contact__title-bg .p-top-contact__title-bg-img {
    height: 5rem;
  }

  .p-top-contact__contents {
    padding: 3.6rem 2rem 4.5rem;
  }

  .p-top-contact__contents p {
    font-size: 1.5rem;
  }

  .p-top-contact__contents {
    font-size: 1.6rem;
    margin: 5rem 2rem 2rem;
    padding: 3.6rem 2rem;
  }

  .p-top-contact__form-table {
    gap: 2.1rem;
  }

  .p-top-contactprivacy-poricy {
    margin-top: 4rem;
  }

  .p-top-contact__privacy-box {
    margin-top: 1.1rem;
  }

  .p-top-contact__scroll-lists {
    font-size: 1.5rem;
    height: 20rem;
  }

  .p-top-contact__text-privacy {
    margin-top: 1.5rem;
  }

  .u-sp {
    display: none !important;
  }

  .u-pb-wide {
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 636px) {
  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 31.5rem;
  }
}

@media screen and (max-width: 580px) {
  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 29.2rem;
  }
}

@media screen and (max-width: 550px) {
  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 27.7rem;
  }
}

@media screen and (max-width: 530px) {
  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 26.7rem;
  }

  .p-top-security__tab-top-head {
    margin-bottom: 1rem;
  }

  .p-top-security__tab-top-head h3 {
    line-height: 1.3;
  }

  .p-top-security__tab-top-head h3 .p-top-security__tab-top-head-br {
    display: inline;
  }

  .p-top-security__tab-top-head h3 .p-top-security__tab-top-head-space {
    display: inline;
  }

  .p-top-security__tab-top-head-black-box::after {
    line-height: 1.3;
  }

  .p-top-security__tab5 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black-box::after {
    content: var(--p-top-security__tab-top-head-h3-content-05-2);
    white-space: pre;
  }
}

@media screen and (max-width: 480px) {
  .l-footer {
    padding: 4rem 2rem 2.2rem;
  }

  .l-navi {
    padding-bottom: 6rem;
  }

  .l-navi__menu {
    padding-inline: 1rem;
  }

  .l-navi__left {
    margin-left: 4vw;
  }

  .l_navi__menu-drop {
    background-color: transparent;
    color: #ffffff;
    flex-flow: column;
    height: 0;
    height: -moz-fit-content;
    height: fit-content;
    left: -6rem;
    padding: 0 1rem 0 1rem;
    position: absolute;
    position: relative;
    top: 8rem;
    top: 0;
    width: 100%;
  }

  .l_navi__menu-drop-wrap {
    width: 100%;
  }

  .l_navi__menu-drop {
    left: 0;
  }

  .l_navi__menu-drop .l-navi__menu-drop-item {
    padding-left: 0;
    padding-right: 0;
  }

  .l_navi__menu-drop .l-navi__menu-drop-item li {
    padding-left: 0;
    padding-right: 0;
  }

  .l-navi__menu:nth-of-type(3) .l-navi__menu-item .l_navi__menu-drop .l-navi__menu-drop-item li {
    padding: 0;
  }
  .p-top-fv__text-box h1 {
    font-size: 1.9rem;
  }

  .p-top-fv__text-box p {
    font-size: 9rem;
    width: 28rem;
  }

  .p-top-about__vision-box li .p-top-about__vision-box-num {
    height: 5.6rem;
    top: -3.4rem;
    width: 6.6rem;
  }

  .p-top-about__value-box ul {
    gap: 1rem;
  }

  .p-top-about__value-box ul li .p-top-about__value-content {
    padding: 15.6rem 1.5rem 3rem;
  }

  .p-top-about__value-box ul li .p-top-about__value-content::before {
    font-size: 3rem;
    top: 3.2rem;
  }

  .p-top-about__value-box ul li h3 {
    font-size: 1.8rem;
  }

  .p-top-about__value-box ul li h3::before {
    height: 5rem;
    top: -6rem;
  }

  .p-top-about__value-box ul li h3::after {
    height: 0.3rem;
    top: -1.5rem;
    width: 6rem;
  }

  .p-top-about__value-box ul li p {
    font-size: 1.3rem;
    margin-top: 1rem;
  }

  .p-top-assist {
    padding: 10rem 0rem 8rem;
  }

  .p-top-assist__img {
    width: 80%;
  }

  .p-top-assist__management-box {
    margin-top: 8rem;
  }

  .p-top-assist__content-ling-wrap {
    margin-top: 5.5rem;
  }

  .ling li {
    width: 50%;
  }

  .p-top-advantage__contents {
    margin-top: 7.5rem;
  }

  .p-top-advantage__contents-box-wrap.type2 {
    gap: 6rem;
    margin: 7rem 0 0 0;
  }

  .p-top-advantage_img_box span {
    font-size: 6rem;
    top: -1.9rem;
  }

  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 22.7rem;
  }

  .p-top-cta__tel-button::before {
    height: 7.7rem;
    top: 7.2rem;
    width: 4.1rem;
  }

  .p-top-cta__tel-button::after {
    height: 1.7rem;
    top: 10.3rem;
    width: 1rem;
  }

  .p-top-cta__tel-button-left {
    font-size: 1.5rem;
  }

  .p-top-cta__tel-button-right::before {
    height: 2rem;
    left: -1.5rem;
    top: 2.6rem;
    width: 2rem;
  }

  .p-top-cta__tel-button-number {
    font-size: 2rem;
  }

  .p-top-cta__tel-button-time {
    font-size: 1rem;
  }

  .p-top-cta__tel-button-time02 {
    font-size: 1rem;
  }

  .p-top-cta__mail-button::before {
    left: 2rem;
  }

  .p-top-cta__mail-button::after {
    right: 1.8rem;
  }

  .p-top-cta__line-button::before {
    left: 1.5rem;
  }

  .p-top-cta__line-button::after {
    right: 2.2rem;
  }

  .p-top-security__bg-left-line {
    bottom: -14rem;
    left: -3.5rem;
  }

  .p-top-security__bg-right-line {
    bottom: -16rem;
    height: 73.7vw;
    left: 2.1rem;
  }

  .p-top-security__title-bg {
    top: 7rem;
  }

  .p-top-security__tab-list {
    margin-bottom: 5rem;
  }

  .p-top-security__tab-content p:nth-of-type(2) {
    font-size: 1.4rem;
  }

  .p-top-security__tab-top-head h3 {
    line-height: 1.2;
  }

  .p-top-security__tab-top-head h3,
  .p-top-security__tab-top-head ::after {
    font-size: 4.5rem;
  }

  .p-top-security__detail-wrap {
    padding: 29rem 1.5rem 7rem;
  }

  .p-top-security__detail-top-list ul li p {
    font-size: 1.3rem;
  }

  .p-top-security__detail-top-list ul li::before {
    top: 2.4rem;
  }

  .p-top-security__detail-bottom {
    padding: 4.7rem 2rem 8.7rem 2rem;
  }

  .p-top-security__detail-bottom-img-front {
    left: 5vw;
  }

  .p-top-security__detail-bottom-img-back {
    right: 5vw;
  }

  .p-top-customer__contents {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 4rem;
  }

  .p-top-data__contents-top {
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .p-top-data__content-num p {
    margin-top: -3rem;
  }

  .p-top-data__content-img1 {
    margin: 0.8rem auto 2rem auto;
  }

  .p-top-data__content-img2-wrap {
    margin: 1.8rem auto 12rem auto;
    padding-top: 4rem;
    width: 29rem;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(1) {
    right: 0%;
    top: 5%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(2) {
    left: 4%;
    top: 102%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-text p:nth-of-type(3) {
    right: -2%;
    top: 11%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(1) {
    left: 0%;
    top: 20%;
  }

  .p-top-data__content-img2-wrap .p-top-data__content-img2-nums > .p-top-data__content-num:nth-of-type(3) {
    right: 0%;
    top: 26%;
  }

  .p-top-data__contents_middle {
    gap: 3rem;
  }

  .p-top-data__contents_middle div:nth-of-type(1) .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-title-type2 {
    padding: 1.5rem 2.8rem;
  }

  .p-top-data__contents_middle .p-top-data__content-box-wrap .p-top-data__content-box > .p-top-data__content-num {
    margin: 1rem auto 1.4rem auto;
  }

  .p-top-data__content-year p.type2 {
    left: -6.2rem;
    margin: 0 auto 1.4rem auto;
    position: relative;
    top: -1.3rem;
  }

  .p-top-data__content-wrap {
    margin-top: -1rem;
  }

  .p-top-data__content-list {
    margin-bottom: 2.8rem;
    padding: 0;
    width: 26rem;
  }

  .p-top-company__title-bg {
    top: 25.6rem;
  }

  .p-top-company__contents {
    font-size: 1.4rem;
    margin: 4rem 1rem 8rem;
  }

  .p-top-company__contents th {
    padding: 1.7rem 0;
    width: 24%;
  }

  .p-top-company__contents td {
    padding: 1.7rem 0 1.7rem 1rem;
  }

  .p-top-company__contents-list-item {
    padding-left: 3rem;
    text-indent: -2.7rem;
  }
}

@media screen and (max-width: 430px) {
  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 18.9rem;
  }

  .p-top-security__tab-top-head h3 .p-top-security__tab-top-head-br2 {
    display: inline;
  }

  .p-top-security__tab-top-head h3 .p-top-security__tab-top-head-space2 {
    display: inline;
  }

  .p-top-security__tab4 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black-box::after {
    content: var(--p-top-security__tab-top-head-h3-content-04-2);
    white-space: pre;
  }

  .p-top-security__tab6 .p-top-security__tab-top .p-top-security__tab-top-content .p-top-security__tab-top-head .p-top-security__tab-top-head-black-box::after {
    content: var(--p-top-security__tab-top-head-h3-content-06-2);
    white-space: pre;
  }
}

@media screen and (max-width: 361px) {
  .c-primary-title02 {
    font-size: 2rem;
  }

  .c-primary-title03 {
    font-size: 2rem;
  }

  .p-top-assist {
    padding: 5.8rem 2rem 8rem;
  }

  .p-top-assist__content-name .p-top-assist__content-text-top {
    font-size: 1.8rem;
  }

  .p-top-advantage__contents-box-wrap.type2 .p-top-advantage_img_box:nth-of-type(1) img {
    height: 17.9rem;
  }

  .p-top-advantage_text_box {
    padding: 2rem 1rem;
  }

  .p-top-features {
    padding: 11.5rem 0 12.8rem;
  }

  .p-top-security {
    padding: 9.3rem 0 0;
  }

  .p-top-data__content-img2-wrap {
    padding-top: 4rem;
    width: 29rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-cta .c-btn {
    transition: 0.5s;
    transition-property: opacity;
  }

  .l-cta .c-btn::after {
    transition: 0.5s;
    transition-property: transform;
  }

  .l-cta .c-btn:hover {
    opacity: 0.9;
  }

  .l-cta .c-btn:hover::after {
    transform: translateX(0.7rem);
  }

  .l-footer__contents__nav-link:hover {
    color: #ea8425;
  }

  .l-footer__contents__nav-link-head:hover {
    border-bottom: 3px solid #ea8425;
  }

  .l-main--404 .error-link::after,
  .l-main--error .error-link::after {
    transition: 0.5s;
    transition-property: left;
  }

  .l-main--404 .error-link:hover::after,
  .l-main--error .error-link:hover::after {
    left: 1rem;
  }

  .l-navi__btn a:hover::before {
    opacity: 0;
  }

  .l-navi__btn a:hover {
    color: #e35025;
  }

  @media not all and (max-width: 923px) {
    .l-navi__menu-item:hover .l-navi__menu-link {
      background: #fff;
      background: #fff;
      box-shadow: 0px 4px 6px 0px rgba(33, 33, 33, 0.12);
      box-sizing: border-box;
      transition: all 0.2s ease;
    }

    .l-navi__menu-item:hover .l-navi__menu-link::before {
      animation-duration: 0.3s;
      animation-fill-mode: forwards;
      animation-name: fadeIn;
      animation-timing-function: ease;
      opacity: 0;
    }

    .l-navi__menu-item:hover .l-navi__menu-link::after {
      background-color: #9b9b9b;
      transition: 0.3s;
    }

    .l-navi__menu-item:hover .l-navi__menu-link span::after {
      opacity: 1;
      transition: 0.3s;
    }
  }

  .p-top-cta__mail-button-wrap:hover {
    border: 3px solid #0a0a0a;
  }

  .p-top-cta__mail-button-wrap:hover::after {
    opacity: 1;
  }

  .p-top-cta__mail-button-wrap:hover .p-top-cta__mail-button {
    color: #0a0a0a;
  }

  .p-top-cta__mail-button-wrap:hover .p-top-cta__mail-button::before {
    background-color: #0a0a0a;
    -webkit-mask-image: url(../images/ico_mail_b.svg);
    mask-image: url(../images/ico_mail_b.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .p-top-cta__mail-button-wrap:hover .p-top-cta__mail-button::after {
    background-image: url(../images/mail_arrow_b.svg);
  }

  .p-top-cta__line-button-wrap:hover {
    border: 3px solid #56a01e;
  }

  .p-top-cta__line-button-wrap:hover::after {
    opacity: 1;
  }

  .p-top-cta__line-button-wrap:hover .p-top-cta__line-button {
    color: #56a01e;
  }

  .p-top-cta__line-button-wrap:hover .p-top-cta__line-button::after {
    background-image: url(../images/line_arros_g.svg);
  }
}

@media all and (-ms-high-contrast: none) {
  html,
  body {
    display: none;
  }
}

/*# sourceMappingURL=maps/style.css.map */
