@charset "UTF-8";
:root {
  --Primary-MEC-Red: #ff1100;
  --Primary-MEC-Black: #000000;
  --Primary-White: #ffffff;
  --secondary-monotone-black-a-33: #333333;
  --secondary-monotone-gray-155: #555555;
  --secondary-monotone-gray-282: #828282;
  --secondary-monotone-gray-3-a-2: #a2a2a2;
  --secondary-monotone-gray-4-c-3: #c3c3c3;
  --secondary-monotone-gray-5-f-7: #f7f7f7;
  --Supplementary-Color-bg-F1F1F1: #f1f1f1;
  --Supplementary-Color-bg-87939F: #87939f;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: var(--secondary-monotone-black-a-33);
  background: var(--Supplementary-Color-bg-F1F1F1);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  overflow-wrap: break-word;
}

body {
  background: var(--Supplementary-Color-bg-F1F1F1);
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 90px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header.is-scrolled {
  max-width: 1340px;
  width: calc(100% - 20px);
  margin: 10px auto;
  border-radius: 4px;
  background: transparent;
}
.c-header.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  pointer-events: none;
}
.c-header.is-scrolled .inner-block {
  z-index: 4;
  background-color: inherit;
}
.c-header.is-scrolled .sp-menu {
  margin-top: 100px;
}
.c-header.is-scrolled .menu-overlay {
  margin-top: 0;
}
.c-header.is-open {
  background-color: var(--Supplementary-Color-bg-F1F1F1);
  width: 100%;
  margin-block: 0;
}
.c-header.is-open .sp-menu {
  margin-top: 72px !important;
}
.c-header .inner-block {
  max-width: 1400px;
  padding: 20px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  z-index: 4;
}
.c-header .logo img {
  max-width: 270px;
  display: block;
  width: 100%;
}
.c-header .menu-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 20px;
}
.c-header .header-btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  border: none;
  cursor: pointer;
  font-size: 12px;
  position: relative;
}
.c-header .header-btn01::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #FF1100;
  bottom: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.c-header .header-btn01 .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.c-header .header-btn01.unavailable {
  pointer-events: none;
  color: var(--secondary-monotone-gray-282, #828282);
}
.c-header .header-btn01.unavailable::after {
  background-color: var(--secondary-monotone-gray-282, #828282);
}
.c-header .header-btn01.unavailable .ico::before {
  background-color: var(--secondary-monotone-gray-282, #828282);
}
.c-header .header-btn01.is-active {
  color: #FF1100;
}
.c-header .header-btn01.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #FF1100;
}
.c-header .header-btn01.is-active .ico {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-header .header-btn01 .ico {
  position: relative;
  width: 10px;
  height: 10px;
}
.c-header .header-btn01 .ico::before {
  content: "";
  -webkit-mask: url(../img/common/arrow01.svg) no-repeat center/contain;
          mask: url(../img/common/arrow01.svg) no-repeat center/contain;
  background-color: var(--secondary-monotone-black-a-33);
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 10px;
  height: 10px;
}
.c-header .header-btn01 .ico.external::before {
  -webkit-mask: url(../img/common/external.svg) no-repeat center/contain;
          mask: url(../img/common/external.svg) no-repeat center/contain;
}
@-webkit-keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-header .bg-menu-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 20;
  max-width: 1160px;
  margin: 20px auto 0;
  width: calc(100% - 40px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .bg-menu-content.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.c-header .bg-menu-content .inn {
  padding: 60px;
  display: grid;
  gap: 60px;
  grid-template-columns: 340px 1fr;
}
.c-header .menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.c-header .menu-overlay.is-open {
  display: block;
}
.c-header .menu-overlay {
  margin-top: 90px;
}
.c-header .ttl-area {
  border-right: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.c-header .ttl-area .en {
  font-size: 30px;
  color: #FF1100;
  margin-bottom: 10px;
  line-height: 1;
}
.c-header .ttl-area .jp {
  font-size: 12px;
  letter-spacing: 0.05em;
}
.c-header .menu-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  width: 100%;
}
.c-header .btn-menu {
  border: 1px solid var(--secondary-monotone-black-a-33);
  cursor: pointer;
  font-size: 10px;
  padding: 10px;
  border-radius: 4px;
  display: block;
}
.c-header .sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--Supplementary-Color-bg-F1F1F1);
  z-index: 12;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  margin-top: 90px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-header .sp-menu.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.c-header .sp-menu .sp-menu-body {
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.c-header .sp-menu .sp-menu-footer {
  padding: 40px;
}
.c-header .sp-menu .c-btn05 {
  margin-bottom: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
}
.c-header .sp-menu .copyright {
  color: var(--secondary-monotone-gray-3-a-2);
  text-align: right;
  font-size: 10px;
}
.c-header .sp-acc-trigger {
  width: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  text-align: left;
  position: relative;
}
.c-header .sp-acc-trigger::before {
  content: "";
  -webkit-transform: 0.3s ease-in-out;
          transform: 0.3s ease-in-out;
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: block;
  height: 1px;
  background-color: var(--secondary-monotone-gray-4-c-3);
}
.c-header .sp-acc-trigger .en {
  font-size: 30px;
  color: #FF1100;
  line-height: 1;
}
.c-header .sp-acc-trigger .jp {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}
.c-header .sp-acc-trigger .ico {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
.c-header .sp-acc-trigger .ico::before {
  content: "";
  -webkit-mask: url(../img/common/arrow01.svg) no-repeat center/contain;
          mask: url(../img/common/arrow01.svg) no-repeat center/contain;
  background-color: #FF1100;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 16px;
  height: 16px;
}
.c-header .sp-acc-trigger[aria-expanded=true] {
  padding-bottom: 5px;
  border: none;
}
.c-header .sp-acc-trigger[aria-expanded=true]::before {
  display: none;
}
.c-header .sp-acc-trigger[aria-expanded=true] .ico {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.c-header .sp-acc-panel {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.c-footer {
  z-index: 5;
  position: relative;
}
.c-footer .w-bg-wrap {
  background: url(../img/common/footer_img.jpg.webp) no-repeat center/cover;
  padding-top: 140px;
}
.c-footer .w-bg-wrap:not(:has(.recruit-wrap)) {
  padding-top: 0;
}
.c-footer .recruit-wrap .cont {
  margin: auto;
  max-width: 1120px;
  background-color: #FF1100;
  color: #fff;
  border-radius: 10px;
  padding: 60px 60px 64px;
}
.c-footer .recruit-wrap .cont .top {
  display: grid;
  grid-template-columns: calc(100% - 560px - 60px) 560px;
  gap: 60px;
  margin-bottom: 44px;
}
.c-footer .recruit-wrap .cont .top .c-ttl01 .jp::before {
  background: currentColor;
}
.c-footer .recruit-wrap .cont .c-btn02 {
  width: 100%;
}
.c-footer .recruit-wrap .cont .c-btn02 .inn {
  background-color: #fff;
  padding-inline: 10px 40px;
  border: 1px solid #FF1100;
  border-radius: 8px;
  gap: 30px;
  display: grid;
  grid-template-columns: 180px 1fr;
}
.c-footer .recruit-wrap .cont .c-btn02 .inn .txt-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}
.c-footer .recruit-wrap .cont .c-btn02 .inn .txt-wrap {
  color: #FF1100;
  font-size: 30px;
  font-weight: 300;
  white-space: nowrap;
}
.c-footer .recruit-wrap .cont .c-btn02 .inn .txt-wrap .label-hover {
  color: #fff;
}
.c-footer .recruit-wrap .cont .c-btn02 .image-wrapper {
  position: relative;
  padding-left: 20px;
}
.c-footer .recruit-wrap .cont .c-btn02 .image-wrapper::before {
  content: "";
  background: url(../img/common/footer_recruit_img02.png.webp) no-repeat center/cover;
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: 2;
}
.c-footer .recruit-wrap .cont .c-btn02 .image-wrapper .mask {
  overflow: hidden;
  -webkit-mask-image: url("../img/common/footer_recruit_trimmingshape.svg");
  mask-image: url("../img/common/footer_recruit_trimmingshape.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}
.c-footer .recruit-wrap .cont .c-btn02 .image-wrapper img {
  width: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .recruit-wrap .cont .c-btn02 .ico {
  background-color: #FF1100;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  border: 1px solid #FF1100;
}
.c-footer .recruit-wrap .cont .c-btn02 .ico::before {
  width: 16px;
  height: 16px;
}
.c-footer .recruit-wrap .c-ttl01 .en {
  color: #fff;
}
.c-footer .footer-wrap {
  padding-block: 136px 103px;
}
.c-footer .footer-wrap .inner-block {
  max-width: 1360px;
}
.c-footer .footer-wrap .top-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer .footer-wrap .logo {
  height: 26px;
}
.c-footer .footer-wrap .logo img {
  display: block;
  height: 100%;
}
.c-footer .footer-wrap .to-top {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--secondary-monotone-gray-3-a-2);
  position: relative;
}
.c-footer .footer-wrap .to-top::before {
  content: "";
  -webkit-mask: url(../img/common/arrow03.svg) no-repeat center/contain;
          mask: url(../img/common/arrow03.svg) no-repeat center/contain;
  background-color: #fff;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 20px;
  height: 20px;
}
.c-footer .footer-wrap .menu-cont-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 59px;
  padding-bottom: 64px;
  border-bottom: 1px solid #fff;
  gap: 40px;
}
.c-footer .footer-wrap .menu-cont-wrap .contact-box {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 30px 30px 30px;
  color: #fff;
  max-width: 371px;
  width: 100%;
  height: 100%;
}
.c-footer .footer-wrap .menu-cont-wrap .contact-box .c-ttl02 {
  margin-bottom: 10px;
  white-space: nowrap;
}
.c-footer .footer-wrap .menu-cont-wrap .contact-box .txt {
  font-size: 14px;
}
.c-footer .footer-wrap .menu-cont-wrap .contact-box .txt + .txt {
  margin-top: 4px;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .unavailable {
  pointer-events: none;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .unavailable * {
  color: var(--secondary-monotone-gray-3-a-2);
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 {
  margin-bottom: 28px;
  white-space: nowrap;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02:is(a) .jp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02:is(a) .ico {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02:is(a) .ico::before {
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 6px;
  height: 6px;
  background-color: #fff;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02:is(a) .ico.external::before {
  -webkit-mask: url(../img/common/external.svg) no-repeat center/contain;
          mask: url(../img/common/external.svg) no-repeat center/contain;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 .c-btn05 {
  margin-top: 4px;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 .c-btn05 .ico {
  width: 10px;
  height: 10px;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 .c-btn05 .ico::before {
  background-color: #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-btn05 {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-btn05 .ico::before {
  background-color: #fff;
}
.c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-btn05 + .c-btn05 {
  margin-top: 18px;
}
.c-footer .footer-wrap .bottom-cont {
  padding-top: 24px;
}
.c-footer .footer-wrap .bottom-cont .c-btn05 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  color: var(--secondary-monotone-gray-3-a-2);
  margin-left: auto;
  font-size: 12px;
}
.c-footer .footer-wrap .bottom-cont .c-btn05 .ico::before {
  background-color: var(--secondary-monotone-gray-3-a-2);
}
.c-footer .copy-block {
  padding-block: 20px;
}
.c-footer .copy-block .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1380px;
}
.c-footer .copy-block .logo {
  max-width: 383px;
}
.c-footer .copy-block .copy {
  color: var(--secondary-monotone-gray-3-a-2);
  font-size: 12px;
}

.c-ttl01 .en {
  font-size: 84px;
  font-weight: 200;
  color: #FF1100;
  line-height: 1;
}
.c-ttl01 .jp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 24px;
  position: relative;
  font-family: "Shippori Antique", sans-serif;
  padding-left: 70px;
  margin-top: 20px;
  line-height: 1.3em;
  letter-spacing: 0.05em;
}
.c-ttl01 .jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 60px;
  height: 1px;
  margin-top: 0;
  background-color: var(--secondary-monotone-gray-4-c-3);
}

.c-ttl02.wh {
  color: #fff;
}
.c-ttl02 .en {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
}
.c-ttl02 .en::before {
  content: "";
  background-color: #FF1100;
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
}
.c-ttl02 .jp {
  font-size: 16px;
  display: block;
  margin-top: 4px;
}

.c-ttl03 {
  color: var(--secondary-monotone-black-a-33, #333);
  font-family: "Shippori Antique", sans-serif;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-ttl04 {
  margin-bottom: 40px;
}
.c-ttl04 .en {
  display: block;
  color: #FF1100;
  line-height: 1;
  font-size: 14px;
  margin-bottom: 20px;
}
.c-ttl04 .jp {
  font-family: "Shippori Antique", sans-serif;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 1.6px;
}

.c-ttl05 {
  font-family: "Shippori Antique", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  gap: 20px;
  letter-spacing: 1.9px;
}
.c-ttl05 .en {
  color: #FF1100;
  padding-left: 8px;
  position: relative;
  line-height: 1;
  letter-spacing: 0.7px;
}
.c-ttl05 .en::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #FF1100;
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
}
.c-ttl05 .jp {
  font-size: 38px;
  line-height: 130%;
}

[class*=c-btn] .ico {
  position: relative;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
[class*=c-btn] .ico::before {
  content: "";
  -webkit-mask: url(../img/common/arrow01.svg) no-repeat center/contain;
          mask: url(../img/common/arrow01.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
[class*=c-btn] .ico.external::before {
  -webkit-mask: url(../img/common/external.svg) no-repeat center/contain;
          mask: url(../img/common/external.svg) no-repeat center/contain;
}
[class*=c-btn] .ico.arrow02 {
  background-color: #FF1100;
  -webkit-mask: url(../img/common/arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/arrow02.svg) no-repeat center/contain;
}
[class*=c-btn].unavailable {
  pointer-events: none;
}
[class*=c-btn].unavailable * {
  color: var(--secondary-monotone-gray-3-a-2) !important;
}

.c-btn01 .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.c-btn01.is-active {
  color: #FF1100;
}
.c-btn01.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #FF1100;
}
.c-btn01.is-active .ico {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-btn01 .ico {
  width: 10px;
  height: 10px;
}
.c-btn01 .ico::before {
  background-color: var(--secondary-monotone-black-a-33);
  width: 10px;
  height: 10px;
}

.c-btn02 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn02 .inn {
  color: #fff;
  font-size: 14px;
  padding: 20px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #FF1100;
  border-radius: 4px;
  border: 1px solid #FF1100;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.c-btn02 .inn.gray {
  background: var(--Supplementary-Color-bg-87939F, #87939F);
  border: 1px solid var(--Supplementary-Color-bg-87939F, #87939F);
  padding: 14px 20px;
}
.c-btn02 .txt-wrap {
  position: relative;
  overflow: hidden;
}
.c-btn02 .txt-wrap .label-hover {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn02 .label-default {
  display: block;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.c-btn02 .label-hover {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.c-btn02 .ico {
  position: relative;
  width: 24px;
  height: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn02 .ico::before {
  content: "";
  -webkit-mask: url(../img/common/arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/arrow02.svg) no-repeat center/contain;
  background-color: #fff;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-btn02 .ico-download {
  position: relative;
  width: 24px;
  height: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn02 .ico-download::before {
  content: "";
  -webkit-mask: url(../img/common/icon_download_arrow.svg) no-repeat center/contain;
          mask: url(../img/common/icon_download_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 12px;
  height: 12px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-btn02.bg-gray {
  border-radius: 4px;
  background: var(--Supplementary-Color-bg-87939F, #87939F);
}

.c-btn03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.c-btn03 .en {
  font-size: 30px;
  color: #FF1100;
  line-height: 1;
}
.c-btn03 .jp {
  display: block;
  font-size: 12x;
  margin-top: 6px;
}
.c-btn03 .ico {
  width: 10px;
  height: 10px;
}
.c-btn03 .ico::before {
  width: 10px;
  height: 10px;
  background-color: #FF1100;
}

.c-btn04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 14px 16px;
  width: 100%;
  border-bottom: 1px solid var(--secondary-monotone-gray-4-c-3);
  font-size: 14px;
}
.c-btn04 .ico {
  width: 20px;
  height: 20px;
}
.c-btn04 .ico::before {
  width: 20px;
  height: 20px;
  background-color: var(--Primary-MEC-Red);
}

.c-btn05 {
  color: var(--secondary-monotone-black-a-33);
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
}
.c-btn05 .ico {
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-btn05 .ico::before {
  background-color: var(--secondary-monotone-black-a-33);
  width: 10px;
  height: 10px;
}
.c-btn05:has(.txt-wrap) .txt-wrap {
  position: relative;
  overflow: hidden;
}
.c-btn05:has(.txt-wrap) .txt-wrap .label-hover {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn05:has(.txt-wrap) .label-default {
  display: block;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.c-btn05:has(.txt-wrap) .label-hover {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}

main {
  padding-top: 90px;
}

.bg-g01 {
  background: var(--Supplementary-Color-bg-F1F1F1);
}

.bg-g02 {
  background: var(--Supplementary-Color-bg-87939F);
}
.bg-g02 .c-ttl01 .jp {
  color: #fff;
}
.bg-g02 .c-sec-head {
  color: #fff;
}

.bg-g03 {
  background: var(--secondary-monotone-gray-5-f-7);
}

.bg-g04 {
  background: var(--Primary-White);
}

.en {
  letter-spacing: 0.04em;
  font-family: "Roboto Flex", sans-serif;
}

.c-sec {
  padding-block: 140px;
}

.c-sec-head {
  display: grid;
  grid-template-columns: 1fr min(50%, 530px);
  gap: 80px;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 80px;
}
.c-sec-head .desc {
  letter-spacing: 0.05em;
  line-height: 1.75em;
}

.sec-desc {
  max-width: 1000px;
  margin: 50px auto 0;
  line-height: 175%;
  letter-spacing: 0.8px;
}

.not-found .c-kv-section {
  padding-block: 120px 180px;
}
.not-found .c-kv-section .txt-area {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding-bottom: 40px;
}
.not-found .c-kv-section .txt-area::before {
  content: "";
  display: block;
  aspect-ratio: 170/140;
  width: 170px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("../img/common/404_deco.png.webp") no-repeat center/contain;
}
.not-found .c-kv-section .inner-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.not-found .c-kv-section .txt-wrap .desc {
  line-height: 1.8em;
  margin-bottom: 58px;
}
.not-found .c-kv-section .txt-wrap .c-btn02 {
  max-width: 300px;
  width: 100%;
  font-size: 14px;
}
.not-found .c-kv-section .txt-wrap .c-btn02 .inn {
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.not-found .c-kv-section .txt-wrap .c-btn02 + .c-btn02 {
  margin-top: 20px;
}

/* --------------------------------
c-kv-section
----------------------------------- */
.c-kv-section {
  overflow: hidden;
  padding-top: 60px;
  position: relative;
}
.c-kv-section .txt-area {
  z-index: 2;
  position: relative;
}
.c-kv-section .img-area {
  position: relative;
  padding-inline: 20px;
  z-index: 1;
  position: relative;
  margin: 0 auto;
  max-height: 480px;
}
.c-kv-section .img-area::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  width: 360px;
  height: 290px;
  background: url("../img/common/kv-decoration.png.webp") no-repeat center/contain;
  bottom: 99%;
  right: calc(50% - 50vw);
}
.c-kv-section .img-area picture img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  z-index: 1;
}
.c-kv-section.no-image::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 290px;
  background: url("../img/common/kv-decoration.png.webp") no-repeat center/contain;
  top: 0;
  right: 0;
}

.kv-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}
.kv-ttl .desc {
  color: var(--Primary-MEC-Red);
  font-size: 14px;
}
.kv-ttl .main {
  font-size: 68px;
  color: #FF1100;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 3.4px;
}
.kv-ttl .ja {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  position: relative;
  padding-left: 70px;
}
.kv-ttl .ja::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: #333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-breadcrumbs {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}
.c-breadcrumbs .breadcrumbs-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-breadcrumbs .breadcrumbs-item {
  font-size: 12px;
  font-weight: 400;
}
.c-breadcrumbs .breadcrumbs-item + .breadcrumbs-item {
  padding-left: 31px;
  position: relative;
}
.c-breadcrumbs .breadcrumbs-item + .breadcrumbs-item::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #A2A2A2;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 14px;
  margin: auto;
}
.c-breadcrumbs .breadcrumbs-item a {
  color: #A2A2A2;
}
.c-breadcrumbs .breadcrumbs-item a:hover {
  color: #333;
}

.c-service-kv-section {
  position: relative;
  padding-top: 60px;
}
.c-service-kv-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  aspect-ratio: 794/640;
  display: block;
  width: 100%;
  max-width: 794px;
  background: url("../img/common/kv-service-decoration.png.webp") no-repeat center/contain;
}
.c-service-kv-section .img-area {
  display: none;
}
.c-service-kv-section .img-area.min1400 {
  display: none;
}
.c-service-kv-section .top-wrap {
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.c-service-kv-section .c-breadcrumbs {
  padding-block: 20px;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 0;
}
.c-service-kv-section .kv-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}
.c-service-kv-section .kv-ttl .sub {
  color: var(--Primary-MEC-Red);
  font-size: 14px;
  margin-bottom: 18px;
}
.c-service-kv-section .kv-ttl .main {
  font-size: 84px;
  color: #FF1100;
  font-weight: 200;
  line-height: 1;
}
.c-service-kv-section .kv-ttl .ja {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  position: relative;
  padding-left: 70px;
  font-weight: 500;
}
.c-service-kv-section .kv-ttl .ja::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: #333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.desc-sec .inner-block {
  display: grid;
  gap: 60px;
  grid-template-columns: min(30%, 320px) 1fr;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
#wrapper:has(.home) .c-header:not(.is-scrolled):not(.is-open) {
  background-color: var(--Supplementary-Color-bg-F1F1F1);
}

.home .mv-sec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: flex-end;
      -ms-flex-line-pack: end;
          align-content: flex-end;
  padding: var(--space);
  position: relative;
  height: 100vh;
  margin-top: -90px;
  --space: 20px;
}
.home .mv-sec {
  /* 背景固定 */
}
.home .mv-sec .bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  padding: var(--space);
  background: var(--Supplementary-Color-bg-F1F1F1);
}
.home .mv-sec .bg .bg-inner {
  position: absolute;
  inset: var(--space);
  overflow: hidden;
}
.home .mv-sec .bg .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: mvSlider 25s ease-in-out infinite;
          animation: mvSlider 25s ease-in-out infinite;
}
.home .mv-sec .bg .slide:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.home .mv-sec .bg .slide:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.home .mv-sec .bg .slide:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.home .mv-sec .bg .slide:nth-child(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.home .mv-sec .bg .slide:nth-child(5) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
.home .mv-sec .bg .slide picture,
.home .mv-sec .bg .slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.home .mv-sec .bg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.home .mv-sec .bg::before {
  content: "";
  background: #C9D3D1;
  mix-blend-mode: multiply;
  position: absolute;
  top: var(--space);
  left: var(--space);
  bottom: var(--space);
  right: var(--space);
  z-index: 1;
}
@-webkit-keyframes mvSlider {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  24% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes mvSlider {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  24% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.home .mv-sec {
  /* 白フェード */
}
.home .mv-sec .overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  --mv-overlay-blur: 0px;
  --mv-overlay-top-whiteness: 0;
  --mv-overlay-bottom-whiteness: 0;
  --mv-overlay-bottom-stop: 70%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, var(--mv-overlay-top-whiteness))), to(rgba(255, 255, 255, var(--mv-overlay-bottom-whiteness))));
  background: linear-gradient(180deg, rgba(255, 255, 255, var(--mv-overlay-top-whiteness)) 0%, rgba(255, 255, 255, var(--mv-overlay-bottom-whiteness)) var(--mv-overlay-bottom-stop));
  -webkit-backdrop-filter: blur(var(--mv-overlay-blur));
  backdrop-filter: blur(var(--mv-overlay-blur));
  opacity: 1;
}
.home .mv-sec {
  /* コンテンツ */
}
.home .mv-sec .content {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  padding: 0 40px 40px 0;
  width: 100%;
  color: var(--Primary-White);
}
.home .mv-sec .title {
  font-size: 5.7142857143vw;
  letter-spacing: 0.07em;
  line-height: 1.25;
  font-family: "Shippori Antique", sans-serif;
  padding-left: 40px;
  position: relative;
  white-space: nowrap;
}
.home .mv-sec .title::before {
  content: "";
  background: #FF1100;
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 10px;
}
.home .mv-sec .lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: max(14px, 1vw);
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.home .about-sec {
  position: relative;
  z-index: 5;
  padding-block: 240px 0;
}
.home .about-sec .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .about-sec .text {
  font-size: 18px;
  line-height: 3.6;
  letter-spacing: 0.2em;
}
.home .about-sec .c-ttl01 .jp::before {
  background: currentColor;
}
.home .value-sec {
  position: relative;
  z-index: 5;
}
.home .value-sec .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}
.home .value-sec .list .item {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.home .value-sec .list .label {
  font-family: "Roboto Flex", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #FF1100;
  margin-top: 10px;
}
.home .value-sec .list .img {
  background: var(--secondary-monotone-gray-5-f-7);
  margin-block: 30px;
}
.home .value-sec .list .img img {
  width: 100%;
}
.home .value-sec .list .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  font-family: "Shippori Antique", sans-serif;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.home .value-sec .list .text {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.home .value-sec .c-btn02 {
  margin-top: 60px;
  margin-inline: auto;
}
.home .profile-sec {
  position: relative;
  z-index: 5;
}
.home .profile-sec .link-block {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home .profile-sec .link-block .cont {
  background-color: #fff;
  padding: 30px 20px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.home .profile-sec .link-block .cont .txt-wrap {
  position: relative;
  overflow: hidden;
  font-size: 24px;
  line-height: 1.3em;
  font-family: "Shippori Antique", sans-serif;
}
.home .profile-sec .link-block .cont .txt-wrap .label-hover {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.home .profile-sec .link-block .cont .txt-wrap .label-default {
  display: block;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.home .profile-sec .link-block .cont .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: auto;
  margin-bottom: 0;
}
.home .profile-sec .link-block .cont .bottom .img-wrap {
  overflow: hidden;
  position: relative;
}
.home .profile-sec .link-block .cont .bottom .img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0.3;
  z-index: 1;
}
.home .profile-sec .link-block .cont .bottom .img-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .profile-sec .link-block .cont .bottom .ico {
  margin-top: auto;
  margin-bottom: 0;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  background-color: #FF1100;
  position: relative;
  display: block;
  border-radius: 4px;
  border: 1px solid #FF1100;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .profile-sec .link-block .cont .bottom .ico::before {
  content: "";
  -webkit-mask: url(../img/common/arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/arrow02.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .service-sec {
  position: relative;
  z-index: 5;
  background: var(--Supplementary-Color-bg-F1F1F1);
}
.home .service-sec .stack-cards {
  padding: 0;
  margin-block: 120px 180px;
}
.home .service-sec .stack-cards .card-wrap {
  pointer-events: none;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  z-index: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .service-sec .stack-cards .card-wrap:nth-child(1) {
  z-index: 1;
}
.home .service-sec .stack-cards .card-wrap:nth-child(1) .card {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.home .service-sec .stack-cards .card-wrap:nth-child(2) {
  z-index: 2;
}
.home .service-sec .stack-cards .card-wrap:nth-child(2) .card {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
.home .service-sec .stack-cards .card-wrap:nth-child(3) {
  z-index: 3;
}
.home .service-sec .stack-cards .card-wrap:nth-child(3) .card {
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
.home .service-sec .stack-cards .card-wrap:nth-child(4) {
  z-index: 4;
}
.home .service-sec .stack-cards .card-wrap:nth-child(4) .card {
  -webkit-transform: translateY(180px);
          transform: translateY(180px);
}
.home .service-sec .stack-cards .card {
  width: 100%;
  height: var(--card-h);
  background: var(--Supplementary-Color-bg-F1F1F1);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
  pointer-events: auto;
}
.home .service-sec .stack-cards .card:hover .card-img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.home .service-sec .stack-cards .card-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.home .service-sec .stack-cards .card-body .head {
  padding-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.home .service-sec .stack-cards .card-body .head::before {
  content: "";
  width: 100%;
  background-color: #FF1100;
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home .service-sec .stack-cards .card-body .head .card-index {
  font-size: 14px;
  color: var(--secondary-monotone-gray-3-a-2);
}
.home .service-sec .stack-cards .card-body .head .card-index .red {
  color: #FF1100;
}
.home .service-sec .stack-cards .card-body .head .txt {
  font-size: 14px;
  color: #FF1100;
}
.home .service-sec .stack-cards .card-body .cont-wrap {
  display: grid;
  gap: 140px;
  grid-template-columns: 1fr min(40%, 400px);
  padding-block: 20px;
}
.home .service-sec .stack-cards .card-body .cont-wrap .txt-wrap {
  padding-block: 106px 20px;
}
.home .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .ttl {
  font-family: "Shippori Antique", sans-serif;
  font-size: 32px;
}
.home .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .txt {
  font-size: 16px;
  margin-top: 40px;
}
.home .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .c-btn02 {
  margin-top: 90px;
}
.home .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .c-btn02 .txt-wrap {
  padding: 0;
}
.home .service-sec .stack-cards .card-body .cont-wrap .img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  border-radius: 50%;
}
.home .service-sec .stack-cards .card-body .cont-wrap .img-wrap img {
  display: block;
  width: 100%;
}
.home .service-sec {
  /* ───── SP: SLIDER ───── */
}
.home .service-sec .sp-slider-section {
  padding-inline: 20px;
}
.home .service-sec .sp-slider-section .section-header {
  padding: 48px 20px 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.home .service-sec .sp-slider-section .slider-wrapper {
  position: relative;
  overflow: hidden;
}
.home .service-sec .sp-slider-section .slider-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.home .service-sec .sp-slider-section .slide {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(100vw - 90px);
      -ms-flex: 0 0 calc(100vw - 90px);
          flex: 0 0 calc(100vw - 90px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 342px;
  width: 100%;
  background: var(--gray-light);
  display: grid;
  grid-template-rows: 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--Supplementary-Color-bg-F1F1F1);
  position: relative;
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.home .service-sec .sp-slider-section .img-wrap {
  width: 100%;
  overflow: hidden;
  max-width: 200px;
  display: block;
  background: var(--gray-mid);
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin: 19px auto;
  pointer-events: none;
}
.home .service-sec .sp-slider-section .img-wrap img {
  width: 100%;
}
.home .service-sec .sp-slider-section .head {
  position: relative;
  padding-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}
.home .service-sec .sp-slider-section .head::before {
  content: "";
  width: 100%;
  background-color: #FF1100;
  height: 1px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}
.home .service-sec .sp-slider-section .head .card-index {
  font-size: 12px;
  color: var(--secondary-monotone-gray-3-a-2);
  white-space: nowrap;
}
.home .service-sec .sp-slider-section .head .card-index .red {
  color: #FF1100;
}
.home .service-sec .sp-slider-section .head .txt {
  color: #FF1100;
}
.home .service-sec .sp-slider-section .ttl {
  font-size: 26px;
  font-family: "Shippori Antique", sans-serif;
  margin-bottom: 10px;
  line-height: 1.3;
  text-align: center;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .service-sec .sp-slider-section .txt {
  font-size: 14px;
}
.home .service-sec .sp-slider-section .c-btn02 {
  margin: 30px auto 0;
}
.home .service-sec .sp-slider-section {
  /* Slider controls */
}
.home .service-sec .sp-slider-section .slider-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 28px 0 0;
  margin-right: -20px;
  margin-left: -20px;
  width: calc(100% + 40px);
}
.home .service-sec .sp-slider-section .slider-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 300px;
}
.home .service-sec .sp-slider-section .dot {
  width: 100%;
  height: 2px;
  cursor: pointer;
  position: relative;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.home .service-sec .sp-slider-section .dot::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: var(--secondary-monotone-gray-4-c-3);
  -webkit-transition: background 0.3s, height 0.3s;
  transition: background 0.3s, height 0.3s;
}
.home .service-sec .sp-slider-section .dot.active {
  width: 100%;
}
.home .service-sec .sp-slider-section .dot.active::before {
  height: 2px;
  background: var(--secondary-monotone-black-a-33);
}
.home .service-sec .sp-slider-section .slider-arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home .service-sec .sp-slider-section .arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--secondary-monotone-gray-3-a-2);
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  position: relative;
  background-color: #fff;
}
.home .service-sec .sp-slider-section .arrow-btn::before {
  content: "";
  -webkit-mask: url(../img/common/arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/arrow02.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 16px;
  height: 16px;
  background-color: #FF1100;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.home .service-sec .sp-slider-section .arrow-btn.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.home .service-sec .sp-slider-section .arrow-btn:focus-visible {
  outline: 2px solid var(--secondary-monotone-black-a-33);
  outline-offset: 3px;
}
.home .service-sec .sp-slider-section .arrow-btn:disabled {
  border-color: var(--secondary-monotone-gray-4-c-3);
  background: transparent;
  cursor: default;
  opacity: 1;
}
.home .service-sec .sp-slider-section .arrow-btn:disabled::before {
  background-color: var(--secondary-monotone-gray-3-a-2);
}

/* --------------------------------
profile
----------------------------------- */
.profile .bg-wh {
  background-color: #fff;
}
.profile .bg-img {
  background: url("../../img/profile/bg-img.jpg.webp") no-repeat bottom/auto;
}
.profile .profile-sec .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile .profile-sec .right-cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 700px;
  width: 100%;
}
.profile .profile-sec .company-table {
  text-align: left;
  width: 100%;
}
.profile .profile-sec .company-table tr {
  border-bottom: 1px solid #c3c3c3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0px, 5vw, 40px);
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile .profile-sec .company-table tr:first-child {
  padding-top: 0;
}
.profile .profile-sec .company-table th, .profile .profile-sec .company-table td {
  font-weight: 400;
}
.profile .profile-sec .company-table th {
  width: clamp(90px, 15vw, 200px);
  font-size: 18px;
}
.profile .profile-sec .company-table td {
  font-size: 14px;
}
.profile .profile-sec .company-table td p {
  margin-bottom: 6px;
}
.profile .profile-sec .company-table .map-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.profile .profile-sec .company-table .map-link .font-roboto {
  font-family: "Roboto Flex";
  font-size: 12px;
}
.profile .profile-sec .company-table .map-link .ico {
  position: relative;
  width: 10px;
  height: 10px;
}
.profile .profile-sec .company-table .map-link .ico::before {
  content: "";
  position: absolute;
  -webkit-mask: url(../img/common/external.svg) no-repeat center/contain;
          mask: url(../img/common/external.svg) no-repeat center/contain;
  background-color: var(--secondary-monotone-black-a-33);
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.profile .profile-sec .img-area {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.profile .profile-sec .img-area img {
  width: 100%;
}
.profile .sticky-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.profile .scope .content {
  gap: 100px;
}
.profile .scope .left-cont {
  max-width: 510px;
}
.profile .scope .left-cont p {
  margin-top: 60px;
  line-height: 175%;
}
.profile .scope .right-cont {
  width: 50%;
  min-width: 360px;
  max-width: 510px;
}
.profile .about .right-cont {
  margin-top: 80px;
}
.profile .about .right-cont h3 {
  text-align: right;
  margin-left: auto;
  width: clamp(240px, 45vw, 520px);
}
.profile .about .right-cont .txt {
  margin-top: 60px;
}
.profile .about .right-cont .txt p {
  font-size: 18px;
  line-height: 175%;
  margin-top: 2em;
  letter-spacing: 3.6px;
  font-weight: 500;
}
.profile .about .right-cont .txt p:first-child {
  margin-top: 0;
}
.profile .about .right-cont .btn-wrap {
  margin-top: 60px;
  text-align: right;
}
.profile .about .right-cont .btn-wrap .c-btn02 {
  display: inline-block;
}

/* --------------------------------
message-philosophy
----------------------------------- */
.message-philosophy .sec-content {
  max-width: 1000px;
  margin: 50px auto 0;
}
.message-philosophy .message-sec {
  overflow: hidden;
}
.message-philosophy .message-sec .img-wrap {
  text-align: center;
}
.message-philosophy .message-sec .text {
  line-height: 175%;
  letter-spacing: 0.05em;
}
.message-philosophy .message-sec .text + .text {
  margin-top: 1.75em;
}
.message-philosophy .message-sec .profile {
  margin-top: 40px;
  line-height: 175%;
  letter-spacing: 0.05em;
  text-align: right;
}
.message-philosophy .message-sec .profile .company {
  display: block;
  margin-bottom: 10px;
}
.message-philosophy .message-sec .profile .name {
  margin-left: 12px;
  font-size: 24px;
  line-height: 130%;
}
.message-philosophy .philosophy-sec .acc-box {
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3, #C3C3C3);
}
.message-philosophy .philosophy-sec .acc-box.is-open .acc-head .btn::before {
  rotate: 0deg;
}
.message-philosophy .philosophy-sec .acc-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-block: 30px;
  font-family: "Shippori Antique", sans-serif;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.message-philosophy .philosophy-sec .acc-head .btn {
  border-radius: 6px;
  background: var(--Supplementary-Color-bg-F1F1F1, #F1F1F1);
  border-radius: 6px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 34px;
  aspect-ratio: 1/1;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.message-philosophy .philosophy-sec .acc-head .btn::before, .message-philosophy .philosophy-sec .acc-head .btn::after {
  content: "";
  background: var(--secondary-monotone-black-a-33, #333);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.message-philosophy .philosophy-sec .acc-head .btn::before {
  rotate: 90deg;
}
.message-philosophy .philosophy-sec .acc-body {
  position: relative;
}
.message-philosophy .philosophy-sec .acc-body::before {
  content: "";
  background: currentColor;
  width: 60px;
  height: 1px;
  position: absolute;
  top: 0.8em;
  left: 0;
}
.message-philosophy .philosophy-sec .acc-box:last-child .acc-body {
  padding-bottom: 0;
}
.message-philosophy .philosophy-sec .text01 {
  font-size: 18px;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.2em;
}
.message-philosophy .philosophy-sec .list01 {
  counter-reset: list01;
}
.message-philosophy .philosophy-sec .list01 li {
  padding-left: 20px;
  position: relative;
  line-height: 175%;
  letter-spacing: 0.05em;
}
.message-philosophy .philosophy-sec .list01 li + li {
  margin-top: 20px;
}
.message-philosophy .philosophy-sec .list01 li::before {
  content: counter(list01, decimal) ".";
  counter-increment: list01;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.message-philosophy .philosophy-sec .list02 li + li {
  margin-top: 40px;
}
.message-philosophy .philosophy-sec .list02 .title {
  font-family: "Shippori Antique", sans-serif;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.message-philosophy .philosophy-sec .list02 .text {
  line-height: 175%;
  letter-spacing: 0.05em;
}
.message-philosophy .mission-sec {
  counter-reset: head;
}
.message-philosophy .mission-sec .mission-box {
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3, #C3C3C3);
}
.message-philosophy .mission-sec .mission-box + .mission-box {
  margin-top: 100px;
}
.message-philosophy .mission-sec .box-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  padding-top: 60px;
  max-width: 700px;
}
.message-philosophy .mission-sec .body-inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.message-philosophy .mission-sec .head {
  color: var(--Primary-MEC-Red);
}
.message-philosophy .mission-sec .head .en {
  border-top: 1px solid var(--Primary-MEC-Red);
  font-family: "Roboto Flex", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 20px;
  padding-top: 20px;
  margin-top: -1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.message-philosophy .mission-sec .head .en::before {
  content: "#" counter(head, decimal-leading-zero);
  counter-increment: head;
  margin-right: 6px;
}
.message-philosophy .mission-sec .head .jp {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.message-philosophy .mission-sec .lead {
  font-family: "Shippori Antique", sans-serif;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.message-philosophy .mission-sec .text {
  line-height: 175%;
  letter-spacing: 0.05em;
}
.message-philosophy .mission-sec .list {
  counter-reset: list01;
}
.message-philosophy .mission-sec .list li {
  font-size: 18px;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  line-height: 175%;
  letter-spacing: 0.05em;
}
.message-philosophy .mission-sec .list li + li {
  margin-top: 10px;
}
.message-philosophy .mission-sec .list li::before {
  content: counter(list01, decimal) ".";
  counter-increment: list01;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.message-philosophy .mission-sec .value-list li {
  border-bottom: 1px solid var(--secondary-monotone-gray-4-c-3, #C3C3C3);
  padding-bottom: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.message-philosophy .mission-sec .value-list li + li {
  margin-top: 60px;
}
.message-philosophy .mission-sec .value-list .ico {
  background: var(--Primary-White);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 80px;
  aspect-ratio: 1/1;
}
.message-philosophy .mission-sec .value-list .title {
  font-family: "Shippori Antique", sans-serif;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.message-philosophy .mission-sec .value-list .desc {
  line-height: 175%;
  letter-spacing: 0.05em;
}
.message-philosophy .partner-sec .sec-content {
  background: var(--Primary-White);
  padding: 80px;
}
.message-philosophy .partner-sec .text-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.message-philosophy .partner-sec .title-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
  margin-top: 40px;
}
.message-philosophy .partner-sec .text {
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.05em;
}
.message-philosophy .partner-sec .title {
  font-family: "Shippori Antique", sans-serif;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: right;
}
.message-philosophy .partner-sec .logo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 120px;
}

/* -----------------------------------------------
* privacy-policy Module
* privacy-policyページ用
-------------------------------------------------- */
.privacypolicy {
  counter-reset: number 0;
}

.top-txt {
  line-height: 175%;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
}

.number-box {
  counter-reset: number;
}
.number-box + .c-ttl03 {
  margin-top: 100px;
}

.num-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-block: 40px;
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3, #C3C3C3);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  position: relative;
}
.num-wrap:last-child {
  border-bottom: 1px solid var(--secondary-monotone-gray-4-c-3, #C3C3C3);
}
.num-wrap::before {
  position: absolute;
  content: "#0" counter(number);
  counter-increment: number 1;
  font-size: 14px;
  top: 5px;
  left: 0;
  color: var(--Primary-MEC-Red, #F10);
  font-weight: 400;
  letter-spacing: 0.7px;
  font-family: "Roboto Flex";
}
.num-wrap .txt {
  display: block;
  margin-bottom: 30px;
}
.num-wrap .txt:last-child {
  margin-bottom: 0px;
}
.num-wrap .ttl-wrap {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.05em;
  font-family: "Shippori Antique";
}
.num-wrap .text-wrap {
  width: 600px;
  line-height: 175%;
  letter-spacing: 0.05em;
}
.num-wrap .text-wrap + .text-wrap {
  margin-top: 30px;
  font-size: 14px;
  line-height: 175%;
  letter-spacing: 0.05em;
}

.num-list {
  counter-reset: number 0;
  max-width: 600px;
  margin-top: 9px;
}
.num-list .num {
  margin-bottom: 20px;
}
.num-list .num:last-child {
  margin-bottom: 0px;
}
.num-list .list-title {
  line-height: 175%;
  letter-spacing: 0.05em;
}
.num-list .list-title::before {
  content: "（" counter(number) "） ";
  counter-increment: number 1;
  font-size: 16px;
}
.num-list .txt {
  margin-top: 10px;
  line-height: 175%;
  letter-spacing: 0.05em;
}

.disclosure-area {
  background: var(--Supplementary-Color-bg-F1F1F1, #F1F1F1);
}

.window-wrap .window {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-block: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  text-align: left;
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3, #C3C3C3);
}
.window-wrap .window:last-child {
  border-bottom: 1px solid var(--secondary-monotone-gray-4-c-3, #C3C3C3);
}
.window-wrap .window .window-ttl {
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  max-width: 340px;
}
.window-wrap .window .adress-area {
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 100%;
}
.window-wrap .window .adress-area .adress {
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.05em;
}
.window-wrap .window .adress-area .download-btn {
  margin-top: 40px;
}

.about-us .about-sec .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 80px;
}
.about-us .about-sec .inner-block .about-cont {
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr min(50%, 460px);
}
.about-us .about-sec .inner-block .about-cont .ttl {
  font-family: "Shippori Antique", sans-serif;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 1.6px;
  margin-bottom: 40px;
}
.about-us .about-sec .inner-block .about-cont .txt {
  font-size: 18px;
  line-height: 175%;
  letter-spacing: 0.9px;
}
.about-us .about-sec .inner-block .about-cont .img-area {
  max-width: 460px;
  width: 100%;
  aspect-ratio: 1/1;
}
.about-us .value-sec .value-wrap {
  margin-top: 80px;
}
.about-us .value-sec .value-wrap .cont {
  max-width: 1000px;
  margin: 0 auto;
  padding-block: 40px 35px;
  padding-right: 90px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.about-us .value-sec .value-wrap .cont:last-child {
  border-bottom: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.about-us .value-sec .value-wrap .cont .img-wrap {
  aspect-ratio: 1/1;
  background: var(--secondary-monotone-gray-5-f-7);
}
.about-us .value-sec .value-wrap .cont .ttl {
  margin-bottom: 30px;
}
.about-us .value-sec .value-wrap .cont .ttl .en {
  color: var(--Primary-MEC-Red);
  font-family: "Roboto Flex", sans-serif;
  font-size: 14px;
  letter-spacing: 0.7px;
  display: block;
  margin-bottom: 40px;
  line-height: 1;
}
.about-us .value-sec .value-wrap .cont .ttl .jp {
  font-family: "Shippori Antique", sans-serif;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 1.6px;
}
.about-us .value-sec .value-wrap .cont .txt {
  line-height: 175%;
  letter-spacing: 0.8px;
}
.about-us .service-sec .link-block {
  margin: 80px auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.about-us .service-sec .link-block .cont {
  background-color: #fff;
  padding: 40px;
  height: 100%;
}
.about-us .service-sec .link-block .cont .tip {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 20px;
  border-top: 1px solid var(--Primary-MEC-Red, #F10);
  font-size: 14px;
  color: var(--Primary-MEC-Red, #F10);
  line-height: 160%;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}
.about-us .service-sec .link-block .cont .txt-wrap {
  position: relative;
  overflow: hidden;
  font-size: 28px;
  line-height: 1.3em;
  font-family: "Shippori Antique", sans-serif;
}
.about-us .service-sec .link-block .cont .txt-wrap .label-hover {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.about-us .service-sec .link-block .cont .txt-wrap .label-default {
  display: block;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.about-us .service-sec .link-block .cont .img-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 405/270;
}
.about-us .service-sec .link-block .cont .img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0.3;
  z-index: 1;
}
.about-us .service-sec .link-block .cont .img-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.about-us .service-sec .link-block .cont .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: auto;
  margin-bottom: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 34px;
}
.about-us .service-sec .link-block .cont .btn-wrap .ico {
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  background-color: #FF1100;
  position: relative;
  display: block;
  border-radius: 4px;
  border: 1px solid #FF1100;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.about-us .service-sec .link-block .cont .btn-wrap .ico::before {
  content: "";
  -webkit-mask: url(../img/common/arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/arrow02.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* --------------------------------
profile
----------------------------------- */
.service {
  background: var(--secondary-monotone-gray-5-f-7);
}
.service .strength-sec .strength-block {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 60px;
  background-color: var(--secondary-monotone-gray-5-f-7);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.service .strength-sec .strength-block .img-wrap {
  background: var(--Primary-White);
  max-width: 220px;
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
}
.service .strength-sec .strength-block .img-wrap img {
  position: absolute;
  inset: 0;
  display: block;
  margin: auto;
  max-width: 100px;
  width: 100%;
}
.service .strength-sec .strength-block .txt {
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0.8px;
}
.service .strength-sec .strength-block + .strength-block {
  margin-top: 4px;
}
.service .service-sec {
  position: relative;
  z-index: 5;
  background: var(--Supplementary-Color-bg-F1F1F1);
}
.service .service-sec .stack-cards {
  padding: 0;
  margin-inline: auto;
  max-width: 1000px;
  margin-block: 120px 180px;
}
.service .service-sec .stack-cards .card-wrap {
  pointer-events: none;
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  z-index: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service .service-sec .stack-cards .card-wrap:nth-child(1) {
  z-index: 1;
}
.service .service-sec .stack-cards .card-wrap:nth-child(1) .card {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.service .service-sec .stack-cards .card-wrap:nth-child(2) {
  z-index: 2;
}
.service .service-sec .stack-cards .card-wrap:nth-child(2) .card {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
.service .service-sec .stack-cards .card-wrap:nth-child(3) {
  z-index: 3;
}
.service .service-sec .stack-cards .card-wrap:nth-child(3) .card {
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
.service .service-sec .stack-cards .card-wrap:nth-child(4) {
  z-index: 4;
}
.service .service-sec .stack-cards .card-wrap:nth-child(4) .card {
  -webkit-transform: translateY(180px);
          transform: translateY(180px);
}
.service .service-sec .stack-cards .card-wrap:nth-child(5) {
  z-index: 5;
}
.service .service-sec .stack-cards .card-wrap:nth-child(5) .card {
  -webkit-transform: translateY(240px);
          transform: translateY(240px);
}
.service .service-sec .stack-cards .card {
  width: 100%;
  height: var(--card-h);
  background: var(--Supplementary-Color-bg-F1F1F1);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
  pointer-events: auto;
}
.service .service-sec .stack-cards .card:hover .card-img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.service .service-sec .stack-cards .card-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--secondary-monotone-gray-4-c-3);
}
.service .service-sec .stack-cards .card-body .head {
  padding-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.service .service-sec .stack-cards .card-body .head::before {
  content: "";
  width: 100%;
  background-color: #FF1100;
  height: 1px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.service .service-sec .stack-cards .card-body .head .card-index {
  font-size: 14px;
  color: var(--secondary-monotone-gray-3-a-2);
}
.service .service-sec .stack-cards .card-body .head .card-index .red {
  color: #FF1100;
}
.service .service-sec .stack-cards .card-body .head .txt {
  font-size: 14px;
  color: #FF1100;
}
.service .service-sec .stack-cards .card-body .cont-wrap {
  display: grid;
  gap: 60px;
  grid-template-columns: 80px 1fr;
  padding-block: 64px 60px;
}
.service .service-sec .stack-cards .card-body .cont-wrap .ttl {
  font-family: "Shippori Antique", sans-serif;
  font-size: 28px;
}
.service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .txt {
  font-size: 16px;
  margin-top: 26px;
  line-height: 175%;
  letter-spacing: 0.8px;
}
.service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .c-btn02 {
  margin-top: 90px;
}
.service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .c-btn02 .txt-wrap {
  padding: 0;
}
.service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .white-cont {
  margin-top: 42px;
  background: var(--Primary-White);
  padding: 30px;
}
.service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .white-cont .ttl {
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}
.service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .white-cont .ttl::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: var(--secondary-monotone-black-a-33);
}
.service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .white-cont .txt {
  margin-top: 0;
}
.service .service-sec .stack-cards .card-body .cont-wrap .img-wrap {
  aspect-ratio: 1/1;
  max-width: 80px;
  width: 100%;
  position: relative;
  background-color: var(--Primary-White);
}
.service .service-sec .stack-cards .card-body .cont-wrap .img-wrap img {
  position: absolute;
  inset: 0;
  display: block;
  max-width: 60px;
  width: 100%;
  margin: auto;
}
.service .other-sec .c-ttl01 .en {
  color: var(--Primary-White);
}
.service .other-sec .link-block {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service .other-sec .link-block .cont {
  background-color: #fff;
  padding: 20px 20px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service .other-sec .link-block .cont .txt-wrap {
  position: relative;
  overflow: hidden;
  font-size: 20px;
  line-height: 1.3em;
  font-family: "Shippori Antique", sans-serif;
}
.service .other-sec .link-block .cont .txt-wrap .label-hover {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.service .other-sec .link-block .cont .txt-wrap .label-default {
  display: block;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.service .other-sec .link-block .cont .img-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.service .other-sec .link-block .cont .img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0.3;
  z-index: 1;
}
.service .other-sec .link-block .cont .img-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.service .other-sec .link-block .cont .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: auto;
  margin-bottom: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.service .other-sec .link-block .cont .bottom .ico {
  margin-top: auto;
  margin-bottom: 0;
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  background-color: #FF1100;
  position: relative;
  display: block;
  border-radius: 4px;
  border: 1px solid #FF1100;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.service .other-sec .link-block .cont .bottom .ico::before {
  content: "";
  -webkit-mask: url(../img/common/arrow02.svg) no-repeat center/contain;
          mask: url(../img/common/arrow02.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
    overflow: hidden;
  }
  .inner-block {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pc {
    display: none !important;
  }
  .c-header {
    height: 72px;
  }
  .c-header.is-scrolled .sp-menu {
    margin-top: 82px;
  }
  .c-header .inner-block {
    padding: 16px;
    gap: 16px;
  }
  .c-header .logo img {
    max-width: 210px;
  }
  .c-header .menu-overlay {
    display: none;
  }
  .c-header .sp-menu {
    margin-top: 72px;
  }
  .c-header .sp-menu .sp-menu-body {
    padding: 24px;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .c-header .sp-menu .sp-menu-footer {
    padding: 10px 20px;
    text-align: right;
  }
  .c-header .sp-acc-trigger .en {
    font-size: 26px;
  }
  .c-header .sp-acc-trigger .jp {
    font-size: 10px;
  }
  .c-footer .inner-block {
    padding-inline: 16px;
  }
  .c-footer .w-bg-wrap {
    padding-top: 80px;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .txt-wrap {
    font-size: 26px;
  }
  .c-footer .footer-wrap .menu-cont-wrap .contact-box .txt {
    font-size: 12px;
  }
  .c-footer .footer-wrap .menu-cont-wrap .contact-box .txt + .txt {
    margin-top: 4px;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 {
    margin-bottom: 12px;
  }
  .c-footer .copy-block .logo {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .c-footer .copy-block .copy {
    font-size: 10px;
    margin-top: 14px;
    text-align: center;
  }
  .c-ttl01 .en {
    font-size: 48px;
  }
  .c-ttl01 .jp {
    font-size: 20px;
    gap: 8px;
    padding-left: 38px;
  }
  .c-ttl01 .jp::before {
    width: 30px;
  }
  .c-ttl02 .en {
    font-size: 10px;
  }
  .c-ttl02 .en::before {
    width: 3px;
    height: 3px;
  }
  .c-ttl02 .jp {
    margin-top: 4px;
    font-size: 14px;
  }
  .c-ttl03 {
    margin-bottom: 20px;
  }
  .c-ttl04 {
    margin-bottom: 30px;
  }
  .c-ttl04 .en {
    font-size: 12px;
  }
  .c-ttl04 .jp {
    font-size: 26px;
  }
  .c-ttl05 {
    gap: 16px;
  }
  .c-ttl05 .en {
    letter-spacing: 0.6px;
    font-size: 12px;
  }
  .c-ttl05 .jp {
    font-size: 30px;
    letter-spacing: 1.5px;
  }
  .c-btn02 .inn {
    padding: 12px 16px 11px;
    font-size: 12px;
  }
  .c-btn02 .inn.gray {
    margin-top: 20px;
    padding: 7px 9px 5px 12px;
    gap: 8px;
  }
  .c-btn03 .en {
    font-size: 26px;
  }
  .c-btn03 .jp {
    font-size: 10px;
  }
  .c-btn03 .ico {
    width: 16px;
    height: 16px;
  }
  .c-btn03 .ico::before {
    width: 16px;
    height: 16px;
  }
  .c-btn04 {
    padding-block: 16px 12px;
  }
  .c-btn05 {
    font-size: 12px;
  }
  main {
    padding-top: 72px;
  }
  .c-sec {
    padding-block: 80px;
  }
  .c-sec-head {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 60px;
  }
  .sec-desc {
    margin-top: 36px;
    font-size: 14px;
    letter-spacing: 0.7px;
  }
  .not-found .c-kv-section {
    padding-block: 50px;
  }
  .not-found .c-kv-section .txt-area {
    padding-bottom: 0;
  }
  .not-found .c-kv-section .txt-area::before {
    width: 73px;
  }
  .not-found .c-kv-section .inner-block {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .not-found .c-kv-section .txt-wrap .desc {
    margin-bottom: 36px;
  }
  .not-found .c-kv-section .txt-wrap .c-btn02 {
    max-width: 250px;
  }
  .c-kv-section {
    padding-inline: 0;
  }
  .c-kv-section {
    padding-top: 28px;
  }
  .c-kv-section .inner-block {
    padding-inline: 16px;
  }
  .c-kv-section .img-area::after {
    width: 213px;
    height: 172px;
    background: url("../img/common/kv-service-decoration.png.webp") no-repeat center/contain;
    bottom: 100%;
  }
  .c-kv-section .img-area picture img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .c-kv-section .img-area {
    padding-inline: 16px;
  }
  .c-kv-section.no-image::after {
    width: 213px;
    height: 172px;
    background: url("../img/common/kv-service-decoration.png.webp") no-repeat center/contain;
    top: auto;
    bottom: 0;
  }
  .kv-ttl {
    margin-bottom: 40px;
  }
  .kv-ttl .main {
    font-size: 42px;
    letter-spacing: 2.1px;
  }
  .kv-ttl .ja {
    padding-left: 50px;
    margin-top: 10px;
    font-size: 14px;
  }
  .kv-ttl .ja::before {
    width: 40px;
  }
  .c-breadcrumbs .breadcrumbs-item {
    font-size: 10px;
  }
  .c-breadcrumbs .breadcrumbs-item + .breadcrumbs-item {
    padding-left: 23px;
  }
  .c-breadcrumbs .breadcrumbs-item + .breadcrumbs-item::after {
    left: 10px;
  }
  .c-service-kv-section {
    padding-top: 38px;
  }
  .c-service-kv-section::before {
    max-width: none;
    aspect-ratio: 1/1;
    width: 100%;
    background: url("../img/common/kv-service-decoration_sp.png.webp") no-repeat center/contain;
  }
  .c-service-kv-section .inner-block {
    padding-inline: 16px;
  }
  .c-service-kv-section .top-wrap {
    grid-template-columns: 1fr;
    gap: 57px;
  }
  .c-service-kv-section .top-wrap .img-area {
    padding-inline: 30px;
  }
  .c-service-kv-section .kv-ttl {
    margin-bottom: 0;
  }
  .c-service-kv-section .kv-ttl .sub {
    margin-bottom: 10px;
    font-size: 12px;
  }
  .c-service-kv-section .kv-ttl .main {
    font-size: 48px;
  }
  .c-service-kv-section .kv-ttl .ja {
    font-size: 16px;
  }
  .desc-sec .inner-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home .mv-sec {
    margin-top: -72px;
    --space: 16px;
  }
  .home .mv-sec .title {
    font-size: min(34px, 9.0666666667vw);
    letter-spacing: 0;
    padding-left: 26px;
  }
  .home .mv-sec .title::before {
    top: 8px;
    bottom: 8px;
    width: 6px;
  }
  .home .about-sec {
    padding-block: 200px 40px;
  }
  .home .about-sec .text {
    font-size: 16px;
    line-height: 2.4;
    letter-spacing: 0.1em;
  }
  .home .value-sec .list {
    gap: 36px;
    padding-inline: 24px;
    margin-top: 60px;
  }
  .home .value-sec .list .label {
    font-size: 12px;
  }
  .home .value-sec .list .img {
    margin-block: 16px;
  }
  .home .value-sec .list .title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .home .value-sec .list .text {
    font-size: 14px;
  }
  .home .value-sec .c-btn02 {
    margin-top: 40px;
  }
  .home .profile-sec .link-block {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }
  .home .profile-sec .link-block .cont {
    padding: 24px 16px 16px;
    gap: 22px;
  }
  .home .profile-sec .link-block .cont .txt-wrap {
    font-size: 20px;
  }
  .home .profile-sec .link-block .cont .bottom .ico {
    width: 28px;
    height: 28px;
  }
  .home .service-sec {
    overflow: hidden;
  }
  .profile .profile-sec .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .profile .profile-sec .company-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .profile .profile-sec .company-table tr:first-child {
    padding-top: 0;
  }
  .profile .profile-sec .company-table th, .profile .profile-sec .company-table td {
    padding-inline: 0;
  }
  .profile .profile-sec .company-table th {
    font-size: 16px;
    font-weight: 500;
  }
  .profile .profile-sec .company-table td {
    padding-left: 10px;
  }
  .profile .profile-sec .company-table .map-link .font-roboto {
    font-size: 10px;
  }
  .profile .profile-sec .img-area {
    margin-top: 40px;
    gap: 10px;
  }
  .profile .scope .left-cont {
    width: 100%;
    max-width: 100%;
  }
  .profile .scope .left-cont p {
    margin-top: 40px;
  }
  .profile .scope .right-cont {
    width: 100%;
    margin: 0 auto;
    min-width: auto;
    text-align: center;
  }
  .profile .about .right-cont {
    margin-top: 0;
  }
  .profile .about .right-cont h3 {
    width: 100%;
    max-width: 400px;
  }
  .profile .about .right-cont .txt {
    margin-top: 40px;
  }
  .profile .about .right-cont .txt p {
    font-size: 14px;
    letter-spacing: 0.7px;
    font-weight: 400;
  }
  .profile .about .right-cont .btn-wrap {
    margin-top: 40px;
  }
  .message-philosophy .sec-content {
    margin-top: 36px;
  }
  .message-philosophy .message-sec .text-wrap {
    margin-block: 40px;
  }
  .message-philosophy .message-sec .profile {
    margin-top: 20px;
  }
  .message-philosophy .message-sec .profile .name {
    font-size: 20px;
  }
  .message-philosophy .philosophy-sec .acc-box {
    padding-block: 10px;
  }
  .message-philosophy .philosophy-sec .acc-head {
    font-size: 24px;
    padding-block: 18px;
  }
  .message-philosophy .philosophy-sec .acc-head .btn {
    border-radius: 4px;
    width: 28px;
  }
  .message-philosophy .philosophy-sec .acc-body {
    padding: 0 0 30px 40px;
  }
  .message-philosophy .philosophy-sec .acc-body::before {
    width: 30px;
  }
  .message-philosophy .philosophy-sec .text01 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .message-philosophy .philosophy-sec .list01 li::before {
    font-size: 16px;
  }
  .message-philosophy .philosophy-sec .list02 li + li {
    margin-top: 20px;
  }
  .message-philosophy .philosophy-sec .list02 .title {
    font-size: 18px;
  }
  .message-philosophy .mission-sec .mission-box + .mission-box {
    margin-top: 60px;
  }
  .message-philosophy .mission-sec .box-body {
    padding-top: 40px;
    gap: 30px;
  }
  .message-philosophy .mission-sec .body-inn {
    gap: 30px;
  }
  .message-philosophy .mission-sec .head .en {
    margin-bottom: 10px;
    padding-top: 10px;
    font-size: 12px;
  }
  .message-philosophy .mission-sec .head .jp {
    font-size: 16px;
  }
  .message-philosophy .mission-sec .lead {
    font-size: min(26px, 6.9333333333vw);
  }
  .message-philosophy .mission-sec .list li {
    font-size: 16px;
  }
  .message-philosophy .mission-sec .list li::before {
    font-size: 16px;
  }
  .message-philosophy .mission-sec .value-list li {
    gap: 20px;
    padding-bottom: 30px;
  }
  .message-philosophy .mission-sec .value-list li + li {
    margin-top: 30px;
  }
  .message-philosophy .mission-sec .value-list .ico {
    width: 60px;
  }
  .message-philosophy .mission-sec .value-list .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .message-philosophy .partner-sec .sec-content {
    padding: 40px 20px;
  }
  .message-philosophy .partner-sec .text-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .message-philosophy .partner-sec .title-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .message-philosophy .partner-sec .text {
    font-size: 12px;
  }
  .message-philosophy .partner-sec .title {
    font-size: min(26px, 6.9333333333vw);
    text-align: center;
  }
  .top-txt {
    font-size: 14px;
    margin-bottom: 60px;
  }
  .number-box + .c-ttl03 {
    margin-top: 80px;
  }
  .num-wrap {
    display: block;
    padding-bottom: 40px;
    padding-top: 30px;
  }
  .num-wrap .ttl-wrap {
    font-family: "Shippori Antique";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }
  .num-wrap .text-wrap {
    width: 100%;
  }
  .window-wrap .window {
    display: block;
    padding-block: 30px;
  }
  .window-wrap .window .window-ttl {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .window-wrap .window .adress-area .adress {
    font-size: 12px;
    font-style: normal;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
  .window-wrap .window .adress-area .download-btn {
    margin-top: 20px;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
  }
  .about-us .about-sec .inner-block {
    row-gap: 60px;
  }
  .about-us .about-sec .inner-block .about-cont {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-us .about-sec .inner-block .about-cont .ttl {
    font-size: 26px;
    letter-spacing: 1.3px;
    margin-bottom: 30px;
  }
  .about-us .about-sec .inner-block .about-cont .txt {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
  }
  .about-us .about-sec .inner-block .about-cont .img-area {
    max-width: none;
  }
  .about-us .value-sec .value-wrap {
    margin-top: 60px;
  }
  .about-us .value-sec .value-wrap .cont {
    padding-block: 30px;
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 16px;
  }
  .about-us .value-sec .value-wrap .cont .sp-adj-wrap {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  .about-us .value-sec .value-wrap .cont .img-wrap {
    max-width: 120px;
    width: 100%;
  }
  .about-us .value-sec .value-wrap .cont .ttl {
    margin-bottom: 0;
  }
  .about-us .value-sec .value-wrap .cont .ttl .en {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .about-us .value-sec .value-wrap .cont .ttl .jp {
    font-size: 26px;
    letter-spacing: 1.3px;
  }
  .about-us .value-sec .value-wrap .cont .txt {
    font-size: 14px;
  }
  .about-us .service-sec .link-block {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-us .service-sec .link-block .cont {
    padding: 16px 16px 18px;
  }
  .about-us .service-sec .link-block .cont .tip {
    padding-top: 13px;
    font-size: 12px;
  }
  .about-us .service-sec .link-block .cont .txt-wrap {
    font-size: 24px;
  }
  .about-us .service-sec .link-block .cont .btn-wrap {
    gap: 24px;
    margin-bottom: 24px;
  }
  .service .strength-sec .strength-block {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 40px;
  }
  .service .strength-sec .strength-block .img-wrap {
    max-width: 180px;
    margin: auto;
  }
  .service .service-sec {
    overflow: hidden;
  }
  .service .service-sec .stack-cards {
    margin-block: 40px 0;
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(1) {
    z-index: 1;
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(1) .card {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(2) {
    z-index: 2;
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(2) .card {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(3) {
    z-index: 3;
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(3) .card {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(4) {
    z-index: 4;
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(4) .card {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(5) {
    z-index: 5;
  }
  .service .service-sec .stack-cards .card-wrap:nth-child(5) .card {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .service .service-sec .stack-cards .card-body .head {
    padding-top: 10px;
  }
  .service .service-sec .stack-cards .card-body .head .card-index {
    font-size: 12px;
  }
  .service .service-sec .stack-cards .card-body .cont-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 55px 40px;
  }
  .service .service-sec .stack-cards .card-body .cont-wrap .ttl {
    font-size: 24px;
  }
  .service .service-sec .stack-cards .card-body .cont-wrap .sp-adj-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .txt {
    margin-top: 0;
    font-size: 14px;
  }
  .service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .white-cont {
    margin-top: 32px;
    padding: 12px 16px 18px;
  }
  .service .service-sec .stack-cards .card-body .cont-wrap .txt-wrap .white-cont .ttl {
    gap: 8px;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .service .service-sec .stack-cards .card-body .cont-wrap .img-wrap {
    max-width: 60px;
  }
  .service .other-sec .link-block {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service .other-sec .link-block .cont {
    padding: 16px 16px 16px;
    gap: 15px;
  }
  .service .other-sec .link-block .cont .txt-wrap {
    font-size: 18px;
  }
  .service .other-sec .link-block .cont .img-wrap {
    max-width: 120px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1200px;
  }
  .inner-block--1000 {
    max-width: 1080px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .logo img {
    height: 24px;
  }
  .c-service-kv-section .top-wrap {
    min-height: 523px;
  }
  .home .service-sec .c-sec-head {
    margin-bottom: 0;
  }
  .message-philosophy .message-sec .text-wrap {
    margin: 60px 60px 0 60px;
  }
  .message-philosophy .philosophy-sec .acc-body {
    margin-left: 80px;
    padding: 0 0 60px 80px;
  }
  .message-philosophy .mission-sec .mission-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 100px;
  }
  .message-philosophy .mission-sec .mission-box .box-head {
    min-width: 175px;
  }
  .message-philosophy .mission-sec .mission-box .head {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
  }
  .num-wrap .ttl-wrap {
    min-width: 300px;
  }
  .service .service-sec .c-sec-head {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) and (min-width: 960px) {
  .c-header .logo img {
    max-width: 390px;
  }
}
@media (any-hover: hover) {
  .c-header .header-btn01:hover {
    color: #FF1100;
  }
  .c-header .header-btn01:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .c-header .header-btn01:hover .ico::before {
    background-color: #FF1100;
  }
  .c-footer .recruit-wrap .cont .c-btn02:hover .inn {
    background-color: #FF1100;
    border: 1px solid #fff;
  }
  .c-footer .recruit-wrap .cont .c-btn02:hover .image-wrapper img {
    scale: 1.1;
  }
  .c-footer .recruit-wrap .cont .c-btn02:hover .ico {
    border: 1px solid #fff;
  }
  .c-footer .recruit-wrap .cont .c-btn02:hover .ico::before {
    background-color: #fff;
  }
  .c-footer .footer-wrap .to-top:hover {
    border-color: #fff;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 .c-btn05:hover .inn {
    background-color: #FF1100;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 .c-btn05:hover .ico::before {
    background-color: #FF1100;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 .c-btn05:hover .label-default {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap .c-ttl02 .c-btn05:hover .label-hover {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    color: #FF1100;
  }
  .c-footer .footer-wrap .bottom-cont .c-btn05:hover {
    color: #fff;
  }
  .c-footer .footer-wrap .bottom-cont .c-btn05:hover .ico::before {
    background-color: #fff;
  }
  .c-btn01:hover {
    color: #FF1100;
  }
  .c-btn01:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .c-btn01:hover .ico::before {
    background-color: #FF1100;
  }
  .c-btn02:hover .inn {
    background-color: #fff;
  }
  .c-btn02:hover .ico::before {
    background-color: #FF1100;
  }
  .c-btn02:hover .ico-download::before {
    background: var(--secondary-monotone-black-a-33, #333);
  }
  .c-btn02:hover .label-default {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
  }
  .c-btn02:hover .label-hover {
    opacity: 1;
    color: #FF1100;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .c-btn02:hover .label-hover.bg-gray {
    color: var(--secondary-monotone-black-a-33, #333);
  }
  .c-btn04:hover {
    color: var(--Primary-MEC-Red);
    border-bottom: 1px solid var(--Primary-MEC-Red);
  }
  .c-btn05:hover {
    color: #FF1100;
  }
  .c-btn05:hover .ico::before {
    background-color: #FF1100;
  }
  .c-btn05:has(.txt-wrap):hover .inn {
    background-color: #fff;
  }
  .c-btn05:has(.txt-wrap):hover .ico::before {
    background-color: #FF1100;
  }
  .c-btn05:has(.txt-wrap):hover .label-default {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
  }
  .c-btn05:has(.txt-wrap):hover .label-hover {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .home .profile-sec .link-block .cont:hover .ico {
    border-color: #FF1100;
    background-color: #fff;
  }
  .home .profile-sec .link-block .cont:hover .ico::before {
    background-color: #FF1100;
  }
  .home .profile-sec .link-block .cont:hover .label-default {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
  }
  .home .profile-sec .link-block .cont:hover .label-hover {
    opacity: 1;
    color: #FF1100;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .home .profile-sec .link-block .cont:hover .img-wrap::before {
    opacity: 0;
  }
  .home .profile-sec .link-block .cont:hover .img-wrap img {
    scale: 1.1;
  }
  .home .service-sec .sp-slider-section .arrow-btn:not(:disabled):hover {
    background: #fff;
  }
  .home .service-sec .sp-slider-section .arrow-btn:not(:disabled):hover::before {
    background-color: #FF1100;
  }
  .profile .profile-sec .company-table .map-link:hover {
    color: #FF1100;
  }
  .profile .profile-sec .company-table .map-link:hover .ico::before {
    background-color: #FF1100;
  }
  .message-philosophy .philosophy-sec .acc-head:hover {
    color: var(--Primary-MEC-Red);
  }
  .message-philosophy .philosophy-sec .acc-head:hover .btn {
    background: var(--Primary-MEC-Red);
  }
  .message-philosophy .philosophy-sec .acc-head:hover .btn::before, .message-philosophy .philosophy-sec .acc-head:hover .btn::after {
    background: var(--Primary-White);
  }
  .about-us .service-sec .link-block .cont:hover .ico {
    border-color: #FF1100;
    background-color: #fff;
  }
  .about-us .service-sec .link-block .cont:hover .ico::before {
    background-color: #FF1100;
  }
  .about-us .service-sec .link-block .cont:hover .label-default {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
  }
  .about-us .service-sec .link-block .cont:hover .label-hover {
    opacity: 1;
    color: #FF1100;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .about-us .service-sec .link-block .cont:hover .img-wrap::before {
    opacity: 0;
  }
  .about-us .service-sec .link-block .cont:hover .img-wrap img {
    scale: 1.1;
  }
  .service .other-sec .link-block .cont:hover .ico {
    border-color: #FF1100;
    background-color: #fff;
  }
  .service .other-sec .link-block .cont:hover .ico::before {
    background-color: #FF1100;
  }
  .service .other-sec .link-block .cont:hover .label-default {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
  }
  .service .other-sec .link-block .cont:hover .label-hover {
    opacity: 1;
    color: #FF1100;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .service .other-sec .link-block .cont:hover .img-wrap::before {
    opacity: 0;
  }
  .service .other-sec .link-block .cont:hover .img-wrap img {
    scale: 1.1;
  }
}
@media (any-hover: hover) and (min-width: 960px) {
  .c-header .menu-wrap .header-btn01:hover + .bg-menu-content,
  .c-header .menu-wrap .header-btn01.is-active + .bg-menu-content,
  .c-header .menu-wrap .bg-menu-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
  }
}
@media only screen and (min-width: 960px) {
  .c-header .btn-menu {
    display: none;
  }
  .c-header .sp-menu {
    display: none;
  }
  .home .about-sec .text {
    padding-top: 140px;
  }
  .home .about-sec .c-ttl01 {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 24px;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .home .about-sec .c-ttl01 .en,
  .home .about-sec .c-ttl01 .jp {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .home .about-sec .c-ttl01 .jp {
    letter-spacing: 0.25em;
    margin-top: 0;
    padding-top: 70px;
    padding-left: 0;
  }
  .home .about-sec .c-ttl01 .jp::before {
    top: 0;
    right: 0.7em;
    width: 1px;
    height: 60px;
  }
  .home .service-sec .stack-cards {
    display: block;
  }
  .home .service-sec .sp-slider-section {
    display: none;
  }
  .message-philosophy .message-sec ~ .c-sec {
    position: relative;
    z-index: 2;
  }
  .message-philosophy .message-sec .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 80px;
  }
  .message-philosophy .message-sec .img-wrap {
    --space: calc(50vw - 50%);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: calc(400px + var(--space));
    margin-left: calc(var(--space) * -1);
    position: relative;
  }
  .message-philosophy .message-sec .img-wrap .img {
    display: block;
  }
  .message-philosophy .message-sec .img-wrap .img img,
  .message-philosophy .message-sec .img-wrap .img source {
    width: 100%;
    height: auto;
  }
  .message-philosophy .message-sec .img-wrap .img.is-fixed {
    position: fixed;
    top: 0;
  }
  .message-philosophy .message-sec .img-wrap .img.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .message-philosophy .message-sec .text-area {
    margin-top: 100px;
  }
}
@media (max-width: 959px) {
  .c-header .btn-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .c-header .menu-wrap {
    display: none;
  }
}
@media only screen and (max-width: 959px) {
  .c-footer .recruit-wrap .cont {
    padding: 40px;
  }
  .c-footer .recruit-wrap .cont .top {
    grid-template-columns: 1fr;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn {
    display: block;
    padding: 15px 15px 14px;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .txt-btn-wrap {
    margin-top: 10px;
    gap: 10px;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .txt-wrap {
    width: 100%;
    text-align: center;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .txt-wrap .label-hover {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .image-wrapper {
    max-width: 180px;
    width: 100%;
    margin: auto;
    margin-bottom: 0;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .image-wrapper::before {
    width: 50px;
    height: 50px;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .ico {
    width: 28px;
    height: 28px;
  }
  .c-footer .footer-wrap {
    -webkit-padding-after: 64px;
            padding-block-end: 64px;
  }
  .c-footer .footer-wrap .to-top {
    position: absolute;
    right: 40px;
    top: -60px;
  }
  .c-footer .footer-wrap .menu-cont-wrap {
    display: block;
    margin-top: 20px;
    padding-bottom: 46px;
    width: 100%;
  }
  .c-footer .footer-wrap .menu-cont-wrap .contact-box {
    max-width: inherit;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    gap: 46px 40px;
  }
  .c-footer .copy-block .inner-block {
    display: block;
  }
  .home .about-sec .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .home .about-sec .c-ttl01 br {
    display: none;
  }
  .home .value-sec .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .home .service-sec .stack-cards {
    display: none;
  }
  .home .service-sec .sp-slider-section {
    display: block;
  }
  .home .service-sec .sp-slider-section .slider-track {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 40px;
  }
}
@media only screen and (max-width: 959px) and (max-width: 767px) {
  .c-footer .recruit-wrap .cont {
    padding: 40px 16px;
  }
  .c-footer .recruit-wrap .cont .top {
    gap: 36px;
    margin-bottom: 20px;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn {
    padding-bottom: 9px;
  }
  .c-footer .recruit-wrap .cont .c-btn02 .inn .image-wrapper {
    max-width: 144px;
    padding-left: 14px;
    padding-right: 12px;
  }
  .c-footer .footer-wrap {
    padding-block: 100px 42px;
  }
  .c-footer .footer-wrap .to-top {
    right: 16px;
  }
  .c-footer .footer-wrap .menu-cont-wrap {
    padding-bottom: 24px;
  }
  .c-footer .footer-wrap .menu-cont-wrap .contact-box {
    padding: 16px;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap {
    margin-top: 40px;
    gap: 24px;
  }
  .c-footer .footer-wrap .menu-cont-wrap .menu-wrap .over {
    grid-column: 1/-1;
  }
  .home .about-sec .content {
    gap: 40px;
  }
  .home .value-sec .list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 960px) {
  .c-btn04 .ico {
    width: 16px;
    height: 16px;
  }
  .c-btn04 .ico::before {
    width: 16px;
    height: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .c-sec-head {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .home .profile-sec .link-block {
    grid-template-columns: repeat(2, 1fr);
  }
  .home .service-sec {
    overflow: hidden;
  }
  .home .service-sec .c-sec-head {
    margin-bottom: 80px;
  }
  .home .service-sec .sp-slider-section .slide {
    max-width: 280px;
  }
  .home .service-sec .sp-slider-section .img-wrap {
    margin-bottom: 24px;
  }
  .home .service-sec .sp-slider-section .head {
    padding-top: 18px;
  }
  .home .service-sec .sp-slider-section .head .card-index {
    font-size: 14px;
  }
  .home .service-sec .sp-slider-section .ttl {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  .home .service-sec .sp-slider-section .txt {
    font-size: 16px;
  }
  .home .service-sec .sp-slider-section .slider-controls {
    padding-top: 70px;
  }
  .home .service-sec .sp-slider-section .slider-dots {
    max-width: inherit;
  }
  .message-philosophy .message-sec .text-wrap {
    margin: 60px 0;
  }
  .message-philosophy .mission-sec .mission-box {
    gap: 60px;
  }
  .service .service-sec {
    overflow: hidden;
  }
  .service .service-sec .c-sec-head {
    margin-bottom: 80px;
  }
  .service .other-sec .link-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1921px) {
  .c-breadcrumbs {
    max-width: 1920px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .c-service-kv-section::before {
    max-width: 500px;
  }
}
@media only screen and (max-width: 1400px) {
  .c-service-kv-section .img-area {
    display: block;
  }
}
@media only screen and (min-width: 1401px) {
  .c-service-kv-section .img-area.min1400 {
    display: block;
    position: absolute;
    top: auto;
    bottom: auto;
    right: 10dvw;
    max-width: 480px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .c-service-kv-section .top-wrap {
    grid-template-columns: 1fr min(45%, 512px);
  }
  .c-service-kv-section .top-wrap .img-area {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1400px) and (max-width: 1000px) {
  .c-service-kv-section .top-wrap {
    gap: 20px;
    grid-template-columns: 1fr min(40%, 400px);
  }
  .c-service-kv-section .top-wrap .img-area {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .home .mv-sec .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 20px;
  }
  .home .mv-sec .lead {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 767px) {
  .home .mv-sec .content {
    padding: 0 20px 20px 0;
  }
  .home .mv-sec .lead {
    font-size: 12px;
  }
}