<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&amp;family=Noto+Sans+JP:wght@400;500;700&amp;family=Oswald:wght@500&amp;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: #3B4043;
  --main-color: #003884;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto", sans-serif;
  --font-family-number: "Oswald", sans-serif;
  --font-size-base-pc: 1.8rem;
  --font-size-base-sp: 1.5rem;
  --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: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1919px) {
  html {
    font-size: calc(34% + 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: 1.75;
  letter-spacing: 0.01em;
  font-weight: var(--font-weight-medium);
  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.is-fixed {
  overflow: hidden;
  height: 100%;
}

.en {
  font-family: var(--font-family-en);
}

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;
}

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}
@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100vw;
  height: 12rem;
  background-color: rgb(255, 255, 255);
}

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

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

.inner {
  width: 93.75%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}

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

.container {
  max-width: 1740px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .container {
    width: 84%;
  }
}
.l-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-product.container {
  max-width: 1380px;
  width: 88%;
}

.l-product__navi {
  width: 30%;
  max-width: 31rem;
  margin-right: 8%;
}

.l-product__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 767px) {
  .l-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .l-product__navi {
    width: 100%;
    max-width: initial;
    margin-right: initial;
    margin-top: 8rem;
  }
}
.c-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  line-height: 1;
  border-radius: 10rem;
  padding: 1.8rem;
  background-color: #fff;
  width: 15.5rem;
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 700;
}
.c-btn:hover {
  background-color: var(--main-color);
  color: #fff;
}
.c-btn.blue {
  background-color: var(--main-color);
  color: #fff;
}
.c-btn.blue:hover {
  background-color: #fff;
  color: var(--main-color);
}

.c-btn-border {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  line-height: 1;
  border-radius: 10rem;
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
}
.c-btn-border .icon,
.c-btn-border img {
  width: 3rem;
}
.c-btn-border span {
  margin-left: 0.4rem;
}
.c-btn-border:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.c-btn-allow {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  line-height: 1;
  border-radius: 10rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  width: 7rem;
  height: 7rem;
  border: 1px solid #fff;
  color: #fff;
  position: relative;
}
.c-btn-allow::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icon_button_allow.svg) no-repeat center/contain;
  position: relative;
  z-index: 1;
  margin-bottom: 0.1rem;
}
.c-btn-allow::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 10rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-btn-allow:hover::after {
  background: url(../img/common/icon_button_allow_b.svg) no-repeat center/contain;
}
.c-btn-allow:hover::before {
  width: 100%;
  height: 100%;
}
.c-btn-allow.blue {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.c-btn-allow.blue::before {
  background-color: var(--main-color);
}
.c-btn-allow.blue::after {
  background: url(../img/common/icon_button_allow_b.svg) no-repeat center/contain;
}
.c-btn-allow.blue:hover::after {
  background: url(../img/common/icon_button_allow.svg) no-repeat center/contain;
}

@media (max-width: 767px) {
  .c-btn-allow {
    width: 5.2rem;
    height: 5.2rem;
  }
  .c-btn-allow::after {
    width: 1.2rem;
    height: 1.2rem;
  }
  .c-btn-border:hover {
    background-color: initial;
    border-color: initial;
  }
}
.input-text {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #CDD6DD;
  font-size: 1.6rem;
}
.input-text::-webkit-input-placeholder {
  color: #CDD6DD;
}
.input-text::-moz-placeholder {
  color: #CDD6DD;
}
.input-text:-ms-input-placeholder {
  color: #CDD6DD;
}
.input-text::-ms-input-placeholder {
  color: #CDD6DD;
}
.input-text::placeholder {
  color: #CDD6DD;
}

.input-textarea {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #CDD6DD;
  font-size: 1.6rem;
}
.input-textarea::-webkit-input-placeholder {
  color: #CDD6DD;
}
.input-textarea::-moz-placeholder {
  color: #CDD6DD;
}
.input-textarea:-ms-input-placeholder {
  color: #CDD6DD;
}
.input-textarea::-ms-input-placeholder {
  color: #CDD6DD;
}
.input-textarea::placeholder {
  color: #CDD6DD;
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #fff;
  vertical-align: middle;
  padding: 1.6rem 2.4rem 1.6rem 1.6rem;
  border: 1px solid #CDD6DD;
  outline: 0;
  font-size: 1.6rem;
  text-overflow: ellipsis;
  width: 100%;
  cursor: pointer;
}

.input-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 4rem;
}

@media (max-width: 767px) {
  .input-text {
    padding: 1.4rem 0.5rem;
  }
}
.c-bread-crumb {
  font-size: 1.3rem;
}
.c-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 2rem 0;
  line-height: 1;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 1380px;
  width: 88%;
}
.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: 1.8rem;
}
.c-bread-crumb ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 1.4rem;
  height: 1px;
  border-bottom: 1px solid var(--text-color);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-bread-crumb ul li a {
  padding-right: 1.8rem;
  text-decoration: none;
}
.c-bread-crumb ul li span {
  padding-left: 1.8rem;
}

.none-visual .c-bread-crumb {
  margin-bottom: 6.4rem;
}
.none-visual .c-bread-crumb .container {
  border-bottom: 1px solid #CDD6DD;
}

@media (max-width: 767px) {
  .c-bread-crumb {
    font-size: 1rem;
  }
}
.p-header {
  width: 94%;
  height: 12rem;
  margin-left: auto;
  margin-right: auto;
  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__logo a {
  display: block;
  width: 26rem;
  height: 6.5rem;
  background: url(../img/common/logo_w.png) no-repeat center;
  background-size: 100% auto;
}

.p-header__navi-logo {
  display: none;
}

.p-header__navi-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__gnavi {
  margin-right: 4.8rem;
}
.p-header__gnavi.p-gnavi .parent li a {
  font-size: 2.2rem;
  margin-bottom: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.p-header__gnavi.p-gnavi .parent li a::before, .p-header__gnavi.p-gnavi .parent li a::after {
  display: none;
}
.p-header__gnavi.p-gnavi .parent li a:hover span {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.p-header__gnavi.p-gnavi .parent li a span {
  display: inline-block;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.p-header__gnavi.p-gnavi .parent li a span::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
}
.p-header__gnavi.p-gnavi .child {
  display: none;
}

.p-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-header__contact a:not(:last-of-type) {
  margin-right: 1.6rem;
}
.p-header__contact a.tel {
  display: none;
}
.p-header__contact a .icon {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-header__contact a .icon.tel {
  background-image: url(../img/common/icon_tel.svg);
}
.p-header__contact a .icon.mail {
  background-image: url(../img/common/icon_mail_b.svg);
  margin-right: 0.3rem;
}
.p-header__contact a:hover .icon.tel {
  background-image: url(../img/common/icon_tel.svg);
}
.p-header__contact a:hover .icon.mail {
  background-image: url(../img/common/icon_mail.svg);
}
.p-header__contact a:hover.c-btn {
  border-color: var(--main-color);
}
.p-header__contact a.c-btn {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: 1px solid #fff;
  width: 16rem;
  padding: 1.5rem 2rem;
}
.p-header__contact a.c-btn-border span {
  display: none;
}

.p-header__link,
.p-header__contact-sp {
  display: none;
}

.firstview_scroll .p-header .p-header__logo a,
.none-visual .p-header .p-header__logo a {
  background-image: url(../img/common/logo_b.png);
}
.firstview_scroll .p-header .c-btn-border,
.none-visual .p-header .c-btn-border {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.firstview_scroll .p-header .c-btn-border .icon.tel,
.none-visual .p-header .c-btn-border .icon.tel {
  background-image: url(../img/common/icon_tel_b.svg);
}
.firstview_scroll .p-header .c-btn,
.none-visual .p-header .c-btn {
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: #fff;
}
.firstview_scroll .p-header .c-btn .icon.mail,
.none-visual .p-header .c-btn .icon.mail {
  background-image: url(../img/common/icon_mail.svg);
}
.firstview_scroll .p-header .c-btn:hover,
.none-visual .p-header .c-btn:hover {
  background-color: #fff;
  color: var(--main-color);
}
.firstview_scroll .p-header .c-btn:hover .icon.mail,
.none-visual .p-header .c-btn:hover .icon.mail {
  background-image: url(../img/common/icon_mail_b.svg);
}
.firstview_scroll .p-header__gnavi.p-gnavi .parent li a,
.none-visual .p-header__gnavi.p-gnavi .parent li a {
  color: var(--main-color);
}

@media (min-width: 768px) and (max-width: 1100px) {
  .p-header__logo a {
    width: 19rem;
  }
  .p-header__gnavi {
    margin-right: 4rem;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li:not(:last-of-type) {
    margin-right: 2.4rem;
  }
  .p-header__gnavi.p-gnavi .parent li a {
    font-size: 1.6rem;
  }
  .p-header__contact a.c-btn {
    font-size: 1.4rem;
    width: 13rem;
    padding: 1rem 1.4rem;
  }
}
@media (max-width: 767px) {
  .p-header {
    width: 90%;
    height: 9rem;
  }
  .p-header .p-header__logo a {
    width: 50px;
    height: 50px;
    background-image: url(../img/common/logo_mark_w.png);
  }
  .p-header__navi-wrap {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(44, 45, 46, 0.9);
    -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: 5rem 6% 4rem 6%;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .p-header__navi-wrap .p-header__logo {
    display: none;
  }
  .p-header__navi-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20rem;
    margin-bottom: 4.8rem;
  }
  .p-header__navi-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-header__navi-logo a img {
    width: 100%;
  }
  .p-header__gnavi {
    margin-right: 0;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li .child &gt; li {
    margin-bottom: 0.6rem;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li.office {
    display: block;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li.office &gt; a {
    margin-bottom: 0;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li.office, .p-header__gnavi.p-gnavi .parent &gt; li.about, .p-header__gnavi.p-gnavi .parent &gt; li.recruit {
    width: 100%;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li.office .child, .p-header__gnavi.p-gnavi .parent &gt; li.about .child, .p-header__gnavi.p-gnavi .parent &gt; li.recruit .child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li.office .child &gt; li, .p-header__gnavi.p-gnavi .parent &gt; li.about .child &gt; li, .p-header__gnavi.p-gnavi .parent &gt; li.recruit .child &gt; li {
    width: 50%;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li &gt; a {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li &gt; a::before, .p-header__gnavi.p-gnavi .parent &gt; li &gt; a::after {
    display: block;
  }
  .p-header__gnavi.p-gnavi .parent &gt; li &gt; a:hover span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-header__gnavi.p-gnavi .parent &gt; li &gt; a span::after {
    display: none;
  }
  .p-header__gnavi.p-gnavi .child {
    display: block;
  }
  .p-header__gnavi.p-gnavi .child li a {
    font-size: 1.6rem;
  }
  .p-header__contact {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-header__contact a {
    margin-right: 0 !important;
  }
  .p-header__contact a.c-btn-border span {
    display: block;
  }
  .p-header__contact {
    margin-top: 2rem;
  }
  .p-header__contact a {
    width: 48%;
  }
  .p-header__contact a.tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-header__contact a.entry {
    display: none;
  }
  .p-header__contact-sp {
    position: fixed;
    top: 20px;
    right: 70px;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1rem;
  }
  .p-header__contact-sp .c-btn-border {
    width: 4.2rem;
    height: 4.2rem;
    padding: 0.7rem;
    margin-right: 1rem;
  }
  .p-header__contact-sp .c-btn-border .icon {
    width: 4.2rem;
    height: 4.2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .p-header__contact-sp .c-btn-border .icon.tel {
    background-image: url(../img/common/icon_tel.svg);
  }
  .p-header__contact-sp .c-btn-border .icon.mail {
    background-image: url(../img/common/icon_mail.svg);
  }
  .p-header__link {
    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: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-top: 2.4rem;
  }
  .p-header__link a {
    display: inline;
    color: #fff;
    font-size: 1.2rem;
  }
  .p-header__link a:first-of-type {
    margin-bottom: 0.5rem;
  }
  .menu-open .p-header__navi-wrap {
    -webkit-transform: scale(1);
            transform: scale(1);
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow-y: scroll;
  }
  .menu-open .p-header__contact-sp {
    z-index: -1;
  }
  .menu-open .p-header__contact a.show-mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .menu-open .p-header__contact a.c-btn {
    background-color: initial;
    color: #fff;
    border-color: #fff;
    font-size: 1.5rem;
    padding: 0.6rem 1rem 0.8rem 1rem;
    width: 48%;
  }
  .menu-open .p-header__contact a.c-btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
  }
  .menu-open .p-header__contact a .icon.mail {
    background-image: url(../img/common/icon_mail.svg);
    margin-right: 0.3rem;
  }
  .firstview_scroll .p-header .p-header__logo a,
  .none-visual .p-header .p-header__logo a {
    background-image: url(../img/common/logo_mark_b.png);
  }
  .firstview_scroll .p-header .c-btn-border,
  .none-visual .p-header .c-btn-border {
    background-color: initial;
    border-color: #fff;
    color: #fff;
  }
  .firstview_scroll .p-header .c-btn-border .icon.tel,
  .none-visual .p-header .c-btn-border .icon.tel {
    background-image: url(../img/common/icon_tel.svg);
  }
  .firstview_scroll .p-header .c-btn-border .icon.mail,
  .none-visual .p-header .c-btn-border .icon.mail {
    background-image: url(../img/common/icon_mail.svg);
  }
  .firstview_scroll .p-header__contact-sp .c-btn-border,
  .none-visual .p-header__contact-sp .c-btn-border {
    border-color: var(--main-color);
  }
  .firstview_scroll .p-header__contact-sp .c-btn-border .icon.tel,
  .none-visual .p-header__contact-sp .c-btn-border .icon.tel {
    background-image: url(../img/common/icon_tel_b.svg);
  }
  .firstview_scroll .p-header__contact-sp .c-btn-border .icon.mail,
  .none-visual .p-header__contact-sp .c-btn-border .icon.mail {
    background-image: url(../img/common/icon_mail_b.svg);
  }
  .firstview_scroll .p-header__gnavi.p-gnavi .parent li a,
  .none-visual .p-header__gnavi.p-gnavi .parent li a {
    color: #fff;
  }
}
.p-footer {
  background-color: #3B4043;
  color: #fff;
  padding: 6rem 0 6rem 0;
}
.p-footer a {
  color: #fff;
}

.p-footer__content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__logo {
  width: 31rem;
  margin-right: 2rem;
}
.p-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-footer__logo a img {
  width: 100%;
}

.p-footer__contact {
  display: none;
}

.p-footer__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-footer__navi .p-gnavi {
  padding-bottom: 4.8rem;
}
.p-footer__navi .p-gnavi .parent &gt; li.office {
  display: none;
}

.p-footer__link {
  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: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 0.3rem;
  margin-left: 10rem;
}
.p-footer__link a {
  display: inline-block;
  font-size: 1.2rem;
}

.p-footer__copyright {
  padding-top: 0.4rem;
  margin-left: 11rem;
}
.p-footer__copyright .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 1.2rem;
  font-family: var(--font-family-en);
}

.p-footer__gotop {
  display: block;
  opacity: 0;
  visibility: hidden;
  width: 7rem;
  height: 7rem;
  background: url(../img/common/icon_gotop.svg) no-repeat center;
  background-size: contain;
  position: fixed;
  right: 3%;
  bottom: 60px;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.p-footer__gotop:hover {
  opacity: 0.5;
}

.is_scrolled .p-footer__gotop {
  opacity: 1;
  visibility: visible;
}

.gotop_fixed .p-footer__gotop {
  position: absolute;
  top: 60px;
  bottom: initial;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-footer__logo {
    width: 24rem;
    margin-right: 0;
  }
  .p-footer__link {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .p-footer {
    padding: 60px 0 4rem 0;
  }
  .p-footer__content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-footer__logo {
    width: 22rem;
    margin-right: 0;
    margin-bottom: 6.4rem;
    padding-left: 1.4rem;
  }
  .p-footer__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 1.6rem;
  }
  .p-footer__contact &gt; a {
    width: 48%;
  }
  .p-footer__navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-footer__navi .p-gnavi {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    padding-bottom: 2.4rem;
  }
  .p-footer__navi .p-gnavi .parent &gt; li.about, .p-footer__navi .p-gnavi .parent &gt; li.recruit {
    width: 100%;
  }
  .p-footer__navi .p-gnavi .parent &gt; li.about .child, .p-footer__navi .p-gnavi .parent &gt; li.recruit .child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-footer__navi .p-gnavi .parent &gt; li.about .child &gt; li, .p-footer__navi .p-gnavi .parent &gt; li.recruit .child &gt; li {
    width: 50%;
  }
  .p-footer__link {
    margin-top: 4rem;
  }
  .p-footer__link a {
    font-size: 1.2rem;
    margin-left: auto;
  }
  .p-footer__copyright {
    padding-top: 1rem;
    margin-left: auto;
    text-align: right;
  }
  .p-footer__gotop {
    width: 50px;
    height: 50px;
    right: 6%;
    bottom: 50px;
  }
  .gotop_fixed .p-footer__gotop {
    top: 50px;
  }
}
body.no_scroll {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.p-loading {
  width: 100vw;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.p-loading__image {
  width: 100vw;
  height: 100svh;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.p-loading__image::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-loading__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-loading__copy {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.p-loading__copy img {
  width: 100%;
  height: auto;
}

.is_loaded .p-loading__image {
  opacity: 1;
}
.is_loaded .p-loading__copy {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  opacity: 1;
}

.is_load_animated .p-loading {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.page-top .p-loading {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.page-top .p-loading__image {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.page-top .p-loading__copy {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.page-top.is_load_animated .p-loading__image {
  opacity: 0 !important;
}
.page-top.is_load_animated .p-loading__copy {
  opacity: 0 !important;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-loading__copy {
    top: 40%;
  }
}
@media (max-width: 767px) {
  .p-top-visual {
    min-height: initial;
  }
  .p-loading__copy {
    width: 50%;
    top: 36%;
  }
}
.p-gnavi a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gnavi .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gnavi .parent &gt; li:not(:last-of-type) {
  margin-right: 3.2rem;
}
.p-gnavi .parent &gt; li &gt; a {
  font-weight: 600;
  margin-bottom: 2.4rem;
  position: relative;
  padding-bottom: 1.3rem;
}
.p-gnavi .parent &gt; li &gt; a::before, .p-gnavi .parent &gt; li &gt; a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  height: 1px;
}
.p-gnavi .parent &gt; li &gt; a::after {
  width: 100%;
  opacity: 0.3;
}
.p-gnavi .parent &gt; li &gt; a::before {
  width: 2.4rem;
}
.p-gnavi .child &gt; li:not(:last-of-type) {
  margin-bottom: 1rem;
}
.p-gnavi .child &gt; li &gt; a {
  font-weight: 400;
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .p-gnavi .parent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-gnavi .parent &gt; li {
    width: 46%;
  }
  .p-gnavi .parent &gt; li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 2.6rem;
  }
  .p-gnavi .parent &gt; li &gt; a {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}
.p-menu-btn {
  display: none;
  position: fixed;
  top: 24px;
  right: 7%;
  z-index: 1001;
  width: 32px;
  height: 32px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-menu-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-menu-btn span {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  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: 8px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-menu-btn span.l2 {
  top: 16px;
}
.p-menu-btn span.l3 {
  top: 24px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-open .p-menu-btn span {
  background-color: #fff;
}
.menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
  top: 16px;
  left: 0;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
}
.menu-open .p-menu-btn span.l3 {
  -webkit-transform: rotate(-145deg);
          transform: rotate(-145deg);
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

.firstview_scroll .p-menu-btn span {
  background-color: var(--main-color);
}
.firstview_scroll.menu-open .p-menu-btn span {
  background-color: #fff;
}

@media (max-width: 767px) {
  .p-menu-btn {
    display: block;
  }
}
.p-top-visual {
  min-height: 77rem;
  position: relative;
  overflow: hidden;
}
.p-top-visual:before {
  content: "";
  display: block;
  width: 100vw;
  padding-top: 100svh;
}
.p-top-visual .swiper.p-top-visual__slide {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.p-top-visual .swiper.p-top-visual__slide .swiper-slide {
  position: relative;
}
.p-top-visual .swiper.p-top-visual__slide .swiper-slide .swiper-img {
  width: 100%;
  height: 100%;
}
.p-top-visual .swiper.p-top-visual__slide .swiper-slide .swiper-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top-visual .swiper.p-top-visual__slide .swiper-slide-active .swiper-img,
.p-top-visual .swiper.p-top-visual__slide .swiper-slide-duplicate-active .swiper-img,
.p-top-visual .swiper.p-top-visual__slide .swiper-slide-prev .swiper-img {
  -webkit-animation: swiperZoomUp 8s linear 0s normal both;
          animation: swiperZoomUp 8s linear 0s normal both;
}
.p-top-visual .swiper-pagination-fraction,
.p-top-visual .swiper-pagination-custom,
.p-top-visual .swiper-container-horizontal &gt; .swiper-pagination-bullets {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 4%;
  bottom: 6%;
}
.p-top-visual .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.p-top-visual .swiper-pagination-bullet-active {
  padding: 2px;
  outline: double 4px #fff;
}
.p-top-visual .swiper-container-horizontal &gt; .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

@-webkit-keyframes swiperZoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes swiperZoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-top-visual__copy {
  position: absolute;
  z-index: 3;
  left: 4%;
  top: 53%;
  width: 35%;
  min-width: 53rem;
}
.p-top-visual__copy img {
  width: 100%;
}

@media (max-width: 767px) {
  .p-top-visual {
    min-height: initial !important;
    height: 100svh;
  }
  .p-top-visual h2 {
    font-size: 2.8rem;
  }
  .p-top-visual .swiper-pagination-fraction,
  .p-top-visual .swiper-pagination-custom,
  .p-top-visual .swiper-container-horizontal &gt; .swiper-pagination-bullets {
    left: 50%;
    bottom: 3%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-top-visual__copy {
    left: 8%;
    top: 47%;
    width: 60%;
    min-width: initial;
  }
}
.p-top-about {
  background-color: var(--main-color);
  color: #fff;
  position: relative;
}
.p-top-about .container {
  width: 80%;
  padding-top: 20rem;
}

.p-top-about__heading {
  margin-bottom: 5.6rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-top-about__heading .en {
  display: block;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 5.5rem;
  margin-bottom: 1rem;
}
.p-top-about__heading .jp {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  margin-left: 2rem;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.p-top-about__content {
  position: relative;
  z-index: 1;
  padding: 0 0 17vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-about__content .summary p {
  font-size: 2rem;
}
.p-top-about__content .summary p:not(:last-of-type) {
  margin-bottom: 3rem;
}
.p-top-about__content nav {
  margin-top: 4vw;
}

.p-top-about__images {
  width: 107vw;
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  overflow: hidden;
}
.p-top-about__images picture {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.p-top-about__images picture:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 55%;
}
.p-top-about__images picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-top-about .container {
    width: 86%;
    padding-top: 14rem;
  }
  .p-top-about__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-about__heading .en {
    font-size: 4rem;
  }
  .p-top-about__heading .jp {
    font-size: 1.4rem;
    margin-left: 0;
  }
  .p-top-about__content {
    padding: 0 0 78.5vw 0;
  }
  .p-top-about__content .summary p {
    font-size: 1.5rem;
  }
  .p-top-about__content nav {
    margin-top: auto;
    margin-bottom: 25vw;
  }
  .p-top-about__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .p-top-about__images picture {
    width: 80%;
  }
}
.p-top-recruit .item.recruit {
  width: 100vw;
}

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

.p-top-lineup__heading {
  font-size: 6.2rem;
  letter-spacing: -0.03em;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 2.4rem;
}

.p-top-lineup__navi {
  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-top-lineup__navi a {
  width: 32%;
  overflow: hidden;
  position: relative;
}
.p-top-lineup__navi a::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-top-lineup__navi a::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 70.1%;
}
.p-top-lineup__navi a &gt; div {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  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-lineup__navi a &gt; div .title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  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;
  position: relative;
  z-index: 1;
}
.p-top-lineup__navi a &gt; div .title .c-btn-allow {
  margin-left: 1.4rem;
}
.p-top-lineup__navi a &gt; div &gt; figure {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-top-lineup__navi a &gt; div &gt; figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 767px) {
  .p-top-lineup__navi a &gt; div .title {
    font-size: 2rem;
  }
}
.p-top-feature {
  margin-top: 18rem;
  margin-bottom: 12rem;
}

.p-top-feature__heading {
  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;
  color: var(--main-color);
  margin-bottom: 12rem;
}
.p-top-feature__heading .en {
  -webkit-transform: rotate(5deg) skew(0, -11deg);
          transform: rotate(5deg) skew(0, -11deg);
  letter-spacing: 0;
  font-size: 7rem;
  line-height: 1;
}
.p-top-feature__heading .jp {
  font-size: 2rem;
  font-weight: 500;
}

.p-top-feature__navi .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}
.p-top-feature__navi .item:before {
  content: "";
  display: block;
  width: 100vw;
  padding-top: 56.25%;
}
.p-top-feature__navi .item:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: rgba(90, 180, 255, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-top-feature__navi .item:nth-of-type(2):after {
  background-color: rgba(0, 102, 190, 0.75);
}
.p-top-feature__navi .item:nth-of-type(3):after {
  background-color: rgba(0, 62, 114, 0.75);
}
.p-top-feature__navi .item h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  color: #fff;
}
.p-top-feature__navi .item h3 .label {
  -webkit-transform: rotate(5deg) skew(0, -11deg);
          transform: rotate(5deg) skew(0, -11deg);
  border-bottom: 2px solid #fff;
  letter-spacing: -0.01em;
  font-size: 3rem;
  margin-bottom: 2.4rem;
}
.p-top-feature__navi .item h3 .number {
  font-size: 17rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-variant-numeric: tabular-nums;
}
.p-top-feature__navi .item h3 .summary {
  font-size: 3rem;
  font-weight: 400;
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
}
.p-top-feature__navi .item &gt; figure {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.p-top-feature__navi .item &gt; figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-top-feature {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
  .p-top-feature__heading {
    margin-bottom: 6rem;
  }
  .p-top-feature__heading .en {
    font-size: 3.6rem;
    margin-bottom: 0.4rem;
  }
  .p-top-feature__heading .jp {
    font-size: 1.4rem;
  }
  .p-top-feature__navi {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .p-top-feature__navi .item:before {
    padding-top: 110%;
  }
  .p-top-feature__navi .item h3 {
    width: 86%;
  }
  .p-top-feature__navi .item h3 .label {
    font-size: 1.7rem;
    margin-bottom: 1.8rem;
  }
  .p-top-feature__navi .item h3 .number {
    font-size: 9rem;
  }
  .p-top-feature__navi .item h3 .summary {
    font-size: 2.1rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 1.6rem;
    margin-bottom: 1rem;
  }
  .p-top-lineup__heading {
    font-size: 4rem;
  }
  .p-top-lineup__navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-lineup__navi a {
    width: 100%;
    height: 10rem;
    margin-bottom: 1.6rem;
  }
  .p-top-lineup__navi a .title {
    font-size: 2rem;
  }
  .p-top-lineup__navi a .c-btn-allow {
    width: 4rem;
    height: 4rem;
  }
  .p-top-lineup__navi a .c-btn-allow::after {
    width: 1rem;
    height: 1rem;
  }
  .p-top-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-banner .item {
    height: 20rem;
  }
  .p-top-banner .item .title .en {
    font-size: 2.7rem;
  }
  .p-top-banner .item .title .jp {
    font-size: 1.3rem;
  }
  .p-top-banner .item.career-route, .p-top-banner .item.interview {
    width: 100%;
    padding: 5rem 6%;
  }
  .p-top-banner .item.recruit .title .en {
    font-size: 3.2rem;
  }
}
.p-page-head {
  position: relative;
  overflow: hidden;
}
.p-page-head:before {
  content: "";
  display: block;
  width: 100vw;
  padding-top: 37.76%;
}
.p-page-head::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.p-page-head .title {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 1;
  color: #fff;
  line-height: 1.2;
  width: 88%;
  max-width: 1380rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-page-head .title .en {
  display: block;
  font-weight: 700;
  font-size: 5.5rem;
  margin-bottom: 0.4rem;
}
.p-page-head .title .jp {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
}
.p-page-head .title .jp.large {
  font-size: 2.7rem;
}
.p-page-head picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-page-head picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.none-visual .p-page-head:before {
  padding-top: 25%;
}
.none-visual .p-page-head::after {
  display: none;
}
.none-visual .p-page-head .title {
  margin-top: 2.4%;
  color: var(--base-color);
}

@media (max-width: 767px) {
  .p-page-head:before {
    padding-top: 76.9%;
  }
  .p-page-head .title .en {
    font-size: 3.9rem;
  }
  .p-page-head .title .jp {
    font-size: 1.3rem;
  }
  .none-visual .p-page-head:before {
    padding-top: 24rem;
  }
  .none-visual .p-page-head .title {
    margin-top: 5.6%;
  }
}
.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-bottom: 2rem;
}
.p-post-body h1 {
  font-size: 2.8rem;
}
.p-post-body h2 {
  font-size: 2.4rem;
}
.p-post-body h3 {
  font-size: 2rem;
}
.p-post-body h4 {
  font-size: 1.8rem;
}
.p-post-body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post-body p {
  margin-bottom: 4rem;
}
.p-post-body p.none-margin {
  margin-bottom: 0;
}
.p-post-body ul {
  margin-bottom: 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-bottom: 4rem;
}
.p-post-body .wp-block-image figcaption {
  font-size: 1.4rem;
  margin: 0.4rem 0 0 0;
}
.p-post-body .wp-block-media-text {
  font-size: 1.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 {
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote {
  overflow-wrap: break-word;
  margin-bottom: 4rem;
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote p {
  border-left: 2px solid var(--text-color);
  padding: 0 0 0 1.4rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.p-post-body .wp-block-quote cite {
  font-size: 1.2rem;
  padding: 0 0 0 2rem;
  color: #acacac;
}
.p-post-body .wp-block-table {
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
.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.has-nested-images figcaption {
  font-size: 1.2rem;
  margin: 0;
  position: relative !important;
  background: none !important;
  color: #000 !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.p-post-body .wp-block-verse {
  margin-bottom: 4rem;
}
.p-post-body .wp-block-buttons .wp-block-button {
  margin-bottom: 1rem;
}
.p-post-body .wp-block-button__link {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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: #fff;
  border: 2px solid #A0A0A0;
  color: var(--color-green);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 1.6rem 1.3rem 1.6rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-post-body .wp-block-button__link:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}
.p-post-body.container {
  max-width: 90rem;
}

/* 区切り線 */
.wp-block-separator {
  margin: 4rem 0;
  border: none !important;
  border-bottom: 1px solid #CDD6DD !important;
}

.page-feature .p-post-body.container {
  max-width: 138rem;
}

@media (max-width: 767px) {
  .p-post-body {
    /* 画像 */
    /* レイアウト */
  }
  .p-post-body .wp-block-image {
    margin-bottom: 4rem;
  }
  .p-post-body .wp-block-image.size-full {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.4rem;
    margin: 0.4rem 6% 0 6%;
  }
  .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-career-route {
  padding: 18rem 0 16rem 0;
}
.p-career-route .container {
  max-width: 127rem;
  width: 70%;
}
.p-career-route .container h2 {
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
}
.p-career-route .container figure {
  display: block;
  margin: 8rem 0 2rem 0;
}
.p-career-route .container figure img {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-career-route .container {
    width: 94%;
  }
}
@media (max-width: 767px) {
  .p-career-route {
    padding: 10rem 0 12rem 0;
  }
  .p-career-route .container {
    max-width: 127rem;
    width: 88%;
  }
  .p-career-route .container h2 {
    font-size: 2rem;
  }
  .p-career-route .container figure {
    width: 94vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -44vw;
    margin-right: -50vw;
    margin-top: 2rem;
    margin-bottom: 0;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  .p-career-route .container figure img {
    width: 110rem;
    height: auto;
  }
}
.p-career-story__head {
  position: relative;
  padding: 10rem 0 10rem 0;
  height: 44vw;
  min-height: 70rem;
}
.p-career-story__head .content {
  width: 84%;
  color: #fff;
  position: absolute;
  z-index: 1;
  left: 8%;
  bottom: 12%;
}
.p-career-story__head .content .label {
  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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 3.2rem;
}
.p-career-story__head .content .label .en {
  display: block;
  -webkit-transform: rotate(12deg) skew(0, -12deg);
          transform: rotate(12deg) skew(0, -12deg);
  letter-spacing: -0.02em;
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.p-career-story__head .content .label .jp {
  display: block;
  font-weight: 400;
}
.p-career-story__head .content .title {
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2.4rem;
}
.p-career-story__head picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-career-story__head picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-career-story__content {
  max-width: 112rem;
  width: 84%;
  margin: 12rem auto 10rem auto;
}

.p-career-story__block {
  min-height: 27rem;
  background-color: #E0E0E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-career-story__block:not(:last-of-type) {
  margin-bottom: 6rem;
}
.p-career-story__block:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/career/bg_allow.svg) no-repeat left top;
  background-size: 100% auto;
  position: absolute;
  bottom: -4.4rem;
  left: calc(50% + 2.5rem);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.p-career-story__block .period {
  width: 9rem;
  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;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1;
}
.p-career-story__block .period .number {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  margin-right: 0.4rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.p-career-story__block .content {
  font-size: 1.6rem;
  width: calc(100% - 9rem);
  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-career-story__block .image {
  width: 26%;
  max-width: 30rem;
  height: 100%;
}
.p-career-story__block .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-career-story__block .action {
  width: 74%;
  padding: 3rem;
  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-career-story__block .action .on {
  width: 58%;
  position: relative;
  background: url(../img/career/bg_on.svg) no-repeat left top;
  background-size: 32% auto;
  padding: 1rem 10% 0 2rem;
}
.p-career-story__block .action .on h4 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.p-career-story__block .action .on::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 13%;
  height: 30rem;
  background: url(../img/career/bg_slash.svg) no-repeat center top;
  background-size: contain;
}
.p-career-story__block .action .off {
  width: 40%;
  background: url(../img/career/bg_off.svg) no-repeat right bottom;
  background-size: 50% auto;
  padding: 6rem 0 2rem 0;
}
.p-career-story__block .action .off h4 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.p-career-story__block:first-of-type .period {
  background-color: #4091FF;
}

.p-career-story__block:nth-of-type(2) .period {
  background-color: #2D70CC;
}

.p-career-story__block:nth-of-type(3) .period {
  background-color: #1A54A2;
}

.p-career-story__block:nth-of-type(4) .period {
  background-color: #003884;
}

@media (max-width: 767px) {
  .p-career-story__head {
    height: 110vw;
    min-height: 43rem;
  }
  .p-career-story__head .content .label .en {
    font-size: 2.8rem;
  }
  .p-career-story__head .content .label .jp {
    font-size: 1rem;
  }
  .p-career-story__head .content .title {
    font-size: 2rem;
  }
  .p-career-story__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0.8rem 0.8rem 0 0;
  }
  .p-career-story__block:not(:last-of-type) {
    margin-bottom: 8rem;
  }
  .p-career-story__block:not(:last-of-type)::after {
    left: 50%;
    bottom: -5.4rem;
  }
  .p-career-story__block .period {
    width: 100%;
    padding: 2.6rem 0 3rem 0;
    border-radius: 0.8rem 0.8rem 0 0;
    font-size: 2rem;
  }
  .p-career-story__block .content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    font-size: 1.5rem;
  }
  .p-career-story__block .image {
    width: 100%;
    max-width: initial;
    height: 100%;
  }
  .p-career-story__block .action {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-career-story__block .action .on {
    width: 100%;
    background-size: 57% auto;
    padding: 2rem 0 2rem 0;
  }
  .p-career-story__block .action .on::after {
    right: 0;
    top: initial;
    bottom: 0;
    width: 30rem;
    height: 3rem;
    background: url(../img/career/bg_slash_sp.svg) no-repeat right bottom/contain;
  }
  .p-career-story__block .action .off {
    width: 100%;
    background-position: right top;
    padding: 2rem 0 2rem 0;
    margin-top: 2.4rem;
  }
}
.p-goal-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 112rem;
  width: 90%;
  margin: 12rem auto 10rem auto;
}
.p-goal-banner.single {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8rem;
}
.p-goal-banner a {
  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;
  width: 48%;
  height: 23rem;
  color: #fff;
  line-height: 1;
}
.p-goal-banner a .en {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.p-goal-banner a .jp {
  font-weight: 400;
}
.p-goal-banner a.contact {
  background-color: #1356B1;
}
.p-goal-banner a.entry {
  background-image: linear-gradient(45deg, rgb(40, 202, 255), rgb(0, 97, 229));
}

@media (max-width: 767px) {
  .p-goal-banner {
    margin: 10rem auto 5rem auto;
    width: 84%;
  }
  .p-goal-banner a {
    width: 49%;
    height: 14rem;
  }
  .p-goal-banner a .en {
    font-size: 2.2rem;
  }
  .p-goal-banner a .jp {
    font-size: 1.2rem;
  }
  .p-goal-banner.single a {
    width: 100%;
  }
}
.p-feature .p-feature-container {
  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-feature:first-of-type {
  margin-top: 14rem;
}
.p-feature:nth-of-type(even) .p-feature-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-feature:nth-of-type(even) .p-feature__image picture.large {
  margin: 0 auto 3.2rem 0;
}
.p-feature:nth-of-type(even) .p-feature__image picture.small {
  margin: 0 0 0 auto;
}
.p-feature:nth-of-type(even) .p-feature__content {
  padding-right: 0;
  padding-left: 5%;
}
.p-feature:not(:last-of-type) {
  margin-bottom: 4rem;
}

.p-feature__image {
  width: 55%;
}
.p-feature__image picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-feature__image picture.large {
  width: 86%;
  margin: 0 0 3.2rem auto;
}
.p-feature__image picture.small {
  width: 60%;
  margin: 0 auto 0 0;
}
.p-feature__image picture img {
  width: 100%;
}

.p-feature__content {
  width: 38%;
  padding-right: 5%;
}
.p-feature__content .heading {
  color: var(--main-color);
}
.p-feature__content .heading .en {
  display: inline-block;
  -webkit-transform: rotate(5deg) skew(0, -11deg);
          transform: rotate(5deg) skew(0, -11deg);
  border-bottom: 2px solid var(--main-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.p-feature__content .heading .title {
  line-height: 1.4;
  font-size: 3rem;
  margin-bottom: 2.4rem;
}
.p-feature__content .summary {
  text-align: justify;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-feature .p-feature-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-feature:first-of-type {
    margin-top: 6rem;
  }
  .p-feature:not(:last-of-type) {
    margin-bottom: 8rem;
  }
  .p-feature:nth-of-type(even) .p-feature-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-feature:nth-of-type(even) .p-feature__image picture.large {
    margin: 0 auto 1.6rem 0;
  }
  .p-feature:nth-of-type(even) .p-feature__content {
    padding-left: 0;
  }
  .p-feature__image {
    width: 100vw;
    margin-top: 3.2rem;
  }
  .p-feature__image picture.large {
    width: 94%;
    margin: 0 0 1.6rem auto;
  }
  .p-feature__content {
    width: 100%;
    padding-right: 0;
  }
  .p-feature__content .heading .en {
    margin-bottom: 3.2rem;
  }
  .p-feature__content .heading .title {
    line-height: 1.4;
    font-size: 2.2rem;
    margin-bottom: 2.8rem;
  }
}
.p-profile {
  font-weight: 400;
}
.p-profile .name {
  line-height: 1;
  margin-bottom: 0.6rem;
}
.p-profile .name .en {
  font-size: 1.4rem;
}
.p-profile .name .jp {
  font-size: 2rem;
  font-weight: 500;
  margin-right: 0.8rem;
}
.p-profile .division {
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .p-profile .name .en {
    font-size: 1rem;
  }
  .p-profile .name .jp {
    font-size: 1.6rem;
  }
  .p-profile .division {
    font-size: 1.2rem;
  }
}
.p-interview__introduction {
  margin-top: 16rem;
  margin-bottom: 6.4rem;
}
.p-interview__introduction p {
  font-size: 2rem;
  text-align: center;
}

.p-interview__navi {
  width: 84%;
  max-width: 73rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16rem;
}
.p-interview__navi .item {
  width: 50%;
  max-width: 34rem;
}
.p-interview__navi .item:first-of-type {
  margin-right: 4rem;
}
.p-interview__navi .item .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.4rem;
}
.p-interview__navi .item .image picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-interview__navi .item .image picture img {
  width: 100%;
  height: auto;
}
.p-interview__navi .item .number {
  margin-bottom: 0.6rem;
  font-family: var(--font-family-number);
  font-size: 3.6rem;
  line-height: 1;
  color: #003884;
}
.p-interview__navi .item .profile {
  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-interview__navi .item .profile .p-profile .name {
  margin-top: 0.6rem;
}

.p-interview__post:not(:last-of-type) {
  margin-bottom: 18rem;
}

.p-interview__post-head {
  position: relative;
  height: 44vw;
  min-height: 70rem;
}
.p-interview__post-head .content {
  width: 90%;
  color: #fff;
  position: absolute;
  z-index: 1;
  right: 5%;
  bottom: 12%;
  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: end;
      -ms-flex-align: end;
          align-items: end;
  text-align: right;
}
.p-interview__post-head .content .number {
  position: absolute;
  left: 0;
  bottom: 1rem;
  font-family: var(--font-family-number);
  font-size: 16rem;
  line-height: 1;
}
.p-interview__post-head .content .title {
  width: 80%;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 3.2rem;
}
.p-interview__post-head .content .p-profile {
  margin-right: 3rem;
}
.p-interview__post-head picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-interview__post-head picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-interview__post-block .container {
  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-interview__post-block:first-of-type {
  margin-top: 14rem;
}
.p-interview__post-block:not(:last-of-type) {
  margin-bottom: 14rem;
}
.p-interview__post-block:nth-of-type(even) .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-interview__post-block:nth-of-type(even) .p-interview__post-block__image picture.large {
  margin: 0 auto 3.2rem 0;
}
.p-interview__post-block:nth-of-type(even) .p-interview__post-block__image picture.small {
  margin: 0 0 0 auto;
}
.p-interview__post-block:nth-of-type(even) .p-interview__post-block__content {
  padding-right: 0;
  padding-left: 5%;
}

.p-interview__post-block__image {
  width: 55%;
}
.p-interview__post-block__image picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-interview__post-block__image picture.large {
  width: 90%;
  margin: 0 0 3.2rem auto;
}
.p-interview__post-block__image picture.small {
  width: 50%;
  margin: 0 auto 0 0;
}
.p-interview__post-block__image picture img {
  width: 100%;
}
.p-interview__post-block__image.type-a picture.large, .p-interview__post-block__image.type-c picture.large {
  margin-bottom: 0;
}

.p-interview__post-block__content {
  width: 38%;
  padding-right: 5%;
}
.p-interview__post-block__content .heading .title {
  line-height: 1.4;
  font-size: 3rem;
  margin-bottom: 2.4rem;
}
.p-interview__post-block__content .summary {
  text-align: justify;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-interview__introduction {
    margin-top: 10rem;
  }
  .p-interview__introduction p {
    font-size: 1.5rem;
  }
  .p-interview__navi {
    margin-bottom: 10rem;
  }
  .p-interview__navi .item {
    max-width: initial;
    width: 46%;
  }
  .p-interview__navi .item:first-of-type {
    margin-right: 2rem;
  }
  .p-interview__navi .item .number {
    margin-bottom: 1.2rem;
  }
  .p-interview__navi .item .profile {
    position: relative;
  }
  .p-interview__navi .item .profile .p-profile .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0.6rem;
  }
  .p-interview__navi .item .profile .p-profile .name .jp {
    font-size: 2rem;
    line-height: 1;
    margin-right: 0;
  }
  .p-interview__navi .item .profile a {
    position: absolute;
    top: -4.8rem;
    right: 0;
  }
  .p-interview__navi .item .profile a .c-btn-allow {
    width: 3.6rem;
    height: 3.6rem;
  }
  .p-interview__navi .item .profile a .c-btn-allow::after {
    width: 1rem;
    height: 1rem;
  }
  .p-interview__post:not(:last-of-type) {
    margin-bottom: 12rem;
  }
  .p-interview__post-head {
    padding: 0;
    height: 43rem;
    min-height: initial;
  }
  .p-interview__post-head .content {
    bottom: 4rem;
  }
  .p-interview__post-head .content .title {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .p-interview__post-head .content .number {
    font-size: 6.4rem;
    bottom: 0;
  }
  .p-interview__post-head .content .p-profile {
    margin-right: 1rem;
  }
  .p-interview__post-block .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-interview__post-block:first-of-type {
    margin-top: 5rem;
  }
  .p-interview__post-block:not(:last-of-type) {
    margin-bottom: 8rem;
  }
  .p-interview__post-block:nth-of-type(even) .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-interview__post-block__image {
    width: 100vw;
    margin-bottom: 5rem;
  }
  .p-interview__post-block__image picture.large {
    margin-left: 0;
  }
  .p-interview__post-block__image.type-a picture.large {
    width: 70%;
  }
  .p-interview__post-block__image.type-c picture.large {
    width: 100%;
  }
  .p-interview__post-block__content {
    width: 100%;
    padding-right: 0;
  }
  .p-interview__post-block__content .heading .title {
    line-height: 1.6;
    font-size: 2.2rem;
    margin-bottom: 2.2rem;
  }
  .p-interview__post-block:nth-of-type(even) .p-interview__post-block__content {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-404 {
  text-align: center;
  font-weight: 500;
  padding: 24rem 0 20rem 0;
}
.p-404 .p-404-heading {
  line-height: 1;
  margin: 0 auto 8rem auto;
  font-weight: 700;
  color: var(--main-color);
}
.p-404 .p-404-heading span {
  display: block;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
.p-404 .p-404-heading span:first-of-type {
  font-size: 16rem;
  margin-bottom: 2rem;
}

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

.p-404-back-navi {
  margin-top: 4rem;
}
.p-404-back-navi a {
  margin-left: auto;
  margin-right: auto;
  padding: 2.2rem 2rem 2.6rem 2rem;
  width: 32rem;
  font-weight: 600;
  border: 1px solid #95989A;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-404 .p-404-heading span {
    font-size: 2.6rem;
  }
  .p-404 .p-404-heading span:first-of-type {
    font-size: 12rem;
    margin-bottom: 1rem;
  }
  .p-404-back-navi {
    margin-top: 4rem;
  }
  .p-404-back-navi a {
    padding: 1.8rem 2rem 2rem 2rem;
    width: 26rem;
  }
}
.p-recruit-navi {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
}
.p-recruit-navi .item {
  position: relative;
  width: 50%;
  height: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}
.p-recruit-navi .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.p-recruit-navi .item .title span {
  display: block;
}
.p-recruit-navi .item .title .en {
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 1rem;
}
.p-recruit-navi .item .title .jp {
  font-size: 1.7rem;
}
.p-recruit-navi .item &gt; figure {
  width: 101%;
  height: 101%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-recruit-navi .item &gt; figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-recruit-navi .item.career-route, .p-recruit-navi .item.interview {
  padding: 5rem;
}
.p-recruit-navi .item.requirement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-recruit-navi .item.requirement &gt; a {
  color: var(--main-color);
  font-size: 2.8rem;
  font-weight: 600;
  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;
  width: 100%;
  height: 50%;
}
.p-recruit-navi .item.requirement &gt; a:last-of-type {
  background-color: #CDD6DD;
}
.p-recruit-navi .item.requirement .c-btn-allow {
  width: 5rem;
  height: 5rem;
}
.p-recruit-navi .item.requirement .c-btn-allow::after {
  width: 1.3rem;
  height: 1.3rem;
}
.p-recruit-navi .item.recruit {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: linear-gradient(45deg, rgb(40, 202, 255), rgb(0, 97, 229));
  -webkit-transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-recruit-navi .item.recruit:hover {
  opacity: 0.75;
}
.p-recruit-navi .item.recruit .title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-recruit-navi .item:hover &gt; figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 767px) {
  .p-recruit-navi .item {
    width: 100%;
    height: 20rem;
  }
  .p-recruit-navi .item .title .en {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  .p-recruit-navi .item .title .jp {
    font-size: 1.3rem;
  }
  .p-recruit-navi .item.career-route, .p-recruit-navi .item.interview {
    padding: 5rem 6.67%;
  }
  .p-recruit-navi .item.recruit .title .en {
    font-size: 3.6rem;
  }
  .p-recruit-navi .item.requirement &gt; a {
    font-size: 1.7rem;
  }
  .p-recruit-navi .item.requirement .c-btn-allow {
    width: 4rem;
    height: 4rem;
  }
  .p-recruit-navi .item.requirement .c-btn-allow::after {
    width: 1rem;
    height: 1rem;
  }
}
.p-page-recruit .c-bread-crumb,
.p-page-recruit .none-visual .c-bread-crumb {
  margin-bottom: 0;
}

.p-form {
  background-color: #FAFAFA;
  padding: 10% 0 4% 0;
  font-size: 1.6rem;
}
.p-form .p-form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.8rem 0;
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}
.p-form .p-form__block.privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
  font-size: 1.4rem;
}
.p-form .p-form__block.privacy a {
  text-decoration: underline;
}
.p-form .p-form__block.button {
  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;
  text-align: center;
  padding: 2rem 0;
}
.p-form .p-form__block.button .c-btn {
  max-width: 48rem;
  width: 100%;
  height: 6.2rem;
  font-size: 2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-form .p-form__block .label {
  width: 30%;
  min-width: 20rem;
  color: #707F89;
  font-weight: 700;
  padding: 1rem 0;
}
.p-form .p-form__block .control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-form span.wpcf7-list-item {
  margin: 0;
}
.p-form div.wpcf7-response-output {
  border: none;
  text-align: center;
  padding: 2rem 1rem 2.2rem 1rem !important;
}
.p-form .wpcf7 form.invalid .wpcf7-response-output,
.p-form .wpcf7 form.unaccepted .wpcf7-response-output,
.p-form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: initial;
}
.p-form .wpcf7 form .wpcf7-response-output {
  width: 90%;
  margin: 20px auto;
  color: #398f14;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  padding: 12px;
  border: none;
}
.p-form span.wpcf7-not-valid-tip,
.p-form .wpcf7-not-valid-tip-no-ajax {
  font-size: 1.2rem;
  margin-top: 0.6rem;
}
.p-form .wpcf7 form.invalid .wpcf7-response-output,
.p-form div.wpcf7-validation-errors {
  color: #c00;
  font-weight: 700;
  border: none;
}
.p-form .wpcf7 form.sent .wpcf7-response-output,
.p-form .wpcf7-mail-sent-ok {
  color: #365899;
  font-weight: 700;
  border: none;
}
.p-form .wpcf7-not-valid {
  border-color: #98A6B5;
}
.p-form .input-text.wpcf7-not-valid {
  background: url(../img/contact/icon_error.svg) no-repeat right 1rem center;
  background-size: 1.6rem auto;
  padding-right: 3.2rem;
}

.p-form-intro a {
  color: var(--main-color);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .p-form {
    font-size: 1.5rem;
  }
  .p-form .p-form__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
  }
  .p-form .p-form__block .label {
    width: 100%;
    min-width: initial;
  }
  .p-form .p-form__block .control {
    width: 100%;
    min-width: initial;
  }
  .p-form .p-form__block.privacy {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .p-form .p-form__block.privacy .label {
    display: none;
  }
  .p-form .p-form__block.button {
    padding: 1rem 0 2rem 0;
  }
}
.p-requirement {
  margin-bottom: 8rem;
}
.p-requirement .p-requirement__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CDD6DD;
  padding: 2.4rem 0;
}
.p-requirement .p-requirement__block .label {
  line-height: 1.6;
  width: 16rem;
  padding-right: 3.2rem;
  color: #707F89;
}
.p-requirement .p-requirement__block .content {
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
}

@media (max-width: 767px) {
  .p-requirement .p-requirement__block {
    padding: 1.6rem 0;
  }
  .p-requirement .p-requirement__block .label {
    width: 13rem;
    padding-right: 2rem;
  }
  .p-requirement .p-requirement__block .content {
    line-height: 1.7;
  }
}
.p-office__map {
  width: 84%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10rem;
  margin-bottom: 8rem;
}
.p-office__map .gmap {
  position: relative;
  padding-top: 56.25%;
}
.p-office__map .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-office__list {
  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;
  width: 84%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.p-office__list .item {
  width: 45%;
  font-weight: normal;
  margin-bottom: 7.2rem;
}
.p-office__list .item .name {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--main-color);
  border-bottom: 1px solid #CDD6DD;
  padding-bottom: 0.8rem;
  margin-bottom: 1.6rem;
}
.p-office__list .item .address {
  line-height: 1.5;
}
.p-office__list .item .number {
  margin-top: 1rem;
}
.p-office__list .item .number span:first-of-type {
  margin-right: 1rem;
}
.p-office__list .item .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.4rem;
}
.p-office__list .item .contact a {
  font-size: 1.6rem;
  width: 48%;
  border: 1px solid #95989A;
  padding: 1.6rem 1.8rem 2rem 1.8rem;
}
.p-office__list .item .contact a.tel {
  display: none;
}

@media (max-width: 767px) {
  .p-office__map {
    margin-top: 4rem;
    margin-bottom: 6rem;
  }
  .p-office__map .gmap {
    padding-top: 100%;
  }
  .p-office__list .item {
    width: 100%;
    margin-bottom: 5.6rem;
  }
  .p-office__list .item .name {
    font-size: 2rem;
  }
  .p-office__list .item .number {
    margin-top: 0.5rem;
  }
  .p-office__list .item .contact {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 2rem;
  }
  .p-office__list .item .contact a {
    width: 44%;
    font-size: 1.3rem;
    padding: 1.2rem 1.8rem 1.6rem 1.8rem;
  }
  .p-office__list .item .contact a.tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-office__list .item:last-of-type {
    margin-bottom: 0;
  }
}
.p-about__block {
  margin-top: 12rem;
  margin-bottom: 8rem;
}
.p-about__block .container {
  max-width: 112rem;
  width: 84%;
}
.p-about__block .container h2 {
  padding-bottom: 5rem;
  margin-bottom: 8rem;
  border-bottom: 1px solid #CDD6DD;
}
.p-about__block .p-about__block-content {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8rem;
}
.p-about__block .p-about__block-content h3 {
  font-size: 2.4rem;
}
.p-about__block#greeting h3 {
  margin-bottom: 5rem;
}
.p-about__block#greeting p {
  line-height: 2;
}
.p-about__block #profile h3,
.p-about__block #history h3 {
  margin-bottom: 3.2rem;
}
.p-about__block #profile dl,
.p-about__block #history dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-about__block #profile dl dt,
.p-about__block #history dl dt {
  width: 16rem;
  padding: 1rem 0;
  border-bottom: 1px solid #CDD6DD;
  color: #707F89;
}
.p-about__block #profile dl dd,
.p-about__block #history dl dd {
  width: calc(100% - 16rem);
  padding: 1rem 0;
  border-bottom: 1px solid #CDD6DD;
}

.p-about__greeting-sign {
  font-size: 1.4rem;
  line-height: 1.65 !important;
  text-align: right;
  margin-top: 5rem;
}

.p-about__image {
  width: 100vw;
  height: 50rem;
  position: relative;
  overflow: hidden;
}
.p-about__image picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-about__image picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-about__block {
    margin-top: 10rem;
  }
  .p-about__block .container h2 {
    font-size: 2.2rem;
    padding-bottom: 2.4rem;
    margin-bottom: 4.8rem;
  }
  .p-about__block .p-about__block-content h3 {
    font-size: 2rem;
  }
  .p-about__block#greeting {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .p-about__block#greeting h3 {
    margin-bottom: 2.4rem;
  }
  .p-about__block #profile h3,
  .p-about__block #history h3 {
    margin-bottom: 2.4rem;
  }
  .p-about__block #profile dl,
  .p-about__block #history dl {
    font-size: 1.5rem;
  }
  .p-about__block #history {
    padding-bottom: 0;
  }
  .p-about__block #profile dl dt {
    width: 10rem;
  }
  .p-about__block #profile dl dd {
    width: calc(100% - 10rem);
  }
  .p-about__block #history dl dt {
    width: 8rem;
  }
  .p-about__block #history dl dd {
    width: calc(100% - 8rem);
  }
  .p-about__image {
    height: 20rem;
  }
}
.p-contact__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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
  padding-bottom: 8rem;
}
.p-contact__navi .item {
  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;
  cursor: pointer;
  line-height: 1;
  border-radius: 10rem;
  padding: 1.8rem;
  background-color: #fff;
  border: 1px solid #CDD6DD;
  width: 100%;
  max-width: 55rem;
  color: var(--base-color);
  font-size: 1.8rem;
  font-weight: 700;
}
.p-contact__navi .item:not(:last-of-type) {
  margin-bottom: 3.2rem;
}
.p-contact__navi .item.tel .label {
  font-size: 1.4rem;
  margin-right: 1.4rem;
}
.p-contact__navi .item.tel .call-info {
  font-size: 2.4rem;
}
.p-contact__navi .item.tel .call-info .number {
  font-family: "Jost", sans-serif;
}
.p-contact__navi .item.tel .call-info .time {
  font-size: 1.4rem;
}
.p-contact__navi .item.tel .icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 0.6rem;
}
.p-contact__navi .item .c-btn-allow {
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #000;
  color: #000;
  margin-left: 1rem;
}
.p-contact__navi .item .c-btn-allow::after {
  width: 1rem;
  height: 1rem;
  background: url(../img/common/icon_button_allow_b.svg) no-repeat center/contain;
}

@media (max-width: 767px) {
  .p-contact__navi .item.tel .call-info {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .p-contact__navi .item.tel .call-info .time {
    font-size: 1.1rem;
  }
  .p-contact__navi .item.tel .icon {
    margin-left: 1rem;
  }
}
.p-product-list__heading {
  margin-bottom: 8rem;
}
.p-product-list__heading .name {
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
}
.p-product-list__heading .count {
  font-size: 1.2rem;
}

.p-product-list__items {
  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-product-list__items::after {
  content: "";
  display: block;
  width: 27.2%;
  height: 0;
}
.p-product-list__items .item {
  width: 27.2%;
  margin-bottom: 10rem;
}
.p-product-list__items .item figure {
  margin-bottom: 2.4rem;
  overflow: hidden;
  position: relative;
}
.p-product-list__items .item figure::before {
  display: block;
  content: "";
  padding-top: 74.07%;
}
.p-product-list__items .item figure img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.p-product-list__items .item .name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.p-product-list__items .item .navi {
  margin-top: 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;
}
.p-product-list__items .item .navi a.c-btn {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  font-size: 1.6rem;
  width: 90%;
  max-width: 18rem;
  padding: 1.4rem 1rem 1.8rem 1rem;
}
.p-product-list__items .item .navi a.c-btn:hover {
  background-color: #fff;
  color: var(--main-color);
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-product-list__items .item {
    width: 44%;
  }
}
@media (max-width: 767px) {
  .p-product-list__heading .name {
    font-size: 2rem;
  }
  .p-product-list__heading .count {
    font-size: 1rem;
  }
  .p-product-list__items .item {
    width: 45%;
    margin-bottom: 8rem;
  }
  .p-product-list__items .item .name {
    font-size: 1.2rem;
  }
  .p-product-list__items .item .navi a.c-btn {
    font-size: 1.2rem;
  }
}
.p-product-navi h2 {
  font-size: 1.3rem;
  border-bottom: 1px solid #CDD6DD;
  padding: 0 0 1.3rem 0;
}

.p-product-navi__search {
  margin-bottom: 4rem;
}
.p-product-navi__search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #CDD6DD;
  overflow: hidden;
}
.p-product-navi__search .input-text {
  outline: none;
  border: none;
}
.p-product-navi__search button {
  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;
  width: 5rem;
  height: 5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-product-navi__search button img {
  width: 2rem;
  height: auto;
}

.p-product-navi__category {
  font-weight: normal;
}
.p-product-navi__category ul {
  line-height: 1.4;
}
.p-product-navi__category a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-product-navi__category a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-bottom: solid 2px #98A6B5;
  border-right: solid 2px #98A6B5;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.p-product-navi__category a:hover {
  opacity: 0.65;
}
.p-product-navi__category .level-1 &gt; li {
  cursor: pointer;
}
.p-product-navi__category .level-1 &gt; li &gt; span {
  display: block;
  border-bottom: 1px solid #CDD6DD;
  font-size: 1.6rem;
  padding: 1.75rem 0;
  position: relative;
}
.p-product-navi__category .level-1 &gt; li &gt; span::before, .p-product-navi__category .level-1 &gt; li &gt; span::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-product-navi__category .level-1 &gt; li &gt; span::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-product-navi__category .level-1 &gt; li.active &gt; span::before {
  -webkit-transform: translateY(-50%) rotate(-225deg);
          transform: translateY(-50%) rotate(-225deg);
}
.p-product-navi__category .level-1 &gt; li.active &gt; span::after {
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
.p-product-navi__category .level-1 &gt; li.active .level-2 {
  display: block;
}
.p-product-navi__category .level-2 {
  display: none;
  border-bottom: 1px solid #CDD6DD;
  padding: 0 0 1.8rem 1.3rem;
  margin-top: 1.3rem;
  font-size: 1.6rem;
}
.p-product-navi__category .level-3 {
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  margin-left: 2.4rem;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .p-product-navi__category .level-1 &gt; li &gt; span {
    font-size: 1.5rem;
  }
  .p-product-navi__category .level-2 {
    font-size: 1.5rem;
  }
}
.p-product-pagenavi .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-product-pagenavi .wp-pagenavi a,
.p-product-pagenavi .wp-pagenavi span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  border: none !important;
  color: #98A6B5;
  font-size: 1.8rem;
}
.p-product-pagenavi .wp-pagenavi a.current,
.p-product-pagenavi .wp-pagenavi span.current {
  color: var(--main-color);
}
.p-product-pagenavi .previouspostslink {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 2rem;
}
.p-product-pagenavi .nextpostslink {
  margin-left: 2rem;
}
.p-product-pagenavi .nextpostslink,
.p-product-pagenavi .previouspostslink {
  position: relative;
  text-indent: -9999px;
  width: 3.5rem;
  height: 3.5rem;
}
.p-product-pagenavi .nextpostslink::before, .p-product-pagenavi .nextpostslink::after,
.p-product-pagenavi .previouspostslink::before,
.p-product-pagenavi .previouspostslink::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-product-pagenavi .nextpostslink::before,
.p-product-pagenavi .previouspostslink::before {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3rem;
  border: 1px solid var(--main-color);
}
.p-product-pagenavi .nextpostslink::after,
.p-product-pagenavi .previouspostslink::after {
  width: 8px;
  height: 8px;
  background: url(../img/common/icon_button_allow_b.svg) no-repeat center/contain;
}

@media (max-width: 767px) {
  .p-product-pagenavi .wp-pagenavi {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-product-bread-crumb {
  margin-bottom: 6rem;
}
.p-product-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.p-product-bread-crumb ul li a,
.p-product-bread-crumb ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 1.2rem;
}
.p-product-bread-crumb ul li:not(:first-of-type) a,
.p-product-bread-crumb ul li:not(:first-of-type) span {
  padding: 0.2rem 0 0.2rem 1.8rem;
  margin-left: 1rem;
}
.p-product-bread-crumb ul li:not(:first-of-type) a::after,
.p-product-bread-crumb ul li:not(:first-of-type) span::after {
  display: block;
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: translateY(-50%) rotate(-50deg);
          transform: translateY(-50%) rotate(-50deg);
}

@media (max-width: 767px) {
  .page-product .c-bread-crumb,
  .page-product .none-visual .c-bread-crumb {
    margin-bottom: 3.2rem;
  }
}
.p-post-empty {
  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;
  text-align: center;
}

.p-action-plan {
  margin-bottom: 8rem;
}
.p-action-plan .p-action-plan__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.3rem 0;
}
.p-action-plan .p-action-plan__block .label {
  line-height: 1.6;
  width: 12rem;
  padding-right: 3.2rem;
  color: #707F89;
}
.p-action-plan .p-action-plan__block .content {
  line-height: 1.8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
}
.p-action-plan .p-action-plan__block .content dl {
  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-action-plan .p-action-plan__block .content dl dt {
  width: 14rem;
}
.p-action-plan .p-action-plan__block .content dl dd {
  width: calc(100% - 15rem);
}

@media (max-width: 767px) {
  .p-action-plan .p-action-plan__block {
    padding: 1.6rem 0;
    font-size: 1.5rem;
  }
  .p-action-plan .p-action-plan__block .label {
    width: 8rem;
    padding-right: 2rem;
  }
  .p-action-plan .p-action-plan__block .content {
    line-height: 1.7;
  }
  .p-action-plan .p-action-plan__block .content dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-action-plan .p-action-plan__block .content dl dt {
    width: 100%;
  }
  .p-action-plan .p-action-plan__block .content dl dd {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.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;
  -webkit-filter: blur(40px);
          filter: blur(40px);
}

.fadeIn.inview {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.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);
  }
}
.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;
  }
  .br-mobile {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>