@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400&family=Noto+Sans+JP:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&family=Roboto:wght@500&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 {
  --color-navy: #001E62;
  --text-color: #3B4043;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Open Sans", 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%;
}

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.02em;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
}
body.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;
}
a:hover {
  color: var(--color-green);
}

a[href^="tel:"] {
  pointer-events: none;
}

img {
  vertical-align: bottom;
}

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100vw;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-header {
    height: 68px;
  }
}
@media (max-width: 767px) {
  .l-header {
    height: 68px;
  }
}
.l-footer {
  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;
  padding: 10rem 4rem 4rem 4rem;
}

.l-footer__left {
  width: 50%;
  padding-left: 4rem;
}

.l-footer__right {
  width: 40%;
  max-width: 40rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-footer__left {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .l-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10rem 8% 2rem 8%;
  }
  .l-footer__left {
    width: 100%;
    padding-left: 0;
  }
  .l-footer__right {
    width: 100%;
    max-width: initial;
  }
}
.l-main {
  margin-top: 100px;
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-main {
    margin-top: 68px;
  }
}
@media (max-width: 767px) {
  .l-main {
    margin-top: 68px;
  }
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.container {
  width: 84%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.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-button {
  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;
  border: 2px solid var(--text-color);
  color: var(--text-color);
  font-family: var(--font-family-base);
  font-weight: 600;
  padding: 1rem 1.6rem 1.2rem 1.6rem;
  min-width: 200px;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.c-button:hover {
  background: var(--text-color);
  color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.input-text {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  font-size: 1.6rem;
  line-height: 1.65;
}

.input-textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  font-size: 1.6rem;
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-indent: 1rem;
  background: #fff;
  height: 44px;
  vertical-align: middle;
  border: none;
  font-size: 1.6rem;
  width: 100%;
  cursor: pointer;
}

.c-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: var(--color-green);
}
.c-tag-list a {
  color: var(--color-green);
}
.c-tag-list .item {
  color: var(--color-green);
  border: 1px solid #A0A0A0;
  border-radius: 3px;
  line-height: 1.4;
  padding: 4px 12px 7px 12px;
  margin: 0 6px 6px 0;
}
.c-tag-list .item:hover, .c-tag-list .item.active {
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
}
.c-tag-list .item:hover a, .c-tag-list .item.active a {
  color: #fff;
}

.p-header {
  width: 100%;
  height: 100%;
  padding: 0 4rem;
  background-color: #fff;
  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-header__logo {
  width: 23rem;
  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-header__logo img {
  width: 100%;
}

.p-header__navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__navi ul li:not(:last-of-type) {
  margin-right: 3.2rem;
}
.p-header__navi ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-navy);
}
.p-header__navi ul li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-header {
    padding: 0 6%;
  }
  .p-header__logo {
    width: 16.5rem;
  }
  .p-header__navi {
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    width: 100%;
    height: calc(100svh - 67px);
    position: absolute;
    top: 67px;
    left: 0;
    padding: 40px 8% 8% 8%;
  }
  .p-header__navi ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-header__navi ul li {
    width: 100%;
    text-align: left;
  }
  .p-header__navi ul li:not(:last-of-type) {
    margin-right: 0;
  }
  .p-header__navi ul li a {
    font-size: 2rem;
    border-bottom: 1px solid var(--color-navy);
    padding: 3rem 0;
  }
  .menu-open .p-header__navi {
    opacity: 1;
    pointer-events: initial;
  }
}
@media (max-width: 767px) {
  .p-header {
    padding: 0 6%;
  }
  .p-header__logo {
    width: 16.5rem;
  }
  .p-header__navi {
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    width: 100%;
    height: calc(100svh - 67px);
    position: absolute;
    top: 67px;
    left: 0;
    padding: 40px 8% 8% 8%;
  }
  .p-header__navi ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-header__navi ul li {
    width: 100%;
    text-align: left;
  }
  .p-header__navi ul li:not(:last-of-type) {
    margin-right: 0;
  }
  .p-header__navi ul li a {
    font-size: 2rem;
    border-bottom: 1px solid var(--color-navy);
    padding: 2.4rem 0;
  }
  .menu-open .p-header__navi {
    opacity: 1;
    pointer-events: initial;
  }
}
.p-footer {
  font-size: 1.6rem;
  width: 100%;
  background-color: var(--color-navy);
  color: #fff;
}
.p-footer .p-copyright {
  width: 100%;
  text-align: right;
}

.p-footer__logo {
  margin-bottom: 2.4rem;
}
.p-footer__logo .jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.p-footer__logo .jp span {
  font-size: 2rem;
  margin-right: 0.6rem;
}
.p-footer__logo .en {
  font-size: 1.1rem;
}

.p-footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
}
.p-footer__address dt {
  width: 8.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.p-footer__address dd {
  width: calc(100% - 8.4rem);
}

.p-footer__time {
  position: relative;
  padding-top: 1rem;
  margin-top: 2rem;
}
.p-footer__time::after {
  content: "";
  display: block;
  height: 1px;
  width: 9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.p-footer__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-footer__navi ul {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.p-footer__navi ul:first-of-type {
  margin-right: 4rem;
}
.p-footer__navi ul li {
  padding: 0.6rem 0;
}
.p-footer__navi ul li a {
  color: #fff;
}

@media (max-width: 767px) {
  .p-footer .p-copyright {
    text-align: center;
    font-size: 1rem;
  }
  .p-footer__logo {
    text-align: center;
  }
  .p-footer__logo .jp {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-footer__address dt {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  .p-footer__address dd {
    width: calc(100% - 8.4rem);
    font-size: 1rem;
  }
  .p-footer__time {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4.8rem;
  }
  .p-footer__time::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-footer__navi {
    display: none;
  }
}
.p-loading {
  width: 100vw;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #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;
  opacity: 1;
  -webkit-transition: opacity 0.6s linear;
  transition: opacity 0.6s linear;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  background: url(../img/common/bg_loading.jpg) no-repeat center;
  background-size: cover;
}
.p-loading .p-copyright {
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 100%;
  text-align: center;
}

.p-loading__logo {
  width: 32rem;
}
.p-loading__logo img {
  width: 100%;
}

.is_loaded .p-loading {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .p-loading__logo {
    width: 28rem;
  }
}
.p-menu-btn {
  display: none;
  position: fixed;
  top: 15px;
  right: calc(50vw - 200px + 20px);
  z-index: 1001;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid var(--color-navy);
  border-radius: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-menu-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-menu-btn:hover span {
  background-color: var(--color-navy);
}
.p-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-navy);
  position: absolute;
  z-index: 1;
  left: 9px;
  -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: 12px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.p-menu-btn span.l2 {
  top: 18px;
}

.p-menu-btn span.l3 {
  width: 10px;
  top: 24px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-open .p-menu-btn span.l1,
.menu-open .p-menu-btn span.l3 {
  top: 18px;
  left: 9px;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
}
.menu-open .p-menu-btn span.l3 {
  width: 20px;
  -webkit-transform: rotate(-330deg);
          transform: rotate(-330deg);
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .p-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 20px;
  }
}
.p-copyright {
  font-size: 1.1rem;
  font-weight: 600;
  color: #A0A0A0;
}

@media (max-width: 767px) {
  .p-copyright {
    font-size: 1.1rem;
  }
}
.p-top-visual {
  width: 100vw;
  position: relative;
  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;
  padding: 10% 0 5% 0;
}
.p-top-visual::after {
  content: "";
  display: block;
  padding-top: 51.04%;
}
.p-top-visual::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 30, 98, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.p-top-visual picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-visual picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-visual .p-top-visual__content {
  position: relative;
  z-index: 2;
  color: #fff;
  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;
}
.p-top-visual .p-top-visual__content .catch-copy {
  position: relative;
  max-width: 30rem;
  padding-bottom: 3.4rem;
  margin-bottom: 3.2rem;
}
.p-top-visual .p-top-visual__content .catch-copy::after {
  content: "";
  display: block;
  height: 1px;
  width: 17rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-top-visual .p-top-visual__content .catch-copy img {
  width: 100%;
}
.p-top-visual .p-top-visual__content .introduction {
  max-width: 45rem;
}
.p-top-visual .p-top-visual__content .navi {
  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;
  margin: 3.2rem 0;
  width: 100%;
  max-width: 63rem;
  min-width: 48rem;
}
.p-top-visual .p-top-visual__content .navi a.c-button {
  width: 48%;
  border-color: #A0A0A0;
  color: #fff;
}
.p-top-visual .p-top-visual__content .navi a.c-button:first-of-type {
  margin-right: 3rem;
}
.p-top-visual .p-top-visual__content .navi a.c-button:hover {
  border-color: #fff;
  background-color: #fff;
  color: var(--color-navy);
}
.p-top-visual .p-top-visual__content .summary {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .p-top-visual {
    min-height: calc(100svh - 68px);
    padding: 30% 0 10% 0;
  }
  .p-top-visual::after {
    content: "";
    display: block;
    padding-top: 206.92%;
  }
  .p-top-visual .p-top-visual__content {
    width: 70%;
  }
  .p-top-visual .p-top-visual__content .catch-copy {
    max-width: 20rem;
    padding-bottom: 4.6rem;
    margin-bottom: 3.4rem;
  }
  .p-top-visual .p-top-visual__content .navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 8rem 0 10rem 0;
    min-width: initial;
  }
  .p-top-visual .p-top-visual__content .navi a.c-button {
    width: 100%;
    max-width: 30rem;
  }
  .p-top-visual .p-top-visual__content .navi a.c-button:first-of-type {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .p-top-visual .p-top-visual__content .summary {
    font-size: 1.8rem;
    text-align: center;
  }
}
.p-top-about {
  background-color: #171717;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-about__visual {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-top-about__visual::before {
  content: "";
  display: block;
  padding-top: 52.43%;
}
.p-top-about__visual:hover .visual img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.p-top-about__visual .visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-top-about__visual .visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
}
.p-top-about__visual .name {
  position: absolute;
  top: 20%;
  z-index: 1;
  height: 24%;
}
.p-top-about__visual .name img {
  height: 100%;
  width: auto;
}
.p-top-about__visual.kumamoto .name {
  left: 8%;
}
.p-top-about__visual.tokyo .name {
  right: 8%;
}
.p-top-about__visual .link-allow {
  position: absolute;
  bottom: 14%;
  right: 5%;
  z-index: 1;
  width: 9%;
  max-width: 9rem;
}
.p-top-about__visual .link-allow img {
  width: 100%;
  height: auto;
}

.p-top-about__navi {
  width: 30%;
  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-about__navi a.c-button {
  color: #fff;
  border-color: #fff;
  border-width: 1px;
}
.p-top-about__navi a.c-button:hover {
  background-color: #fff;
  color: #171717;
}

@media (max-width: 767px) {
  .p-top-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-about__visual {
    width: 100%;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
  .p-top-about__visual::before {
    padding-top: 100%;
  }
  .p-top-about__visual .name {
    top: 14%;
    height: 14%;
  }
  .p-top-about__visual .link-allow {
    bottom: 8%;
    right: 6%;
  }
  .p-top-about__navi {
    width: 100%;
    padding: 2.4rem 0;
  }
}
.p-post-head {
  background-color: var(--color-navy);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-top: 16%;
  padding-bottom: 4rem;
  margin-bottom: 8rem;
}
.p-post-head .container {
  max-width: 720px;
}
.p-post-head .title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.4;
}
.p-post-head .meta {
  margin-top: 2rem;
}
.p-post-head .meta .date {
  font-size: 1.4rem;
}
.p-post-head .meta .tags {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.6rem;
}
.p-post-head .meta .tags span {
  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;
  line-height: 1;
  padding: 0.5rem 1rem 0.6rem 1rem;
  border: 1px solid #fff;
}
.p-post-head .meta .tags span:not(:last-of-type) {
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .p-post-head {
    padding-top: 22%;
  }
  .p-post-head .title {
    font-size: 2.2rem;
    line-height: 1.65;
  }
  .p-post-head .meta {
    margin-top: 2rem;
  }
  .p-post-head .meta .date {
    font-size: 1.2rem;
  }
  .p-post-head .meta .tags {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
}
.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 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;
  color: #A0A0A0;
  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;
  color: #A0A0A0;
  margin-top: 0.4rem;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  font-size: 1.2rem;
  color: #A0A0A0;
  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);
}

/* 区切り線 */
.wp-block-separator {
  border-bottom: none;
  margin: 4rem 0;
  border-color: #B1B1B1;
}
.wp-block-separator.is-green {
  border-width: 1px;
  border-color: var(--color-green);
}

@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;
    color: #A0A0A0;
    margin: 0.4rem 8% 0 8%;
  }
  .p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-media-text .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
}
.p-post-list {
  margin-bottom: 8rem;
}
.p-post-list .item {
  display: block;
  padding: 3.2rem 0;
  border-bottom: 1px solid #B1B1B1;
}
.p-post-list .item:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-post-list .item .date {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.p-post-list .item .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.6rem;
}
.p-post-list .item .tags span {
  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: 0.6rem 1.2rem;
  font-size: 1.5rem;
  line-height: 1;
  color: #A0A0A0;
  border: 1px solid #A0A0A0;
}
.p-post-list .item .title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .p-post-list .item {
    padding: 2.4rem 0;
  }
  .p-post-list .item .date {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .p-post-list .item .tags {
    margin-top: 1.2rem;
  }
  .p-post-list .item .tags span {
    font-size: 1.2rem;
  }
  .p-post-list .item .title {
    font-size: 2rem;
  }
}
.p-post-navi {
  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;
  margin: 0 auto 10rem auto;
}
.p-post-navi a {
  display: block;
}
.p-post-navi a:hover {
  opacity: 0.7;
}
.p-post-navi .wp-pagenavi {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.p-post-navi .wp-pagenavi a {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: none;
  padding: 0.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.p-post-navi .wp-pagenavi .previouspostslink, .p-post-navi .wp-pagenavi .nextpostslink {
  text-indent: -9999px;
  width: 3.6rem;
  height: 3.6rem;
}
.p-post-navi .wp-pagenavi .previouspostslink {
  background: url(../img/common/icon_allow_prev.svg) no-repeat center;
  background-size: contain;
}
.p-post-navi .wp-pagenavi .nextpostslink {
  background: url(../img/common/icon_allow_next.svg) no-repeat center;
  background-size: contain;
}
.p-post-navi .wp-pagenavi a:hover,
.p-post-navi .wp-pagenavi span.current {
  border: none;
}

.page-single .p-post-navi {
  border-top: 1px solid #2894C4;
  margin: 8rem auto 8rem auto;
  padding: 6rem 0 0 0;
}

.p-404 {
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

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

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

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

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

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

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

@media (max-width: 767px) {
  .p-404 h1 span:first-of-type {
    font-size: 10rem;
    margin-bottom: 1rem;
  }
  .p-404 h1 span {
    font-size: 2rem;
  }
}
.p-page-visual {
  width: 100vw;
  position: relative;
  margin-bottom: 10rem;
}
.p-page-visual::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: rgba(28, 47, 67, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-page-visual::after {
  content: "";
  display: block;
  padding-top: 51.04%;
}
.p-page-visual picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-page-visual picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-visual__title {
  position: absolute;
  right: 2%;
  bottom: 0;
  height: 7%;
  max-height: 7rem;
}
.p-page-visual__title img {
  height: 100%;
  width: auto;
  display: block;
}

.p-page-visual__copy {
  width: 88%;
  height: 100%;
  max-width: 720px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.p-page-visual__copy img {
  position: absolute;
}

@media (max-width: 767px) {
  .p-page-visual::after {
    padding-top: 163%;
  }
  .p-page-visual__title {
    right: -50%;
    height: 6%;
    max-height: 4rem;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-single .container {
  max-width: 720px;
}

.page-blog-list .p-page-visual .p-page-visual__copy {
  max-width: 900px;
}
.page-blog-list .p-page-visual .p-page-visual__copy img {
  left: 0;
  bottom: 8%;
  height: 30%;
}
.page-blog-list .container {
  max-width: 720px;
}

@media (max-width: 767px) {
  .page-blog-list .p-page-visual {
    margin-bottom: 4rem;
  }
  .page-blog-list .p-page-visual .p-page-visual__copy img {
    left: 0;
    bottom: 27%;
    height: 17%;
  }
}
.page-investment .p-page-visual .p-page-visual__copy img {
  left: 0;
  bottom: 15%;
  height: 22%;
}

@media (max-width: 767px) {
  .page-investment .p-page-visual {
    margin-bottom: 6rem;
  }
  .page-investment .p-page-visual .p-page-visual__copy img {
    height: 18%;
  }
}
.page-management .p-page-visual .p-page-visual__copy img {
  left: 0;
  bottom: 15%;
  height: 22%;
}

@media (max-width: 767px) {
  .page-management .p-page-visual {
    margin-bottom: 6rem;
  }
  .page-management .p-page-visual .p-page-visual__copy img {
    height: 20%;
    bottom: 42%;
  }
}
.p-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 3.2rem !important;
}
.p-section-title span {
  display: block;
}
.p-section-title .en {
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  line-height: 1;
  font-weight: normal;
  color: #A0A0A0;
  position: relative;
  padding-left: 12px;
  margin-bottom: 3px;
}
.p-section-title .en::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 6px;
  background-color: var(--color-navy);
  position: absolute;
  left: 0;
  top: 5px;
}
.p-section-title .jp {
  font-size: 2.8rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-section-title .en {
    font-size: 1.2rem;
    padding-left: 10px;
  }
  .p-section-title .en::before {
    width: 4px;
    height: 4px;
    top: 5px;
  }
  .p-section-title .jp {
    font-size: 2.2rem;
  }
}
.p-page-footer-visual {
  width: 100vw;
  position: relative;
  margin-top: 12rem;
}
.p-page-footer-visual::after {
  content: "";
  display: block;
  padding-top: 17.7%;
}
.p-page-footer-visual picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-page-footer-visual picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-page-footer-visual {
    margin-top: 6rem;
  }
  .p-page-footer-visual::after {
    content: "";
    display: block;
    padding-top: 66.66%;
  }
}
.p-access {
  margin-top: 16rem;
  margin-bottom: 20rem;
}
.p-access .container {
  padding-left: 3%;
  padding-right: 3%;
}
.p-access .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12rem;
}
.p-access .p-access_image {
  width: 48%;
}
.p-access .p-access_image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-access .p-access_image picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-access .p-access__content {
  width: 48%;
}
.p-access .p-access__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.4rem;
}
.p-access .p-access__heading .name span {
  display: block;
  line-height: 1.4;
}
.p-access .p-access__heading .name .jp {
  font-size: 3rem;
  font-weight: 500;
}
.p-access .p-access__heading .name .en {
  font-size: 1.2rem;
  font-weight: normal;
  color: #A0A0A0;
}
.p-access .p-access__heading .contact-number {
  line-height: 1.3;
}
.p-access .p-access__heading .contact-number span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #2894C4;
}
.p-access .address {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-access .access {
  font-size: 1.4rem;
  color: #A0A0A0;
  margin-bottom: 2.4rem;
}
.p-access .access span {
  display: block;
}
.p-access .map {
  background-color: #F0F0F0;
  padding: 2rem;
}
.p-access .map .google-map {
  width: 100%;
  position: relative;
  padding-top: 84%;
}
.p-access .map .google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -6rem;
}
.p-access__gallery picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
}
.p-access__gallery picture img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .p-access {
    margin-top: 6rem;
    margin-bottom: 0;
  }
  .p-access .container {
    padding-left: 0;
    padding-right: 0;
  }
  .p-access .p-access__heading .name .jp {
    font-size: 2.6rem;
  }
  .p-access .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 6rem;
  }
  .p-access .item:last-of-type {
    margin-bottom: 0;
  }
  .p-access .item .p-access_image {
    width: 100%;
  }
  .p-access .item .p-access_image .address {
    margin-top: 0.5rem;
  }
  .p-access .item .p-access__content {
    width: 100%;
  }
  .p-access .tel-call {
    margin-bottom: 2.4rem;
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-access .tel-call a {
    color: #2894C4;
    font-weight: 600;
    border-color: #A0A0A0;
  }
  .p-access .address {
    font-size: 1.4rem;
  }
  .p-access .map {
    margin-top: 2.4rem;
  }
  .p-access__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: -4rem;
    margin-bottom: 4rem;
  }
  .p-access__gallery picture {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.page-access .p-page-visual::before {
  display: none;
}
.page-access .p-page-visual .name {
  position: absolute;
  z-index: 1;
  height: 12%;
}
.page-access .p-page-visual .name img {
  height: 100%;
  width: auto;
}
.page-access .p-page-visual .name.kumamoto {
  left: 6%;
  top: 22%;
}
.page-access .p-page-visual .name.tokyo {
  right: 6%;
  bottom: 28%;
}
.page-access .p-page-visual .scroll-allow {
  width: 6%;
  position: absolute;
  right: 6%;
  bottom: 17%;
}
.page-access .p-page-visual .scroll-allow img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .page-access .p-page-visual {
    margin-bottom: 6rem;
  }
  .page-access .p-page-visual::after {
    padding-top: 198.97%;
  }
  .page-access .p-page-visual .name {
    height: 6%;
  }
  .page-access .p-page-visual .name.kumamoto {
    left: 8%;
    top: 11%;
  }
  .page-access .p-page-visual .name.tokyo {
    right: 8%;
    bottom: 11%;
  }
  .page-access .p-page-visual .scroll-allow {
    width: 6.2rem;
    right: 8%;
    bottom: 3.6rem;
  }
}
.page-company .p-page-visual {
  margin-bottom: 0;
}
.page-company .p-page-visual .p-page-visual__copy img {
  left: 50%;
  top: 50%;
  bottom: initial;
  height: 22%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-company .p-page-footer-visual {
  margin-top: 0;
}

@media (max-width: 767px) {
  .page-company .p-page-visual .p-page-visual__copy img {
    height: 20%;
    bottom: 47%;
  }
}
.p-company-about {
  background-color: var(--color-navy);
  color: #fff;
  overflow: hidden;
}
.p-company-about .p-company-about__inner {
  width: 84%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12rem;
  padding-bottom: 10rem;
}
.p-company-about .p-section-title .en::before {
  background-color: #2894C4;
}
.p-company-about .p-company-about__title {
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1.6rem;
  margin-top: 8rem;
}

@media (max-width: 767px) {
  .p-company-about .p-company-about__inner {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
  .p-company-about .p-company-about__title {
    font-size: 1.8rem;
  }
}
.p-company-history {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.p-company-history__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  letter-spacing: 0;
}
.p-company-history__list .label {
  width: 14rem;
  font-weight: 600;
  padding: 0.8rem 0;
}
.p-company-history__list .content {
  width: calc(100% - 14rem);
  padding: 0.8rem 0;
}

@media (max-width: 767px) {
  .p-company-history {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
  .p-company-history__list {
    font-size: 1.4rem;
  }
  .p-company-history__list .label {
    width: 9rem;
    font-size: 1.4rem;
  }
  .p-company-history__list .content {
    width: calc(100% - 10rem);
    font-size: 1.6rem;
  }
}
.p-company-profile {
  padding-bottom: 6rem;
  background-color: #F0F0F0;
  overflow: hidden;
}
.p-company-profile .p-company-profile__inner {
  width: 84%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.p-company-profile__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #A0A0A0;
  padding: 1.8rem 0;
}
.p-company-profile__list .label {
  width: 19rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #A0A0A0;
}
.p-company-profile__list .content {
  width: calc(100% - 21rem);
}
.p-company-profile__list .content.has_map-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-company-profile__list .content.has_map-link span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company-profile__list .content.has_map-link a.c-button {
  border-color: #2894C4;
  color: #2894C4;
  min-width: initial;
  margin-left: 3.2rem;
  line-height: 1;
  font-size: 1.4rem;
  padding: 1rem 1.6rem 1rem 1.6rem;
}
.p-company-profile__list .content.has_map-link a.c-button:hover {
  background-color: #2894C4;
  color: #fff;
}

.p-company-profile__banner {
  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;
  max-width: 50rem;
  margin: 8rem auto 0 auto;
}
.p-company-profile__banner a {
  display: block;
  width: 30%;
}
.p-company-profile__banner a img {
  width: 100%;
  height: auto;
}
.p-company-profile__banner-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
    justify-content: center;
    max-width: 50rem;
    margin: 4rem auto 0 auto;
}
.p-company-profile__banner-l a {
  display: block;
  width: 50%;
  max-width: 24rem;
}
.p-company-profile__banner-l a img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .p-company-profile {
    padding-bottom: 0;
  }
  .p-company-profile .p-company-profile__inner {
    padding-top: 8rem;
  }
  .p-company-profile__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-company-profile__list .item {
    padding: 1.6rem 0 2rem 0;
  }
  .p-company-profile__list .label {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .p-company-profile__list .content {
    width: 100%;
  }
  .p-company-profile__list .content.has_map-link a.c-button {
    padding: 0.9rem 1.6rem 1rem 1.6rem;
  }
  .p-company-profile__banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-company-profile__banner a {
    width: 45%;
    margin-bottom: 1.6rem;
  }
  .p-company-profile__banner-l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto 0 auto;
  }
  .p-company-profile__banner-l a {
    width: 50%;
  }
}
.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

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

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

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

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

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

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

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.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 */