@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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;
  --navy-color: #003981;
  --red-color: #DC000C;
  --gray-color: #F0F0F0;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Gill Sans", "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%;
}

@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(32% + 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;
}

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

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

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100vw;
  height: 12rem;
}
.l-header::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.is_scrolled .l-header::after {
  opacity: 1;
}

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

.container {
  width: 93.75%;
  max-width: 1314px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 767px) {
  .container {
    width: 86%;
  }
}
.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;
  font-size: var(--font-size-base-pc);
  color: var(--text-color);
  font-weight: 500;
  border: 1px solid var(--text-color);
  padding: 1.3rem 4rem 1.5rem 4rem;
  line-height: 1.4;
  border-radius: 10rem;
}
.c-button .icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  margin-left: 1rem;
  background: url(../img/common/icon_button_allow.svg) no-repeat center;
  background-size: contain;
}
.c-button:hover {
  background: var(--red-color);
  border-color: var(--red-color);
}

.c-btn-allow {
  font-size: var(--font-size-base-sp);
  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::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0;
  height: 0;
  background: var(--red-color);
  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::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:hover {
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.c-btn-allow:hover::before {
  width: 100%;
  height: 100%;
}

.hover .c-btn-allow {
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.hover .c-btn-allow::before {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .c-button {
    font-size: var(--font-size-base-sp);
    padding: 1.5rem 2rem 1.7rem 2rem;
  }
  .c-btn-allow {
    font-size: var(--font-size-base-sp);
    width: 3.4rem;
    height: 3.4rem;
  }
  .c-btn-allow::after {
    width: 1rem;
    height: 1rem;
    margin-bottom: 0;
  }
}
.input-text {
  width: 100%;
  padding: 1.6rem 1rem;
  border: 1px solid #CDD6DD;
  font-size: var(--font-size-base-pc);
}

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

.input-textarea {
  border: 1px solid #CDD6DD;
  width: 100%;
  padding: 1.6rem 1rem;
  font-size: var(--font-size-base-pc);
}

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

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

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

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

::placeholder {
  color: #CDD6DD;
  position: relative;
  left: 1rem;
}

@media (max-width: 767px) {
  .input-text {
    padding: 1.4rem 0.5rem;
    font-size: var(--font-size-base-sp);
  }
  .input-select {
    font-size: var(--font-size-base-sp);
  }
  .input-textarea {
    font-size: var(--font-size-base-sp);
  }
}
.is_opened .p-header {
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.is_opened.page-top .p-header {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.p-header {
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: 1s cubic-bezier(0.52, 0.08, 0.18, 1);
  width: 92%;
  height: 12.5rem;
  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 {
  width: 29rem;
  line-height: 1;
}
.p-header__logo a {
  display: block;
}
.p-header__logo a:hover {
  opacity: 0.65;
}
.p-header__logo a img {
  width: 100%;
}

.p-header__gnavi.p-gnavi li a {
  font-size: 2rem;
  color: #fff;
}
.p-header__gnavi .p-gnavi__contact {
  background-color: #fff;
  color: var(--text-color);
  font-size: 1.7rem;
  font-weight: 700;
}

.p-header__copyright {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: #fff;
  display: none;
}

@media (max-width: 767px) {
  .p-header {
    height: 9rem;
  }
  .p-header__logo {
    width: 19.1rem;
  }
  .p-header__gnavi {
    position: fixed;
    top: 0;
    right: -10vw;
    width: 100vw;
    height: 100vh;
    background: url(../img/common/bg_sp-menu.jpg) no-repeat center;
    background-size: cover;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    padding: 14rem 17% 4rem 17%;
    opacity: 0;
    visibility: hidden;
  }
  .p-header__gnavi::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #888;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .p-header__gnavi.p-gnavi .p-gnavi__index li.products::before {
    left: auto;
    right: 7rem;
  }
  .p-header__gnavi.p-gnavi .p-gnavi__index li.products::after {
    left: auto;
    right: 0;
  }
  .p-header__gnavi.p-gnavi .p-gnavi__index li a {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .p-header__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 2rem;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
  }
  .menu-open .p-header__gnavi {
    display: block;
    opacity: 1;
    right: 0vw;
    visibility: visible;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.p-footer {
  background-color: #3B4043;
}

.p-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  padding: 7.2rem 0 2rem 0;
}

.p-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32.7rem;
}

.p-footer__gnavi.p-gnavi li a {
  font-size: 2rem;
  color: #fff;
}
.p-footer__copyright {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  padding: 0 0 4rem 0;
}

@media (max-width: 767px) {
  .p-footer__container {
    width: 64%;
    padding: 14rem 0 2rem 0;
  }
  .p-footer__logo {
    display: none;
  }
  .p-footer__gnavi.p-gnavi .p-gnavi__index {
    margin-left: 0;
    margin-right: auto;
  }
  .p-footer__gnavi.p-gnavi .p-gnavi__contact {
    background-color: initial;
    color: #fff;
    border: 1px solid #fff;
  }
  .p-footer__copyright {
    padding: 8rem 0 2rem 0;
    text-align: center;
  }
}
.is_opened .p-top-visual .p-top-visual__title .logo img,
.is_opened .p-top-visual .p-top-visual__title .tagline-jp img,
.is_opened .p-top-visual .p-top-visual__title .tagline-en img {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-top-visual {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100svh;
  min-height: 70rem;
}
.p-top-visual .p-top-visual__title {
  max-width: 1110px;
  width: 58%;
  max-width: 800px;
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  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;
  line-height: 1;
}
.p-top-visual .p-top-visual__title .logo,
.p-top-visual .p-top-visual__title .tagline-jp,
.p-top-visual .p-top-visual__title .tagline-en {
  position: relative;
  overflow: hidden;
  height: 0;
}
.p-top-visual .p-top-visual__title .logo img,
.p-top-visual .p-top-visual__title .tagline-jp img,
.p-top-visual .p-top-visual__title .tagline-en img {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 1.2s cubic-bezier(0, 0, 0.18, 1);
  transition: 1.2s cubic-bezier(0, 0, 0.18, 1);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.p-top-visual .p-top-visual__title .logo {
  width: 100%;
  padding-top: 11%;
}
.p-top-visual .p-top-visual__title .tagline-jp {
  width: 64%;
  margin-top: 5.6rem;
  padding-top: 5.1%;
}
.p-top-visual .p-top-visual__title .tagline-en {
  margin-top: 1.6rem;
  width: 41%;
  padding-top: 2.2%;
}
.p-top-visual .swiper-container {
  width: 100%;
  height: 100%;
}
.p-top-visual .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}
.p-top-visual .swiper-container .swiper-wrapper .swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #888;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-visual .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.p-top-visual .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1 !important;
  width: 8px;
  height: 8px;
  position: relative;
  margin: 0 8px 0 8px !important;
}
.p-top-visual .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  position: absolute;
  left: -3px;
  top: -3px;
  border-radius: 10px;
  opacity: 0;
}
.p-top-visual .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.p-top-visual .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 93.75%;
  max-width: 1314px;
  left: 3.15%;
  bottom: 3.15%;
}

@media (max-width: 767px) {
  .p-top-visual .swiper-pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-top-visual .p-top-visual__title {
    width: 84%;
  }
  .p-top-visual .p-top-visual__title .tagline-jp {
    width: 74%;
    padding-top: 6.1%;
    margin-top: 2.4rem;
  }
  .p-top-visual .p-top-visual__title .tagline-en {
    margin-top: 0.6rem;
    padding-top: 3.2%;
    width: 63%;
  }
}
.p-top-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 108rem;
  background: url(../img/top/bg_about.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  color: #fff;
}
.p-top-about::before {
  content: "";
  display: block;
  width: 92%;
  height: 18rem;
  max-width: 1740px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/top/img_about_logo.svg) no-repeat center;
  background-size: contain;
}
.p-top-about::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 57, 129, 0.5);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-top-about .container {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}

.p-top-about__visual {
  width: 45%;
  max-width: 600px;
}

.p-top-about__content {
  width: 45%;
}
.p-top-about__content .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.3;
  margin-bottom: 4rem;
}
.p-top-about__content .heading .en {
  font-family: var(--font-family-en);
  font-size: 4.5rem;
}
.p-top-about__content .heading .jp {
  font-size: 1.6rem;
  font-weight: 400;
}
.p-top-about__content .content p {
  margin-bottom: 2rem;
}
.p-top-about__content nav {
  margin-top: 4rem;
}
.p-top-about__content nav .c-button {
  border-color: #fff;
  color: #fff;
  max-width: 220px;
  margin-left: auto;
  margin-right: 0;
}
.p-top-about__content nav .c-button:hover {
  background: var(--red-color);
  border-color: var(--red-color);
}

@media (max-width: 767px) {
  .p-top-about .container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-about__visual {
    width: 100vw;
  }
  .p-top-about__content {
    width: 76%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3rem;
  }
  .p-top-about__content .heading .en {
    font-size: 4rem;
  }
  .p-top-about__content .heading .jp {
    font-size: 1.4rem;
  }
  .p-top-about__content nav {
    margin-top: 4.8rem;
  }
  .p-top-about__content nav .c-button {
    margin-right: auto;
    max-width: 200px;
  }
}
.p-top-photo picture {
  display: block;
  height: 108rem;
  position: relative;
}
.p-top-photo picture::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #888;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-photo picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-top-photo picture {
    height: 28rem;
  }
}
.p-page-head {
  position: relative;
  overflow: hidden;
}
.p-page-head::before, .p-page-head:after {
  content: "";
  display: block;
  width: 100vw;
}
.p-page-head::before {
  padding-top: 59rem;
}
.p-page-head:after {
  height: 100%;
  background-color: #888;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

.p-page-head__title {
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: 1;
  color: #fff;
  line-height: 1.2;
  width: 88%;
  max-width: 1314px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-page-head__title span {
  display: block;
  font-weight: 700;
}
.p-page-head__title .en {
  font-size: 4.5rem;
  font-family: var(--font-family-en);
}
.p-page-head__title .jp {
  font-size: 2rem;
  font-weight: 500;
}

.p-page-head__visual {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-page-head__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 767px) {
  .p-page-head::before {
    padding-top: 79.5%;
  }
  .p-page-head__title .jp {
    font-size: 1.4rem;
  }
  .p-page-head__title .en {
    font-size: 4rem;
  }
}
.p-works-list {
  padding: 20rem 0 10rem 0;
}
.p-works-list .container {
  max-width: 1020px;
  width: 60%;
}
.p-works-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6rem 0;
  border-bottom: 1px solid #CDD6DD;
  color: #707070;
}
.p-works-list .item:last-of-type {
  border-bottom: none;
}
.p-works-list .item picture {
  display: block;
  position: relative;
  width: 43%;
}
.p-works-list .item picture::after {
  content: "";
  display: block;
  padding-top: 54%;
}
.p-works-list .item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
.p-works-list .item .content {
  width: 50%;
  position: relative;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-works-list .item .content .date {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #C4C7C9;
  margin-bottom: 1.4rem;
}
.p-works-list .item .content .title {
  font-size: var(--font-size-base-pc);
  font-weight: normal;
  line-height: 1.45;
}
.p-works-list .item .content .title .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-works-list .item .content .c-button {
  max-width: 24rem;
  margin: 3.2rem 0 0 auto;
  color: #707070;
  border-color: #707070;
}
.p-works-list .item .content .c-button .icon {
  background-image: url(../img/common/icon_button_allow_b.svg);
}
.p-works-list .item .content .c-button:hover {
  color: #fff;
  border-color: var(--red-color);
}
.p-works-list .item .content .c-button:hover .icon {
  background-image: url(../img/common/icon_button_allow.svg);
}

@media (max-width: 767px) {
  .p-works-list {
    padding: 6rem 0 10rem 0;
  }
  .p-works-list .container {
    width: 86%;
  }
  .p-works-list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5rem 0;
  }
  .p-works-list .item picture {
    width: 100%;
  }
  .p-works-list .item .content {
    width: 100%;
    margin-top: 2rem;
  }
  .p-works-list .item .content .date {
    font-size: 1.3rem;
  }
  .p-works-list .item .content .title {
    font-size: 1.8rem;
  }
  .p-works-list .item .content .c-button {
    margin: 2.4rem 0 0 auto;
    font-size: 1.4rem;
    width: 15rem;
    padding: 1rem 2rem 1.2rem 2rem;
  }
}
.p-works-detail {
  color: #707070;
}
.p-works-detail .container {
  max-width: 880px;
  margin-top: 33rem;
  margin-bottom: 20rem;
}

.p-works-detail__head {
  line-height: 1.45;
  margin-bottom: 10rem;
}
.p-works-detail__head .date {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  color: #C4C7C9;
  margin-bottom: 2.8rem;
}
.p-works-detail__head .title {
  font-size: 3.6rem;
  font-weight: 500;
}

.p-works-detail__navi {
  border-top: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2rem;
  padding-top: 4rem;
  margin-top: 18rem;
}
.p-works-detail__navi span {
  opacity: 0.25;
}
@media (max-width: 767px) {
  .p-works-detail .container {
    margin-top: 10rem;
    margin-bottom: 13rem;
  }
  .p-works-detail__head {
    margin-bottom: 6rem;
  }
  .p-works-detail__head .date {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .p-works-detail__head .title {
    font-size: 2rem;
  }
  .p-works-detail__navi {
    font-size: 1.5rem;
    padding-top: 2.4rem;
    margin-top: 9rem;
  }
}
.p-about__business,
.p-about__history,
.p-about__outline {
  margin: 24rem 0;
}
.p-about__business .container,
.p-about__history .container,
.p-about__outline .container {
  width: 60%;
  max-width: 900px;
}

.p-about__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-about__images .p-about__slide .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  height: auto;
}

.p-about__access {
  text-align: center;
}
.p-about__access .container {
  border-top: 1px solid #000;
  padding: 24rem 0;
  max-width: 1000px;
}
.p-about__access h2 {
  font-size: 3.5rem;
  font-family: var(--font-family-en);
}
.p-about__access .p-about__access-address {
  margin-top: 8rem;
}
.p-about__access .p-about__access-map {
  margin-top: 4.8rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
.p-about__access .p-about__access-map .gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.p-about__access .p-about__access-map .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .p-about__business,
  .p-about__history,
  .p-about__outline {
    margin: 12rem 0;
  }
  .p-about__business .container,
  .p-about__history .container,
  .p-about__outline .container {
    width: 86%;
  }
  .p-about-data-list__heading {
    font-size: 2.2rem;
  }
  .p-about__access .container {
    padding: 10rem 0;
  }
  .p-about__access h2 {
    font-size: 2.2rem;
  }
  .p-about__access .p-about__access-address {
    margin-top: 5rem;
    text-align: left;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .p-about__access .p-about__access-map {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.p-contact {
  margin-bottom: 18rem;
}

.p-contact__title {
  font-family: var(--font-family-en);
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-bottom: 3.2rem;
}

.p-contact__info {
  text-align: center;
}
.p-contact__info .tel {
  margin-bottom: 8rem;
}
.p-contact__info .tel nav {
  font-size: 5.8rem;
  font-weight: 400;
  line-height: 1;
}
.p-contact__info .sns nav {
  font-size: 3.8rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-contact__info .sns nav a {
  display: block;
  margin: 0 1.4rem;
}

.p-contact__form {
  background-color: #EFEFEF;
  padding: 10rem 0;
}
.p-contact__form .wpcf7 {
  width: 88%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7.2rem;
}
.p-contact__form .p-contact__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
}
.p-contact__form .p-contact__form-item .label {
  width: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-contact__form .p-contact__form-item .label::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 1rem;
  background-color: #D50013;
  margin-right: 0.8rem;
  margin-top: 0.3rem;
}
.p-contact__form .p-contact__form-item .control {
  width: calc(100% - 20rem);
}
.p-contact__form .p-name-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-contact__form .p-name-control .p-name-control__item {
  width: 48%;
}
.p-contact__form .p-email-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.4rem;
}
.p-contact__form .wpcf7-not-valid-tip {
  margin-top: 0.2rem;
}
.p-contact__form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact__form .wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-bottom: 0.8rem;
}
.p-contact__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 !important;
}
.p-contact__form .wpcf7 form.invalid .wpcf7-response-output {
  color: #c00;
}
.p-contact__form span.wpcf7-not-valid-tip,
.p-contact__form .wpcf7-not-valid-tip-no-ajax {
  color: #c00;
  text-decoration: underline;
}
.p-contact__form .wpcf7-validation-errors {
  color: #c00;
  font-weight: 700;
  text-decoration: underline;
  border: none;
}
.p-contact__form .wpcf7-mail-sent-ok {
  color: #365899;
  font-weight: 700;
  text-decoration: underline;
  border: none;
}
.p-contact__form .p-contact__form-attention {
  text-align: center;
  padding: 3rem 0 7rem 0;
}
.p-contact__form .p-contact__form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact__map .p-contact-map {
  width: 74rem;
  margin-left: auto;
  margin-right: auto;
}

.p-contact__parking-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.6rem;
}
.p-contact__parking-info figure {
  display: block;
  width: 45%;
  margin-right: 5%;
}
.p-contact__parking-info figure img {
  width: 100%;
}
.p-contact__parking-info p {
  width: 50%;
  line-height: 2.4;
}

.p-contact__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.p-contact__slide .item {
  width: 24%;
}
.p-contact__slide .item picture {
  display: block;
  position: relative;
}
.p-contact__slide .item picture::after {
  content: "";
  display: block;
  padding-top: 138%;
}
.p-contact__slide .item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}

@media (max-width: 767px) {
  .p-contact__title {
    margin-bottom: 2.4rem;
  }
  .p-contact__info .tel nav {
    font-size: 4rem;
  }
  .p-contact__info .sns nav {
    font-size: 3.2rem;
  }
  .p-contact__info .sns nav a {
    margin: 0 1.6rem;
  }
  .p-contact__form .p-contact__form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-contact__form .p-contact__form-item .label {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .p-contact__form .p-contact__form-item .control {
    width: 100%;
  }
  .p-contact__form .p-email-control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    line-height: 2;
  }
  .p-contact__form .p-name-control .p-name-control__item {
    line-height: 2;
  }
  .p-contact__form .wpcf7-radio .wpcf7-list-item {
    margin-left: 2rem;
  }
  .p-contact__form .p-contact__form-attention {
    padding: 1rem 0 6rem 0;
  }
  .p-contact__map .p-contact-map {
    width: 88%;
  }
  .p-contact__parking-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-contact__parking-info figure {
    display: block;
    width: 88%;
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
  .p-contact__parking-info p {
    width: 88%;
    line-height: 2;
  }
  .p-contact__slide {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-contact__slide .item {
    width: 49%;
    margin-bottom: 2%;
  }
}
.p-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #000;
}

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

.p-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gnavi .p-gnavi__logo {
  display: none;
}
.p-gnavi .p-gnavi__index {
  margin-right: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gnavi .p-gnavi__index li:not(:last-of-type) {
  margin-right: 4rem;
}
.p-gnavi .p-gnavi__index li 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.p-gnavi .p-gnavi__index li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--red-color);
}
.p-gnavi .p-gnavi__index li a .t-small {
  display: none;
  font-size: 1.2rem;
  margin-top: 0.4rem;
}
.p-gnavi .p-gnavi__tel.c-button {
  display: none;
  border: 1px solid #fff;
  border-radius: 10rem;
  width: 5rem;
  height: 5rem;
  margin-right: 2rem;
  padding: 0;
  font-weight: 500;
}
.p-gnavi .p-gnavi__tel.c-button:hover {
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.p-gnavi .p-gnavi__tel.c-button .icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0;
  background-image: url("../img/common/icon_tel.svg");
}
.p-gnavi .p-gnavi__tel.c-button span {
  display: none;
}
.p-gnavi .p-gnavi__contact.c-button {
  border: none;
  height: 5rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  background-color: #fff;
  color: var(--text-color);
  font-weight: 500;
}
.p-gnavi .p-gnavi__contact.c-button:hover {
  color: #fff;
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.p-gnavi .p-gnavi__contact.c-button .icon {
  display: none;
  background-image: url("../img/common/icon_mail.svg");
}

@media (max-width: 767px) {
  .p-gnavi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-gnavi .p-gnavi__logo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-gnavi .p-gnavi__index {
    width: 100%;
    margin-right: 0;
    margin-top: 5rem;
    margin-bottom: 7rem;
    -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-gnavi .p-gnavi__index li {
    width: 100%;
    position: relative;
    margin-right: 0;
  }
  .p-gnavi .p-gnavi__index li:not(:last-of-type) {
    margin-right: 0;
  }
  .p-gnavi .p-gnavi__index li.products {
    margin-bottom: 2rem;
    font-weight: 700;
  }
  .p-gnavi .p-gnavi__index li.products::after, .p-gnavi .p-gnavi__index li.products::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
  }
  .p-gnavi .p-gnavi__index li.products::before {
    background-color: #fff;
    width: 3rem;
    z-index: 1;
  }
  .p-gnavi .p-gnavi__index li.products::after {
    background-color: rgba(255, 255, 255, 0.3);
    width: 10rem;
    z-index: 0;
  }
  .p-gnavi .p-gnavi__index li a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .p-gnavi .p-gnavi__index li a .t-small {
    display: block;
  }
  .p-gnavi .p-gnavi__tel.c-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .p-gnavi .p-gnavi__tel.c-button span {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    margin-left: 0.8rem;
  }
  .p-gnavi .p-gnavi__contact.c-button {
    width: 100%;
    background-color: inherit;
    color: #fff;
    border: 1px solid #fff;
  }
  .p-gnavi .p-gnavi__contact.c-button .icon {
    display: block;
    width: 2.4rem;
    height: 1.6rem;
    margin-left: 0;
    margin-right: 0.8rem;
  }
}
.p-menu-btn {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 1001;
  width: 58px;
  height: 58px;
  cursor: pointer;
  display: none;
}

.p-menu-btn span {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  z-index: 1;
  left: 13px;
  -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);
}

.menu-open .p-menu-btn span {
  background-color: #fff !important;
}

.p-menu-btn span.l1 {
  top: 19px;
  -webkit-animation: MenuTopCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuTopCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

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

.p-menu-btn span.l3 {
  top: 35px;
  -webkit-animation: MenuBottomCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuBottomCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.menu-open .p-menu-btn span.l1 {
  -webkit-animation: MenuTopOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuTopOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.menu-open .p-menu-btn span.l3 {
  -webkit-animation: MenuBottomOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuBottomOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

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

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

@media (max-width: 767px) {
  .p-menu-btn {
    display: block;
  }
}
.p-products-category {
  background-color: var(--gray-color);
  padding: 17rem 0;
}
.p-products-category .title {
  text-align: center;
  margin-bottom: 9rem;
}
.p-products-category .title .en {
  font-size: 3.5rem;
  line-height: 1;
  font-family: var(--font-family-en);
}
.p-products-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
}
.p-products-category ul .item {
  background-color: #fff;
  text-align: center;
  width: calc((100% - 7.2rem) / 4);
}
.p-products-category ul .item > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 1px #fff;
}
.p-products-category ul .item > a:hover {
  border: solid 1px var(--red-color);
}
.p-products-category ul .item > a h3 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 2rem;
}
.p-products-category ul .item > a picture {
  display: block;
  overflow: hidden;
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.p-products-category ul .item > a picture::after {
  display: block;
  content: "";
  padding-top: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.p-products-category ul .item > a picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-products-list {
  padding: 20rem 0 0 0;
}
.p-products-list .container {
  border-bottom: 1px solid #707070;
  padding-bottom: 16rem;
}
.p-products-list .p-products-list__heading {
  margin-bottom: 7.2rem;
}
.p-products-list .p-products-list__heading h3 {
  color: var(--navy-color);
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 3.2rem;
  padding-left: 3.2rem;
  position: relative;
}
.p-products-list .p-products-list__heading h3::before {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  background-color: var(--navy-color);
  position: absolute;
  left: 0;
  top: 0.2rem;
}
.p-products-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
}
.p-products-list ul .item {
  position: relative;
  background-color: var(--gray-color);
  width: calc((100% - 2.4rem) / 2);
  padding: 3.2rem;
  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-products-list ul .item picture {
  width: 45%;
  display: block;
  overflow: hidden;
  position: relative;
}
.p-products-list ul .item picture::after {
  display: block;
  content: "";
  padding-top: 75%;
  position: absolute;
  left: 0;
  top: 0;
}
.p-products-list ul .item picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-products-list ul .item .content {
  width: calc(55% - 4rem);
  margin-bottom: 2.4rem;
  color: #707070;
}
.p-products-list ul .item .content h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.p-products-list ul .item .content p {
  font-size: 1.5rem;
  line-height: 1.65;
}
.p-products-list ul .item .navi {
  background-color: #3B4043;
  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: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  padding: 1.4rem 4rem;
}
.p-products-list ul .item .navi:hover {
  background-color: var(--red-color);
}
.p-products-list ul .item .navi .icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.6rem;
}

@media (max-width: 767px) {
  .p-products-category {
    padding: 9rem 0;
  }
  .p-products-category .title {
    margin-bottom: 4rem;
  }
  .p-products-category .title .en {
    font-size: 2rem;
  }
  .p-products-category ul {
    gap: 1.8rem;
  }
  .p-products-category ul .item {
    width: calc((100% - 1.8rem) / 2);
  }
  .p-products-category ul .item > a {
    padding: 2.6rem;
  }
  .p-products-category ul .item > a h3 {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
  }
  .p-products-category ul .item > a picture {
    width: 100%;
  }
  .p-products-list {
    padding: 6rem 0 0 0;
  }
  .p-products-list .container {
    padding-bottom: 6rem;
  }
  .p-products-list .p-products-list__heading {
    margin-bottom: 6rem;
  }
  .p-products-list .p-products-list__heading h3 {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    padding-left: 2.4rem;
  }
  .p-products-list .p-products-list__heading h3::before {
    width: 9px;
  }
  .p-products-list ul {
    gap: 1.6rem;
  }
  .p-products-list ul .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc((100% - 1.6rem) / 2);
    padding: 1.8rem;
  }
  .p-products-list ul .item picture {
    width: 100%;
  }
  .p-products-list ul .item .content {
    width: 100%;
  }
  .p-products-list ul .item .content h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 1.2rem;
  }
  .p-products-list ul .item .content p {
    display: none;
  }
  .p-products-list ul .item .navi {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem 1.2rem 1.5rem;
  }
  .p-products-list ul .item .navi .icon {
    width: 0.9rem;
  }
}
.p-service-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.4rem;
}
.p-service-navi a {
  width: 32%;
  overflow: hidden;
  position: relative;
}
.p-service-navi a:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-service-navi a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-service-navi a::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 69.6%;
}
.p-service-navi a .title {
  width: 100%;
  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;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-service-navi a .title .name {
  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;
}
.p-service-navi a .title .t-small {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.p-service-navi a .title .c-btn-allow {
  margin-left: 2rem;
}
.p-service-navi a .image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-service-navi a .image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 1s;
  transition: 1s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 767px) {
  .p-service-navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
  }
  .p-service-navi a {
    width: 100%;
  }
  .p-service-navi a::after {
    padding-top: 28.5%;
  }
  .p-service-navi a .title {
    font-size: 1.7rem;
  }
  .p-service-navi a .title .c-btn-allow {
    margin-left: 1rem;
  }
}
.p-service-navi-section {
  margin-top: 18rem;
  padding-bottom: 20rem;
  position: relative;
}
.p-service-navi-section h2 {
  font-size: 4.5rem;
  font-family: var(--font-family-en);
  line-height: 1.4;
  margin-bottom: 4rem;
}
.p-service-navi-section.bg-gray::after {
  content: "";
  display: block;
  background-color: #F0F0F0;
  width: 100%;
  height: 70%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .p-service-navi-section {
    margin-top: 10rem;
    padding-bottom: 10rem;
  }
  .p-service-navi-section h2 {
    font-size: 2.6rem;
    margin-bottom: 2.4rem;
  }
  .p-service-navi-section.bg-gray::after {
    height: 84%;
  }
}
.p-about-data-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 #CDD6DD;
  padding: 1.8rem 0;
}
.p-about-data-list .item .label {
  width: 17rem;
}
.p-about-data-list .item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-about-data-list__heading {
  color: var(--navy-color);
  font-size: 2.6rem;
  padding-bottom: 1.6rem;
  margin-bottom: 3.2rem;
  position: relative;
}
.p-about-data-list__heading::after, .p-about-data-list__heading::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}
.p-about-data-list__heading::before {
  background-color: var(--navy-color);
  width: 3rem;
  z-index: 1;
}
.p-about-data-list__heading::after {
  background-color: #CDD6DD;
  width: 10rem;
  z-index: 0;
}

@media (max-width: 767px) {
  .p-about-data-list .item .label {
    width: 10rem;
  }
}
.p-form {
  padding: 20rem 0 0 0;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.p-form .p-form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem 0;
}
.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;
}
.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: 0;
}
.p-form .p-form__block.button .c-button {
  padding: 1.5rem 4rem 1.7rem 4rem;
  background-color: var(--navy-color);
  color: #fff;
  min-width: 20rem;
}
.p-form .p-form__block.button .c-button:hover {
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.p-form .p-form__block .label {
  width: 30%;
  min-width: 24rem;
  padding: 1rem 0;
}
.p-form .p-form__block .label .icon-required {
  color: #DC000C;
  margin-left: 0.4rem;
}
.p-form .p-form__block .control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .p-form {
    font-size: var(--font-size-base-sp);
    width: 86%;
    padding: 9rem 0 0 0;
  }
  .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;
    font-size: 1.6rem;
  }
  .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;
    padding: 2rem 0 0 0;
  }
  .p-form .p-form__block.privacy .label {
    display: none;
  }
  .p-form .p-form__block.button .control {
    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;
  }
  .wpcf7 form .wpcf7-response-output {
    margin-top: 0 !important;
  }
}
.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-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: 3.6rem;
}
.p-post-body h2 {
  font-size: 2.6rem;
}
.p-post-body h3 {
  font-size: 2rem;
}
.p-post-body h4 {
  font-size: var(--font-size-base-pc);
}
.p-post-body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post-body p {
  margin-bottom: 8rem;
}
.p-post-body p.none-margin {
  margin-bottom: 0;
}
.p-post-body ul {
  margin-bottom: 8rem;
}
.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: 8rem;
}
.p-post-body .wp-block-image figcaption {
  font-size: 1.6rem;
  margin: 0.4rem 0 0 0;
}
.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-quote {
  overflow-wrap: break-word;
  background-color: #F0F0F0;
  padding: 4rem;
  margin-bottom: 8rem;
}
.p-post-body .wp-block-quote p {
  border: none;
  line-height: 1.65;
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-quote p:last-of-type {
  margin-bottom: 0;
}
.p-post-body .wp-block-quote cite {
  font-size: 1.6rem;
}
.p-post-body .wp-block-table {
  margin-bottom: 8rem;
}
.p-post-body .wp-block-table table {
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr {
  border-bottom: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr td {
  border-right: 1px solid #C7C7C7;
  padding: 1rem 1.4rem;
}
.p-post-body .wp-block-table figcaption {
  font-size: 1.6rem;
  margin-top: 0.4rem;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  font-size: 1.6rem;
  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.6rem;
  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 h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
    margin-bottom: 1.5rem;
  }
  .p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .p-post-body h1 {
    font-size: 2rem;
  }
  .p-post-body h2 {
    font-size: 1.8rem;
  }
  .p-post-body h3 {
    font-size: 1.6rem;
  }
  .p-post-body h4 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body h5 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body .wp-block-image {
    margin-bottom: 4rem;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.2rem;
  }
  .p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-media-text .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-gallery.has-nested-images figcaption {
    font-size: 1.2rem;
  }
  .p-post-body .wp-block-quote {
    padding: 2rem;
  }
}
.p-page-body .container {
  max-width: 880px;
  margin-top: 33rem;
  margin-bottom: 20rem;
}

@media (max-width: 767px) {
  .p-page-body .container {
    margin-top: 10rem;
    margin-bottom: 13rem;
  }
}
.p-pagenavi {
  border-top: 1px solid #707070;
  padding-top: 2.4rem;
  margin-top: 4rem;
}
.p-pagenavi .wp-pagenavi {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 2.4rem;
}
.p-pagenavi .wp-pagenavi a,
.p-pagenavi .wp-pagenavi span {
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

.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 */