@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

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

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

caption,
th {
  text-align: left;
}

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

input,
select {
  vertical-align: middle;
  border-radius: 0.5rem;
}

input,
textarea {
  margin: 0;
  padding: 0;
  border-radius: 0.5rem;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --main-color: #758b97;
  --sub-color: #f5f3ee;
  --text-color: #252525;
  --background-color: #f5f3ee;
  --font-family-base: "Noto Serif JP", serif;
  --font-family-en: "Noto Serif JP", serif;
  --font-size-base-pc: 2.1rem;
  --font-size-base-sp: 1.8rem;
  --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: 1921px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
  html {
    font-size: calc(1px + 0.5vw);
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
  word-break: break-all;
}

body.modal-open,
body.menu-open {
  height: 100%;
  overflow: hidden;
}

.en {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.04em;
}

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

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

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);
    line-height: 1.85;
    letter-spacing: 0.02em;
  }
  a[href*="tel:"] {
    pointer-events: initial;
  }
}
.page-post .l-footer {
  margin-top: 10rem;
}

.l-main {
  overflow: hidden;
}

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

.large-width {
  max-width: 138rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.middle-width {
  max-width: 110rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.small-width {
  max-width: 82rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

.container {
  width: 88%;
  max-width: 1920px;
  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;
  color: #fff;
  background-color: var(--main-color);
  font-weight: 600;
  line-height: 1.4;
  padding: 1.2rem 3.2rem 1.4rem 3.2rem;
  min-width: 18rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.c-button:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .c-button {
    padding: 1rem 2.4rem 1.2rem 2.4rem;
  }
}
.c-input-text {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  font-size: var(--font-size-base-pc);
  font-family: var(--font-family-base);
  line-height: 1.65;
  border: 1px solid #000;
}

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

.c-input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-indent: 1rem;
  background: #fff;
  border: 1px solid #000;
  height: 44px;
  vertical-align: middle;
  font-size: var(--font-size-base-pc);
  font-family: var(--font-family-base);
  width: 100%;
  cursor: pointer;
}

@media (max-width: 767px) {
  .c-input-text {
    font-size: var(--font-size-base-sp);
  }
  .c-input-textarea {
    font-size: var(--font-size-base-sp);
  }
  .c-input-select {
    font-size: var(--font-size-base-sp);
  }
}
.c-bread-crumb {
  font-size: 1.2rem;
}
.c-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  line-height: 1;
  overflow-x: auto;
  white-space: nowrap;
}
.c-bread-crumb ul li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style: none;
}
.c-bread-crumb ul li:not(:first-child) a {
  padding-left: 2.4rem;
}
.c-bread-crumb ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  display: block;
  content: "";
  width: 1rem;
  height: 1px;
  border-bottom: 1px solid var(--text-color);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.c-bread-crumb ul li a {
  text-decoration: none;
}
.c-bread-crumb ul li span {
  padding-left: 2.4rem;
}

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

@media (max-width: 767px) {
  .c-bread-crumb {
    font-size: 1rem;
  }
}
.p-header {
  opacity: 0.6;
  position: fixed;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 100dvh;
  overflow-y: scroll;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #121b25;
  color: #fff;
  padding-left: 6rem;
  padding-top: 11rem;
  padding-bottom: 10rem;
}
.p-header a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.p-header .p-language-switcher {
  position: absolute;
  top: 4.8rem;
  left: 4.8rem;
}
.p-header .p-language-switcher .bogo-language-switcher li:not(:last-of-type) {
  border-left: 1px solid #fff;
}

.p-header__navi {
  border-left: 1px solid rgb(255, 255, 255);
  margin-left: 8.4rem;
  padding-left: 8.4rem;
  padding-top: 9.8rem;
  padding-bottom: 7.8rem;
  padding-right: 0.5rem;
}
.p-header__navi .logo {
  width: 75%;
  margin-left: 0.7rem;
}
.p-header__navi .navi {
  margin-top: 5.2rem;
}
.p-header__navi .navi .p-gnavi li:not(:last-of-type) {
  margin-bottom: 1rem;
}
.p-header__navi .navi a {
  font-size: 2.8rem;
}

.p-header__appointment {
  text-align: center;
  margin-left: 9rem;
  letter-spacing: 0.02em;
}
.p-header__appointment h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}
.p-header__appointment .c-button:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.p-header__appointment .contact {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.p-header__sns {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  padding-top: 3.4rem;
  padding-right: 4rem;
}
.p-header__sns .icon {
  display: block;
  width: 11rem;
  height: 11rem;
  margin-left: auto;
  margin-right: auto;
}
.p-header__sns .title {
  line-height: 1.4;
  margin-top: 2rem;
  font-size: 2.8rem;
}
.p-header__sns .guide {
  margin-top: 3.4rem;
}

.p-header__copyright {
  position: absolute;
  bottom: 1rem;
  width: 15rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2.4rem 0 4rem 0;
}

.menu-open .p-header {
  opacity: 1;
  pointer-events: initial;
  overflow-y: scroll;
}

.p-header__sp-meta {
  display: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 84%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 4rem;
  padding: 2.4rem 0;
}
.p-header__sp-meta .upside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.2rem;
}
.p-header__sp-meta .upside .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.p-header__sp-meta .upside .sns img {
  display: block;
  width: 2.6rem;
  height: auto;
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}
.p-header__sp-meta .upside .copyright {
  width: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__sp-meta .address {
  line-height: 1.4;
}

:lang(en) .p-header__appointment h2 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
:lang(en) .p-header__sns .guide {
  font-size: 1.3rem;
}
:lang(en) .p-header__sp-meta .address {
  font-size: 1.2rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-header__navi {
    width: 84%;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 4rem;
    margin-bottom: 3.2rem;
  }
  .p-header__navi .logo {
    width: 66%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-header__navi .navi a {
    text-align: center;
  }
  .p-header__appointment {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .p-header__copyright {
    position: relative;
  }
  .p-header__sp-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-header .p-language-switcher {
    top: 3.2rem;
    left: 3.2rem;
  }
  .p-header__navi {
    width: 80%;
    border-left: none;
    border-bottom: 1px solid rgb(255, 255, 255);
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 9.5rem;
    padding-bottom: 6rem;
    margin-bottom: 5.2rem;
  }
  .p-header__navi .logo {
    width: 71%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-header__navi .navi {
    margin-top: 5.7rem;
  }
  .p-header__navi .navi a {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: center;
  }
  .p-header__appointment {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .p-header__appointment h2 {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
  }
  .p-header__appointment .reserve a[href*="tel:"] {
    pointer-events: none;
  }
  .p-header__appointment .c-button {
    font-size: 1.9rem;
  }
  .p-header__appointment .contact {
    margin-top: 4rem;
  }
  .p-header__copyright {
    position: relative;
  }
  .p-header__sp-meta {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3.8rem 0 4.4rem 0;
  }
  .p-header__sp-meta .sns a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu-open .p-header .p-header__appointment .reserve a[href*="tel:"] {
    pointer-events: initial;
  }
}
.p-footer__sns {
  background-color: var(--sub-color);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6.8rem 0 8rem 0;
}
.p-footer__sns .icon {
  display: block;
  width: 11.4rem;
  height: 11.4rem;
}
.p-footer__sns .title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 1.6rem;
}
.p-footer__sns .guide {
  margin-top: 3.4rem;
  font-size: 2.6rem;
}

.p-footer__copyright {
  width: 100%;
  background-color: var(--main-color);
  text-align: center;
  padding: 6.2rem 0 6.2rem 0;
  line-height: 1;
}
.p-footer__copyright img {
  width: 15.7rem;
}

@media (max-width: 767px) {
  .p-footer__sns {
    padding: 3.2rem 0 1.6rem 0;
  }
  .p-footer__sns .icon {
    width: 8rem;
    height: 8rem;
  }
  .p-footer__sns .title {
    font-size: 2rem;
    margin-top: 1.3rem;
  }
  .p-footer__sns .guide {
    margin-top: 2rem;
    font-size: var(--font-size-base-sp);
  }
  .p-footer__copyright {
    padding: 3.2rem 0 3.2rem 0;
  }
  .p-footer__copyright img {
    width: 14rem;
  }
}
.p-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #fff;
  -webkit-transition: all 1.4s;
  transition: all 1.4s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

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

.p-menu-btn {
  position: fixed;
  top: 6.4rem;
  right: 6rem;
  z-index: 1001;
  width: 11.3rem;
  height: 11.3rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(35, 94, 106, 0.71);
}
.p-menu-btn span {
  display: block;
  width: 6.4rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  z-index: 1;
  left: 2.5rem;
}
.p-menu-btn span.l1 {
  top: 4.4rem;
}
.p-menu-btn span.l2 {
  top: 5.7rem;
}
.p-menu-btn span.l3 {
  top: 7.1rem;
}

.menu-open .p-menu-btn {
  background-color: initial;
  top: 0.8rem;
  right: -1rem;
}
.menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
  top: 6rem;
  left: 2.6rem;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(34deg);
          transform: rotate(34deg);
}
.menu-open .p-menu-btn span.l3 {
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-menu-btn {
    display: none;
    top: initial;
    bottom: 2.4rem;
    right: 1.6rem;
  }
  .page-top .p-menu-btn {
    display: block;
  }
}
@media (max-width: 767px) {
  .p-menu-btn {
    display: none;
    top: initial;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 6.4rem;
    height: 6.4rem;
  }
  .p-menu-btn span {
    width: 3.2rem;
    left: 1.6rem;
  }
  .p-menu-btn span.l1 {
    top: 2.4rem;
  }
  .p-menu-btn span.l2 {
    top: 3.2rem;
  }
  .p-menu-btn span.l3 {
    top: 4rem;
  }
  .menu-open .p-menu-btn {
    top: 1.4rem;
    bottom: initial;
    right: 1.8rem;
  }
  .menu-open .p-menu-btn span {
    width: 4rem;
  }
  .menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
    top: 3.2rem;
    left: 1.6rem;
  }
  .page-top .p-menu-btn {
    display: block;
  }
}
.p-back-btn {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5.6rem;
  margin-bottom: 4rem;
}
.p-back-btn a {
  text-decoration: none;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--main-color);
}
.p-back-btn a span {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 1;
}
.p-back-btn a span.text {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.p-back-btn a span.allow {
  font-size: 1.4rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-back-btn a {
    width: 8rem;
    height: 8rem;
  }
  :not(.page-top) .p-back-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-back-btn a {
    width: 8rem;
    height: 8rem;
  }
  .p-back-btn a span.text {
    font-size: 1.5rem;
  }
  .p-back-btn a span.allow {
    font-size: 1.2rem;
  }
  :not(.page-top) .p-back-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-gnavi li:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.p-gnavi li a {
  text-decoration: none;
  display: block;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.p-form {
  color: var(--text-color);
  max-width: 38.4rem;
  margin-left: auto;
  margin-right: auto;
}
.p-form .p-form__block {
  padding: 0.8rem 0 4rem 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-form .p-form__block.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0;
}
.p-form .p-form__block.button .c-button {
  padding: 0;
  font-size: 2.8rem;
  min-width: initial;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  font-family: var(--font-family-base);
  letter-spacing: 0.2em;
  margin-top: 2rem;
}
.p-form .p-form__block .label {
  width: 100%;
  min-width: 20rem;
  font-weight: 700;
  padding: 0 0 0.4rem 0;
}
.p-form .p-form__block .control {
  width: 100%;
}
.p-form .wpcf7-spinner {
  display: none;
}
.p-form span.wpcf7-list-item {
  margin: 0;
}
.p-form div.wpcf7-response-output {
  border: none;
  text-align: center;
  padding: 2rem 1rem 2.2rem 1rem !important;
}
.p-form .wpcf7 form.invalid .wpcf7-response-output,
.p-form .wpcf7 form.unaccepted .wpcf7-response-output,
.p-form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: initial;
}
.p-form .wpcf7 form .wpcf7-response-output {
  width: 90%;
  margin: 20px auto;
  color: #398f14;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  padding: 12px;
  border: none;
}
.p-form span.wpcf7-not-valid-tip,
.p-form .wpcf7-not-valid-tip-no-ajax {
  font-size: 1.2rem;
  margin-top: 0;
}
.p-form .wpcf7 form.invalid .wpcf7-response-output,
.p-form div.wpcf7-validation-errors {
  color: #c00;
  font-weight: 700;
  border: none;
}
.p-form .wpcf7 form.sent .wpcf7-response-output,
.p-form .wpcf7-mail-sent-ok {
  color: #365899;
  font-weight: 700;
  border: none;
}
.p-form .wpcf7-not-valid {
  border-color: #98A6B5;
}
.p-form .input-text.wpcf7-not-valid {
  background: url(../img/contact/icon_error.svg) no-repeat right 1rem center;
  background-size: 1.6rem auto;
  padding-right: 3.2rem;
}

@media (max-width: 767px) {
  .p-form {
    width: 87%;
    font-size: var(--font-size-sp);
  }
  .p-form .p-form__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 1.6rem 0;
  }
  .p-form .p-form__block .label {
    padding: 0 0 0.4rem 1rem;
  }
  .p-form .p-form__block.button .c-button {
    font-size: var(--font-size-sp);
    letter-spacing: 0.08em;
    width: 8rem;
    height: 8rem;
  }
}
.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-visual {
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18rem;
}
.p-post-visual.no-picture {
  height: 0;
  margin-top: 10.8rem;
  margin-bottom: 0;
}
.p-post-visual .container {
  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;
  position: relative;
}
.p-post-visual .container picture {
  width: 100%;
  height: calc(100svh - 9vw);
}
.p-post-visual .container picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .p-post-visual {
    height: 100svh;
    margin-top: 0rem;
    margin-bottom: 4.8rem;
  }
  .p-post-visual.no-picture {
    height: 0;
    margin-top: 4.8rem;
  }
  .p-post-visual .container picture {
    height: calc(100svh - 16vw);
  }
}
/* 白背景 */
.p-post-body .bg_white {
  background-color: #fff;
}

/* 見出し */
.p-post-body h1,
.p-post-body h2,
.p-post-body h3,
.p-post-body h4,
.p-post-body h5,
.p-post-body h6 {
  line-height: 2;
  -webkit-margin-before: 2.4rem;
          margin-block-start: 2.4rem;
  -webkit-margin-after: 2.4rem;
          margin-block-end: 2.4rem;
  letter-spacing: 0.14em;
  font-size: var(--font-size-base-pc);
  font-weight: bold;
}
.p-post-body h1 {
  font-size: 2.8rem;
}

/* Flex */
:where(body .p-post-body .wp-block-columns.is-layout-flex) {
  gap: 8% !important;
}

:where(body .p-post-body .wp-block-columns.is-layout-flex.is-centered-2col) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
:where(body .p-post-body .wp-block-columns.is-layout-flex.is-centered-2col) .wp-block-column {
  max-width: 65rem;
}

.p-post-body .wp-block-gallery[class^=wp-block-gallery] {
  --wp--style--unstable-gallery-gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 1.6rem)));
  gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 1.6rem)));
}

/* 段落 */
.p-post-body p {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  -webkit-margin-after: 1.6rem;
          margin-block-end: 1.6rem;
}

/* 図・画像 */
.p-post-body .wp-block-image figcaption {
  margin-bottom: 1.6rem;
  margin-top: 0.4rem;
  font-size: 1.9rem;
}

/* 表 */
.p-post-body .wp-block-table .wp-element-caption {
  margin-top: 0.4rem;
  font-size: 1.8rem;
}
.p-post-body .wp-block-table td,
.p-post-body .wp-block-table th {
  border: none;
  border-bottom: 1px solid;
  border-right: 1px solid #000;
  padding: 2rem 0.5em;
}
.p-post-body .wp-block-table td:last-of-type,
.p-post-body .wp-block-table th:last-of-type {
  border-right: none;
}
.p-post-body .wp-block-table tr:last-of-type td,
.p-post-body .wp-block-table tr:last-of-type th {
  border-bottom: none;
}

/* 罫線 */
.p-post-body .wp-block-separator {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-margin-before: 10rem !important;
          margin-block-start: 10rem !important;
  -webkit-margin-after: 10rem;
          margin-block-end: 10rem;
}

/* ファイル */
.p-post-body :where(.wp-block-file__button) {
  color: #fff;
  background-color: var(--main-color);
  border-radius: 0.6rem;
  padding: 1.8rem 2.4rem 2rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.4;
}

/* ボタン */
.p-post-body .wp-block-buttons {
  -webkit-margin-before: 5.2rem;
          margin-block-start: 5.2rem;
}
.p-post-body .wp-block-buttons.small .wp-block-button__link {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 3.2rem 0.8rem 3.2rem;
  min-width: initial;
}
.p-post-body .wp-block-button__link {
  color: #fff;
  background-color: var(--main-color);
  border-radius: 5.6rem;
  padding: 1.3rem 4.8rem 1.5rem 4.8rem;
  min-width: 22rem;
  font-size: var(--font-size-base-pc);
  font-weight: bold;
  line-height: 1.4;
}

/* ギャラリー */
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  text-align: initial;
  line-height: 1.4;
}
.p-post-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: none;
  position: relative;
  bottom: initial;
  left: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: initial;
  padding: 0;
  margin-bottom: 0;
  max-height: initial;
  overflow: auto;
  scrollbar-color: auto;
  scrollbar-gutter: initial;
  scrollbar-width: initial;
  text-align: left;
  width: auto;
  will-change: initial;
  font-size: 1.8rem;
}

/* リスト */
.p-post-body ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-post-body ul li::before {
  content: "・";
  display: inline-block;
  font-size: 2rem;
  margin-right: 0.8rem;
}

/* 引用 */
.p-post-body .wp-block-quote {
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  background: #889fac;
  color: #fff;
  padding: 4.6rem 7rem 5rem 7rem;
  position: relative;
}
.p-post-body .wp-block-quote::after, .p-post-body .wp-block-quote::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-post-body .wp-block-quote::before {
  background-image: url(../img/common/icon_quate_start.svg);
  left: 2.2rem;
  top: 2.2rem;
}
.p-post-body .wp-block-quote::after {
  background-image: url(../img/common/icon_quate_end.svg);
  right: 2.2rem;
  bottom: 2.2rem;
}
.p-post-body .wp-block-quote > cite {
  display: block;
  font-size: 1.8rem;
}
.p-post-body .wp-block-pullquote {
  padding: 2rem;
  font-size: var(--font-size-base-pc);
}
.p-post-body .wp-block-pullquote cite {
  font-size: 1.8rem;
}

/* カバー */
.p-post-body .wp-block-cover {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* メディアとテキスト */
.p-post-body .wp-block-media-text .wp-block-media-text__content {
  padding: 0 18%;
}
/* 埋め込み */
.p-post-body .wp-block-embed iframe {
  height: auto;
}
.p-post-body .wp-block-embed figcaption {
  margin-bottom: 0;
  margin-top: 1.8rem;
  text-align: center;
}
.p-post-body .is-type-video {
  width: 100%;
  max-width: 113rem;
  margin: 1em auto;
}
.p-post-body .is-type-video .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: 3rem solid #889fac;
}
.p-post-body .is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* スペーサー */
.p-post-body .wp-block-spacer {
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
}

@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,
  .p-post-body h6 {
    font-size: var(--font-size-base-sp) !important;
  }
  .p-post-body h1 {
    font-size: 2rem;
  }
  .p-post-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    font-size: 1.5rem;
  }
  .p-post-body .wp-block-media-text {
    margin-bottom: 8rem;
  }
  .p-post-body .wp-block-media-text .wp-block-media-text__content,
  .p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 0.4rem 0 0 0;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.5rem;
  }
  .p-post-body ul li::before {
    margin-right: 0;
  }
  .p-post-body .wp-block-separator {
    -webkit-margin-before: 5rem !important;
            margin-block-start: 5rem !important;
    -webkit-margin-after: 5rem;
            margin-block-end: 5rem;
  }
  .p-post-body .wp-block-quote {
    padding: 3.2rem 4.6rem 4rem 4.6rem;
  }
  .p-post-body .wp-block-quote::before, .p-post-body .wp-block-quote::after {
    width: 1.8rem;
    height: 1.8rem;
  }
  .p-post-body .wp-block-quote::before {
    left: 1.6rem;
    top: 1.6rem;
  }
  .p-post-body .wp-block-quote::after {
    right: 1.6rem;
    bottom: 1.6rem;
  }
  .p-post-body .wp-block-quote > cite {
    font-size: 1.5rem;
  }
  .p-post-body .wp-block-table .wp-element-caption {
    font-size: 1.5rem;
  }
  .p-post-body .wp-block-buttons.small .wp-block-button__link {
    font-size: 1.4rem;
    padding: 0.5rem 2.2rem 0.7rem 2.2rem;
  }
  .p-post-body .wp-block-embed figcaption {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
  .p-post-body .is-type-video .wp-block-embed__wrapper {
    border: 0.6rem solid #889fac;
  }
  .p-post-body .wp-block-button__link {
    font-size: var(--font-size-base-sp);
  }
  :where(.wp-block-columns.is-layout-flex) {
    gap: 10rem;
  }
  :where(body .p-post-body .wp-block-columns.is-layout-flex) {
    gap: 10rem !important;
  }
}
.p-top-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8.6rem;
}
.p-top-visual .container {
  width: 100%;
  padding: 13.4rem 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.p-top-visual__navi {
  position: relative;
  width: 36.5rem;
  padding-top: 11rem;
  padding-left: 4rem;
}
.p-top-visual__navi .logo a {
  display: block;
}
.p-top-visual__navi .logo a img {
  width: 100%;
  max-width: 23.9rem;
}
.p-top-visual__navi .navi {
  margin-top: 5.8rem;
  margin-left: 0.3rem;
}
.p-top-visual__navi .navi .p-gnavi li:not(:last-of-type) {
  margin-bottom: 1.8rem;
}
.p-top-visual__navi .misc {
  position: absolute;
  bottom: 0;
  left: 4.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-visual__navi .misc .sns a {
  display: block;
  width: 5.8rem;
  height: 5.8rem;
}
.p-top-visual__navi .misc .p-language-switcher {
  margin-left: 2.4rem;
}

.swiper.p-top-visual__slide {
  width: calc(100% - 36.5rem);
  height: 100%;
  position: relative;
}
.swiper.p-top-visual__slide::before, .swiper.p-top-visual__slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper.p-top-visual__slide::after {
  background-color: #fff;
  z-index: 1;
  opacity: 1;
  -webkit-transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.is_loaded .p-top-visual__navi {
  opacity: 1;
}
.is_loaded .swiper.p-top-visual__slide::after {
  opacity: 0;
}

@media (max-width: 767px) {
  .p-top-visual {
    margin-bottom: 4rem;
  }
  .p-top-visual .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    width: 88%;
    height: calc(100svh - 6vw);
  }
  .p-top-visual__navi {
    width: 100%;
    text-align: center;
    padding: 3.8rem 0 3.6rem 0;
  }
  .p-top-visual__navi .logo {
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-visual__navi .logo a img {
    width: auto;
    max-width: initial;
    height: 4.4rem;
  }
  .p-top-visual__navi .navi,
  .p-top-visual__navi .misc {
    display: none;
  }
  .swiper.p-top-visual__slide {
    width: 100%;
    height: calc(100% - 7.2rem);
    overflow: hidden;
  }
  .swiper-img {
    width: 100%;
    height: 100%;
  }
  .swiper-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-slide-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18.8rem;
}
.p-slide-text-block.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-slide-text-block.reverse .p-slide-text-block__content {
  padding-left: 2rem;
  padding-right: 12.4rem;
}
.p-slide-text-block .p-slide-text-block__slide {
  width: 50%;
}
.p-slide-text-block .p-slide-text-block__content {
  width: 50%;
  padding-left: 13.2rem;
  padding-right: 2.4rem;
}
.p-slide-text-block .p-slide-text-block__content .wp-block-heading {
  font-size: var(--font-size-base-pc);
  font-weight: bold;
  text-align: center;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 6rem;
          margin-block-end: 6rem;
}
.p-slide-text-block .p-slide-text-block__content p {
  -webkit-margin-after: 5rem;
          margin-block-end: 5rem;
}
.p-slide-text-block .p-slide-text-block__content .wp-block-button {
  margin-left: auto;
  margin-right: auto;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
}
.p-slide-text-block .p-slide-text-block__content .wp-block-button .wp-block-button__link {
  color: var(--text-color);
  background-color: initial;
  padding: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .p-slide-text-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.4rem;
    margin-bottom: 8.8rem;
  }
  .p-slide-text-block.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-slide-text-block.reverse .p-slide-text-block__content {
    padding-left: 0;
    padding-right: 0;
  }
  .p-slide-text-block .p-slide-text-block__slide {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .p-slide-text-block .p-slide-text-block__slide .swiper-slide:before {
    padding-top: 66.666%;
  }
  .p-slide-text-block .p-slide-text-block__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.4rem;
  }
  .p-slide-text-block .p-slide-text-block__content .wp-block-heading {
    font-size: var(--font-size-base-sp);
    -webkit-margin-before: 2.8rem;
            margin-block-start: 2.8rem;
    -webkit-margin-after: 3.6rem;
            margin-block-end: 3.6rem;
  }
  .p-slide-text-block .p-slide-text-block__content p {
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  .p-slide-text-block .p-slide-text-block__content .wp-block-button {
    margin-top: 0.8rem;
  }
  .p-slide-text-block .p-slide-text-block__content .wp-block-button .wp-block-button__link {
    font-size: 1.4rem;
  }
}
.p-cover-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-cover-text-block.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-cover-text-block .p-cover-text-block__image {
  width: 50%;
}
.p-cover-text-block .p-cover-text-block__image figure {
  position: relative;
}
.p-cover-text-block .p-cover-text-block__image figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: #fff;
  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;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 3.2rem;
  font-weight: bold;
}
.p-cover-text-block .p-cover-text-block__image figure figcaption::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 56, 71, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.p-cover-text-block .p-cover-text-block__content {
  width: 50%;
  padding-left: 7.6%;
  padding-right: 7.6%;
}
.p-cover-text-block .p-cover-text-block__content .wp-block-heading {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  -webkit-margin-before: 0rem;
          margin-block-start: 0rem;
}
.p-cover-text-block .p-cover-text-block__content p {
  margin-bottom: 1.6rem;
}

.is-tel-block .p-cover-text-block .wp-block-heading {
  font-size: 3rem;
}
.is-tel-block .p-cover-text-block .wp-block-buttons {
  -webkit-margin-before: 2.2rem;
          margin-block-start: 2.2rem;
  -webkit-margin-after: 2.2rem;
          margin-block-end: 2.2rem;
}

@media (max-width: 767px) {
  .p-cover-text-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 10rem;
  }
  .p-cover-text-block.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-cover-text-block .p-cover-text-block__image {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .p-cover-text-block .p-cover-text-block__image figure figcaption {
    font-size: 2.2rem;
  }
  .p-cover-text-block .p-cover-text-block__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding: 0.4rem 0 0 0;
  }
  .p-cover-text-block .p-cover-text-block__content .wp-block-heading {
    font-size: 1.8rem;
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    -webkit-margin-after: 2.4rem;
            margin-block-end: 2.4rem;
  }
  .full-width .p-cover-text-block .p-cover-text-block__content {
    width: 100%;
    padding-left: 6%;
    padding-right: 6%;
  }
  .is-tel-block .p-cover-text-block {
    padding-bottom: 0;
  }
  .is-tel-block .p-cover-text-block .p-cover-text-block__content {
    height: 100vw;
    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;
  }
  .is-tel-block .p-cover-text-block .wp-block-heading {
    font-size: 1.8rem;
  }
  .is-tel-block .p-cover-text-block .wp-block-buttons {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.p-news-block {
  background-color: #f5f2ee;
  margin-top: 13rem;
  margin-bottom: 17rem;
}
.p-news-block h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3.2rem;
}
.p-news-block .p-news-block__list {
  background-color: #fff;
  padding: 7.6rem 6.6rem;
  margin-left: auto;
  margin-right: auto;
  width: 84%;
  max-width: 80rem;
}
.p-news-block .p-news-block__list .item {
  position: relative;
}
.p-news-block .p-news-block__list .item a {
  color: #0693e3;
  text-decoration: none;
}
.p-news-block .p-news-block__list .item a:hover {
  text-decoration: underline;
}
.p-news-block .p-news-block__list .item::after {
  content: "";
  display: block;
  width: 12rem;
  height: 1px;
  border-bottom: 1px dotted #000;
  margin: 2.2rem 0 3rem 0;
}
.p-news-block .p-news-block__list .item .title {
  font-weight: bold;
  line-height: 1.45;
  -webkit-margin-before: 0 !important;
  margin-block-start: 0 !important;
  -webkit-margin-after: 1rem !important;
  margin-block-end: 1rem !important;
}
.p-news-block .p-news-block__list .item .date {
  color: #e50012;
  margin-top: 0.6rem;
}

@media (max-width: 767px) {
  .p-news-block {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.4rem;
  }
  .p-news-block h2 {
    font-size: var(--font-size-base-sp);
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    -webkit-margin-after: 2.4rem;
            margin-block-end: 2.4rem;
  }
  .p-news-block .p-news-block__list {
    padding: 5rem 3.2rem;
    width: 100%;
    text-align: center;
  }
}
.wp-block-lazyblock-access-block {
  background-color: #fff;
  padding: 27rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.p-access-block .p-access-block__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 84%;
  max-width: 125rem;
  margin-left: auto;
  margin-right: auto;
}
.p-access-block .p-access-block__slide {
  width: 58%;
}
.p-access-block .p-access-block__slide .swiper-slide {
  overflow: hidden;
}
.p-access-block .p-access-block__content {
  width: 52%;
  padding-left: 7%;
  text-align: center;
}
.p-access-block .p-access-block__content .wp-block-heading {
  font-size: 2.6rem;
  text-align: center;
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.p-access-block .p-access-block__content P {
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}
.p-access-block .p-access-block__content .wp-block-buttons {
  -webkit-margin-before: 5.8rem;
          margin-block-start: 5.8rem;
}

@media (max-width: 767px) {
  .wp-block-lazyblock-access-block {
    padding: 0 0 8rem 0;
  }
  .p-access-block .p-access-block__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-access-block .p-access-block__slide {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
  .p-access-block .p-access-block__content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .p-access-block .p-access-block__content .wp-block-heading {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
    -webkit-margin-after: 2.4rem;
            margin-block-end: 2.4rem;
  }
  .p-access-block .p-access-block__content .wp-block-buttons {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.wp-block-lazyblock-map-access-block {
  background-color: #f8f8f8;
  padding: 12rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.p-map-access-block .p-map-access-block__inner {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 89%;
  margin-left: auto;
  margin-right: auto;
}
.p-map-access-block .p-map-access-block__embed {
  width: 50%;
}
.p-map-access-block .p-map-access-block__embed .iframe-wrapper {
  position: relative;
  height: 0;
  padding-top: 104%;
}
.p-map-access-block .p-map-access-block__embed .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-map-access-block .p-map-access-block__content {
  width: 48%;
  padding-left: 6%;
  padding-right: 4%;
  text-align: center;
}
.p-map-access-block .p-map-access-block__content .wp-block-heading {
  text-align: center;
  font-size: 2.8rem;
}

@media (max-width: 767px) {
  .wp-block-lazyblock-map-access-block {
    padding: 8rem 0;
  }
  .p-map-access-block .p-map-access-block__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4rem;
  }
  .p-map-access-block .p-map-access-block__embed {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1.6rem;
  }
  .p-map-access-block .p-map-access-block__content {
    width: 100%;
  }
}
.p-centered-block {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.p-centered-block .wp-block-heading {
  -webkit-margin-after: 5.4rem;
          margin-block-end: 5.4rem;
  font-size: var(--font-size-base-pc);
}
.p-centered-block p {
  text-align: justify;
}

@media (max-width: 767px) {
  .p-centered-block .wp-block-heading {
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
    font-size: var(--font-size-base-pc);
  }
}
.p-space-block {
  height: 10rem !important;
}

@media (max-width: 767px) {
  .p-space-block {
    height: 5rem !important;
  }
}
.p-language-switcher .bogo-language-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  line-height: 1;
}
.p-language-switcher .bogo-language-switcher li:not(:last-of-type) {
  border-left: 1px solid #000;
  margin-left: 1.2rem;
  padding-left: 1.2rem;
}
.p-language-switcher .bogo-language-switcher li .bogo-language-name {
  font-family: var(--font-family-base);
}
.p-language-switcher .bogo-language-switcher li .bogo-language-name a {
  display: block;
  text-decoration: none;
}

@media (max-width: 767px) {
  .p-language-switcher .bogo-language-switcher li:not(:last-of-type) {
    margin-left: 1.6rem;
    padding-left: 1.5rem;
  }
}
.p-contact__heading {
  text-align: center;
  font-size: 3.2rem !important;
  margin-bottom: 1rem;
  -webkit-margin-after: 1rem !important;
          margin-block-end: 1rem !important;
}

@media (max-width: 767px) {
  .p-contact__heading {
    font-size: 2rem !important;
    -webkit-margin-before: 3.4rem !important;
            margin-block-start: 3.4rem !important;
    -webkit-margin-after: 0 !important;
            margin-block-end: 0 !important;
  }
}
.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-tablet-inline,
.show-tablet,
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-tablet,
.hide-mobile {
  display: block;
}

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

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