@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --text-color: #010101;
  --black-color: #010101;
  --gray-color: #F0F0F0;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Inter Tight", sans-serif;
  --font-size-base-pc: 1.5rem;
  --font-size-base-sp: 1.4rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

@media only screen and (min-width: 1441px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: calc(40% + 0.25vw);
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 2;
  letter-spacing: 0;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
}
body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.en {
  font-family: var(--font-family-en);
  letter-spacing: -0.01em;
}

a {
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

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

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100vw;
  height: 120px;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.when_scroll .l-header {
  opacity: 0 !important;
}

.is_opened .l-header {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.is_opened.page-top .l-header {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

@media (max-width: 767px) {
  .l-header {
    height: 64px;
  }
}
.l-footer {
  position: relative;
}

.l-main {
  margin-top: 24rem;
}

@media (max-width: 767px) {
  .l-main {
    margin-top: 16rem;
  }
}
.container {
  width: min(93.75%, 1280px);
  margin-inline: auto;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (max-width: 767px) {
  .container {
    width: 90%;
  }
}
.l-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12rem;
}

.l-news__side {
  width: 22rem;
}

.l-news__content {
  width: calc(100% - 32rem);
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-news__side {
    width: 20rem;
  }
  .l-news__content {
    width: calc(100% - 28rem);
  }
}
@media (max-width: 767px) {
  .l-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .l-news__content {
    width: 100%;
  }
  .l-news__side {
    width: 100%;
    margin-top: 8rem;
  }
}
.l-works-list {
  background: #F5F5F5;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 767px) {
  .l-works-list .p-pager a:not(.nextpostslink) {
    background-color: #fff;
  }
}
.l-requirement {
  border-top: 1px solid #dddddd;
  margin-bottom: 14rem;
}

.l-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 14rem;
}

.l-contact__content {
  width: 40%;
}

.l-contact__form {
  width: 50%;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-contact__content {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .l-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10rem;
  }
  .l-contact__content {
    width: 100%;
    margin-bottom: 5.6rem;
  }
  .l-contact__form {
    width: 100%;
  }
}
.c-button {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  color: #fff;
  background-color: var(--black-color);
  font-weight: var(--font-weight-bold);
  padding-left: 3.2rem;
  padding-right: 3.2rem;
  padding-bottom: 0.4rem;
  height: 6.4rem;
  min-width: 20rem;
  line-height: 1;
  border-radius: 0.4rem;
}
.c-button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
.c-button.white {
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid var(--black-color);
}
.c-button.white:hover {
  color: #fff;
  background-color: rgb(0, 0, 0);
}

.c-button-allow {
  font-size: var(--font-size-base-sp);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  display: inline-flex;
  position: relative;
}
.c-button-allow .icon {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  position: relative;
  background: var(--black-color);
  border-radius: 0.3rem;
  margin-left: 0.8rem;
}
.c-button-allow .icon .c-icon__allow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-button-allow:hover .c-icon__allow::after {
  -webkit-animation: allowAnime 0.3s ease-in-out;
          animation: allowAnime 0.3s ease-in-out;
}

@media (min-width: 768px) and (max-width: 999px) {
  .c-button {
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .c-button {
    font-size: var(--font-size-base-sp);
    height: 6rem;
  }
  .c-button-allow {
    font-size: var(--font-size-base-sp);
  }
  .c-button-allow::after {
    width: 1.2rem;
    height: 1.2rem;
  }
  .c-button-allow .icon {
    width: 4rem;
    height: 4rem;
  }
}
.input-text {
  width: 100%;
  padding: 1.8rem;
  border: none;
  font-size: var(--font-size-base-pc);
}

.input-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  padding: 1.8rem 2.4rem 1.8rem 1.8rem;
  border: none;
  outline: 0;
  font-size: var(--font-size-base-pc);
  text-overflow: ellipsis;
  width: 100%;
  cursor: pointer;
  background: #fff url(../img/common/icon_select_arrow.svg) no-repeat right 12px center;
  background-size: 12px auto;
}

.input-textarea {
  border: none;
  background: #fff;
  width: 100%;
  padding: 1.8rem;
  font-size: var(--font-size-base-pc);
}

::-webkit-input-placeholder {
  color: #CDD6DD;
  position: relative;
}

::-moz-placeholder {
  color: #CDD6DD;
  position: relative;
}

:-ms-input-placeholder {
  color: #CDD6DD;
  position: relative;
}

::-ms-input-placeholder {
  color: #CDD6DD;
  position: relative;
}

::placeholder {
  color: #CDD6DD;
  position: relative;
}

@media (max-width: 767px) {
  .input-text {
    padding: 1.4rem 0.5rem;
    font-size: var(--font-size-base-sp);
  }
  .input-select {
    font-size: var(--font-size-base-sp);
  }
  .input-textarea {
    font-size: var(--font-size-base-sp);
  }
}
.c-icon__allow {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  overflow: hidden;
}
.c-icon__allow::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icon_allow_w.svg) no-repeat center/contain;
}

.c-icon__outlink {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  background: url(../img/common/icon_link_outer.svg) no-repeat center/contain;
}

.c-icon-banner-allow {
  width: 6rem;
  height: 5.6rem;
  background-image: url(../img/common/icon_allow_l.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-icon-banner-allow.white {
  background-image: url(../img/common/icon_allow_l_w.svg);
}

@media (max-width: 767px) {
  .c-icon-banner-allow {
    width: 4.2rem;
    height: 4rem;
  }
}
.c-bread-crumb {
  font-size: 1.2rem;
  margin-top: 8rem;
  margin-bottom: 3.2rem;
}
.c-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
  overflow-x: auto;
  white-space: nowrap;
}
.c-bread-crumb ul li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style: none;
}
.c-bread-crumb ul li:not(:first-child) a {
  padding-left: 1rem;
}
.c-bread-crumb ul li:not(:first-child):before {
  display: inline-block;
  content: "::";
  opacity: 0.4;
  font-size: 1.6rem;
  margin-left: 1rem;
}
.c-bread-crumb ul li a {
  text-decoration: none;
}
.c-bread-crumb ul li span {
  padding-left: 1rem;
  opacity: 0.4;
}

@media (max-width: 767px) {
  .c-bread-crumb {
    font-size: 1rem;
  }
}
.p-header {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header.container {
  width: 93.75%;
}

.p-header__logo {
  width: 18rem;
  height: 4.4rem;
  line-height: 1;
  margin-top: 0.5rem;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  background-image: url(../img/common/logo.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-header__logo a:hover {
  opacity: 0.65;
}

.p-header__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-header__navi .p-gnavi .child {
  opacity: 0;
  visibility: hidden;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 20rem;
  background-color: #fff;
  padding: 2.2rem 2rem 2.6rem 2rem;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 0.6rem 0.1rem rgba(0, 0, 0, 0.1);
  position: absolute;
  left: -1rem;
  top: 4.4rem;
}

.p-header__contact.c-button {
  font-size: 1.4rem;
  padding: 0.9rem 2.4rem 1.2rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: initial;
  height: 4.6rem;
  width: 15rem;
  min-width: initial;
}

.is_inverse .p-header {
  color: #fff;
}
.is_inverse .p-header__logo a {
  background-image: url(../img/common/logo_w.svg);
}
.is_inverse .p-header__contact.c-button {
  background-color: #fff;
  color: #010101;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-header__logo a {
    margin-top: 0;
  }
  .p-header__navi {
    position: fixed;
    top: 0;
    right: -10vw;
    right: 0;
    width: 100%;
    max-width: 40rem;
    height: 100dvh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    padding: 14rem 4rem 4rem 4rem;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    overflow-y: scroll;
  }
  .p-header__navi .p-gnavi .child {
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .p-header__contact {
    margin-top: 4rem;
  }
  .menu-open .p-header {
    opacity: 1 !important;
  }
  .menu-open .p-header__navi {
    display: block;
    opacity: 1;
    right: 0;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media (max-width: 767px) {
  .p-header__logo {
    width: 15rem;
  }
  .p-header__navi {
    position: fixed;
    top: 0;
    right: -10vw;
    right: 0;
    width: 100vw;
    height: 100dvh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    padding: 8rem 8% 4rem 8%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    overflow-y: scroll;
  }
  .p-header__navi .p-gnavi {
    margin-right: 0;
  }
  .p-header__navi .p-gnavi .child {
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .p-header__contact {
    margin-top: 4rem;
  }
  .is_scrolled .p-header__logo {
    width: 15rem;
  }
  .menu-open .p-header {
    opacity: 1 !important;
  }
  .menu-open .p-header__navi {
    display: block;
    opacity: 1;
    right: 0;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.p-footer {
  background-color: var(--black-color);
  color: #fff;
}
.p-footer .container {
  width: min(93.75%, 1400px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10rem 0 5.6rem 0;
}
.p-footer a {
  color: #fff;
}

.p-footer__content {
  width: 35rem;
}
.p-footer__content .logo {
  width: 24rem;
}
.p-footer__content .lead {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 8.8rem;
}
.p-footer__content .badge {
  width: 100%;
  max-width: 35rem;
  margin-top: 2.4rem;
}

.p-footer__navi {
  width: calc(100% - 50rem);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.p-footer__navi .contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.4rem;
}
.p-footer__navi .contact ul li {
  width: 50%;
  max-width: 34rem;
}
.p-footer__navi .contact ul li .c-button {
  width: 100%;
  height: 7.4rem;
  padding-top: 2.4rem;
  padding-bottom: 3rem;
  background-color: initial;
  border: 1px solid #fff;
}
.p-footer__navi .p-gnavi {
  margin-top: 4.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-footer__navi .p-gnavi .group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
  margin-bottom: 2.4rem;
}
.p-footer__navi .p-gnavi .parent {
  width: calc((100% - 4.8rem) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 0 !important;
}
.p-footer__navi .p-gnavi .parent > span::before, .p-footer__navi .p-gnavi .parent > span::after {
  display: none;
}
.p-footer__navi .p-gnavi .parent .child {
  opacity: 1;
  visibility: visible;
  min-width: inherit;
  width: initial;
  background-color: inherit;
  padding: 0;
  border-radius: 0;
  position: relative;
  left: initial;
  top: initial;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}
.p-footer__navi .p-gnavi .parent .child > span, .p-footer__navi .p-gnavi .parent .child > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: var(--font-weight-regular);
}

.p-footer__bottom {
  width: 92%;
  width: min(93.75%, 1400px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  padding: 0 0 4rem 0;
}
.p-footer__bottom .copyright {
  font-size: 1.2rem;
}
.p-footer__bottom .navi {
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.6rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-footer .container {
    padding: 8rem 0 4rem 0;
  }
  .p-footer__content {
    width: 30rem;
  }
  .p-footer__content .logo {
    width: 22rem;
  }
  .p-footer__navi {
    width: calc(100% - 40rem);
  }
  .p-footer__navi .p-gnavi .parent .child {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .p-footer__navi .p-gnavi .parent .child > a {
    padding: 0.8rem 0;
  }
}
@media (max-width: 767px) {
  .p-footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 86%;
    padding: 6rem 0 0 0;
  }
  .p-footer__content {
    width: 100%;
  }
  .p-footer__content .logo {
    width: 18rem;
  }
  .p-footer__content .lead {
    font-size: 1.3rem;
    margin-top: 5.6rem;
  }
  .p-footer__content .badge {
    width: 80%;
    max-width: 30rem;
    margin-top: 1.6rem;
    margin-bottom: 7.2rem;
  }
  .p-footer__navi {
    width: 100%;
    max-width: initial;
  }
  .p-footer__navi .contact ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
  }
  .p-footer__navi .contact ul li {
    width: 100%;
    max-width: inherit;
  }
  .p-footer__navi .contact ul li .c-button {
    height: 6.4rem;
  }
  .p-footer__navi .p-gnavi {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-footer__navi .p-gnavi span,
  .p-footer__navi .p-gnavi a {
    color: #fff !important;
  }
  .p-footer__navi .p-gnavi .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .p-footer__navi .p-gnavi .parent {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-footer__navi .p-gnavi .parent > span::before, .p-footer__navi .p-gnavi .parent > span::after {
    display: block;
    background-color: #ffffff !important;
  }
  .p-footer__navi .p-gnavi .parent.misc {
    padding: 0;
  }
  .p-footer__navi .p-gnavi .parent.misc .child {
    display: block;
    margin-bottom: 0;
  }
  .p-footer__navi .p-gnavi .parent.misc .child a {
    padding: 2.4rem 0;
    font-weight: var(--font-weight-bold);
  }
  .p-footer__navi .p-gnavi .parent.misc .child a:first-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-footer__bottom {
    width: 88%;
    margin-top: 5.6rem;
    padding: 0 0 3.2rem 0;
  }
  .p-footer__bottom .copyright {
    font-size: 1rem;
  }
}
.p-top-introduction {
  padding-bottom: 14rem;
  color: #fff;
}
.p-top-introduction .container {
  width: min(93.75%, 1440px);
}
.p-top-introduction .tagline {
  min-height: 43rem;
  font-size: 12.4rem;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-medium);
  color: #1a1a1a;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 5.6rem;
  margin-left: 12rem;
  position: relative;
}
.p-top-introduction .tagline::before {
  content: "";
  display: inline-block;
  width: 5.8rem;
  height: 8.8rem;
  position: absolute;
  left: -9rem;
  top: 3.2rem;
  background: url(../img/top/icon_shell_allow.svg) no-repeat center/contain;
}
.p-top-introduction .tagline span {
  opacity: 0.6;
}
.p-top-introduction .tagline .caret {
  display: inline-block;
  height: 1.4rem;
  width: 7.2rem;
  border: 1px solid #fff;
  margin-left: -2rem;
  -webkit-animation: caretBlink 1s infinite;
          animation: caretBlink 1s infinite;
}
.p-top-introduction .brand-copy {
  padding-left: 12rem;
}
.p-top-introduction .brand-copy h2 {
  font-size: 4rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin-bottom: 3.2rem;
}
.p-top-introduction .brand-copy p {
  letter-spacing: 0.04em;
  line-height: 2.4;
}
.p-top-introduction .p-top-introduction__navi {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.6rem;
}

@-webkit-keyframes caretBlink {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0;
  }
}

@keyframes caretBlink {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .p-top-introduction .tagline {
    font-size: 9rem;
    min-height: 31rem;
    margin-left: 8rem;
  }
  .p-top-introduction .tagline::before {
    top: 2.4rem;
    left: -7rem;
    width: 5rem;
    height: 6.4rem;
  }
  .p-top-introduction .tagline .caret {
    height: 7rem;
    width: 6rem;
    margin-left: -2rem;
  }
  .p-top-introduction .brand-copy {
    padding-left: 8rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction {
    padding-bottom: 3rem;
  }
  .p-top-introduction .tagline {
    font-size: 5.4rem;
    margin-left: 4.8rem;
    min-height: 34rem;
    margin-bottom: 3.2rem;
  }
  .p-top-introduction .tagline span {
    opacity: 0.6;
  }
  .p-top-introduction .tagline::before {
    width: 2.4rem;
    height: 4.6rem;
    left: -4rem;
    top: 1rem;
  }
  .p-top-introduction .tagline .caret {
    height: 0.8rem;
    width: 3rem;
    margin-left: -1rem;
  }
  .p-top-introduction .brand-copy {
    padding-left: 4.8rem;
    padding-right: 1.6rem;
    margin-bottom: 5.6rem;
  }
  .p-top-introduction .brand-copy h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .p-top-introduction .brand-copy p {
    letter-spacing: 0;
    line-height: 2.2;
  }
  .p-top-introduction .p-top-introduction__navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
    width: 24rem;
    margin-left: 0;
    margin-right: auto;
  }
  @-webkit-keyframes caretBlink {
    0%, 100% {
      opacity: 0.6;
    }
    50% {
      opacity: 0;
    }
  }
  @keyframes caretBlink {
    0%, 100% {
      opacity: 0.6;
    }
    50% {
      opacity: 0;
    }
  }
}
.p-top-identity {
  background-color: #111111;
  color: #fff;
}
.p-top-identity .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 4rem;
  padding: 12rem 0 12rem 0;
}
.p-top-identity .p-top-section-head {
  margin-bottom: 10rem;
}
.p-top-identity .p-top-identity__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-identity .p-top-identity__content .content .copy {
  font-size: 7.2rem;
  font-weight: var(--font-weight-semiBold);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
.p-top-identity .p-top-identity__content .content .copy span {
  display: inline-block;
}
.p-top-identity .p-top-identity__content .content .copy .cross {
  font-size: 0;
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  margin-left: 0.8rem;
}
.p-top-identity .p-top-identity__content .content .copy .cross::before, .p-top-identity .p-top-identity__content .content .copy .cross::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  width: 5rem;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-top-identity .p-top-identity__content .content .copy .cross::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.p-top-identity .p-top-identity__content .content p {
  font-size: 1.6rem;
  max-width: 60rem;
}
.p-top-identity .p-top-identity__figure {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-identity .p-top-identity__figure img {
  width: 100%;
  max-width: 34rem;
}
.p-top-identity .p-service-navi {
  width: 100%;
  margin-top: 10rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.p-top-identity .p-service-navi a.item {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-top-identity .p-service-navi a.item .content .summary {
  font-weight: var(--font-weight-regular);
}

.p-top-identity__feature {
  background-color: var(--black-color);
  color: #fff;
  padding: 7.2rem 7.2rem 8rem 7.2rem;
  margin-top: 12rem;
  border-radius: 0.5rem;
}
.p-top-identity__feature .p-top-identity__feature-heading {
  line-height: 1;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 4.8rem;
}
.p-top-identity__feature .p-top-identity__feature-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-identity__feature .p-top-identity__feature-container .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-identity__feature .p-top-identity__feature-container .content h3 {
  font-size: 3.2rem;
  line-height: 1.55;
  margin-bottom: 2.4rem;
}
.p-top-identity__feature .p-top-identity__feature-container picture {
  width: 37%;
  max-width: 42rem;
  min-width: 36rem;
  margin-left: 8rem;
}

.p-top-identity__feature-navi {
  margin-top: 3.2rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-identity .p-top-identity__content .content .copy {
    font-size: 6rem;
  }
  .p-top-identity .p-top-identity__content .content p {
    font-size: 1.6rem;
  }
  .p-top-identity .p-top-identity__figure img {
    max-width: 30rem;
  }
  .p-top-identity .p-service-navi {
    margin-top: 8rem;
  }
  .p-top-identity__feature {
    padding: 4.8rem 4.8rem 5.6rem 4.8rem;
    margin-top: 5.6rem;
  }
  .p-top-identity__feature .p-top-identity__feature-container picture {
    width: 30%;
    max-width: 27rem;
    min-width: 26rem;
  }
  .p-top-identity__feature .p-top-identity__feature-container picture .hide-mobile {
    display: none;
  }
  .p-top-identity__feature .p-top-identity__feature-container picture .show-mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .p-top-identity .container {
    padding: 8rem 0 8rem 0;
  }
  .p-top-identity .p-top-section-head {
    margin-bottom: 6.4rem;
  }
  .p-top-identity .p-top-identity__content .content .copy {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
  .p-top-identity .p-top-identity__content .content .copy .cross {
    width: 3.2rem;
    height: 3.2rem;
    margin-left: 0.4rem;
  }
  .p-top-identity .p-top-identity__content .content .copy .cross::before, .p-top-identity .p-top-identity__content .content .copy .cross::after {
    width: 3.2rem;
  }
  .p-top-identity .p-top-identity__content .content p {
    font-size: 1.4rem;
  }
  .p-top-identity .p-top-identity__figure {
    width: 70%;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6.4rem;
  }
  .p-top-identity .p-service-navi {
    margin-top: 6.4rem;
  }
  .p-top-identity__feature {
    padding: 4.8rem 2rem 5.6rem 2.8rem;
    margin-top: 8rem;
  }
  .p-top-identity__feature .p-top-identity__feature-heading {
    font-size: 1.2rem;
  }
  .p-top-identity__feature .p-top-identity__feature-container {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-top-identity__feature .p-top-identity__feature-container .content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
  .p-top-identity__feature .p-top-identity__feature-container picture {
    width: 100%;
    max-width: initial;
    min-width: initial;
    margin-left: initial;
    margin-bottom: 6.4rem;
  }
}
.p-top-news {
  padding-top: 14rem;
  padding-bottom: 14rem;
  background-color: #ffffff;
  color: var(--text-color);
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-news {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 767px) {
  .p-top-news {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
  .p-top-news .navi.show-mobile {
    margin-top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-top-recruit {
  margin: 0 auto;
  padding-top: 10rem;
  background-color: #ffffff;
  color: var(--text-color);
}

.p-top-recruit__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8rem;
}
.p-top-recruit__head .p-top-section-head {
  width: 50%;
}
.p-top-recruit__head .content {
  width: 70%;
  margin-top: -1rem;
}
.p-top-recruit__head .content h3 {
  font-size: 4rem;
  line-height: 1.45;
  margin-bottom: 2.4rem;
}
.p-top-recruit__head .content .navi {
  margin-top: 2.4rem;
}

.p-top-recruit__visual {
  overflow: hidden;
}

.p-top-recruit__visual .swiper.swiper-initialized.swiper-horizontal {
  cursor: inherit;
}

.p-top-recruit__visual .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  height: auto;
}

.p-top-recruit__visual .swiper-slide img {
  width: 100%;
  height: 38rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-recruit {
    padding-top: 10rem;
  }
  .p-top-recruit__head .content h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .p-top-recruit {
    padding-top: 8rem;
  }
  .p-top-recruit .content {
    margin-top: 0;
  }
  .p-top-recruit .content .navi.show-mobile {
    margin-top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-top-recruit__head {
    margin-bottom: 7.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-recruit__head .p-top-section-head {
    width: 100%;
    margin-bottom: 6.4rem;
  }
  .p-top-recruit__head .p-top-section-head .title {
    margin-bottom: 0;
  }
  .p-top-recruit__head .content {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .p-top-recruit__head .content h3 {
    font-size: 2.8rem;
  }
  .p-top-recruit__visual .swiper-slide img {
    height: 30rem;
  }
}
.p-top-section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5.6rem;
}
.p-top-section-head .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-section-head .title .en {
  font-size: 4rem;
  line-height: 1;
  font-weight: var(--font-weight-semiBold);
}
.p-top-section-head .title .jp {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin-top: 1.4rem;
}
.p-top-section-head .navi .c-button {
  max-width: 24rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-section-head .title .en {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .p-top-section-head .title .en {
    font-size: 2.8rem;
  }
  .p-top-section-head .title .jp {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}
.p-category-box .title {
  font-weight: var(--font-weight-bold);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 2.2rem 0 2.2rem 0.4rem;
  border-top: 1px solid rgb(1, 1, 1);
}
.p-category-box ul {
  border-top: 1px solid rgba(1, 1, 1, 0.14);
}
.p-category-box ul li {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(1, 1, 1, 0.14);
}
.p-category-box ul li.active a .name {
  opacity: 1;
}
.p-category-box ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-category-box ul li a:hover .name {
  opacity: 1;
}
.p-category-box ul li a .name {
  opacity: 0.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-category-box ul li a .name::before {
  content: "";
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 10px;
  background-color: #010101;
  margin-right: 0.8rem;
}
.p-category-box ul li a .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.6rem;
  min-width: 2.4rem;
  border-radius: 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  color: #757575;
  background-color: #f1f1f1;
}

.p-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-medium);
  margin-top: 6.4rem;
  margin-bottom: 6.4rem;
}
.p-pager a,
.p-pager span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 3px 5px;
  margin: 2px;
}
.p-pager a:not(.nextpostslink),
.p-pager span:not(.extend) {
  text-decoration: none;
  border: none;
  height: 5rem;
  width: 5rem;
  border-radius: 4rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F0F2F4;
}
.p-pager a.nextpostslink,
.p-pager span.extend {
  border: none;
}
.p-pager a:hover,
.p-pager span.current {
  border: 1px solid var(--black-color);
  background-color: var(--black-color);
  color: #fff;
}

.p-page-top {
  background-color: #1a1a1a;
  background-image: url(../img/common/bg_dot.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: 4px;
}
.p-page-top .l-main {
  margin-top: 20rem;
}

.is_opening_done .is_opening-hide {
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

@media (max-width: 767px) {
  .p-page-top .l-main {
    margin-top: 14rem;
  }
  .p-page-top .p-gnavi {
    color: var(--text-color);
  }
}
.p-page-company .p-post {
  margin-inline: auto;
}
.p-page-company article {
  margin-bottom: 16rem;
}

.p-page-company__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-page-company__section:not(:last-of-type) {
  margin-bottom: 16rem;
}
.p-page-company__section .heading {
  width: 30%;
  min-width: 27rem;
}
.p-page-company__section .heading h2 {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: var(--font-weight-bold);
}
.p-page-company__section .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: -1rem;
}
.p-page-company__section .content a {
  text-decoration: underline;
}
.p-page-company__section.is-identity {
  background-color: #1a1a1a;
  background-image: url(../img/common/bg_dot.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: 4px;
  color: #fff;
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.p-page-company__section .p-page-company__identity-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-page-company__section .p-page-company__identity-box:not(:last-of-type) {
  padding-bottom: 10rem;
  margin-bottom: 10rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.p-page-company__section .p-page-company__identity-box .heading span {
  display: block;
}
.p-page-company__section .p-page-company__identity-box .heading .en {
  font-size: 4.4rem;
  font-weight: var(--font-weight-semiBold);
  margin-bottom: 1rem;
}
.p-page-company__section .p-page-company__identity-box .heading .jp {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
}
.p-page-company__section .p-page-company__identity-box .content h3 {
  font-size: 4rem;
  line-height: 1.65;
  margin-bottom: 2.4rem;
}
.p-page-company__section .p-page-company__identity-box .content p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.2;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight {
  background-color: #121212;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 4.8rem;
  padding: 4rem;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 4rem;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-content h4 {
  font-size: 2.4rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-content p {
  font-size: 1.4rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.85;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure {
  width: 24%;
  min-width: 30rem;
  background-color: #fff;
  color: var(--text-color);
  padding: 2rem;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure .relight-logo {
  width: 50%;
  border-right: 1px solid var(--black-color);
  margin-right: 2rem;
  padding-right: 2rem;
  text-align: center;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure dl.companies {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure dl.companies dt {
  background-color: var(--black-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: var(--font-weight-semiBold);
  letter-spacing: 0.04em;
  padding: 0.4rem 0 0.6rem 0;
  line-height: 1;
  text-align: center;
  border-radius: 3px;
  margin-bottom: 0.4rem;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure dl.companies dd {
  margin-top: 0.8rem;
}
.p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure dl.companies dd img {
  width: auto;
  height: 2rem;
}
.p-page-company__section.is-profile .content table tr {
  border-bottom: 1px solid #CDCDCD;
}
.p-page-company__section.is-profile .content table tr td {
  padding: 2.4rem 0 3.2rem 0;
}
.p-page-company__section.is-profile .content table tr td.label {
  width: 20%;
  min-width: 20rem;
  color: #888888;
  font-weight: var(--font-weight-medium);
}
.p-page-company__section.is-profile .content .board-member-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}
.p-page-company__section.is-profile .content .board-member-list dl dt {
  width: 10.4rem;
  margin-right: 2.4rem;
}
.p-page-company__section.is-profile .content .board-member-list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-page-company__section.is-profile .content ul li {
  position: relative;
  padding-left: 1rem;
}
.p-page-company__section.is-profile .content ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 1.3rem;
  left: 0;
  border-radius: 1rem;
  margin-right: 0.8rem;
  background-color: var(--black-color);
}
.p-page-company__section.is-customers .content {
  padding-bottom: 4rem;
  border-bottom: 1px solid #CDCDCD;
}
.p-page-company__section.is-customers .content .customer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
}
.p-page-company__section.is-customers .content .customer-list ul {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem 0;
}
.p-page-company__section.is-customers .content .text-small {
  text-align: right;
  color: #888;
  font-weight: var(--font-weight-regular);
  font-size: 1.2rem;
}
.p-page-company__section.is-history .content {
  padding-bottom: 4rem;
  border-bottom: 1px solid #CDCDCD;
}
.p-page-company__section.is-history .content table tr td {
  padding: 1rem 0;
  line-height: 1.65;
}
.p-page-company__section.is-history .content table tr td.label {
  width: 18%;
  min-width: 15rem;
  color: #888888;
  font-weight: var(--font-weight-medium);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-page-company__section .p-page-company__identity-box .content h3 {
    font-size: 3.2rem;
  }
  .p-page-company__section .p-page-company__identity-box .content h3 .show-mobile-inline {
    display: inline;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight {
    padding: 3.2rem;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-content {
    margin-right: 2.4rem;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 16rem;
    min-width: initial;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure .relight-logo {
    width: 100%;
    margin-bottom: 2rem;
    border-right: none;
    padding-right: 0;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure .relight-logo img {
    display: inline-block;
    width: 80%;
  }
}
@media (max-width: 767px) {
  .p-page-company__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-company__section:not(:last-of-type) {
    margin-bottom: 10rem;
  }
  .p-page-company__section .heading h2 {
    font-size: 2.4rem;
  }
  .p-page-company__section .content {
    margin-top: 3.2rem;
  }
  .p-page-company__section.is-profile .content table tr td.label {
    width: 24%;
    min-width: 8rem;
  }
  .p-page-company__section.is-identity {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .p-page-company__section.is-customers .content .customer-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-page-company__section.is-customers .content .customer-list ul {
    width: 100%;
    gap: 0;
  }
  .p-page-company__section.is-history .content table tr td.label {
    width: 12rem;
    min-width: initial;
  }
  .p-page-company__section .p-page-company__identity-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-company__section .p-page-company__identity-box:not(:last-of-type) {
    padding-bottom: 8rem;
    margin-bottom: 8rem;
  }
  .p-page-company__section .p-page-company__identity-box .heading .en {
    font-size: 3.2rem;
  }
  .p-page-company__section .p-page-company__identity-box .heading .jp {
    font-size: 1.2rem;
  }
  .p-page-company__section .p-page-company__identity-box .content {
    margin-top: 8rem;
  }
  .p-page-company__section .p-page-company__identity-box .content h3 {
    font-size: 2.4rem;
  }
  .p-page-company__section .p-page-company__identity-box .content p {
    font-size: 1.6rem;
  }
  .p-page-company__section .p-page-company__identity-box .content table tr td {
    padding: 1.8rem 0 2rem 0;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight {
    padding: 3.2rem 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-content {
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-content h4 {
    font-size: 1.7rem;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-content p {
    font-size: 1.3rem;
  }
  .p-page-company__section .p-page-company__identity-box .p-page-company__relight .p-page-company__relight-figure {
    width: initial;
    min-width: 100%;
    padding: 2.2rem 1.6rem 2.4rem 1.6rem;
  }
}
.p-page-privacy .p-post {
  width: min(100%, 1000px);
  margin-inline: auto;
  background-color: #F5F5F5;
  border-radius: 1rem;
  padding: 8rem;
}
.p-page-privacy .l-main {
  margin-bottom: 14rem;
}

.p-page-privacy__section {
  margin-bottom: 6rem;
}
.p-page-privacy__section .title {
  font-size: 1.8rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.p-page-privacy__section .content {
  margin-top: 1.5rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-page-privacy .p-post {
    padding: 6.4rem;
  }
}
@media (max-width: 767px) {
  .p-page-privacy .p-post {
    width: 100%;
    padding: 4rem 2.4rem;
    font-size: 1.3rem;
  }
  .p-page-privacy__section {
    margin-bottom: 4rem;
  }
}
.p-service-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.p-service-navi .item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5%;
  padding: 3.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.p-service-navi .item .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.p-service-navi .item .heading .video {
  display: block;
  width: 19rem;
  height: 19rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.p-service-navi .item .heading .video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.p-service-navi .item .heading .video::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-service-navi .item .heading .video::before {
  mix-blend-mode: difference;
  opacity: 0.9;
}
.p-service-navi .item .heading .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -1rem;
  line-height: 1.2;
}
.p-service-navi .item .heading .title .jp {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}
.p-service-navi .item .heading .title .en {
  font-size: 5.2rem;
  font-weight: var(--font-weight-semiBold);
}
.p-service-navi .item.aws .heading .video::before {
  background-color: #3C9000;
}
.p-service-navi .item.app-dev .heading .video::before {
  background-color: #C06101;
}
.p-service-navi .item.web-design .heading .video::before {
  background-color: #9B282A;
}
.p-service-navi .item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-service-navi .item .content .summary {
  font-weight: var(--font-weight-medium);
  line-height: 1.85;
  width: calc(100% - 14rem);
  max-width: 40rem;
}
.p-service-navi .item .content .c-icon-banner-allow {
  opacity: 0.8;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-service-navi .item .heading {
    width: 48rem;
    gap: 0 7%;
  }
  .p-service-navi .item .heading .video {
    width: 12rem;
    height: 12rem;
  }
  .p-service-navi .item .heading .title .en {
    font-size: 4rem;
  }
  .p-service-navi .item .content .summary {
    width: calc(100% - 10rem);
  }
}
@media (max-width: 767px) {
  .p-service-navi .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
  }
  .p-service-navi .item .heading {
    gap: 0 2rem;
    width: 100%;
  }
  .p-service-navi .item .heading .video {
    width: 8rem;
    height: 8rem;
  }
  .p-service-navi .item .heading .title {
    margin-top: -0.6rem;
  }
  .p-service-navi .item .heading .title .jp {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  .p-service-navi .item .heading .title .en {
    font-size: 3rem;
  }
  .p-service-navi .item .content .summary {
    width: calc(100% - 8rem);
    font-size: 1.2rem;
  }
}
.p-page-service .p-page-head {
  margin-bottom: 4rem;
}
.p-page-service .p-page-head.container {
  width: min(93.75%, 1920px);
}
.p-page-service .p-section-works {
  padding-bottom: 8rem;
}
.p-page-service .p-works-list {
  margin-bottom: 8rem;
}
.p-page-service__visual {
  position: relative;
  overflow: hidden;
  margin-bottom: 12rem;
  width: 96vw;
  height: 48rem;
  margin-left: -48vw;
}
.p-page-service__visual::after, .p-page-service__visual::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
.p-page-service__visual::before {
  mix-blend-mode: difference;
  opacity: 0.9;
}
.p-page-service__visual::after {
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.p-page-service__visual.aws::before {
  background-color: #3C9000;
}
.p-page-service__visual.app-dev::before {
  background-color: #C06101;
}
.p-page-service__visual.web-design::before {
  background-color: #9B282A;
}
.p-page-service__visual video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.p-page-service__section {
  margin-bottom: 8rem;
}
.p-page-service__section .p-page-service__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8rem;
}
.p-page-service__section .p-page-service__section-head > .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-page-service__section .p-page-service__section-head > .title .en {
  font-size: 4rem;
  line-height: 1;
  font-weight: var(--font-weight-semiBold);
}
.p-page-service__section .p-page-service__section-head > .title .jp {
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin-top: 1.2rem;
}
.p-page-service__section .p-page-service__section-head > .summary {
  width: 55%;
  max-width: 60rem;
  font-size: 3.2rem;
  font-weight: var(--font-weight-extraBold);
  line-height: 1.65;
  margin-top: -1.4rem;
}

.p-page-service__feature ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 5%;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
  border-top: 1px solid #cdcdcd;
  padding-left: 12rem;
  position: relative;
}
.p-page-service__feature ul li:not(.has-figure) > .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-page-service__feature ul li:not(.has-figure) > .content > .title {
  width: 40%;
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}
.p-page-service__feature ul li:not(.has-figure) > .content > .summary {
  width: 50%;
  letter-spacing: 0;
}
.p-page-service__feature ul li.has-figure > .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-page-service__feature ul li.has-figure > .figure {
  width: 50%;
}
.p-page-service__feature ul li::before {
  display: block;
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: 0.8rem;
  font-family: var(--font-family-en);
  font-size: 8.8rem;
  font-weight: var(--font-weight-light);
  color: #bbbbbb;
}
.p-page-service__feature ul li > .content > .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.6rem;
  font-weight: var(--font-weight-extraBold);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.p-page-service__navi {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-page-service .p-page-head {
    margin-bottom: 4.8rem;
  }
  .p-page-service__visual {
    height: 36rem;
    margin-bottom: 10rem;
  }
  .p-page-service__section .p-page-service__section-head > .summary {
    width: 55%;
  }
  .p-page-service__feature ul li:not(.has-figure) > .content > .summary {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .p-page-service .p-page-head {
    margin-bottom: 4rem;
  }
  .p-page-service .p-page-service__visual {
    margin-bottom: 8rem;
    height: 96vw;
  }
  .p-page-service .p-section-works {
    padding-top: 8rem;
  }
  .p-page-service .p-works-list {
    margin-bottom: 0;
  }
  .p-page-service .p-section-works .navi.show-mobile {
    margin-bottom: 8rem;
  }
  .p-page-service__section {
    margin-bottom: 4rem;
  }
  .p-page-service__section .p-page-service__section-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-service__section .p-page-service__section-head > .summary {
    width: 100%;
    max-width: initial;
    font-size: 2.4rem;
    margin-top: 6.4rem;
  }
  .p-page-service__section .p-page-service__section-head > .title .jp {
    font-size: 1.2rem;
  }
  .p-page-service__section .p-page-service__section-head > .title .en {
    font-size: 3rem;
    margin-top: 1rem;
  }
  .p-page-service__feature ul li {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 6rem;
  }
  .p-page-service__feature ul li.has-figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-service__feature ul li.has-figure > .content {
    width: 100%;
  }
  .p-page-service__feature ul li.has-figure > .figure {
    width: 86vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 3.2rem;
  }
  .p-page-service__feature ul li::before {
    top: 1.6rem;
    font-size: 5.6rem;
  }
  .p-page-service__feature ul li > .content > .title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  .p-page-service__feature ul li:not(.has-figure) > .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page-service__feature ul li:not(.has-figure) > .content > .title {
    width: 100%;
  }
  .p-page-service__feature ul li:not(.has-figure) > .content > .summary {
    width: 100%;
  }
}
.p-page-works-list .p-page-head {
  margin-bottom: 4.8rem;
}

@media (max-width: 767px) {
  .page-works-list .p-page-head {
    margin-bottom: 3.2rem;
  }
}
.p-section-works {
  background-color: #F5F5F5;
  color: var(--text-color);
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.p-section-works .p-section-section-head {
  margin-bottom: 4.8rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-section-works {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 767px) {
  .p-section-works {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .p-section-works .navi.show-mobile {
    margin-top: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-page-head {
  position: relative;
  overflow: hidden;
  margin-bottom: 8rem;
}
.p-page-head::before, .p-page-head:after {
  content: "";
  display: block;
  width: 100vw;
}

.p-page-head__title {
  line-height: 1.2;
}
.p-page-head__title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-page-head__title span.jp {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-left: 0.1rem;
  font-weight: var(--font-weight-bold);
}
.p-page-head__title span.en {
  font-size: 7rem;
  letter-spacing: -0.02em;
  font-weight: var(--font-weight-semiBold);
  margin-top: 1rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-page-head {
    margin-bottom: 6.4rem;
  }
  .p-page-head .p-page-head__title span.en {
    font-size: 6.4rem;
  }
}
@media (max-width: 767px) {
  .p-page-head {
    margin-bottom: 5.6rem;
  }
  .p-page-head .p-page-head__title span.jp {
    font-size: 1.4rem;
    margin-left: 0;
  }
  .p-page-head .p-page-head__title span.en {
    font-size: 4rem;
    letter-spacing: -0.01em;
  }
}
.p-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #000;
}

.p-progress {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000001;
  height: 1px;
  background-color: var(--red-color);
}

.p-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
}
.p-gnavi .parent {
  position: relative;
}
.p-gnavi .parent:not(:last-of-type) {
  margin-right: 4rem;
}
.p-gnavi .parent > span, .p-gnavi .parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-weight-semiBold);
  padding: 1.6rem 0;
}
.p-gnavi .parent > span {
  position: relative;
  padding-right: 16px;
}
.p-gnavi .parent > span::before, .p-gnavi .parent > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 1px;
  background-color: #010101;
}
.p-gnavi .parent > span::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-gnavi .parent:hover > span::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.p-gnavi .parent:hover .child {
  opacity: 1;
  visibility: visible;
}
.p-gnavi .child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.3rem;
}
.p-gnavi .child a {
  padding: 0.8rem 0;
}
.p-gnavi span,
.p-gnavi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
.p-gnavi span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gnavi .item:not(:last-of-type) {
  margin-right: 3.2rem;
}
.p-gnavi .item span,
.p-gnavi .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-weight: 700;
}

.is_inverse .p-gnavi .parent > a {
  color: #fff;
}
.is_inverse .p-gnavi .parent > span::before, .is_inverse .p-gnavi .parent > span::after {
  background-color: #fff;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-gnavi {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-gnavi .parent {
    width: 100%;
    margin-right: 0;
  }
  .p-gnavi .parent.active > span::before {
    -webkit-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
  }
  .p-gnavi .parent:not(:last-of-type) {
    margin-right: 0;
  }
  .p-gnavi .parent:hover > span::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .p-gnavi .parent:hover .child {
    display: none;
  }
  .p-gnavi .parent > a, .p-gnavi .parent > span {
    padding: 2.4rem 0;
  }
  .p-gnavi .parent > a::before, .p-gnavi .parent > a::after, .p-gnavi .parent > span::before, .p-gnavi .parent > span::after {
    width: 12px;
    height: 2px;
  }
  .p-gnavi .parent.misc {
    padding: 2.4rem 0;
  }
  .p-gnavi .parent .child {
    background-color: inherit;
    display: none;
    min-width: inherit;
    width: 100%;
    padding: 0;
    border-radius: 0;
    -webkit-box-shadow: inherit;
            box-shadow: inherit;
    position: relative;
    left: initial;
    top: initial;
    font-size: 1.3rem;
    margin-bottom: 2.4rem;
  }
  .p-gnavi .parent .child > a, .p-gnavi .parent .child > span {
    font-weight: var(--font-weight-regular);
  }
  .p-gnavi .parent .child > a {
    padding: 1.2rem 0;
  }
  .p-header__contact.c-button {
    font-size: 1.4rem;
    padding: 1rem 3.2rem 1.5rem 3.2rem;
    min-height: 6rem;
    width: 100%;
  }
  .is_inverse .p-gnavi .parent > span, .is_inverse .p-gnavi .parent > a {
    color: #010101;
  }
  .is_inverse .p-gnavi .parent > span::after, .is_inverse .p-gnavi .parent > span::before, .is_inverse .p-gnavi .parent > a::after, .is_inverse .p-gnavi .parent > a::before {
    background-color: #010101;
  }
  .is_inverse .p-header__contact.c-button {
    background-color: #010101;
    color: #ffffff;
  }
}
@media (max-width: 767px) {
  .p-gnavi {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-gnavi .parent {
    width: 100%;
    margin-right: 0;
  }
  .p-gnavi .parent.active > span::before {
    -webkit-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
  }
  .p-gnavi .parent:not(:last-of-type) {
    margin-right: 0;
  }
  .p-gnavi .parent:hover > span::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .p-gnavi .parent:hover .child {
    display: none;
  }
  .p-gnavi .parent > a, .p-gnavi .parent > span {
    padding: 2.4rem 0;
  }
  .p-gnavi .parent > a::before, .p-gnavi .parent > a::after, .p-gnavi .parent > span::before, .p-gnavi .parent > span::after {
    width: 12px;
    height: 2px;
  }
  .p-gnavi .parent.misc {
    padding: 2.4rem 0;
  }
  .p-gnavi .parent .child {
    background-color: inherit;
    display: none;
    min-width: inherit;
    width: 100%;
    padding: 0;
    border-radius: 0;
    -webkit-box-shadow: inherit;
            box-shadow: inherit;
    position: relative;
    left: initial;
    top: initial;
    font-size: 1.3rem;
    margin-bottom: 2.4rem;
  }
  .p-gnavi .parent .child > a, .p-gnavi .parent .child > span {
    font-weight: var(--font-weight-regular);
  }
  .p-gnavi .parent .child > a {
    padding: 1.2rem 0;
  }
  .p-header__contact.c-button {
    font-size: 1.4rem;
    padding: 1rem 3.2rem 1.5rem 3.2rem;
    min-height: 6rem;
    width: 100%;
  }
  .is_inverse .p-gnavi .parent > span, .is_inverse .p-gnavi .parent > a {
    color: #010101;
  }
  .is_inverse .p-gnavi .parent > span::after, .is_inverse .p-gnavi .parent > span::before, .is_inverse .p-gnavi .parent > a::after, .is_inverse .p-gnavi .parent > a::before {
    background-color: #010101;
  }
  .is_inverse .p-header__contact.c-button {
    background-color: #010101;
    color: #ffffff;
  }
}
.p-menu-btn {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 1001;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}
.p-menu-btn span {
  display: block;
  width: 50px;
  height: 1px;
  background-color: #010101;
  position: absolute;
  z-index: 1;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-menu-btn span.l1 {
  top: 18px;
  -webkit-animation: MenuTopCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuTopCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}
.p-menu-btn span.l2 {
  top: 25px;
}
.p-menu-btn span.l3 {
  top: 33px;
  -webkit-animation: MenuBottomCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuBottomCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.is_inverse .p-menu-btn span {
  background-color: #fff;
}

.menu-open .p-menu-btn span {
  background-color: var(--black-color) !important;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-animation: MenuTopOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuTopOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}
.menu-open .p-menu-btn span.l3 {
  -webkit-animation: MenuBottomOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuBottomOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

@-webkit-keyframes MenuTopOpenAnime {
  0% {
    top: 18px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 25px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}

@keyframes MenuTopOpenAnime {
  0% {
    top: 18px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 25px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}
@-webkit-keyframes MenuTopCloseAnime {
  0% {
    top: 25px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 18px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes MenuTopCloseAnime {
  0% {
    top: 25px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 18px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes MenuBottomOpenAnime {
  0% {
    top: 33px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 25px;
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
}
@keyframes MenuBottomOpenAnime {
  0% {
    top: 33px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 25px;
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
}
@-webkit-keyframes MenuBottomCloseAnime {
  0% {
    top: 25px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 33px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes MenuBottomCloseAnime {
  0% {
    top: 25px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 33px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-menu-btn {
    display: block;
    top: 30px;
    right: 40px;
  }
}
@media (max-width: 767px) {
  .p-menu-btn {
    display: block;
    top: 8px;
  }
}
.p-form {
  background-color: #F5F5F5;
  padding: 5.6rem;
}
.p-form .icon-required {
  color: #DC000C;
  margin-left: 0.4rem;
}
.p-form .p-form__attention {
  text-align: right;
  font-size: 1.2rem;
}
.p-form .p-form__attention .icon-required {
  font-size: var(--font-size-base-pc);
}
.p-form .p-form__block {
  margin-bottom: 2.4rem;
}
.p-form .p-form__block.privacy {
  padding: 2rem 0;
}
.p-form .p-form__block.privacy p:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.p-form .p-form__block.privacy a {
  text-decoration: underline;
}
.p-form .p-form__block.privacy .wpcf7-list-item-label {
  font-weight: var(--font-weight-semiBold);
}
.p-form .p-form__block.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-top: 1.6rem;
}
.p-form .p-form__block .label {
  width: 30%;
  min-width: 24rem;
  padding: 1rem 0;
  font-weight: var(--font-weight-semiBold);
}
.p-form .p-form__block .control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wpcf7-form-control.wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpcf7-list-item-label {
  margin-left: 0.8rem;
}

span.wpcf7-list-item {
  margin: 0;
}

.wpcf7 form .wpcf7-response-output,
div.wpcf7-response-output {
  border: none;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: initial;
}

.wpcf7 form .wpcf7-response-output {
  width: 100%;
  margin: 20px auto;
  color: #398f14;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  padding: 12px;
  border: none;
}

span.wpcf7-not-valid-tip,
.wpcf7-not-valid-tip-no-ajax {
  margin-top: 0.6rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
div.wpcf7-validation-errors {
  color: #c00;
  font-weight: 700;
  border: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7-mail-sent-ok {
  color: #365899;
  font-weight: 700;
  border: none;
}

.wpcf7-not-valid {
  border-color: #98A6B5;
}

@media (max-width: 767px) {
  .p-form {
    font-size: var(--font-size-base-sp);
    width: 100%;
    padding: 1.6rem;
  }
  .p-form .p-form__block.privacy {
    padding: 0;
  }
  .p-form .p-form__block.button .c-button {
    width: 26rem;
  }
  .wpcf7 form .wpcf7-response-output {
    margin-top: 0 !important;
  }
}
.p-404 {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 14rem;
}

.p-404 h1 {
  line-height: 1;
  margin: 0 auto 8rem auto;
  font-family: var(--font-family-en);
  font-weight: 700;
}

.p-404 h1 span {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.p-404 h1 span:first-of-type {
  font-size: 12rem;
  margin-bottom: 2rem;
  color: var(--color-green);
}

.p-404-content p {
  line-height: 2;
}

.p-404-back-navi {
  margin-top: 4rem;
}

.p-404-back-navi a {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .p-404 h1 span:first-of-type {
    font-size: 10rem;
    margin-bottom: 1rem;
  }
  .p-404 h1 span {
    font-size: 2rem;
  }
}
.p-post {
  margin-top: -1rem;
}

.p-post__head {
  padding-bottom: 3.2rem;
  margin-bottom: 5.6rem;
  border-bottom: 1px solid rgba(1, 1, 1, 0.14);
}
.p-post__head .title {
  font-size: 4.8rem;
  line-height: 1.45;
  margin-top: -2rem;
}
.p-post__head .meta {
  line-height: 1;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 3.2rem;
}
.p-post__head .meta .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-medium);
  margin-right: 1.8rem;
}
.p-post__head .meta .category {
  display: inline-block;
  background-color: #F3F3F3;
  color: #757575;
  padding: 0.8rem 1.2rem 1rem 1.2rem;
  font-weight: var(--font-weight-semiBold);
  letter-spacing: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.p-post__body {
  /* 見出し */
  /* 段落余白 */
  /* 段落 */
  /* リスト */
  /* 画像 */
  /* レイアウト */
  /* カラム */
  /* 段落 */
  /* 引用 */
  /* プルクオート */
  /* 詳細 */
  /* 表 */
  /* ギャラリー */
  /* 詩 */
  /* ボタン */
  /* 区切り線 */
  /* カラム */
  /* ファイル */
  /* 埋め込み */
}
.p-post__body h1, .p-post__body h2, .p-post__body h3, .p-post__body h4, .p-post__body h5 {
  line-height: 1.5;
  margin-top: 2.4rem;
}
.p-post__body h1 {
  font-size: 4.8rem;
}
.p-post__body h2 {
  font-size: 3.2rem;
}
.p-post__body h3 {
  font-size: 2.4rem;
}
.p-post__body h4 {
  font-size: var(--font-size-base-pc);
}
.p-post__body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post__body .mb-block {
  margin-bottom: 8rem;
}
.p-post__body p {
  margin-top: 2.4rem;
}
.p-post__body > ul {
  margin-top: 2.4rem;
}
.p-post__body > ul > li {
  line-height: 1.65;
  position: relative;
  margin-left: 0.6rem;
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
}
.p-post__body > ul > li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  top: 1.2rem;
}
.p-post__body .wp-block-image {
  margin-top: 2.4rem;
}
.p-post__body .wp-block-image figcaption {
  font-size: 1.2rem;
  margin-top: 0.4rem;
}
.p-post__body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 8% 0 0;
}
.p-post__body .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 8%;
}
.p-post__body .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.p-post__body .wp-block-columns h1, .p-post__body .wp-block-columns h2, .p-post__body .wp-block-columns h3, .p-post__body .wp-block-columns h4, .p-post__body .wp-block-columns h5 {
  margin-top: 1.6rem;
}
.p-post__body .wp-block-columns p {
  margin-top: 1.6rem;
}
.p-post__body p {
  margin-top: 2.4rem;
}
.p-post__body .wp-block-quote {
  margin-top: 2.4rem;
  overflow-wrap: break-word;
  background-color: #F0F0F0;
  padding: 4rem 4rem 4rem 4.8rem;
}
.p-post__body .wp-block-quote p {
  margin-top: 0;
  border: none;
  line-height: 1.65;
}
.p-post__body .wp-block-quote cite {
  font-size: 1.6rem;
}
.p-post__body .wp-block-pullquote {
  margin-top: 2.4rem;
  font-size: var(--font-size-base-pc) !important;
}
.p-post__body .wp-block-details {
  margin-top: 2.4rem;
}
.p-post__body .wp-block-table {
  margin-bottom: 8rem;
}
.p-post__body .wp-block-table table {
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.p-post__body .wp-block-table table tr {
  border-bottom: 1px solid #C7C7C7;
}
.p-post__body .wp-block-table table tr td {
  border-right: 1px solid #C7C7C7;
  padding: 1rem 1.4rem;
}
.p-post__body .wp-block-table figcaption {
  font-size: 1.2rem;
  margin-top: 0.4rem;
}
.p-post__body .wp-block-gallery figcaption {
  font-size: 1.2rem !important;
}
.p-post__body .wp-block-gallery.has-nested-images figcaption {
  margin-top: 0.4rem;
  position: relative !important;
  background: none !important;
  color: var(--text-color) !important;
  font-size: 1.2rem !important;
  padding: 0 !important;
}
.p-post__body .wp-block-gallery.has-nested-images {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-post__body .wp-block-gallery.has-nested-images figure.wp-block-image {
  display: block;
}
.p-post__body .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
  display: none;
}
.p-post__body .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  margin-top: 2.4rem;
}
.p-post__body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  font-size: 1.2rem;
  margin-top: 0.4rem;
  text-shadow: initial;
  text-align: left;
}
.p-post__body .wp-block-verse {
  margin-top: 2.4rem;
}
.p-post__body .wp-block-buttons .wp-block-button {
  margin-top: 1.6rem;
}
.p-post__body .wp-block-file__button,
.p-post__body .wp-block-button__link {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  color: #fff;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-semiBold);
  font-size: var(--font-size-base-pc);
  padding: 1rem 2.4rem 1.3rem 2.4rem;
  border-radius: 5px;
  position: relative;
  z-index: 0;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  overflow: hidden;
}
.p-post__body .wp-block-file__button:hover,
.p-post__body .wp-block-button__link:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}
.p-post__body .wp-block-separator {
  margin: 4rem 0;
  border: none !important;
  border-bottom: 1px solid #CDD6DD !important;
}
.p-post__body .wp-block-columns {
  line-height: 1.75;
}
.p-post__body .wp-block-file .wp-block-file__button {
  background: var(--black-color);
  border-radius: 0.3rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.4rem 1.5rem;
}
.p-post__body .wp-block-embed figcaption {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 1.3rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-post__head .title {
    font-size: 4rem;
  }
  .p-post__body h1 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .p-post {
    margin-top: 0;
  }
  .p-post__head .title {
    font-size: 2.4rem;
    margin-top: 0;
  }
  .p-post__head .meta {
    margin-top: 1.6rem;
  }
  .p-post__head .meta .date {
    font-size: 1.3rem;
  }
  .p-post__head .meta .category {
    font-size: 1.2rem;
  }
  .p-post__body {
    /* 見出し */
    /* レイアウト */
    /* 引用 */
  }
  .p-post__body h1, .p-post__body h2, .p-post__body h3, .p-post__body h4, .p-post__body h5 {
    margin-bottom: 1.5rem;
  }
  .p-post__body h1, .p-post__body h2, .p-post__body h3, .p-post__body h4, .p-post__body h5 {
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .p-post__body h1 {
    font-size: 2rem;
  }
  .p-post__body h2 {
    font-size: 1.8rem;
  }
  .p-post__body h3 {
    font-size: 1.6rem;
  }
  .p-post__body h4 {
    font-size: var(--font-size-base-sp);
  }
  .p-post__body h5 {
    font-size: var(--font-size-base-sp);
  }
  .p-post__body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post__body .wp-block-media-text .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post__body .wp-block-quote {
    padding: 2rem;
  }
}
.p-pagenavi {
  border-top: 1px solid #707070;
  padding-top: 2.4rem;
  margin-top: 4rem;
}
.p-pagenavi .wp-pagenavi {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 2.4rem;
}
.p-pagenavi .wp-pagenavi a,
.p-pagenavi .wp-pagenavi span {
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.p-news-list .item:last-of-type {
  border-bottom: 1px solid #dddddd;
}
.p-news-list .item a {
  border-top: 1px solid #dddddd;
  display: block;
  padding: 3.2rem 0 4rem 0;
  position: relative;
}
.p-news-list .item a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--black-color);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.p-news-list .item a:hover::after {
  width: 100%;
}
.p-news-list .item a .meta {
  line-height: 1;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-news-list .item a .meta .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family-en);
  font-size: 1.3rem;
  color: #888888;
  font-weight: var(--font-weight-semiBold);
  margin-right: 2rem;
}
.p-news-list .item a .meta .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.8rem;
}
.p-news-list .item a .meta .category span {
  display: inline-block;
  background-color: #f1f1f1;
  color: #757575;
  padding: 0.8rem 1.2rem 1rem 1.2rem;
  font-weight: var(--font-weight-semiBold);
  letter-spacing: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.p-news-list .item a .title {
  font-size: 1.7rem;
  line-height: 1.65;
  font-weight: var(--font-weight-medium);
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-news-list .item a .title {
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .p-news-list .item a {
    padding: 3.2rem 0;
  }
  .p-news-list .item a .meta .date {
    font-size: 1.3rem;
    margin-right: 1.6rem;
  }
  .p-news-list .item a .meta .category span {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
  .p-news-list .item a .title {
    font-size: 1.5rem;
  }
}
.p-works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem 2%;
}
.p-works-list .item {
  width: 32%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding-bottom: 9rem;
  border-radius: 0.5rem;
}
.p-works-list .item .logo-image a {
  position: relative;
  display: block;
}
.p-works-list .item .logo-image a::after {
  display: block;
  content: "";
  padding-top: 40%;
  overflow: hidden;
}
.p-works-list .item .logo-image a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
}
.p-works-list .item .heading {
  padding: 3rem 3.2rem 1.6rem 3.2rem;
  border-top: 1px solid #E6E6E6;
}
.p-works-list .item .heading .title {
  font-size: 2rem;
  line-height: 1.45;
}
.p-works-list .item .heading .category {
  font-size: 1.3rem;
  font-weight: var(--font-weight-semiBold);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-works-list .item .heading .category span {
  display: block;
}
.p-works-list .item .heading .category span:not(:last-of-type)::after {
  content: "／";
}
.p-works-list .item .tags {
  color: #868686;
  font-size: 1.2rem;
  line-height: 1.85;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 3.2rem;
  margin-bottom: 2rem;
}
.p-works-list .item .tags span {
  display: inline-block;
}
.p-works-list .item .tags span:not(:last-of-type)::after {
  content: "／";
}
.p-works-list .item nav {
  position: absolute;
  bottom: 3.2rem;
  width: 100%;
  padding: 0 3.2rem;
  height: 4.4rem;
}
.p-works-list .item nav .website {
  position: absolute;
  left: 3.2rem;
}
.p-works-list .item nav .website.c-button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: inherit;
  font-size: 1.3rem;
  height: 4.4rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  padding-bottom: 0.2rem;
  background-color: #C4C4C4;
}
.p-works-list .item nav .website.c-button:hover {
  background-color: var(--black-color);
}
.p-works-list .item nav .website.c-button .c-icon__outlink {
  margin-left: 0.6rem;
}
.p-works-list .item nav .detail.c-button-allow {
  font-size: 1.4rem;
  position: absolute;
  right: 3.2rem;
}

.p-top-works__navi {
  margin-top: 4rem;
  padding: 0 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-works-list .item .heading {
    padding: 2rem;
  }
  .p-works-list .item .tags {
    padding: 0 2rem;
  }
  .p-works-list .item nav {
    padding: 0 2rem;
  }
  .p-works-list .item nav .website {
    left: 2rem;
    font-size: 1.2rem;
  }
  .p-works-list .item nav .website.c-button {
    height: 4rem;
  }
  .p-works-list .item nav .website.c-button .hide-mobile {
    display: none;
  }
  .p-works-list .item nav .detail.c-button-allow {
    font-size: 1.3rem;
    right: 2rem;
  }
}
@media (max-width: 767px) {
  .p-works-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
  }
  .p-works-list .item {
    width: 100%;
    padding-bottom: 7.8rem;
  }
  .p-works-list .item .logo-image {
    height: 14rem;
  }
  .p-works-list .item .heading {
    padding: 2.4rem 2.4rem 2rem 2.4rem;
  }
  .p-works-list .item .heading .category {
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
  }
  .p-works-list .item .heading .title {
    font-size: 1.8rem;
  }
  .p-works-list .item .tags {
    padding: 0 2.4rem;
    font-size: 1.1rem;
  }
  .p-works-list .item nav {
    padding: 0 2.4rem;
    bottom: 2.4rem;
  }
  .p-works-list .item nav .website {
    left: 2.4rem;
  }
  .p-works-list .item nav .website.c-button {
    height: 4rem;
  }
  .p-works-list .item nav .detail.c-button-allow {
    font-size: 1.3rem;
    right: 2.4rem;
  }
}
.p-works-search {
  margin-bottom: 4rem;
}
.p-works-search .param {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #E5E5E5;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
.p-works-search .param .label {
  font-size: 1.5rem;
  width: 14rem;
  font-weight: var(--font-weight-bold);
}
.p-works-search .param .value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0.6rem;
}
.p-works-search .param .value li a,
.p-works-search .param .value li span {
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  border: 1px solid #E5E5E5;
  padding: 0.9rem 1.6rem;
  min-width: 6.4rem;
  text-align: center;
  border-radius: 10rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-works-search .param .value li:hover a,
.p-works-search .param .value li:hover span, .p-works-search .param .value li.selected a,
.p-works-search .param .value li.selected span {
  background-color: var(--black-color);
  border-color: var(--black-color);
  color: #fff;
}

@media (max-width: 767px) {
  .p-works-search .param {
    display: block;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .p-works-search .param.active .label::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .p-works-search .param .label {
    position: relative;
    width: 100%;
  }
  .p-works-search .param .label::before, .p-works-search .param .label::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    right: 5px;
    width: 12px;
    height: 2px;
    background-color: #010101;
  }
  .p-works-search .param .label::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-works-search .param .value {
    padding: 1.6rem 0 0.8rem 0;
  }
}
.p-works-detail .container {
  max-width: 900px;
}

.p-works-detail__head {
  margin-bottom: 4rem;
}
.p-works-detail__head .heading .category {
  font-weight: var(--font-weight-semiBold);
  display: block;
  margin-bottom: 0.5rem;
}
.p-works-detail__head .heading .title {
  font-size: 5.2rem;
  line-height: 1.45;
  font-weight: var(--font-weight-bold);
}
.p-works-detail__visual {
  margin-bottom: 8rem;
}

.p-works-detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8rem;
}
.p-works-detail__info dt {
  width: 16rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
.p-works-detail__info dd {
  width: calc(100% - 16rem);
  padding: 2.4rem 0;
  border-bottom: 1px solid #E5E5E5;
}
.p-works-detail__info dd.correspondence ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-works-detail__info dd.correspondence ul li {
  position: relative;
}
.p-works-detail__info dd.correspondence ul li:not(:first-child) {
  padding-left: 1.2rem;
  margin-left: 1.2rem;
}
.p-works-detail__info dd.correspondence ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: "／";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-works-detail__body {
  margin-bottom: 16rem;
}

@media (max-width: 767px) {
  .p-works-detail__head .heading .title {
    font-size: 3.2rem;
  }
  .p-works-detail__visual {
    margin-bottom: 4rem;
  }
  .p-works-detail__info dt {
    width: 100%;
    padding: 2rem 0 0 0;
    border-bottom: none;
  }
  .p-works-detail__info dd {
    width: 100%;
    padding: 0.4rem 0 2rem 0;
  }
  .p-works-detail__info dd.correspondence ul li:not(:first-child) {
    padding-left: 1rem;
    margin-left: 1rem;
  }
  .p-works-detail__body {
    margin-bottom: 10rem;
  }
}
.p-works-detail-legacy .single_works_box {
  margin-top: 13rem;
  margin-bottom: 12rem;
}
.p-works-detail-legacy .single_works_box .bg_white_t_left {
  margin-bottom: 2.5rem;
}
.p-works-detail-legacy .single_works_box .headline02 {
  margin-bottom: 1.6rem;
  letter-spacing: 0.1rem;
}
.p-works-detail-legacy .production_range {
  text-align: center;
  margin: 0 auto 4rem auto;
  max-width: 600px;
}
.p-works-detail-legacy .production_range span {
  display: inline-block;
  color: #999;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  margin: 0.3rem;
  background-color: #e6e6e6;
  white-space: nowrap;
}
.p-works-detail-legacy .works_main_img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
}
.p-works-detail-legacy .main_img_bg {
  background-color: #eee;
}
.p-works-detail-legacy .works_title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.65;
  margin-bottom: 2.4rem;
  text-align: justify;
}
.p-works-detail-legacy .works_text {
  margin-bottom: 6.4rem;
  text-align: justify;
  line-height: 2;
}
.p-works-detail-legacy .works_repletion {
  padding-top: 4rem;
  border-top: solid 1px #a9a9a9;
}
.p-works-detail-legacy .works_sub_img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8rem;
}
.p-works-detail-legacy .single_works_box .works_sub_img_wrap img,
.p-works-detail-legacy .works_sub_img_wrap video {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.p-works-detail-legacy .works_img_1 .welfare_box {
  width: 100%;
  padding: 0;
  margin: 0;
}
.p-works-detail-legacy .works_img_1 img,
.p-works-detail-legacy .works_img_1 video {
  width: 100%;
  height: auto;
  display: block;
}
.p-works-detail-legacy .works_img_2 .welfare_box {
  width: 49%;
  padding: 0;
  margin-right: 2%;
}
.p-works-detail-legacy .works_img_2 img,
.p-works-detail-legacy .works_img_2 video {
  width: 100%;
  max-width: 475px;
  height: auto;
  display: block;
}
.p-works-detail-legacy .works_img_2 .welfare_box:last-child {
  margin-right: 0;
}
.p-works-detail-legacy .works_img_3 .welfare_box {
  width: 30%;
  padding: 0;
  text-align: center;
}
.p-works-detail-legacy .works_img_3 img {
  width: 100%;
  max-width: 270px;
  height: auto;
}
.p-works-detail-legacy .works_img_3 .welfare_box:last-child {
  margin: 0;
}
.p-works-detail-legacy .app_dl_button {
  width: 123px;
  float: left;
  margin-right: 2%;
  /*仮置き*/
  height: 38px;
  background-color: #898985;
}
.p-works-detail-legacy .single_works_box .works_change_button {
  width: 90%;
  max-width: 1200px;
  margin-top: 0;
}
.p-works-detail-legacy .link_btn {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  position: relative;
  color: #fff;
  background-color: var(--text-color);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  padding-left: 3.2rem;
  padding-right: 3.2rem;
  height: 6.4rem;
  min-width: 20rem;
  line-height: 1;
  border-radius: 0.4rem;
}
.p-works-detail-legacy .link_btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.p-works-detail-legacy .correspondence_content span {
  padding-right: 0.3rem;
}
.p-works-detail-legacy .correspondence_content span::after {
  content: ",";
}
.p-works-detail-legacy .correspondence_content span:last-of-type::after {
  content: none;
}
.p-works-detail-legacy .archive_works_text {
  margin-bottom: 4rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-works-detail-legacy .works_title {
    font-size: 1.8rem;
  }
  .p-works-detail-legacy .works_sub_img_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
    margin-bottom: 4rem;
  }
  .p-works-detail-legacy .works_img_2 .welfare_box {
    width: 100%;
    margin-right: 0;
  }
  .p-works-detail-legacy .works_img_3 .welfare_box {
    width: 100%;
  }
}
.p-requirement {
  line-height: 1.85;
  border-bottom: 1px solid #dddddd;
  padding: 5rem 0 5.6rem 0;
  position: relative;
}
.p-requirement::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--black-color);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.p-requirement:hover::after {
  width: 100%;
}
.p-requirement.active .p-requirement__heading::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-requirement__heading {
  position: relative;
  padding-right: 8rem;
  cursor: pointer;
}
.p-requirement__heading .name {
  font-size: 2.8rem;
  line-height: 1.65;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}
.p-requirement__heading::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../img/requirement/icon_toggle.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: calc(50% - 2.5rem);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s cubic-bezier(0, 0, 0, 1);
  transition: 0.3s cubic-bezier(0, 0, 0, 1);
}

.p-requirement__content {
  display: none;
  padding-top: 5.6rem;
  padding-bottom: 4rem;
}
.p-requirement__content table tr {
  border-bottom: 1px solid #E5E5E5;
  font-size: 1.4rem;
}
.p-requirement__content table tr td {
  padding: 2.4rem 3.2rem;
}
.p-requirement__content table tr td.label {
  font-weight: var(--font-weight-semiBold);
  background-color: #F5F5F5;
  min-width: 18rem;
  width: 20%;
}
.p-requirement__content .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 4.8rem;
}

@media (max-width: 767px) {
  .p-requirement {
    padding: 2.8rem 0 3.6rem 0;
  }
  .p-requirement__heading {
    padding-right: 6.4rem;
  }
  .p-requirement__heading::after {
    width: 3.2rem;
    height: 3.2rem;
    top: 0.24rem;
  }
  .p-requirement__heading .name {
    font-size: 2rem;
  }
  .p-requirement__content {
    padding-top: 2.4rem;
  }
  .p-requirement__content table tr {
    font-size: 1.3rem;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-requirement__content table tr td {
    padding: 1.6rem 1.6rem;
  }
  .p-requirement__content table tr td.label {
    min-width: inherit;
    width: 100%;
  }
}
.p-entry-flow {
  border: 1px solid #E5E5E5;
  margin-top: 4rem;
}

.p-entry-flow__heading {
  text-align: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.7rem;
  border-bottom: 1px solid #E5E5E5;
  padding: 1.8rem 0 2.2rem 0;
}

.p-entry-flow__list {
  padding: 0 3.2rem 4rem 3.2rem;
}
.p-entry-flow__list .item {
  padding-top: 3.2rem;
}
.p-entry-flow__list .item .label {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.4rem;
}
.p-entry-flow__list .item .label .number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--black-color);
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-right: 1.4rem;
  width: 2.8rem;
  height: 2.8rem;
}
.p-entry-flow__list .item .content {
  font-size: 1.4rem;
  line-height: 1.65;
  padding-left: 4.2rem;
}

.p-contact-banner {
  background-color: var(--black-color);
  color: #fff;
  padding: 6.4rem 14rem 10rem 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 0.5rem;
}
.p-contact-banner .c-icon-banner-allow {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}

.p-contact-banner__head {
  width: 40%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
.p-contact-banner__head .en {
  font-size: 4rem;
  font-weight: var(--font-weight-semiBold);
}
.p-contact-banner__head .jp {
  font-size: 1.4rem;
  margin-top: 1.2rem;
}

.p-contact-banner__content {
  margin-top: -1rem;
}
.p-contact-banner__content h3 {
  font-size: 3.2rem;
  font-weight: var(--font-weight-semiBold);
  margin-bottom: 1rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-contact-banner {
    padding: 5.6rem 12rem 8rem 5.6rem;
  }
  .p-contact-banner .c-icon-banner-allow {
    bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .p-contact-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 2.4rem 8.4rem 2.4rem;
  }
  .p-contact-banner .c-icon-banner-allow {
    right: 2.4rem;
    bottom: 2.4rem;
  }
  .p-contact-banner__head .en {
    font-size: 3rem;
  }
  .p-contact-banner__head .jp {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  .p-contact-banner__content {
    margin-top: 4rem;
  }
  .p-contact-banner__content h3 {
    font-size: 2.4rem;
  }
}
.p-aws-service-menu {
  background-color: var(--black-color);
  color: #fff;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.p-aws-service-menu__head {
  margin-bottom: 8rem;
}
.p-aws-service-menu__head .title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.p-aws-service-menu__head .title .en {
  font-size: 4rem;
  font-weight: var(--font-weight-semiBold);
}
.p-aws-service-menu__head .title .jp {
  font-size: 1.4rem;
  font-weight: var(--font-weight-semiBold);
  margin-top: 1.2rem;
}

.p-aws-service-menu__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-aws-service-menu__group {
  width: calc(50% - 1.2rem);
  line-height: 1.75;
}

.p-aws-service-menu__banner {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 2.4rem 12rem 2.4rem 2.4rem;
  margin-bottom: 2.4rem;
  position: relative;
  cursor: pointer;
}
.p-aws-service-menu__banner::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../img/service/icon_toggle_w.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 3.2rem;
  top: calc(50% - 2rem);
}

.p-aws-service-menu__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.4rem;
}
.p-aws-service-menu__summary .figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14rem;
  height: 14rem;
  background-color: #7047A1;
  border-radius: 0.4rem;
}
.p-aws-service-menu__summary .figure img {
  width: 5rem;
  height: 5rem;
}
.p-aws-service-menu__summary .figure figcaption.en {
  font-size: 1.2rem;
  font-weight: var(--font-weight-semiBold);
  margin-top: 0.8rem;
}
.p-aws-service-menu__summary .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: -0.8rem;
}
.p-aws-service-menu__summary .content .name {
  font-size: 2.4rem;
  line-height: 1.45;
  font-weight: var(--font-weight-bold);
}
.p-aws-service-menu__summary .content p {
  margin-top: 1rem;
}

.p-aws-service-menu__theme {
  background-color: #121212;
  padding: 1.6rem 2.4rem 2.4rem 2.4rem;
  margin-top: 2.4rem;
}
.p-aws-service-menu__theme dt {
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  color: #7047A1;
  margin-bottom: 0.8rem;
}
.p-aws-service-menu__theme dd {
  margin-top: 0.4rem;
  padding-left: 2.4rem;
  position: relative;
  font-size: 1.4rem;
}
.p-aws-service-menu__theme dd::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../img/service/icon_checked.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.p-aws-service-menu_popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  max-width: 640px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--black-color);
  padding: 4rem;
  border-radius: 0.6rem;
}
.p-aws-service-menu_popup.active {
  opacity: 1;
  visibility: visible;
}
.p-aws-service-menu_popup .button-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4rem;
  height: 4rem;
  position: absolute;
  z-index: 100;
  top: 2.4rem;
  right: 2.4rem;
  background: url(../img/service/icon_toggle_w.svg) no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}

body.is_popup-open {
  overflow: hidden;
}
body.is_popup-open::after {
  content: "";
  display: block;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100dvw;
  height: 100dvh;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-aws-service-menu__banner {
    padding: 2rem 8rem 2rem 2rem;
  }
  .p-aws-service-menu__banner::after {
    right: 2rem;
  }
  .p-aws-service-menu__summary .content .name {
    font-size: 2rem;
  }
  .p-aws-service-menu__summary .figure {
    width: 12rem;
  }
}
@media (max-width: 767px) {
  .p-aws-service-menu {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .p-aws-service-menu .container {
    width: 92%;
  }
  .p-aws-service-menu__head {
    margin-bottom: 6rem;
  }
  .p-aws-service-menu__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-aws-service-menu__group {
    width: 100%;
  }
  .p-aws-service-menu__banner {
    padding: 2.8rem 5rem 2.8rem 1.6rem;
    margin-bottom: 1rem;
  }
  .p-aws-service-menu__banner::after {
    width: 2.8rem;
    height: 2.8rem;
    right: 1.2rem;
    top: calc(50% - 1.5rem);
  }
  .p-aws-service-menu__summary {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0 1.6rem;
  }
  .p-aws-service-menu__summary .content {
    margin-top: 0;
  }
  .p-aws-service-menu__summary .content .name {
    font-size: 1.6rem;
  }
  .p-aws-service-menu__summary .content p {
    font-size: 1.2rem;
  }
  .p-aws-service-menu__summary .figure {
    width: 9rem;
    height: 9rem;
  }
  .p-aws-service-menu__summary .figure img {
    width: 4rem;
    height: 4rem;
  }
  .p-aws-service-menu__summary .figure figcaption.en {
    font-size: 1rem;
    margin-top: 0.4rem;
  }
  .p-aws-service-menu_popup {
    padding: 7.2rem 1.6rem 2.4rem 1.6rem;
  }
  .p-aws-service-menu_popup .button-close {
    width: 3.4rem;
    height: 3.4rem;
    top: 1.4rem;
    right: 1.4rem;
  }
  .p-aws-service-menu__theme {
    padding: 1.6rem 1.4rem;
  }
  .p-aws-service-menu__theme dt {
    font-size: 1.5rem;
  }
  .p-aws-service-menu__theme dd {
    font-size: 1.2rem;
  }
  .p-aws-service-menu__theme dd::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.p-aws-service-certification {
  background-color: #333;
  color: #fff;
  padding: 4rem 2.4rem;
}
.p-aws-service-certification .apn-badge {
  margin-bottom: 3.2rem;
}
.p-aws-service-certification .certification-badge .name {
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.6rem;
}
.p-aws-service-certification .certification-badge figure {
  display: block;
}
.p-aws-service-certification__note {
  color: #333333;
  font-size: 1.1rem;
  text-align: right;
  margin-top: 0.4rem;
}

@media (max-width: 767px) {
  .p-aws-service-certification {
    padding: 2.4rem;
  }
  .p-aws-service-certification .certification-badge .name {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .p-aws-service-menu__head .title .jp {
    font-size: 1.2rem;
  }
  .p-aws-service-menu__head .title .en {
    font-size: 3rem;
  }
}
.p-service-case-num {
  background-color: #333333;
  color: #fff;
  padding: 2.4rem;
}

.p-service-case-num__head {
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.6rem;
}

.p-service-case-num__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

.p-service-case-num__card {
  background-color: var(--black-color);
  color: #fff;
  width: 50%;
  padding: 2.4rem 2.4rem 1.6rem 2.4rem;
  line-height: 1;
}
.p-service-case-num__card .name {
  font-weight: var(--font-weight-semiBold);
  margin-bottom: 1.6rem;
}
.p-service-case-num__card .data {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.p-service-case-num__card .data .number {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8rem;
}
.p-service-case-num__card .data .unit {
  font-size: 1.8rem;
  font-weight: var(--font-weight-semiBold);
}

.p-service-case-num__note {
  color: #333333;
  font-size: 1.1rem;
  text-align: right;
  margin-top: 0.4rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-service-case-num {
    padding: 2rem;
  }
  .p-service-case-num__card {
    padding: 2.4rem 2rem 1.6rem 2rem;
  }
  .p-service-case-num__card .data .number {
    font-size: 7.2rem;
  }
  .p-service-case-num__card .data .unit {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-service-case-num {
    padding: 1.6rem 1.6rem 2rem 1.6rem;
  }
  .p-service-case-num__head {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .p-service-case-num__card {
    padding: 2rem 1.6rem;
  }
  .p-service-case-num__card .name {
    font-size: 1.1rem;
  }
  .p-service-case-num__card .data .number {
    font-size: 5.6rem;
  }
  .p-service-case-num__card .data .unit {
    font-size: 1.4rem;
  }
}
.p-blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 4rem;
  border: 6px solid #EEEEEE;
  padding: 2.4rem;
}
.p-blog-card .p-blog-card__visual {
  width: 24rem;
}
.p-blog-card .p-blog-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-blog-card .p-blog-card__content .title {
  font-weight: var(--font-weight-bold);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1.6rem;
}
.p-blog-card .p-blog-card__content .summary {
  font-size: 1.4rem;
  line-height: 1.65;
}

.p-topic-card {
  opacity: 1;
}
.p-topic-card a {
  display: block;
  background-color: #fff;
  border-radius: 0.5rem;
  width: 35rem;
  padding: 2rem 2.4rem 2.8rem 2.4rem;
  position: fixed;
  bottom: 4rem;
  right: 2.4rem;
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.4);
}
.p-topic-card a .meta {
  line-height: 1;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 1.6rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.p-topic-card a .meta .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family-en);
  font-size: 1.3rem;
  color: #888888;
  font-weight: var(--font-weight-semiBold);
}
.p-topic-card a .meta .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.8rem;
}
.p-topic-card a .meta .category span {
  display: inline-block;
  background-color: var(--black-color);
  color: #ffffff;
  padding: 0.6rem 1rem 0.8rem 1rem;
  font-weight: var(--font-weight-semiBold);
  letter-spacing: 0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.p-topic-card a .title {
  font-size: 1.3rem;
  line-height: 1.65;
  font-weight: var(--font-weight-medium);
}

body:not(.is_opening_done) .p-topic-card {
  opacity: 0;
}

@media (max-width: 767px) {
  .p-topic-card a {
    width: 90%;
    padding: 2rem 2rem 2.8rem 2rem;
    bottom: 1.6rem;
    right: 5%;
    left: 5%;
  }
  .p-topic-card a .meta .date {
    font-size: 1.2rem;
  }
  .p-topic-card a .meta .category span {
    font-size: 1.1rem;
  }
  .p-topic-card a .title {
    font-size: 1.2rem;
  }
}
.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes allowAnime {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  49% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes allowAnime {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  49% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: hidden;
  }
  52% {
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}

.hide-mobile-inline {
  display: inline-block;
}

@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */